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., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 /* ------------------------------------------------------------------------- */
20 /* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
21 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
22 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
23 Jean Delvare <khali@linux-fr.org> */
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/errno.h>
28 #include <linux/slab.h>
29 #include <linux/i2c.h>
30 #include <linux/init.h>
31 #include <linux/idr.h>
32 #include <linux/mutex.h>
33 #include <linux/completion.h>
34 #include <linux/hardirq.h>
35 #include <linux/irqflags.h>
36 #include <asm/uaccess.h>
41 /* core_lock protects i2c_adapter_idr, and guarantees
42 that device detection, deletion of detected devices, and attach_adapter
43 and detach_adapter calls are serialized */
44 static DEFINE_MUTEX(core_lock);
45 static DEFINE_IDR(i2c_adapter_idr);
47 static int i2c_check_addr(struct i2c_adapter *adapter, int addr);
48 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
50 /* ------------------------------------------------------------------------- */
52 static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
53 const struct i2c_client *client)
56 if (strcmp(client->name, id->name) == 0)
63 static int i2c_device_match(struct device *dev, struct device_driver *drv)
65 struct i2c_client *client = to_i2c_client(dev);
66 struct i2c_driver *driver = to_i2c_driver(drv);
68 /* match on an id table if there is one */
70 return i2c_match_id(driver->id_table, client) != NULL;
77 /* uevent helps with hotplug: modprobe -q $(MODALIAS) */
78 static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
80 struct i2c_client *client = to_i2c_client(dev);
82 if (add_uevent_var(env, "MODALIAS=%s%s",
83 I2C_MODULE_PREFIX, client->name))
85 dev_dbg(dev, "uevent\n");
90 #define i2c_device_uevent NULL
91 #endif /* CONFIG_HOTPLUG */
93 static int i2c_device_probe(struct device *dev)
95 struct i2c_client *client = to_i2c_client(dev);
96 struct i2c_driver *driver = to_i2c_driver(dev->driver);
99 if (!driver->probe || !driver->id_table)
101 client->driver = driver;
102 if (!device_can_wakeup(&client->dev))
103 device_init_wakeup(&client->dev,
104 client->flags & I2C_CLIENT_WAKE);
105 dev_dbg(dev, "probe\n");
107 status = driver->probe(client, i2c_match_id(driver->id_table, client));
109 client->driver = NULL;
113 static int i2c_device_remove(struct device *dev)
115 struct i2c_client *client = to_i2c_client(dev);
116 struct i2c_driver *driver;
122 driver = to_i2c_driver(dev->driver);
123 if (driver->remove) {
124 dev_dbg(dev, "remove\n");
125 status = driver->remove(client);
131 client->driver = NULL;
135 static void i2c_device_shutdown(struct device *dev)
137 struct i2c_driver *driver;
141 driver = to_i2c_driver(dev->driver);
142 if (driver->shutdown)
143 driver->shutdown(to_i2c_client(dev));
146 static int i2c_device_suspend(struct device *dev, pm_message_t mesg)
148 struct i2c_driver *driver;
152 driver = to_i2c_driver(dev->driver);
153 if (!driver->suspend)
155 return driver->suspend(to_i2c_client(dev), mesg);
158 static int i2c_device_resume(struct device *dev)
160 struct i2c_driver *driver;
164 driver = to_i2c_driver(dev->driver);
167 return driver->resume(to_i2c_client(dev));
170 static void i2c_client_dev_release(struct device *dev)
172 kfree(to_i2c_client(dev));
176 show_client_name(struct device *dev, struct device_attribute *attr, char *buf)
178 struct i2c_client *client = to_i2c_client(dev);
179 return sprintf(buf, "%s\n", client->name);
183 show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
185 struct i2c_client *client = to_i2c_client(dev);
186 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
189 static struct device_attribute i2c_dev_attrs[] = {
190 __ATTR(name, S_IRUGO, show_client_name, NULL),
191 /* modalias helps coldplug: modprobe $(cat .../modalias) */
192 __ATTR(modalias, S_IRUGO, show_modalias, NULL),
196 struct bus_type i2c_bus_type = {
198 .dev_attrs = i2c_dev_attrs,
199 .match = i2c_device_match,
200 .uevent = i2c_device_uevent,
201 .probe = i2c_device_probe,
202 .remove = i2c_device_remove,
203 .shutdown = i2c_device_shutdown,
204 .suspend = i2c_device_suspend,
205 .resume = i2c_device_resume,
207 EXPORT_SYMBOL_GPL(i2c_bus_type);
211 * i2c_verify_client - return parameter as i2c_client, or NULL
212 * @dev: device, probably from some driver model iterator
214 * When traversing the driver model tree, perhaps using driver model
215 * iterators like @device_for_each_child(), you can't assume very much
216 * about the nodes you find. Use this function to avoid oopses caused
217 * by wrongly treating some non-I2C device as an i2c_client.
219 struct i2c_client *i2c_verify_client(struct device *dev)
221 return (dev->bus == &i2c_bus_type)
225 EXPORT_SYMBOL(i2c_verify_client);
229 * i2c_new_device - instantiate an i2c device
230 * @adap: the adapter managing the device
231 * @info: describes one I2C device; bus_num is ignored
234 * Create an i2c device. Binding is handled through driver model
235 * probe()/remove() methods. A driver may be bound to this device when we
236 * return from this function, or any later moment (e.g. maybe hotplugging will
237 * load the driver module). This call is not appropriate for use by mainboard
238 * initialization logic, which usually runs during an arch_initcall() long
239 * before any i2c_adapter could exist.
241 * This returns the new i2c client, which may be saved for later use with
242 * i2c_unregister_device(); or NULL to indicate an error.
245 i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
247 struct i2c_client *client;
250 client = kzalloc(sizeof *client, GFP_KERNEL);
254 client->adapter = adap;
256 client->dev.platform_data = info->platform_data;
259 client->dev.archdata = *info->archdata;
261 client->flags = info->flags;
262 client->addr = info->addr;
263 client->irq = info->irq;
265 strlcpy(client->name, info->type, sizeof(client->name));
267 /* Check for address business */
268 status = i2c_check_addr(adap, client->addr);
272 client->dev.parent = &client->adapter->dev;
273 client->dev.bus = &i2c_bus_type;
274 client->dev.release = i2c_client_dev_release;
276 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
278 status = device_register(&client->dev);
282 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
283 client->name, dev_name(&client->dev));
288 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
289 "(%d)\n", client->name, client->addr, status);
293 EXPORT_SYMBOL_GPL(i2c_new_device);
297 * i2c_unregister_device - reverse effect of i2c_new_device()
298 * @client: value returned from i2c_new_device()
301 void i2c_unregister_device(struct i2c_client *client)
303 device_unregister(&client->dev);
305 EXPORT_SYMBOL_GPL(i2c_unregister_device);
308 static const struct i2c_device_id dummy_id[] = {
313 static int dummy_probe(struct i2c_client *client,
314 const struct i2c_device_id *id)
319 static int dummy_remove(struct i2c_client *client)
324 static struct i2c_driver dummy_driver = {
325 .driver.name = "dummy",
326 .probe = dummy_probe,
327 .remove = dummy_remove,
328 .id_table = dummy_id,
332 * i2c_new_dummy - return a new i2c device bound to a dummy driver
333 * @adapter: the adapter managing the device
334 * @address: seven bit address to be used
337 * This returns an I2C client bound to the "dummy" driver, intended for use
338 * with devices that consume multiple addresses. Examples of such chips
339 * include various EEPROMS (like 24c04 and 24c08 models).
341 * These dummy devices have two main uses. First, most I2C and SMBus calls
342 * except i2c_transfer() need a client handle; the dummy will be that handle.
343 * And second, this prevents the specified address from being bound to a
346 * This returns the new i2c client, which should be saved for later use with
347 * i2c_unregister_device(); or NULL to indicate an error.
349 struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
351 struct i2c_board_info info = {
352 I2C_BOARD_INFO("dummy", address),
355 return i2c_new_device(adapter, &info);
357 EXPORT_SYMBOL_GPL(i2c_new_dummy);
359 /* ------------------------------------------------------------------------- */
361 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
363 static void i2c_adapter_dev_release(struct device *dev)
365 struct i2c_adapter *adap = to_i2c_adapter(dev);
366 complete(&adap->dev_released);
370 show_adapter_name(struct device *dev, struct device_attribute *attr, char *buf)
372 struct i2c_adapter *adap = to_i2c_adapter(dev);
373 return sprintf(buf, "%s\n", adap->name);
376 static struct device_attribute i2c_adapter_attrs[] = {
377 __ATTR(name, S_IRUGO, show_adapter_name, NULL),
381 static struct class i2c_adapter_class = {
382 .owner = THIS_MODULE,
383 .name = "i2c-adapter",
384 .dev_attrs = i2c_adapter_attrs,
387 static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
389 struct i2c_devinfo *devinfo;
391 mutex_lock(&__i2c_board_lock);
392 list_for_each_entry(devinfo, &__i2c_board_list, list) {
393 if (devinfo->busnum == adapter->nr
394 && !i2c_new_device(adapter,
395 &devinfo->board_info))
396 dev_err(&adapter->dev,
397 "Can't create device at 0x%02x\n",
398 devinfo->board_info.addr);
400 mutex_unlock(&__i2c_board_lock);
403 static int i2c_do_add_adapter(struct device_driver *d, void *data)
405 struct i2c_driver *driver = to_i2c_driver(d);
406 struct i2c_adapter *adap = data;
408 /* Detect supported devices on that bus, and instantiate them */
409 i2c_detect(adap, driver);
411 /* Let legacy drivers scan this bus for matching devices */
412 if (driver->attach_adapter) {
413 /* We ignore the return code; if it fails, too bad */
414 driver->attach_adapter(adap);
419 static int i2c_register_adapter(struct i2c_adapter *adap)
423 /* Can't register until after driver model init */
424 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
429 mutex_init(&adap->bus_lock);
431 /* Set default timeout to 1 second if not already set */
432 if (adap->timeout == 0)
435 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
436 adap->dev.release = &i2c_adapter_dev_release;
437 adap->dev.class = &i2c_adapter_class;
438 res = device_register(&adap->dev);
442 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
444 /* create pre-declared device nodes */
445 if (adap->nr < __i2c_first_dynamic_bus_num)
446 i2c_scan_static_board_info(adap);
449 mutex_lock(&core_lock);
450 dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap,
452 mutex_unlock(&core_lock);
457 mutex_lock(&core_lock);
458 idr_remove(&i2c_adapter_idr, adap->nr);
459 mutex_unlock(&core_lock);
464 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
465 * @adapter: the adapter to add
468 * This routine is used to declare an I2C adapter when its bus number
469 * doesn't matter. Examples: for I2C adapters dynamically added by
470 * USB links or PCI plugin cards.
472 * When this returns zero, a new bus number was allocated and stored
473 * in adap->nr, and the specified adapter became available for clients.
474 * Otherwise, a negative errno value is returned.
476 int i2c_add_adapter(struct i2c_adapter *adapter)
481 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
484 mutex_lock(&core_lock);
485 /* "above" here means "above or equal to", sigh */
486 res = idr_get_new_above(&i2c_adapter_idr, adapter,
487 __i2c_first_dynamic_bus_num, &id);
488 mutex_unlock(&core_lock);
497 return i2c_register_adapter(adapter);
499 EXPORT_SYMBOL(i2c_add_adapter);
502 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
503 * @adap: the adapter to register (with adap->nr initialized)
506 * This routine is used to declare an I2C adapter when its bus number
507 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
508 * or otherwise built in to the system's mainboard, and where i2c_board_info
509 * is used to properly configure I2C devices.
511 * If no devices have pre-been declared for this bus, then be sure to
512 * register the adapter before any dynamically allocated ones. Otherwise
513 * the required bus ID may not be available.
515 * When this returns zero, the specified adapter became available for
516 * clients using the bus number provided in adap->nr. Also, the table
517 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
518 * and the appropriate driver model device nodes are created. Otherwise, a
519 * negative errno value is returned.
521 int i2c_add_numbered_adapter(struct i2c_adapter *adap)
526 if (adap->nr & ~MAX_ID_MASK)
530 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
533 mutex_lock(&core_lock);
534 /* "above" here means "above or equal to", sigh;
535 * we need the "equal to" result to force the result
537 status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
538 if (status == 0 && id != adap->nr) {
540 idr_remove(&i2c_adapter_idr, id);
542 mutex_unlock(&core_lock);
543 if (status == -EAGAIN)
547 status = i2c_register_adapter(adap);
550 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
552 static int i2c_do_del_adapter(struct device_driver *d, void *data)
554 struct i2c_driver *driver = to_i2c_driver(d);
555 struct i2c_adapter *adapter = data;
556 struct i2c_client *client, *_n;
559 /* Remove the devices we created ourselves as the result of hardware
560 * probing (using a driver's detect method) */
561 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
562 if (client->adapter == adapter) {
563 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
564 client->name, client->addr);
565 list_del(&client->detected);
566 i2c_unregister_device(client);
570 if (!driver->detach_adapter)
572 res = driver->detach_adapter(adapter);
574 dev_err(&adapter->dev, "detach_adapter failed (%d) "
575 "for driver [%s]\n", res, driver->driver.name);
579 static int __unregister_client(struct device *dev, void *dummy)
581 struct i2c_client *client = i2c_verify_client(dev);
583 i2c_unregister_device(client);
588 * i2c_del_adapter - unregister I2C adapter
589 * @adap: the adapter being unregistered
592 * This unregisters an I2C adapter which was previously registered
593 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
595 int i2c_del_adapter(struct i2c_adapter *adap)
598 struct i2c_adapter *found;
600 /* First make sure that this adapter was ever added */
601 mutex_lock(&core_lock);
602 found = idr_find(&i2c_adapter_idr, adap->nr);
603 mutex_unlock(&core_lock);
605 pr_debug("i2c-core: attempting to delete unregistered "
606 "adapter [%s]\n", adap->name);
610 /* Tell drivers about this removal */
611 mutex_lock(&core_lock);
612 res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
614 mutex_unlock(&core_lock);
618 /* Detach any active clients. This can't fail, thus we do not
619 checking the returned value. */
620 res = device_for_each_child(&adap->dev, NULL, __unregister_client);
622 /* clean up the sysfs representation */
623 init_completion(&adap->dev_released);
624 device_unregister(&adap->dev);
626 /* wait for sysfs to drop all references */
627 wait_for_completion(&adap->dev_released);
630 mutex_lock(&core_lock);
631 idr_remove(&i2c_adapter_idr, adap->nr);
632 mutex_unlock(&core_lock);
634 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
636 /* Clear the device structure in case this adapter is ever going to be
638 memset(&adap->dev, 0, sizeof(adap->dev));
642 EXPORT_SYMBOL(i2c_del_adapter);
645 /* ------------------------------------------------------------------------- */
647 static int __attach_adapter(struct device *dev, void *data)
649 struct i2c_adapter *adapter = to_i2c_adapter(dev);
650 struct i2c_driver *driver = data;
652 i2c_detect(adapter, driver);
654 /* Legacy drivers scan i2c busses directly */
655 if (driver->attach_adapter)
656 driver->attach_adapter(adapter);
662 * An i2c_driver is used with one or more i2c_client (device) nodes to access
663 * i2c slave chips, on a bus instance associated with some i2c_adapter.
666 int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
670 /* Can't register until after driver model init */
671 if (unlikely(WARN_ON(!i2c_bus_type.p)))
674 /* add the driver to the list of i2c drivers in the driver core */
675 driver->driver.owner = owner;
676 driver->driver.bus = &i2c_bus_type;
678 /* When registration returns, the driver core
679 * will have called probe() for all matching-but-unbound devices.
681 res = driver_register(&driver->driver);
685 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
687 INIT_LIST_HEAD(&driver->clients);
688 /* Walk the adapters that are already present */
689 mutex_lock(&core_lock);
690 class_for_each_device(&i2c_adapter_class, NULL, driver,
692 mutex_unlock(&core_lock);
696 EXPORT_SYMBOL(i2c_register_driver);
698 static int __detach_adapter(struct device *dev, void *data)
700 struct i2c_adapter *adapter = to_i2c_adapter(dev);
701 struct i2c_driver *driver = data;
702 struct i2c_client *client, *_n;
704 /* Remove the devices we created ourselves as the result of hardware
705 * probing (using a driver's detect method) */
706 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
707 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
708 client->name, client->addr);
709 list_del(&client->detected);
710 i2c_unregister_device(client);
713 if (driver->detach_adapter) {
714 if (driver->detach_adapter(adapter))
715 dev_err(&adapter->dev,
716 "detach_adapter failed for driver [%s]\n",
717 driver->driver.name);
724 * i2c_del_driver - unregister I2C driver
725 * @driver: the driver being unregistered
728 void i2c_del_driver(struct i2c_driver *driver)
730 mutex_lock(&core_lock);
731 class_for_each_device(&i2c_adapter_class, NULL, driver,
733 mutex_unlock(&core_lock);
735 driver_unregister(&driver->driver);
736 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
738 EXPORT_SYMBOL(i2c_del_driver);
740 /* ------------------------------------------------------------------------- */
742 static int __i2c_check_addr(struct device *dev, void *addrp)
744 struct i2c_client *client = i2c_verify_client(dev);
745 int addr = *(int *)addrp;
747 if (client && client->addr == addr)
752 static int i2c_check_addr(struct i2c_adapter *adapter, int addr)
754 return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr);
758 * i2c_use_client - increments the reference count of the i2c client structure
759 * @client: the client being referenced
761 * Each live reference to a client should be refcounted. The driver model does
762 * that automatically as part of driver binding, so that most drivers don't
763 * need to do this explicitly: they hold a reference until they're unbound
766 * A pointer to the client with the incremented reference counter is returned.
768 struct i2c_client *i2c_use_client(struct i2c_client *client)
770 if (client && get_device(&client->dev))
774 EXPORT_SYMBOL(i2c_use_client);
777 * i2c_release_client - release a use of the i2c client structure
778 * @client: the client being no longer referenced
780 * Must be called when a user of a client is finished with it.
782 void i2c_release_client(struct i2c_client *client)
785 put_device(&client->dev);
787 EXPORT_SYMBOL(i2c_release_client);
794 static int i2c_cmd(struct device *dev, void *_arg)
796 struct i2c_client *client = i2c_verify_client(dev);
797 struct i2c_cmd_arg *arg = _arg;
799 if (client && client->driver && client->driver->command)
800 client->driver->command(client, arg->cmd, arg->arg);
804 void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
806 struct i2c_cmd_arg cmd_arg;
810 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
812 EXPORT_SYMBOL(i2c_clients_command);
814 static int __init i2c_init(void)
818 retval = bus_register(&i2c_bus_type);
821 retval = class_register(&i2c_adapter_class);
824 retval = i2c_add_driver(&dummy_driver);
830 class_unregister(&i2c_adapter_class);
832 bus_unregister(&i2c_bus_type);
836 static void __exit i2c_exit(void)
838 i2c_del_driver(&dummy_driver);
839 class_unregister(&i2c_adapter_class);
840 bus_unregister(&i2c_bus_type);
843 /* We must initialize early, because some subsystems register i2c drivers
844 * in subsys_initcall() code, but are linked (and initialized) before i2c.
846 postcore_initcall(i2c_init);
847 module_exit(i2c_exit);
849 /* ----------------------------------------------------
850 * the functional interface to the i2c busses.
851 * ----------------------------------------------------
855 * i2c_transfer - execute a single or combined I2C message
856 * @adap: Handle to I2C bus
857 * @msgs: One or more messages to execute before STOP is issued to
858 * terminate the operation; each message begins with a START.
859 * @num: Number of messages to be executed.
861 * Returns negative errno, else the number of messages executed.
863 * Note that there is no requirement that each message be sent to
864 * the same slave address, although that is the most common model.
866 int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
868 unsigned long orig_jiffies;
871 /* REVISIT the fault reporting model here is weak:
873 * - When we get an error after receiving N bytes from a slave,
874 * there is no way to report "N".
876 * - When we get a NAK after transmitting N bytes to a slave,
877 * there is no way to report "N" ... or to let the master
878 * continue executing the rest of this combined message, if
879 * that's the appropriate response.
881 * - When for example "num" is two and we successfully complete
882 * the first message but get an error part way through the
883 * second, it's unclear whether that should be reported as
884 * one (discarding status on the second message) or errno
885 * (discarding status on the first one).
888 if (adap->algo->master_xfer) {
890 for (ret = 0; ret < num; ret++) {
891 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
892 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
893 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
894 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
898 if (in_atomic() || irqs_disabled()) {
899 ret = mutex_trylock(&adap->bus_lock);
901 /* I2C activity is ongoing. */
904 mutex_lock_nested(&adap->bus_lock, adap->level);
907 /* Retry automatically on arbitration loss */
908 orig_jiffies = jiffies;
909 for (ret = 0, try = 0; try <= adap->retries; try++) {
910 ret = adap->algo->master_xfer(adap, msgs, num);
913 if (time_after(jiffies, orig_jiffies + adap->timeout))
916 mutex_unlock(&adap->bus_lock);
920 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
924 EXPORT_SYMBOL(i2c_transfer);
927 * i2c_master_send - issue a single I2C message in master transmit mode
928 * @client: Handle to slave device
929 * @buf: Data that will be written to the slave
930 * @count: How many bytes to write
932 * Returns negative errno, or else the number of bytes written.
934 int i2c_master_send(struct i2c_client *client,const char *buf ,int count)
937 struct i2c_adapter *adap=client->adapter;
940 msg.addr = client->addr;
941 msg.flags = client->flags & I2C_M_TEN;
943 msg.buf = (char *)buf;
945 ret = i2c_transfer(adap, &msg, 1);
947 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
948 transmitted, else error code. */
949 return (ret == 1) ? count : ret;
951 EXPORT_SYMBOL(i2c_master_send);
954 * i2c_master_recv - issue a single I2C message in master receive mode
955 * @client: Handle to slave device
956 * @buf: Where to store data read from slave
957 * @count: How many bytes to read
959 * Returns negative errno, or else the number of bytes read.
961 int i2c_master_recv(struct i2c_client *client, char *buf ,int count)
963 struct i2c_adapter *adap=client->adapter;
967 msg.addr = client->addr;
968 msg.flags = client->flags & I2C_M_TEN;
969 msg.flags |= I2C_M_RD;
973 ret = i2c_transfer(adap, &msg, 1);
975 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
976 transmitted, else error code. */
977 return (ret == 1) ? count : ret;
979 EXPORT_SYMBOL(i2c_master_recv);
981 /* ----------------------------------------------------
982 * the i2c address scanning function
983 * Will not work for 10-bit addresses!
984 * ----------------------------------------------------
987 static int i2c_detect_address(struct i2c_client *temp_client, int kind,
988 struct i2c_driver *driver)
990 struct i2c_board_info info;
991 struct i2c_adapter *adapter = temp_client->adapter;
992 int addr = temp_client->addr;
995 /* Make sure the address is valid */
996 if (addr < 0x03 || addr > 0x77) {
997 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1002 /* Skip if already in use */
1003 if (i2c_check_addr(adapter, addr))
1006 /* Make sure there is something at this address, unless forced */
1008 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1009 I2C_SMBUS_QUICK, NULL) < 0)
1012 /* prevent 24RF08 corruption */
1013 if ((addr & ~0x0f) == 0x50)
1014 i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1015 I2C_SMBUS_QUICK, NULL);
1018 /* Finally call the custom detection function */
1019 memset(&info, 0, sizeof(struct i2c_board_info));
1021 err = driver->detect(temp_client, kind, &info);
1023 /* -ENODEV is returned if the detection fails. We catch it
1024 here as this isn't an error. */
1025 return err == -ENODEV ? 0 : err;
1028 /* Consistency check */
1029 if (info.type[0] == '\0') {
1030 dev_err(&adapter->dev, "%s detection function provided "
1031 "no name for 0x%x\n", driver->driver.name,
1034 struct i2c_client *client;
1036 /* Detection succeeded, instantiate the device */
1037 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1038 info.type, info.addr);
1039 client = i2c_new_device(adapter, &info);
1041 list_add_tail(&client->detected, &driver->clients);
1043 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1044 info.type, info.addr);
1049 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1051 const struct i2c_client_address_data *address_data;
1052 struct i2c_client *temp_client;
1054 int adap_id = i2c_adapter_id(adapter);
1056 address_data = driver->address_data;
1057 if (!driver->detect || !address_data)
1060 /* Set up a temporary client to help detect callback */
1061 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1064 temp_client->adapter = adapter;
1066 /* Force entries are done first, and are not affected by ignore
1068 if (address_data->forces) {
1069 const unsigned short * const *forces = address_data->forces;
1072 for (kind = 0; forces[kind]; kind++) {
1073 for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1075 if (forces[kind][i] == adap_id
1076 || forces[kind][i] == ANY_I2C_BUS) {
1077 dev_dbg(&adapter->dev, "found force "
1078 "parameter for adapter %d, "
1079 "addr 0x%02x, kind %d\n",
1080 adap_id, forces[kind][i + 1],
1082 temp_client->addr = forces[kind][i + 1];
1083 err = i2c_detect_address(temp_client,
1092 /* Stop here if the classes do not match */
1093 if (!(adapter->class & driver->class))
1096 /* Stop here if we can't use SMBUS_QUICK */
1097 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1098 if (address_data->probe[0] == I2C_CLIENT_END
1099 && address_data->normal_i2c[0] == I2C_CLIENT_END)
1102 dev_warn(&adapter->dev, "SMBus Quick command not supported, "
1103 "can't probe for chips\n");
1108 /* Probe entries are done second, and are not affected by ignore
1110 for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1111 if (address_data->probe[i] == adap_id
1112 || address_data->probe[i] == ANY_I2C_BUS) {
1113 dev_dbg(&adapter->dev, "found probe parameter for "
1114 "adapter %d, addr 0x%02x\n", adap_id,
1115 address_data->probe[i + 1]);
1116 temp_client->addr = address_data->probe[i + 1];
1117 err = i2c_detect_address(temp_client, -1, driver);
1123 /* Normal entries are done last, unless shadowed by an ignore entry */
1124 for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1128 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1130 if ((address_data->ignore[j] == adap_id ||
1131 address_data->ignore[j] == ANY_I2C_BUS)
1132 && address_data->ignore[j + 1]
1133 == address_data->normal_i2c[i]) {
1134 dev_dbg(&adapter->dev, "found ignore "
1135 "parameter for adapter %d, "
1136 "addr 0x%02x\n", adap_id,
1137 address_data->ignore[j + 1]);
1145 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1146 "addr 0x%02x\n", adap_id,
1147 address_data->normal_i2c[i]);
1148 temp_client->addr = address_data->normal_i2c[i];
1149 err = i2c_detect_address(temp_client, -1, driver);
1160 i2c_new_probed_device(struct i2c_adapter *adap,
1161 struct i2c_board_info *info,
1162 unsigned short const *addr_list)
1166 /* Stop here if the bus doesn't support probing */
1167 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) {
1168 dev_err(&adap->dev, "Probing not supported\n");
1172 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1173 /* Check address validity */
1174 if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
1175 dev_warn(&adap->dev, "Invalid 7-bit address "
1176 "0x%02x\n", addr_list[i]);
1180 /* Check address availability */
1181 if (i2c_check_addr(adap, addr_list[i])) {
1182 dev_dbg(&adap->dev, "Address 0x%02x already in "
1183 "use, not probing\n", addr_list[i]);
1187 /* Test address responsiveness
1188 The default probe method is a quick write, but it is known
1189 to corrupt the 24RF08 EEPROMs due to a state machine bug,
1190 and could also irreversibly write-protect some EEPROMs, so
1191 for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte
1192 read instead. Also, some bus drivers don't implement
1193 quick write, so we fallback to a byte read it that case
1195 if ((addr_list[i] & ~0x07) == 0x30
1196 || (addr_list[i] & ~0x0f) == 0x50
1197 || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) {
1198 union i2c_smbus_data data;
1200 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1202 I2C_SMBUS_BYTE, &data) >= 0)
1205 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1207 I2C_SMBUS_QUICK, NULL) >= 0)
1212 if (addr_list[i] == I2C_CLIENT_END) {
1213 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1217 info->addr = addr_list[i];
1218 return i2c_new_device(adap, info);
1220 EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1222 struct i2c_adapter* i2c_get_adapter(int id)
1224 struct i2c_adapter *adapter;
1226 mutex_lock(&core_lock);
1227 adapter = idr_find(&i2c_adapter_idr, id);
1228 if (adapter && !try_module_get(adapter->owner))
1231 mutex_unlock(&core_lock);
1234 EXPORT_SYMBOL(i2c_get_adapter);
1236 void i2c_put_adapter(struct i2c_adapter *adap)
1238 module_put(adap->owner);
1240 EXPORT_SYMBOL(i2c_put_adapter);
1242 /* The SMBus parts */
1244 #define POLY (0x1070U << 3)
1245 static u8 crc8(u16 data)
1249 for(i = 0; i < 8; i++) {
1254 return (u8)(data >> 8);
1257 /* Incremental CRC8 over count bytes in the array pointed to by p */
1258 static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
1262 for(i = 0; i < count; i++)
1263 crc = crc8((crc ^ p[i]) << 8);
1267 /* Assume a 7-bit address, which is reasonable for SMBus */
1268 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
1270 /* The address will be sent first */
1271 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1272 pec = i2c_smbus_pec(pec, &addr, 1);
1274 /* The data buffer follows */
1275 return i2c_smbus_pec(pec, msg->buf, msg->len);
1278 /* Used for write only transactions */
1279 static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
1281 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1285 /* Return <0 on CRC error
1286 If there was a write before this read (most cases) we need to take the
1287 partial CRC from the write part into account.
1288 Note that this function does modify the message (we need to decrease the
1289 message length to hide the CRC byte from the caller). */
1290 static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
1292 u8 rpec = msg->buf[--msg->len];
1293 cpec = i2c_smbus_msg_pec(cpec, msg);
1296 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1304 * i2c_smbus_read_byte - SMBus "receive byte" protocol
1305 * @client: Handle to slave device
1307 * This executes the SMBus "receive byte" protocol, returning negative errno
1308 * else the byte received from the device.
1310 s32 i2c_smbus_read_byte(struct i2c_client *client)
1312 union i2c_smbus_data data;
1315 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1317 I2C_SMBUS_BYTE, &data);
1318 return (status < 0) ? status : data.byte;
1320 EXPORT_SYMBOL(i2c_smbus_read_byte);
1323 * i2c_smbus_write_byte - SMBus "send byte" protocol
1324 * @client: Handle to slave device
1325 * @value: Byte to be sent
1327 * This executes the SMBus "send byte" protocol, returning negative errno
1328 * else zero on success.
1330 s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1332 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1333 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
1335 EXPORT_SYMBOL(i2c_smbus_write_byte);
1338 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1339 * @client: Handle to slave device
1340 * @command: Byte interpreted by slave
1342 * This executes the SMBus "read byte" protocol, returning negative errno
1343 * else a data byte received from the device.
1345 s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1347 union i2c_smbus_data data;
1350 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1351 I2C_SMBUS_READ, command,
1352 I2C_SMBUS_BYTE_DATA, &data);
1353 return (status < 0) ? status : data.byte;
1355 EXPORT_SYMBOL(i2c_smbus_read_byte_data);
1358 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1359 * @client: Handle to slave device
1360 * @command: Byte interpreted by slave
1361 * @value: Byte being written
1363 * This executes the SMBus "write byte" protocol, returning negative errno
1364 * else zero on success.
1366 s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1368 union i2c_smbus_data data;
1370 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1371 I2C_SMBUS_WRITE,command,
1372 I2C_SMBUS_BYTE_DATA,&data);
1374 EXPORT_SYMBOL(i2c_smbus_write_byte_data);
1377 * i2c_smbus_read_word_data - SMBus "read word" protocol
1378 * @client: Handle to slave device
1379 * @command: Byte interpreted by slave
1381 * This executes the SMBus "read word" protocol, returning negative errno
1382 * else a 16-bit unsigned "word" received from the device.
1384 s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1386 union i2c_smbus_data data;
1389 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1390 I2C_SMBUS_READ, command,
1391 I2C_SMBUS_WORD_DATA, &data);
1392 return (status < 0) ? status : data.word;
1394 EXPORT_SYMBOL(i2c_smbus_read_word_data);
1397 * i2c_smbus_write_word_data - SMBus "write word" protocol
1398 * @client: Handle to slave device
1399 * @command: Byte interpreted by slave
1400 * @value: 16-bit "word" being written
1402 * This executes the SMBus "write word" protocol, returning negative errno
1403 * else zero on success.
1405 s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1407 union i2c_smbus_data data;
1409 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1410 I2C_SMBUS_WRITE,command,
1411 I2C_SMBUS_WORD_DATA,&data);
1413 EXPORT_SYMBOL(i2c_smbus_write_word_data);
1416 * i2c_smbus_process_call - SMBus "process call" protocol
1417 * @client: Handle to slave device
1418 * @command: Byte interpreted by slave
1419 * @value: 16-bit "word" being written
1421 * This executes the SMBus "process call" protocol, returning negative errno
1422 * else a 16-bit unsigned "word" received from the device.
1424 s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value)
1426 union i2c_smbus_data data;
1430 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1431 I2C_SMBUS_WRITE, command,
1432 I2C_SMBUS_PROC_CALL, &data);
1433 return (status < 0) ? status : data.word;
1435 EXPORT_SYMBOL(i2c_smbus_process_call);
1438 * i2c_smbus_read_block_data - SMBus "block read" protocol
1439 * @client: Handle to slave device
1440 * @command: Byte interpreted by slave
1441 * @values: Byte array into which data will be read; big enough to hold
1442 * the data returned by the slave. SMBus allows at most 32 bytes.
1444 * This executes the SMBus "block read" protocol, returning negative errno
1445 * else the number of data bytes in the slave's response.
1447 * Note that using this function requires that the client's adapter support
1448 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
1449 * support this; its emulation through I2C messaging relies on a specific
1450 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1452 s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1455 union i2c_smbus_data data;
1458 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1459 I2C_SMBUS_READ, command,
1460 I2C_SMBUS_BLOCK_DATA, &data);
1464 memcpy(values, &data.block[1], data.block[0]);
1465 return data.block[0];
1467 EXPORT_SYMBOL(i2c_smbus_read_block_data);
1470 * i2c_smbus_write_block_data - SMBus "block write" protocol
1471 * @client: Handle to slave device
1472 * @command: Byte interpreted by slave
1473 * @length: Size of data block; SMBus allows at most 32 bytes
1474 * @values: Byte array which will be written.
1476 * This executes the SMBus "block write" protocol, returning negative errno
1477 * else zero on success.
1479 s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
1480 u8 length, const u8 *values)
1482 union i2c_smbus_data data;
1484 if (length > I2C_SMBUS_BLOCK_MAX)
1485 length = I2C_SMBUS_BLOCK_MAX;
1486 data.block[0] = length;
1487 memcpy(&data.block[1], values, length);
1488 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1489 I2C_SMBUS_WRITE,command,
1490 I2C_SMBUS_BLOCK_DATA,&data);
1492 EXPORT_SYMBOL(i2c_smbus_write_block_data);
1494 /* Returns the number of read bytes */
1495 s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1496 u8 length, u8 *values)
1498 union i2c_smbus_data data;
1501 if (length > I2C_SMBUS_BLOCK_MAX)
1502 length = I2C_SMBUS_BLOCK_MAX;
1503 data.block[0] = length;
1504 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1505 I2C_SMBUS_READ, command,
1506 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1510 memcpy(values, &data.block[1], data.block[0]);
1511 return data.block[0];
1513 EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
1515 s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
1516 u8 length, const u8 *values)
1518 union i2c_smbus_data data;
1520 if (length > I2C_SMBUS_BLOCK_MAX)
1521 length = I2C_SMBUS_BLOCK_MAX;
1522 data.block[0] = length;
1523 memcpy(data.block + 1, values, length);
1524 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1525 I2C_SMBUS_WRITE, command,
1526 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1528 EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
1530 /* Simulate a SMBus command using the i2c protocol
1531 No checking of parameters is done! */
1532 static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr,
1533 unsigned short flags,
1534 char read_write, u8 command, int size,
1535 union i2c_smbus_data * data)
1537 /* So we need to generate a series of msgs. In the case of writing, we
1538 need to use only one message; when reading, we need two. We initialize
1539 most things with sane defaults, to keep the code below somewhat
1541 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1542 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
1543 int num = read_write == I2C_SMBUS_READ?2:1;
1544 struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
1545 { addr, flags | I2C_M_RD, 0, msgbuf1 }
1551 msgbuf0[0] = command;
1553 case I2C_SMBUS_QUICK:
1555 /* Special case: The read/write field is used as data */
1556 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
1560 case I2C_SMBUS_BYTE:
1561 if (read_write == I2C_SMBUS_READ) {
1562 /* Special case: only a read! */
1563 msg[0].flags = I2C_M_RD | flags;
1567 case I2C_SMBUS_BYTE_DATA:
1568 if (read_write == I2C_SMBUS_READ)
1572 msgbuf0[1] = data->byte;
1575 case I2C_SMBUS_WORD_DATA:
1576 if (read_write == I2C_SMBUS_READ)
1580 msgbuf0[1] = data->word & 0xff;
1581 msgbuf0[2] = data->word >> 8;
1584 case I2C_SMBUS_PROC_CALL:
1585 num = 2; /* Special case */
1586 read_write = I2C_SMBUS_READ;
1589 msgbuf0[1] = data->word & 0xff;
1590 msgbuf0[2] = data->word >> 8;
1592 case I2C_SMBUS_BLOCK_DATA:
1593 if (read_write == I2C_SMBUS_READ) {
1594 msg[1].flags |= I2C_M_RECV_LEN;
1595 msg[1].len = 1; /* block length will be added by
1596 the underlying bus driver */
1598 msg[0].len = data->block[0] + 2;
1599 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
1600 dev_err(&adapter->dev,
1601 "Invalid block write size %d\n",
1605 for (i = 1; i < msg[0].len; i++)
1606 msgbuf0[i] = data->block[i-1];
1609 case I2C_SMBUS_BLOCK_PROC_CALL:
1610 num = 2; /* Another special case */
1611 read_write = I2C_SMBUS_READ;
1612 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
1613 dev_err(&adapter->dev,
1614 "Invalid block write size %d\n",
1618 msg[0].len = data->block[0] + 2;
1619 for (i = 1; i < msg[0].len; i++)
1620 msgbuf0[i] = data->block[i-1];
1621 msg[1].flags |= I2C_M_RECV_LEN;
1622 msg[1].len = 1; /* block length will be added by
1623 the underlying bus driver */
1625 case I2C_SMBUS_I2C_BLOCK_DATA:
1626 if (read_write == I2C_SMBUS_READ) {
1627 msg[1].len = data->block[0];
1629 msg[0].len = data->block[0] + 1;
1630 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
1631 dev_err(&adapter->dev,
1632 "Invalid block write size %d\n",
1636 for (i = 1; i <= data->block[0]; i++)
1637 msgbuf0[i] = data->block[i];
1641 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1645 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1646 && size != I2C_SMBUS_I2C_BLOCK_DATA);
1648 /* Compute PEC if first message is a write */
1649 if (!(msg[0].flags & I2C_M_RD)) {
1650 if (num == 1) /* Write only */
1651 i2c_smbus_add_pec(&msg[0]);
1652 else /* Write followed by read */
1653 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1655 /* Ask for PEC if last message is a read */
1656 if (msg[num-1].flags & I2C_M_RD)
1660 status = i2c_transfer(adapter, msg, num);
1664 /* Check PEC if last message is a read */
1665 if (i && (msg[num-1].flags & I2C_M_RD)) {
1666 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1671 if (read_write == I2C_SMBUS_READ)
1673 case I2C_SMBUS_BYTE:
1674 data->byte = msgbuf0[0];
1676 case I2C_SMBUS_BYTE_DATA:
1677 data->byte = msgbuf1[0];
1679 case I2C_SMBUS_WORD_DATA:
1680 case I2C_SMBUS_PROC_CALL:
1681 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1683 case I2C_SMBUS_I2C_BLOCK_DATA:
1684 for (i = 0; i < data->block[0]; i++)
1685 data->block[i+1] = msgbuf1[i];
1687 case I2C_SMBUS_BLOCK_DATA:
1688 case I2C_SMBUS_BLOCK_PROC_CALL:
1689 for (i = 0; i < msgbuf1[0] + 1; i++)
1690 data->block[i] = msgbuf1[i];
1697 * i2c_smbus_xfer - execute SMBus protocol operations
1698 * @adapter: Handle to I2C bus
1699 * @addr: Address of SMBus slave on that bus
1700 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
1701 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
1702 * @command: Byte interpreted by slave, for protocols which use such bytes
1703 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
1704 * @data: Data to be read or written
1706 * This executes an SMBus protocol operation, and returns a negative
1707 * errno code else zero on success.
1709 s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
1710 char read_write, u8 command, int protocol,
1711 union i2c_smbus_data *data)
1713 unsigned long orig_jiffies;
1717 flags &= I2C_M_TEN | I2C_CLIENT_PEC;
1719 if (adapter->algo->smbus_xfer) {
1720 mutex_lock(&adapter->bus_lock);
1722 /* Retry automatically on arbitration loss */
1723 orig_jiffies = jiffies;
1724 for (res = 0, try = 0; try <= adapter->retries; try++) {
1725 res = adapter->algo->smbus_xfer(adapter, addr, flags,
1726 read_write, command,
1730 if (time_after(jiffies,
1731 orig_jiffies + adapter->timeout))
1734 mutex_unlock(&adapter->bus_lock);
1736 res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write,
1737 command, protocol, data);
1741 EXPORT_SYMBOL(i2c_smbus_xfer);
1743 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
1744 MODULE_DESCRIPTION("I2C-Bus main module");
1745 MODULE_LICENSE("GPL");