Merge tag 'for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux...
[deliverable/linux.git] / drivers / i2c / i2c-core.c
CommitLineData
1da177e4
LT
1/* i2c-core.c - a device driver for the iic-bus interface */
2/* ------------------------------------------------------------------------- */
3/* Copyright (C) 1995-99 Simon G. Vogl
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ca1f8da9 13 GNU General Public License for more details. */
1da177e4
LT
14/* ------------------------------------------------------------------------- */
15
96de0e25 16/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
1da177e4 17 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
421ef47b 18 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
7c81c60f 19 Jean Delvare <jdelvare@suse.de>
0826374b 20 Mux support by Rodolfo Giometti <giometti@enneenne.com> and
687b81d0
WS
21 Michael Lawnick <michael.lawnick.ext@nsn.com>
22 OF support is copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
23 (based on a previous patch from Jon Smirl <jonsmirl@gmail.com>) and
24 (c) 2013 Wolfram Sang <wsa@the-dreams.de>
17f4a5c4
WS
25 I2C ACPI code Copyright (C) 2014 Intel Corp
26 Author: Lan Tianyu <tianyu.lan@intel.com>
4b1acc43 27 I2C slave support (c) 2014 by Wolfram Sang <wsa@sang-engineering.com>
687b81d0 28 */
1da177e4 29
1da177e4
LT
30#include <linux/module.h>
31#include <linux/kernel.h>
5f9296ba 32#include <linux/delay.h>
1da177e4 33#include <linux/errno.h>
5f9296ba 34#include <linux/gpio.h>
1da177e4
LT
35#include <linux/slab.h>
36#include <linux/i2c.h>
37#include <linux/init.h>
38#include <linux/idr.h>
b3585e4f 39#include <linux/mutex.h>
687b81d0 40#include <linux/of.h>
959e85f7 41#include <linux/of_device.h>
687b81d0 42#include <linux/of_irq.h>
86be408b 43#include <linux/clk/clk-conf.h>
b8d6f45b 44#include <linux/completion.h>
cea443a8
MR
45#include <linux/hardirq.h>
46#include <linux/irqflags.h>
f18c41da 47#include <linux/rwsem.h>
6de468ae 48#include <linux/pm_runtime.h>
f48c767c 49#include <linux/pm_domain.h>
907ddf89 50#include <linux/acpi.h>
d9a83d62 51#include <linux/jump_label.h>
1da177e4 52#include <asm/uaccess.h>
a430a345 53#include <linux/err.h>
1da177e4 54
9c1600ed
DB
55#include "i2c-core.h"
56
d9a83d62
DH
57#define CREATE_TRACE_POINTS
58#include <trace/events/i2c.h>
1da177e4 59
6629dcff 60/* core_lock protects i2c_adapter_idr, and guarantees
35fc37f8 61 that device detection, deletion of detected devices, and attach_adapter
19baba4c 62 calls are serialized */
caada32a 63static DEFINE_MUTEX(core_lock);
1da177e4
LT
64static DEFINE_IDR(i2c_adapter_idr);
65
4f8cf824 66static struct device_type i2c_client_type;
4735c98f 67static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
f37dd80a 68
d9a83d62
DH
69static struct static_key i2c_trace_msg = STATIC_KEY_INIT_FALSE;
70
71void i2c_transfer_trace_reg(void)
72{
73 static_key_slow_inc(&i2c_trace_msg);
74}
75
76void i2c_transfer_trace_unreg(void)
77{
78 static_key_slow_dec(&i2c_trace_msg);
79}
80
17f4a5c4
WS
81#if defined(CONFIG_ACPI)
82struct acpi_i2c_handler_data {
83 struct acpi_connection_info info;
84 struct i2c_adapter *adapter;
85};
86
87struct gsb_buffer {
88 u8 status;
89 u8 len;
90 union {
91 u16 wdata;
92 u8 bdata;
93 u8 data[0];
94 };
95} __packed;
96
97static int acpi_i2c_add_resource(struct acpi_resource *ares, void *data)
98{
99 struct i2c_board_info *info = data;
100
101 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
102 struct acpi_resource_i2c_serialbus *sb;
103
104 sb = &ares->data.i2c_serial_bus;
393cc1ce 105 if (!info->addr && sb->type == ACPI_RESOURCE_SERIAL_TYPE_I2C) {
17f4a5c4
WS
106 info->addr = sb->slave_address;
107 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
108 info->flags |= I2C_CLIENT_TEN;
109 }
110 } else if (info->irq < 0) {
111 struct resource r;
112
113 if (acpi_dev_resource_interrupt(ares, 0, &r))
114 info->irq = r.start;
115 }
116
117 /* Tell the ACPI core to skip this resource */
118 return 1;
119}
120
121static acpi_status acpi_i2c_add_device(acpi_handle handle, u32 level,
122 void *data, void **return_value)
123{
124 struct i2c_adapter *adapter = data;
125 struct list_head resource_list;
126 struct i2c_board_info info;
127 struct acpi_device *adev;
128 int ret;
129
130 if (acpi_bus_get_device(handle, &adev))
131 return AE_OK;
132 if (acpi_bus_get_status(adev) || !adev->status.present)
133 return AE_OK;
134
135 memset(&info, 0, sizeof(info));
136 info.acpi_node.companion = adev;
137 info.irq = -1;
138
139 INIT_LIST_HEAD(&resource_list);
140 ret = acpi_dev_get_resources(adev, &resource_list,
141 acpi_i2c_add_resource, &info);
142 acpi_dev_free_resource_list(&resource_list);
143
144 if (ret < 0 || !info.addr)
145 return AE_OK;
146
147 adev->power.flags.ignore_parent = true;
148 strlcpy(info.type, dev_name(&adev->dev), sizeof(info.type));
149 if (!i2c_new_device(adapter, &info)) {
150 adev->power.flags.ignore_parent = false;
151 dev_err(&adapter->dev,
152 "failed to add I2C device %s from ACPI\n",
153 dev_name(&adev->dev));
154 }
155
156 return AE_OK;
157}
158
159/**
160 * acpi_i2c_register_devices - enumerate I2C slave devices behind adapter
161 * @adap: pointer to adapter
162 *
163 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
164 * namespace. When a device is found it will be added to the Linux device
165 * model and bound to the corresponding ACPI handle.
166 */
167static void acpi_i2c_register_devices(struct i2c_adapter *adap)
168{
169 acpi_handle handle;
170 acpi_status status;
171
172 if (!adap->dev.parent)
173 return;
174
175 handle = ACPI_HANDLE(adap->dev.parent);
176 if (!handle)
177 return;
178
179 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
180 acpi_i2c_add_device, NULL,
181 adap, NULL);
182 if (ACPI_FAILURE(status))
183 dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
184}
185
186#else /* CONFIG_ACPI */
187static inline void acpi_i2c_register_devices(struct i2c_adapter *adap) { }
188#endif /* CONFIG_ACPI */
189
190#ifdef CONFIG_ACPI_I2C_OPREGION
191static int acpi_gsb_i2c_read_bytes(struct i2c_client *client,
192 u8 cmd, u8 *data, u8 data_len)
193{
194
195 struct i2c_msg msgs[2];
196 int ret;
197 u8 *buffer;
198
199 buffer = kzalloc(data_len, GFP_KERNEL);
200 if (!buffer)
201 return AE_NO_MEMORY;
202
203 msgs[0].addr = client->addr;
204 msgs[0].flags = client->flags;
205 msgs[0].len = 1;
206 msgs[0].buf = &cmd;
207
208 msgs[1].addr = client->addr;
209 msgs[1].flags = client->flags | I2C_M_RD;
210 msgs[1].len = data_len;
211 msgs[1].buf = buffer;
212
213 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
214 if (ret < 0)
215 dev_err(&client->adapter->dev, "i2c read failed\n");
216 else
217 memcpy(data, buffer, data_len);
218
219 kfree(buffer);
220 return ret;
221}
222
223static int acpi_gsb_i2c_write_bytes(struct i2c_client *client,
224 u8 cmd, u8 *data, u8 data_len)
225{
226
227 struct i2c_msg msgs[1];
228 u8 *buffer;
229 int ret = AE_OK;
230
231 buffer = kzalloc(data_len + 1, GFP_KERNEL);
232 if (!buffer)
233 return AE_NO_MEMORY;
234
235 buffer[0] = cmd;
236 memcpy(buffer + 1, data, data_len);
237
238 msgs[0].addr = client->addr;
239 msgs[0].flags = client->flags;
240 msgs[0].len = data_len + 1;
241 msgs[0].buf = buffer;
242
243 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
244 if (ret < 0)
245 dev_err(&client->adapter->dev, "i2c write failed\n");
246
247 kfree(buffer);
248 return ret;
249}
250
251static acpi_status
252acpi_i2c_space_handler(u32 function, acpi_physical_address command,
253 u32 bits, u64 *value64,
254 void *handler_context, void *region_context)
255{
256 struct gsb_buffer *gsb = (struct gsb_buffer *)value64;
257 struct acpi_i2c_handler_data *data = handler_context;
258 struct acpi_connection_info *info = &data->info;
259 struct acpi_resource_i2c_serialbus *sb;
260 struct i2c_adapter *adapter = data->adapter;
261 struct i2c_client client;
262 struct acpi_resource *ares;
263 u32 accessor_type = function >> 16;
264 u8 action = function & ACPI_IO_MASK;
4470c725 265 acpi_status ret;
17f4a5c4
WS
266 int status;
267
268 ret = acpi_buffer_to_resource(info->connection, info->length, &ares);
269 if (ACPI_FAILURE(ret))
270 return ret;
271
272 if (!value64 || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) {
273 ret = AE_BAD_PARAMETER;
274 goto err;
275 }
276
277 sb = &ares->data.i2c_serial_bus;
278 if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C) {
279 ret = AE_BAD_PARAMETER;
280 goto err;
281 }
282
283 memset(&client, 0, sizeof(client));
284 client.adapter = adapter;
285 client.addr = sb->slave_address;
286 client.flags = 0;
287
288 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
289 client.flags |= I2C_CLIENT_TEN;
290
291 switch (accessor_type) {
292 case ACPI_GSB_ACCESS_ATTRIB_SEND_RCV:
293 if (action == ACPI_READ) {
294 status = i2c_smbus_read_byte(&client);
295 if (status >= 0) {
296 gsb->bdata = status;
297 status = 0;
298 }
299 } else {
300 status = i2c_smbus_write_byte(&client, gsb->bdata);
301 }
302 break;
303
304 case ACPI_GSB_ACCESS_ATTRIB_BYTE:
305 if (action == ACPI_READ) {
306 status = i2c_smbus_read_byte_data(&client, command);
307 if (status >= 0) {
308 gsb->bdata = status;
309 status = 0;
310 }
311 } else {
312 status = i2c_smbus_write_byte_data(&client, command,
313 gsb->bdata);
314 }
315 break;
316
317 case ACPI_GSB_ACCESS_ATTRIB_WORD:
318 if (action == ACPI_READ) {
319 status = i2c_smbus_read_word_data(&client, command);
320 if (status >= 0) {
321 gsb->wdata = status;
322 status = 0;
323 }
324 } else {
325 status = i2c_smbus_write_word_data(&client, command,
326 gsb->wdata);
327 }
328 break;
329
330 case ACPI_GSB_ACCESS_ATTRIB_BLOCK:
331 if (action == ACPI_READ) {
332 status = i2c_smbus_read_block_data(&client, command,
333 gsb->data);
334 if (status >= 0) {
335 gsb->len = status;
336 status = 0;
337 }
338 } else {
339 status = i2c_smbus_write_block_data(&client, command,
340 gsb->len, gsb->data);
341 }
342 break;
343
344 case ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE:
345 if (action == ACPI_READ) {
346 status = acpi_gsb_i2c_read_bytes(&client, command,
347 gsb->data, info->access_length);
348 if (status > 0)
349 status = 0;
350 } else {
351 status = acpi_gsb_i2c_write_bytes(&client, command,
352 gsb->data, info->access_length);
353 }
354 break;
355
356 default:
357 pr_info("protocol(0x%02x) is not supported.\n", accessor_type);
358 ret = AE_BAD_PARAMETER;
359 goto err;
360 }
361
362 gsb->status = status;
363
364 err:
365 ACPI_FREE(ares);
366 return ret;
367}
368
369
370static int acpi_i2c_install_space_handler(struct i2c_adapter *adapter)
371{
0aef44e8 372 acpi_handle handle;
17f4a5c4
WS
373 struct acpi_i2c_handler_data *data;
374 acpi_status status;
375
0aef44e8
PH
376 if (!adapter->dev.parent)
377 return -ENODEV;
378
379 handle = ACPI_HANDLE(adapter->dev.parent);
380
17f4a5c4
WS
381 if (!handle)
382 return -ENODEV;
383
384 data = kzalloc(sizeof(struct acpi_i2c_handler_data),
385 GFP_KERNEL);
386 if (!data)
387 return -ENOMEM;
388
389 data->adapter = adapter;
390 status = acpi_bus_attach_private_data(handle, (void *)data);
391 if (ACPI_FAILURE(status)) {
392 kfree(data);
393 return -ENOMEM;
394 }
395
396 status = acpi_install_address_space_handler(handle,
397 ACPI_ADR_SPACE_GSBUS,
398 &acpi_i2c_space_handler,
399 NULL,
400 data);
401 if (ACPI_FAILURE(status)) {
402 dev_err(&adapter->dev, "Error installing i2c space handler\n");
403 acpi_bus_detach_private_data(handle);
404 kfree(data);
405 return -ENOMEM;
406 }
407
40e7fcb1 408 acpi_walk_dep_device_list(handle);
17f4a5c4
WS
409 return 0;
410}
411
412static void acpi_i2c_remove_space_handler(struct i2c_adapter *adapter)
413{
0aef44e8 414 acpi_handle handle;
17f4a5c4
WS
415 struct acpi_i2c_handler_data *data;
416 acpi_status status;
417
0aef44e8
PH
418 if (!adapter->dev.parent)
419 return;
420
421 handle = ACPI_HANDLE(adapter->dev.parent);
422
17f4a5c4
WS
423 if (!handle)
424 return;
425
426 acpi_remove_address_space_handler(handle,
427 ACPI_ADR_SPACE_GSBUS,
428 &acpi_i2c_space_handler);
429
430 status = acpi_bus_get_private_data(handle, (void **)&data);
431 if (ACPI_SUCCESS(status))
432 kfree(data);
433
434 acpi_bus_detach_private_data(handle);
435}
436#else /* CONFIG_ACPI_I2C_OPREGION */
437static inline void acpi_i2c_remove_space_handler(struct i2c_adapter *adapter)
438{ }
439
440static inline int acpi_i2c_install_space_handler(struct i2c_adapter *adapter)
441{ return 0; }
442#endif /* CONFIG_ACPI_I2C_OPREGION */
443
f37dd80a
DB
444/* ------------------------------------------------------------------------- */
445
d2653e92
JD
446static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
447 const struct i2c_client *client)
448{
449 while (id->name[0]) {
450 if (strcmp(client->name, id->name) == 0)
451 return id;
452 id++;
453 }
454 return NULL;
455}
456
1da177e4
LT
457static int i2c_device_match(struct device *dev, struct device_driver *drv)
458{
51298d12
JD
459 struct i2c_client *client = i2c_verify_client(dev);
460 struct i2c_driver *driver;
461
462 if (!client)
463 return 0;
7b4fbc50 464
959e85f7
GL
465 /* Attempt an OF style match */
466 if (of_driver_match_device(dev, drv))
467 return 1;
468
907ddf89
MW
469 /* Then ACPI style match */
470 if (acpi_driver_match_device(dev, drv))
471 return 1;
472
51298d12 473 driver = to_i2c_driver(drv);
d2653e92
JD
474 /* match on an id table if there is one */
475 if (driver->id_table)
476 return i2c_match_id(driver->id_table, client) != NULL;
477
eb8a7908 478 return 0;
1da177e4
LT
479}
480
7b4fbc50
DB
481
482/* uevent helps with hotplug: modprobe -q $(MODALIAS) */
7eff2e7a 483static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
7b4fbc50
DB
484{
485 struct i2c_client *client = to_i2c_client(dev);
8c4ff6d0
ZR
486 int rc;
487
488 rc = acpi_device_uevent_modalias(dev, env);
489 if (rc != -ENODEV)
490 return rc;
7b4fbc50 491
eb8a7908
JD
492 if (add_uevent_var(env, "MODALIAS=%s%s",
493 I2C_MODULE_PREFIX, client->name))
494 return -ENOMEM;
7b4fbc50
DB
495 dev_dbg(dev, "uevent\n");
496 return 0;
497}
498
5f9296ba
VK
499/* i2c bus recovery routines */
500static int get_scl_gpio_value(struct i2c_adapter *adap)
501{
502 return gpio_get_value(adap->bus_recovery_info->scl_gpio);
503}
504
505static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
506{
507 gpio_set_value(adap->bus_recovery_info->scl_gpio, val);
508}
509
510static int get_sda_gpio_value(struct i2c_adapter *adap)
511{
512 return gpio_get_value(adap->bus_recovery_info->sda_gpio);
513}
514
515static int i2c_get_gpios_for_recovery(struct i2c_adapter *adap)
516{
517 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
518 struct device *dev = &adap->dev;
519 int ret = 0;
520
521 ret = gpio_request_one(bri->scl_gpio, GPIOF_OPEN_DRAIN |
522 GPIOF_OUT_INIT_HIGH, "i2c-scl");
523 if (ret) {
524 dev_warn(dev, "Can't get SCL gpio: %d\n", bri->scl_gpio);
525 return ret;
526 }
527
528 if (bri->get_sda) {
529 if (gpio_request_one(bri->sda_gpio, GPIOF_IN, "i2c-sda")) {
530 /* work without SDA polling */
531 dev_warn(dev, "Can't get SDA gpio: %d. Not using SDA polling\n",
532 bri->sda_gpio);
533 bri->get_sda = NULL;
534 }
535 }
536
537 return ret;
538}
539
540static void i2c_put_gpios_for_recovery(struct i2c_adapter *adap)
541{
542 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
543
544 if (bri->get_sda)
545 gpio_free(bri->sda_gpio);
546
547 gpio_free(bri->scl_gpio);
548}
549
550/*
551 * We are generating clock pulses. ndelay() determines durating of clk pulses.
552 * We will generate clock with rate 100 KHz and so duration of both clock levels
553 * is: delay in ns = (10^6 / 100) / 2
554 */
555#define RECOVERY_NDELAY 5000
556#define RECOVERY_CLK_CNT 9
557
558static int i2c_generic_recovery(struct i2c_adapter *adap)
559{
560 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
561 int i = 0, val = 1, ret = 0;
562
563 if (bri->prepare_recovery)
564 bri->prepare_recovery(bri);
565
566 /*
567 * By this time SCL is high, as we need to give 9 falling-rising edges
568 */
569 while (i++ < RECOVERY_CLK_CNT * 2) {
570 if (val) {
571 /* Break if SDA is high */
572 if (bri->get_sda && bri->get_sda(adap))
573 break;
574 /* SCL shouldn't be low here */
575 if (!bri->get_scl(adap)) {
576 dev_err(&adap->dev,
577 "SCL is stuck low, exit recovery\n");
578 ret = -EBUSY;
579 break;
580 }
581 }
582
583 val = !val;
584 bri->set_scl(adap, val);
585 ndelay(RECOVERY_NDELAY);
586 }
587
588 if (bri->unprepare_recovery)
589 bri->unprepare_recovery(bri);
590
591 return ret;
592}
593
594int i2c_generic_scl_recovery(struct i2c_adapter *adap)
595{
596 adap->bus_recovery_info->set_scl(adap, 1);
597 return i2c_generic_recovery(adap);
598}
599
600int i2c_generic_gpio_recovery(struct i2c_adapter *adap)
601{
602 int ret;
603
604 ret = i2c_get_gpios_for_recovery(adap);
605 if (ret)
606 return ret;
607
608 ret = i2c_generic_recovery(adap);
609 i2c_put_gpios_for_recovery(adap);
610
611 return ret;
612}
613
614int i2c_recover_bus(struct i2c_adapter *adap)
615{
616 if (!adap->bus_recovery_info)
617 return -EOPNOTSUPP;
618
619 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
620 return adap->bus_recovery_info->recover_bus(adap);
621}
622
f37dd80a 623static int i2c_device_probe(struct device *dev)
1da177e4 624{
51298d12
JD
625 struct i2c_client *client = i2c_verify_client(dev);
626 struct i2c_driver *driver;
50c3304a 627 int status;
7b4fbc50 628
51298d12
JD
629 if (!client)
630 return 0;
631
2fd36c55
LP
632 if (!client->irq && dev->of_node) {
633 int irq = of_irq_get(dev->of_node, 0);
634
6f34be74 635 if (irq == -EPROBE_DEFER)
2fd36c55 636 return irq;
6f34be74
GU
637 if (irq < 0)
638 irq = 0;
2fd36c55
LP
639
640 client->irq = irq;
641 }
642
51298d12 643 driver = to_i2c_driver(dev->driver);
e0457442 644 if (!driver->probe || !driver->id_table)
7b4fbc50 645 return -ENODEV;
0acc2b32 646
ee35425c
MP
647 if (!device_can_wakeup(&client->dev))
648 device_init_wakeup(&client->dev,
649 client->flags & I2C_CLIENT_WAKE);
7b4fbc50 650 dev_dbg(dev, "probe\n");
d2653e92 651
86be408b
SN
652 status = of_clk_set_defaults(dev->of_node, false);
653 if (status < 0)
654 return status;
655
e09b0d4e
UH
656 status = dev_pm_domain_attach(&client->dev, true);
657 if (status != -EPROBE_DEFER) {
658 status = driver->probe(client, i2c_match_id(driver->id_table,
659 client));
660 if (status)
661 dev_pm_domain_detach(&client->dev, true);
662 }
72fa818e 663
50c3304a 664 return status;
f37dd80a 665}
1da177e4 666
f37dd80a
DB
667static int i2c_device_remove(struct device *dev)
668{
51298d12 669 struct i2c_client *client = i2c_verify_client(dev);
a1d9e6e4 670 struct i2c_driver *driver;
72fa818e 671 int status = 0;
a1d9e6e4 672
51298d12 673 if (!client || !dev->driver)
a1d9e6e4
DB
674 return 0;
675
676 driver = to_i2c_driver(dev->driver);
677 if (driver->remove) {
678 dev_dbg(dev, "remove\n");
679 status = driver->remove(client);
a1d9e6e4 680 }
72fa818e 681
e09b0d4e 682 dev_pm_domain_detach(&client->dev, true);
a1d9e6e4 683 return status;
1da177e4
LT
684}
685
f37dd80a 686static void i2c_device_shutdown(struct device *dev)
1da177e4 687{
51298d12 688 struct i2c_client *client = i2c_verify_client(dev);
f37dd80a
DB
689 struct i2c_driver *driver;
690
51298d12 691 if (!client || !dev->driver)
f37dd80a
DB
692 return;
693 driver = to_i2c_driver(dev->driver);
694 if (driver->shutdown)
51298d12 695 driver->shutdown(client);
1da177e4
LT
696}
697
9c1600ed
DB
698static void i2c_client_dev_release(struct device *dev)
699{
700 kfree(to_i2c_client(dev));
701}
702
09b8ce0a 703static ssize_t
4f8cf824 704show_name(struct device *dev, struct device_attribute *attr, char *buf)
7b4fbc50 705{
4f8cf824
JD
706 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
707 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
7b4fbc50 708}
a5eb71b2 709static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
7b4fbc50 710
09b8ce0a
ZX
711static ssize_t
712show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
7b4fbc50
DB
713{
714 struct i2c_client *client = to_i2c_client(dev);
8c4ff6d0
ZR
715 int len;
716
717 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
718 if (len != -ENODEV)
719 return len;
720
eb8a7908 721 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
7b4fbc50 722}
51298d12
JD
723static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
724
725static struct attribute *i2c_dev_attrs[] = {
726 &dev_attr_name.attr,
7b4fbc50 727 /* modalias helps coldplug: modprobe $(cat .../modalias) */
51298d12
JD
728 &dev_attr_modalias.attr,
729 NULL
730};
a5eb71b2 731ATTRIBUTE_GROUPS(i2c_dev);
54067ee2 732
e9ca9eb9 733struct bus_type i2c_bus_type = {
f37dd80a
DB
734 .name = "i2c",
735 .match = i2c_device_match,
736 .probe = i2c_device_probe,
737 .remove = i2c_device_remove,
738 .shutdown = i2c_device_shutdown,
b864c7d5 739};
e9ca9eb9 740EXPORT_SYMBOL_GPL(i2c_bus_type);
b864c7d5 741
51298d12 742static struct device_type i2c_client_type = {
a5eb71b2 743 .groups = i2c_dev_groups,
51298d12
JD
744 .uevent = i2c_device_uevent,
745 .release = i2c_client_dev_release,
746};
747
9b766b81
DB
748
749/**
750 * i2c_verify_client - return parameter as i2c_client, or NULL
751 * @dev: device, probably from some driver model iterator
752 *
753 * When traversing the driver model tree, perhaps using driver model
754 * iterators like @device_for_each_child(), you can't assume very much
755 * about the nodes you find. Use this function to avoid oopses caused
756 * by wrongly treating some non-I2C device as an i2c_client.
757 */
758struct i2c_client *i2c_verify_client(struct device *dev)
759{
51298d12 760 return (dev->type == &i2c_client_type)
9b766b81
DB
761 ? to_i2c_client(dev)
762 : NULL;
763}
764EXPORT_SYMBOL(i2c_verify_client);
765
766
3a89db5f 767/* This is a permissive address validity check, I2C address map constraints
25985edc 768 * are purposely not enforced, except for the general call address. */
3a89db5f
JD
769static int i2c_check_client_addr_validity(const struct i2c_client *client)
770{
771 if (client->flags & I2C_CLIENT_TEN) {
772 /* 10-bit address, all values are valid */
773 if (client->addr > 0x3ff)
774 return -EINVAL;
775 } else {
776 /* 7-bit address, reject the general call address */
777 if (client->addr == 0x00 || client->addr > 0x7f)
778 return -EINVAL;
779 }
780 return 0;
781}
782
656b8761
JD
783/* And this is a strict address validity check, used when probing. If a
784 * device uses a reserved address, then it shouldn't be probed. 7-bit
785 * addressing is assumed, 10-bit address devices are rare and should be
786 * explicitly enumerated. */
787static int i2c_check_addr_validity(unsigned short addr)
788{
789 /*
790 * Reserved addresses per I2C specification:
791 * 0x00 General call address / START byte
792 * 0x01 CBUS address
793 * 0x02 Reserved for different bus format
794 * 0x03 Reserved for future purposes
795 * 0x04-0x07 Hs-mode master code
796 * 0x78-0x7b 10-bit slave addressing
797 * 0x7c-0x7f Reserved for future purposes
798 */
799 if (addr < 0x08 || addr > 0x77)
800 return -EINVAL;
801 return 0;
802}
803
3b5f794b
JD
804static int __i2c_check_addr_busy(struct device *dev, void *addrp)
805{
806 struct i2c_client *client = i2c_verify_client(dev);
807 int addr = *(int *)addrp;
808
809 if (client && client->addr == addr)
810 return -EBUSY;
811 return 0;
812}
813
0826374b
ML
814/* walk up mux tree */
815static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
816{
97cc4d49 817 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
0826374b
ML
818 int result;
819
820 result = device_for_each_child(&adapter->dev, &addr,
821 __i2c_check_addr_busy);
822
97cc4d49
JD
823 if (!result && parent)
824 result = i2c_check_mux_parents(parent, addr);
0826374b
ML
825
826 return result;
827}
828
829/* recurse down mux tree */
830static int i2c_check_mux_children(struct device *dev, void *addrp)
831{
832 int result;
833
834 if (dev->type == &i2c_adapter_type)
835 result = device_for_each_child(dev, addrp,
836 i2c_check_mux_children);
837 else
838 result = __i2c_check_addr_busy(dev, addrp);
839
840 return result;
841}
842
3b5f794b
JD
843static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
844{
97cc4d49 845 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
0826374b
ML
846 int result = 0;
847
97cc4d49
JD
848 if (parent)
849 result = i2c_check_mux_parents(parent, addr);
0826374b
ML
850
851 if (!result)
852 result = device_for_each_child(&adapter->dev, &addr,
853 i2c_check_mux_children);
854
855 return result;
3b5f794b
JD
856}
857
fe61e07e
JD
858/**
859 * i2c_lock_adapter - Get exclusive access to an I2C bus segment
860 * @adapter: Target I2C bus segment
861 */
862void i2c_lock_adapter(struct i2c_adapter *adapter)
863{
97cc4d49
JD
864 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
865
866 if (parent)
867 i2c_lock_adapter(parent);
0826374b
ML
868 else
869 rt_mutex_lock(&adapter->bus_lock);
fe61e07e
JD
870}
871EXPORT_SYMBOL_GPL(i2c_lock_adapter);
872
873/**
874 * i2c_trylock_adapter - Try to get exclusive access to an I2C bus segment
875 * @adapter: Target I2C bus segment
876 */
877static int i2c_trylock_adapter(struct i2c_adapter *adapter)
878{
97cc4d49
JD
879 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
880
881 if (parent)
882 return i2c_trylock_adapter(parent);
0826374b
ML
883 else
884 return rt_mutex_trylock(&adapter->bus_lock);
fe61e07e
JD
885}
886
887/**
888 * i2c_unlock_adapter - Release exclusive access to an I2C bus segment
889 * @adapter: Target I2C bus segment
890 */
891void i2c_unlock_adapter(struct i2c_adapter *adapter)
892{
97cc4d49
JD
893 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
894
895 if (parent)
896 i2c_unlock_adapter(parent);
0826374b
ML
897 else
898 rt_mutex_unlock(&adapter->bus_lock);
fe61e07e
JD
899}
900EXPORT_SYMBOL_GPL(i2c_unlock_adapter);
901
70762abb
JN
902static void i2c_dev_set_name(struct i2c_adapter *adap,
903 struct i2c_client *client)
904{
905 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
906
907 if (adev) {
908 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
909 return;
910 }
911
912 /* For 10-bit clients, add an arbitrary offset to avoid collisions */
913 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
914 client->addr | ((client->flags & I2C_CLIENT_TEN)
915 ? 0xa000 : 0));
916}
917
9c1600ed 918/**
f8a227e8 919 * i2c_new_device - instantiate an i2c device
9c1600ed
DB
920 * @adap: the adapter managing the device
921 * @info: describes one I2C device; bus_num is ignored
d64f73be 922 * Context: can sleep
9c1600ed 923 *
f8a227e8
JD
924 * Create an i2c device. Binding is handled through driver model
925 * probe()/remove() methods. A driver may be bound to this device when we
926 * return from this function, or any later moment (e.g. maybe hotplugging will
927 * load the driver module). This call is not appropriate for use by mainboard
928 * initialization logic, which usually runs during an arch_initcall() long
929 * before any i2c_adapter could exist.
9c1600ed
DB
930 *
931 * This returns the new i2c client, which may be saved for later use with
932 * i2c_unregister_device(); or NULL to indicate an error.
933 */
934struct i2c_client *
935i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
936{
937 struct i2c_client *client;
938 int status;
939
940 client = kzalloc(sizeof *client, GFP_KERNEL);
941 if (!client)
942 return NULL;
943
944 client->adapter = adap;
945
946 client->dev.platform_data = info->platform_data;
3bbb835d 947
11f1f2af
AV
948 if (info->archdata)
949 client->dev.archdata = *info->archdata;
950
ee35425c 951 client->flags = info->flags;
9c1600ed
DB
952 client->addr = info->addr;
953 client->irq = info->irq;
954
9c1600ed
DB
955 strlcpy(client->name, info->type, sizeof(client->name));
956
3a89db5f
JD
957 /* Check for address validity */
958 status = i2c_check_client_addr_validity(client);
959 if (status) {
960 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
961 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
962 goto out_err_silent;
963 }
964
f8a227e8 965 /* Check for address business */
3b5f794b 966 status = i2c_check_addr_busy(adap, client->addr);
f8a227e8
JD
967 if (status)
968 goto out_err;
969
970 client->dev.parent = &client->adapter->dev;
971 client->dev.bus = &i2c_bus_type;
51298d12 972 client->dev.type = &i2c_client_type;
d12d42f7 973 client->dev.of_node = info->of_node;
7b199811 974 ACPI_COMPANION_SET(&client->dev, info->acpi_node.companion);
f8a227e8 975
70762abb 976 i2c_dev_set_name(adap, client);
f8a227e8
JD
977 status = device_register(&client->dev);
978 if (status)
979 goto out_err;
980
f8a227e8
JD
981 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
982 client->name, dev_name(&client->dev));
983
9c1600ed 984 return client;
f8a227e8
JD
985
986out_err:
987 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
988 "(%d)\n", client->name, client->addr, status);
3a89db5f 989out_err_silent:
f8a227e8
JD
990 kfree(client);
991 return NULL;
9c1600ed
DB
992}
993EXPORT_SYMBOL_GPL(i2c_new_device);
994
995
996/**
997 * i2c_unregister_device - reverse effect of i2c_new_device()
998 * @client: value returned from i2c_new_device()
d64f73be 999 * Context: can sleep
9c1600ed
DB
1000 */
1001void i2c_unregister_device(struct i2c_client *client)
a1d9e6e4 1002{
a1d9e6e4
DB
1003 device_unregister(&client->dev);
1004}
9c1600ed 1005EXPORT_SYMBOL_GPL(i2c_unregister_device);
a1d9e6e4
DB
1006
1007
60b129d7
JD
1008static const struct i2c_device_id dummy_id[] = {
1009 { "dummy", 0 },
1010 { },
1011};
1012
d2653e92
JD
1013static int dummy_probe(struct i2c_client *client,
1014 const struct i2c_device_id *id)
1015{
1016 return 0;
1017}
1018
1019static int dummy_remove(struct i2c_client *client)
e9f1373b
DB
1020{
1021 return 0;
1022}
1023
1024static struct i2c_driver dummy_driver = {
1025 .driver.name = "dummy",
d2653e92
JD
1026 .probe = dummy_probe,
1027 .remove = dummy_remove,
60b129d7 1028 .id_table = dummy_id,
e9f1373b
DB
1029};
1030
1031/**
1032 * i2c_new_dummy - return a new i2c device bound to a dummy driver
1033 * @adapter: the adapter managing the device
1034 * @address: seven bit address to be used
e9f1373b
DB
1035 * Context: can sleep
1036 *
1037 * This returns an I2C client bound to the "dummy" driver, intended for use
1038 * with devices that consume multiple addresses. Examples of such chips
1039 * include various EEPROMS (like 24c04 and 24c08 models).
1040 *
1041 * These dummy devices have two main uses. First, most I2C and SMBus calls
1042 * except i2c_transfer() need a client handle; the dummy will be that handle.
1043 * And second, this prevents the specified address from being bound to a
1044 * different driver.
1045 *
1046 * This returns the new i2c client, which should be saved for later use with
1047 * i2c_unregister_device(); or NULL to indicate an error.
1048 */
09b8ce0a 1049struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
e9f1373b
DB
1050{
1051 struct i2c_board_info info = {
60b129d7 1052 I2C_BOARD_INFO("dummy", address),
e9f1373b
DB
1053 };
1054
e9f1373b
DB
1055 return i2c_new_device(adapter, &info);
1056}
1057EXPORT_SYMBOL_GPL(i2c_new_dummy);
1058
f37dd80a
DB
1059/* ------------------------------------------------------------------------- */
1060
16ffadfc
DB
1061/* I2C bus adapters -- one roots each I2C or SMBUS segment */
1062
83eaaed0 1063static void i2c_adapter_dev_release(struct device *dev)
1da177e4 1064{
ef2c8321 1065 struct i2c_adapter *adap = to_i2c_adapter(dev);
1da177e4
LT
1066 complete(&adap->dev_released);
1067}
1068
390946b1
JD
1069/*
1070 * This function is only needed for mutex_lock_nested, so it is never
1071 * called unless locking correctness checking is enabled. Thus we
1072 * make it inline to avoid a compiler warning. That's what gcc ends up
1073 * doing anyway.
1074 */
1075static inline unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
1076{
1077 unsigned int depth = 0;
1078
1079 while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
1080 depth++;
1081
1082 return depth;
1083}
1084
99cd8e25
JD
1085/*
1086 * Let users instantiate I2C devices through sysfs. This can be used when
1087 * platform initialization code doesn't contain the proper data for
1088 * whatever reason. Also useful for drivers that do device detection and
1089 * detection fails, either because the device uses an unexpected address,
1090 * or this is a compatible device with different ID register values.
1091 *
1092 * Parameter checking may look overzealous, but we really don't want
1093 * the user to provide incorrect parameters.
1094 */
1095static ssize_t
1096i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
1097 const char *buf, size_t count)
1098{
1099 struct i2c_adapter *adap = to_i2c_adapter(dev);
1100 struct i2c_board_info info;
1101 struct i2c_client *client;
1102 char *blank, end;
1103 int res;
1104
99cd8e25
JD
1105 memset(&info, 0, sizeof(struct i2c_board_info));
1106
1107 blank = strchr(buf, ' ');
1108 if (!blank) {
1109 dev_err(dev, "%s: Missing parameters\n", "new_device");
1110 return -EINVAL;
1111 }
1112 if (blank - buf > I2C_NAME_SIZE - 1) {
1113 dev_err(dev, "%s: Invalid device name\n", "new_device");
1114 return -EINVAL;
1115 }
1116 memcpy(info.type, buf, blank - buf);
1117
1118 /* Parse remaining parameters, reject extra parameters */
1119 res = sscanf(++blank, "%hi%c", &info.addr, &end);
1120 if (res < 1) {
1121 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
1122 return -EINVAL;
1123 }
1124 if (res > 1 && end != '\n') {
1125 dev_err(dev, "%s: Extra parameters\n", "new_device");
1126 return -EINVAL;
1127 }
1128
99cd8e25
JD
1129 client = i2c_new_device(adap, &info);
1130 if (!client)
3a89db5f 1131 return -EINVAL;
99cd8e25
JD
1132
1133 /* Keep track of the added device */
dafc50d1 1134 mutex_lock(&adap->userspace_clients_lock);
6629dcff 1135 list_add_tail(&client->detected, &adap->userspace_clients);
dafc50d1 1136 mutex_unlock(&adap->userspace_clients_lock);
99cd8e25
JD
1137 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1138 info.type, info.addr);
1139
1140 return count;
1141}
a5eb71b2 1142static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
99cd8e25
JD
1143
1144/*
1145 * And of course let the users delete the devices they instantiated, if
1146 * they got it wrong. This interface can only be used to delete devices
1147 * instantiated by i2c_sysfs_new_device above. This guarantees that we
1148 * don't delete devices to which some kernel code still has references.
1149 *
1150 * Parameter checking may look overzealous, but we really don't want
1151 * the user to delete the wrong device.
1152 */
1153static ssize_t
1154i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
1155 const char *buf, size_t count)
1156{
1157 struct i2c_adapter *adap = to_i2c_adapter(dev);
1158 struct i2c_client *client, *next;
1159 unsigned short addr;
1160 char end;
1161 int res;
1162
1163 /* Parse parameters, reject extra parameters */
1164 res = sscanf(buf, "%hi%c", &addr, &end);
1165 if (res < 1) {
1166 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
1167 return -EINVAL;
1168 }
1169 if (res > 1 && end != '\n') {
1170 dev_err(dev, "%s: Extra parameters\n", "delete_device");
1171 return -EINVAL;
1172 }
1173
1174 /* Make sure the device was added through sysfs */
1175 res = -ENOENT;
390946b1
JD
1176 mutex_lock_nested(&adap->userspace_clients_lock,
1177 i2c_adapter_depth(adap));
6629dcff
JD
1178 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1179 detected) {
1180 if (client->addr == addr) {
99cd8e25
JD
1181 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
1182 "delete_device", client->name, client->addr);
1183
1184 list_del(&client->detected);
1185 i2c_unregister_device(client);
1186 res = count;
1187 break;
1188 }
1189 }
dafc50d1 1190 mutex_unlock(&adap->userspace_clients_lock);
99cd8e25
JD
1191
1192 if (res < 0)
1193 dev_err(dev, "%s: Can't find device in list\n",
1194 "delete_device");
1195 return res;
1196}
e9b526fe
AS
1197static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
1198 i2c_sysfs_delete_device);
4f8cf824
JD
1199
1200static struct attribute *i2c_adapter_attrs[] = {
1201 &dev_attr_name.attr,
1202 &dev_attr_new_device.attr,
1203 &dev_attr_delete_device.attr,
1204 NULL
1205};
a5eb71b2 1206ATTRIBUTE_GROUPS(i2c_adapter);
b119dc3f 1207
0826374b 1208struct device_type i2c_adapter_type = {
a5eb71b2 1209 .groups = i2c_adapter_groups,
4f8cf824 1210 .release = i2c_adapter_dev_release,
1da177e4 1211};
0826374b 1212EXPORT_SYMBOL_GPL(i2c_adapter_type);
1da177e4 1213
643dd09e
SW
1214/**
1215 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1216 * @dev: device, probably from some driver model iterator
1217 *
1218 * When traversing the driver model tree, perhaps using driver model
1219 * iterators like @device_for_each_child(), you can't assume very much
1220 * about the nodes you find. Use this function to avoid oopses caused
1221 * by wrongly treating some non-I2C device as an i2c_adapter.
1222 */
1223struct i2c_adapter *i2c_verify_adapter(struct device *dev)
1224{
1225 return (dev->type == &i2c_adapter_type)
1226 ? to_i2c_adapter(dev)
1227 : NULL;
1228}
1229EXPORT_SYMBOL(i2c_verify_adapter);
1230
2bb5095a
JD
1231#ifdef CONFIG_I2C_COMPAT
1232static struct class_compat *i2c_adapter_compat_class;
1233#endif
1234
9c1600ed
DB
1235static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
1236{
1237 struct i2c_devinfo *devinfo;
1238
f18c41da 1239 down_read(&__i2c_board_lock);
9c1600ed
DB
1240 list_for_each_entry(devinfo, &__i2c_board_list, list) {
1241 if (devinfo->busnum == adapter->nr
1242 && !i2c_new_device(adapter,
1243 &devinfo->board_info))
09b8ce0a
ZX
1244 dev_err(&adapter->dev,
1245 "Can't create device at 0x%02x\n",
9c1600ed
DB
1246 devinfo->board_info.addr);
1247 }
f18c41da 1248 up_read(&__i2c_board_lock);
9c1600ed
DB
1249}
1250
687b81d0
WS
1251/* OF support code */
1252
1253#if IS_ENABLED(CONFIG_OF)
a430a345
PA
1254static struct i2c_client *of_i2c_register_device(struct i2c_adapter *adap,
1255 struct device_node *node)
687b81d0 1256{
a430a345
PA
1257 struct i2c_client *result;
1258 struct i2c_board_info info = {};
1259 struct dev_archdata dev_ad = {};
1260 const __be32 *addr;
1261 int len;
687b81d0 1262
a430a345 1263 dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
687b81d0 1264
a430a345
PA
1265 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
1266 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
1267 node->full_name);
1268 return ERR_PTR(-EINVAL);
1269 }
687b81d0 1270
a430a345
PA
1271 addr = of_get_property(node, "reg", &len);
1272 if (!addr || (len < sizeof(int))) {
1273 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
1274 node->full_name);
1275 return ERR_PTR(-EINVAL);
1276 }
687b81d0 1277
a430a345
PA
1278 info.addr = be32_to_cpup(addr);
1279 if (info.addr > (1 << 10) - 1) {
1280 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
1281 info.addr, node->full_name);
1282 return ERR_PTR(-EINVAL);
1283 }
687b81d0 1284
a430a345
PA
1285 info.of_node = of_node_get(node);
1286 info.archdata = &dev_ad;
687b81d0 1287
a430a345
PA
1288 if (of_get_property(node, "wakeup-source", NULL))
1289 info.flags |= I2C_CLIENT_WAKE;
687b81d0 1290
a430a345
PA
1291 result = i2c_new_device(adap, &info);
1292 if (result == NULL) {
1293 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
1294 node->full_name);
1295 of_node_put(node);
a430a345
PA
1296 return ERR_PTR(-EINVAL);
1297 }
1298 return result;
1299}
687b81d0 1300
a430a345
PA
1301static void of_i2c_register_devices(struct i2c_adapter *adap)
1302{
1303 struct device_node *node;
687b81d0 1304
a430a345
PA
1305 /* Only register child devices if the adapter has a node pointer set */
1306 if (!adap->dev.of_node)
1307 return;
687b81d0 1308
a430a345
PA
1309 dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
1310
1311 for_each_available_child_of_node(adap->dev.of_node, node)
1312 of_i2c_register_device(adap, node);
687b81d0
WS
1313}
1314
1315static int of_dev_node_match(struct device *dev, void *data)
1316{
1317 return dev->of_node == data;
1318}
1319
1320/* must call put_device() when done with returned i2c_client device */
1321struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
1322{
1323 struct device *dev;
1324
1325 dev = bus_find_device(&i2c_bus_type, NULL, node,
1326 of_dev_node_match);
1327 if (!dev)
1328 return NULL;
1329
1330 return i2c_verify_client(dev);
1331}
1332EXPORT_SYMBOL(of_find_i2c_device_by_node);
1333
1334/* must call put_device() when done with returned i2c_adapter device */
1335struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
1336{
1337 struct device *dev;
1338
1339 dev = bus_find_device(&i2c_bus_type, NULL, node,
1340 of_dev_node_match);
1341 if (!dev)
1342 return NULL;
1343
1344 return i2c_verify_adapter(dev);
1345}
1346EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
1347#else
1348static void of_i2c_register_devices(struct i2c_adapter *adap) { }
1349#endif /* CONFIG_OF */
1350
69b0089a
JD
1351static int i2c_do_add_adapter(struct i2c_driver *driver,
1352 struct i2c_adapter *adap)
026526f5 1353{
4735c98f
JD
1354 /* Detect supported devices on that bus, and instantiate them */
1355 i2c_detect(adap, driver);
1356
1357 /* Let legacy drivers scan this bus for matching devices */
026526f5 1358 if (driver->attach_adapter) {
a920ff41
JD
1359 dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
1360 driver->driver.name);
fe6fc258
JD
1361 dev_warn(&adap->dev, "Please use another way to instantiate "
1362 "your i2c_client\n");
026526f5
JD
1363 /* We ignore the return code; if it fails, too bad */
1364 driver->attach_adapter(adap);
1365 }
1366 return 0;
1367}
1368
69b0089a
JD
1369static int __process_new_adapter(struct device_driver *d, void *data)
1370{
1371 return i2c_do_add_adapter(to_i2c_driver(d), data);
1372}
1373
6e13e641 1374static int i2c_register_adapter(struct i2c_adapter *adap)
1da177e4 1375{
d6703281 1376 int res = 0;
1da177e4 1377
1d0b19c9 1378 /* Can't register until after driver model init */
35fc37f8
JD
1379 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
1380 res = -EAGAIN;
1381 goto out_list;
1382 }
1d0b19c9 1383
2236baa7
JD
1384 /* Sanity checks */
1385 if (unlikely(adap->name[0] == '\0')) {
1386 pr_err("i2c-core: Attempt to register an adapter with "
1387 "no name!\n");
1388 return -EINVAL;
1389 }
1390 if (unlikely(!adap->algo)) {
1391 pr_err("i2c-core: Attempt to register adapter '%s' with "
1392 "no algo!\n", adap->name);
1393 return -EINVAL;
1394 }
1395
194684e5 1396 rt_mutex_init(&adap->bus_lock);
dafc50d1 1397 mutex_init(&adap->userspace_clients_lock);
6629dcff 1398 INIT_LIST_HEAD(&adap->userspace_clients);
1da177e4 1399
8fcfef6e
JD
1400 /* Set default timeout to 1 second if not already set */
1401 if (adap->timeout == 0)
1402 adap->timeout = HZ;
1403
27d9c183 1404 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
4f8cf824
JD
1405 adap->dev.bus = &i2c_bus_type;
1406 adap->dev.type = &i2c_adapter_type;
b119c6c9
JD
1407 res = device_register(&adap->dev);
1408 if (res)
1409 goto out_list;
1da177e4 1410
b6d7b3d1
JD
1411 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1412
2bb5095a
JD
1413#ifdef CONFIG_I2C_COMPAT
1414 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1415 adap->dev.parent);
1416 if (res)
1417 dev_warn(&adap->dev,
1418 "Failed to create compatibility class link\n");
1419#endif
1420
5f9296ba
VK
1421 /* bus recovery specific initialization */
1422 if (adap->bus_recovery_info) {
1423 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
1424
1425 if (!bri->recover_bus) {
1426 dev_err(&adap->dev, "No recover_bus() found, not using recovery\n");
1427 adap->bus_recovery_info = NULL;
1428 goto exit_recovery;
1429 }
1430
1431 /* Generic GPIO recovery */
1432 if (bri->recover_bus == i2c_generic_gpio_recovery) {
1433 if (!gpio_is_valid(bri->scl_gpio)) {
1434 dev_err(&adap->dev, "Invalid SCL gpio, not using recovery\n");
1435 adap->bus_recovery_info = NULL;
1436 goto exit_recovery;
1437 }
1438
1439 if (gpio_is_valid(bri->sda_gpio))
1440 bri->get_sda = get_sda_gpio_value;
1441 else
1442 bri->get_sda = NULL;
1443
1444 bri->get_scl = get_scl_gpio_value;
1445 bri->set_scl = set_scl_gpio_value;
1446 } else if (!bri->set_scl || !bri->get_scl) {
1447 /* Generic SCL recovery */
1448 dev_err(&adap->dev, "No {get|set}_gpio() found, not using recovery\n");
1449 adap->bus_recovery_info = NULL;
1450 }
1451 }
1452
1453exit_recovery:
729d6dd5 1454 /* create pre-declared device nodes */
687b81d0 1455 of_i2c_register_devices(adap);
55e71edb 1456 acpi_i2c_register_devices(adap);
5d98e61d 1457 acpi_i2c_install_space_handler(adap);
687b81d0 1458
6e13e641
DB
1459 if (adap->nr < __i2c_first_dynamic_bus_num)
1460 i2c_scan_static_board_info(adap);
1461
4735c98f 1462 /* Notify drivers */
35fc37f8 1463 mutex_lock(&core_lock);
d6703281 1464 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
caada32a 1465 mutex_unlock(&core_lock);
35fc37f8
JD
1466
1467 return 0;
b119c6c9 1468
b119c6c9 1469out_list:
35fc37f8 1470 mutex_lock(&core_lock);
b119c6c9 1471 idr_remove(&i2c_adapter_idr, adap->nr);
35fc37f8
JD
1472 mutex_unlock(&core_lock);
1473 return res;
1da177e4
LT
1474}
1475
ee5c2744
DA
1476/**
1477 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1478 * @adap: the adapter to register (with adap->nr initialized)
1479 * Context: can sleep
1480 *
1481 * See i2c_add_numbered_adapter() for details.
1482 */
1483static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1484{
1485 int id;
1486
1487 mutex_lock(&core_lock);
1488 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1,
1489 GFP_KERNEL);
1490 mutex_unlock(&core_lock);
1491 if (id < 0)
1492 return id == -ENOSPC ? -EBUSY : id;
1493
1494 return i2c_register_adapter(adap);
1495}
1496
6e13e641
DB
1497/**
1498 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1499 * @adapter: the adapter to add
d64f73be 1500 * Context: can sleep
6e13e641
DB
1501 *
1502 * This routine is used to declare an I2C adapter when its bus number
ee5c2744
DA
1503 * doesn't matter or when its bus number is specified by an dt alias.
1504 * Examples of bases when the bus number doesn't matter: I2C adapters
1505 * dynamically added by USB links or PCI plugin cards.
6e13e641
DB
1506 *
1507 * When this returns zero, a new bus number was allocated and stored
1508 * in adap->nr, and the specified adapter became available for clients.
1509 * Otherwise, a negative errno value is returned.
1510 */
1511int i2c_add_adapter(struct i2c_adapter *adapter)
1512{
ee5c2744 1513 struct device *dev = &adapter->dev;
4ae42b0f 1514 int id;
6e13e641 1515
ee5c2744
DA
1516 if (dev->of_node) {
1517 id = of_alias_get_id(dev->of_node, "i2c");
1518 if (id >= 0) {
1519 adapter->nr = id;
1520 return __i2c_add_numbered_adapter(adapter);
1521 }
1522 }
1523
caada32a 1524 mutex_lock(&core_lock);
4ae42b0f
TH
1525 id = idr_alloc(&i2c_adapter_idr, adapter,
1526 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
caada32a 1527 mutex_unlock(&core_lock);
4ae42b0f
TH
1528 if (id < 0)
1529 return id;
6e13e641
DB
1530
1531 adapter->nr = id;
4ae42b0f 1532
6e13e641
DB
1533 return i2c_register_adapter(adapter);
1534}
1535EXPORT_SYMBOL(i2c_add_adapter);
1536
1537/**
1538 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1539 * @adap: the adapter to register (with adap->nr initialized)
d64f73be 1540 * Context: can sleep
6e13e641
DB
1541 *
1542 * This routine is used to declare an I2C adapter when its bus number
8c07e46f
RD
1543 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1544 * or otherwise built in to the system's mainboard, and where i2c_board_info
6e13e641
DB
1545 * is used to properly configure I2C devices.
1546 *
488bf314
GL
1547 * If the requested bus number is set to -1, then this function will behave
1548 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1549 *
6e13e641
DB
1550 * If no devices have pre-been declared for this bus, then be sure to
1551 * register the adapter before any dynamically allocated ones. Otherwise
1552 * the required bus ID may not be available.
1553 *
1554 * When this returns zero, the specified adapter became available for
1555 * clients using the bus number provided in adap->nr. Also, the table
1556 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1557 * and the appropriate driver model device nodes are created. Otherwise, a
1558 * negative errno value is returned.
1559 */
1560int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1561{
488bf314
GL
1562 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1563 return i2c_add_adapter(adap);
6e13e641 1564
ee5c2744 1565 return __i2c_add_numbered_adapter(adap);
6e13e641
DB
1566}
1567EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1568
19baba4c 1569static void i2c_do_del_adapter(struct i2c_driver *driver,
69b0089a 1570 struct i2c_adapter *adapter)
026526f5 1571{
4735c98f 1572 struct i2c_client *client, *_n;
026526f5 1573
acec211c
JD
1574 /* Remove the devices we created ourselves as the result of hardware
1575 * probing (using a driver's detect method) */
4735c98f
JD
1576 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1577 if (client->adapter == adapter) {
1578 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1579 client->name, client->addr);
1580 list_del(&client->detected);
1581 i2c_unregister_device(client);
1582 }
1583 }
026526f5
JD
1584}
1585
e549c2b5 1586static int __unregister_client(struct device *dev, void *dummy)
5219bf88
JD
1587{
1588 struct i2c_client *client = i2c_verify_client(dev);
1589 if (client && strcmp(client->name, "dummy"))
1590 i2c_unregister_device(client);
1591 return 0;
1592}
1593
1594static int __unregister_dummy(struct device *dev, void *dummy)
e549c2b5
JD
1595{
1596 struct i2c_client *client = i2c_verify_client(dev);
1597 if (client)
1598 i2c_unregister_device(client);
1599 return 0;
1600}
1601
69b0089a
JD
1602static int __process_removed_adapter(struct device_driver *d, void *data)
1603{
19baba4c
LPC
1604 i2c_do_del_adapter(to_i2c_driver(d), data);
1605 return 0;
69b0089a
JD
1606}
1607
d64f73be
DB
1608/**
1609 * i2c_del_adapter - unregister I2C adapter
1610 * @adap: the adapter being unregistered
1611 * Context: can sleep
1612 *
1613 * This unregisters an I2C adapter which was previously registered
1614 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1615 */
71546300 1616void i2c_del_adapter(struct i2c_adapter *adap)
1da177e4 1617{
35fc37f8 1618 struct i2c_adapter *found;
bbd2d9c9 1619 struct i2c_client *client, *next;
1da177e4
LT
1620
1621 /* First make sure that this adapter was ever added */
35fc37f8
JD
1622 mutex_lock(&core_lock);
1623 found = idr_find(&i2c_adapter_idr, adap->nr);
1624 mutex_unlock(&core_lock);
1625 if (found != adap) {
b6d7b3d1
JD
1626 pr_debug("i2c-core: attempting to delete unregistered "
1627 "adapter [%s]\n", adap->name);
71546300 1628 return;
1da177e4
LT
1629 }
1630
5d98e61d 1631 acpi_i2c_remove_space_handler(adap);
026526f5 1632 /* Tell drivers about this removal */
35fc37f8 1633 mutex_lock(&core_lock);
19baba4c 1634 bus_for_each_drv(&i2c_bus_type, NULL, adap,
69b0089a 1635 __process_removed_adapter);
35fc37f8 1636 mutex_unlock(&core_lock);
1da177e4 1637
bbd2d9c9 1638 /* Remove devices instantiated from sysfs */
390946b1
JD
1639 mutex_lock_nested(&adap->userspace_clients_lock,
1640 i2c_adapter_depth(adap));
6629dcff
JD
1641 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1642 detected) {
1643 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1644 client->addr);
1645 list_del(&client->detected);
1646 i2c_unregister_device(client);
bbd2d9c9 1647 }
dafc50d1 1648 mutex_unlock(&adap->userspace_clients_lock);
bbd2d9c9 1649
e549c2b5 1650 /* Detach any active clients. This can't fail, thus we do not
5219bf88
JD
1651 * check the returned value. This is a two-pass process, because
1652 * we can't remove the dummy devices during the first pass: they
1653 * could have been instantiated by real devices wishing to clean
1654 * them up properly, so we give them a chance to do that first. */
19baba4c
LPC
1655 device_for_each_child(&adap->dev, NULL, __unregister_client);
1656 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
1da177e4 1657
2bb5095a
JD
1658#ifdef CONFIG_I2C_COMPAT
1659 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
1660 adap->dev.parent);
1661#endif
1662
c5567521
TLSC
1663 /* device name is gone after device_unregister */
1664 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1665
26680ee2
WS
1666 /* wait until all references to the device are gone
1667 *
1668 * FIXME: This is old code and should ideally be replaced by an
1669 * alternative which results in decoupling the lifetime of the struct
1670 * device from the i2c_adapter, like spi or netdev do. Any solution
1671 * should be throughly tested with DEBUG_KOBJECT_RELEASE enabled!
1672 */
1da177e4 1673 init_completion(&adap->dev_released);
1da177e4 1674 device_unregister(&adap->dev);
1da177e4 1675 wait_for_completion(&adap->dev_released);
1da177e4 1676
6e13e641 1677 /* free bus id */
35fc37f8 1678 mutex_lock(&core_lock);
1da177e4 1679 idr_remove(&i2c_adapter_idr, adap->nr);
35fc37f8 1680 mutex_unlock(&core_lock);
1da177e4 1681
bd4bc3db
JD
1682 /* Clear the device structure in case this adapter is ever going to be
1683 added again */
1684 memset(&adap->dev, 0, sizeof(adap->dev));
1da177e4 1685}
c0564606 1686EXPORT_SYMBOL(i2c_del_adapter);
1da177e4 1687
7b4fbc50
DB
1688/* ------------------------------------------------------------------------- */
1689
7ae31482
JD
1690int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))
1691{
1692 int res;
1693
1694 mutex_lock(&core_lock);
1695 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
1696 mutex_unlock(&core_lock);
1697
1698 return res;
1699}
1700EXPORT_SYMBOL_GPL(i2c_for_each_dev);
1701
69b0089a 1702static int __process_new_driver(struct device *dev, void *data)
7f101a97 1703{
4f8cf824
JD
1704 if (dev->type != &i2c_adapter_type)
1705 return 0;
69b0089a 1706 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
7f101a97
DY
1707}
1708
7b4fbc50
DB
1709/*
1710 * An i2c_driver is used with one or more i2c_client (device) nodes to access
729d6dd5 1711 * i2c slave chips, on a bus instance associated with some i2c_adapter.
1da177e4
LT
1712 */
1713
de59cf9e 1714int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
1da177e4 1715{
7eebcb7c 1716 int res;
1da177e4 1717
1d0b19c9
DB
1718 /* Can't register until after driver model init */
1719 if (unlikely(WARN_ON(!i2c_bus_type.p)))
1720 return -EAGAIN;
1721
1da177e4 1722 /* add the driver to the list of i2c drivers in the driver core */
de59cf9e 1723 driver->driver.owner = owner;
1da177e4 1724 driver->driver.bus = &i2c_bus_type;
1da177e4 1725
729d6dd5 1726 /* When registration returns, the driver core
6e13e641
DB
1727 * will have called probe() for all matching-but-unbound devices.
1728 */
1da177e4
LT
1729 res = driver_register(&driver->driver);
1730 if (res)
7eebcb7c 1731 return res;
438d6c2c 1732
35d8b2e6 1733 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
1da177e4 1734
4735c98f
JD
1735 INIT_LIST_HEAD(&driver->clients);
1736 /* Walk the adapters that are already present */
7ae31482 1737 i2c_for_each_dev(driver, __process_new_driver);
35fc37f8 1738
7f101a97
DY
1739 return 0;
1740}
1741EXPORT_SYMBOL(i2c_register_driver);
1742
69b0089a 1743static int __process_removed_driver(struct device *dev, void *data)
7f101a97 1744{
19baba4c
LPC
1745 if (dev->type == &i2c_adapter_type)
1746 i2c_do_del_adapter(data, to_i2c_adapter(dev));
1747 return 0;
1da177e4
LT
1748}
1749
a1d9e6e4
DB
1750/**
1751 * i2c_del_driver - unregister I2C driver
1752 * @driver: the driver being unregistered
d64f73be 1753 * Context: can sleep
a1d9e6e4 1754 */
b3e82096 1755void i2c_del_driver(struct i2c_driver *driver)
1da177e4 1756{
7ae31482 1757 i2c_for_each_dev(driver, __process_removed_driver);
1da177e4
LT
1758
1759 driver_unregister(&driver->driver);
35d8b2e6 1760 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
1da177e4 1761}
c0564606 1762EXPORT_SYMBOL(i2c_del_driver);
1da177e4 1763
7b4fbc50
DB
1764/* ------------------------------------------------------------------------- */
1765
e48d3319
JD
1766/**
1767 * i2c_use_client - increments the reference count of the i2c client structure
1768 * @client: the client being referenced
1769 *
1770 * Each live reference to a client should be refcounted. The driver model does
1771 * that automatically as part of driver binding, so that most drivers don't
1772 * need to do this explicitly: they hold a reference until they're unbound
1773 * from the device.
1774 *
1775 * A pointer to the client with the incremented reference counter is returned.
1776 */
1777struct i2c_client *i2c_use_client(struct i2c_client *client)
1da177e4 1778{
6ea438ec
DB
1779 if (client && get_device(&client->dev))
1780 return client;
1781 return NULL;
1da177e4 1782}
c0564606 1783EXPORT_SYMBOL(i2c_use_client);
1da177e4 1784
e48d3319
JD
1785/**
1786 * i2c_release_client - release a use of the i2c client structure
1787 * @client: the client being no longer referenced
1788 *
1789 * Must be called when a user of a client is finished with it.
1790 */
1791void i2c_release_client(struct i2c_client *client)
1da177e4 1792{
6ea438ec
DB
1793 if (client)
1794 put_device(&client->dev);
1da177e4 1795}
c0564606 1796EXPORT_SYMBOL(i2c_release_client);
1da177e4 1797
9b766b81
DB
1798struct i2c_cmd_arg {
1799 unsigned cmd;
1800 void *arg;
1801};
1802
1803static int i2c_cmd(struct device *dev, void *_arg)
1804{
1805 struct i2c_client *client = i2c_verify_client(dev);
1806 struct i2c_cmd_arg *arg = _arg;
0acc2b32
LPC
1807 struct i2c_driver *driver;
1808
1809 if (!client || !client->dev.driver)
1810 return 0;
9b766b81 1811
0acc2b32
LPC
1812 driver = to_i2c_driver(client->dev.driver);
1813 if (driver->command)
1814 driver->command(client, arg->cmd, arg->arg);
9b766b81
DB
1815 return 0;
1816}
1817
1da177e4
LT
1818void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1819{
9b766b81 1820 struct i2c_cmd_arg cmd_arg;
1da177e4 1821
9b766b81
DB
1822 cmd_arg.cmd = cmd;
1823 cmd_arg.arg = arg;
1824 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
1da177e4 1825}
c0564606 1826EXPORT_SYMBOL(i2c_clients_command);
1da177e4 1827
ea7513bb
PA
1828#if IS_ENABLED(CONFIG_OF_DYNAMIC)
1829static int of_i2c_notify(struct notifier_block *nb, unsigned long action,
1830 void *arg)
1831{
1832 struct of_reconfig_data *rd = arg;
1833 struct i2c_adapter *adap;
1834 struct i2c_client *client;
1835
1836 switch (of_reconfig_get_state_change(action, rd)) {
1837 case OF_RECONFIG_CHANGE_ADD:
1838 adap = of_find_i2c_adapter_by_node(rd->dn->parent);
1839 if (adap == NULL)
1840 return NOTIFY_OK; /* not for us */
1841
1842 client = of_i2c_register_device(adap, rd->dn);
1843 put_device(&adap->dev);
1844
1845 if (IS_ERR(client)) {
1846 pr_err("%s: failed to create for '%s'\n",
1847 __func__, rd->dn->full_name);
1848 return notifier_from_errno(PTR_ERR(client));
1849 }
1850 break;
1851 case OF_RECONFIG_CHANGE_REMOVE:
1852 /* find our device by node */
1853 client = of_find_i2c_device_by_node(rd->dn);
1854 if (client == NULL)
1855 return NOTIFY_OK; /* no? not meant for us */
1856
1857 /* unregister takes one ref away */
1858 i2c_unregister_device(client);
1859
1860 /* and put the reference of the find */
1861 put_device(&client->dev);
1862 break;
1863 }
1864
1865 return NOTIFY_OK;
1866}
1867static struct notifier_block i2c_of_notifier = {
1868 .notifier_call = of_i2c_notify,
1869};
1870#else
1871extern struct notifier_block i2c_of_notifier;
1872#endif /* CONFIG_OF_DYNAMIC */
1873
1da177e4
LT
1874static int __init i2c_init(void)
1875{
1876 int retval;
1877
1878 retval = bus_register(&i2c_bus_type);
1da177e4
LT
1879 if (retval)
1880 return retval;
2bb5095a
JD
1881#ifdef CONFIG_I2C_COMPAT
1882 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1883 if (!i2c_adapter_compat_class) {
1884 retval = -ENOMEM;
1885 goto bus_err;
1886 }
1887#endif
e9f1373b
DB
1888 retval = i2c_add_driver(&dummy_driver);
1889 if (retval)
2bb5095a 1890 goto class_err;
ea7513bb
PA
1891
1892 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
1893 WARN_ON(of_reconfig_notifier_register(&i2c_of_notifier));
1894
e9f1373b
DB
1895 return 0;
1896
2bb5095a
JD
1897class_err:
1898#ifdef CONFIG_I2C_COMPAT
1899 class_compat_unregister(i2c_adapter_compat_class);
e9f1373b 1900bus_err:
2bb5095a 1901#endif
e9f1373b
DB
1902 bus_unregister(&i2c_bus_type);
1903 return retval;
1da177e4
LT
1904}
1905
1906static void __exit i2c_exit(void)
1907{
ea7513bb
PA
1908 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
1909 WARN_ON(of_reconfig_notifier_unregister(&i2c_of_notifier));
e9f1373b 1910 i2c_del_driver(&dummy_driver);
2bb5095a
JD
1911#ifdef CONFIG_I2C_COMPAT
1912 class_compat_unregister(i2c_adapter_compat_class);
1913#endif
1da177e4 1914 bus_unregister(&i2c_bus_type);
d9a83d62 1915 tracepoint_synchronize_unregister();
1da177e4
LT
1916}
1917
a10f9e7c
DB
1918/* We must initialize early, because some subsystems register i2c drivers
1919 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1920 */
1921postcore_initcall(i2c_init);
1da177e4
LT
1922module_exit(i2c_exit);
1923
1924/* ----------------------------------------------------
1925 * the functional interface to the i2c busses.
1926 * ----------------------------------------------------
1927 */
1928
b37d2a3a
JD
1929/**
1930 * __i2c_transfer - unlocked flavor of i2c_transfer
1931 * @adap: Handle to I2C bus
1932 * @msgs: One or more messages to execute before STOP is issued to
1933 * terminate the operation; each message begins with a START.
1934 * @num: Number of messages to be executed.
1935 *
1936 * Returns negative errno, else the number of messages executed.
1937 *
1938 * Adapter lock must be held when calling this function. No debug logging
1939 * takes place. adap->algo->master_xfer existence isn't checked.
1940 */
1941int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1942{
1943 unsigned long orig_jiffies;
1944 int ret, try;
1945
d9a83d62
DH
1946 /* i2c_trace_msg gets enabled when tracepoint i2c_transfer gets
1947 * enabled. This is an efficient way of keeping the for-loop from
1948 * being executed when not needed.
1949 */
1950 if (static_key_false(&i2c_trace_msg)) {
1951 int i;
1952 for (i = 0; i < num; i++)
1953 if (msgs[i].flags & I2C_M_RD)
1954 trace_i2c_read(adap, &msgs[i], i);
1955 else
1956 trace_i2c_write(adap, &msgs[i], i);
1957 }
1958
b37d2a3a
JD
1959 /* Retry automatically on arbitration loss */
1960 orig_jiffies = jiffies;
1961 for (ret = 0, try = 0; try <= adap->retries; try++) {
1962 ret = adap->algo->master_xfer(adap, msgs, num);
1963 if (ret != -EAGAIN)
1964 break;
1965 if (time_after(jiffies, orig_jiffies + adap->timeout))
1966 break;
1967 }
1968
d9a83d62
DH
1969 if (static_key_false(&i2c_trace_msg)) {
1970 int i;
1971 for (i = 0; i < ret; i++)
1972 if (msgs[i].flags & I2C_M_RD)
1973 trace_i2c_reply(adap, &msgs[i], i);
1974 trace_i2c_result(adap, i, ret);
1975 }
1976
b37d2a3a
JD
1977 return ret;
1978}
1979EXPORT_SYMBOL(__i2c_transfer);
1980
a1cdedac
DB
1981/**
1982 * i2c_transfer - execute a single or combined I2C message
1983 * @adap: Handle to I2C bus
1984 * @msgs: One or more messages to execute before STOP is issued to
1985 * terminate the operation; each message begins with a START.
1986 * @num: Number of messages to be executed.
1987 *
1988 * Returns negative errno, else the number of messages executed.
1989 *
1990 * Note that there is no requirement that each message be sent to
1991 * the same slave address, although that is the most common model.
1992 */
09b8ce0a 1993int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1da177e4 1994{
b37d2a3a 1995 int ret;
1da177e4 1996
a1cdedac
DB
1997 /* REVISIT the fault reporting model here is weak:
1998 *
1999 * - When we get an error after receiving N bytes from a slave,
2000 * there is no way to report "N".
2001 *
2002 * - When we get a NAK after transmitting N bytes to a slave,
2003 * there is no way to report "N" ... or to let the master
2004 * continue executing the rest of this combined message, if
2005 * that's the appropriate response.
2006 *
2007 * - When for example "num" is two and we successfully complete
2008 * the first message but get an error part way through the
2009 * second, it's unclear whether that should be reported as
2010 * one (discarding status on the second message) or errno
2011 * (discarding status on the first one).
2012 */
2013
1da177e4
LT
2014 if (adap->algo->master_xfer) {
2015#ifdef DEBUG
2016 for (ret = 0; ret < num; ret++) {
2017 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
209d27c3
JD
2018 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
2019 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
2020 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
1da177e4
LT
2021 }
2022#endif
2023
cea443a8 2024 if (in_atomic() || irqs_disabled()) {
fe61e07e 2025 ret = i2c_trylock_adapter(adap);
cea443a8
MR
2026 if (!ret)
2027 /* I2C activity is ongoing. */
2028 return -EAGAIN;
2029 } else {
fe61e07e 2030 i2c_lock_adapter(adap);
cea443a8
MR
2031 }
2032
b37d2a3a 2033 ret = __i2c_transfer(adap, msgs, num);
fe61e07e 2034 i2c_unlock_adapter(adap);
1da177e4
LT
2035
2036 return ret;
2037 } else {
2038 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
24a5bb7b 2039 return -EOPNOTSUPP;
1da177e4
LT
2040 }
2041}
c0564606 2042EXPORT_SYMBOL(i2c_transfer);
1da177e4 2043
a1cdedac
DB
2044/**
2045 * i2c_master_send - issue a single I2C message in master transmit mode
2046 * @client: Handle to slave device
2047 * @buf: Data that will be written to the slave
0c43ea54 2048 * @count: How many bytes to write, must be less than 64k since msg.len is u16
a1cdedac
DB
2049 *
2050 * Returns negative errno, or else the number of bytes written.
2051 */
0cc43a18 2052int i2c_master_send(const struct i2c_client *client, const char *buf, int count)
1da177e4
LT
2053{
2054 int ret;
7225acf4 2055 struct i2c_adapter *adap = client->adapter;
1da177e4
LT
2056 struct i2c_msg msg;
2057
815f55f2
JD
2058 msg.addr = client->addr;
2059 msg.flags = client->flags & I2C_M_TEN;
2060 msg.len = count;
2061 msg.buf = (char *)buf;
438d6c2c 2062
815f55f2 2063 ret = i2c_transfer(adap, &msg, 1);
1da177e4 2064
834aa6f3
WS
2065 /*
2066 * If everything went ok (i.e. 1 msg transmitted), return #bytes
2067 * transmitted, else error code.
2068 */
815f55f2 2069 return (ret == 1) ? count : ret;
1da177e4 2070}
c0564606 2071EXPORT_SYMBOL(i2c_master_send);
1da177e4 2072
a1cdedac
DB
2073/**
2074 * i2c_master_recv - issue a single I2C message in master receive mode
2075 * @client: Handle to slave device
2076 * @buf: Where to store data read from slave
0c43ea54 2077 * @count: How many bytes to read, must be less than 64k since msg.len is u16
a1cdedac
DB
2078 *
2079 * Returns negative errno, or else the number of bytes read.
2080 */
0cc43a18 2081int i2c_master_recv(const struct i2c_client *client, char *buf, int count)
1da177e4 2082{
7225acf4 2083 struct i2c_adapter *adap = client->adapter;
1da177e4
LT
2084 struct i2c_msg msg;
2085 int ret;
815f55f2
JD
2086
2087 msg.addr = client->addr;
2088 msg.flags = client->flags & I2C_M_TEN;
2089 msg.flags |= I2C_M_RD;
2090 msg.len = count;
2091 msg.buf = buf;
2092
2093 ret = i2c_transfer(adap, &msg, 1);
2094
834aa6f3
WS
2095 /*
2096 * If everything went ok (i.e. 1 msg received), return #bytes received,
2097 * else error code.
2098 */
815f55f2 2099 return (ret == 1) ? count : ret;
1da177e4 2100}
c0564606 2101EXPORT_SYMBOL(i2c_master_recv);
1da177e4 2102
1da177e4
LT
2103/* ----------------------------------------------------
2104 * the i2c address scanning function
2105 * Will not work for 10-bit addresses!
2106 * ----------------------------------------------------
2107 */
1da177e4 2108
63e4e802
JD
2109/*
2110 * Legacy default probe function, mostly relevant for SMBus. The default
2111 * probe method is a quick write, but it is known to corrupt the 24RF08
2112 * EEPROMs due to a state machine bug, and could also irreversibly
2113 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2114 * we use a short byte read instead. Also, some bus drivers don't implement
2115 * quick write, so we fallback to a byte read in that case too.
2116 * On x86, there is another special case for FSC hardware monitoring chips,
2117 * which want regular byte reads (address 0x73.) Fortunately, these are the
2118 * only known chips using this I2C address on PC hardware.
2119 * Returns 1 if probe succeeded, 0 if not.
2120 */
2121static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
2122{
2123 int err;
2124 union i2c_smbus_data dummy;
2125
2126#ifdef CONFIG_X86
2127 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
2128 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
2129 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2130 I2C_SMBUS_BYTE_DATA, &dummy);
2131 else
2132#endif
8031d79b
JD
2133 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
2134 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
63e4e802
JD
2135 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
2136 I2C_SMBUS_QUICK, NULL);
8031d79b
JD
2137 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
2138 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2139 I2C_SMBUS_BYTE, &dummy);
2140 else {
d63a9e85
AL
2141 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
2142 addr);
8031d79b
JD
2143 err = -EOPNOTSUPP;
2144 }
63e4e802
JD
2145
2146 return err >= 0;
2147}
2148
ccfbbd08 2149static int i2c_detect_address(struct i2c_client *temp_client,
4735c98f
JD
2150 struct i2c_driver *driver)
2151{
2152 struct i2c_board_info info;
2153 struct i2c_adapter *adapter = temp_client->adapter;
2154 int addr = temp_client->addr;
2155 int err;
2156
2157 /* Make sure the address is valid */
656b8761
JD
2158 err = i2c_check_addr_validity(addr);
2159 if (err) {
4735c98f
JD
2160 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
2161 addr);
656b8761 2162 return err;
4735c98f
JD
2163 }
2164
2165 /* Skip if already in use */
3b5f794b 2166 if (i2c_check_addr_busy(adapter, addr))
4735c98f
JD
2167 return 0;
2168
ccfbbd08 2169 /* Make sure there is something at this address */
63e4e802
JD
2170 if (!i2c_default_probe(adapter, addr))
2171 return 0;
4735c98f
JD
2172
2173 /* Finally call the custom detection function */
2174 memset(&info, 0, sizeof(struct i2c_board_info));
2175 info.addr = addr;
310ec792 2176 err = driver->detect(temp_client, &info);
4735c98f
JD
2177 if (err) {
2178 /* -ENODEV is returned if the detection fails. We catch it
2179 here as this isn't an error. */
2180 return err == -ENODEV ? 0 : err;
2181 }
2182
2183 /* Consistency check */
2184 if (info.type[0] == '\0') {
2185 dev_err(&adapter->dev, "%s detection function provided "
2186 "no name for 0x%x\n", driver->driver.name,
2187 addr);
2188 } else {
2189 struct i2c_client *client;
2190
2191 /* Detection succeeded, instantiate the device */
0c176170
WS
2192 if (adapter->class & I2C_CLASS_DEPRECATED)
2193 dev_warn(&adapter->dev,
2194 "This adapter will soon drop class based instantiation of devices. "
2195 "Please make sure client 0x%02x gets instantiated by other means. "
2196 "Check 'Documentation/i2c/instantiating-devices' for details.\n",
2197 info.addr);
2198
4735c98f
JD
2199 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
2200 info.type, info.addr);
2201 client = i2c_new_device(adapter, &info);
2202 if (client)
2203 list_add_tail(&client->detected, &driver->clients);
2204 else
2205 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
2206 info.type, info.addr);
2207 }
2208 return 0;
2209}
2210
2211static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
2212{
c3813d6a 2213 const unsigned short *address_list;
4735c98f
JD
2214 struct i2c_client *temp_client;
2215 int i, err = 0;
2216 int adap_id = i2c_adapter_id(adapter);
2217
c3813d6a
JD
2218 address_list = driver->address_list;
2219 if (!driver->detect || !address_list)
4735c98f
JD
2220 return 0;
2221
45552272
WS
2222 /* Warn that the adapter lost class based instantiation */
2223 if (adapter->class == I2C_CLASS_DEPRECATED) {
2224 dev_dbg(&adapter->dev,
2225 "This adapter dropped support for I2C classes and "
2226 "won't auto-detect %s devices anymore. If you need it, check "
2227 "'Documentation/i2c/instantiating-devices' for alternatives.\n",
2228 driver->driver.name);
2229 return 0;
2230 }
2231
51b54ba9
JD
2232 /* Stop here if the classes do not match */
2233 if (!(adapter->class & driver->class))
2234 return 0;
2235
4735c98f
JD
2236 /* Set up a temporary client to help detect callback */
2237 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
2238 if (!temp_client)
2239 return -ENOMEM;
2240 temp_client->adapter = adapter;
2241
c3813d6a 2242 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
4735c98f 2243 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
c3813d6a
JD
2244 "addr 0x%02x\n", adap_id, address_list[i]);
2245 temp_client->addr = address_list[i];
ccfbbd08 2246 err = i2c_detect_address(temp_client, driver);
51b54ba9
JD
2247 if (unlikely(err))
2248 break;
4735c98f
JD
2249 }
2250
4735c98f
JD
2251 kfree(temp_client);
2252 return err;
2253}
2254
d44f19d5
JD
2255int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
2256{
2257 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2258 I2C_SMBUS_QUICK, NULL) >= 0;
2259}
2260EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
2261
12b5053a
JD
2262struct i2c_client *
2263i2c_new_probed_device(struct i2c_adapter *adap,
2264 struct i2c_board_info *info,
9a94241a
JD
2265 unsigned short const *addr_list,
2266 int (*probe)(struct i2c_adapter *, unsigned short addr))
12b5053a
JD
2267{
2268 int i;
2269
8031d79b 2270 if (!probe)
9a94241a 2271 probe = i2c_default_probe;
12b5053a 2272
12b5053a
JD
2273 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2274 /* Check address validity */
656b8761 2275 if (i2c_check_addr_validity(addr_list[i]) < 0) {
12b5053a
JD
2276 dev_warn(&adap->dev, "Invalid 7-bit address "
2277 "0x%02x\n", addr_list[i]);
2278 continue;
2279 }
2280
2281 /* Check address availability */
3b5f794b 2282 if (i2c_check_addr_busy(adap, addr_list[i])) {
12b5053a
JD
2283 dev_dbg(&adap->dev, "Address 0x%02x already in "
2284 "use, not probing\n", addr_list[i]);
2285 continue;
2286 }
2287
63e4e802 2288 /* Test address responsiveness */
9a94241a 2289 if (probe(adap, addr_list[i]))
63e4e802 2290 break;
12b5053a 2291 }
12b5053a
JD
2292
2293 if (addr_list[i] == I2C_CLIENT_END) {
2294 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2295 return NULL;
2296 }
2297
2298 info->addr = addr_list[i];
2299 return i2c_new_device(adap, info);
2300}
2301EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2302
d735b34d 2303struct i2c_adapter *i2c_get_adapter(int nr)
1da177e4 2304{
1da177e4 2305 struct i2c_adapter *adapter;
438d6c2c 2306
caada32a 2307 mutex_lock(&core_lock);
d735b34d 2308 adapter = idr_find(&i2c_adapter_idr, nr);
a0920e10
MH
2309 if (adapter && !try_module_get(adapter->owner))
2310 adapter = NULL;
2311
caada32a 2312 mutex_unlock(&core_lock);
a0920e10 2313 return adapter;
1da177e4 2314}
c0564606 2315EXPORT_SYMBOL(i2c_get_adapter);
1da177e4
LT
2316
2317void i2c_put_adapter(struct i2c_adapter *adap)
2318{
c66c4cc0
SH
2319 if (adap)
2320 module_put(adap->owner);
1da177e4 2321}
c0564606 2322EXPORT_SYMBOL(i2c_put_adapter);
1da177e4
LT
2323
2324/* The SMBus parts */
2325
438d6c2c 2326#define POLY (0x1070U << 3)
09b8ce0a 2327static u8 crc8(u16 data)
1da177e4
LT
2328{
2329 int i;
438d6c2c 2330
7225acf4 2331 for (i = 0; i < 8; i++) {
438d6c2c 2332 if (data & 0x8000)
1da177e4
LT
2333 data = data ^ POLY;
2334 data = data << 1;
2335 }
2336 return (u8)(data >> 8);
2337}
2338
421ef47b
JD
2339/* Incremental CRC8 over count bytes in the array pointed to by p */
2340static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
1da177e4
LT
2341{
2342 int i;
2343
7225acf4 2344 for (i = 0; i < count; i++)
421ef47b 2345 crc = crc8((crc ^ p[i]) << 8);
1da177e4
LT
2346 return crc;
2347}
2348
421ef47b
JD
2349/* Assume a 7-bit address, which is reasonable for SMBus */
2350static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
1da177e4 2351{
421ef47b
JD
2352 /* The address will be sent first */
2353 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
2354 pec = i2c_smbus_pec(pec, &addr, 1);
2355
2356 /* The data buffer follows */
2357 return i2c_smbus_pec(pec, msg->buf, msg->len);
1da177e4
LT
2358}
2359
421ef47b
JD
2360/* Used for write only transactions */
2361static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
1da177e4 2362{
421ef47b
JD
2363 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
2364 msg->len++;
1da177e4
LT
2365}
2366
421ef47b
JD
2367/* Return <0 on CRC error
2368 If there was a write before this read (most cases) we need to take the
2369 partial CRC from the write part into account.
2370 Note that this function does modify the message (we need to decrease the
2371 message length to hide the CRC byte from the caller). */
2372static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
1da177e4 2373{
421ef47b
JD
2374 u8 rpec = msg->buf[--msg->len];
2375 cpec = i2c_smbus_msg_pec(cpec, msg);
1da177e4 2376
1da177e4
LT
2377 if (rpec != cpec) {
2378 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
2379 rpec, cpec);
24a5bb7b 2380 return -EBADMSG;
1da177e4 2381 }
438d6c2c 2382 return 0;
1da177e4
LT
2383}
2384
a1cdedac
DB
2385/**
2386 * i2c_smbus_read_byte - SMBus "receive byte" protocol
2387 * @client: Handle to slave device
2388 *
2389 * This executes the SMBus "receive byte" protocol, returning negative errno
2390 * else the byte received from the device.
2391 */
0cc43a18 2392s32 i2c_smbus_read_byte(const struct i2c_client *client)
1da177e4
LT
2393{
2394 union i2c_smbus_data data;
24a5bb7b
DB
2395 int status;
2396
2397 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2398 I2C_SMBUS_READ, 0,
2399 I2C_SMBUS_BYTE, &data);
2400 return (status < 0) ? status : data.byte;
1da177e4 2401}
c0564606 2402EXPORT_SYMBOL(i2c_smbus_read_byte);
1da177e4 2403
a1cdedac
DB
2404/**
2405 * i2c_smbus_write_byte - SMBus "send byte" protocol
2406 * @client: Handle to slave device
2407 * @value: Byte to be sent
2408 *
2409 * This executes the SMBus "send byte" protocol, returning negative errno
2410 * else zero on success.
2411 */
0cc43a18 2412s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
1da177e4 2413{
7225acf4 2414 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
421ef47b 2415 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
1da177e4 2416}
c0564606 2417EXPORT_SYMBOL(i2c_smbus_write_byte);
1da177e4 2418
a1cdedac
DB
2419/**
2420 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
2421 * @client: Handle to slave device
2422 * @command: Byte interpreted by slave
2423 *
2424 * This executes the SMBus "read byte" protocol, returning negative errno
2425 * else a data byte received from the device.
2426 */
0cc43a18 2427s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
1da177e4
LT
2428{
2429 union i2c_smbus_data data;
24a5bb7b
DB
2430 int status;
2431
2432 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2433 I2C_SMBUS_READ, command,
2434 I2C_SMBUS_BYTE_DATA, &data);
2435 return (status < 0) ? status : data.byte;
1da177e4 2436}
c0564606 2437EXPORT_SYMBOL(i2c_smbus_read_byte_data);
1da177e4 2438
a1cdedac
DB
2439/**
2440 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
2441 * @client: Handle to slave device
2442 * @command: Byte interpreted by slave
2443 * @value: Byte being written
2444 *
2445 * This executes the SMBus "write byte" protocol, returning negative errno
2446 * else zero on success.
2447 */
0cc43a18
JD
2448s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
2449 u8 value)
1da177e4
LT
2450{
2451 union i2c_smbus_data data;
2452 data.byte = value;
7225acf4
FH
2453 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2454 I2C_SMBUS_WRITE, command,
2455 I2C_SMBUS_BYTE_DATA, &data);
1da177e4 2456}
c0564606 2457EXPORT_SYMBOL(i2c_smbus_write_byte_data);
1da177e4 2458
a1cdedac
DB
2459/**
2460 * i2c_smbus_read_word_data - SMBus "read word" protocol
2461 * @client: Handle to slave device
2462 * @command: Byte interpreted by slave
2463 *
2464 * This executes the SMBus "read word" protocol, returning negative errno
2465 * else a 16-bit unsigned "word" received from the device.
2466 */
0cc43a18 2467s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
1da177e4
LT
2468{
2469 union i2c_smbus_data data;
24a5bb7b
DB
2470 int status;
2471
2472 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2473 I2C_SMBUS_READ, command,
2474 I2C_SMBUS_WORD_DATA, &data);
2475 return (status < 0) ? status : data.word;
1da177e4 2476}
c0564606 2477EXPORT_SYMBOL(i2c_smbus_read_word_data);
1da177e4 2478
a1cdedac
DB
2479/**
2480 * i2c_smbus_write_word_data - SMBus "write word" protocol
2481 * @client: Handle to slave device
2482 * @command: Byte interpreted by slave
2483 * @value: 16-bit "word" being written
2484 *
2485 * This executes the SMBus "write word" protocol, returning negative errno
2486 * else zero on success.
2487 */
0cc43a18
JD
2488s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
2489 u16 value)
1da177e4
LT
2490{
2491 union i2c_smbus_data data;
2492 data.word = value;
7225acf4
FH
2493 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2494 I2C_SMBUS_WRITE, command,
2495 I2C_SMBUS_WORD_DATA, &data);
1da177e4 2496}
c0564606 2497EXPORT_SYMBOL(i2c_smbus_write_word_data);
1da177e4 2498
a64ec07d 2499/**
a1cdedac 2500 * i2c_smbus_read_block_data - SMBus "block read" protocol
a64ec07d 2501 * @client: Handle to slave device
a1cdedac 2502 * @command: Byte interpreted by slave
a64ec07d
DB
2503 * @values: Byte array into which data will be read; big enough to hold
2504 * the data returned by the slave. SMBus allows at most 32 bytes.
2505 *
a1cdedac
DB
2506 * This executes the SMBus "block read" protocol, returning negative errno
2507 * else the number of data bytes in the slave's response.
a64ec07d
DB
2508 *
2509 * Note that using this function requires that the client's adapter support
2510 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
2511 * support this; its emulation through I2C messaging relies on a specific
2512 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
2513 */
0cc43a18 2514s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
b86a1bc8
JD
2515 u8 *values)
2516{
2517 union i2c_smbus_data data;
24a5bb7b 2518 int status;
b86a1bc8 2519
24a5bb7b
DB
2520 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2521 I2C_SMBUS_READ, command,
2522 I2C_SMBUS_BLOCK_DATA, &data);
2523 if (status)
2524 return status;
b86a1bc8
JD
2525
2526 memcpy(values, &data.block[1], data.block[0]);
2527 return data.block[0];
2528}
2529EXPORT_SYMBOL(i2c_smbus_read_block_data);
2530
a1cdedac
DB
2531/**
2532 * i2c_smbus_write_block_data - SMBus "block write" protocol
2533 * @client: Handle to slave device
2534 * @command: Byte interpreted by slave
2535 * @length: Size of data block; SMBus allows at most 32 bytes
2536 * @values: Byte array which will be written.
2537 *
2538 * This executes the SMBus "block write" protocol, returning negative errno
2539 * else zero on success.
2540 */
0cc43a18 2541s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
46f5ed75 2542 u8 length, const u8 *values)
1da177e4
LT
2543{
2544 union i2c_smbus_data data;
7656032b 2545
1da177e4
LT
2546 if (length > I2C_SMBUS_BLOCK_MAX)
2547 length = I2C_SMBUS_BLOCK_MAX;
1da177e4 2548 data.block[0] = length;
7656032b 2549 memcpy(&data.block[1], values, length);
7225acf4
FH
2550 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2551 I2C_SMBUS_WRITE, command,
2552 I2C_SMBUS_BLOCK_DATA, &data);
1da177e4 2553}
c0564606 2554EXPORT_SYMBOL(i2c_smbus_write_block_data);
1da177e4
LT
2555
2556/* Returns the number of read bytes */
0cc43a18 2557s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
4b2643d7 2558 u8 length, u8 *values)
1da177e4
LT
2559{
2560 union i2c_smbus_data data;
24a5bb7b 2561 int status;
7656032b 2562
4b2643d7
JD
2563 if (length > I2C_SMBUS_BLOCK_MAX)
2564 length = I2C_SMBUS_BLOCK_MAX;
2565 data.block[0] = length;
24a5bb7b
DB
2566 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2567 I2C_SMBUS_READ, command,
2568 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2569 if (status < 0)
2570 return status;
7656032b
JD
2571
2572 memcpy(values, &data.block[1], data.block[0]);
2573 return data.block[0];
1da177e4 2574}
c0564606 2575EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
1da177e4 2576
0cc43a18 2577s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
46f5ed75 2578 u8 length, const u8 *values)
21bbd691
JD
2579{
2580 union i2c_smbus_data data;
2581
2582 if (length > I2C_SMBUS_BLOCK_MAX)
2583 length = I2C_SMBUS_BLOCK_MAX;
2584 data.block[0] = length;
2585 memcpy(data.block + 1, values, length);
2586 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2587 I2C_SMBUS_WRITE, command,
2588 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2589}
c0564606 2590EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
21bbd691 2591
438d6c2c 2592/* Simulate a SMBus command using the i2c protocol
1da177e4 2593 No checking of parameters is done! */
7225acf4
FH
2594static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
2595 unsigned short flags,
2596 char read_write, u8 command, int size,
2597 union i2c_smbus_data *data)
1da177e4
LT
2598{
2599 /* So we need to generate a series of msgs. In the case of writing, we
2600 need to use only one message; when reading, we need two. We initialize
2601 most things with sane defaults, to keep the code below somewhat
2602 simpler. */
5c50d188
HI
2603 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
2604 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
7225acf4 2605 int num = read_write == I2C_SMBUS_READ ? 2 : 1;
1da177e4 2606 int i;
421ef47b 2607 u8 partial_pec = 0;
24a5bb7b 2608 int status;
230da094
S
2609 struct i2c_msg msg[2] = {
2610 {
2611 .addr = addr,
2612 .flags = flags,
2613 .len = 1,
2614 .buf = msgbuf0,
2615 }, {
2616 .addr = addr,
2617 .flags = flags | I2C_M_RD,
2618 .len = 0,
2619 .buf = msgbuf1,
2620 },
2621 };
1da177e4
LT
2622
2623 msgbuf0[0] = command;
7225acf4 2624 switch (size) {
1da177e4
LT
2625 case I2C_SMBUS_QUICK:
2626 msg[0].len = 0;
2627 /* Special case: The read/write field is used as data */
f29d2e02
RK
2628 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
2629 I2C_M_RD : 0);
1da177e4
LT
2630 num = 1;
2631 break;
2632 case I2C_SMBUS_BYTE:
2633 if (read_write == I2C_SMBUS_READ) {
2634 /* Special case: only a read! */
2635 msg[0].flags = I2C_M_RD | flags;
2636 num = 1;
2637 }
2638 break;
2639 case I2C_SMBUS_BYTE_DATA:
2640 if (read_write == I2C_SMBUS_READ)
2641 msg[1].len = 1;
2642 else {
2643 msg[0].len = 2;
2644 msgbuf0[1] = data->byte;
2645 }
2646 break;
2647 case I2C_SMBUS_WORD_DATA:
2648 if (read_write == I2C_SMBUS_READ)
2649 msg[1].len = 2;
2650 else {
7225acf4 2651 msg[0].len = 3;
1da177e4 2652 msgbuf0[1] = data->word & 0xff;
7eff82c8 2653 msgbuf0[2] = data->word >> 8;
1da177e4
LT
2654 }
2655 break;
2656 case I2C_SMBUS_PROC_CALL:
2657 num = 2; /* Special case */
2658 read_write = I2C_SMBUS_READ;
2659 msg[0].len = 3;
2660 msg[1].len = 2;
2661 msgbuf0[1] = data->word & 0xff;
7eff82c8 2662 msgbuf0[2] = data->word >> 8;
1da177e4
LT
2663 break;
2664 case I2C_SMBUS_BLOCK_DATA:
1da177e4 2665 if (read_write == I2C_SMBUS_READ) {
209d27c3
JD
2666 msg[1].flags |= I2C_M_RECV_LEN;
2667 msg[1].len = 1; /* block length will be added by
2668 the underlying bus driver */
1da177e4
LT
2669 } else {
2670 msg[0].len = data->block[0] + 2;
2671 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
24a5bb7b
DB
2672 dev_err(&adapter->dev,
2673 "Invalid block write size %d\n",
2674 data->block[0]);
2675 return -EINVAL;
1da177e4 2676 }
5c50d188 2677 for (i = 1; i < msg[0].len; i++)
1da177e4
LT
2678 msgbuf0[i] = data->block[i-1];
2679 }
2680 break;
2681 case I2C_SMBUS_BLOCK_PROC_CALL:
209d27c3
JD
2682 num = 2; /* Another special case */
2683 read_write = I2C_SMBUS_READ;
2684 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
24a5bb7b
DB
2685 dev_err(&adapter->dev,
2686 "Invalid block write size %d\n",
209d27c3 2687 data->block[0]);
24a5bb7b 2688 return -EINVAL;
209d27c3
JD
2689 }
2690 msg[0].len = data->block[0] + 2;
2691 for (i = 1; i < msg[0].len; i++)
2692 msgbuf0[i] = data->block[i-1];
2693 msg[1].flags |= I2C_M_RECV_LEN;
2694 msg[1].len = 1; /* block length will be added by
2695 the underlying bus driver */
2696 break;
1da177e4
LT
2697 case I2C_SMBUS_I2C_BLOCK_DATA:
2698 if (read_write == I2C_SMBUS_READ) {
4b2643d7 2699 msg[1].len = data->block[0];
1da177e4
LT
2700 } else {
2701 msg[0].len = data->block[0] + 1;
30dac746 2702 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
24a5bb7b
DB
2703 dev_err(&adapter->dev,
2704 "Invalid block write size %d\n",
2705 data->block[0]);
2706 return -EINVAL;
1da177e4
LT
2707 }
2708 for (i = 1; i <= data->block[0]; i++)
2709 msgbuf0[i] = data->block[i];
2710 }
2711 break;
2712 default:
24a5bb7b
DB
2713 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
2714 return -EOPNOTSUPP;
1da177e4
LT
2715 }
2716
421ef47b
JD
2717 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
2718 && size != I2C_SMBUS_I2C_BLOCK_DATA);
2719 if (i) {
2720 /* Compute PEC if first message is a write */
2721 if (!(msg[0].flags & I2C_M_RD)) {
438d6c2c 2722 if (num == 1) /* Write only */
421ef47b
JD
2723 i2c_smbus_add_pec(&msg[0]);
2724 else /* Write followed by read */
2725 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
2726 }
2727 /* Ask for PEC if last message is a read */
2728 if (msg[num-1].flags & I2C_M_RD)
438d6c2c 2729 msg[num-1].len++;
421ef47b
JD
2730 }
2731
24a5bb7b
DB
2732 status = i2c_transfer(adapter, msg, num);
2733 if (status < 0)
2734 return status;
1da177e4 2735
421ef47b
JD
2736 /* Check PEC if last message is a read */
2737 if (i && (msg[num-1].flags & I2C_M_RD)) {
24a5bb7b
DB
2738 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
2739 if (status < 0)
2740 return status;
421ef47b
JD
2741 }
2742
1da177e4 2743 if (read_write == I2C_SMBUS_READ)
7225acf4
FH
2744 switch (size) {
2745 case I2C_SMBUS_BYTE:
2746 data->byte = msgbuf0[0];
2747 break;
2748 case I2C_SMBUS_BYTE_DATA:
2749 data->byte = msgbuf1[0];
2750 break;
2751 case I2C_SMBUS_WORD_DATA:
2752 case I2C_SMBUS_PROC_CALL:
2753 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
2754 break;
2755 case I2C_SMBUS_I2C_BLOCK_DATA:
2756 for (i = 0; i < data->block[0]; i++)
2757 data->block[i+1] = msgbuf1[i];
2758 break;
2759 case I2C_SMBUS_BLOCK_DATA:
2760 case I2C_SMBUS_BLOCK_PROC_CALL:
2761 for (i = 0; i < msgbuf1[0] + 1; i++)
2762 data->block[i] = msgbuf1[i];
2763 break;
1da177e4
LT
2764 }
2765 return 0;
2766}
2767
a1cdedac
DB
2768/**
2769 * i2c_smbus_xfer - execute SMBus protocol operations
2770 * @adapter: Handle to I2C bus
2771 * @addr: Address of SMBus slave on that bus
2772 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
2773 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
2774 * @command: Byte interpreted by slave, for protocols which use such bytes
2775 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
2776 * @data: Data to be read or written
2777 *
2778 * This executes an SMBus protocol operation, and returns a negative
2779 * errno code else zero on success.
2780 */
09b8ce0a 2781s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
a1cdedac 2782 char read_write, u8 command, int protocol,
09b8ce0a 2783 union i2c_smbus_data *data)
1da177e4 2784{
66b650f0
CW
2785 unsigned long orig_jiffies;
2786 int try;
1da177e4 2787 s32 res;
1da177e4 2788
8a325997
DH
2789 /* If enabled, the following two tracepoints are conditional on
2790 * read_write and protocol.
2791 */
2792 trace_smbus_write(adapter, addr, flags, read_write,
2793 command, protocol, data);
2794 trace_smbus_read(adapter, addr, flags, read_write,
2795 command, protocol);
2796
d47726c5 2797 flags &= I2C_M_TEN | I2C_CLIENT_PEC | I2C_CLIENT_SCCB;
1da177e4
LT
2798
2799 if (adapter->algo->smbus_xfer) {
fe61e07e 2800 i2c_lock_adapter(adapter);
66b650f0
CW
2801
2802 /* Retry automatically on arbitration loss */
2803 orig_jiffies = jiffies;
2804 for (res = 0, try = 0; try <= adapter->retries; try++) {
2805 res = adapter->algo->smbus_xfer(adapter, addr, flags,
2806 read_write, command,
2807 protocol, data);
2808 if (res != -EAGAIN)
2809 break;
2810 if (time_after(jiffies,
2811 orig_jiffies + adapter->timeout))
2812 break;
2813 }
fe61e07e 2814 i2c_unlock_adapter(adapter);
1da177e4 2815
72fc2c7f 2816 if (res != -EOPNOTSUPP || !adapter->algo->master_xfer)
8a325997 2817 goto trace;
72fc2c7f
LP
2818 /*
2819 * Fall back to i2c_smbus_xfer_emulated if the adapter doesn't
2820 * implement native support for the SMBus operation.
2821 */
2822 }
2823
8a325997
DH
2824 res = i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
2825 command, protocol, data);
2826
2827trace:
2828 /* If enabled, the reply tracepoint is conditional on read_write. */
2829 trace_smbus_reply(adapter, addr, flags, read_write,
2830 command, protocol, data);
2831 trace_smbus_result(adapter, addr, flags, read_write,
2832 command, protocol, res);
2833
2834 return res;
1da177e4 2835}
1da177e4 2836EXPORT_SYMBOL(i2c_smbus_xfer);
1da177e4 2837
d5fd120e 2838#if IS_ENABLED(CONFIG_I2C_SLAVE)
4b1acc43
WS
2839int i2c_slave_register(struct i2c_client *client, i2c_slave_cb_t slave_cb)
2840{
2841 int ret;
2842
2843 if (!client || !slave_cb)
2844 return -EINVAL;
2845
2846 if (!(client->flags & I2C_CLIENT_TEN)) {
2847 /* Enforce stricter address checking */
2848 ret = i2c_check_addr_validity(client->addr);
2849 if (ret)
2850 return ret;
2851 }
2852
2853 if (!client->adapter->algo->reg_slave)
2854 return -EOPNOTSUPP;
2855
2856 client->slave_cb = slave_cb;
2857
2858 i2c_lock_adapter(client->adapter);
2859 ret = client->adapter->algo->reg_slave(client);
2860 i2c_unlock_adapter(client->adapter);
2861
2862 if (ret)
2863 client->slave_cb = NULL;
2864
2865 return ret;
2866}
2867EXPORT_SYMBOL_GPL(i2c_slave_register);
2868
2869int i2c_slave_unregister(struct i2c_client *client)
2870{
2871 int ret;
2872
2873 if (!client->adapter->algo->unreg_slave)
2874 return -EOPNOTSUPP;
2875
2876 i2c_lock_adapter(client->adapter);
2877 ret = client->adapter->algo->unreg_slave(client);
2878 i2c_unlock_adapter(client->adapter);
2879
2880 if (ret == 0)
2881 client->slave_cb = NULL;
2882
2883 return ret;
2884}
2885EXPORT_SYMBOL_GPL(i2c_slave_unregister);
d5fd120e 2886#endif
4b1acc43 2887
1da177e4
LT
2888MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2889MODULE_DESCRIPTION("I2C-Bus main module");
2890MODULE_LICENSE("GPL");
This page took 1.561814 seconds and 5 git commands to generate.