blob: ba86af63f5cf3af9da42dcd653f04c23f799e9aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
Jan Engelhardt96de0e22007-10-19 23:21:04 +020020/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
Jean Delvare421ef472005-10-26 21:28:55 +020022 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
23 Jean Delvare <khali@linux-fr.org> */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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>
Arjan van de Venb3585e42006-01-11 10:50:26 +010032#include <linux/mutex.h>
Grant Likely959e85f2010-06-08 07:48:19 -060033#include <linux/of_i2c.h>
34#include <linux/of_device.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010035#include <linux/completion.h>
Mike Rapoportcea443a2008-01-27 18:14:50 +010036#include <linux/hardirq.h>
37#include <linux/irqflags.h>
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +020038#include <linux/rwsem.h>
Mark Brown6de468a2010-03-02 12:23:46 +010039#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/uaccess.h>
41
David Brownell9c1600e2007-05-01 23:26:31 +020042#include "i2c-core.h"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Jean Delvare6629dcf2010-05-04 11:09:28 +020045/* core_lock protects i2c_adapter_idr, and guarantees
Jean Delvare35fc37f2009-06-19 16:58:19 +020046 that device detection, deletion of detected devices, and attach_adapter
47 and detach_adapter calls are serialized */
Jean Delvarecaada322008-01-27 18:14:49 +010048static DEFINE_MUTEX(core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static DEFINE_IDR(i2c_adapter_idr);
50
Jean Delvare4f8cf822009-09-18 22:45:46 +020051static struct device_type i2c_client_type;
Jean Delvare4735c982008-07-14 22:38:36 +020052static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010053
54/* ------------------------------------------------------------------------- */
55
Jean Delvared2653e92008-04-29 23:11:39 +020056static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
57 const struct i2c_client *client)
58{
59 while (id->name[0]) {
60 if (strcmp(client->name, id->name) == 0)
61 return id;
62 id++;
63 }
64 return NULL;
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int i2c_device_match(struct device *dev, struct device_driver *drv)
68{
Jean Delvare51298d12009-09-18 22:45:45 +020069 struct i2c_client *client = i2c_verify_client(dev);
70 struct i2c_driver *driver;
David Brownell7b4fbc52007-05-01 23:26:30 +020071
Jean Delvare51298d12009-09-18 22:45:45 +020072 if (!client)
73 return 0;
74
Grant Likely959e85f2010-06-08 07:48:19 -060075 /* Attempt an OF style match */
76 if (of_driver_match_device(dev, drv))
77 return 1;
78
Jean Delvare51298d12009-09-18 22:45:45 +020079 driver = to_i2c_driver(drv);
Jean Delvared2653e92008-04-29 23:11:39 +020080 /* match on an id table if there is one */
81 if (driver->id_table)
82 return i2c_match_id(driver->id_table, client) != NULL;
83
Jean Delvareeb8a7902008-05-18 20:49:41 +020084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
David Brownell7b4fbc52007-05-01 23:26:30 +020087#ifdef CONFIG_HOTPLUG
88
89/* uevent helps with hotplug: modprobe -q $(MODALIAS) */
Kay Sievers7eff2e72007-08-14 15:15:12 +020090static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +020091{
92 struct i2c_client *client = to_i2c_client(dev);
David Brownell7b4fbc52007-05-01 23:26:30 +020093
Jean Delvareeb8a7902008-05-18 20:49:41 +020094 if (add_uevent_var(env, "MODALIAS=%s%s",
95 I2C_MODULE_PREFIX, client->name))
96 return -ENOMEM;
David Brownell7b4fbc52007-05-01 23:26:30 +020097 dev_dbg(dev, "uevent\n");
98 return 0;
99}
100
101#else
102#define i2c_device_uevent NULL
103#endif /* CONFIG_HOTPLUG */
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int i2c_device_probe(struct device *dev)
106{
Jean Delvare51298d12009-09-18 22:45:45 +0200107 struct i2c_client *client = i2c_verify_client(dev);
108 struct i2c_driver *driver;
Hans Verkuil50c33042008-03-12 14:15:00 +0100109 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200110
Jean Delvare51298d12009-09-18 22:45:45 +0200111 if (!client)
112 return 0;
113
114 driver = to_i2c_driver(dev->driver);
Jean Delvaree0457442008-07-14 22:38:30 +0200115 if (!driver->probe || !driver->id_table)
David Brownell7b4fbc52007-05-01 23:26:30 +0200116 return -ENODEV;
117 client->driver = driver;
Marc Pignatee354252008-08-28 08:33:22 +0200118 if (!device_can_wakeup(&client->dev))
119 device_init_wakeup(&client->dev,
120 client->flags & I2C_CLIENT_WAKE);
David Brownell7b4fbc52007-05-01 23:26:30 +0200121 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200122
Jean Delvaree0457442008-07-14 22:38:30 +0200123 status = driver->probe(client, i2c_match_id(driver->id_table, client));
Wolfram Sange4a7b9b2010-05-04 11:09:27 +0200124 if (status) {
Hans Verkuil50c33042008-03-12 14:15:00 +0100125 client->driver = NULL;
Wolfram Sange4a7b9b2010-05-04 11:09:27 +0200126 i2c_set_clientdata(client, NULL);
127 }
Hans Verkuil50c33042008-03-12 14:15:00 +0100128 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131static int i2c_device_remove(struct device *dev)
132{
Jean Delvare51298d12009-09-18 22:45:45 +0200133 struct i2c_client *client = i2c_verify_client(dev);
David Brownella1d9e6e2007-05-01 23:26:30 +0200134 struct i2c_driver *driver;
135 int status;
136
Jean Delvare51298d12009-09-18 22:45:45 +0200137 if (!client || !dev->driver)
David Brownella1d9e6e2007-05-01 23:26:30 +0200138 return 0;
139
140 driver = to_i2c_driver(dev->driver);
141 if (driver->remove) {
142 dev_dbg(dev, "remove\n");
143 status = driver->remove(client);
144 } else {
145 dev->driver = NULL;
146 status = 0;
147 }
Wolfram Sange4a7b9b2010-05-04 11:09:27 +0200148 if (status == 0) {
David Brownella1d9e6e2007-05-01 23:26:30 +0200149 client->driver = NULL;
Wolfram Sange4a7b9b2010-05-04 11:09:27 +0200150 i2c_set_clientdata(client, NULL);
151 }
David Brownella1d9e6e2007-05-01 23:26:30 +0200152 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
David Brownellf37dd802007-02-13 22:09:00 +0100155static void i2c_device_shutdown(struct device *dev)
156{
Jean Delvare51298d12009-09-18 22:45:45 +0200157 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100158 struct i2c_driver *driver;
159
Jean Delvare51298d12009-09-18 22:45:45 +0200160 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100161 return;
162 driver = to_i2c_driver(dev->driver);
163 if (driver->shutdown)
Jean Delvare51298d12009-09-18 22:45:45 +0200164 driver->shutdown(client);
David Brownellf37dd802007-02-13 22:09:00 +0100165}
166
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200167#ifdef CONFIG_PM_SLEEP
168static int i2c_legacy_suspend(struct device *dev, pm_message_t mesg)
David Brownellf37dd802007-02-13 22:09:00 +0100169{
Jean Delvare51298d12009-09-18 22:45:45 +0200170 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100171 struct i2c_driver *driver;
172
Jean Delvare51298d12009-09-18 22:45:45 +0200173 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100174 return 0;
175 driver = to_i2c_driver(dev->driver);
176 if (!driver->suspend)
177 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200178 return driver->suspend(client, mesg);
David Brownellf37dd802007-02-13 22:09:00 +0100179}
180
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200181static int i2c_legacy_resume(struct device *dev)
David Brownellf37dd802007-02-13 22:09:00 +0100182{
Jean Delvare51298d12009-09-18 22:45:45 +0200183 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100184 struct i2c_driver *driver;
185
Jean Delvare51298d12009-09-18 22:45:45 +0200186 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100187 return 0;
188 driver = to_i2c_driver(dev->driver);
189 if (!driver->resume)
190 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200191 return driver->resume(client);
David Brownellf37dd802007-02-13 22:09:00 +0100192}
193
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200194static int i2c_device_pm_suspend(struct device *dev)
195{
196 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
197
198 if (pm_runtime_suspended(dev))
199 return 0;
200
201 if (pm)
202 return pm->suspend ? pm->suspend(dev) : 0;
203
204 return i2c_legacy_suspend(dev, PMSG_SUSPEND);
205}
206
207static int i2c_device_pm_resume(struct device *dev)
208{
209 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
210 int ret;
211
212 if (pm)
213 ret = pm->resume ? pm->resume(dev) : 0;
214 else
215 ret = i2c_legacy_resume(dev);
216
217 if (!ret) {
218 pm_runtime_disable(dev);
219 pm_runtime_set_active(dev);
220 pm_runtime_enable(dev);
221 }
222
223 return ret;
224}
225
226static int i2c_device_pm_freeze(struct device *dev)
227{
228 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
229
230 if (pm_runtime_suspended(dev))
231 return 0;
232
233 if (pm)
234 return pm->freeze ? pm->freeze(dev) : 0;
235
236 return i2c_legacy_suspend(dev, PMSG_FREEZE);
237}
238
239static int i2c_device_pm_thaw(struct device *dev)
240{
241 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
242
243 if (pm_runtime_suspended(dev))
244 return 0;
245
246 if (pm)
247 return pm->thaw ? pm->thaw(dev) : 0;
248
249 return i2c_legacy_resume(dev);
250}
251
252static int i2c_device_pm_poweroff(struct device *dev)
253{
254 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
255
256 if (pm_runtime_suspended(dev))
257 return 0;
258
259 if (pm)
260 return pm->poweroff ? pm->poweroff(dev) : 0;
261
262 return i2c_legacy_suspend(dev, PMSG_HIBERNATE);
263}
264
265static int i2c_device_pm_restore(struct device *dev)
266{
267 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
268 int ret;
269
270 if (pm)
271 ret = pm->restore ? pm->restore(dev) : 0;
272 else
273 ret = i2c_legacy_resume(dev);
274
275 if (!ret) {
276 pm_runtime_disable(dev);
277 pm_runtime_set_active(dev);
278 pm_runtime_enable(dev);
279 }
280
281 return ret;
282}
283#else /* !CONFIG_PM_SLEEP */
284#define i2c_device_pm_suspend NULL
285#define i2c_device_pm_resume NULL
286#define i2c_device_pm_freeze NULL
287#define i2c_device_pm_thaw NULL
288#define i2c_device_pm_poweroff NULL
289#define i2c_device_pm_restore NULL
290#endif /* !CONFIG_PM_SLEEP */
291
David Brownell9c1600e2007-05-01 23:26:31 +0200292static void i2c_client_dev_release(struct device *dev)
293{
294 kfree(to_i2c_client(dev));
295}
296
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100297static ssize_t
Jean Delvare4f8cf822009-09-18 22:45:46 +0200298show_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200299{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200300 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
301 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200302}
303
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100304static ssize_t
305show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200306{
307 struct i2c_client *client = to_i2c_client(dev);
Jean Delvareeb8a7902008-05-18 20:49:41 +0200308 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200309}
310
Jean Delvare4f8cf822009-09-18 22:45:46 +0200311static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Jean Delvare51298d12009-09-18 22:45:45 +0200312static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
313
314static struct attribute *i2c_dev_attrs[] = {
315 &dev_attr_name.attr,
David Brownell7b4fbc52007-05-01 23:26:30 +0200316 /* modalias helps coldplug: modprobe $(cat .../modalias) */
Jean Delvare51298d12009-09-18 22:45:45 +0200317 &dev_attr_modalias.attr,
318 NULL
319};
320
321static struct attribute_group i2c_dev_attr_group = {
322 .attrs = i2c_dev_attrs,
323};
324
325static const struct attribute_group *i2c_dev_attr_groups[] = {
326 &i2c_dev_attr_group,
327 NULL
David Brownell7b4fbc52007-05-01 23:26:30 +0200328};
329
Tobias Klauser0b2c3682010-01-16 20:43:12 +0100330static const struct dev_pm_ops i2c_device_pm_ops = {
sonic zhang54067ee2009-12-14 21:17:30 +0100331 .suspend = i2c_device_pm_suspend,
332 .resume = i2c_device_pm_resume,
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200333 .freeze = i2c_device_pm_freeze,
334 .thaw = i2c_device_pm_thaw,
335 .poweroff = i2c_device_pm_poweroff,
336 .restore = i2c_device_pm_restore,
337 SET_RUNTIME_PM_OPS(
338 pm_generic_runtime_suspend,
339 pm_generic_runtime_resume,
340 pm_generic_runtime_idle
341 )
sonic zhang54067ee2009-12-14 21:17:30 +0100342};
343
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200344struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100345 .name = "i2c",
346 .match = i2c_device_match,
347 .probe = i2c_device_probe,
348 .remove = i2c_device_remove,
349 .shutdown = i2c_device_shutdown,
sonic zhang54067ee2009-12-14 21:17:30 +0100350 .pm = &i2c_device_pm_ops,
Russell Kingb864c7d2006-01-05 14:37:50 +0000351};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200352EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000353
Jean Delvare51298d12009-09-18 22:45:45 +0200354static struct device_type i2c_client_type = {
355 .groups = i2c_dev_attr_groups,
356 .uevent = i2c_device_uevent,
357 .release = i2c_client_dev_release,
358};
359
David Brownell9b766b82008-01-27 18:14:51 +0100360
361/**
362 * i2c_verify_client - return parameter as i2c_client, or NULL
363 * @dev: device, probably from some driver model iterator
364 *
365 * When traversing the driver model tree, perhaps using driver model
366 * iterators like @device_for_each_child(), you can't assume very much
367 * about the nodes you find. Use this function to avoid oopses caused
368 * by wrongly treating some non-I2C device as an i2c_client.
369 */
370struct i2c_client *i2c_verify_client(struct device *dev)
371{
Jean Delvare51298d12009-09-18 22:45:45 +0200372 return (dev->type == &i2c_client_type)
David Brownell9b766b82008-01-27 18:14:51 +0100373 ? to_i2c_client(dev)
374 : NULL;
375}
376EXPORT_SYMBOL(i2c_verify_client);
377
378
Jean Delvare3a89db52010-06-03 11:33:52 +0200379/* This is a permissive address validity check, I2C address map constraints
380 * are purposedly not enforced, except for the general call address. */
381static int i2c_check_client_addr_validity(const struct i2c_client *client)
382{
383 if (client->flags & I2C_CLIENT_TEN) {
384 /* 10-bit address, all values are valid */
385 if (client->addr > 0x3ff)
386 return -EINVAL;
387 } else {
388 /* 7-bit address, reject the general call address */
389 if (client->addr == 0x00 || client->addr > 0x7f)
390 return -EINVAL;
391 }
392 return 0;
393}
394
Jean Delvare656b8762010-06-03 11:33:53 +0200395/* And this is a strict address validity check, used when probing. If a
396 * device uses a reserved address, then it shouldn't be probed. 7-bit
397 * addressing is assumed, 10-bit address devices are rare and should be
398 * explicitly enumerated. */
399static int i2c_check_addr_validity(unsigned short addr)
400{
401 /*
402 * Reserved addresses per I2C specification:
403 * 0x00 General call address / START byte
404 * 0x01 CBUS address
405 * 0x02 Reserved for different bus format
406 * 0x03 Reserved for future purposes
407 * 0x04-0x07 Hs-mode master code
408 * 0x78-0x7b 10-bit slave addressing
409 * 0x7c-0x7f Reserved for future purposes
410 */
411 if (addr < 0x08 || addr > 0x77)
412 return -EINVAL;
413 return 0;
414}
415
Jean Delvare3b5f7942010-06-03 11:33:55 +0200416static int __i2c_check_addr_busy(struct device *dev, void *addrp)
417{
418 struct i2c_client *client = i2c_verify_client(dev);
419 int addr = *(int *)addrp;
420
421 if (client && client->addr == addr)
422 return -EBUSY;
423 return 0;
424}
425
426static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
427{
428 return device_for_each_child(&adapter->dev, &addr,
429 __i2c_check_addr_busy);
430}
431
David Brownell9c1600e2007-05-01 23:26:31 +0200432/**
Jean Delvarefe61e072010-08-11 18:20:58 +0200433 * i2c_lock_adapter - Get exclusive access to an I2C bus segment
434 * @adapter: Target I2C bus segment
435 */
436void i2c_lock_adapter(struct i2c_adapter *adapter)
437{
438 rt_mutex_lock(&adapter->bus_lock);
439}
440EXPORT_SYMBOL_GPL(i2c_lock_adapter);
441
442/**
443 * i2c_trylock_adapter - Try to get exclusive access to an I2C bus segment
444 * @adapter: Target I2C bus segment
445 */
446static int i2c_trylock_adapter(struct i2c_adapter *adapter)
447{
448 return rt_mutex_trylock(&adapter->bus_lock);
449}
450
451/**
452 * i2c_unlock_adapter - Release exclusive access to an I2C bus segment
453 * @adapter: Target I2C bus segment
454 */
455void i2c_unlock_adapter(struct i2c_adapter *adapter)
456{
457 rt_mutex_unlock(&adapter->bus_lock);
458}
459EXPORT_SYMBOL_GPL(i2c_unlock_adapter);
460
461/**
Jean Delvaref8a227e2009-06-19 16:58:18 +0200462 * i2c_new_device - instantiate an i2c device
David Brownell9c1600e2007-05-01 23:26:31 +0200463 * @adap: the adapter managing the device
464 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +0200465 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200466 *
Jean Delvaref8a227e2009-06-19 16:58:18 +0200467 * Create an i2c device. Binding is handled through driver model
468 * probe()/remove() methods. A driver may be bound to this device when we
469 * return from this function, or any later moment (e.g. maybe hotplugging will
470 * load the driver module). This call is not appropriate for use by mainboard
471 * initialization logic, which usually runs during an arch_initcall() long
472 * before any i2c_adapter could exist.
David Brownell9c1600e2007-05-01 23:26:31 +0200473 *
474 * This returns the new i2c client, which may be saved for later use with
475 * i2c_unregister_device(); or NULL to indicate an error.
476 */
477struct i2c_client *
478i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
479{
480 struct i2c_client *client;
481 int status;
482
483 client = kzalloc(sizeof *client, GFP_KERNEL);
484 if (!client)
485 return NULL;
486
487 client->adapter = adap;
488
489 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +0200490
Anton Vorontsov11f1f2a2008-10-22 20:21:33 +0200491 if (info->archdata)
492 client->dev.archdata = *info->archdata;
493
Marc Pignatee354252008-08-28 08:33:22 +0200494 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +0200495 client->addr = info->addr;
496 client->irq = info->irq;
497
David Brownell9c1600e2007-05-01 23:26:31 +0200498 strlcpy(client->name, info->type, sizeof(client->name));
499
Jean Delvare3a89db52010-06-03 11:33:52 +0200500 /* Check for address validity */
501 status = i2c_check_client_addr_validity(client);
502 if (status) {
503 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
504 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
505 goto out_err_silent;
506 }
507
Jean Delvaref8a227e2009-06-19 16:58:18 +0200508 /* Check for address business */
Jean Delvare3b5f7942010-06-03 11:33:55 +0200509 status = i2c_check_addr_busy(adap, client->addr);
Jean Delvaref8a227e2009-06-19 16:58:18 +0200510 if (status)
511 goto out_err;
512
513 client->dev.parent = &client->adapter->dev;
514 client->dev.bus = &i2c_bus_type;
Jean Delvare51298d12009-09-18 22:45:45 +0200515 client->dev.type = &i2c_client_type;
Grant Likelyd12d42f2010-04-13 16:12:28 -0700516#ifdef CONFIG_OF
517 client->dev.of_node = info->of_node;
518#endif
Jean Delvaref8a227e2009-06-19 16:58:18 +0200519
520 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
521 client->addr);
522 status = device_register(&client->dev);
523 if (status)
524 goto out_err;
525
Jean Delvaref8a227e2009-06-19 16:58:18 +0200526 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
527 client->name, dev_name(&client->dev));
528
David Brownell9c1600e2007-05-01 23:26:31 +0200529 return client;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200530
531out_err:
532 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
533 "(%d)\n", client->name, client->addr, status);
Jean Delvare3a89db52010-06-03 11:33:52 +0200534out_err_silent:
Jean Delvaref8a227e2009-06-19 16:58:18 +0200535 kfree(client);
536 return NULL;
David Brownell9c1600e2007-05-01 23:26:31 +0200537}
538EXPORT_SYMBOL_GPL(i2c_new_device);
539
540
541/**
542 * i2c_unregister_device - reverse effect of i2c_new_device()
543 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +0200544 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200545 */
546void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +0200547{
David Brownella1d9e6e2007-05-01 23:26:30 +0200548 device_unregister(&client->dev);
549}
David Brownell9c1600e2007-05-01 23:26:31 +0200550EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +0200551
552
Jean Delvare60b129d2008-05-11 20:37:06 +0200553static const struct i2c_device_id dummy_id[] = {
554 { "dummy", 0 },
555 { },
556};
557
Jean Delvared2653e92008-04-29 23:11:39 +0200558static int dummy_probe(struct i2c_client *client,
559 const struct i2c_device_id *id)
560{
561 return 0;
562}
563
564static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +0100565{
566 return 0;
567}
568
569static struct i2c_driver dummy_driver = {
570 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +0200571 .probe = dummy_probe,
572 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +0200573 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +0100574};
575
576/**
577 * i2c_new_dummy - return a new i2c device bound to a dummy driver
578 * @adapter: the adapter managing the device
579 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +0100580 * Context: can sleep
581 *
582 * This returns an I2C client bound to the "dummy" driver, intended for use
583 * with devices that consume multiple addresses. Examples of such chips
584 * include various EEPROMS (like 24c04 and 24c08 models).
585 *
586 * These dummy devices have two main uses. First, most I2C and SMBus calls
587 * except i2c_transfer() need a client handle; the dummy will be that handle.
588 * And second, this prevents the specified address from being bound to a
589 * different driver.
590 *
591 * This returns the new i2c client, which should be saved for later use with
592 * i2c_unregister_device(); or NULL to indicate an error.
593 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100594struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +0100595{
596 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +0200597 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +0100598 };
599
David Brownelle9f13732008-01-27 18:14:52 +0100600 return i2c_new_device(adapter, &info);
601}
602EXPORT_SYMBOL_GPL(i2c_new_dummy);
603
David Brownellf37dd802007-02-13 22:09:00 +0100604/* ------------------------------------------------------------------------- */
605
David Brownell16ffadf2007-05-01 23:26:28 +0200606/* I2C bus adapters -- one roots each I2C or SMBUS segment */
607
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200608static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
David Brownellef2c83212007-05-01 23:26:28 +0200610 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 complete(&adap->dev_released);
612}
613
Jean Delvare99cd8e22009-06-19 16:58:20 +0200614/*
615 * Let users instantiate I2C devices through sysfs. This can be used when
616 * platform initialization code doesn't contain the proper data for
617 * whatever reason. Also useful for drivers that do device detection and
618 * detection fails, either because the device uses an unexpected address,
619 * or this is a compatible device with different ID register values.
620 *
621 * Parameter checking may look overzealous, but we really don't want
622 * the user to provide incorrect parameters.
623 */
624static ssize_t
625i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
626 const char *buf, size_t count)
627{
628 struct i2c_adapter *adap = to_i2c_adapter(dev);
629 struct i2c_board_info info;
630 struct i2c_client *client;
631 char *blank, end;
632 int res;
633
634 dev_warn(dev, "The new_device interface is still experimental "
635 "and may change in a near future\n");
636 memset(&info, 0, sizeof(struct i2c_board_info));
637
638 blank = strchr(buf, ' ');
639 if (!blank) {
640 dev_err(dev, "%s: Missing parameters\n", "new_device");
641 return -EINVAL;
642 }
643 if (blank - buf > I2C_NAME_SIZE - 1) {
644 dev_err(dev, "%s: Invalid device name\n", "new_device");
645 return -EINVAL;
646 }
647 memcpy(info.type, buf, blank - buf);
648
649 /* Parse remaining parameters, reject extra parameters */
650 res = sscanf(++blank, "%hi%c", &info.addr, &end);
651 if (res < 1) {
652 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
653 return -EINVAL;
654 }
655 if (res > 1 && end != '\n') {
656 dev_err(dev, "%s: Extra parameters\n", "new_device");
657 return -EINVAL;
658 }
659
Jean Delvare99cd8e22009-06-19 16:58:20 +0200660 client = i2c_new_device(adap, &info);
661 if (!client)
Jean Delvare3a89db52010-06-03 11:33:52 +0200662 return -EINVAL;
Jean Delvare99cd8e22009-06-19 16:58:20 +0200663
664 /* Keep track of the added device */
Jean Delvare6629dcf2010-05-04 11:09:28 +0200665 i2c_lock_adapter(adap);
666 list_add_tail(&client->detected, &adap->userspace_clients);
667 i2c_unlock_adapter(adap);
Jean Delvare99cd8e22009-06-19 16:58:20 +0200668 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
669 info.type, info.addr);
670
671 return count;
672}
673
674/*
675 * And of course let the users delete the devices they instantiated, if
676 * they got it wrong. This interface can only be used to delete devices
677 * instantiated by i2c_sysfs_new_device above. This guarantees that we
678 * don't delete devices to which some kernel code still has references.
679 *
680 * Parameter checking may look overzealous, but we really don't want
681 * the user to delete the wrong device.
682 */
683static ssize_t
684i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
685 const char *buf, size_t count)
686{
687 struct i2c_adapter *adap = to_i2c_adapter(dev);
688 struct i2c_client *client, *next;
689 unsigned short addr;
690 char end;
691 int res;
692
693 /* Parse parameters, reject extra parameters */
694 res = sscanf(buf, "%hi%c", &addr, &end);
695 if (res < 1) {
696 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
697 return -EINVAL;
698 }
699 if (res > 1 && end != '\n') {
700 dev_err(dev, "%s: Extra parameters\n", "delete_device");
701 return -EINVAL;
702 }
703
704 /* Make sure the device was added through sysfs */
705 res = -ENOENT;
Jean Delvare6629dcf2010-05-04 11:09:28 +0200706 i2c_lock_adapter(adap);
707 list_for_each_entry_safe(client, next, &adap->userspace_clients,
708 detected) {
709 if (client->addr == addr) {
Jean Delvare99cd8e22009-06-19 16:58:20 +0200710 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
711 "delete_device", client->name, client->addr);
712
713 list_del(&client->detected);
714 i2c_unregister_device(client);
715 res = count;
716 break;
717 }
718 }
Jean Delvare6629dcf2010-05-04 11:09:28 +0200719 i2c_unlock_adapter(adap);
Jean Delvare99cd8e22009-06-19 16:58:20 +0200720
721 if (res < 0)
722 dev_err(dev, "%s: Can't find device in list\n",
723 "delete_device");
724 return res;
725}
726
Jean Delvare4f8cf822009-09-18 22:45:46 +0200727static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
728static DEVICE_ATTR(delete_device, S_IWUSR, NULL, i2c_sysfs_delete_device);
729
730static struct attribute *i2c_adapter_attrs[] = {
731 &dev_attr_name.attr,
732 &dev_attr_new_device.attr,
733 &dev_attr_delete_device.attr,
734 NULL
David Brownell16ffadf2007-05-01 23:26:28 +0200735};
736
Jean Delvare4f8cf822009-09-18 22:45:46 +0200737static struct attribute_group i2c_adapter_attr_group = {
738 .attrs = i2c_adapter_attrs,
739};
740
741static const struct attribute_group *i2c_adapter_attr_groups[] = {
742 &i2c_adapter_attr_group,
743 NULL
744};
745
746static struct device_type i2c_adapter_type = {
747 .groups = i2c_adapter_attr_groups,
748 .release = i2c_adapter_dev_release,
David Brownell16ffadf2007-05-01 23:26:28 +0200749};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Jean Delvare2bb50952009-09-18 22:45:46 +0200751#ifdef CONFIG_I2C_COMPAT
752static struct class_compat *i2c_adapter_compat_class;
753#endif
754
David Brownell9c1600e2007-05-01 23:26:31 +0200755static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
756{
757 struct i2c_devinfo *devinfo;
758
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +0200759 down_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +0200760 list_for_each_entry(devinfo, &__i2c_board_list, list) {
761 if (devinfo->busnum == adapter->nr
762 && !i2c_new_device(adapter,
763 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100764 dev_err(&adapter->dev,
765 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +0200766 devinfo->board_info.addr);
767 }
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +0200768 up_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +0200769}
770
Jean Delvare69b00892009-12-06 17:06:27 +0100771static int i2c_do_add_adapter(struct i2c_driver *driver,
772 struct i2c_adapter *adap)
Jean Delvare026526f2008-01-27 18:14:49 +0100773{
Jean Delvare4735c982008-07-14 22:38:36 +0200774 /* Detect supported devices on that bus, and instantiate them */
775 i2c_detect(adap, driver);
776
777 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +0100778 if (driver->attach_adapter) {
779 /* We ignore the return code; if it fails, too bad */
780 driver->attach_adapter(adap);
781 }
782 return 0;
783}
784
Jean Delvare69b00892009-12-06 17:06:27 +0100785static int __process_new_adapter(struct device_driver *d, void *data)
786{
787 return i2c_do_add_adapter(to_i2c_driver(d), data);
788}
789
David Brownell6e13e642007-05-01 23:26:31 +0200790static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Jean Delvared6703282010-08-11 18:20:59 +0200792 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
David Brownell1d0b19c2008-10-14 17:30:05 +0200794 /* Can't register until after driver model init */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200795 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
796 res = -EAGAIN;
797 goto out_list;
798 }
David Brownell1d0b19c2008-10-14 17:30:05 +0200799
Mika Kuoppala194684e2009-12-06 17:06:22 +0100800 rt_mutex_init(&adap->bus_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +0200801 INIT_LIST_HEAD(&adap->userspace_clients);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Jean Delvare8fcfef62009-03-28 21:34:43 +0100803 /* Set default timeout to 1 second if not already set */
804 if (adap->timeout == 0)
805 adap->timeout = HZ;
806
Kay Sievers27d9c182009-01-07 14:29:16 +0100807 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Jean Delvare4f8cf822009-09-18 22:45:46 +0200808 adap->dev.bus = &i2c_bus_type;
809 adap->dev.type = &i2c_adapter_type;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200810 res = device_register(&adap->dev);
811 if (res)
812 goto out_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200814 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
815
Jean Delvare2bb50952009-09-18 22:45:46 +0200816#ifdef CONFIG_I2C_COMPAT
817 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
818 adap->dev.parent);
819 if (res)
820 dev_warn(&adap->dev,
821 "Failed to create compatibility class link\n");
822#endif
823
Jean Delvare729d6dd2009-06-19 16:58:18 +0200824 /* create pre-declared device nodes */
David Brownell6e13e642007-05-01 23:26:31 +0200825 if (adap->nr < __i2c_first_dynamic_bus_num)
826 i2c_scan_static_board_info(adap);
827
Grant Likely959e85f2010-06-08 07:48:19 -0600828 /* Register devices from the device tree */
829 of_i2c_register_devices(adap);
830
Jean Delvare4735c982008-07-14 22:38:36 +0200831 /* Notify drivers */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200832 mutex_lock(&core_lock);
Jean Delvared6703282010-08-11 18:20:59 +0200833 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
Jean Delvarecaada322008-01-27 18:14:49 +0100834 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200835
836 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200837
Jean Delvareb119c6c2006-08-15 18:26:30 +0200838out_list:
Jean Delvare35fc37f2009-06-19 16:58:19 +0200839 mutex_lock(&core_lock);
Jean Delvareb119c6c2006-08-15 18:26:30 +0200840 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200841 mutex_unlock(&core_lock);
842 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
David Brownell6e13e642007-05-01 23:26:31 +0200845/**
846 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
847 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +0200848 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200849 *
850 * This routine is used to declare an I2C adapter when its bus number
851 * doesn't matter. Examples: for I2C adapters dynamically added by
852 * USB links or PCI plugin cards.
853 *
854 * When this returns zero, a new bus number was allocated and stored
855 * in adap->nr, and the specified adapter became available for clients.
856 * Otherwise, a negative errno value is returned.
857 */
858int i2c_add_adapter(struct i2c_adapter *adapter)
859{
860 int id, res = 0;
861
862retry:
863 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
864 return -ENOMEM;
865
Jean Delvarecaada322008-01-27 18:14:49 +0100866 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200867 /* "above" here means "above or equal to", sigh */
868 res = idr_get_new_above(&i2c_adapter_idr, adapter,
869 __i2c_first_dynamic_bus_num, &id);
Jean Delvarecaada322008-01-27 18:14:49 +0100870 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200871
872 if (res < 0) {
873 if (res == -EAGAIN)
874 goto retry;
875 return res;
876 }
877
878 adapter->nr = id;
879 return i2c_register_adapter(adapter);
880}
881EXPORT_SYMBOL(i2c_add_adapter);
882
883/**
884 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
885 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +0200886 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200887 *
888 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +0100889 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
890 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +0200891 * is used to properly configure I2C devices.
892 *
893 * If no devices have pre-been declared for this bus, then be sure to
894 * register the adapter before any dynamically allocated ones. Otherwise
895 * the required bus ID may not be available.
896 *
897 * When this returns zero, the specified adapter became available for
898 * clients using the bus number provided in adap->nr. Also, the table
899 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
900 * and the appropriate driver model device nodes are created. Otherwise, a
901 * negative errno value is returned.
902 */
903int i2c_add_numbered_adapter(struct i2c_adapter *adap)
904{
905 int id;
906 int status;
907
908 if (adap->nr & ~MAX_ID_MASK)
909 return -EINVAL;
910
911retry:
912 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
913 return -ENOMEM;
914
Jean Delvarecaada322008-01-27 18:14:49 +0100915 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200916 /* "above" here means "above or equal to", sigh;
917 * we need the "equal to" result to force the result
918 */
919 status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
920 if (status == 0 && id != adap->nr) {
921 status = -EBUSY;
922 idr_remove(&i2c_adapter_idr, id);
923 }
Jean Delvarecaada322008-01-27 18:14:49 +0100924 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200925 if (status == -EAGAIN)
926 goto retry;
927
928 if (status == 0)
929 status = i2c_register_adapter(adap);
930 return status;
931}
932EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
933
Jean Delvare69b00892009-12-06 17:06:27 +0100934static int i2c_do_del_adapter(struct i2c_driver *driver,
935 struct i2c_adapter *adapter)
Jean Delvare026526f2008-01-27 18:14:49 +0100936{
Jean Delvare4735c982008-07-14 22:38:36 +0200937 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +0100938 int res;
939
Jean Delvareacec2112009-03-28 21:34:40 +0100940 /* Remove the devices we created ourselves as the result of hardware
941 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +0200942 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
943 if (client->adapter == adapter) {
944 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
945 client->name, client->addr);
946 list_del(&client->detected);
947 i2c_unregister_device(client);
948 }
949 }
950
Jean Delvare026526f2008-01-27 18:14:49 +0100951 if (!driver->detach_adapter)
952 return 0;
953 res = driver->detach_adapter(adapter);
954 if (res)
955 dev_err(&adapter->dev, "detach_adapter failed (%d) "
956 "for driver [%s]\n", res, driver->driver.name);
957 return res;
958}
959
Jean Delvaree549c2b2009-06-19 16:58:19 +0200960static int __unregister_client(struct device *dev, void *dummy)
961{
962 struct i2c_client *client = i2c_verify_client(dev);
963 if (client)
964 i2c_unregister_device(client);
965 return 0;
966}
967
Jean Delvare69b00892009-12-06 17:06:27 +0100968static int __process_removed_adapter(struct device_driver *d, void *data)
969{
970 return i2c_do_del_adapter(to_i2c_driver(d), data);
971}
972
David Brownelld64f73b2007-07-12 14:12:28 +0200973/**
974 * i2c_del_adapter - unregister I2C adapter
975 * @adap: the adapter being unregistered
976 * Context: can sleep
977 *
978 * This unregisters an I2C adapter which was previously registered
979 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
980 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981int i2c_del_adapter(struct i2c_adapter *adap)
982{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 int res = 0;
Jean Delvare35fc37f2009-06-19 16:58:19 +0200984 struct i2c_adapter *found;
Jean Delvarebbd2d9c2009-11-26 09:22:33 +0100985 struct i2c_client *client, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 /* First make sure that this adapter was ever added */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200988 mutex_lock(&core_lock);
989 found = idr_find(&i2c_adapter_idr, adap->nr);
990 mutex_unlock(&core_lock);
991 if (found != adap) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200992 pr_debug("i2c-core: attempting to delete unregistered "
993 "adapter [%s]\n", adap->name);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200994 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996
Jean Delvare026526f2008-01-27 18:14:49 +0100997 /* Tell drivers about this removal */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200998 mutex_lock(&core_lock);
Jean Delvare026526f2008-01-27 18:14:49 +0100999 res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +01001000 __process_removed_adapter);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001001 mutex_unlock(&core_lock);
Jean Delvare026526f2008-01-27 18:14:49 +01001002 if (res)
Jean Delvare35fc37f2009-06-19 16:58:19 +02001003 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001005 /* Remove devices instantiated from sysfs */
Jean Delvare6629dcf2010-05-04 11:09:28 +02001006 i2c_lock_adapter(adap);
1007 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1008 detected) {
1009 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1010 client->addr);
1011 list_del(&client->detected);
1012 i2c_unregister_device(client);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001013 }
Jean Delvare6629dcf2010-05-04 11:09:28 +02001014 i2c_unlock_adapter(adap);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001015
Jean Delvaree549c2b2009-06-19 16:58:19 +02001016 /* Detach any active clients. This can't fail, thus we do not
1017 checking the returned value. */
1018 res = device_for_each_child(&adap->dev, NULL, __unregister_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Jean Delvare2bb50952009-09-18 22:45:46 +02001020#ifdef CONFIG_I2C_COMPAT
1021 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
1022 adap->dev.parent);
1023#endif
1024
Thadeu Lima de Souza Cascardoc5567522010-01-16 20:43:13 +01001025 /* device name is gone after device_unregister */
1026 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /* clean up the sysfs representation */
1029 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /* wait for sysfs to drop all references */
1033 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
David Brownell6e13e642007-05-01 23:26:31 +02001035 /* free bus id */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001036 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001038 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Jean Delvarebd4bc3db2008-07-16 19:30:05 +02001040 /* Clear the device structure in case this adapter is ever going to be
1041 added again */
1042 memset(&adap->dev, 0, sizeof(adap->dev));
1043
Jean Delvare35fc37f2009-06-19 16:58:19 +02001044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
David Brownellc0564602007-05-01 23:26:31 +02001046EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048
David Brownell7b4fbc52007-05-01 23:26:30 +02001049/* ------------------------------------------------------------------------- */
1050
Jean Delvare69b00892009-12-06 17:06:27 +01001051static int __process_new_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001052{
Jean Delvare4f8cf822009-09-18 22:45:46 +02001053 if (dev->type != &i2c_adapter_type)
1054 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001055 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +02001056}
1057
David Brownell7b4fbc52007-05-01 23:26:30 +02001058/*
1059 * An i2c_driver is used with one or more i2c_client (device) nodes to access
Jean Delvare729d6dd2009-06-19 16:58:18 +02001060 * i2c slave chips, on a bus instance associated with some i2c_adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 */
1062
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001063int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Jean Delvare7eebcb72006-02-05 23:28:21 +01001065 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
David Brownell1d0b19c2008-10-14 17:30:05 +02001067 /* Can't register until after driver model init */
1068 if (unlikely(WARN_ON(!i2c_bus_type.p)))
1069 return -EAGAIN;
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001072 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Jean Delvare729d6dd2009-06-19 16:58:18 +02001075 /* When registration returns, the driver core
David Brownell6e13e642007-05-01 23:26:31 +02001076 * will have called probe() for all matching-but-unbound devices.
1077 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 res = driver_register(&driver->driver);
1079 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +01001080 return res;
David Brownell438d6c22006-12-10 21:21:31 +01001081
Laurent Riffard35d8b2e2005-11-26 20:34:05 +01001082 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Jean Delvare4735c982008-07-14 22:38:36 +02001084 INIT_LIST_HEAD(&driver->clients);
1085 /* Walk the adapters that are already present */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001086 mutex_lock(&core_lock);
Jean Delvare69b00892009-12-06 17:06:27 +01001087 bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_new_driver);
Jean Delvarecaada322008-01-27 18:14:49 +01001088 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001089
Jean Delvare7eebcb72006-02-05 23:28:21 +01001090 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001092EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Jean Delvare69b00892009-12-06 17:06:27 +01001094static int __process_removed_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001095{
Jean Delvare4f8cf822009-09-18 22:45:46 +02001096 if (dev->type != &i2c_adapter_type)
1097 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001098 return i2c_do_del_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +02001099}
1100
David Brownella1d9e6e2007-05-01 23:26:30 +02001101/**
1102 * i2c_del_driver - unregister I2C driver
1103 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +02001104 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +02001105 */
Jean Delvareb3e82092007-05-01 23:26:32 +02001106void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Jean Delvarecaada322008-01-27 18:14:49 +01001108 mutex_lock(&core_lock);
Jean Delvare69b00892009-12-06 17:06:27 +01001109 bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_removed_driver);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001110 mutex_unlock(&core_lock);
David Brownella1d9e6e2007-05-01 23:26:30 +02001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 driver_unregister(&driver->driver);
Laurent Riffard35d8b2e2005-11-26 20:34:05 +01001113 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
David Brownellc0564602007-05-01 23:26:31 +02001115EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
David Brownell7b4fbc52007-05-01 23:26:30 +02001117/* ------------------------------------------------------------------------- */
1118
Jean Delvaree48d3312008-01-27 18:14:48 +01001119/**
1120 * i2c_use_client - increments the reference count of the i2c client structure
1121 * @client: the client being referenced
1122 *
1123 * Each live reference to a client should be refcounted. The driver model does
1124 * that automatically as part of driver binding, so that most drivers don't
1125 * need to do this explicitly: they hold a reference until they're unbound
1126 * from the device.
1127 *
1128 * A pointer to the client with the incremented reference counter is returned.
1129 */
1130struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
David Brownell6ea438e2008-07-14 22:38:24 +02001132 if (client && get_device(&client->dev))
1133 return client;
1134 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
David Brownellc0564602007-05-01 23:26:31 +02001136EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Jean Delvaree48d3312008-01-27 18:14:48 +01001138/**
1139 * i2c_release_client - release a use of the i2c client structure
1140 * @client: the client being no longer referenced
1141 *
1142 * Must be called when a user of a client is finished with it.
1143 */
1144void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
David Brownell6ea438e2008-07-14 22:38:24 +02001146 if (client)
1147 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
David Brownellc0564602007-05-01 23:26:31 +02001149EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
David Brownell9b766b82008-01-27 18:14:51 +01001151struct i2c_cmd_arg {
1152 unsigned cmd;
1153 void *arg;
1154};
1155
1156static int i2c_cmd(struct device *dev, void *_arg)
1157{
1158 struct i2c_client *client = i2c_verify_client(dev);
1159 struct i2c_cmd_arg *arg = _arg;
1160
1161 if (client && client->driver && client->driver->command)
1162 client->driver->command(client, arg->cmd, arg->arg);
1163 return 0;
1164}
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1167{
David Brownell9b766b82008-01-27 18:14:51 +01001168 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
David Brownell9b766b82008-01-27 18:14:51 +01001170 cmd_arg.cmd = cmd;
1171 cmd_arg.arg = arg;
1172 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
David Brownellc0564602007-05-01 23:26:31 +02001174EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176static int __init i2c_init(void)
1177{
1178 int retval;
1179
1180 retval = bus_register(&i2c_bus_type);
1181 if (retval)
1182 return retval;
Jean Delvare2bb50952009-09-18 22:45:46 +02001183#ifdef CONFIG_I2C_COMPAT
1184 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1185 if (!i2c_adapter_compat_class) {
1186 retval = -ENOMEM;
1187 goto bus_err;
1188 }
1189#endif
David Brownelle9f13732008-01-27 18:14:52 +01001190 retval = i2c_add_driver(&dummy_driver);
1191 if (retval)
Jean Delvare2bb50952009-09-18 22:45:46 +02001192 goto class_err;
David Brownelle9f13732008-01-27 18:14:52 +01001193 return 0;
1194
Jean Delvare2bb50952009-09-18 22:45:46 +02001195class_err:
1196#ifdef CONFIG_I2C_COMPAT
1197 class_compat_unregister(i2c_adapter_compat_class);
David Brownelle9f13732008-01-27 18:14:52 +01001198bus_err:
Jean Delvare2bb50952009-09-18 22:45:46 +02001199#endif
David Brownelle9f13732008-01-27 18:14:52 +01001200 bus_unregister(&i2c_bus_type);
1201 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
1204static void __exit i2c_exit(void)
1205{
David Brownelle9f13732008-01-27 18:14:52 +01001206 i2c_del_driver(&dummy_driver);
Jean Delvare2bb50952009-09-18 22:45:46 +02001207#ifdef CONFIG_I2C_COMPAT
1208 class_compat_unregister(i2c_adapter_compat_class);
1209#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 bus_unregister(&i2c_bus_type);
1211}
1212
David Brownella10f9e72008-10-14 17:30:06 +02001213/* We must initialize early, because some subsystems register i2c drivers
1214 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1215 */
1216postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217module_exit(i2c_exit);
1218
1219/* ----------------------------------------------------
1220 * the functional interface to the i2c busses.
1221 * ----------------------------------------------------
1222 */
1223
David Brownella1cdeda2008-07-14 22:38:24 +02001224/**
1225 * i2c_transfer - execute a single or combined I2C message
1226 * @adap: Handle to I2C bus
1227 * @msgs: One or more messages to execute before STOP is issued to
1228 * terminate the operation; each message begins with a START.
1229 * @num: Number of messages to be executed.
1230 *
1231 * Returns negative errno, else the number of messages executed.
1232 *
1233 * Note that there is no requirement that each message be sent to
1234 * the same slave address, although that is the most common model.
1235 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001236int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Clifford Wolf66b650f2009-06-15 18:01:46 +02001238 unsigned long orig_jiffies;
1239 int ret, try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
David Brownella1cdeda2008-07-14 22:38:24 +02001241 /* REVISIT the fault reporting model here is weak:
1242 *
1243 * - When we get an error after receiving N bytes from a slave,
1244 * there is no way to report "N".
1245 *
1246 * - When we get a NAK after transmitting N bytes to a slave,
1247 * there is no way to report "N" ... or to let the master
1248 * continue executing the rest of this combined message, if
1249 * that's the appropriate response.
1250 *
1251 * - When for example "num" is two and we successfully complete
1252 * the first message but get an error part way through the
1253 * second, it's unclear whether that should be reported as
1254 * one (discarding status on the second message) or errno
1255 * (discarding status on the first one).
1256 */
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (adap->algo->master_xfer) {
1259#ifdef DEBUG
1260 for (ret = 0; ret < num; ret++) {
1261 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02001262 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1263 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1264 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266#endif
1267
Mike Rapoportcea443a2008-01-27 18:14:50 +01001268 if (in_atomic() || irqs_disabled()) {
Jean Delvarefe61e072010-08-11 18:20:58 +02001269 ret = i2c_trylock_adapter(adap);
Mike Rapoportcea443a2008-01-27 18:14:50 +01001270 if (!ret)
1271 /* I2C activity is ongoing. */
1272 return -EAGAIN;
1273 } else {
Jean Delvarefe61e072010-08-11 18:20:58 +02001274 i2c_lock_adapter(adap);
Mike Rapoportcea443a2008-01-27 18:14:50 +01001275 }
1276
Clifford Wolf66b650f2009-06-15 18:01:46 +02001277 /* Retry automatically on arbitration loss */
1278 orig_jiffies = jiffies;
1279 for (ret = 0, try = 0; try <= adap->retries; try++) {
1280 ret = adap->algo->master_xfer(adap, msgs, num);
1281 if (ret != -EAGAIN)
1282 break;
1283 if (time_after(jiffies, orig_jiffies + adap->timeout))
1284 break;
1285 }
Jean Delvarefe61e072010-08-11 18:20:58 +02001286 i2c_unlock_adapter(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 return ret;
1289 } else {
1290 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001291 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293}
David Brownellc0564602007-05-01 23:26:31 +02001294EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
David Brownella1cdeda2008-07-14 22:38:24 +02001296/**
1297 * i2c_master_send - issue a single I2C message in master transmit mode
1298 * @client: Handle to slave device
1299 * @buf: Data that will be written to the slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01001300 * @count: How many bytes to write, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02001301 *
1302 * Returns negative errno, or else the number of bytes written.
1303 */
Farid Hammane7225acf2010-05-21 18:40:58 +02001304int i2c_master_send(struct i2c_client *client, const char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 int ret;
Farid Hammane7225acf2010-05-21 18:40:58 +02001307 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct i2c_msg msg;
1309
Jean Delvare815f55f2005-05-07 22:58:46 +02001310 msg.addr = client->addr;
1311 msg.flags = client->flags & I2C_M_TEN;
1312 msg.len = count;
1313 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01001314
Jean Delvare815f55f2005-05-07 22:58:46 +02001315 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Jean Delvare815f55f2005-05-07 22:58:46 +02001317 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1318 transmitted, else error code. */
1319 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
David Brownellc0564602007-05-01 23:26:31 +02001321EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
David Brownella1cdeda2008-07-14 22:38:24 +02001323/**
1324 * i2c_master_recv - issue a single I2C message in master receive mode
1325 * @client: Handle to slave device
1326 * @buf: Where to store data read from slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01001327 * @count: How many bytes to read, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02001328 *
1329 * Returns negative errno, or else the number of bytes read.
1330 */
Farid Hammane7225acf2010-05-21 18:40:58 +02001331int i2c_master_recv(struct i2c_client *client, char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Farid Hammane7225acf2010-05-21 18:40:58 +02001333 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 struct i2c_msg msg;
1335 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Jean Delvare815f55f2005-05-07 22:58:46 +02001337 msg.addr = client->addr;
1338 msg.flags = client->flags & I2C_M_TEN;
1339 msg.flags |= I2C_M_RD;
1340 msg.len = count;
1341 msg.buf = buf;
1342
1343 ret = i2c_transfer(adap, &msg, 1);
1344
1345 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1346 transmitted, else error code. */
1347 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
David Brownellc0564602007-05-01 23:26:31 +02001349EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351/* ----------------------------------------------------
1352 * the i2c address scanning function
1353 * Will not work for 10-bit addresses!
1354 * ----------------------------------------------------
1355 */
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001356
Jean Delvare63e4e802010-06-03 11:33:51 +02001357/*
1358 * Legacy default probe function, mostly relevant for SMBus. The default
1359 * probe method is a quick write, but it is known to corrupt the 24RF08
1360 * EEPROMs due to a state machine bug, and could also irreversibly
1361 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
1362 * we use a short byte read instead. Also, some bus drivers don't implement
1363 * quick write, so we fallback to a byte read in that case too.
1364 * On x86, there is another special case for FSC hardware monitoring chips,
1365 * which want regular byte reads (address 0x73.) Fortunately, these are the
1366 * only known chips using this I2C address on PC hardware.
1367 * Returns 1 if probe succeeded, 0 if not.
1368 */
1369static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
1370{
1371 int err;
1372 union i2c_smbus_data dummy;
1373
1374#ifdef CONFIG_X86
1375 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
1376 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
1377 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1378 I2C_SMBUS_BYTE_DATA, &dummy);
1379 else
1380#endif
Jean Delvare8031d792010-08-11 18:21:00 +02001381 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
1382 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
Jean Delvare63e4e802010-06-03 11:33:51 +02001383 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
1384 I2C_SMBUS_QUICK, NULL);
Jean Delvare8031d792010-08-11 18:21:00 +02001385 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
1386 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1387 I2C_SMBUS_BYTE, &dummy);
1388 else {
1389 dev_warn(&adap->dev, "No suitable probing method supported\n");
1390 err = -EOPNOTSUPP;
1391 }
Jean Delvare63e4e802010-06-03 11:33:51 +02001392
1393 return err >= 0;
1394}
1395
Jean Delvareccfbbd02009-12-06 17:06:25 +01001396static int i2c_detect_address(struct i2c_client *temp_client,
Jean Delvare4735c982008-07-14 22:38:36 +02001397 struct i2c_driver *driver)
1398{
1399 struct i2c_board_info info;
1400 struct i2c_adapter *adapter = temp_client->adapter;
1401 int addr = temp_client->addr;
1402 int err;
1403
1404 /* Make sure the address is valid */
Jean Delvare656b8762010-06-03 11:33:53 +02001405 err = i2c_check_addr_validity(addr);
1406 if (err) {
Jean Delvare4735c982008-07-14 22:38:36 +02001407 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1408 addr);
Jean Delvare656b8762010-06-03 11:33:53 +02001409 return err;
Jean Delvare4735c982008-07-14 22:38:36 +02001410 }
1411
1412 /* Skip if already in use */
Jean Delvare3b5f7942010-06-03 11:33:55 +02001413 if (i2c_check_addr_busy(adapter, addr))
Jean Delvare4735c982008-07-14 22:38:36 +02001414 return 0;
1415
Jean Delvareccfbbd02009-12-06 17:06:25 +01001416 /* Make sure there is something at this address */
Jean Delvare63e4e802010-06-03 11:33:51 +02001417 if (!i2c_default_probe(adapter, addr))
1418 return 0;
Jean Delvare4735c982008-07-14 22:38:36 +02001419
1420 /* Finally call the custom detection function */
1421 memset(&info, 0, sizeof(struct i2c_board_info));
1422 info.addr = addr;
Jean Delvare310ec792009-12-14 21:17:23 +01001423 err = driver->detect(temp_client, &info);
Jean Delvare4735c982008-07-14 22:38:36 +02001424 if (err) {
1425 /* -ENODEV is returned if the detection fails. We catch it
1426 here as this isn't an error. */
1427 return err == -ENODEV ? 0 : err;
1428 }
1429
1430 /* Consistency check */
1431 if (info.type[0] == '\0') {
1432 dev_err(&adapter->dev, "%s detection function provided "
1433 "no name for 0x%x\n", driver->driver.name,
1434 addr);
1435 } else {
1436 struct i2c_client *client;
1437
1438 /* Detection succeeded, instantiate the device */
1439 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1440 info.type, info.addr);
1441 client = i2c_new_device(adapter, &info);
1442 if (client)
1443 list_add_tail(&client->detected, &driver->clients);
1444 else
1445 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1446 info.type, info.addr);
1447 }
1448 return 0;
1449}
1450
1451static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1452{
Jean Delvarec3813d62009-12-14 21:17:25 +01001453 const unsigned short *address_list;
Jean Delvare4735c982008-07-14 22:38:36 +02001454 struct i2c_client *temp_client;
1455 int i, err = 0;
1456 int adap_id = i2c_adapter_id(adapter);
1457
Jean Delvarec3813d62009-12-14 21:17:25 +01001458 address_list = driver->address_list;
1459 if (!driver->detect || !address_list)
Jean Delvare4735c982008-07-14 22:38:36 +02001460 return 0;
1461
1462 /* Set up a temporary client to help detect callback */
1463 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1464 if (!temp_client)
1465 return -ENOMEM;
1466 temp_client->adapter = adapter;
1467
Jean Delvare4329cf82008-08-28 08:33:23 +02001468 /* Stop here if the classes do not match */
1469 if (!(adapter->class & driver->class))
1470 goto exit_free;
1471
Jean Delvarec3813d62009-12-14 21:17:25 +01001472 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
Jean Delvare4735c982008-07-14 22:38:36 +02001473 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
Jean Delvarec3813d62009-12-14 21:17:25 +01001474 "addr 0x%02x\n", adap_id, address_list[i]);
1475 temp_client->addr = address_list[i];
Jean Delvareccfbbd02009-12-06 17:06:25 +01001476 err = i2c_detect_address(temp_client, driver);
Jean Delvare4735c982008-07-14 22:38:36 +02001477 if (err)
1478 goto exit_free;
1479 }
1480
1481 exit_free:
1482 kfree(temp_client);
1483 return err;
1484}
1485
Jean Delvared44f19d2010-08-11 18:20:57 +02001486int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
1487{
1488 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1489 I2C_SMBUS_QUICK, NULL) >= 0;
1490}
1491EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
1492
Jean Delvare12b5053a2007-05-01 23:26:31 +02001493struct i2c_client *
1494i2c_new_probed_device(struct i2c_adapter *adap,
1495 struct i2c_board_info *info,
Jean Delvare9a942412010-08-11 18:20:56 +02001496 unsigned short const *addr_list,
1497 int (*probe)(struct i2c_adapter *, unsigned short addr))
Jean Delvare12b5053a2007-05-01 23:26:31 +02001498{
1499 int i;
1500
Jean Delvare8031d792010-08-11 18:21:00 +02001501 if (!probe)
Jean Delvare9a942412010-08-11 18:20:56 +02001502 probe = i2c_default_probe;
Jean Delvare12b5053a2007-05-01 23:26:31 +02001503
Jean Delvare12b5053a2007-05-01 23:26:31 +02001504 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1505 /* Check address validity */
Jean Delvare656b8762010-06-03 11:33:53 +02001506 if (i2c_check_addr_validity(addr_list[i]) < 0) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02001507 dev_warn(&adap->dev, "Invalid 7-bit address "
1508 "0x%02x\n", addr_list[i]);
1509 continue;
1510 }
1511
1512 /* Check address availability */
Jean Delvare3b5f7942010-06-03 11:33:55 +02001513 if (i2c_check_addr_busy(adap, addr_list[i])) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02001514 dev_dbg(&adap->dev, "Address 0x%02x already in "
1515 "use, not probing\n", addr_list[i]);
1516 continue;
1517 }
1518
Jean Delvare63e4e802010-06-03 11:33:51 +02001519 /* Test address responsiveness */
Jean Delvare9a942412010-08-11 18:20:56 +02001520 if (probe(adap, addr_list[i]))
Jean Delvare63e4e802010-06-03 11:33:51 +02001521 break;
Jean Delvare12b5053a2007-05-01 23:26:31 +02001522 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02001523
1524 if (addr_list[i] == I2C_CLIENT_END) {
1525 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1526 return NULL;
1527 }
1528
1529 info->addr = addr_list[i];
1530 return i2c_new_device(adap, info);
1531}
1532EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1533
Farid Hammane7225acf2010-05-21 18:40:58 +02001534struct i2c_adapter *i2c_get_adapter(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01001537
Jean Delvarecaada322008-01-27 18:14:49 +01001538 mutex_lock(&core_lock);
Jack Stone1cf92b42009-06-15 18:01:46 +02001539 adapter = idr_find(&i2c_adapter_idr, id);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001540 if (adapter && !try_module_get(adapter->owner))
1541 adapter = NULL;
1542
Jean Delvarecaada322008-01-27 18:14:49 +01001543 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001544 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
David Brownellc0564602007-05-01 23:26:31 +02001546EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548void i2c_put_adapter(struct i2c_adapter *adap)
1549{
1550 module_put(adap->owner);
1551}
David Brownellc0564602007-05-01 23:26:31 +02001552EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554/* The SMBus parts */
1555
David Brownell438d6c22006-12-10 21:21:31 +01001556#define POLY (0x1070U << 3)
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001557static u8 crc8(u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 int i;
David Brownell438d6c22006-12-10 21:21:31 +01001560
Farid Hammane7225acf2010-05-21 18:40:58 +02001561 for (i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01001562 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 data = data ^ POLY;
1564 data = data << 1;
1565 }
1566 return (u8)(data >> 8);
1567}
1568
Jean Delvare421ef472005-10-26 21:28:55 +02001569/* Incremental CRC8 over count bytes in the array pointed to by p */
1570static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 int i;
1573
Farid Hammane7225acf2010-05-21 18:40:58 +02001574 for (i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02001575 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 return crc;
1577}
1578
Jean Delvare421ef472005-10-26 21:28:55 +02001579/* Assume a 7-bit address, which is reasonable for SMBus */
1580static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Jean Delvare421ef472005-10-26 21:28:55 +02001582 /* The address will be sent first */
1583 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1584 pec = i2c_smbus_pec(pec, &addr, 1);
1585
1586 /* The data buffer follows */
1587 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Jean Delvare421ef472005-10-26 21:28:55 +02001590/* Used for write only transactions */
1591static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Jean Delvare421ef472005-10-26 21:28:55 +02001593 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1594 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Jean Delvare421ef472005-10-26 21:28:55 +02001597/* Return <0 on CRC error
1598 If there was a write before this read (most cases) we need to take the
1599 partial CRC from the write part into account.
1600 Note that this function does modify the message (we need to decrease the
1601 message length to hide the CRC byte from the caller). */
1602static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Jean Delvare421ef472005-10-26 21:28:55 +02001604 u8 rpec = msg->buf[--msg->len];
1605 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (rpec != cpec) {
1608 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1609 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02001610 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
David Brownell438d6c22006-12-10 21:21:31 +01001612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
David Brownella1cdeda2008-07-14 22:38:24 +02001615/**
1616 * i2c_smbus_read_byte - SMBus "receive byte" protocol
1617 * @client: Handle to slave device
1618 *
1619 * This executes the SMBus "receive byte" protocol, returning negative errno
1620 * else the byte received from the device.
1621 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622s32 i2c_smbus_read_byte(struct i2c_client *client)
1623{
1624 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001625 int status;
1626
1627 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1628 I2C_SMBUS_READ, 0,
1629 I2C_SMBUS_BYTE, &data);
1630 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
David Brownellc0564602007-05-01 23:26:31 +02001632EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
David Brownella1cdeda2008-07-14 22:38:24 +02001634/**
1635 * i2c_smbus_write_byte - SMBus "send byte" protocol
1636 * @client: Handle to slave device
1637 * @value: Byte to be sent
1638 *
1639 * This executes the SMBus "send byte" protocol, returning negative errno
1640 * else zero on success.
1641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1643{
Farid Hammane7225acf2010-05-21 18:40:58 +02001644 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02001645 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
David Brownellc0564602007-05-01 23:26:31 +02001647EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
David Brownella1cdeda2008-07-14 22:38:24 +02001649/**
1650 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1651 * @client: Handle to slave device
1652 * @command: Byte interpreted by slave
1653 *
1654 * This executes the SMBus "read byte" protocol, returning negative errno
1655 * else a data byte received from the device.
1656 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1658{
1659 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001660 int status;
1661
1662 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1663 I2C_SMBUS_READ, command,
1664 I2C_SMBUS_BYTE_DATA, &data);
1665 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
David Brownellc0564602007-05-01 23:26:31 +02001667EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
David Brownella1cdeda2008-07-14 22:38:24 +02001669/**
1670 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1671 * @client: Handle to slave device
1672 * @command: Byte interpreted by slave
1673 * @value: Byte being written
1674 *
1675 * This executes the SMBus "write byte" protocol, returning negative errno
1676 * else zero on success.
1677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1679{
1680 union i2c_smbus_data data;
1681 data.byte = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02001682 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1683 I2C_SMBUS_WRITE, command,
1684 I2C_SMBUS_BYTE_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
David Brownellc0564602007-05-01 23:26:31 +02001686EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
David Brownella1cdeda2008-07-14 22:38:24 +02001688/**
1689 * i2c_smbus_read_word_data - SMBus "read word" protocol
1690 * @client: Handle to slave device
1691 * @command: Byte interpreted by slave
1692 *
1693 * This executes the SMBus "read word" protocol, returning negative errno
1694 * else a 16-bit unsigned "word" received from the device.
1695 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1697{
1698 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001699 int status;
1700
1701 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1702 I2C_SMBUS_READ, command,
1703 I2C_SMBUS_WORD_DATA, &data);
1704 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
David Brownellc0564602007-05-01 23:26:31 +02001706EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
David Brownella1cdeda2008-07-14 22:38:24 +02001708/**
1709 * i2c_smbus_write_word_data - SMBus "write word" protocol
1710 * @client: Handle to slave device
1711 * @command: Byte interpreted by slave
1712 * @value: 16-bit "word" being written
1713 *
1714 * This executes the SMBus "write word" protocol, returning negative errno
1715 * else zero on success.
1716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1718{
1719 union i2c_smbus_data data;
1720 data.word = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02001721 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1722 I2C_SMBUS_WRITE, command,
1723 I2C_SMBUS_WORD_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
David Brownellc0564602007-05-01 23:26:31 +02001725EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
David Brownella64ec072007-10-13 23:56:31 +02001727/**
Prakash Mortha596c88f2008-10-14 17:30:06 +02001728 * i2c_smbus_process_call - SMBus "process call" protocol
1729 * @client: Handle to slave device
1730 * @command: Byte interpreted by slave
1731 * @value: 16-bit "word" being written
1732 *
1733 * This executes the SMBus "process call" protocol, returning negative errno
1734 * else a 16-bit unsigned "word" received from the device.
1735 */
1736s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value)
1737{
1738 union i2c_smbus_data data;
1739 int status;
1740 data.word = value;
1741
1742 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1743 I2C_SMBUS_WRITE, command,
1744 I2C_SMBUS_PROC_CALL, &data);
1745 return (status < 0) ? status : data.word;
1746}
1747EXPORT_SYMBOL(i2c_smbus_process_call);
1748
1749/**
David Brownella1cdeda2008-07-14 22:38:24 +02001750 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02001751 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02001752 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02001753 * @values: Byte array into which data will be read; big enough to hold
1754 * the data returned by the slave. SMBus allows at most 32 bytes.
1755 *
David Brownella1cdeda2008-07-14 22:38:24 +02001756 * This executes the SMBus "block read" protocol, returning negative errno
1757 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02001758 *
1759 * Note that using this function requires that the client's adapter support
1760 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
1761 * support this; its emulation through I2C messaging relies on a specific
1762 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1763 */
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001764s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1765 u8 *values)
1766{
1767 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001768 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001769
David Brownell24a5bb72008-07-14 22:38:23 +02001770 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1771 I2C_SMBUS_READ, command,
1772 I2C_SMBUS_BLOCK_DATA, &data);
1773 if (status)
1774 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001775
1776 memcpy(values, &data.block[1], data.block[0]);
1777 return data.block[0];
1778}
1779EXPORT_SYMBOL(i2c_smbus_read_block_data);
1780
David Brownella1cdeda2008-07-14 22:38:24 +02001781/**
1782 * i2c_smbus_write_block_data - SMBus "block write" protocol
1783 * @client: Handle to slave device
1784 * @command: Byte interpreted by slave
1785 * @length: Size of data block; SMBus allows at most 32 bytes
1786 * @values: Byte array which will be written.
1787 *
1788 * This executes the SMBus "block write" protocol, returning negative errno
1789 * else zero on success.
1790 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001792 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
1794 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (length > I2C_SMBUS_BLOCK_MAX)
1797 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01001799 memcpy(&data.block[1], values, length);
Farid Hammane7225acf2010-05-21 18:40:58 +02001800 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1801 I2C_SMBUS_WRITE, command,
1802 I2C_SMBUS_BLOCK_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
David Brownellc0564602007-05-01 23:26:31 +02001804EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806/* Returns the number of read bytes */
Jean Delvare4b2643d2007-07-12 14:12:29 +02001807s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1808 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001811 int status;
Jean Delvare76560322006-01-18 23:14:55 +01001812
Jean Delvare4b2643d2007-07-12 14:12:29 +02001813 if (length > I2C_SMBUS_BLOCK_MAX)
1814 length = I2C_SMBUS_BLOCK_MAX;
1815 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02001816 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1817 I2C_SMBUS_READ, command,
1818 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1819 if (status < 0)
1820 return status;
Jean Delvare76560322006-01-18 23:14:55 +01001821
1822 memcpy(values, &data.block[1], data.block[0]);
1823 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
David Brownellc0564602007-05-01 23:26:31 +02001825EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Jean Delvare21bbd692006-01-09 15:19:18 +11001827s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001828 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11001829{
1830 union i2c_smbus_data data;
1831
1832 if (length > I2C_SMBUS_BLOCK_MAX)
1833 length = I2C_SMBUS_BLOCK_MAX;
1834 data.block[0] = length;
1835 memcpy(data.block + 1, values, length);
1836 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1837 I2C_SMBUS_WRITE, command,
1838 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1839}
David Brownellc0564602007-05-01 23:26:31 +02001840EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11001841
David Brownell438d6c22006-12-10 21:21:31 +01001842/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 No checking of parameters is done! */
Farid Hammane7225acf2010-05-21 18:40:58 +02001844static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
1845 unsigned short flags,
1846 char read_write, u8 command, int size,
1847 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 /* So we need to generate a series of msgs. In the case of writing, we
1850 need to use only one message; when reading, we need two. We initialize
1851 most things with sane defaults, to keep the code below somewhat
1852 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001853 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1854 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Farid Hammane7225acf2010-05-21 18:40:58 +02001855 int num = read_write == I2C_SMBUS_READ ? 2 : 1;
David Brownell438d6c22006-12-10 21:21:31 +01001856 struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 { addr, flags | I2C_M_RD, 0, msgbuf1 }
1858 };
1859 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02001860 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02001861 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 msgbuf0[0] = command;
Farid Hammane7225acf2010-05-21 18:40:58 +02001864 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 case I2C_SMBUS_QUICK:
1866 msg[0].len = 0;
1867 /* Special case: The read/write field is used as data */
Roel Kluinf29d2e02009-02-24 19:19:48 +01001868 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
1869 I2C_M_RD : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 num = 1;
1871 break;
1872 case I2C_SMBUS_BYTE:
1873 if (read_write == I2C_SMBUS_READ) {
1874 /* Special case: only a read! */
1875 msg[0].flags = I2C_M_RD | flags;
1876 num = 1;
1877 }
1878 break;
1879 case I2C_SMBUS_BYTE_DATA:
1880 if (read_write == I2C_SMBUS_READ)
1881 msg[1].len = 1;
1882 else {
1883 msg[0].len = 2;
1884 msgbuf0[1] = data->byte;
1885 }
1886 break;
1887 case I2C_SMBUS_WORD_DATA:
1888 if (read_write == I2C_SMBUS_READ)
1889 msg[1].len = 2;
1890 else {
Farid Hammane7225acf2010-05-21 18:40:58 +02001891 msg[0].len = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001893 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895 break;
1896 case I2C_SMBUS_PROC_CALL:
1897 num = 2; /* Special case */
1898 read_write = I2C_SMBUS_READ;
1899 msg[0].len = 3;
1900 msg[1].len = 2;
1901 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001902 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 break;
1904 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02001906 msg[1].flags |= I2C_M_RECV_LEN;
1907 msg[1].len = 1; /* block length will be added by
1908 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 } else {
1910 msg[0].len = data->block[0] + 2;
1911 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02001912 dev_err(&adapter->dev,
1913 "Invalid block write size %d\n",
1914 data->block[0]);
1915 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001917 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 msgbuf0[i] = data->block[i-1];
1919 }
1920 break;
1921 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02001922 num = 2; /* Another special case */
1923 read_write = I2C_SMBUS_READ;
1924 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02001925 dev_err(&adapter->dev,
1926 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02001927 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02001928 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02001929 }
1930 msg[0].len = data->block[0] + 2;
1931 for (i = 1; i < msg[0].len; i++)
1932 msgbuf0[i] = data->block[i-1];
1933 msg[1].flags |= I2C_M_RECV_LEN;
1934 msg[1].len = 1; /* block length will be added by
1935 the underlying bus driver */
1936 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 case I2C_SMBUS_I2C_BLOCK_DATA:
1938 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02001939 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 } else {
1941 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02001942 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02001943 dev_err(&adapter->dev,
1944 "Invalid block write size %d\n",
1945 data->block[0]);
1946 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
1948 for (i = 1; i <= data->block[0]; i++)
1949 msgbuf0[i] = data->block[i];
1950 }
1951 break;
1952 default:
David Brownell24a5bb72008-07-14 22:38:23 +02001953 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1954 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956
Jean Delvare421ef472005-10-26 21:28:55 +02001957 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1958 && size != I2C_SMBUS_I2C_BLOCK_DATA);
1959 if (i) {
1960 /* Compute PEC if first message is a write */
1961 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01001962 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02001963 i2c_smbus_add_pec(&msg[0]);
1964 else /* Write followed by read */
1965 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1966 }
1967 /* Ask for PEC if last message is a read */
1968 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01001969 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02001970 }
1971
David Brownell24a5bb72008-07-14 22:38:23 +02001972 status = i2c_transfer(adapter, msg, num);
1973 if (status < 0)
1974 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Jean Delvare421ef472005-10-26 21:28:55 +02001976 /* Check PEC if last message is a read */
1977 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02001978 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1979 if (status < 0)
1980 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02001981 }
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (read_write == I2C_SMBUS_READ)
Farid Hammane7225acf2010-05-21 18:40:58 +02001984 switch (size) {
1985 case I2C_SMBUS_BYTE:
1986 data->byte = msgbuf0[0];
1987 break;
1988 case I2C_SMBUS_BYTE_DATA:
1989 data->byte = msgbuf1[0];
1990 break;
1991 case I2C_SMBUS_WORD_DATA:
1992 case I2C_SMBUS_PROC_CALL:
1993 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1994 break;
1995 case I2C_SMBUS_I2C_BLOCK_DATA:
1996 for (i = 0; i < data->block[0]; i++)
1997 data->block[i+1] = msgbuf1[i];
1998 break;
1999 case I2C_SMBUS_BLOCK_DATA:
2000 case I2C_SMBUS_BLOCK_PROC_CALL:
2001 for (i = 0; i < msgbuf1[0] + 1; i++)
2002 data->block[i] = msgbuf1[i];
2003 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
2005 return 0;
2006}
2007
David Brownella1cdeda2008-07-14 22:38:24 +02002008/**
2009 * i2c_smbus_xfer - execute SMBus protocol operations
2010 * @adapter: Handle to I2C bus
2011 * @addr: Address of SMBus slave on that bus
2012 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
2013 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
2014 * @command: Byte interpreted by slave, for protocols which use such bytes
2015 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
2016 * @data: Data to be read or written
2017 *
2018 * This executes an SMBus protocol operation, and returns a negative
2019 * errno code else zero on success.
2020 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002021s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02002022 char read_write, u8 command, int protocol,
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002023 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
Clifford Wolf66b650f2009-06-15 18:01:46 +02002025 unsigned long orig_jiffies;
2026 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 flags &= I2C_M_TEN | I2C_CLIENT_PEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 if (adapter->algo->smbus_xfer) {
Jean Delvarefe61e072010-08-11 18:20:58 +02002032 i2c_lock_adapter(adapter);
Clifford Wolf66b650f2009-06-15 18:01:46 +02002033
2034 /* Retry automatically on arbitration loss */
2035 orig_jiffies = jiffies;
2036 for (res = 0, try = 0; try <= adapter->retries; try++) {
2037 res = adapter->algo->smbus_xfer(adapter, addr, flags,
2038 read_write, command,
2039 protocol, data);
2040 if (res != -EAGAIN)
2041 break;
2042 if (time_after(jiffies,
2043 orig_jiffies + adapter->timeout))
2044 break;
2045 }
Jean Delvarefe61e072010-08-11 18:20:58 +02002046 i2c_unlock_adapter(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 } else
Farid Hammane7225acf2010-05-21 18:40:58 +02002048 res = i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
David Brownella1cdeda2008-07-14 22:38:24 +02002049 command, protocol, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return res;
2052}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2056MODULE_DESCRIPTION("I2C-Bus main module");
2057MODULE_LICENSE("GPL");