x86, acpi/irq: pci device dev->irq is an isa irq not a gsi
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / i2c / i2c-core.c
blob3202a86f420e9e5b6dac41aefcefd409b3a72ed2
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 <linux/rwsem.h>
37 #include <linux/pm_runtime.h>
38 #include <asm/uaccess.h>
40 #include "i2c-core.h"
43 /* core_lock protects i2c_adapter_idr, userspace_devices, and guarantees
44 that device detection, deletion of detected devices, and attach_adapter
45 and detach_adapter calls are serialized */
46 static DEFINE_MUTEX(core_lock);
47 static DEFINE_IDR(i2c_adapter_idr);
48 static LIST_HEAD(userspace_devices);
50 static struct device_type i2c_client_type;
51 static int i2c_check_addr(struct i2c_adapter *adapter, int addr);
52 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
54 /* ------------------------------------------------------------------------- */
56 static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
57 const struct i2c_client *client)
59 while (id->name[0]) {
60 if (strcmp(client->name, id->name) == 0)
61 return id;
62 id++;
64 return NULL;
67 static int i2c_device_match(struct device *dev, struct device_driver *drv)
69 struct i2c_client *client = i2c_verify_client(dev);
70 struct i2c_driver *driver;
72 if (!client)
73 return 0;
75 driver = to_i2c_driver(drv);
76 /* match on an id table if there is one */
77 if (driver->id_table)
78 return i2c_match_id(driver->id_table, client) != NULL;
80 return 0;
83 #ifdef CONFIG_HOTPLUG
85 /* uevent helps with hotplug: modprobe -q $(MODALIAS) */
86 static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
88 struct i2c_client *client = to_i2c_client(dev);
90 if (add_uevent_var(env, "MODALIAS=%s%s",
91 I2C_MODULE_PREFIX, client->name))
92 return -ENOMEM;
93 dev_dbg(dev, "uevent\n");
94 return 0;
97 #else
98 #define i2c_device_uevent NULL
99 #endif /* CONFIG_HOTPLUG */
101 static int i2c_device_probe(struct device *dev)
103 struct i2c_client *client = i2c_verify_client(dev);
104 struct i2c_driver *driver;
105 int status;
107 if (!client)
108 return 0;
110 driver = to_i2c_driver(dev->driver);
111 if (!driver->probe || !driver->id_table)
112 return -ENODEV;
113 client->driver = driver;
114 if (!device_can_wakeup(&client->dev))
115 device_init_wakeup(&client->dev,
116 client->flags & I2C_CLIENT_WAKE);
117 dev_dbg(dev, "probe\n");
119 status = driver->probe(client, i2c_match_id(driver->id_table, client));
120 if (status)
121 client->driver = NULL;
122 return status;
125 static int i2c_device_remove(struct device *dev)
127 struct i2c_client *client = i2c_verify_client(dev);
128 struct i2c_driver *driver;
129 int status;
131 if (!client || !dev->driver)
132 return 0;
134 driver = to_i2c_driver(dev->driver);
135 if (driver->remove) {
136 dev_dbg(dev, "remove\n");
137 status = driver->remove(client);
138 } else {
139 dev->driver = NULL;
140 status = 0;
142 if (status == 0)
143 client->driver = NULL;
144 return status;
147 static void i2c_device_shutdown(struct device *dev)
149 struct i2c_client *client = i2c_verify_client(dev);
150 struct i2c_driver *driver;
152 if (!client || !dev->driver)
153 return;
154 driver = to_i2c_driver(dev->driver);
155 if (driver->shutdown)
156 driver->shutdown(client);
159 #ifdef CONFIG_SUSPEND
160 static int i2c_device_pm_suspend(struct device *dev)
162 const struct dev_pm_ops *pm;
164 if (!dev->driver)
165 return 0;
166 pm = dev->driver->pm;
167 if (!pm || !pm->suspend)
168 return 0;
169 return pm->suspend(dev);
172 static int i2c_device_pm_resume(struct device *dev)
174 const struct dev_pm_ops *pm;
176 if (!dev->driver)
177 return 0;
178 pm = dev->driver->pm;
179 if (!pm || !pm->resume)
180 return 0;
181 return pm->resume(dev);
183 #else
184 #define i2c_device_pm_suspend NULL
185 #define i2c_device_pm_resume NULL
186 #endif
188 #ifdef CONFIG_PM_RUNTIME
189 static int i2c_device_runtime_suspend(struct device *dev)
191 const struct dev_pm_ops *pm;
193 if (!dev->driver)
194 return 0;
195 pm = dev->driver->pm;
196 if (!pm || !pm->runtime_suspend)
197 return 0;
198 return pm->runtime_suspend(dev);
201 static int i2c_device_runtime_resume(struct device *dev)
203 const struct dev_pm_ops *pm;
205 if (!dev->driver)
206 return 0;
207 pm = dev->driver->pm;
208 if (!pm || !pm->runtime_resume)
209 return 0;
210 return pm->runtime_resume(dev);
213 static int i2c_device_runtime_idle(struct device *dev)
215 const struct dev_pm_ops *pm = NULL;
216 int ret;
218 if (dev->driver)
219 pm = dev->driver->pm;
220 if (pm && pm->runtime_idle) {
221 ret = pm->runtime_idle(dev);
222 if (ret)
223 return ret;
226 return pm_runtime_suspend(dev);
228 #else
229 #define i2c_device_runtime_suspend NULL
230 #define i2c_device_runtime_resume NULL
231 #define i2c_device_runtime_idle NULL
232 #endif
234 static int i2c_device_suspend(struct device *dev, pm_message_t mesg)
236 struct i2c_client *client = i2c_verify_client(dev);
237 struct i2c_driver *driver;
239 if (!client || !dev->driver)
240 return 0;
241 driver = to_i2c_driver(dev->driver);
242 if (!driver->suspend)
243 return 0;
244 return driver->suspend(client, mesg);
247 static int i2c_device_resume(struct device *dev)
249 struct i2c_client *client = i2c_verify_client(dev);
250 struct i2c_driver *driver;
252 if (!client || !dev->driver)
253 return 0;
254 driver = to_i2c_driver(dev->driver);
255 if (!driver->resume)
256 return 0;
257 return driver->resume(client);
260 static void i2c_client_dev_release(struct device *dev)
262 kfree(to_i2c_client(dev));
265 static ssize_t
266 show_name(struct device *dev, struct device_attribute *attr, char *buf)
268 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
269 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
272 static ssize_t
273 show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
275 struct i2c_client *client = to_i2c_client(dev);
276 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
279 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
280 static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
282 static struct attribute *i2c_dev_attrs[] = {
283 &dev_attr_name.attr,
284 /* modalias helps coldplug: modprobe $(cat .../modalias) */
285 &dev_attr_modalias.attr,
286 NULL
289 static struct attribute_group i2c_dev_attr_group = {
290 .attrs = i2c_dev_attrs,
293 static const struct attribute_group *i2c_dev_attr_groups[] = {
294 &i2c_dev_attr_group,
295 NULL
298 static const struct dev_pm_ops i2c_device_pm_ops = {
299 .suspend = i2c_device_pm_suspend,
300 .resume = i2c_device_pm_resume,
301 .runtime_suspend = i2c_device_runtime_suspend,
302 .runtime_resume = i2c_device_runtime_resume,
303 .runtime_idle = i2c_device_runtime_idle,
306 struct bus_type i2c_bus_type = {
307 .name = "i2c",
308 .match = i2c_device_match,
309 .probe = i2c_device_probe,
310 .remove = i2c_device_remove,
311 .shutdown = i2c_device_shutdown,
312 .suspend = i2c_device_suspend,
313 .resume = i2c_device_resume,
314 .pm = &i2c_device_pm_ops,
316 EXPORT_SYMBOL_GPL(i2c_bus_type);
318 static struct device_type i2c_client_type = {
319 .groups = i2c_dev_attr_groups,
320 .uevent = i2c_device_uevent,
321 .release = i2c_client_dev_release,
326 * i2c_verify_client - return parameter as i2c_client, or NULL
327 * @dev: device, probably from some driver model iterator
329 * When traversing the driver model tree, perhaps using driver model
330 * iterators like @device_for_each_child(), you can't assume very much
331 * about the nodes you find. Use this function to avoid oopses caused
332 * by wrongly treating some non-I2C device as an i2c_client.
334 struct i2c_client *i2c_verify_client(struct device *dev)
336 return (dev->type == &i2c_client_type)
337 ? to_i2c_client(dev)
338 : NULL;
340 EXPORT_SYMBOL(i2c_verify_client);
344 * i2c_new_device - instantiate an i2c device
345 * @adap: the adapter managing the device
346 * @info: describes one I2C device; bus_num is ignored
347 * Context: can sleep
349 * Create an i2c device. Binding is handled through driver model
350 * probe()/remove() methods. A driver may be bound to this device when we
351 * return from this function, or any later moment (e.g. maybe hotplugging will
352 * load the driver module). This call is not appropriate for use by mainboard
353 * initialization logic, which usually runs during an arch_initcall() long
354 * before any i2c_adapter could exist.
356 * This returns the new i2c client, which may be saved for later use with
357 * i2c_unregister_device(); or NULL to indicate an error.
359 struct i2c_client *
360 i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
362 struct i2c_client *client;
363 int status;
365 client = kzalloc(sizeof *client, GFP_KERNEL);
366 if (!client)
367 return NULL;
369 client->adapter = adap;
371 client->dev.platform_data = info->platform_data;
373 if (info->archdata)
374 client->dev.archdata = *info->archdata;
376 client->flags = info->flags;
377 client->addr = info->addr;
378 client->irq = info->irq;
380 strlcpy(client->name, info->type, sizeof(client->name));
382 /* Check for address business */
383 status = i2c_check_addr(adap, client->addr);
384 if (status)
385 goto out_err;
387 client->dev.parent = &client->adapter->dev;
388 client->dev.bus = &i2c_bus_type;
389 client->dev.type = &i2c_client_type;
391 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
392 client->addr);
393 status = device_register(&client->dev);
394 if (status)
395 goto out_err;
397 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
398 client->name, dev_name(&client->dev));
400 return client;
402 out_err:
403 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
404 "(%d)\n", client->name, client->addr, status);
405 kfree(client);
406 return NULL;
408 EXPORT_SYMBOL_GPL(i2c_new_device);
412 * i2c_unregister_device - reverse effect of i2c_new_device()
413 * @client: value returned from i2c_new_device()
414 * Context: can sleep
416 void i2c_unregister_device(struct i2c_client *client)
418 device_unregister(&client->dev);
420 EXPORT_SYMBOL_GPL(i2c_unregister_device);
423 static const struct i2c_device_id dummy_id[] = {
424 { "dummy", 0 },
425 { },
428 static int dummy_probe(struct i2c_client *client,
429 const struct i2c_device_id *id)
431 return 0;
434 static int dummy_remove(struct i2c_client *client)
436 return 0;
439 static struct i2c_driver dummy_driver = {
440 .driver.name = "dummy",
441 .probe = dummy_probe,
442 .remove = dummy_remove,
443 .id_table = dummy_id,
447 * i2c_new_dummy - return a new i2c device bound to a dummy driver
448 * @adapter: the adapter managing the device
449 * @address: seven bit address to be used
450 * Context: can sleep
452 * This returns an I2C client bound to the "dummy" driver, intended for use
453 * with devices that consume multiple addresses. Examples of such chips
454 * include various EEPROMS (like 24c04 and 24c08 models).
456 * These dummy devices have two main uses. First, most I2C and SMBus calls
457 * except i2c_transfer() need a client handle; the dummy will be that handle.
458 * And second, this prevents the specified address from being bound to a
459 * different driver.
461 * This returns the new i2c client, which should be saved for later use with
462 * i2c_unregister_device(); or NULL to indicate an error.
464 struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
466 struct i2c_board_info info = {
467 I2C_BOARD_INFO("dummy", address),
470 return i2c_new_device(adapter, &info);
472 EXPORT_SYMBOL_GPL(i2c_new_dummy);
474 /* ------------------------------------------------------------------------- */
476 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
478 static void i2c_adapter_dev_release(struct device *dev)
480 struct i2c_adapter *adap = to_i2c_adapter(dev);
481 complete(&adap->dev_released);
485 * Let users instantiate I2C devices through sysfs. This can be used when
486 * platform initialization code doesn't contain the proper data for
487 * whatever reason. Also useful for drivers that do device detection and
488 * detection fails, either because the device uses an unexpected address,
489 * or this is a compatible device with different ID register values.
491 * Parameter checking may look overzealous, but we really don't want
492 * the user to provide incorrect parameters.
494 static ssize_t
495 i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
496 const char *buf, size_t count)
498 struct i2c_adapter *adap = to_i2c_adapter(dev);
499 struct i2c_board_info info;
500 struct i2c_client *client;
501 char *blank, end;
502 int res;
504 dev_warn(dev, "The new_device interface is still experimental "
505 "and may change in a near future\n");
506 memset(&info, 0, sizeof(struct i2c_board_info));
508 blank = strchr(buf, ' ');
509 if (!blank) {
510 dev_err(dev, "%s: Missing parameters\n", "new_device");
511 return -EINVAL;
513 if (blank - buf > I2C_NAME_SIZE - 1) {
514 dev_err(dev, "%s: Invalid device name\n", "new_device");
515 return -EINVAL;
517 memcpy(info.type, buf, blank - buf);
519 /* Parse remaining parameters, reject extra parameters */
520 res = sscanf(++blank, "%hi%c", &info.addr, &end);
521 if (res < 1) {
522 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
523 return -EINVAL;
525 if (res > 1 && end != '\n') {
526 dev_err(dev, "%s: Extra parameters\n", "new_device");
527 return -EINVAL;
530 if (info.addr < 0x03 || info.addr > 0x77) {
531 dev_err(dev, "%s: Invalid I2C address 0x%hx\n", "new_device",
532 info.addr);
533 return -EINVAL;
536 client = i2c_new_device(adap, &info);
537 if (!client)
538 return -EEXIST;
540 /* Keep track of the added device */
541 mutex_lock(&core_lock);
542 list_add_tail(&client->detected, &userspace_devices);
543 mutex_unlock(&core_lock);
544 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
545 info.type, info.addr);
547 return count;
551 * And of course let the users delete the devices they instantiated, if
552 * they got it wrong. This interface can only be used to delete devices
553 * instantiated by i2c_sysfs_new_device above. This guarantees that we
554 * don't delete devices to which some kernel code still has references.
556 * Parameter checking may look overzealous, but we really don't want
557 * the user to delete the wrong device.
559 static ssize_t
560 i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
561 const char *buf, size_t count)
563 struct i2c_adapter *adap = to_i2c_adapter(dev);
564 struct i2c_client *client, *next;
565 unsigned short addr;
566 char end;
567 int res;
569 /* Parse parameters, reject extra parameters */
570 res = sscanf(buf, "%hi%c", &addr, &end);
571 if (res < 1) {
572 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
573 return -EINVAL;
575 if (res > 1 && end != '\n') {
576 dev_err(dev, "%s: Extra parameters\n", "delete_device");
577 return -EINVAL;
580 /* Make sure the device was added through sysfs */
581 res = -ENOENT;
582 mutex_lock(&core_lock);
583 list_for_each_entry_safe(client, next, &userspace_devices, detected) {
584 if (client->addr == addr && client->adapter == adap) {
585 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
586 "delete_device", client->name, client->addr);
588 list_del(&client->detected);
589 i2c_unregister_device(client);
590 res = count;
591 break;
594 mutex_unlock(&core_lock);
596 if (res < 0)
597 dev_err(dev, "%s: Can't find device in list\n",
598 "delete_device");
599 return res;
602 static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
603 static DEVICE_ATTR(delete_device, S_IWUSR, NULL, i2c_sysfs_delete_device);
605 static struct attribute *i2c_adapter_attrs[] = {
606 &dev_attr_name.attr,
607 &dev_attr_new_device.attr,
608 &dev_attr_delete_device.attr,
609 NULL
612 static struct attribute_group i2c_adapter_attr_group = {
613 .attrs = i2c_adapter_attrs,
616 static const struct attribute_group *i2c_adapter_attr_groups[] = {
617 &i2c_adapter_attr_group,
618 NULL
621 static struct device_type i2c_adapter_type = {
622 .groups = i2c_adapter_attr_groups,
623 .release = i2c_adapter_dev_release,
626 #ifdef CONFIG_I2C_COMPAT
627 static struct class_compat *i2c_adapter_compat_class;
628 #endif
630 static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
632 struct i2c_devinfo *devinfo;
634 down_read(&__i2c_board_lock);
635 list_for_each_entry(devinfo, &__i2c_board_list, list) {
636 if (devinfo->busnum == adapter->nr
637 && !i2c_new_device(adapter,
638 &devinfo->board_info))
639 dev_err(&adapter->dev,
640 "Can't create device at 0x%02x\n",
641 devinfo->board_info.addr);
643 up_read(&__i2c_board_lock);
646 static int i2c_do_add_adapter(struct i2c_driver *driver,
647 struct i2c_adapter *adap)
649 /* Detect supported devices on that bus, and instantiate them */
650 i2c_detect(adap, driver);
652 /* Let legacy drivers scan this bus for matching devices */
653 if (driver->attach_adapter) {
654 /* We ignore the return code; if it fails, too bad */
655 driver->attach_adapter(adap);
657 return 0;
660 static int __process_new_adapter(struct device_driver *d, void *data)
662 return i2c_do_add_adapter(to_i2c_driver(d), data);
665 static int i2c_register_adapter(struct i2c_adapter *adap)
667 int res = 0, dummy;
669 /* Can't register until after driver model init */
670 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
671 res = -EAGAIN;
672 goto out_list;
675 rt_mutex_init(&adap->bus_lock);
677 /* Set default timeout to 1 second if not already set */
678 if (adap->timeout == 0)
679 adap->timeout = HZ;
681 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
682 adap->dev.bus = &i2c_bus_type;
683 adap->dev.type = &i2c_adapter_type;
684 res = device_register(&adap->dev);
685 if (res)
686 goto out_list;
688 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
690 #ifdef CONFIG_I2C_COMPAT
691 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
692 adap->dev.parent);
693 if (res)
694 dev_warn(&adap->dev,
695 "Failed to create compatibility class link\n");
696 #endif
698 /* create pre-declared device nodes */
699 if (adap->nr < __i2c_first_dynamic_bus_num)
700 i2c_scan_static_board_info(adap);
702 /* Notify drivers */
703 mutex_lock(&core_lock);
704 dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap,
705 __process_new_adapter);
706 mutex_unlock(&core_lock);
708 return 0;
710 out_list:
711 mutex_lock(&core_lock);
712 idr_remove(&i2c_adapter_idr, adap->nr);
713 mutex_unlock(&core_lock);
714 return res;
718 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
719 * @adapter: the adapter to add
720 * Context: can sleep
722 * This routine is used to declare an I2C adapter when its bus number
723 * doesn't matter. Examples: for I2C adapters dynamically added by
724 * USB links or PCI plugin cards.
726 * When this returns zero, a new bus number was allocated and stored
727 * in adap->nr, and the specified adapter became available for clients.
728 * Otherwise, a negative errno value is returned.
730 int i2c_add_adapter(struct i2c_adapter *adapter)
732 int id, res = 0;
734 retry:
735 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
736 return -ENOMEM;
738 mutex_lock(&core_lock);
739 /* "above" here means "above or equal to", sigh */
740 res = idr_get_new_above(&i2c_adapter_idr, adapter,
741 __i2c_first_dynamic_bus_num, &id);
742 mutex_unlock(&core_lock);
744 if (res < 0) {
745 if (res == -EAGAIN)
746 goto retry;
747 return res;
750 adapter->nr = id;
751 return i2c_register_adapter(adapter);
753 EXPORT_SYMBOL(i2c_add_adapter);
756 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
757 * @adap: the adapter to register (with adap->nr initialized)
758 * Context: can sleep
760 * This routine is used to declare an I2C adapter when its bus number
761 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
762 * or otherwise built in to the system's mainboard, and where i2c_board_info
763 * is used to properly configure I2C devices.
765 * If no devices have pre-been declared for this bus, then be sure to
766 * register the adapter before any dynamically allocated ones. Otherwise
767 * the required bus ID may not be available.
769 * When this returns zero, the specified adapter became available for
770 * clients using the bus number provided in adap->nr. Also, the table
771 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
772 * and the appropriate driver model device nodes are created. Otherwise, a
773 * negative errno value is returned.
775 int i2c_add_numbered_adapter(struct i2c_adapter *adap)
777 int id;
778 int status;
780 if (adap->nr & ~MAX_ID_MASK)
781 return -EINVAL;
783 retry:
784 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
785 return -ENOMEM;
787 mutex_lock(&core_lock);
788 /* "above" here means "above or equal to", sigh;
789 * we need the "equal to" result to force the result
791 status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
792 if (status == 0 && id != adap->nr) {
793 status = -EBUSY;
794 idr_remove(&i2c_adapter_idr, id);
796 mutex_unlock(&core_lock);
797 if (status == -EAGAIN)
798 goto retry;
800 if (status == 0)
801 status = i2c_register_adapter(adap);
802 return status;
804 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
806 static int i2c_do_del_adapter(struct i2c_driver *driver,
807 struct i2c_adapter *adapter)
809 struct i2c_client *client, *_n;
810 int res;
812 /* Remove the devices we created ourselves as the result of hardware
813 * probing (using a driver's detect method) */
814 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
815 if (client->adapter == adapter) {
816 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
817 client->name, client->addr);
818 list_del(&client->detected);
819 i2c_unregister_device(client);
823 if (!driver->detach_adapter)
824 return 0;
825 res = driver->detach_adapter(adapter);
826 if (res)
827 dev_err(&adapter->dev, "detach_adapter failed (%d) "
828 "for driver [%s]\n", res, driver->driver.name);
829 return res;
832 static int __unregister_client(struct device *dev, void *dummy)
834 struct i2c_client *client = i2c_verify_client(dev);
835 if (client)
836 i2c_unregister_device(client);
837 return 0;
840 static int __process_removed_adapter(struct device_driver *d, void *data)
842 return i2c_do_del_adapter(to_i2c_driver(d), data);
846 * i2c_del_adapter - unregister I2C adapter
847 * @adap: the adapter being unregistered
848 * Context: can sleep
850 * This unregisters an I2C adapter which was previously registered
851 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
853 int i2c_del_adapter(struct i2c_adapter *adap)
855 int res = 0;
856 struct i2c_adapter *found;
857 struct i2c_client *client, *next;
859 /* First make sure that this adapter was ever added */
860 mutex_lock(&core_lock);
861 found = idr_find(&i2c_adapter_idr, adap->nr);
862 mutex_unlock(&core_lock);
863 if (found != adap) {
864 pr_debug("i2c-core: attempting to delete unregistered "
865 "adapter [%s]\n", adap->name);
866 return -EINVAL;
869 /* Tell drivers about this removal */
870 mutex_lock(&core_lock);
871 res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
872 __process_removed_adapter);
873 mutex_unlock(&core_lock);
874 if (res)
875 return res;
877 /* Remove devices instantiated from sysfs */
878 list_for_each_entry_safe(client, next, &userspace_devices, detected) {
879 if (client->adapter == adap) {
880 dev_dbg(&adap->dev, "Removing %s at 0x%x\n",
881 client->name, client->addr);
882 list_del(&client->detected);
883 i2c_unregister_device(client);
887 /* Detach any active clients. This can't fail, thus we do not
888 checking the returned value. */
889 res = device_for_each_child(&adap->dev, NULL, __unregister_client);
891 #ifdef CONFIG_I2C_COMPAT
892 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
893 adap->dev.parent);
894 #endif
896 /* device name is gone after device_unregister */
897 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
899 /* clean up the sysfs representation */
900 init_completion(&adap->dev_released);
901 device_unregister(&adap->dev);
903 /* wait for sysfs to drop all references */
904 wait_for_completion(&adap->dev_released);
906 /* free bus id */
907 mutex_lock(&core_lock);
908 idr_remove(&i2c_adapter_idr, adap->nr);
909 mutex_unlock(&core_lock);
911 /* Clear the device structure in case this adapter is ever going to be
912 added again */
913 memset(&adap->dev, 0, sizeof(adap->dev));
915 return 0;
917 EXPORT_SYMBOL(i2c_del_adapter);
920 /* ------------------------------------------------------------------------- */
922 static int __process_new_driver(struct device *dev, void *data)
924 if (dev->type != &i2c_adapter_type)
925 return 0;
926 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
930 * An i2c_driver is used with one or more i2c_client (device) nodes to access
931 * i2c slave chips, on a bus instance associated with some i2c_adapter.
934 int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
936 int res;
938 /* Can't register until after driver model init */
939 if (unlikely(WARN_ON(!i2c_bus_type.p)))
940 return -EAGAIN;
942 /* add the driver to the list of i2c drivers in the driver core */
943 driver->driver.owner = owner;
944 driver->driver.bus = &i2c_bus_type;
946 /* When registration returns, the driver core
947 * will have called probe() for all matching-but-unbound devices.
949 res = driver_register(&driver->driver);
950 if (res)
951 return res;
953 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
955 INIT_LIST_HEAD(&driver->clients);
956 /* Walk the adapters that are already present */
957 mutex_lock(&core_lock);
958 bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_new_driver);
959 mutex_unlock(&core_lock);
961 return 0;
963 EXPORT_SYMBOL(i2c_register_driver);
965 static int __process_removed_driver(struct device *dev, void *data)
967 if (dev->type != &i2c_adapter_type)
968 return 0;
969 return i2c_do_del_adapter(data, to_i2c_adapter(dev));
973 * i2c_del_driver - unregister I2C driver
974 * @driver: the driver being unregistered
975 * Context: can sleep
977 void i2c_del_driver(struct i2c_driver *driver)
979 mutex_lock(&core_lock);
980 bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_removed_driver);
981 mutex_unlock(&core_lock);
983 driver_unregister(&driver->driver);
984 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
986 EXPORT_SYMBOL(i2c_del_driver);
988 /* ------------------------------------------------------------------------- */
990 static int __i2c_check_addr(struct device *dev, void *addrp)
992 struct i2c_client *client = i2c_verify_client(dev);
993 int addr = *(int *)addrp;
995 if (client && client->addr == addr)
996 return -EBUSY;
997 return 0;
1000 static int i2c_check_addr(struct i2c_adapter *adapter, int addr)
1002 return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr);
1006 * i2c_use_client - increments the reference count of the i2c client structure
1007 * @client: the client being referenced
1009 * Each live reference to a client should be refcounted. The driver model does
1010 * that automatically as part of driver binding, so that most drivers don't
1011 * need to do this explicitly: they hold a reference until they're unbound
1012 * from the device.
1014 * A pointer to the client with the incremented reference counter is returned.
1016 struct i2c_client *i2c_use_client(struct i2c_client *client)
1018 if (client && get_device(&client->dev))
1019 return client;
1020 return NULL;
1022 EXPORT_SYMBOL(i2c_use_client);
1025 * i2c_release_client - release a use of the i2c client structure
1026 * @client: the client being no longer referenced
1028 * Must be called when a user of a client is finished with it.
1030 void i2c_release_client(struct i2c_client *client)
1032 if (client)
1033 put_device(&client->dev);
1035 EXPORT_SYMBOL(i2c_release_client);
1037 struct i2c_cmd_arg {
1038 unsigned cmd;
1039 void *arg;
1042 static int i2c_cmd(struct device *dev, void *_arg)
1044 struct i2c_client *client = i2c_verify_client(dev);
1045 struct i2c_cmd_arg *arg = _arg;
1047 if (client && client->driver && client->driver->command)
1048 client->driver->command(client, arg->cmd, arg->arg);
1049 return 0;
1052 void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1054 struct i2c_cmd_arg cmd_arg;
1056 cmd_arg.cmd = cmd;
1057 cmd_arg.arg = arg;
1058 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
1060 EXPORT_SYMBOL(i2c_clients_command);
1062 static int __init i2c_init(void)
1064 int retval;
1066 retval = bus_register(&i2c_bus_type);
1067 if (retval)
1068 return retval;
1069 #ifdef CONFIG_I2C_COMPAT
1070 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1071 if (!i2c_adapter_compat_class) {
1072 retval = -ENOMEM;
1073 goto bus_err;
1075 #endif
1076 retval = i2c_add_driver(&dummy_driver);
1077 if (retval)
1078 goto class_err;
1079 return 0;
1081 class_err:
1082 #ifdef CONFIG_I2C_COMPAT
1083 class_compat_unregister(i2c_adapter_compat_class);
1084 bus_err:
1085 #endif
1086 bus_unregister(&i2c_bus_type);
1087 return retval;
1090 static void __exit i2c_exit(void)
1092 i2c_del_driver(&dummy_driver);
1093 #ifdef CONFIG_I2C_COMPAT
1094 class_compat_unregister(i2c_adapter_compat_class);
1095 #endif
1096 bus_unregister(&i2c_bus_type);
1099 /* We must initialize early, because some subsystems register i2c drivers
1100 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1102 postcore_initcall(i2c_init);
1103 module_exit(i2c_exit);
1105 /* ----------------------------------------------------
1106 * the functional interface to the i2c busses.
1107 * ----------------------------------------------------
1111 * i2c_transfer - execute a single or combined I2C message
1112 * @adap: Handle to I2C bus
1113 * @msgs: One or more messages to execute before STOP is issued to
1114 * terminate the operation; each message begins with a START.
1115 * @num: Number of messages to be executed.
1117 * Returns negative errno, else the number of messages executed.
1119 * Note that there is no requirement that each message be sent to
1120 * the same slave address, although that is the most common model.
1122 int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1124 unsigned long orig_jiffies;
1125 int ret, try;
1127 /* REVISIT the fault reporting model here is weak:
1129 * - When we get an error after receiving N bytes from a slave,
1130 * there is no way to report "N".
1132 * - When we get a NAK after transmitting N bytes to a slave,
1133 * there is no way to report "N" ... or to let the master
1134 * continue executing the rest of this combined message, if
1135 * that's the appropriate response.
1137 * - When for example "num" is two and we successfully complete
1138 * the first message but get an error part way through the
1139 * second, it's unclear whether that should be reported as
1140 * one (discarding status on the second message) or errno
1141 * (discarding status on the first one).
1144 if (adap->algo->master_xfer) {
1145 #ifdef DEBUG
1146 for (ret = 0; ret < num; ret++) {
1147 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
1148 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1149 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1150 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
1152 #endif
1154 if (in_atomic() || irqs_disabled()) {
1155 ret = rt_mutex_trylock(&adap->bus_lock);
1156 if (!ret)
1157 /* I2C activity is ongoing. */
1158 return -EAGAIN;
1159 } else {
1160 rt_mutex_lock(&adap->bus_lock);
1163 /* Retry automatically on arbitration loss */
1164 orig_jiffies = jiffies;
1165 for (ret = 0, try = 0; try <= adap->retries; try++) {
1166 ret = adap->algo->master_xfer(adap, msgs, num);
1167 if (ret != -EAGAIN)
1168 break;
1169 if (time_after(jiffies, orig_jiffies + adap->timeout))
1170 break;
1172 rt_mutex_unlock(&adap->bus_lock);
1174 return ret;
1175 } else {
1176 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
1177 return -EOPNOTSUPP;
1180 EXPORT_SYMBOL(i2c_transfer);
1183 * i2c_master_send - issue a single I2C message in master transmit mode
1184 * @client: Handle to slave device
1185 * @buf: Data that will be written to the slave
1186 * @count: How many bytes to write, must be less than 64k since msg.len is u16
1188 * Returns negative errno, or else the number of bytes written.
1190 int i2c_master_send(struct i2c_client *client,const char *buf ,int count)
1192 int ret;
1193 struct i2c_adapter *adap=client->adapter;
1194 struct i2c_msg msg;
1196 msg.addr = client->addr;
1197 msg.flags = client->flags & I2C_M_TEN;
1198 msg.len = count;
1199 msg.buf = (char *)buf;
1201 ret = i2c_transfer(adap, &msg, 1);
1203 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1204 transmitted, else error code. */
1205 return (ret == 1) ? count : ret;
1207 EXPORT_SYMBOL(i2c_master_send);
1210 * i2c_master_recv - issue a single I2C message in master receive mode
1211 * @client: Handle to slave device
1212 * @buf: Where to store data read from slave
1213 * @count: How many bytes to read, must be less than 64k since msg.len is u16
1215 * Returns negative errno, or else the number of bytes read.
1217 int i2c_master_recv(struct i2c_client *client, char *buf ,int count)
1219 struct i2c_adapter *adap=client->adapter;
1220 struct i2c_msg msg;
1221 int ret;
1223 msg.addr = client->addr;
1224 msg.flags = client->flags & I2C_M_TEN;
1225 msg.flags |= I2C_M_RD;
1226 msg.len = count;
1227 msg.buf = buf;
1229 ret = i2c_transfer(adap, &msg, 1);
1231 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1232 transmitted, else error code. */
1233 return (ret == 1) ? count : ret;
1235 EXPORT_SYMBOL(i2c_master_recv);
1237 /* ----------------------------------------------------
1238 * the i2c address scanning function
1239 * Will not work for 10-bit addresses!
1240 * ----------------------------------------------------
1243 static int i2c_detect_address(struct i2c_client *temp_client,
1244 struct i2c_driver *driver)
1246 struct i2c_board_info info;
1247 struct i2c_adapter *adapter = temp_client->adapter;
1248 int addr = temp_client->addr;
1249 int err;
1251 /* Make sure the address is valid */
1252 if (addr < 0x03 || addr > 0x77) {
1253 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1254 addr);
1255 return -EINVAL;
1258 /* Skip if already in use */
1259 if (i2c_check_addr(adapter, addr))
1260 return 0;
1262 /* Make sure there is something at this address */
1263 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0, I2C_SMBUS_QUICK, NULL) < 0)
1264 return 0;
1266 /* Prevent 24RF08 corruption */
1267 if ((addr & ~0x0f) == 0x50)
1268 i2c_smbus_xfer(adapter, addr, 0, 0, 0, I2C_SMBUS_QUICK, NULL);
1270 /* Finally call the custom detection function */
1271 memset(&info, 0, sizeof(struct i2c_board_info));
1272 info.addr = addr;
1273 err = driver->detect(temp_client, &info);
1274 if (err) {
1275 /* -ENODEV is returned if the detection fails. We catch it
1276 here as this isn't an error. */
1277 return err == -ENODEV ? 0 : err;
1280 /* Consistency check */
1281 if (info.type[0] == '\0') {
1282 dev_err(&adapter->dev, "%s detection function provided "
1283 "no name for 0x%x\n", driver->driver.name,
1284 addr);
1285 } else {
1286 struct i2c_client *client;
1288 /* Detection succeeded, instantiate the device */
1289 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1290 info.type, info.addr);
1291 client = i2c_new_device(adapter, &info);
1292 if (client)
1293 list_add_tail(&client->detected, &driver->clients);
1294 else
1295 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1296 info.type, info.addr);
1298 return 0;
1301 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1303 const unsigned short *address_list;
1304 struct i2c_client *temp_client;
1305 int i, err = 0;
1306 int adap_id = i2c_adapter_id(adapter);
1308 address_list = driver->address_list;
1309 if (!driver->detect || !address_list)
1310 return 0;
1312 /* Set up a temporary client to help detect callback */
1313 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1314 if (!temp_client)
1315 return -ENOMEM;
1316 temp_client->adapter = adapter;
1318 /* Stop here if the classes do not match */
1319 if (!(adapter->class & driver->class))
1320 goto exit_free;
1322 /* Stop here if we can't use SMBUS_QUICK */
1323 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1324 if (address_list[0] == I2C_CLIENT_END)
1325 goto exit_free;
1327 dev_warn(&adapter->dev, "SMBus Quick command not supported, "
1328 "can't probe for chips\n");
1329 err = -EOPNOTSUPP;
1330 goto exit_free;
1333 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
1334 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1335 "addr 0x%02x\n", adap_id, address_list[i]);
1336 temp_client->addr = address_list[i];
1337 err = i2c_detect_address(temp_client, driver);
1338 if (err)
1339 goto exit_free;
1342 exit_free:
1343 kfree(temp_client);
1344 return err;
1347 struct i2c_client *
1348 i2c_new_probed_device(struct i2c_adapter *adap,
1349 struct i2c_board_info *info,
1350 unsigned short const *addr_list)
1352 int i;
1354 /* Stop here if the bus doesn't support probing */
1355 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) {
1356 dev_err(&adap->dev, "Probing not supported\n");
1357 return NULL;
1360 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1361 /* Check address validity */
1362 if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
1363 dev_warn(&adap->dev, "Invalid 7-bit address "
1364 "0x%02x\n", addr_list[i]);
1365 continue;
1368 /* Check address availability */
1369 if (i2c_check_addr(adap, addr_list[i])) {
1370 dev_dbg(&adap->dev, "Address 0x%02x already in "
1371 "use, not probing\n", addr_list[i]);
1372 continue;
1375 /* Test address responsiveness
1376 The default probe method is a quick write, but it is known
1377 to corrupt the 24RF08 EEPROMs due to a state machine bug,
1378 and could also irreversibly write-protect some EEPROMs, so
1379 for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte
1380 read instead. Also, some bus drivers don't implement
1381 quick write, so we fallback to a byte read it that case
1382 too. */
1383 if ((addr_list[i] & ~0x07) == 0x30
1384 || (addr_list[i] & ~0x0f) == 0x50
1385 || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) {
1386 union i2c_smbus_data data;
1388 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1389 I2C_SMBUS_READ, 0,
1390 I2C_SMBUS_BYTE, &data) >= 0)
1391 break;
1392 } else {
1393 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1394 I2C_SMBUS_WRITE, 0,
1395 I2C_SMBUS_QUICK, NULL) >= 0)
1396 break;
1400 if (addr_list[i] == I2C_CLIENT_END) {
1401 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1402 return NULL;
1405 info->addr = addr_list[i];
1406 return i2c_new_device(adap, info);
1408 EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1410 struct i2c_adapter* i2c_get_adapter(int id)
1412 struct i2c_adapter *adapter;
1414 mutex_lock(&core_lock);
1415 adapter = idr_find(&i2c_adapter_idr, id);
1416 if (adapter && !try_module_get(adapter->owner))
1417 adapter = NULL;
1419 mutex_unlock(&core_lock);
1420 return adapter;
1422 EXPORT_SYMBOL(i2c_get_adapter);
1424 void i2c_put_adapter(struct i2c_adapter *adap)
1426 module_put(adap->owner);
1428 EXPORT_SYMBOL(i2c_put_adapter);
1430 /* The SMBus parts */
1432 #define POLY (0x1070U << 3)
1433 static u8 crc8(u16 data)
1435 int i;
1437 for(i = 0; i < 8; i++) {
1438 if (data & 0x8000)
1439 data = data ^ POLY;
1440 data = data << 1;
1442 return (u8)(data >> 8);
1445 /* Incremental CRC8 over count bytes in the array pointed to by p */
1446 static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
1448 int i;
1450 for(i = 0; i < count; i++)
1451 crc = crc8((crc ^ p[i]) << 8);
1452 return crc;
1455 /* Assume a 7-bit address, which is reasonable for SMBus */
1456 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
1458 /* The address will be sent first */
1459 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1460 pec = i2c_smbus_pec(pec, &addr, 1);
1462 /* The data buffer follows */
1463 return i2c_smbus_pec(pec, msg->buf, msg->len);
1466 /* Used for write only transactions */
1467 static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
1469 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1470 msg->len++;
1473 /* Return <0 on CRC error
1474 If there was a write before this read (most cases) we need to take the
1475 partial CRC from the write part into account.
1476 Note that this function does modify the message (we need to decrease the
1477 message length to hide the CRC byte from the caller). */
1478 static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
1480 u8 rpec = msg->buf[--msg->len];
1481 cpec = i2c_smbus_msg_pec(cpec, msg);
1483 if (rpec != cpec) {
1484 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1485 rpec, cpec);
1486 return -EBADMSG;
1488 return 0;
1492 * i2c_smbus_read_byte - SMBus "receive byte" protocol
1493 * @client: Handle to slave device
1495 * This executes the SMBus "receive byte" protocol, returning negative errno
1496 * else the byte received from the device.
1498 s32 i2c_smbus_read_byte(struct i2c_client *client)
1500 union i2c_smbus_data data;
1501 int status;
1503 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1504 I2C_SMBUS_READ, 0,
1505 I2C_SMBUS_BYTE, &data);
1506 return (status < 0) ? status : data.byte;
1508 EXPORT_SYMBOL(i2c_smbus_read_byte);
1511 * i2c_smbus_write_byte - SMBus "send byte" protocol
1512 * @client: Handle to slave device
1513 * @value: Byte to be sent
1515 * This executes the SMBus "send byte" protocol, returning negative errno
1516 * else zero on success.
1518 s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1520 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1521 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
1523 EXPORT_SYMBOL(i2c_smbus_write_byte);
1526 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1527 * @client: Handle to slave device
1528 * @command: Byte interpreted by slave
1530 * This executes the SMBus "read byte" protocol, returning negative errno
1531 * else a data byte received from the device.
1533 s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1535 union i2c_smbus_data data;
1536 int status;
1538 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1539 I2C_SMBUS_READ, command,
1540 I2C_SMBUS_BYTE_DATA, &data);
1541 return (status < 0) ? status : data.byte;
1543 EXPORT_SYMBOL(i2c_smbus_read_byte_data);
1546 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1547 * @client: Handle to slave device
1548 * @command: Byte interpreted by slave
1549 * @value: Byte being written
1551 * This executes the SMBus "write byte" protocol, returning negative errno
1552 * else zero on success.
1554 s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1556 union i2c_smbus_data data;
1557 data.byte = value;
1558 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1559 I2C_SMBUS_WRITE,command,
1560 I2C_SMBUS_BYTE_DATA,&data);
1562 EXPORT_SYMBOL(i2c_smbus_write_byte_data);
1565 * i2c_smbus_read_word_data - SMBus "read word" protocol
1566 * @client: Handle to slave device
1567 * @command: Byte interpreted by slave
1569 * This executes the SMBus "read word" protocol, returning negative errno
1570 * else a 16-bit unsigned "word" received from the device.
1572 s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1574 union i2c_smbus_data data;
1575 int status;
1577 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1578 I2C_SMBUS_READ, command,
1579 I2C_SMBUS_WORD_DATA, &data);
1580 return (status < 0) ? status : data.word;
1582 EXPORT_SYMBOL(i2c_smbus_read_word_data);
1585 * i2c_smbus_write_word_data - SMBus "write word" protocol
1586 * @client: Handle to slave device
1587 * @command: Byte interpreted by slave
1588 * @value: 16-bit "word" being written
1590 * This executes the SMBus "write word" protocol, returning negative errno
1591 * else zero on success.
1593 s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1595 union i2c_smbus_data data;
1596 data.word = value;
1597 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1598 I2C_SMBUS_WRITE,command,
1599 I2C_SMBUS_WORD_DATA,&data);
1601 EXPORT_SYMBOL(i2c_smbus_write_word_data);
1604 * i2c_smbus_process_call - SMBus "process call" protocol
1605 * @client: Handle to slave device
1606 * @command: Byte interpreted by slave
1607 * @value: 16-bit "word" being written
1609 * This executes the SMBus "process call" protocol, returning negative errno
1610 * else a 16-bit unsigned "word" received from the device.
1612 s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value)
1614 union i2c_smbus_data data;
1615 int status;
1616 data.word = value;
1618 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1619 I2C_SMBUS_WRITE, command,
1620 I2C_SMBUS_PROC_CALL, &data);
1621 return (status < 0) ? status : data.word;
1623 EXPORT_SYMBOL(i2c_smbus_process_call);
1626 * i2c_smbus_read_block_data - SMBus "block read" protocol
1627 * @client: Handle to slave device
1628 * @command: Byte interpreted by slave
1629 * @values: Byte array into which data will be read; big enough to hold
1630 * the data returned by the slave. SMBus allows at most 32 bytes.
1632 * This executes the SMBus "block read" protocol, returning negative errno
1633 * else the number of data bytes in the slave's response.
1635 * Note that using this function requires that the client's adapter support
1636 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
1637 * support this; its emulation through I2C messaging relies on a specific
1638 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1640 s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1641 u8 *values)
1643 union i2c_smbus_data data;
1644 int status;
1646 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1647 I2C_SMBUS_READ, command,
1648 I2C_SMBUS_BLOCK_DATA, &data);
1649 if (status)
1650 return status;
1652 memcpy(values, &data.block[1], data.block[0]);
1653 return data.block[0];
1655 EXPORT_SYMBOL(i2c_smbus_read_block_data);
1658 * i2c_smbus_write_block_data - SMBus "block write" protocol
1659 * @client: Handle to slave device
1660 * @command: Byte interpreted by slave
1661 * @length: Size of data block; SMBus allows at most 32 bytes
1662 * @values: Byte array which will be written.
1664 * This executes the SMBus "block write" protocol, returning negative errno
1665 * else zero on success.
1667 s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
1668 u8 length, const u8 *values)
1670 union i2c_smbus_data data;
1672 if (length > I2C_SMBUS_BLOCK_MAX)
1673 length = I2C_SMBUS_BLOCK_MAX;
1674 data.block[0] = length;
1675 memcpy(&data.block[1], values, length);
1676 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1677 I2C_SMBUS_WRITE,command,
1678 I2C_SMBUS_BLOCK_DATA,&data);
1680 EXPORT_SYMBOL(i2c_smbus_write_block_data);
1682 /* Returns the number of read bytes */
1683 s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1684 u8 length, u8 *values)
1686 union i2c_smbus_data data;
1687 int status;
1689 if (length > I2C_SMBUS_BLOCK_MAX)
1690 length = I2C_SMBUS_BLOCK_MAX;
1691 data.block[0] = length;
1692 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1693 I2C_SMBUS_READ, command,
1694 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1695 if (status < 0)
1696 return status;
1698 memcpy(values, &data.block[1], data.block[0]);
1699 return data.block[0];
1701 EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
1703 s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
1704 u8 length, const u8 *values)
1706 union i2c_smbus_data data;
1708 if (length > I2C_SMBUS_BLOCK_MAX)
1709 length = I2C_SMBUS_BLOCK_MAX;
1710 data.block[0] = length;
1711 memcpy(data.block + 1, values, length);
1712 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1713 I2C_SMBUS_WRITE, command,
1714 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1716 EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
1718 /* Simulate a SMBus command using the i2c protocol
1719 No checking of parameters is done! */
1720 static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr,
1721 unsigned short flags,
1722 char read_write, u8 command, int size,
1723 union i2c_smbus_data * data)
1725 /* So we need to generate a series of msgs. In the case of writing, we
1726 need to use only one message; when reading, we need two. We initialize
1727 most things with sane defaults, to keep the code below somewhat
1728 simpler. */
1729 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1730 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
1731 int num = read_write == I2C_SMBUS_READ?2:1;
1732 struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
1733 { addr, flags | I2C_M_RD, 0, msgbuf1 }
1735 int i;
1736 u8 partial_pec = 0;
1737 int status;
1739 msgbuf0[0] = command;
1740 switch(size) {
1741 case I2C_SMBUS_QUICK:
1742 msg[0].len = 0;
1743 /* Special case: The read/write field is used as data */
1744 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
1745 I2C_M_RD : 0);
1746 num = 1;
1747 break;
1748 case I2C_SMBUS_BYTE:
1749 if (read_write == I2C_SMBUS_READ) {
1750 /* Special case: only a read! */
1751 msg[0].flags = I2C_M_RD | flags;
1752 num = 1;
1754 break;
1755 case I2C_SMBUS_BYTE_DATA:
1756 if (read_write == I2C_SMBUS_READ)
1757 msg[1].len = 1;
1758 else {
1759 msg[0].len = 2;
1760 msgbuf0[1] = data->byte;
1762 break;
1763 case I2C_SMBUS_WORD_DATA:
1764 if (read_write == I2C_SMBUS_READ)
1765 msg[1].len = 2;
1766 else {
1767 msg[0].len=3;
1768 msgbuf0[1] = data->word & 0xff;
1769 msgbuf0[2] = data->word >> 8;
1771 break;
1772 case I2C_SMBUS_PROC_CALL:
1773 num = 2; /* Special case */
1774 read_write = I2C_SMBUS_READ;
1775 msg[0].len = 3;
1776 msg[1].len = 2;
1777 msgbuf0[1] = data->word & 0xff;
1778 msgbuf0[2] = data->word >> 8;
1779 break;
1780 case I2C_SMBUS_BLOCK_DATA:
1781 if (read_write == I2C_SMBUS_READ) {
1782 msg[1].flags |= I2C_M_RECV_LEN;
1783 msg[1].len = 1; /* block length will be added by
1784 the underlying bus driver */
1785 } else {
1786 msg[0].len = data->block[0] + 2;
1787 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
1788 dev_err(&adapter->dev,
1789 "Invalid block write size %d\n",
1790 data->block[0]);
1791 return -EINVAL;
1793 for (i = 1; i < msg[0].len; i++)
1794 msgbuf0[i] = data->block[i-1];
1796 break;
1797 case I2C_SMBUS_BLOCK_PROC_CALL:
1798 num = 2; /* Another special case */
1799 read_write = I2C_SMBUS_READ;
1800 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
1801 dev_err(&adapter->dev,
1802 "Invalid block write size %d\n",
1803 data->block[0]);
1804 return -EINVAL;
1806 msg[0].len = data->block[0] + 2;
1807 for (i = 1; i < msg[0].len; i++)
1808 msgbuf0[i] = data->block[i-1];
1809 msg[1].flags |= I2C_M_RECV_LEN;
1810 msg[1].len = 1; /* block length will be added by
1811 the underlying bus driver */
1812 break;
1813 case I2C_SMBUS_I2C_BLOCK_DATA:
1814 if (read_write == I2C_SMBUS_READ) {
1815 msg[1].len = data->block[0];
1816 } else {
1817 msg[0].len = data->block[0] + 1;
1818 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
1819 dev_err(&adapter->dev,
1820 "Invalid block write size %d\n",
1821 data->block[0]);
1822 return -EINVAL;
1824 for (i = 1; i <= data->block[0]; i++)
1825 msgbuf0[i] = data->block[i];
1827 break;
1828 default:
1829 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1830 return -EOPNOTSUPP;
1833 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1834 && size != I2C_SMBUS_I2C_BLOCK_DATA);
1835 if (i) {
1836 /* Compute PEC if first message is a write */
1837 if (!(msg[0].flags & I2C_M_RD)) {
1838 if (num == 1) /* Write only */
1839 i2c_smbus_add_pec(&msg[0]);
1840 else /* Write followed by read */
1841 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1843 /* Ask for PEC if last message is a read */
1844 if (msg[num-1].flags & I2C_M_RD)
1845 msg[num-1].len++;
1848 status = i2c_transfer(adapter, msg, num);
1849 if (status < 0)
1850 return status;
1852 /* Check PEC if last message is a read */
1853 if (i && (msg[num-1].flags & I2C_M_RD)) {
1854 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1855 if (status < 0)
1856 return status;
1859 if (read_write == I2C_SMBUS_READ)
1860 switch(size) {
1861 case I2C_SMBUS_BYTE:
1862 data->byte = msgbuf0[0];
1863 break;
1864 case I2C_SMBUS_BYTE_DATA:
1865 data->byte = msgbuf1[0];
1866 break;
1867 case I2C_SMBUS_WORD_DATA:
1868 case I2C_SMBUS_PROC_CALL:
1869 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1870 break;
1871 case I2C_SMBUS_I2C_BLOCK_DATA:
1872 for (i = 0; i < data->block[0]; i++)
1873 data->block[i+1] = msgbuf1[i];
1874 break;
1875 case I2C_SMBUS_BLOCK_DATA:
1876 case I2C_SMBUS_BLOCK_PROC_CALL:
1877 for (i = 0; i < msgbuf1[0] + 1; i++)
1878 data->block[i] = msgbuf1[i];
1879 break;
1881 return 0;
1885 * i2c_smbus_xfer - execute SMBus protocol operations
1886 * @adapter: Handle to I2C bus
1887 * @addr: Address of SMBus slave on that bus
1888 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
1889 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
1890 * @command: Byte interpreted by slave, for protocols which use such bytes
1891 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
1892 * @data: Data to be read or written
1894 * This executes an SMBus protocol operation, and returns a negative
1895 * errno code else zero on success.
1897 s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
1898 char read_write, u8 command, int protocol,
1899 union i2c_smbus_data *data)
1901 unsigned long orig_jiffies;
1902 int try;
1903 s32 res;
1905 flags &= I2C_M_TEN | I2C_CLIENT_PEC;
1907 if (adapter->algo->smbus_xfer) {
1908 rt_mutex_lock(&adapter->bus_lock);
1910 /* Retry automatically on arbitration loss */
1911 orig_jiffies = jiffies;
1912 for (res = 0, try = 0; try <= adapter->retries; try++) {
1913 res = adapter->algo->smbus_xfer(adapter, addr, flags,
1914 read_write, command,
1915 protocol, data);
1916 if (res != -EAGAIN)
1917 break;
1918 if (time_after(jiffies,
1919 orig_jiffies + adapter->timeout))
1920 break;
1922 rt_mutex_unlock(&adapter->bus_lock);
1923 } else
1924 res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write,
1925 command, protocol, data);
1927 return res;
1929 EXPORT_SYMBOL(i2c_smbus_xfer);
1931 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
1932 MODULE_DESCRIPTION("I2C-Bus main module");
1933 MODULE_LICENSE("GPL");