i2c: Get rid of the legacy binding model
[safe/jmp/linux-2.6] / drivers / i2c / i2c-core.c
1 /* i2c-core.c - a device driver for the iic-bus interface                    */
2 /* ------------------------------------------------------------------------- */
3 /*   Copyright (C) 1995-99 Simon G. Vogl
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
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 /* ------------------------------------------------------------------------- */
19
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> */
24
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>
37
38 #include "i2c-core.h"
39
40
41 static DEFINE_MUTEX(core_lock);
42 static DEFINE_IDR(i2c_adapter_idr);
43
44 #define is_newstyle_driver(d) ((d)->probe || (d)->remove || (d)->detect)
45
46 static int i2c_attach_client(struct i2c_client *client);
47 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
48
49 /* ------------------------------------------------------------------------- */
50
51 static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
52                                                 const struct i2c_client *client)
53 {
54         while (id->name[0]) {
55                 if (strcmp(client->name, id->name) == 0)
56                         return id;
57                 id++;
58         }
59         return NULL;
60 }
61
62 static int i2c_device_match(struct device *dev, struct device_driver *drv)
63 {
64         struct i2c_client       *client = to_i2c_client(dev);
65         struct i2c_driver       *driver = to_i2c_driver(drv);
66
67         /* make legacy i2c drivers bypass driver model probing entirely;
68          * such drivers scan each i2c adapter/bus themselves.
69          */
70         if (!is_newstyle_driver(driver))
71                 return 0;
72
73         /* match on an id table if there is one */
74         if (driver->id_table)
75                 return i2c_match_id(driver->id_table, client) != NULL;
76
77         return 0;
78 }
79
80 #ifdef  CONFIG_HOTPLUG
81
82 /* uevent helps with hotplug: modprobe -q $(MODALIAS) */
83 static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
84 {
85         struct i2c_client       *client = to_i2c_client(dev);
86
87         if (add_uevent_var(env, "MODALIAS=%s%s",
88                            I2C_MODULE_PREFIX, client->name))
89                 return -ENOMEM;
90         dev_dbg(dev, "uevent\n");
91         return 0;
92 }
93
94 #else
95 #define i2c_device_uevent       NULL
96 #endif  /* CONFIG_HOTPLUG */
97
98 static int i2c_device_probe(struct device *dev)
99 {
100         struct i2c_client       *client = to_i2c_client(dev);
101         struct i2c_driver       *driver = to_i2c_driver(dev->driver);
102         int status;
103
104         if (!driver->probe || !driver->id_table)
105                 return -ENODEV;
106         client->driver = driver;
107         if (!device_can_wakeup(&client->dev))
108                 device_init_wakeup(&client->dev,
109                                         client->flags & I2C_CLIENT_WAKE);
110         dev_dbg(dev, "probe\n");
111
112         status = driver->probe(client, i2c_match_id(driver->id_table, client));
113         if (status)
114                 client->driver = NULL;
115         return status;
116 }
117
118 static int i2c_device_remove(struct device *dev)
119 {
120         struct i2c_client       *client = to_i2c_client(dev);
121         struct i2c_driver       *driver;
122         int                     status;
123
124         if (!dev->driver)
125                 return 0;
126
127         driver = to_i2c_driver(dev->driver);
128         if (driver->remove) {
129                 dev_dbg(dev, "remove\n");
130                 status = driver->remove(client);
131         } else {
132                 dev->driver = NULL;
133                 status = 0;
134         }
135         if (status == 0)
136                 client->driver = NULL;
137         return status;
138 }
139
140 static void i2c_device_shutdown(struct device *dev)
141 {
142         struct i2c_driver *driver;
143
144         if (!dev->driver)
145                 return;
146         driver = to_i2c_driver(dev->driver);
147         if (driver->shutdown)
148                 driver->shutdown(to_i2c_client(dev));
149 }
150
151 static int i2c_device_suspend(struct device *dev, pm_message_t mesg)
152 {
153         struct i2c_driver *driver;
154
155         if (!dev->driver)
156                 return 0;
157         driver = to_i2c_driver(dev->driver);
158         if (!driver->suspend)
159                 return 0;
160         return driver->suspend(to_i2c_client(dev), mesg);
161 }
162
163 static int i2c_device_resume(struct device *dev)
164 {
165         struct i2c_driver *driver;
166
167         if (!dev->driver)
168                 return 0;
169         driver = to_i2c_driver(dev->driver);
170         if (!driver->resume)
171                 return 0;
172         return driver->resume(to_i2c_client(dev));
173 }
174
175 static void i2c_client_release(struct device *dev)
176 {
177         struct i2c_client *client = to_i2c_client(dev);
178         complete(&client->released);
179 }
180
181 static void i2c_client_dev_release(struct device *dev)
182 {
183         kfree(to_i2c_client(dev));
184 }
185
186 static ssize_t
187 show_client_name(struct device *dev, struct device_attribute *attr, char *buf)
188 {
189         struct i2c_client *client = to_i2c_client(dev);
190         return sprintf(buf, "%s\n", client->name);
191 }
192
193 static ssize_t
194 show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
195 {
196         struct i2c_client *client = to_i2c_client(dev);
197         return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
198 }
199
200 static struct device_attribute i2c_dev_attrs[] = {
201         __ATTR(name, S_IRUGO, show_client_name, NULL),
202         /* modalias helps coldplug:  modprobe $(cat .../modalias) */
203         __ATTR(modalias, S_IRUGO, show_modalias, NULL),
204         { },
205 };
206
207 struct bus_type i2c_bus_type = {
208         .name           = "i2c",
209         .dev_attrs      = i2c_dev_attrs,
210         .match          = i2c_device_match,
211         .uevent         = i2c_device_uevent,
212         .probe          = i2c_device_probe,
213         .remove         = i2c_device_remove,
214         .shutdown       = i2c_device_shutdown,
215         .suspend        = i2c_device_suspend,
216         .resume         = i2c_device_resume,
217 };
218 EXPORT_SYMBOL_GPL(i2c_bus_type);
219
220
221 /**
222  * i2c_verify_client - return parameter as i2c_client, or NULL
223  * @dev: device, probably from some driver model iterator
224  *
225  * When traversing the driver model tree, perhaps using driver model
226  * iterators like @device_for_each_child(), you can't assume very much
227  * about the nodes you find.  Use this function to avoid oopses caused
228  * by wrongly treating some non-I2C device as an i2c_client.
229  */
230 struct i2c_client *i2c_verify_client(struct device *dev)
231 {
232         return (dev->bus == &i2c_bus_type)
233                         ? to_i2c_client(dev)
234                         : NULL;
235 }
236 EXPORT_SYMBOL(i2c_verify_client);
237
238
239 /**
240  * i2c_new_device - instantiate an i2c device for use with a new style driver
241  * @adap: the adapter managing the device
242  * @info: describes one I2C device; bus_num is ignored
243  * Context: can sleep
244  *
245  * Create a device to work with a new style i2c driver, where binding is
246  * handled through driver model probe()/remove() methods.  This call is not
247  * appropriate for use by mainboad initialization logic, which usually runs
248  * during an arch_initcall() long before any i2c_adapter could exist.
249  *
250  * This returns the new i2c client, which may be saved for later use with
251  * i2c_unregister_device(); or NULL to indicate an error.
252  */
253 struct i2c_client *
254 i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
255 {
256         struct i2c_client       *client;
257         int                     status;
258
259         client = kzalloc(sizeof *client, GFP_KERNEL);
260         if (!client)
261                 return NULL;
262
263         client->adapter = adap;
264
265         client->dev.platform_data = info->platform_data;
266
267         if (info->archdata)
268                 client->dev.archdata = *info->archdata;
269
270         client->flags = info->flags;
271         client->addr = info->addr;
272         client->irq = info->irq;
273
274         strlcpy(client->name, info->type, sizeof(client->name));
275
276         /* a new style driver may be bound to this device when we
277          * return from this function, or any later moment (e.g. maybe
278          * hotplugging will load the driver module).  and the device
279          * refcount model is the standard driver model one.
280          */
281         status = i2c_attach_client(client);
282         if (status < 0) {
283                 kfree(client);
284                 client = NULL;
285         }
286         return client;
287 }
288 EXPORT_SYMBOL_GPL(i2c_new_device);
289
290
291 /**
292  * i2c_unregister_device - reverse effect of i2c_new_device()
293  * @client: value returned from i2c_new_device()
294  * Context: can sleep
295  */
296 void i2c_unregister_device(struct i2c_client *client)
297 {
298         struct i2c_adapter      *adapter = client->adapter;
299         struct i2c_driver       *driver = client->driver;
300
301         if (driver && !is_newstyle_driver(driver)) {
302                 dev_err(&client->dev, "can't unregister devices "
303                         "with legacy drivers\n");
304                 WARN_ON(1);
305                 return;
306         }
307
308         mutex_lock(&adapter->clist_lock);
309         list_del(&client->list);
310         mutex_unlock(&adapter->clist_lock);
311
312         device_unregister(&client->dev);
313 }
314 EXPORT_SYMBOL_GPL(i2c_unregister_device);
315
316
317 static const struct i2c_device_id dummy_id[] = {
318         { "dummy", 0 },
319         { },
320 };
321
322 static int dummy_probe(struct i2c_client *client,
323                        const struct i2c_device_id *id)
324 {
325         return 0;
326 }
327
328 static int dummy_remove(struct i2c_client *client)
329 {
330         return 0;
331 }
332
333 static struct i2c_driver dummy_driver = {
334         .driver.name    = "dummy",
335         .probe          = dummy_probe,
336         .remove         = dummy_remove,
337         .id_table       = dummy_id,
338 };
339
340 /**
341  * i2c_new_dummy - return a new i2c device bound to a dummy driver
342  * @adapter: the adapter managing the device
343  * @address: seven bit address to be used
344  * Context: can sleep
345  *
346  * This returns an I2C client bound to the "dummy" driver, intended for use
347  * with devices that consume multiple addresses.  Examples of such chips
348  * include various EEPROMS (like 24c04 and 24c08 models).
349  *
350  * These dummy devices have two main uses.  First, most I2C and SMBus calls
351  * except i2c_transfer() need a client handle; the dummy will be that handle.
352  * And second, this prevents the specified address from being bound to a
353  * different driver.
354  *
355  * This returns the new i2c client, which should be saved for later use with
356  * i2c_unregister_device(); or NULL to indicate an error.
357  */
358 struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
359 {
360         struct i2c_board_info info = {
361                 I2C_BOARD_INFO("dummy", address),
362         };
363
364         return i2c_new_device(adapter, &info);
365 }
366 EXPORT_SYMBOL_GPL(i2c_new_dummy);
367
368 /* ------------------------------------------------------------------------- */
369
370 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
371
372 static void i2c_adapter_dev_release(struct device *dev)
373 {
374         struct i2c_adapter *adap = to_i2c_adapter(dev);
375         complete(&adap->dev_released);
376 }
377
378 static ssize_t
379 show_adapter_name(struct device *dev, struct device_attribute *attr, char *buf)
380 {
381         struct i2c_adapter *adap = to_i2c_adapter(dev);
382         return sprintf(buf, "%s\n", adap->name);
383 }
384
385 static struct device_attribute i2c_adapter_attrs[] = {
386         __ATTR(name, S_IRUGO, show_adapter_name, NULL),
387         { },
388 };
389
390 static struct class i2c_adapter_class = {
391         .owner                  = THIS_MODULE,
392         .name                   = "i2c-adapter",
393         .dev_attrs              = i2c_adapter_attrs,
394 };
395
396 static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
397 {
398         struct i2c_devinfo      *devinfo;
399
400         mutex_lock(&__i2c_board_lock);
401         list_for_each_entry(devinfo, &__i2c_board_list, list) {
402                 if (devinfo->busnum == adapter->nr
403                                 && !i2c_new_device(adapter,
404                                                 &devinfo->board_info))
405                         dev_err(&adapter->dev,
406                                 "Can't create device at 0x%02x\n",
407                                 devinfo->board_info.addr);
408         }
409         mutex_unlock(&__i2c_board_lock);
410 }
411
412 static int i2c_do_add_adapter(struct device_driver *d, void *data)
413 {
414         struct i2c_driver *driver = to_i2c_driver(d);
415         struct i2c_adapter *adap = data;
416
417         /* Detect supported devices on that bus, and instantiate them */
418         i2c_detect(adap, driver);
419
420         /* Let legacy drivers scan this bus for matching devices */
421         if (driver->attach_adapter) {
422                 /* We ignore the return code; if it fails, too bad */
423                 driver->attach_adapter(adap);
424         }
425         return 0;
426 }
427
428 static int i2c_register_adapter(struct i2c_adapter *adap)
429 {
430         int res = 0, dummy;
431
432         /* Can't register until after driver model init */
433         if (unlikely(WARN_ON(!i2c_bus_type.p)))
434                 return -EAGAIN;
435
436         mutex_init(&adap->bus_lock);
437         mutex_init(&adap->clist_lock);
438         INIT_LIST_HEAD(&adap->clients);
439
440         mutex_lock(&core_lock);
441
442         /* Set default timeout to 1 second if not already set */
443         if (adap->timeout == 0)
444                 adap->timeout = HZ;
445
446         dev_set_name(&adap->dev, "i2c-%d", adap->nr);
447         adap->dev.release = &i2c_adapter_dev_release;
448         adap->dev.class = &i2c_adapter_class;
449         res = device_register(&adap->dev);
450         if (res)
451                 goto out_list;
452
453         dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
454
455         /* create pre-declared device nodes */
456         if (adap->nr < __i2c_first_dynamic_bus_num)
457                 i2c_scan_static_board_info(adap);
458
459         /* Notify drivers */
460         dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap,
461                                  i2c_do_add_adapter);
462
463 out_unlock:
464         mutex_unlock(&core_lock);
465         return res;
466
467 out_list:
468         idr_remove(&i2c_adapter_idr, adap->nr);
469         goto out_unlock;
470 }
471
472 /**
473  * i2c_add_adapter - declare i2c adapter, use dynamic bus number
474  * @adapter: the adapter to add
475  * Context: can sleep
476  *
477  * This routine is used to declare an I2C adapter when its bus number
478  * doesn't matter.  Examples: for I2C adapters dynamically added by
479  * USB links or PCI plugin cards.
480  *
481  * When this returns zero, a new bus number was allocated and stored
482  * in adap->nr, and the specified adapter became available for clients.
483  * Otherwise, a negative errno value is returned.
484  */
485 int i2c_add_adapter(struct i2c_adapter *adapter)
486 {
487         int     id, res = 0;
488
489 retry:
490         if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
491                 return -ENOMEM;
492
493         mutex_lock(&core_lock);
494         /* "above" here means "above or equal to", sigh */
495         res = idr_get_new_above(&i2c_adapter_idr, adapter,
496                                 __i2c_first_dynamic_bus_num, &id);
497         mutex_unlock(&core_lock);
498
499         if (res < 0) {
500                 if (res == -EAGAIN)
501                         goto retry;
502                 return res;
503         }
504
505         adapter->nr = id;
506         return i2c_register_adapter(adapter);
507 }
508 EXPORT_SYMBOL(i2c_add_adapter);
509
510 /**
511  * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
512  * @adap: the adapter to register (with adap->nr initialized)
513  * Context: can sleep
514  *
515  * This routine is used to declare an I2C adapter when its bus number
516  * matters.  For example, use it for I2C adapters from system-on-chip CPUs,
517  * or otherwise built in to the system's mainboard, and where i2c_board_info
518  * is used to properly configure I2C devices.
519  *
520  * If no devices have pre-been declared for this bus, then be sure to
521  * register the adapter before any dynamically allocated ones.  Otherwise
522  * the required bus ID may not be available.
523  *
524  * When this returns zero, the specified adapter became available for
525  * clients using the bus number provided in adap->nr.  Also, the table
526  * of I2C devices pre-declared using i2c_register_board_info() is scanned,
527  * and the appropriate driver model device nodes are created.  Otherwise, a
528  * negative errno value is returned.
529  */
530 int i2c_add_numbered_adapter(struct i2c_adapter *adap)
531 {
532         int     id;
533         int     status;
534
535         if (adap->nr & ~MAX_ID_MASK)
536                 return -EINVAL;
537
538 retry:
539         if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
540                 return -ENOMEM;
541
542         mutex_lock(&core_lock);
543         /* "above" here means "above or equal to", sigh;
544          * we need the "equal to" result to force the result
545          */
546         status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
547         if (status == 0 && id != adap->nr) {
548                 status = -EBUSY;
549                 idr_remove(&i2c_adapter_idr, id);
550         }
551         mutex_unlock(&core_lock);
552         if (status == -EAGAIN)
553                 goto retry;
554
555         if (status == 0)
556                 status = i2c_register_adapter(adap);
557         return status;
558 }
559 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
560
561 static int i2c_do_del_adapter(struct device_driver *d, void *data)
562 {
563         struct i2c_driver *driver = to_i2c_driver(d);
564         struct i2c_adapter *adapter = data;
565         struct i2c_client *client, *_n;
566         int res;
567
568         /* Remove the devices we created ourselves as the result of hardware
569          * probing (using a driver's detect method) */
570         list_for_each_entry_safe(client, _n, &driver->clients, detected) {
571                 if (client->adapter == adapter) {
572                         dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
573                                 client->name, client->addr);
574                         list_del(&client->detected);
575                         i2c_unregister_device(client);
576                 }
577         }
578
579         if (!driver->detach_adapter)
580                 return 0;
581         res = driver->detach_adapter(adapter);
582         if (res)
583                 dev_err(&adapter->dev, "detach_adapter failed (%d) "
584                         "for driver [%s]\n", res, driver->driver.name);
585         return res;
586 }
587
588 /**
589  * i2c_del_adapter - unregister I2C adapter
590  * @adap: the adapter being unregistered
591  * Context: can sleep
592  *
593  * This unregisters an I2C adapter which was previously registered
594  * by @i2c_add_adapter or @i2c_add_numbered_adapter.
595  */
596 int i2c_del_adapter(struct i2c_adapter *adap)
597 {
598         struct i2c_client *client, *_n;
599         int res = 0;
600
601         mutex_lock(&core_lock);
602
603         /* First make sure that this adapter was ever added */
604         if (idr_find(&i2c_adapter_idr, adap->nr) != adap) {
605                 pr_debug("i2c-core: attempting to delete unregistered "
606                          "adapter [%s]\n", adap->name);
607                 res = -EINVAL;
608                 goto out_unlock;
609         }
610
611         /* Tell drivers about this removal */
612         res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
613                                i2c_do_del_adapter);
614         if (res)
615                 goto out_unlock;
616
617         /* Detach any active clients */
618         list_for_each_entry_safe_reverse(client, _n, &adap->clients, list) {
619                 i2c_unregister_device(client);
620         }
621
622         /* clean up the sysfs representation */
623         init_completion(&adap->dev_released);
624         device_unregister(&adap->dev);
625
626         /* wait for sysfs to drop all references */
627         wait_for_completion(&adap->dev_released);
628
629         /* free bus id */
630         idr_remove(&i2c_adapter_idr, adap->nr);
631
632         dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
633
634         /* Clear the device structure in case this adapter is ever going to be
635            added again */
636         memset(&adap->dev, 0, sizeof(adap->dev));
637
638  out_unlock:
639         mutex_unlock(&core_lock);
640         return res;
641 }
642 EXPORT_SYMBOL(i2c_del_adapter);
643
644
645 /* ------------------------------------------------------------------------- */
646
647 static int __attach_adapter(struct device *dev, void *data)
648 {
649         struct i2c_adapter *adapter = to_i2c_adapter(dev);
650         struct i2c_driver *driver = data;
651
652         i2c_detect(adapter, driver);
653
654         /* Legacy drivers scan i2c busses directly */
655         if (driver->attach_adapter)
656                 driver->attach_adapter(adapter);
657
658         return 0;
659 }
660
661 /*
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.
664  */
665
666 int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
667 {
668         int res;
669
670         /* Can't register until after driver model init */
671         if (unlikely(WARN_ON(!i2c_bus_type.p)))
672                 return -EAGAIN;
673
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;
677
678         /* When registration returns, the driver core
679          * will have called probe() for all matching-but-unbound devices.
680          */
681         res = driver_register(&driver->driver);
682         if (res)
683                 return res;
684
685         mutex_lock(&core_lock);
686
687         pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
688
689         INIT_LIST_HEAD(&driver->clients);
690         /* Walk the adapters that are already present */
691         class_for_each_device(&i2c_adapter_class, NULL, driver,
692                               __attach_adapter);
693
694         mutex_unlock(&core_lock);
695         return 0;
696 }
697 EXPORT_SYMBOL(i2c_register_driver);
698
699 static int __detach_adapter(struct device *dev, void *data)
700 {
701         struct i2c_adapter *adapter = to_i2c_adapter(dev);
702         struct i2c_driver *driver = data;
703         struct i2c_client *client, *_n;
704
705         /* Remove the devices we created ourselves as the result of hardware
706          * probing (using a driver's detect method) */
707         list_for_each_entry_safe(client, _n, &driver->clients, detected) {
708                 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
709                         client->name, client->addr);
710                 list_del(&client->detected);
711                 i2c_unregister_device(client);
712         }
713
714         if (is_newstyle_driver(driver))
715                 return 0;
716
717         if (driver->detach_adapter) {
718                 if (driver->detach_adapter(adapter))
719                         dev_err(&adapter->dev,
720                                 "detach_adapter failed for driver [%s]\n",
721                                 driver->driver.name);
722         }
723
724         return 0;
725 }
726
727 /**
728  * i2c_del_driver - unregister I2C driver
729  * @driver: the driver being unregistered
730  * Context: can sleep
731  */
732 void i2c_del_driver(struct i2c_driver *driver)
733 {
734         mutex_lock(&core_lock);
735
736         class_for_each_device(&i2c_adapter_class, NULL, driver,
737                               __detach_adapter);
738
739         driver_unregister(&driver->driver);
740         pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
741
742         mutex_unlock(&core_lock);
743 }
744 EXPORT_SYMBOL(i2c_del_driver);
745
746 /* ------------------------------------------------------------------------- */
747
748 static int __i2c_check_addr(struct device *dev, void *addrp)
749 {
750         struct i2c_client       *client = i2c_verify_client(dev);
751         int                     addr = *(int *)addrp;
752
753         if (client && client->addr == addr)
754                 return -EBUSY;
755         return 0;
756 }
757
758 static int i2c_check_addr(struct i2c_adapter *adapter, int addr)
759 {
760         return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr);
761 }
762
763 static int i2c_attach_client(struct i2c_client *client)
764 {
765         struct i2c_adapter *adapter = client->adapter;
766         int res;
767
768         /* Check for address business */
769         res = i2c_check_addr(adapter, client->addr);
770         if (res)
771                 return res;
772
773         client->dev.parent = &client->adapter->dev;
774         client->dev.bus = &i2c_bus_type;
775
776         if (client->driver)
777                 client->dev.driver = &client->driver->driver;
778
779         if (client->driver && !is_newstyle_driver(client->driver)) {
780                 client->dev.release = i2c_client_release;
781                 dev_set_uevent_suppress(&client->dev, 1);
782         } else
783                 client->dev.release = i2c_client_dev_release;
784
785         dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adapter),
786                      client->addr);
787         res = device_register(&client->dev);
788         if (res)
789                 goto out_err;
790
791         mutex_lock(&adapter->clist_lock);
792         list_add_tail(&client->list, &adapter->clients);
793         mutex_unlock(&adapter->clist_lock);
794
795         dev_dbg(&adapter->dev, "client [%s] registered with bus id %s\n",
796                 client->name, dev_name(&client->dev));
797
798         return 0;
799
800 out_err:
801         dev_err(&adapter->dev, "Failed to attach i2c client %s at 0x%02x "
802                 "(%d)\n", client->name, client->addr, res);
803         return res;
804 }
805
806 /**
807  * i2c_use_client - increments the reference count of the i2c client structure
808  * @client: the client being referenced
809  *
810  * Each live reference to a client should be refcounted. The driver model does
811  * that automatically as part of driver binding, so that most drivers don't
812  * need to do this explicitly: they hold a reference until they're unbound
813  * from the device.
814  *
815  * A pointer to the client with the incremented reference counter is returned.
816  */
817 struct i2c_client *i2c_use_client(struct i2c_client *client)
818 {
819         if (client && get_device(&client->dev))
820                 return client;
821         return NULL;
822 }
823 EXPORT_SYMBOL(i2c_use_client);
824
825 /**
826  * i2c_release_client - release a use of the i2c client structure
827  * @client: the client being no longer referenced
828  *
829  * Must be called when a user of a client is finished with it.
830  */
831 void i2c_release_client(struct i2c_client *client)
832 {
833         if (client)
834                 put_device(&client->dev);
835 }
836 EXPORT_SYMBOL(i2c_release_client);
837
838 struct i2c_cmd_arg {
839         unsigned        cmd;
840         void            *arg;
841 };
842
843 static int i2c_cmd(struct device *dev, void *_arg)
844 {
845         struct i2c_client       *client = i2c_verify_client(dev);
846         struct i2c_cmd_arg      *arg = _arg;
847
848         if (client && client->driver && client->driver->command)
849                 client->driver->command(client, arg->cmd, arg->arg);
850         return 0;
851 }
852
853 void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
854 {
855         struct i2c_cmd_arg      cmd_arg;
856
857         cmd_arg.cmd = cmd;
858         cmd_arg.arg = arg;
859         device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
860 }
861 EXPORT_SYMBOL(i2c_clients_command);
862
863 static int __init i2c_init(void)
864 {
865         int retval;
866
867         retval = bus_register(&i2c_bus_type);
868         if (retval)
869                 return retval;
870         retval = class_register(&i2c_adapter_class);
871         if (retval)
872                 goto bus_err;
873         retval = i2c_add_driver(&dummy_driver);
874         if (retval)
875                 goto class_err;
876         return 0;
877
878 class_err:
879         class_unregister(&i2c_adapter_class);
880 bus_err:
881         bus_unregister(&i2c_bus_type);
882         return retval;
883 }
884
885 static void __exit i2c_exit(void)
886 {
887         i2c_del_driver(&dummy_driver);
888         class_unregister(&i2c_adapter_class);
889         bus_unregister(&i2c_bus_type);
890 }
891
892 /* We must initialize early, because some subsystems register i2c drivers
893  * in subsys_initcall() code, but are linked (and initialized) before i2c.
894  */
895 postcore_initcall(i2c_init);
896 module_exit(i2c_exit);
897
898 /* ----------------------------------------------------
899  * the functional interface to the i2c busses.
900  * ----------------------------------------------------
901  */
902
903 /**
904  * i2c_transfer - execute a single or combined I2C message
905  * @adap: Handle to I2C bus
906  * @msgs: One or more messages to execute before STOP is issued to
907  *      terminate the operation; each message begins with a START.
908  * @num: Number of messages to be executed.
909  *
910  * Returns negative errno, else the number of messages executed.
911  *
912  * Note that there is no requirement that each message be sent to
913  * the same slave address, although that is the most common model.
914  */
915 int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
916 {
917         unsigned long orig_jiffies;
918         int ret, try;
919
920         /* REVISIT the fault reporting model here is weak:
921          *
922          *  - When we get an error after receiving N bytes from a slave,
923          *    there is no way to report "N".
924          *
925          *  - When we get a NAK after transmitting N bytes to a slave,
926          *    there is no way to report "N" ... or to let the master
927          *    continue executing the rest of this combined message, if
928          *    that's the appropriate response.
929          *
930          *  - When for example "num" is two and we successfully complete
931          *    the first message but get an error part way through the
932          *    second, it's unclear whether that should be reported as
933          *    one (discarding status on the second message) or errno
934          *    (discarding status on the first one).
935          */
936
937         if (adap->algo->master_xfer) {
938 #ifdef DEBUG
939                 for (ret = 0; ret < num; ret++) {
940                         dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
941                                 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
942                                 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
943                                 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
944                 }
945 #endif
946
947                 if (in_atomic() || irqs_disabled()) {
948                         ret = mutex_trylock(&adap->bus_lock);
949                         if (!ret)
950                                 /* I2C activity is ongoing. */
951                                 return -EAGAIN;
952                 } else {
953                         mutex_lock_nested(&adap->bus_lock, adap->level);
954                 }
955
956                 /* Retry automatically on arbitration loss */
957                 orig_jiffies = jiffies;
958                 for (ret = 0, try = 0; try <= adap->retries; try++) {
959                         ret = adap->algo->master_xfer(adap, msgs, num);
960                         if (ret != -EAGAIN)
961                                 break;
962                         if (time_after(jiffies, orig_jiffies + adap->timeout))
963                                 break;
964                 }
965                 mutex_unlock(&adap->bus_lock);
966
967                 return ret;
968         } else {
969                 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
970                 return -EOPNOTSUPP;
971         }
972 }
973 EXPORT_SYMBOL(i2c_transfer);
974
975 /**
976  * i2c_master_send - issue a single I2C message in master transmit mode
977  * @client: Handle to slave device
978  * @buf: Data that will be written to the slave
979  * @count: How many bytes to write
980  *
981  * Returns negative errno, or else the number of bytes written.
982  */
983 int i2c_master_send(struct i2c_client *client,const char *buf ,int count)
984 {
985         int ret;
986         struct i2c_adapter *adap=client->adapter;
987         struct i2c_msg msg;
988
989         msg.addr = client->addr;
990         msg.flags = client->flags & I2C_M_TEN;
991         msg.len = count;
992         msg.buf = (char *)buf;
993
994         ret = i2c_transfer(adap, &msg, 1);
995
996         /* If everything went ok (i.e. 1 msg transmitted), return #bytes
997            transmitted, else error code. */
998         return (ret == 1) ? count : ret;
999 }
1000 EXPORT_SYMBOL(i2c_master_send);
1001
1002 /**
1003  * i2c_master_recv - issue a single I2C message in master receive mode
1004  * @client: Handle to slave device
1005  * @buf: Where to store data read from slave
1006  * @count: How many bytes to read
1007  *
1008  * Returns negative errno, or else the number of bytes read.
1009  */
1010 int i2c_master_recv(struct i2c_client *client, char *buf ,int count)
1011 {
1012         struct i2c_adapter *adap=client->adapter;
1013         struct i2c_msg msg;
1014         int ret;
1015
1016         msg.addr = client->addr;
1017         msg.flags = client->flags & I2C_M_TEN;
1018         msg.flags |= I2C_M_RD;
1019         msg.len = count;
1020         msg.buf = buf;
1021
1022         ret = i2c_transfer(adap, &msg, 1);
1023
1024         /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1025            transmitted, else error code. */
1026         return (ret == 1) ? count : ret;
1027 }
1028 EXPORT_SYMBOL(i2c_master_recv);
1029
1030 /* ----------------------------------------------------
1031  * the i2c address scanning function
1032  * Will not work for 10-bit addresses!
1033  * ----------------------------------------------------
1034  */
1035 static int i2c_probe_address(struct i2c_adapter *adapter, int addr, int kind,
1036                              int (*found_proc) (struct i2c_adapter *, int, int))
1037 {
1038         int err;
1039
1040         /* Make sure the address is valid */
1041         if (addr < 0x03 || addr > 0x77) {
1042                 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1043                          addr);
1044                 return -EINVAL;
1045         }
1046
1047         /* Skip if already in use */
1048         if (i2c_check_addr(adapter, addr))
1049                 return 0;
1050
1051         /* Make sure there is something at this address, unless forced */
1052         if (kind < 0) {
1053                 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1054                                    I2C_SMBUS_QUICK, NULL) < 0)
1055                         return 0;
1056
1057                 /* prevent 24RF08 corruption */
1058                 if ((addr & ~0x0f) == 0x50)
1059                         i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1060                                        I2C_SMBUS_QUICK, NULL);
1061         }
1062
1063         /* Finally call the custom detection function */
1064         err = found_proc(adapter, addr, kind);
1065         /* -ENODEV can be returned if there is a chip at the given address
1066            but it isn't supported by this chip driver. We catch it here as
1067            this isn't an error. */
1068         if (err == -ENODEV)
1069                 err = 0;
1070
1071         if (err)
1072                 dev_warn(&adapter->dev, "Client creation failed at 0x%x (%d)\n",
1073                          addr, err);
1074         return err;
1075 }
1076
1077 int i2c_probe(struct i2c_adapter *adapter,
1078               const struct i2c_client_address_data *address_data,
1079               int (*found_proc) (struct i2c_adapter *, int, int))
1080 {
1081         int i, err;
1082         int adap_id = i2c_adapter_id(adapter);
1083
1084         /* Force entries are done first, and are not affected by ignore
1085            entries */
1086         if (address_data->forces) {
1087                 const unsigned short * const *forces = address_data->forces;
1088                 int kind;
1089
1090                 for (kind = 0; forces[kind]; kind++) {
1091                         for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1092                              i += 2) {
1093                                 if (forces[kind][i] == adap_id
1094                                  || forces[kind][i] == ANY_I2C_BUS) {
1095                                         dev_dbg(&adapter->dev, "found force "
1096                                                 "parameter for adapter %d, "
1097                                                 "addr 0x%02x, kind %d\n",
1098                                                 adap_id, forces[kind][i + 1],
1099                                                 kind);
1100                                         err = i2c_probe_address(adapter,
1101                                                 forces[kind][i + 1],
1102                                                 kind, found_proc);
1103                                         if (err)
1104                                                 return err;
1105                                 }
1106                         }
1107                 }
1108         }
1109
1110         /* Stop here if we can't use SMBUS_QUICK */
1111         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1112                 if (address_data->probe[0] == I2C_CLIENT_END
1113                  && address_data->normal_i2c[0] == I2C_CLIENT_END)
1114                         return 0;
1115
1116                 dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
1117                         "can't probe for chips\n");
1118                 return -EOPNOTSUPP;
1119         }
1120
1121         /* Probe entries are done second, and are not affected by ignore
1122            entries either */
1123         for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1124                 if (address_data->probe[i] == adap_id
1125                  || address_data->probe[i] == ANY_I2C_BUS) {
1126                         dev_dbg(&adapter->dev, "found probe parameter for "
1127                                 "adapter %d, addr 0x%02x\n", adap_id,
1128                                 address_data->probe[i + 1]);
1129                         err = i2c_probe_address(adapter,
1130                                                 address_data->probe[i + 1],
1131                                                 -1, found_proc);
1132                         if (err)
1133                                 return err;
1134                 }
1135         }
1136
1137         /* Normal entries are done last, unless shadowed by an ignore entry */
1138         for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1139                 int j, ignore;
1140
1141                 ignore = 0;
1142                 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1143                      j += 2) {
1144                         if ((address_data->ignore[j] == adap_id ||
1145                              address_data->ignore[j] == ANY_I2C_BUS)
1146                          && address_data->ignore[j + 1]
1147                             == address_data->normal_i2c[i]) {
1148                                 dev_dbg(&adapter->dev, "found ignore "
1149                                         "parameter for adapter %d, "
1150                                         "addr 0x%02x\n", adap_id,
1151                                         address_data->ignore[j + 1]);
1152                                 ignore = 1;
1153                                 break;
1154                         }
1155                 }
1156                 if (ignore)
1157                         continue;
1158
1159                 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1160                         "addr 0x%02x\n", adap_id,
1161                         address_data->normal_i2c[i]);
1162                 err = i2c_probe_address(adapter, address_data->normal_i2c[i],
1163                                         -1, found_proc);
1164                 if (err)
1165                         return err;
1166         }
1167
1168         return 0;
1169 }
1170 EXPORT_SYMBOL(i2c_probe);
1171
1172 /* Separate detection function for new-style drivers */
1173 static int i2c_detect_address(struct i2c_client *temp_client, int kind,
1174                               struct i2c_driver *driver)
1175 {
1176         struct i2c_board_info info;
1177         struct i2c_adapter *adapter = temp_client->adapter;
1178         int addr = temp_client->addr;
1179         int err;
1180
1181         /* Make sure the address is valid */
1182         if (addr < 0x03 || addr > 0x77) {
1183                 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1184                          addr);
1185                 return -EINVAL;
1186         }
1187
1188         /* Skip if already in use */
1189         if (i2c_check_addr(adapter, addr))
1190                 return 0;
1191
1192         /* Make sure there is something at this address, unless forced */
1193         if (kind < 0) {
1194                 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1195                                    I2C_SMBUS_QUICK, NULL) < 0)
1196                         return 0;
1197
1198                 /* prevent 24RF08 corruption */
1199                 if ((addr & ~0x0f) == 0x50)
1200                         i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1201                                        I2C_SMBUS_QUICK, NULL);
1202         }
1203
1204         /* Finally call the custom detection function */
1205         memset(&info, 0, sizeof(struct i2c_board_info));
1206         info.addr = addr;
1207         err = driver->detect(temp_client, kind, &info);
1208         if (err) {
1209                 /* -ENODEV is returned if the detection fails. We catch it
1210                    here as this isn't an error. */
1211                 return err == -ENODEV ? 0 : err;
1212         }
1213
1214         /* Consistency check */
1215         if (info.type[0] == '\0') {
1216                 dev_err(&adapter->dev, "%s detection function provided "
1217                         "no name for 0x%x\n", driver->driver.name,
1218                         addr);
1219         } else {
1220                 struct i2c_client *client;
1221
1222                 /* Detection succeeded, instantiate the device */
1223                 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1224                         info.type, info.addr);
1225                 client = i2c_new_device(adapter, &info);
1226                 if (client)
1227                         list_add_tail(&client->detected, &driver->clients);
1228                 else
1229                         dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1230                                 info.type, info.addr);
1231         }
1232         return 0;
1233 }
1234
1235 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1236 {
1237         const struct i2c_client_address_data *address_data;
1238         struct i2c_client *temp_client;
1239         int i, err = 0;
1240         int adap_id = i2c_adapter_id(adapter);
1241
1242         address_data = driver->address_data;
1243         if (!driver->detect || !address_data)
1244                 return 0;
1245
1246         /* Set up a temporary client to help detect callback */
1247         temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1248         if (!temp_client)
1249                 return -ENOMEM;
1250         temp_client->adapter = adapter;
1251
1252         /* Force entries are done first, and are not affected by ignore
1253            entries */
1254         if (address_data->forces) {
1255                 const unsigned short * const *forces = address_data->forces;
1256                 int kind;
1257
1258                 for (kind = 0; forces[kind]; kind++) {
1259                         for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1260                              i += 2) {
1261                                 if (forces[kind][i] == adap_id
1262                                  || forces[kind][i] == ANY_I2C_BUS) {
1263                                         dev_dbg(&adapter->dev, "found force "
1264                                                 "parameter for adapter %d, "
1265                                                 "addr 0x%02x, kind %d\n",
1266                                                 adap_id, forces[kind][i + 1],
1267                                                 kind);
1268                                         temp_client->addr = forces[kind][i + 1];
1269                                         err = i2c_detect_address(temp_client,
1270                                                 kind, driver);
1271                                         if (err)
1272                                                 goto exit_free;
1273                                 }
1274                         }
1275                 }
1276         }
1277
1278         /* Stop here if the classes do not match */
1279         if (!(adapter->class & driver->class))
1280                 goto exit_free;
1281
1282         /* Stop here if we can't use SMBUS_QUICK */
1283         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1284                 if (address_data->probe[0] == I2C_CLIENT_END
1285                  && address_data->normal_i2c[0] == I2C_CLIENT_END)
1286                         goto exit_free;
1287
1288                 dev_warn(&adapter->dev, "SMBus Quick command not supported, "
1289                          "can't probe for chips\n");
1290                 err = -EOPNOTSUPP;
1291                 goto exit_free;
1292         }
1293
1294         /* Probe entries are done second, and are not affected by ignore
1295            entries either */
1296         for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1297                 if (address_data->probe[i] == adap_id
1298                  || address_data->probe[i] == ANY_I2C_BUS) {
1299                         dev_dbg(&adapter->dev, "found probe parameter for "
1300                                 "adapter %d, addr 0x%02x\n", adap_id,
1301                                 address_data->probe[i + 1]);
1302                         temp_client->addr = address_data->probe[i + 1];
1303                         err = i2c_detect_address(temp_client, -1, driver);
1304                         if (err)
1305                                 goto exit_free;
1306                 }
1307         }
1308
1309         /* Normal entries are done last, unless shadowed by an ignore entry */
1310         for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1311                 int j, ignore;
1312
1313                 ignore = 0;
1314                 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1315                      j += 2) {
1316                         if ((address_data->ignore[j] == adap_id ||
1317                              address_data->ignore[j] == ANY_I2C_BUS)
1318                          && address_data->ignore[j + 1]
1319                             == address_data->normal_i2c[i]) {
1320                                 dev_dbg(&adapter->dev, "found ignore "
1321                                         "parameter for adapter %d, "
1322                                         "addr 0x%02x\n", adap_id,
1323                                         address_data->ignore[j + 1]);
1324                                 ignore = 1;
1325                                 break;
1326                         }
1327                 }
1328                 if (ignore)
1329                         continue;
1330
1331                 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1332                         "addr 0x%02x\n", adap_id,
1333                         address_data->normal_i2c[i]);
1334                 temp_client->addr = address_data->normal_i2c[i];
1335                 err = i2c_detect_address(temp_client, -1, driver);
1336                 if (err)
1337                         goto exit_free;
1338         }
1339
1340  exit_free:
1341         kfree(temp_client);
1342         return err;
1343 }
1344
1345 struct i2c_client *
1346 i2c_new_probed_device(struct i2c_adapter *adap,
1347                       struct i2c_board_info *info,
1348                       unsigned short const *addr_list)
1349 {
1350         int i;
1351
1352         /* Stop here if the bus doesn't support probing */
1353         if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) {
1354                 dev_err(&adap->dev, "Probing not supported\n");
1355                 return NULL;
1356         }
1357
1358         for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1359                 /* Check address validity */
1360                 if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
1361                         dev_warn(&adap->dev, "Invalid 7-bit address "
1362                                  "0x%02x\n", addr_list[i]);
1363                         continue;
1364                 }
1365
1366                 /* Check address availability */
1367                 if (i2c_check_addr(adap, addr_list[i])) {
1368                         dev_dbg(&adap->dev, "Address 0x%02x already in "
1369                                 "use, not probing\n", addr_list[i]);
1370                         continue;
1371                 }
1372
1373                 /* Test address responsiveness
1374                    The default probe method is a quick write, but it is known
1375                    to corrupt the 24RF08 EEPROMs due to a state machine bug,
1376                    and could also irreversibly write-protect some EEPROMs, so
1377                    for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte
1378                    read instead. Also, some bus drivers don't implement
1379                    quick write, so we fallback to a byte read it that case
1380                    too. */
1381                 if ((addr_list[i] & ~0x07) == 0x30
1382                  || (addr_list[i] & ~0x0f) == 0x50
1383                  || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) {
1384                         union i2c_smbus_data data;
1385
1386                         if (i2c_smbus_xfer(adap, addr_list[i], 0,
1387                                            I2C_SMBUS_READ, 0,
1388                                            I2C_SMBUS_BYTE, &data) >= 0)
1389                                 break;
1390                 } else {
1391                         if (i2c_smbus_xfer(adap, addr_list[i], 0,
1392                                            I2C_SMBUS_WRITE, 0,
1393                                            I2C_SMBUS_QUICK, NULL) >= 0)
1394                                 break;
1395                 }
1396         }
1397
1398         if (addr_list[i] == I2C_CLIENT_END) {
1399                 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1400                 return NULL;
1401         }
1402
1403         info->addr = addr_list[i];
1404         return i2c_new_device(adap, info);
1405 }
1406 EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1407
1408 struct i2c_adapter* i2c_get_adapter(int id)
1409 {
1410         struct i2c_adapter *adapter;
1411
1412         mutex_lock(&core_lock);
1413         adapter = idr_find(&i2c_adapter_idr, id);
1414         if (adapter && !try_module_get(adapter->owner))
1415                 adapter = NULL;
1416
1417         mutex_unlock(&core_lock);
1418         return adapter;
1419 }
1420 EXPORT_SYMBOL(i2c_get_adapter);
1421
1422 void i2c_put_adapter(struct i2c_adapter *adap)
1423 {
1424         module_put(adap->owner);
1425 }
1426 EXPORT_SYMBOL(i2c_put_adapter);
1427
1428 /* The SMBus parts */
1429
1430 #define POLY    (0x1070U << 3)
1431 static u8 crc8(u16 data)
1432 {
1433         int i;
1434
1435         for(i = 0; i < 8; i++) {
1436                 if (data & 0x8000)
1437                         data = data ^ POLY;
1438                 data = data << 1;
1439         }
1440         return (u8)(data >> 8);
1441 }
1442
1443 /* Incremental CRC8 over count bytes in the array pointed to by p */
1444 static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
1445 {
1446         int i;
1447
1448         for(i = 0; i < count; i++)
1449                 crc = crc8((crc ^ p[i]) << 8);
1450         return crc;
1451 }
1452
1453 /* Assume a 7-bit address, which is reasonable for SMBus */
1454 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
1455 {
1456         /* The address will be sent first */
1457         u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1458         pec = i2c_smbus_pec(pec, &addr, 1);
1459
1460         /* The data buffer follows */
1461         return i2c_smbus_pec(pec, msg->buf, msg->len);
1462 }
1463
1464 /* Used for write only transactions */
1465 static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
1466 {
1467         msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1468         msg->len++;
1469 }
1470
1471 /* Return <0 on CRC error
1472    If there was a write before this read (most cases) we need to take the
1473    partial CRC from the write part into account.
1474    Note that this function does modify the message (we need to decrease the
1475    message length to hide the CRC byte from the caller). */
1476 static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
1477 {
1478         u8 rpec = msg->buf[--msg->len];
1479         cpec = i2c_smbus_msg_pec(cpec, msg);
1480
1481         if (rpec != cpec) {
1482                 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1483                         rpec, cpec);
1484                 return -EBADMSG;
1485         }
1486         return 0;
1487 }
1488
1489 /**
1490  * i2c_smbus_read_byte - SMBus "receive byte" protocol
1491  * @client: Handle to slave device
1492  *
1493  * This executes the SMBus "receive byte" protocol, returning negative errno
1494  * else the byte received from the device.
1495  */
1496 s32 i2c_smbus_read_byte(struct i2c_client *client)
1497 {
1498         union i2c_smbus_data data;
1499         int status;
1500
1501         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1502                                 I2C_SMBUS_READ, 0,
1503                                 I2C_SMBUS_BYTE, &data);
1504         return (status < 0) ? status : data.byte;
1505 }
1506 EXPORT_SYMBOL(i2c_smbus_read_byte);
1507
1508 /**
1509  * i2c_smbus_write_byte - SMBus "send byte" protocol
1510  * @client: Handle to slave device
1511  * @value: Byte to be sent
1512  *
1513  * This executes the SMBus "send byte" protocol, returning negative errno
1514  * else zero on success.
1515  */
1516 s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1517 {
1518         return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1519                               I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
1520 }
1521 EXPORT_SYMBOL(i2c_smbus_write_byte);
1522
1523 /**
1524  * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1525  * @client: Handle to slave device
1526  * @command: Byte interpreted by slave
1527  *
1528  * This executes the SMBus "read byte" protocol, returning negative errno
1529  * else a data byte received from the device.
1530  */
1531 s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1532 {
1533         union i2c_smbus_data data;
1534         int status;
1535
1536         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1537                                 I2C_SMBUS_READ, command,
1538                                 I2C_SMBUS_BYTE_DATA, &data);
1539         return (status < 0) ? status : data.byte;
1540 }
1541 EXPORT_SYMBOL(i2c_smbus_read_byte_data);
1542
1543 /**
1544  * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1545  * @client: Handle to slave device
1546  * @command: Byte interpreted by slave
1547  * @value: Byte being written
1548  *
1549  * This executes the SMBus "write byte" protocol, returning negative errno
1550  * else zero on success.
1551  */
1552 s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1553 {
1554         union i2c_smbus_data data;
1555         data.byte = value;
1556         return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1557                               I2C_SMBUS_WRITE,command,
1558                               I2C_SMBUS_BYTE_DATA,&data);
1559 }
1560 EXPORT_SYMBOL(i2c_smbus_write_byte_data);
1561
1562 /**
1563  * i2c_smbus_read_word_data - SMBus "read word" protocol
1564  * @client: Handle to slave device
1565  * @command: Byte interpreted by slave
1566  *
1567  * This executes the SMBus "read word" protocol, returning negative errno
1568  * else a 16-bit unsigned "word" received from the device.
1569  */
1570 s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1571 {
1572         union i2c_smbus_data data;
1573         int status;
1574
1575         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1576                                 I2C_SMBUS_READ, command,
1577                                 I2C_SMBUS_WORD_DATA, &data);
1578         return (status < 0) ? status : data.word;
1579 }
1580 EXPORT_SYMBOL(i2c_smbus_read_word_data);
1581
1582 /**
1583  * i2c_smbus_write_word_data - SMBus "write word" protocol
1584  * @client: Handle to slave device
1585  * @command: Byte interpreted by slave
1586  * @value: 16-bit "word" being written
1587  *
1588  * This executes the SMBus "write word" protocol, returning negative errno
1589  * else zero on success.
1590  */
1591 s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1592 {
1593         union i2c_smbus_data data;
1594         data.word = value;
1595         return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1596                               I2C_SMBUS_WRITE,command,
1597                               I2C_SMBUS_WORD_DATA,&data);
1598 }
1599 EXPORT_SYMBOL(i2c_smbus_write_word_data);
1600
1601 /**
1602  * i2c_smbus_process_call - SMBus "process call" protocol
1603  * @client: Handle to slave device
1604  * @command: Byte interpreted by slave
1605  * @value: 16-bit "word" being written
1606  *
1607  * This executes the SMBus "process call" protocol, returning negative errno
1608  * else a 16-bit unsigned "word" received from the device.
1609  */
1610 s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value)
1611 {
1612         union i2c_smbus_data data;
1613         int status;
1614         data.word = value;
1615
1616         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1617                                 I2C_SMBUS_WRITE, command,
1618                                 I2C_SMBUS_PROC_CALL, &data);
1619         return (status < 0) ? status : data.word;
1620 }
1621 EXPORT_SYMBOL(i2c_smbus_process_call);
1622
1623 /**
1624  * i2c_smbus_read_block_data - SMBus "block read" protocol
1625  * @client: Handle to slave device
1626  * @command: Byte interpreted by slave
1627  * @values: Byte array into which data will be read; big enough to hold
1628  *      the data returned by the slave.  SMBus allows at most 32 bytes.
1629  *
1630  * This executes the SMBus "block read" protocol, returning negative errno
1631  * else the number of data bytes in the slave's response.
1632  *
1633  * Note that using this function requires that the client's adapter support
1634  * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality.  Not all adapter drivers
1635  * support this; its emulation through I2C messaging relies on a specific
1636  * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1637  */
1638 s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1639                               u8 *values)
1640 {
1641         union i2c_smbus_data data;
1642         int status;
1643
1644         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1645                                 I2C_SMBUS_READ, command,
1646                                 I2C_SMBUS_BLOCK_DATA, &data);
1647         if (status)
1648                 return status;
1649
1650         memcpy(values, &data.block[1], data.block[0]);
1651         return data.block[0];
1652 }
1653 EXPORT_SYMBOL(i2c_smbus_read_block_data);
1654
1655 /**
1656  * i2c_smbus_write_block_data - SMBus "block write" protocol
1657  * @client: Handle to slave device
1658  * @command: Byte interpreted by slave
1659  * @length: Size of data block; SMBus allows at most 32 bytes
1660  * @values: Byte array which will be written.
1661  *
1662  * This executes the SMBus "block write" protocol, returning negative errno
1663  * else zero on success.
1664  */
1665 s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
1666                                u8 length, const u8 *values)
1667 {
1668         union i2c_smbus_data data;
1669
1670         if (length > I2C_SMBUS_BLOCK_MAX)
1671                 length = I2C_SMBUS_BLOCK_MAX;
1672         data.block[0] = length;
1673         memcpy(&data.block[1], values, length);
1674         return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1675                               I2C_SMBUS_WRITE,command,
1676                               I2C_SMBUS_BLOCK_DATA,&data);
1677 }
1678 EXPORT_SYMBOL(i2c_smbus_write_block_data);
1679
1680 /* Returns the number of read bytes */
1681 s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1682                                   u8 length, u8 *values)
1683 {
1684         union i2c_smbus_data data;
1685         int status;
1686
1687         if (length > I2C_SMBUS_BLOCK_MAX)
1688                 length = I2C_SMBUS_BLOCK_MAX;
1689         data.block[0] = length;
1690         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1691                                 I2C_SMBUS_READ, command,
1692                                 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1693         if (status < 0)
1694                 return status;
1695
1696         memcpy(values, &data.block[1], data.block[0]);
1697         return data.block[0];
1698 }
1699 EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
1700
1701 s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
1702                                    u8 length, const u8 *values)
1703 {
1704         union i2c_smbus_data data;
1705
1706         if (length > I2C_SMBUS_BLOCK_MAX)
1707                 length = I2C_SMBUS_BLOCK_MAX;
1708         data.block[0] = length;
1709         memcpy(data.block + 1, values, length);
1710         return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1711                               I2C_SMBUS_WRITE, command,
1712                               I2C_SMBUS_I2C_BLOCK_DATA, &data);
1713 }
1714 EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
1715
1716 /* Simulate a SMBus command using the i2c protocol
1717    No checking of parameters is done!  */
1718 static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr,
1719                                    unsigned short flags,
1720                                    char read_write, u8 command, int size,
1721                                    union i2c_smbus_data * data)
1722 {
1723         /* So we need to generate a series of msgs. In the case of writing, we
1724           need to use only one message; when reading, we need two. We initialize
1725           most things with sane defaults, to keep the code below somewhat
1726           simpler. */
1727         unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1728         unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
1729         int num = read_write == I2C_SMBUS_READ?2:1;
1730         struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
1731                                   { addr, flags | I2C_M_RD, 0, msgbuf1 }
1732                                 };
1733         int i;
1734         u8 partial_pec = 0;
1735         int status;
1736
1737         msgbuf0[0] = command;
1738         switch(size) {
1739         case I2C_SMBUS_QUICK:
1740                 msg[0].len = 0;
1741                 /* Special case: The read/write field is used as data */
1742                 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
1743                                         I2C_M_RD : 0);
1744                 num = 1;
1745                 break;
1746         case I2C_SMBUS_BYTE:
1747                 if (read_write == I2C_SMBUS_READ) {
1748                         /* Special case: only a read! */
1749                         msg[0].flags = I2C_M_RD | flags;
1750                         num = 1;
1751                 }
1752                 break;
1753         case I2C_SMBUS_BYTE_DATA:
1754                 if (read_write == I2C_SMBUS_READ)
1755                         msg[1].len = 1;
1756                 else {
1757                         msg[0].len = 2;
1758                         msgbuf0[1] = data->byte;
1759                 }
1760                 break;
1761         case I2C_SMBUS_WORD_DATA:
1762                 if (read_write == I2C_SMBUS_READ)
1763                         msg[1].len = 2;
1764                 else {
1765                         msg[0].len=3;
1766                         msgbuf0[1] = data->word & 0xff;
1767                         msgbuf0[2] = data->word >> 8;
1768                 }
1769                 break;
1770         case I2C_SMBUS_PROC_CALL:
1771                 num = 2; /* Special case */
1772                 read_write = I2C_SMBUS_READ;
1773                 msg[0].len = 3;
1774                 msg[1].len = 2;
1775                 msgbuf0[1] = data->word & 0xff;
1776                 msgbuf0[2] = data->word >> 8;
1777                 break;
1778         case I2C_SMBUS_BLOCK_DATA:
1779                 if (read_write == I2C_SMBUS_READ) {
1780                         msg[1].flags |= I2C_M_RECV_LEN;
1781                         msg[1].len = 1; /* block length will be added by
1782                                            the underlying bus driver */
1783                 } else {
1784                         msg[0].len = data->block[0] + 2;
1785                         if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
1786                                 dev_err(&adapter->dev,
1787                                         "Invalid block write size %d\n",
1788                                         data->block[0]);
1789                                 return -EINVAL;
1790                         }
1791                         for (i = 1; i < msg[0].len; i++)
1792                                 msgbuf0[i] = data->block[i-1];
1793                 }
1794                 break;
1795         case I2C_SMBUS_BLOCK_PROC_CALL:
1796                 num = 2; /* Another special case */
1797                 read_write = I2C_SMBUS_READ;
1798                 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
1799                         dev_err(&adapter->dev,
1800                                 "Invalid block write size %d\n",
1801                                 data->block[0]);
1802                         return -EINVAL;
1803                 }
1804                 msg[0].len = data->block[0] + 2;
1805                 for (i = 1; i < msg[0].len; i++)
1806                         msgbuf0[i] = data->block[i-1];
1807                 msg[1].flags |= I2C_M_RECV_LEN;
1808                 msg[1].len = 1; /* block length will be added by
1809                                    the underlying bus driver */
1810                 break;
1811         case I2C_SMBUS_I2C_BLOCK_DATA:
1812                 if (read_write == I2C_SMBUS_READ) {
1813                         msg[1].len = data->block[0];
1814                 } else {
1815                         msg[0].len = data->block[0] + 1;
1816                         if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
1817                                 dev_err(&adapter->dev,
1818                                         "Invalid block write size %d\n",
1819                                         data->block[0]);
1820                                 return -EINVAL;
1821                         }
1822                         for (i = 1; i <= data->block[0]; i++)
1823                                 msgbuf0[i] = data->block[i];
1824                 }
1825                 break;
1826         default:
1827                 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1828                 return -EOPNOTSUPP;
1829         }
1830
1831         i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1832                                       && size != I2C_SMBUS_I2C_BLOCK_DATA);
1833         if (i) {
1834                 /* Compute PEC if first message is a write */
1835                 if (!(msg[0].flags & I2C_M_RD)) {
1836                         if (num == 1) /* Write only */
1837                                 i2c_smbus_add_pec(&msg[0]);
1838                         else /* Write followed by read */
1839                                 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1840                 }
1841                 /* Ask for PEC if last message is a read */
1842                 if (msg[num-1].flags & I2C_M_RD)
1843                         msg[num-1].len++;
1844         }
1845
1846         status = i2c_transfer(adapter, msg, num);
1847         if (status < 0)
1848                 return status;
1849
1850         /* Check PEC if last message is a read */
1851         if (i && (msg[num-1].flags & I2C_M_RD)) {
1852                 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1853                 if (status < 0)
1854                         return status;
1855         }
1856
1857         if (read_write == I2C_SMBUS_READ)
1858                 switch(size) {
1859                         case I2C_SMBUS_BYTE:
1860                                 data->byte = msgbuf0[0];
1861                                 break;
1862                         case I2C_SMBUS_BYTE_DATA:
1863                                 data->byte = msgbuf1[0];
1864                                 break;
1865                         case I2C_SMBUS_WORD_DATA:
1866                         case I2C_SMBUS_PROC_CALL:
1867                                 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1868                                 break;
1869                         case I2C_SMBUS_I2C_BLOCK_DATA:
1870                                 for (i = 0; i < data->block[0]; i++)
1871                                         data->block[i+1] = msgbuf1[i];
1872                                 break;
1873                         case I2C_SMBUS_BLOCK_DATA:
1874                         case I2C_SMBUS_BLOCK_PROC_CALL:
1875                                 for (i = 0; i < msgbuf1[0] + 1; i++)
1876                                         data->block[i] = msgbuf1[i];
1877                                 break;
1878                 }
1879         return 0;
1880 }
1881
1882 /**
1883  * i2c_smbus_xfer - execute SMBus protocol operations
1884  * @adapter: Handle to I2C bus
1885  * @addr: Address of SMBus slave on that bus
1886  * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
1887  * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
1888  * @command: Byte interpreted by slave, for protocols which use such bytes
1889  * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
1890  * @data: Data to be read or written
1891  *
1892  * This executes an SMBus protocol operation, and returns a negative
1893  * errno code else zero on success.
1894  */
1895 s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
1896                    char read_write, u8 command, int protocol,
1897                    union i2c_smbus_data *data)
1898 {
1899         unsigned long orig_jiffies;
1900         int try;
1901         s32 res;
1902
1903         flags &= I2C_M_TEN | I2C_CLIENT_PEC;
1904
1905         if (adapter->algo->smbus_xfer) {
1906                 mutex_lock(&adapter->bus_lock);
1907
1908                 /* Retry automatically on arbitration loss */
1909                 orig_jiffies = jiffies;
1910                 for (res = 0, try = 0; try <= adapter->retries; try++) {
1911                         res = adapter->algo->smbus_xfer(adapter, addr, flags,
1912                                                         read_write, command,
1913                                                         protocol, data);
1914                         if (res != -EAGAIN)
1915                                 break;
1916                         if (time_after(jiffies,
1917                                        orig_jiffies + adapter->timeout))
1918                                 break;
1919                 }
1920                 mutex_unlock(&adapter->bus_lock);
1921         } else
1922                 res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write,
1923                                               command, protocol, data);
1924
1925         return res;
1926 }
1927 EXPORT_SYMBOL(i2c_smbus_xfer);
1928
1929 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
1930 MODULE_DESCRIPTION("I2C-Bus main module");
1931 MODULE_LICENSE("GPL");