Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / drivers / i2c / i2c-core.c
blobd74c0b34248ea6c38472cc401571d8f519844c4d
1 /* i2c-core.c - a device driver for the iic-bus interface */
2 /* ------------------------------------------------------------------------- */
3 /* Copyright (C) 1995-99 Simon G. Vogl
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.
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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 MA 02110-1301 USA. */
19 /* ------------------------------------------------------------------------- */
21 /* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
22 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
23 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
24 Jean Delvare <khali@linux-fr.org>
25 Mux support by Rodolfo Giometti <giometti@enneenne.com> and
26 Michael Lawnick <michael.lawnick.ext@nsn.com>
27 OF support is copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
28 (based on a previous patch from Jon Smirl <jonsmirl@gmail.com>) and
29 (c) 2013 Wolfram Sang <wsa@the-dreams.de>
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/delay.h>
35 #include <linux/errno.h>
36 #include <linux/gpio.h>
37 #include <linux/slab.h>
38 #include <linux/i2c.h>
39 #include <linux/init.h>
40 #include <linux/idr.h>
41 #include <linux/mutex.h>
42 #include <linux/of.h>
43 #include <linux/of_device.h>
44 #include <linux/of_irq.h>
45 #include <linux/completion.h>
46 #include <linux/hardirq.h>
47 #include <linux/irqflags.h>
48 #include <linux/rwsem.h>
49 #include <linux/pm_runtime.h>
50 #include <linux/acpi.h>
51 #include <asm/uaccess.h>
53 #include "i2c-core.h"
56 /* core_lock protects i2c_adapter_idr, and guarantees
57 that device detection, deletion of detected devices, and attach_adapter
58 calls are serialized */
59 static DEFINE_MUTEX(core_lock);
60 static DEFINE_IDR(i2c_adapter_idr);
62 static struct device_type i2c_client_type;
63 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
65 /* ------------------------------------------------------------------------- */
67 static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
68 const struct i2c_client *client)
70 while (id->name[0]) {
71 if (strcmp(client->name, id->name) == 0)
72 return id;
73 id++;
75 return NULL;
78 static int i2c_device_match(struct device *dev, struct device_driver *drv)
80 struct i2c_client *client = i2c_verify_client(dev);
81 struct i2c_driver *driver;
83 if (!client)
84 return 0;
86 /* Attempt an OF style match */
87 if (of_driver_match_device(dev, drv))
88 return 1;
90 /* Then ACPI style match */
91 if (acpi_driver_match_device(dev, drv))
92 return 1;
94 driver = to_i2c_driver(drv);
95 /* match on an id table if there is one */
96 if (driver->id_table)
97 return i2c_match_id(driver->id_table, client) != NULL;
99 return 0;
103 /* uevent helps with hotplug: modprobe -q $(MODALIAS) */
104 static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
106 struct i2c_client *client = to_i2c_client(dev);
108 if (add_uevent_var(env, "MODALIAS=%s%s",
109 I2C_MODULE_PREFIX, client->name))
110 return -ENOMEM;
111 dev_dbg(dev, "uevent\n");
112 return 0;
115 /* i2c bus recovery routines */
116 static int get_scl_gpio_value(struct i2c_adapter *adap)
118 return gpio_get_value(adap->bus_recovery_info->scl_gpio);
121 static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
123 gpio_set_value(adap->bus_recovery_info->scl_gpio, val);
126 static int get_sda_gpio_value(struct i2c_adapter *adap)
128 return gpio_get_value(adap->bus_recovery_info->sda_gpio);
131 static int i2c_get_gpios_for_recovery(struct i2c_adapter *adap)
133 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
134 struct device *dev = &adap->dev;
135 int ret = 0;
137 ret = gpio_request_one(bri->scl_gpio, GPIOF_OPEN_DRAIN |
138 GPIOF_OUT_INIT_HIGH, "i2c-scl");
139 if (ret) {
140 dev_warn(dev, "Can't get SCL gpio: %d\n", bri->scl_gpio);
141 return ret;
144 if (bri->get_sda) {
145 if (gpio_request_one(bri->sda_gpio, GPIOF_IN, "i2c-sda")) {
146 /* work without SDA polling */
147 dev_warn(dev, "Can't get SDA gpio: %d. Not using SDA polling\n",
148 bri->sda_gpio);
149 bri->get_sda = NULL;
153 return ret;
156 static void i2c_put_gpios_for_recovery(struct i2c_adapter *adap)
158 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
160 if (bri->get_sda)
161 gpio_free(bri->sda_gpio);
163 gpio_free(bri->scl_gpio);
167 * We are generating clock pulses. ndelay() determines durating of clk pulses.
168 * We will generate clock with rate 100 KHz and so duration of both clock levels
169 * is: delay in ns = (10^6 / 100) / 2
171 #define RECOVERY_NDELAY 5000
172 #define RECOVERY_CLK_CNT 9
174 static int i2c_generic_recovery(struct i2c_adapter *adap)
176 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
177 int i = 0, val = 1, ret = 0;
179 if (bri->prepare_recovery)
180 bri->prepare_recovery(bri);
183 * By this time SCL is high, as we need to give 9 falling-rising edges
185 while (i++ < RECOVERY_CLK_CNT * 2) {
186 if (val) {
187 /* Break if SDA is high */
188 if (bri->get_sda && bri->get_sda(adap))
189 break;
190 /* SCL shouldn't be low here */
191 if (!bri->get_scl(adap)) {
192 dev_err(&adap->dev,
193 "SCL is stuck low, exit recovery\n");
194 ret = -EBUSY;
195 break;
199 val = !val;
200 bri->set_scl(adap, val);
201 ndelay(RECOVERY_NDELAY);
204 if (bri->unprepare_recovery)
205 bri->unprepare_recovery(bri);
207 return ret;
210 int i2c_generic_scl_recovery(struct i2c_adapter *adap)
212 adap->bus_recovery_info->set_scl(adap, 1);
213 return i2c_generic_recovery(adap);
216 int i2c_generic_gpio_recovery(struct i2c_adapter *adap)
218 int ret;
220 ret = i2c_get_gpios_for_recovery(adap);
221 if (ret)
222 return ret;
224 ret = i2c_generic_recovery(adap);
225 i2c_put_gpios_for_recovery(adap);
227 return ret;
230 int i2c_recover_bus(struct i2c_adapter *adap)
232 if (!adap->bus_recovery_info)
233 return -EOPNOTSUPP;
235 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
236 return adap->bus_recovery_info->recover_bus(adap);
239 static int i2c_device_probe(struct device *dev)
241 struct i2c_client *client = i2c_verify_client(dev);
242 struct i2c_driver *driver;
243 int status;
245 if (!client)
246 return 0;
248 driver = to_i2c_driver(dev->driver);
249 if (!driver->probe || !driver->id_table)
250 return -ENODEV;
252 if (!device_can_wakeup(&client->dev))
253 device_init_wakeup(&client->dev,
254 client->flags & I2C_CLIENT_WAKE);
255 dev_dbg(dev, "probe\n");
257 acpi_dev_pm_attach(&client->dev, true);
258 status = driver->probe(client, i2c_match_id(driver->id_table, client));
259 if (status) {
260 i2c_set_clientdata(client, NULL);
261 acpi_dev_pm_detach(&client->dev, true);
263 return status;
266 static int i2c_device_remove(struct device *dev)
268 struct i2c_client *client = i2c_verify_client(dev);
269 struct i2c_driver *driver;
270 int status;
272 if (!client || !dev->driver)
273 return 0;
275 driver = to_i2c_driver(dev->driver);
276 if (driver->remove) {
277 dev_dbg(dev, "remove\n");
278 status = driver->remove(client);
279 } else {
280 dev->driver = NULL;
281 status = 0;
283 if (status == 0)
284 i2c_set_clientdata(client, NULL);
285 acpi_dev_pm_detach(&client->dev, true);
286 return status;
289 static void i2c_device_shutdown(struct device *dev)
291 struct i2c_client *client = i2c_verify_client(dev);
292 struct i2c_driver *driver;
294 if (!client || !dev->driver)
295 return;
296 driver = to_i2c_driver(dev->driver);
297 if (driver->shutdown)
298 driver->shutdown(client);
301 #ifdef CONFIG_PM_SLEEP
302 static int i2c_legacy_suspend(struct device *dev, pm_message_t mesg)
304 struct i2c_client *client = i2c_verify_client(dev);
305 struct i2c_driver *driver;
307 if (!client || !dev->driver)
308 return 0;
309 driver = to_i2c_driver(dev->driver);
310 if (!driver->suspend)
311 return 0;
312 return driver->suspend(client, mesg);
315 static int i2c_legacy_resume(struct device *dev)
317 struct i2c_client *client = i2c_verify_client(dev);
318 struct i2c_driver *driver;
320 if (!client || !dev->driver)
321 return 0;
322 driver = to_i2c_driver(dev->driver);
323 if (!driver->resume)
324 return 0;
325 return driver->resume(client);
328 static int i2c_device_pm_suspend(struct device *dev)
330 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
332 if (pm)
333 return pm_generic_suspend(dev);
334 else
335 return i2c_legacy_suspend(dev, PMSG_SUSPEND);
338 static int i2c_device_pm_resume(struct device *dev)
340 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
342 if (pm)
343 return pm_generic_resume(dev);
344 else
345 return i2c_legacy_resume(dev);
348 static int i2c_device_pm_freeze(struct device *dev)
350 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
352 if (pm)
353 return pm_generic_freeze(dev);
354 else
355 return i2c_legacy_suspend(dev, PMSG_FREEZE);
358 static int i2c_device_pm_thaw(struct device *dev)
360 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
362 if (pm)
363 return pm_generic_thaw(dev);
364 else
365 return i2c_legacy_resume(dev);
368 static int i2c_device_pm_poweroff(struct device *dev)
370 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
372 if (pm)
373 return pm_generic_poweroff(dev);
374 else
375 return i2c_legacy_suspend(dev, PMSG_HIBERNATE);
378 static int i2c_device_pm_restore(struct device *dev)
380 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
382 if (pm)
383 return pm_generic_restore(dev);
384 else
385 return i2c_legacy_resume(dev);
387 #else /* !CONFIG_PM_SLEEP */
388 #define i2c_device_pm_suspend NULL
389 #define i2c_device_pm_resume NULL
390 #define i2c_device_pm_freeze NULL
391 #define i2c_device_pm_thaw NULL
392 #define i2c_device_pm_poweroff NULL
393 #define i2c_device_pm_restore NULL
394 #endif /* !CONFIG_PM_SLEEP */
396 static void i2c_client_dev_release(struct device *dev)
398 kfree(to_i2c_client(dev));
401 static ssize_t
402 show_name(struct device *dev, struct device_attribute *attr, char *buf)
404 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
405 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
408 static ssize_t
409 show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
411 struct i2c_client *client = to_i2c_client(dev);
412 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
415 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
416 static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
418 static struct attribute *i2c_dev_attrs[] = {
419 &dev_attr_name.attr,
420 /* modalias helps coldplug: modprobe $(cat .../modalias) */
421 &dev_attr_modalias.attr,
422 NULL
425 static struct attribute_group i2c_dev_attr_group = {
426 .attrs = i2c_dev_attrs,
429 static const struct attribute_group *i2c_dev_attr_groups[] = {
430 &i2c_dev_attr_group,
431 NULL
434 static const struct dev_pm_ops i2c_device_pm_ops = {
435 .suspend = i2c_device_pm_suspend,
436 .resume = i2c_device_pm_resume,
437 .freeze = i2c_device_pm_freeze,
438 .thaw = i2c_device_pm_thaw,
439 .poweroff = i2c_device_pm_poweroff,
440 .restore = i2c_device_pm_restore,
441 SET_RUNTIME_PM_OPS(
442 pm_generic_runtime_suspend,
443 pm_generic_runtime_resume,
444 NULL
448 struct bus_type i2c_bus_type = {
449 .name = "i2c",
450 .match = i2c_device_match,
451 .probe = i2c_device_probe,
452 .remove = i2c_device_remove,
453 .shutdown = i2c_device_shutdown,
454 .pm = &i2c_device_pm_ops,
456 EXPORT_SYMBOL_GPL(i2c_bus_type);
458 static struct device_type i2c_client_type = {
459 .groups = i2c_dev_attr_groups,
460 .uevent = i2c_device_uevent,
461 .release = i2c_client_dev_release,
466 * i2c_verify_client - return parameter as i2c_client, or NULL
467 * @dev: device, probably from some driver model iterator
469 * When traversing the driver model tree, perhaps using driver model
470 * iterators like @device_for_each_child(), you can't assume very much
471 * about the nodes you find. Use this function to avoid oopses caused
472 * by wrongly treating some non-I2C device as an i2c_client.
474 struct i2c_client *i2c_verify_client(struct device *dev)
476 return (dev->type == &i2c_client_type)
477 ? to_i2c_client(dev)
478 : NULL;
480 EXPORT_SYMBOL(i2c_verify_client);
483 /* This is a permissive address validity check, I2C address map constraints
484 * are purposely not enforced, except for the general call address. */
485 static int i2c_check_client_addr_validity(const struct i2c_client *client)
487 if (client->flags & I2C_CLIENT_TEN) {
488 /* 10-bit address, all values are valid */
489 if (client->addr > 0x3ff)
490 return -EINVAL;
491 } else {
492 /* 7-bit address, reject the general call address */
493 if (client->addr == 0x00 || client->addr > 0x7f)
494 return -EINVAL;
496 return 0;
499 /* And this is a strict address validity check, used when probing. If a
500 * device uses a reserved address, then it shouldn't be probed. 7-bit
501 * addressing is assumed, 10-bit address devices are rare and should be
502 * explicitly enumerated. */
503 static int i2c_check_addr_validity(unsigned short addr)
506 * Reserved addresses per I2C specification:
507 * 0x00 General call address / START byte
508 * 0x01 CBUS address
509 * 0x02 Reserved for different bus format
510 * 0x03 Reserved for future purposes
511 * 0x04-0x07 Hs-mode master code
512 * 0x78-0x7b 10-bit slave addressing
513 * 0x7c-0x7f Reserved for future purposes
515 if (addr < 0x08 || addr > 0x77)
516 return -EINVAL;
517 return 0;
520 static int __i2c_check_addr_busy(struct device *dev, void *addrp)
522 struct i2c_client *client = i2c_verify_client(dev);
523 int addr = *(int *)addrp;
525 if (client && client->addr == addr)
526 return -EBUSY;
527 return 0;
530 /* walk up mux tree */
531 static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
533 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
534 int result;
536 result = device_for_each_child(&adapter->dev, &addr,
537 __i2c_check_addr_busy);
539 if (!result && parent)
540 result = i2c_check_mux_parents(parent, addr);
542 return result;
545 /* recurse down mux tree */
546 static int i2c_check_mux_children(struct device *dev, void *addrp)
548 int result;
550 if (dev->type == &i2c_adapter_type)
551 result = device_for_each_child(dev, addrp,
552 i2c_check_mux_children);
553 else
554 result = __i2c_check_addr_busy(dev, addrp);
556 return result;
559 static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
561 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
562 int result = 0;
564 if (parent)
565 result = i2c_check_mux_parents(parent, addr);
567 if (!result)
568 result = device_for_each_child(&adapter->dev, &addr,
569 i2c_check_mux_children);
571 return result;
575 * i2c_lock_adapter - Get exclusive access to an I2C bus segment
576 * @adapter: Target I2C bus segment
578 void i2c_lock_adapter(struct i2c_adapter *adapter)
580 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
582 if (parent)
583 i2c_lock_adapter(parent);
584 else
585 rt_mutex_lock(&adapter->bus_lock);
587 EXPORT_SYMBOL_GPL(i2c_lock_adapter);
590 * i2c_trylock_adapter - Try to get exclusive access to an I2C bus segment
591 * @adapter: Target I2C bus segment
593 static int i2c_trylock_adapter(struct i2c_adapter *adapter)
595 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
597 if (parent)
598 return i2c_trylock_adapter(parent);
599 else
600 return rt_mutex_trylock(&adapter->bus_lock);
604 * i2c_unlock_adapter - Release exclusive access to an I2C bus segment
605 * @adapter: Target I2C bus segment
607 void i2c_unlock_adapter(struct i2c_adapter *adapter)
609 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
611 if (parent)
612 i2c_unlock_adapter(parent);
613 else
614 rt_mutex_unlock(&adapter->bus_lock);
616 EXPORT_SYMBOL_GPL(i2c_unlock_adapter);
618 static void i2c_dev_set_name(struct i2c_adapter *adap,
619 struct i2c_client *client)
621 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
623 if (adev) {
624 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
625 return;
628 /* For 10-bit clients, add an arbitrary offset to avoid collisions */
629 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
630 client->addr | ((client->flags & I2C_CLIENT_TEN)
631 ? 0xa000 : 0));
635 * i2c_new_device - instantiate an i2c device
636 * @adap: the adapter managing the device
637 * @info: describes one I2C device; bus_num is ignored
638 * Context: can sleep
640 * Create an i2c device. Binding is handled through driver model
641 * probe()/remove() methods. A driver may be bound to this device when we
642 * return from this function, or any later moment (e.g. maybe hotplugging will
643 * load the driver module). This call is not appropriate for use by mainboard
644 * initialization logic, which usually runs during an arch_initcall() long
645 * before any i2c_adapter could exist.
647 * This returns the new i2c client, which may be saved for later use with
648 * i2c_unregister_device(); or NULL to indicate an error.
650 struct i2c_client *
651 i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
653 struct i2c_client *client;
654 int status;
656 client = kzalloc(sizeof *client, GFP_KERNEL);
657 if (!client)
658 return NULL;
660 client->adapter = adap;
662 client->dev.platform_data = info->platform_data;
664 if (info->archdata)
665 client->dev.archdata = *info->archdata;
667 client->flags = info->flags;
668 client->addr = info->addr;
669 client->irq = info->irq;
671 strlcpy(client->name, info->type, sizeof(client->name));
673 /* Check for address validity */
674 status = i2c_check_client_addr_validity(client);
675 if (status) {
676 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
677 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
678 goto out_err_silent;
681 /* Check for address business */
682 status = i2c_check_addr_busy(adap, client->addr);
683 if (status)
684 goto out_err;
686 client->dev.parent = &client->adapter->dev;
687 client->dev.bus = &i2c_bus_type;
688 client->dev.type = &i2c_client_type;
689 client->dev.of_node = info->of_node;
690 ACPI_COMPANION_SET(&client->dev, info->acpi_node.companion);
692 i2c_dev_set_name(adap, client);
693 status = device_register(&client->dev);
694 if (status)
695 goto out_err;
697 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
698 client->name, dev_name(&client->dev));
700 return client;
702 out_err:
703 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
704 "(%d)\n", client->name, client->addr, status);
705 out_err_silent:
706 kfree(client);
707 return NULL;
709 EXPORT_SYMBOL_GPL(i2c_new_device);
713 * i2c_unregister_device - reverse effect of i2c_new_device()
714 * @client: value returned from i2c_new_device()
715 * Context: can sleep
717 void i2c_unregister_device(struct i2c_client *client)
719 device_unregister(&client->dev);
721 EXPORT_SYMBOL_GPL(i2c_unregister_device);
724 static const struct i2c_device_id dummy_id[] = {
725 { "dummy", 0 },
726 { },
729 static int dummy_probe(struct i2c_client *client,
730 const struct i2c_device_id *id)
732 return 0;
735 static int dummy_remove(struct i2c_client *client)
737 return 0;
740 static struct i2c_driver dummy_driver = {
741 .driver.name = "dummy",
742 .probe = dummy_probe,
743 .remove = dummy_remove,
744 .id_table = dummy_id,
748 * i2c_new_dummy - return a new i2c device bound to a dummy driver
749 * @adapter: the adapter managing the device
750 * @address: seven bit address to be used
751 * Context: can sleep
753 * This returns an I2C client bound to the "dummy" driver, intended for use
754 * with devices that consume multiple addresses. Examples of such chips
755 * include various EEPROMS (like 24c04 and 24c08 models).
757 * These dummy devices have two main uses. First, most I2C and SMBus calls
758 * except i2c_transfer() need a client handle; the dummy will be that handle.
759 * And second, this prevents the specified address from being bound to a
760 * different driver.
762 * This returns the new i2c client, which should be saved for later use with
763 * i2c_unregister_device(); or NULL to indicate an error.
765 struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
767 struct i2c_board_info info = {
768 I2C_BOARD_INFO("dummy", address),
771 return i2c_new_device(adapter, &info);
773 EXPORT_SYMBOL_GPL(i2c_new_dummy);
775 /* ------------------------------------------------------------------------- */
777 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
779 static void i2c_adapter_dev_release(struct device *dev)
781 struct i2c_adapter *adap = to_i2c_adapter(dev);
782 complete(&adap->dev_released);
786 * This function is only needed for mutex_lock_nested, so it is never
787 * called unless locking correctness checking is enabled. Thus we
788 * make it inline to avoid a compiler warning. That's what gcc ends up
789 * doing anyway.
791 static inline unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
793 unsigned int depth = 0;
795 while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
796 depth++;
798 return depth;
802 * Let users instantiate I2C devices through sysfs. This can be used when
803 * platform initialization code doesn't contain the proper data for
804 * whatever reason. Also useful for drivers that do device detection and
805 * detection fails, either because the device uses an unexpected address,
806 * or this is a compatible device with different ID register values.
808 * Parameter checking may look overzealous, but we really don't want
809 * the user to provide incorrect parameters.
811 static ssize_t
812 i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
813 const char *buf, size_t count)
815 struct i2c_adapter *adap = to_i2c_adapter(dev);
816 struct i2c_board_info info;
817 struct i2c_client *client;
818 char *blank, end;
819 int res;
821 memset(&info, 0, sizeof(struct i2c_board_info));
823 blank = strchr(buf, ' ');
824 if (!blank) {
825 dev_err(dev, "%s: Missing parameters\n", "new_device");
826 return -EINVAL;
828 if (blank - buf > I2C_NAME_SIZE - 1) {
829 dev_err(dev, "%s: Invalid device name\n", "new_device");
830 return -EINVAL;
832 memcpy(info.type, buf, blank - buf);
834 /* Parse remaining parameters, reject extra parameters */
835 res = sscanf(++blank, "%hi%c", &info.addr, &end);
836 if (res < 1) {
837 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
838 return -EINVAL;
840 if (res > 1 && end != '\n') {
841 dev_err(dev, "%s: Extra parameters\n", "new_device");
842 return -EINVAL;
845 client = i2c_new_device(adap, &info);
846 if (!client)
847 return -EINVAL;
849 /* Keep track of the added device */
850 mutex_lock(&adap->userspace_clients_lock);
851 list_add_tail(&client->detected, &adap->userspace_clients);
852 mutex_unlock(&adap->userspace_clients_lock);
853 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
854 info.type, info.addr);
856 return count;
860 * And of course let the users delete the devices they instantiated, if
861 * they got it wrong. This interface can only be used to delete devices
862 * instantiated by i2c_sysfs_new_device above. This guarantees that we
863 * don't delete devices to which some kernel code still has references.
865 * Parameter checking may look overzealous, but we really don't want
866 * the user to delete the wrong device.
868 static ssize_t
869 i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
870 const char *buf, size_t count)
872 struct i2c_adapter *adap = to_i2c_adapter(dev);
873 struct i2c_client *client, *next;
874 unsigned short addr;
875 char end;
876 int res;
878 /* Parse parameters, reject extra parameters */
879 res = sscanf(buf, "%hi%c", &addr, &end);
880 if (res < 1) {
881 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
882 return -EINVAL;
884 if (res > 1 && end != '\n') {
885 dev_err(dev, "%s: Extra parameters\n", "delete_device");
886 return -EINVAL;
889 /* Make sure the device was added through sysfs */
890 res = -ENOENT;
891 mutex_lock_nested(&adap->userspace_clients_lock,
892 i2c_adapter_depth(adap));
893 list_for_each_entry_safe(client, next, &adap->userspace_clients,
894 detected) {
895 if (client->addr == addr) {
896 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
897 "delete_device", client->name, client->addr);
899 list_del(&client->detected);
900 i2c_unregister_device(client);
901 res = count;
902 break;
905 mutex_unlock(&adap->userspace_clients_lock);
907 if (res < 0)
908 dev_err(dev, "%s: Can't find device in list\n",
909 "delete_device");
910 return res;
913 static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
914 static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
915 i2c_sysfs_delete_device);
917 static struct attribute *i2c_adapter_attrs[] = {
918 &dev_attr_name.attr,
919 &dev_attr_new_device.attr,
920 &dev_attr_delete_device.attr,
921 NULL
924 static struct attribute_group i2c_adapter_attr_group = {
925 .attrs = i2c_adapter_attrs,
928 static const struct attribute_group *i2c_adapter_attr_groups[] = {
929 &i2c_adapter_attr_group,
930 NULL
933 struct device_type i2c_adapter_type = {
934 .groups = i2c_adapter_attr_groups,
935 .release = i2c_adapter_dev_release,
937 EXPORT_SYMBOL_GPL(i2c_adapter_type);
940 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
941 * @dev: device, probably from some driver model iterator
943 * When traversing the driver model tree, perhaps using driver model
944 * iterators like @device_for_each_child(), you can't assume very much
945 * about the nodes you find. Use this function to avoid oopses caused
946 * by wrongly treating some non-I2C device as an i2c_adapter.
948 struct i2c_adapter *i2c_verify_adapter(struct device *dev)
950 return (dev->type == &i2c_adapter_type)
951 ? to_i2c_adapter(dev)
952 : NULL;
954 EXPORT_SYMBOL(i2c_verify_adapter);
956 #ifdef CONFIG_I2C_COMPAT
957 static struct class_compat *i2c_adapter_compat_class;
958 #endif
960 static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
962 struct i2c_devinfo *devinfo;
964 down_read(&__i2c_board_lock);
965 list_for_each_entry(devinfo, &__i2c_board_list, list) {
966 if (devinfo->busnum == adapter->nr
967 && !i2c_new_device(adapter,
968 &devinfo->board_info))
969 dev_err(&adapter->dev,
970 "Can't create device at 0x%02x\n",
971 devinfo->board_info.addr);
973 up_read(&__i2c_board_lock);
976 /* OF support code */
978 #if IS_ENABLED(CONFIG_OF)
979 static void of_i2c_register_devices(struct i2c_adapter *adap)
981 void *result;
982 struct device_node *node;
984 /* Only register child devices if the adapter has a node pointer set */
985 if (!adap->dev.of_node)
986 return;
988 dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
990 for_each_available_child_of_node(adap->dev.of_node, node) {
991 struct i2c_board_info info = {};
992 struct dev_archdata dev_ad = {};
993 const __be32 *addr;
994 int len;
996 dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
998 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
999 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
1000 node->full_name);
1001 continue;
1004 addr = of_get_property(node, "reg", &len);
1005 if (!addr || (len < sizeof(int))) {
1006 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
1007 node->full_name);
1008 continue;
1011 info.addr = be32_to_cpup(addr);
1012 if (info.addr > (1 << 10) - 1) {
1013 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
1014 info.addr, node->full_name);
1015 continue;
1018 info.irq = irq_of_parse_and_map(node, 0);
1019 info.of_node = of_node_get(node);
1020 info.archdata = &dev_ad;
1022 if (of_get_property(node, "wakeup-source", NULL))
1023 info.flags |= I2C_CLIENT_WAKE;
1025 request_module("%s%s", I2C_MODULE_PREFIX, info.type);
1027 result = i2c_new_device(adap, &info);
1028 if (result == NULL) {
1029 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
1030 node->full_name);
1031 of_node_put(node);
1032 irq_dispose_mapping(info.irq);
1033 continue;
1038 static int of_dev_node_match(struct device *dev, void *data)
1040 return dev->of_node == data;
1043 /* must call put_device() when done with returned i2c_client device */
1044 struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
1046 struct device *dev;
1048 dev = bus_find_device(&i2c_bus_type, NULL, node,
1049 of_dev_node_match);
1050 if (!dev)
1051 return NULL;
1053 return i2c_verify_client(dev);
1055 EXPORT_SYMBOL(of_find_i2c_device_by_node);
1057 /* must call put_device() when done with returned i2c_adapter device */
1058 struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
1060 struct device *dev;
1062 dev = bus_find_device(&i2c_bus_type, NULL, node,
1063 of_dev_node_match);
1064 if (!dev)
1065 return NULL;
1067 return i2c_verify_adapter(dev);
1069 EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
1070 #else
1071 static void of_i2c_register_devices(struct i2c_adapter *adap) { }
1072 #endif /* CONFIG_OF */
1074 /* ACPI support code */
1076 #if IS_ENABLED(CONFIG_ACPI)
1077 static int acpi_i2c_add_resource(struct acpi_resource *ares, void *data)
1079 struct i2c_board_info *info = data;
1081 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1082 struct acpi_resource_i2c_serialbus *sb;
1084 sb = &ares->data.i2c_serial_bus;
1085 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_I2C) {
1086 info->addr = sb->slave_address;
1087 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
1088 info->flags |= I2C_CLIENT_TEN;
1090 } else if (info->irq < 0) {
1091 struct resource r;
1093 if (acpi_dev_resource_interrupt(ares, 0, &r))
1094 info->irq = r.start;
1097 /* Tell the ACPI core to skip this resource */
1098 return 1;
1101 static acpi_status acpi_i2c_add_device(acpi_handle handle, u32 level,
1102 void *data, void **return_value)
1104 struct i2c_adapter *adapter = data;
1105 struct list_head resource_list;
1106 struct i2c_board_info info;
1107 struct acpi_device *adev;
1108 int ret;
1110 if (acpi_bus_get_device(handle, &adev))
1111 return AE_OK;
1112 if (acpi_bus_get_status(adev) || !adev->status.present)
1113 return AE_OK;
1115 memset(&info, 0, sizeof(info));
1116 info.acpi_node.companion = adev;
1117 info.irq = -1;
1119 INIT_LIST_HEAD(&resource_list);
1120 ret = acpi_dev_get_resources(adev, &resource_list,
1121 acpi_i2c_add_resource, &info);
1122 acpi_dev_free_resource_list(&resource_list);
1124 if (ret < 0 || !info.addr)
1125 return AE_OK;
1127 adev->power.flags.ignore_parent = true;
1128 strlcpy(info.type, dev_name(&adev->dev), sizeof(info.type));
1129 if (!i2c_new_device(adapter, &info)) {
1130 adev->power.flags.ignore_parent = false;
1131 dev_err(&adapter->dev,
1132 "failed to add I2C device %s from ACPI\n",
1133 dev_name(&adev->dev));
1136 return AE_OK;
1140 * acpi_i2c_register_devices - enumerate I2C slave devices behind adapter
1141 * @adap: pointer to adapter
1143 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
1144 * namespace. When a device is found it will be added to the Linux device
1145 * model and bound to the corresponding ACPI handle.
1147 static void acpi_i2c_register_devices(struct i2c_adapter *adap)
1149 acpi_handle handle;
1150 acpi_status status;
1152 if (!adap->dev.parent)
1153 return;
1155 handle = ACPI_HANDLE(adap->dev.parent);
1156 if (!handle)
1157 return;
1159 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1160 acpi_i2c_add_device, NULL,
1161 adap, NULL);
1162 if (ACPI_FAILURE(status))
1163 dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
1165 #else
1166 static inline void acpi_i2c_register_devices(struct i2c_adapter *adap) {}
1167 #endif /* CONFIG_ACPI */
1169 static int i2c_do_add_adapter(struct i2c_driver *driver,
1170 struct i2c_adapter *adap)
1172 /* Detect supported devices on that bus, and instantiate them */
1173 i2c_detect(adap, driver);
1175 /* Let legacy drivers scan this bus for matching devices */
1176 if (driver->attach_adapter) {
1177 dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
1178 driver->driver.name);
1179 dev_warn(&adap->dev, "Please use another way to instantiate "
1180 "your i2c_client\n");
1181 /* We ignore the return code; if it fails, too bad */
1182 driver->attach_adapter(adap);
1184 return 0;
1187 static int __process_new_adapter(struct device_driver *d, void *data)
1189 return i2c_do_add_adapter(to_i2c_driver(d), data);
1192 static int i2c_register_adapter(struct i2c_adapter *adap)
1194 int res = 0;
1196 /* Can't register until after driver model init */
1197 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
1198 res = -EAGAIN;
1199 goto out_list;
1202 /* Sanity checks */
1203 if (unlikely(adap->name[0] == '\0')) {
1204 pr_err("i2c-core: Attempt to register an adapter with "
1205 "no name!\n");
1206 return -EINVAL;
1208 if (unlikely(!adap->algo)) {
1209 pr_err("i2c-core: Attempt to register adapter '%s' with "
1210 "no algo!\n", adap->name);
1211 return -EINVAL;
1214 rt_mutex_init(&adap->bus_lock);
1215 mutex_init(&adap->userspace_clients_lock);
1216 INIT_LIST_HEAD(&adap->userspace_clients);
1218 /* Set default timeout to 1 second if not already set */
1219 if (adap->timeout == 0)
1220 adap->timeout = HZ;
1222 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
1223 adap->dev.bus = &i2c_bus_type;
1224 adap->dev.type = &i2c_adapter_type;
1225 res = device_register(&adap->dev);
1226 if (res)
1227 goto out_list;
1229 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1231 #ifdef CONFIG_I2C_COMPAT
1232 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1233 adap->dev.parent);
1234 if (res)
1235 dev_warn(&adap->dev,
1236 "Failed to create compatibility class link\n");
1237 #endif
1239 /* bus recovery specific initialization */
1240 if (adap->bus_recovery_info) {
1241 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
1243 if (!bri->recover_bus) {
1244 dev_err(&adap->dev, "No recover_bus() found, not using recovery\n");
1245 adap->bus_recovery_info = NULL;
1246 goto exit_recovery;
1249 /* Generic GPIO recovery */
1250 if (bri->recover_bus == i2c_generic_gpio_recovery) {
1251 if (!gpio_is_valid(bri->scl_gpio)) {
1252 dev_err(&adap->dev, "Invalid SCL gpio, not using recovery\n");
1253 adap->bus_recovery_info = NULL;
1254 goto exit_recovery;
1257 if (gpio_is_valid(bri->sda_gpio))
1258 bri->get_sda = get_sda_gpio_value;
1259 else
1260 bri->get_sda = NULL;
1262 bri->get_scl = get_scl_gpio_value;
1263 bri->set_scl = set_scl_gpio_value;
1264 } else if (!bri->set_scl || !bri->get_scl) {
1265 /* Generic SCL recovery */
1266 dev_err(&adap->dev, "No {get|set}_gpio() found, not using recovery\n");
1267 adap->bus_recovery_info = NULL;
1271 exit_recovery:
1272 /* create pre-declared device nodes */
1273 of_i2c_register_devices(adap);
1274 acpi_i2c_register_devices(adap);
1276 if (adap->nr < __i2c_first_dynamic_bus_num)
1277 i2c_scan_static_board_info(adap);
1279 /* Notify drivers */
1280 mutex_lock(&core_lock);
1281 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
1282 mutex_unlock(&core_lock);
1284 return 0;
1286 out_list:
1287 mutex_lock(&core_lock);
1288 idr_remove(&i2c_adapter_idr, adap->nr);
1289 mutex_unlock(&core_lock);
1290 return res;
1294 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1295 * @adap: the adapter to register (with adap->nr initialized)
1296 * Context: can sleep
1298 * See i2c_add_numbered_adapter() for details.
1300 static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1302 int id;
1304 mutex_lock(&core_lock);
1305 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1,
1306 GFP_KERNEL);
1307 mutex_unlock(&core_lock);
1308 if (id < 0)
1309 return id == -ENOSPC ? -EBUSY : id;
1311 return i2c_register_adapter(adap);
1315 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1316 * @adapter: the adapter to add
1317 * Context: can sleep
1319 * This routine is used to declare an I2C adapter when its bus number
1320 * doesn't matter or when its bus number is specified by an dt alias.
1321 * Examples of bases when the bus number doesn't matter: I2C adapters
1322 * dynamically added by USB links or PCI plugin cards.
1324 * When this returns zero, a new bus number was allocated and stored
1325 * in adap->nr, and the specified adapter became available for clients.
1326 * Otherwise, a negative errno value is returned.
1328 int i2c_add_adapter(struct i2c_adapter *adapter)
1330 struct device *dev = &adapter->dev;
1331 int id;
1333 if (dev->of_node) {
1334 id = of_alias_get_id(dev->of_node, "i2c");
1335 if (id >= 0) {
1336 adapter->nr = id;
1337 return __i2c_add_numbered_adapter(adapter);
1341 mutex_lock(&core_lock);
1342 id = idr_alloc(&i2c_adapter_idr, adapter,
1343 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
1344 mutex_unlock(&core_lock);
1345 if (id < 0)
1346 return id;
1348 adapter->nr = id;
1350 return i2c_register_adapter(adapter);
1352 EXPORT_SYMBOL(i2c_add_adapter);
1355 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1356 * @adap: the adapter to register (with adap->nr initialized)
1357 * Context: can sleep
1359 * This routine is used to declare an I2C adapter when its bus number
1360 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1361 * or otherwise built in to the system's mainboard, and where i2c_board_info
1362 * is used to properly configure I2C devices.
1364 * If the requested bus number is set to -1, then this function will behave
1365 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1367 * If no devices have pre-been declared for this bus, then be sure to
1368 * register the adapter before any dynamically allocated ones. Otherwise
1369 * the required bus ID may not be available.
1371 * When this returns zero, the specified adapter became available for
1372 * clients using the bus number provided in adap->nr. Also, the table
1373 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1374 * and the appropriate driver model device nodes are created. Otherwise, a
1375 * negative errno value is returned.
1377 int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1379 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1380 return i2c_add_adapter(adap);
1382 return __i2c_add_numbered_adapter(adap);
1384 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1386 static void i2c_do_del_adapter(struct i2c_driver *driver,
1387 struct i2c_adapter *adapter)
1389 struct i2c_client *client, *_n;
1391 /* Remove the devices we created ourselves as the result of hardware
1392 * probing (using a driver's detect method) */
1393 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1394 if (client->adapter == adapter) {
1395 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1396 client->name, client->addr);
1397 list_del(&client->detected);
1398 i2c_unregister_device(client);
1403 static int __unregister_client(struct device *dev, void *dummy)
1405 struct i2c_client *client = i2c_verify_client(dev);
1406 if (client && strcmp(client->name, "dummy"))
1407 i2c_unregister_device(client);
1408 return 0;
1411 static int __unregister_dummy(struct device *dev, void *dummy)
1413 struct i2c_client *client = i2c_verify_client(dev);
1414 if (client)
1415 i2c_unregister_device(client);
1416 return 0;
1419 static int __process_removed_adapter(struct device_driver *d, void *data)
1421 i2c_do_del_adapter(to_i2c_driver(d), data);
1422 return 0;
1426 * i2c_del_adapter - unregister I2C adapter
1427 * @adap: the adapter being unregistered
1428 * Context: can sleep
1430 * This unregisters an I2C adapter which was previously registered
1431 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1433 void i2c_del_adapter(struct i2c_adapter *adap)
1435 struct i2c_adapter *found;
1436 struct i2c_client *client, *next;
1438 /* First make sure that this adapter was ever added */
1439 mutex_lock(&core_lock);
1440 found = idr_find(&i2c_adapter_idr, adap->nr);
1441 mutex_unlock(&core_lock);
1442 if (found != adap) {
1443 pr_debug("i2c-core: attempting to delete unregistered "
1444 "adapter [%s]\n", adap->name);
1445 return;
1448 /* Tell drivers about this removal */
1449 mutex_lock(&core_lock);
1450 bus_for_each_drv(&i2c_bus_type, NULL, adap,
1451 __process_removed_adapter);
1452 mutex_unlock(&core_lock);
1454 /* Remove devices instantiated from sysfs */
1455 mutex_lock_nested(&adap->userspace_clients_lock,
1456 i2c_adapter_depth(adap));
1457 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1458 detected) {
1459 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1460 client->addr);
1461 list_del(&client->detected);
1462 i2c_unregister_device(client);
1464 mutex_unlock(&adap->userspace_clients_lock);
1466 /* Detach any active clients. This can't fail, thus we do not
1467 * check the returned value. This is a two-pass process, because
1468 * we can't remove the dummy devices during the first pass: they
1469 * could have been instantiated by real devices wishing to clean
1470 * them up properly, so we give them a chance to do that first. */
1471 device_for_each_child(&adap->dev, NULL, __unregister_client);
1472 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
1474 #ifdef CONFIG_I2C_COMPAT
1475 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
1476 adap->dev.parent);
1477 #endif
1479 /* device name is gone after device_unregister */
1480 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1482 /* clean up the sysfs representation */
1483 init_completion(&adap->dev_released);
1484 device_unregister(&adap->dev);
1486 /* wait for sysfs to drop all references */
1487 wait_for_completion(&adap->dev_released);
1489 /* free bus id */
1490 mutex_lock(&core_lock);
1491 idr_remove(&i2c_adapter_idr, adap->nr);
1492 mutex_unlock(&core_lock);
1494 /* Clear the device structure in case this adapter is ever going to be
1495 added again */
1496 memset(&adap->dev, 0, sizeof(adap->dev));
1498 EXPORT_SYMBOL(i2c_del_adapter);
1500 /* ------------------------------------------------------------------------- */
1502 int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))
1504 int res;
1506 mutex_lock(&core_lock);
1507 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
1508 mutex_unlock(&core_lock);
1510 return res;
1512 EXPORT_SYMBOL_GPL(i2c_for_each_dev);
1514 static int __process_new_driver(struct device *dev, void *data)
1516 if (dev->type != &i2c_adapter_type)
1517 return 0;
1518 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
1522 * An i2c_driver is used with one or more i2c_client (device) nodes to access
1523 * i2c slave chips, on a bus instance associated with some i2c_adapter.
1526 int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
1528 int res;
1530 /* Can't register until after driver model init */
1531 if (unlikely(WARN_ON(!i2c_bus_type.p)))
1532 return -EAGAIN;
1534 /* add the driver to the list of i2c drivers in the driver core */
1535 driver->driver.owner = owner;
1536 driver->driver.bus = &i2c_bus_type;
1538 /* When registration returns, the driver core
1539 * will have called probe() for all matching-but-unbound devices.
1541 res = driver_register(&driver->driver);
1542 if (res)
1543 return res;
1545 /* Drivers should switch to dev_pm_ops instead. */
1546 if (driver->suspend)
1547 pr_warn("i2c-core: driver [%s] using legacy suspend method\n",
1548 driver->driver.name);
1549 if (driver->resume)
1550 pr_warn("i2c-core: driver [%s] using legacy resume method\n",
1551 driver->driver.name);
1553 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
1555 INIT_LIST_HEAD(&driver->clients);
1556 /* Walk the adapters that are already present */
1557 i2c_for_each_dev(driver, __process_new_driver);
1559 return 0;
1561 EXPORT_SYMBOL(i2c_register_driver);
1563 static int __process_removed_driver(struct device *dev, void *data)
1565 if (dev->type == &i2c_adapter_type)
1566 i2c_do_del_adapter(data, to_i2c_adapter(dev));
1567 return 0;
1571 * i2c_del_driver - unregister I2C driver
1572 * @driver: the driver being unregistered
1573 * Context: can sleep
1575 void i2c_del_driver(struct i2c_driver *driver)
1577 i2c_for_each_dev(driver, __process_removed_driver);
1579 driver_unregister(&driver->driver);
1580 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
1582 EXPORT_SYMBOL(i2c_del_driver);
1584 /* ------------------------------------------------------------------------- */
1587 * i2c_use_client - increments the reference count of the i2c client structure
1588 * @client: the client being referenced
1590 * Each live reference to a client should be refcounted. The driver model does
1591 * that automatically as part of driver binding, so that most drivers don't
1592 * need to do this explicitly: they hold a reference until they're unbound
1593 * from the device.
1595 * A pointer to the client with the incremented reference counter is returned.
1597 struct i2c_client *i2c_use_client(struct i2c_client *client)
1599 if (client && get_device(&client->dev))
1600 return client;
1601 return NULL;
1603 EXPORT_SYMBOL(i2c_use_client);
1606 * i2c_release_client - release a use of the i2c client structure
1607 * @client: the client being no longer referenced
1609 * Must be called when a user of a client is finished with it.
1611 void i2c_release_client(struct i2c_client *client)
1613 if (client)
1614 put_device(&client->dev);
1616 EXPORT_SYMBOL(i2c_release_client);
1618 struct i2c_cmd_arg {
1619 unsigned cmd;
1620 void *arg;
1623 static int i2c_cmd(struct device *dev, void *_arg)
1625 struct i2c_client *client = i2c_verify_client(dev);
1626 struct i2c_cmd_arg *arg = _arg;
1627 struct i2c_driver *driver;
1629 if (!client || !client->dev.driver)
1630 return 0;
1632 driver = to_i2c_driver(client->dev.driver);
1633 if (driver->command)
1634 driver->command(client, arg->cmd, arg->arg);
1635 return 0;
1638 void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1640 struct i2c_cmd_arg cmd_arg;
1642 cmd_arg.cmd = cmd;
1643 cmd_arg.arg = arg;
1644 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
1646 EXPORT_SYMBOL(i2c_clients_command);
1648 static int __init i2c_init(void)
1650 int retval;
1652 retval = bus_register(&i2c_bus_type);
1653 if (retval)
1654 return retval;
1655 #ifdef CONFIG_I2C_COMPAT
1656 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1657 if (!i2c_adapter_compat_class) {
1658 retval = -ENOMEM;
1659 goto bus_err;
1661 #endif
1662 retval = i2c_add_driver(&dummy_driver);
1663 if (retval)
1664 goto class_err;
1665 return 0;
1667 class_err:
1668 #ifdef CONFIG_I2C_COMPAT
1669 class_compat_unregister(i2c_adapter_compat_class);
1670 bus_err:
1671 #endif
1672 bus_unregister(&i2c_bus_type);
1673 return retval;
1676 static void __exit i2c_exit(void)
1678 i2c_del_driver(&dummy_driver);
1679 #ifdef CONFIG_I2C_COMPAT
1680 class_compat_unregister(i2c_adapter_compat_class);
1681 #endif
1682 bus_unregister(&i2c_bus_type);
1685 /* We must initialize early, because some subsystems register i2c drivers
1686 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1688 postcore_initcall(i2c_init);
1689 module_exit(i2c_exit);
1691 /* ----------------------------------------------------
1692 * the functional interface to the i2c busses.
1693 * ----------------------------------------------------
1697 * __i2c_transfer - unlocked flavor of i2c_transfer
1698 * @adap: Handle to I2C bus
1699 * @msgs: One or more messages to execute before STOP is issued to
1700 * terminate the operation; each message begins with a START.
1701 * @num: Number of messages to be executed.
1703 * Returns negative errno, else the number of messages executed.
1705 * Adapter lock must be held when calling this function. No debug logging
1706 * takes place. adap->algo->master_xfer existence isn't checked.
1708 int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1710 unsigned long orig_jiffies;
1711 int ret, try;
1713 /* Retry automatically on arbitration loss */
1714 orig_jiffies = jiffies;
1715 for (ret = 0, try = 0; try <= adap->retries; try++) {
1716 ret = adap->algo->master_xfer(adap, msgs, num);
1717 if (ret != -EAGAIN)
1718 break;
1719 if (time_after(jiffies, orig_jiffies + adap->timeout))
1720 break;
1723 return ret;
1725 EXPORT_SYMBOL(__i2c_transfer);
1728 * i2c_transfer - execute a single or combined I2C message
1729 * @adap: Handle to I2C bus
1730 * @msgs: One or more messages to execute before STOP is issued to
1731 * terminate the operation; each message begins with a START.
1732 * @num: Number of messages to be executed.
1734 * Returns negative errno, else the number of messages executed.
1736 * Note that there is no requirement that each message be sent to
1737 * the same slave address, although that is the most common model.
1739 int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1741 int ret;
1743 /* REVISIT the fault reporting model here is weak:
1745 * - When we get an error after receiving N bytes from a slave,
1746 * there is no way to report "N".
1748 * - When we get a NAK after transmitting N bytes to a slave,
1749 * there is no way to report "N" ... or to let the master
1750 * continue executing the rest of this combined message, if
1751 * that's the appropriate response.
1753 * - When for example "num" is two and we successfully complete
1754 * the first message but get an error part way through the
1755 * second, it's unclear whether that should be reported as
1756 * one (discarding status on the second message) or errno
1757 * (discarding status on the first one).
1760 if (adap->algo->master_xfer) {
1761 #ifdef DEBUG
1762 for (ret = 0; ret < num; ret++) {
1763 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
1764 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1765 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1766 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
1768 #endif
1770 if (in_atomic() || irqs_disabled()) {
1771 ret = i2c_trylock_adapter(adap);
1772 if (!ret)
1773 /* I2C activity is ongoing. */
1774 return -EAGAIN;
1775 } else {
1776 i2c_lock_adapter(adap);
1779 ret = __i2c_transfer(adap, msgs, num);
1780 i2c_unlock_adapter(adap);
1782 return ret;
1783 } else {
1784 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
1785 return -EOPNOTSUPP;
1788 EXPORT_SYMBOL(i2c_transfer);
1791 * i2c_master_send - issue a single I2C message in master transmit mode
1792 * @client: Handle to slave device
1793 * @buf: Data that will be written to the slave
1794 * @count: How many bytes to write, must be less than 64k since msg.len is u16
1796 * Returns negative errno, or else the number of bytes written.
1798 int i2c_master_send(const struct i2c_client *client, const char *buf, int count)
1800 int ret;
1801 struct i2c_adapter *adap = client->adapter;
1802 struct i2c_msg msg;
1804 msg.addr = client->addr;
1805 msg.flags = client->flags & I2C_M_TEN;
1806 msg.len = count;
1807 msg.buf = (char *)buf;
1809 ret = i2c_transfer(adap, &msg, 1);
1812 * If everything went ok (i.e. 1 msg transmitted), return #bytes
1813 * transmitted, else error code.
1815 return (ret == 1) ? count : ret;
1817 EXPORT_SYMBOL(i2c_master_send);
1820 * i2c_master_recv - issue a single I2C message in master receive mode
1821 * @client: Handle to slave device
1822 * @buf: Where to store data read from slave
1823 * @count: How many bytes to read, must be less than 64k since msg.len is u16
1825 * Returns negative errno, or else the number of bytes read.
1827 int i2c_master_recv(const struct i2c_client *client, char *buf, int count)
1829 struct i2c_adapter *adap = client->adapter;
1830 struct i2c_msg msg;
1831 int ret;
1833 msg.addr = client->addr;
1834 msg.flags = client->flags & I2C_M_TEN;
1835 msg.flags |= I2C_M_RD;
1836 msg.len = count;
1837 msg.buf = buf;
1839 ret = i2c_transfer(adap, &msg, 1);
1842 * If everything went ok (i.e. 1 msg received), return #bytes received,
1843 * else error code.
1845 return (ret == 1) ? count : ret;
1847 EXPORT_SYMBOL(i2c_master_recv);
1849 /* ----------------------------------------------------
1850 * the i2c address scanning function
1851 * Will not work for 10-bit addresses!
1852 * ----------------------------------------------------
1856 * Legacy default probe function, mostly relevant for SMBus. The default
1857 * probe method is a quick write, but it is known to corrupt the 24RF08
1858 * EEPROMs due to a state machine bug, and could also irreversibly
1859 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
1860 * we use a short byte read instead. Also, some bus drivers don't implement
1861 * quick write, so we fallback to a byte read in that case too.
1862 * On x86, there is another special case for FSC hardware monitoring chips,
1863 * which want regular byte reads (address 0x73.) Fortunately, these are the
1864 * only known chips using this I2C address on PC hardware.
1865 * Returns 1 if probe succeeded, 0 if not.
1867 static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
1869 int err;
1870 union i2c_smbus_data dummy;
1872 #ifdef CONFIG_X86
1873 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
1874 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
1875 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1876 I2C_SMBUS_BYTE_DATA, &dummy);
1877 else
1878 #endif
1879 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
1880 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
1881 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
1882 I2C_SMBUS_QUICK, NULL);
1883 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
1884 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1885 I2C_SMBUS_BYTE, &dummy);
1886 else {
1887 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
1888 addr);
1889 err = -EOPNOTSUPP;
1892 return err >= 0;
1895 static int i2c_detect_address(struct i2c_client *temp_client,
1896 struct i2c_driver *driver)
1898 struct i2c_board_info info;
1899 struct i2c_adapter *adapter = temp_client->adapter;
1900 int addr = temp_client->addr;
1901 int err;
1903 /* Make sure the address is valid */
1904 err = i2c_check_addr_validity(addr);
1905 if (err) {
1906 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1907 addr);
1908 return err;
1911 /* Skip if already in use */
1912 if (i2c_check_addr_busy(adapter, addr))
1913 return 0;
1915 /* Make sure there is something at this address */
1916 if (!i2c_default_probe(adapter, addr))
1917 return 0;
1919 /* Finally call the custom detection function */
1920 memset(&info, 0, sizeof(struct i2c_board_info));
1921 info.addr = addr;
1922 err = driver->detect(temp_client, &info);
1923 if (err) {
1924 /* -ENODEV is returned if the detection fails. We catch it
1925 here as this isn't an error. */
1926 return err == -ENODEV ? 0 : err;
1929 /* Consistency check */
1930 if (info.type[0] == '\0') {
1931 dev_err(&adapter->dev, "%s detection function provided "
1932 "no name for 0x%x\n", driver->driver.name,
1933 addr);
1934 } else {
1935 struct i2c_client *client;
1937 /* Detection succeeded, instantiate the device */
1938 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1939 info.type, info.addr);
1940 client = i2c_new_device(adapter, &info);
1941 if (client)
1942 list_add_tail(&client->detected, &driver->clients);
1943 else
1944 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1945 info.type, info.addr);
1947 return 0;
1950 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1952 const unsigned short *address_list;
1953 struct i2c_client *temp_client;
1954 int i, err = 0;
1955 int adap_id = i2c_adapter_id(adapter);
1957 address_list = driver->address_list;
1958 if (!driver->detect || !address_list)
1959 return 0;
1961 /* Stop here if the classes do not match */
1962 if (!(adapter->class & driver->class))
1963 return 0;
1965 /* Set up a temporary client to help detect callback */
1966 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1967 if (!temp_client)
1968 return -ENOMEM;
1969 temp_client->adapter = adapter;
1971 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
1972 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1973 "addr 0x%02x\n", adap_id, address_list[i]);
1974 temp_client->addr = address_list[i];
1975 err = i2c_detect_address(temp_client, driver);
1976 if (unlikely(err))
1977 break;
1980 kfree(temp_client);
1981 return err;
1984 int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
1986 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1987 I2C_SMBUS_QUICK, NULL) >= 0;
1989 EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
1991 struct i2c_client *
1992 i2c_new_probed_device(struct i2c_adapter *adap,
1993 struct i2c_board_info *info,
1994 unsigned short const *addr_list,
1995 int (*probe)(struct i2c_adapter *, unsigned short addr))
1997 int i;
1999 if (!probe)
2000 probe = i2c_default_probe;
2002 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2003 /* Check address validity */
2004 if (i2c_check_addr_validity(addr_list[i]) < 0) {
2005 dev_warn(&adap->dev, "Invalid 7-bit address "
2006 "0x%02x\n", addr_list[i]);
2007 continue;
2010 /* Check address availability */
2011 if (i2c_check_addr_busy(adap, addr_list[i])) {
2012 dev_dbg(&adap->dev, "Address 0x%02x already in "
2013 "use, not probing\n", addr_list[i]);
2014 continue;
2017 /* Test address responsiveness */
2018 if (probe(adap, addr_list[i]))
2019 break;
2022 if (addr_list[i] == I2C_CLIENT_END) {
2023 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2024 return NULL;
2027 info->addr = addr_list[i];
2028 return i2c_new_device(adap, info);
2030 EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2032 struct i2c_adapter *i2c_get_adapter(int nr)
2034 struct i2c_adapter *adapter;
2036 mutex_lock(&core_lock);
2037 adapter = idr_find(&i2c_adapter_idr, nr);
2038 if (adapter && !try_module_get(adapter->owner))
2039 adapter = NULL;
2041 mutex_unlock(&core_lock);
2042 return adapter;
2044 EXPORT_SYMBOL(i2c_get_adapter);
2046 void i2c_put_adapter(struct i2c_adapter *adap)
2048 if (adap)
2049 module_put(adap->owner);
2051 EXPORT_SYMBOL(i2c_put_adapter);
2053 /* The SMBus parts */
2055 #define POLY (0x1070U << 3)
2056 static u8 crc8(u16 data)
2058 int i;
2060 for (i = 0; i < 8; i++) {
2061 if (data & 0x8000)
2062 data = data ^ POLY;
2063 data = data << 1;
2065 return (u8)(data >> 8);
2068 /* Incremental CRC8 over count bytes in the array pointed to by p */
2069 static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
2071 int i;
2073 for (i = 0; i < count; i++)
2074 crc = crc8((crc ^ p[i]) << 8);
2075 return crc;
2078 /* Assume a 7-bit address, which is reasonable for SMBus */
2079 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
2081 /* The address will be sent first */
2082 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
2083 pec = i2c_smbus_pec(pec, &addr, 1);
2085 /* The data buffer follows */
2086 return i2c_smbus_pec(pec, msg->buf, msg->len);
2089 /* Used for write only transactions */
2090 static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
2092 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
2093 msg->len++;
2096 /* Return <0 on CRC error
2097 If there was a write before this read (most cases) we need to take the
2098 partial CRC from the write part into account.
2099 Note that this function does modify the message (we need to decrease the
2100 message length to hide the CRC byte from the caller). */
2101 static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
2103 u8 rpec = msg->buf[--msg->len];
2104 cpec = i2c_smbus_msg_pec(cpec, msg);
2106 if (rpec != cpec) {
2107 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
2108 rpec, cpec);
2109 return -EBADMSG;
2111 return 0;
2115 * i2c_smbus_read_byte - SMBus "receive byte" protocol
2116 * @client: Handle to slave device
2118 * This executes the SMBus "receive byte" protocol, returning negative errno
2119 * else the byte received from the device.
2121 s32 i2c_smbus_read_byte(const struct i2c_client *client)
2123 union i2c_smbus_data data;
2124 int status;
2126 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2127 I2C_SMBUS_READ, 0,
2128 I2C_SMBUS_BYTE, &data);
2129 return (status < 0) ? status : data.byte;
2131 EXPORT_SYMBOL(i2c_smbus_read_byte);
2134 * i2c_smbus_write_byte - SMBus "send byte" protocol
2135 * @client: Handle to slave device
2136 * @value: Byte to be sent
2138 * This executes the SMBus "send byte" protocol, returning negative errno
2139 * else zero on success.
2141 s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
2143 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2144 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
2146 EXPORT_SYMBOL(i2c_smbus_write_byte);
2149 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
2150 * @client: Handle to slave device
2151 * @command: Byte interpreted by slave
2153 * This executes the SMBus "read byte" protocol, returning negative errno
2154 * else a data byte received from the device.
2156 s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
2158 union i2c_smbus_data data;
2159 int status;
2161 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2162 I2C_SMBUS_READ, command,
2163 I2C_SMBUS_BYTE_DATA, &data);
2164 return (status < 0) ? status : data.byte;
2166 EXPORT_SYMBOL(i2c_smbus_read_byte_data);
2169 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
2170 * @client: Handle to slave device
2171 * @command: Byte interpreted by slave
2172 * @value: Byte being written
2174 * This executes the SMBus "write byte" protocol, returning negative errno
2175 * else zero on success.
2177 s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
2178 u8 value)
2180 union i2c_smbus_data data;
2181 data.byte = value;
2182 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2183 I2C_SMBUS_WRITE, command,
2184 I2C_SMBUS_BYTE_DATA, &data);
2186 EXPORT_SYMBOL(i2c_smbus_write_byte_data);
2189 * i2c_smbus_read_word_data - SMBus "read word" protocol
2190 * @client: Handle to slave device
2191 * @command: Byte interpreted by slave
2193 * This executes the SMBus "read word" protocol, returning negative errno
2194 * else a 16-bit unsigned "word" received from the device.
2196 s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
2198 union i2c_smbus_data data;
2199 int status;
2201 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2202 I2C_SMBUS_READ, command,
2203 I2C_SMBUS_WORD_DATA, &data);
2204 return (status < 0) ? status : data.word;
2206 EXPORT_SYMBOL(i2c_smbus_read_word_data);
2209 * i2c_smbus_write_word_data - SMBus "write word" protocol
2210 * @client: Handle to slave device
2211 * @command: Byte interpreted by slave
2212 * @value: 16-bit "word" being written
2214 * This executes the SMBus "write word" protocol, returning negative errno
2215 * else zero on success.
2217 s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
2218 u16 value)
2220 union i2c_smbus_data data;
2221 data.word = value;
2222 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2223 I2C_SMBUS_WRITE, command,
2224 I2C_SMBUS_WORD_DATA, &data);
2226 EXPORT_SYMBOL(i2c_smbus_write_word_data);
2229 * i2c_smbus_read_block_data - SMBus "block read" protocol
2230 * @client: Handle to slave device
2231 * @command: Byte interpreted by slave
2232 * @values: Byte array into which data will be read; big enough to hold
2233 * the data returned by the slave. SMBus allows at most 32 bytes.
2235 * This executes the SMBus "block read" protocol, returning negative errno
2236 * else the number of data bytes in the slave's response.
2238 * Note that using this function requires that the client's adapter support
2239 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
2240 * support this; its emulation through I2C messaging relies on a specific
2241 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
2243 s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
2244 u8 *values)
2246 union i2c_smbus_data data;
2247 int status;
2249 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2250 I2C_SMBUS_READ, command,
2251 I2C_SMBUS_BLOCK_DATA, &data);
2252 if (status)
2253 return status;
2255 memcpy(values, &data.block[1], data.block[0]);
2256 return data.block[0];
2258 EXPORT_SYMBOL(i2c_smbus_read_block_data);
2261 * i2c_smbus_write_block_data - SMBus "block write" protocol
2262 * @client: Handle to slave device
2263 * @command: Byte interpreted by slave
2264 * @length: Size of data block; SMBus allows at most 32 bytes
2265 * @values: Byte array which will be written.
2267 * This executes the SMBus "block write" protocol, returning negative errno
2268 * else zero on success.
2270 s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
2271 u8 length, const u8 *values)
2273 union i2c_smbus_data data;
2275 if (length > I2C_SMBUS_BLOCK_MAX)
2276 length = I2C_SMBUS_BLOCK_MAX;
2277 data.block[0] = length;
2278 memcpy(&data.block[1], values, length);
2279 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2280 I2C_SMBUS_WRITE, command,
2281 I2C_SMBUS_BLOCK_DATA, &data);
2283 EXPORT_SYMBOL(i2c_smbus_write_block_data);
2285 /* Returns the number of read bytes */
2286 s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
2287 u8 length, u8 *values)
2289 union i2c_smbus_data data;
2290 int status;
2292 if (length > I2C_SMBUS_BLOCK_MAX)
2293 length = I2C_SMBUS_BLOCK_MAX;
2294 data.block[0] = length;
2295 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2296 I2C_SMBUS_READ, command,
2297 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2298 if (status < 0)
2299 return status;
2301 memcpy(values, &data.block[1], data.block[0]);
2302 return data.block[0];
2304 EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
2306 s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
2307 u8 length, const u8 *values)
2309 union i2c_smbus_data data;
2311 if (length > I2C_SMBUS_BLOCK_MAX)
2312 length = I2C_SMBUS_BLOCK_MAX;
2313 data.block[0] = length;
2314 memcpy(data.block + 1, values, length);
2315 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2316 I2C_SMBUS_WRITE, command,
2317 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2319 EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
2321 /* Simulate a SMBus command using the i2c protocol
2322 No checking of parameters is done! */
2323 static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
2324 unsigned short flags,
2325 char read_write, u8 command, int size,
2326 union i2c_smbus_data *data)
2328 /* So we need to generate a series of msgs. In the case of writing, we
2329 need to use only one message; when reading, we need two. We initialize
2330 most things with sane defaults, to keep the code below somewhat
2331 simpler. */
2332 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
2333 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
2334 int num = read_write == I2C_SMBUS_READ ? 2 : 1;
2335 int i;
2336 u8 partial_pec = 0;
2337 int status;
2338 struct i2c_msg msg[2] = {
2340 .addr = addr,
2341 .flags = flags,
2342 .len = 1,
2343 .buf = msgbuf0,
2344 }, {
2345 .addr = addr,
2346 .flags = flags | I2C_M_RD,
2347 .len = 0,
2348 .buf = msgbuf1,
2352 msgbuf0[0] = command;
2353 switch (size) {
2354 case I2C_SMBUS_QUICK:
2355 msg[0].len = 0;
2356 /* Special case: The read/write field is used as data */
2357 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
2358 I2C_M_RD : 0);
2359 num = 1;
2360 break;
2361 case I2C_SMBUS_BYTE:
2362 if (read_write == I2C_SMBUS_READ) {
2363 /* Special case: only a read! */
2364 msg[0].flags = I2C_M_RD | flags;
2365 num = 1;
2367 break;
2368 case I2C_SMBUS_BYTE_DATA:
2369 if (read_write == I2C_SMBUS_READ)
2370 msg[1].len = 1;
2371 else {
2372 msg[0].len = 2;
2373 msgbuf0[1] = data->byte;
2375 break;
2376 case I2C_SMBUS_WORD_DATA:
2377 if (read_write == I2C_SMBUS_READ)
2378 msg[1].len = 2;
2379 else {
2380 msg[0].len = 3;
2381 msgbuf0[1] = data->word & 0xff;
2382 msgbuf0[2] = data->word >> 8;
2384 break;
2385 case I2C_SMBUS_PROC_CALL:
2386 num = 2; /* Special case */
2387 read_write = I2C_SMBUS_READ;
2388 msg[0].len = 3;
2389 msg[1].len = 2;
2390 msgbuf0[1] = data->word & 0xff;
2391 msgbuf0[2] = data->word >> 8;
2392 break;
2393 case I2C_SMBUS_BLOCK_DATA:
2394 if (read_write == I2C_SMBUS_READ) {
2395 msg[1].flags |= I2C_M_RECV_LEN;
2396 msg[1].len = 1; /* block length will be added by
2397 the underlying bus driver */
2398 } else {
2399 msg[0].len = data->block[0] + 2;
2400 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
2401 dev_err(&adapter->dev,
2402 "Invalid block write size %d\n",
2403 data->block[0]);
2404 return -EINVAL;
2406 for (i = 1; i < msg[0].len; i++)
2407 msgbuf0[i] = data->block[i-1];
2409 break;
2410 case I2C_SMBUS_BLOCK_PROC_CALL:
2411 num = 2; /* Another special case */
2412 read_write = I2C_SMBUS_READ;
2413 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
2414 dev_err(&adapter->dev,
2415 "Invalid block write size %d\n",
2416 data->block[0]);
2417 return -EINVAL;
2419 msg[0].len = data->block[0] + 2;
2420 for (i = 1; i < msg[0].len; i++)
2421 msgbuf0[i] = data->block[i-1];
2422 msg[1].flags |= I2C_M_RECV_LEN;
2423 msg[1].len = 1; /* block length will be added by
2424 the underlying bus driver */
2425 break;
2426 case I2C_SMBUS_I2C_BLOCK_DATA:
2427 if (read_write == I2C_SMBUS_READ) {
2428 msg[1].len = data->block[0];
2429 } else {
2430 msg[0].len = data->block[0] + 1;
2431 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
2432 dev_err(&adapter->dev,
2433 "Invalid block write size %d\n",
2434 data->block[0]);
2435 return -EINVAL;
2437 for (i = 1; i <= data->block[0]; i++)
2438 msgbuf0[i] = data->block[i];
2440 break;
2441 default:
2442 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
2443 return -EOPNOTSUPP;
2446 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
2447 && size != I2C_SMBUS_I2C_BLOCK_DATA);
2448 if (i) {
2449 /* Compute PEC if first message is a write */
2450 if (!(msg[0].flags & I2C_M_RD)) {
2451 if (num == 1) /* Write only */
2452 i2c_smbus_add_pec(&msg[0]);
2453 else /* Write followed by read */
2454 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
2456 /* Ask for PEC if last message is a read */
2457 if (msg[num-1].flags & I2C_M_RD)
2458 msg[num-1].len++;
2461 status = i2c_transfer(adapter, msg, num);
2462 if (status < 0)
2463 return status;
2465 /* Check PEC if last message is a read */
2466 if (i && (msg[num-1].flags & I2C_M_RD)) {
2467 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
2468 if (status < 0)
2469 return status;
2472 if (read_write == I2C_SMBUS_READ)
2473 switch (size) {
2474 case I2C_SMBUS_BYTE:
2475 data->byte = msgbuf0[0];
2476 break;
2477 case I2C_SMBUS_BYTE_DATA:
2478 data->byte = msgbuf1[0];
2479 break;
2480 case I2C_SMBUS_WORD_DATA:
2481 case I2C_SMBUS_PROC_CALL:
2482 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
2483 break;
2484 case I2C_SMBUS_I2C_BLOCK_DATA:
2485 for (i = 0; i < data->block[0]; i++)
2486 data->block[i+1] = msgbuf1[i];
2487 break;
2488 case I2C_SMBUS_BLOCK_DATA:
2489 case I2C_SMBUS_BLOCK_PROC_CALL:
2490 for (i = 0; i < msgbuf1[0] + 1; i++)
2491 data->block[i] = msgbuf1[i];
2492 break;
2494 return 0;
2498 * i2c_smbus_xfer - execute SMBus protocol operations
2499 * @adapter: Handle to I2C bus
2500 * @addr: Address of SMBus slave on that bus
2501 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
2502 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
2503 * @command: Byte interpreted by slave, for protocols which use such bytes
2504 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
2505 * @data: Data to be read or written
2507 * This executes an SMBus protocol operation, and returns a negative
2508 * errno code else zero on success.
2510 s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
2511 char read_write, u8 command, int protocol,
2512 union i2c_smbus_data *data)
2514 unsigned long orig_jiffies;
2515 int try;
2516 s32 res;
2518 flags &= I2C_M_TEN | I2C_CLIENT_PEC | I2C_CLIENT_SCCB;
2520 if (adapter->algo->smbus_xfer) {
2521 i2c_lock_adapter(adapter);
2523 /* Retry automatically on arbitration loss */
2524 orig_jiffies = jiffies;
2525 for (res = 0, try = 0; try <= adapter->retries; try++) {
2526 res = adapter->algo->smbus_xfer(adapter, addr, flags,
2527 read_write, command,
2528 protocol, data);
2529 if (res != -EAGAIN)
2530 break;
2531 if (time_after(jiffies,
2532 orig_jiffies + adapter->timeout))
2533 break;
2535 i2c_unlock_adapter(adapter);
2537 if (res != -EOPNOTSUPP || !adapter->algo->master_xfer)
2538 return res;
2540 * Fall back to i2c_smbus_xfer_emulated if the adapter doesn't
2541 * implement native support for the SMBus operation.
2545 return i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
2546 command, protocol, data);
2548 EXPORT_SYMBOL(i2c_smbus_xfer);
2550 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2551 MODULE_DESCRIPTION("I2C-Bus main module");
2552 MODULE_LICENSE("GPL");