blob: 635c488262c0ccbc684ad8d0ca35b43833447d90 [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>
Russell Kingd052d1b2005-10-29 19:07:23 +010032#include <linux/platform_device.h>
Arjan van de Venb3585e42006-01-11 10:50:26 +010033#include <linux/mutex.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010034#include <linux/completion.h>
Mike Rapoportcea443a2008-01-27 18:14:50 +010035#include <linux/hardirq.h>
36#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
38
David Brownell9c1600e2007-05-01 23:26:31 +020039#include "i2c-core.h"
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jean Delvarecaada322008-01-27 18:14:49 +010042static DEFINE_MUTEX(core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static DEFINE_IDR(i2c_adapter_idr);
44
Jean Delvare4735c982008-07-14 22:38:36 +020045#define is_newstyle_driver(d) ((d)->probe || (d)->remove || (d)->detect)
46
47static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010048
49/* ------------------------------------------------------------------------- */
50
Jean Delvared2653e92008-04-29 23:11:39 +020051static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
52 const struct i2c_client *client)
53{
54 while (id->name[0]) {
55 if (strcmp(client->name, id->name) == 0)
56 return id;
57 id++;
58 }
59 return NULL;
60}
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int i2c_device_match(struct device *dev, struct device_driver *drv)
63{
David Brownell7b4fbc52007-05-01 23:26:30 +020064 struct i2c_client *client = to_i2c_client(dev);
65 struct i2c_driver *driver = to_i2c_driver(drv);
66
67 /* make legacy i2c drivers bypass driver model probing entirely;
68 * such drivers scan each i2c adapter/bus themselves.
69 */
David Brownella1d9e6e2007-05-01 23:26:30 +020070 if (!is_newstyle_driver(driver))
David Brownell7b4fbc52007-05-01 23:26:30 +020071 return 0;
72
Jean Delvared2653e92008-04-29 23:11:39 +020073 /* match on an id table if there is one */
74 if (driver->id_table)
75 return i2c_match_id(driver->id_table, client) != NULL;
76
Jean Delvareeb8a7902008-05-18 20:49:41 +020077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
David Brownell7b4fbc52007-05-01 23:26:30 +020080#ifdef CONFIG_HOTPLUG
81
82/* uevent helps with hotplug: modprobe -q $(MODALIAS) */
Kay Sievers7eff2e72007-08-14 15:15:12 +020083static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +020084{
85 struct i2c_client *client = to_i2c_client(dev);
David Brownell7b4fbc52007-05-01 23:26:30 +020086
87 /* by definition, legacy drivers can't hotplug */
Jean Delvared2653e92008-04-29 23:11:39 +020088 if (dev->driver)
David Brownell7b4fbc52007-05-01 23:26:30 +020089 return 0;
90
Jean Delvareeb8a7902008-05-18 20:49:41 +020091 if (add_uevent_var(env, "MODALIAS=%s%s",
92 I2C_MODULE_PREFIX, client->name))
93 return -ENOMEM;
David Brownell7b4fbc52007-05-01 23:26:30 +020094 dev_dbg(dev, "uevent\n");
95 return 0;
96}
97
98#else
99#define i2c_device_uevent NULL
100#endif /* CONFIG_HOTPLUG */
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int i2c_device_probe(struct device *dev)
103{
David Brownell7b4fbc52007-05-01 23:26:30 +0200104 struct i2c_client *client = to_i2c_client(dev);
105 struct i2c_driver *driver = to_i2c_driver(dev->driver);
Hans Verkuil50c33042008-03-12 14:15:00 +0100106 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200107
Jean Delvaree0457442008-07-14 22:38:30 +0200108 if (!driver->probe || !driver->id_table)
David Brownell7b4fbc52007-05-01 23:26:30 +0200109 return -ENODEV;
110 client->driver = driver;
Marc Pignatee354252008-08-28 08:33:22 +0200111 if (!device_can_wakeup(&client->dev))
112 device_init_wakeup(&client->dev,
113 client->flags & I2C_CLIENT_WAKE);
David Brownell7b4fbc52007-05-01 23:26:30 +0200114 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200115
Jean Delvaree0457442008-07-14 22:38:30 +0200116 status = driver->probe(client, i2c_match_id(driver->id_table, client));
Hans Verkuil50c33042008-03-12 14:15:00 +0100117 if (status)
118 client->driver = NULL;
119 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static int i2c_device_remove(struct device *dev)
123{
David Brownella1d9e6e2007-05-01 23:26:30 +0200124 struct i2c_client *client = to_i2c_client(dev);
125 struct i2c_driver *driver;
126 int status;
127
128 if (!dev->driver)
129 return 0;
130
131 driver = to_i2c_driver(dev->driver);
132 if (driver->remove) {
133 dev_dbg(dev, "remove\n");
134 status = driver->remove(client);
135 } else {
136 dev->driver = NULL;
137 status = 0;
138 }
139 if (status == 0)
140 client->driver = NULL;
141 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
David Brownellf37dd802007-02-13 22:09:00 +0100144static void i2c_device_shutdown(struct device *dev)
145{
146 struct i2c_driver *driver;
147
148 if (!dev->driver)
149 return;
150 driver = to_i2c_driver(dev->driver);
151 if (driver->shutdown)
152 driver->shutdown(to_i2c_client(dev));
153}
154
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100155static int i2c_device_suspend(struct device *dev, pm_message_t mesg)
David Brownellf37dd802007-02-13 22:09:00 +0100156{
157 struct i2c_driver *driver;
158
159 if (!dev->driver)
160 return 0;
161 driver = to_i2c_driver(dev->driver);
162 if (!driver->suspend)
163 return 0;
164 return driver->suspend(to_i2c_client(dev), mesg);
165}
166
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100167static int i2c_device_resume(struct device *dev)
David Brownellf37dd802007-02-13 22:09:00 +0100168{
169 struct i2c_driver *driver;
170
171 if (!dev->driver)
172 return 0;
173 driver = to_i2c_driver(dev->driver);
174 if (!driver->resume)
175 return 0;
176 return driver->resume(to_i2c_client(dev));
177}
178
David Brownell7b4fbc52007-05-01 23:26:30 +0200179static void i2c_client_release(struct device *dev)
180{
181 struct i2c_client *client = to_i2c_client(dev);
182 complete(&client->released);
183}
184
David Brownell9c1600e2007-05-01 23:26:31 +0200185static void i2c_client_dev_release(struct device *dev)
186{
187 kfree(to_i2c_client(dev));
188}
189
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100190static ssize_t
191show_client_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200192{
193 struct i2c_client *client = to_i2c_client(dev);
194 return sprintf(buf, "%s\n", client->name);
195}
196
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100197static ssize_t
198show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200199{
200 struct i2c_client *client = to_i2c_client(dev);
Jean Delvareeb8a7902008-05-18 20:49:41 +0200201 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200202}
203
204static struct device_attribute i2c_dev_attrs[] = {
205 __ATTR(name, S_IRUGO, show_client_name, NULL),
206 /* modalias helps coldplug: modprobe $(cat .../modalias) */
207 __ATTR(modalias, S_IRUGO, show_modalias, NULL),
208 { },
209};
210
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200211struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100212 .name = "i2c",
David Brownell7b4fbc52007-05-01 23:26:30 +0200213 .dev_attrs = i2c_dev_attrs,
David Brownellf37dd802007-02-13 22:09:00 +0100214 .match = i2c_device_match,
David Brownell7b4fbc52007-05-01 23:26:30 +0200215 .uevent = i2c_device_uevent,
David Brownellf37dd802007-02-13 22:09:00 +0100216 .probe = i2c_device_probe,
217 .remove = i2c_device_remove,
218 .shutdown = i2c_device_shutdown,
219 .suspend = i2c_device_suspend,
220 .resume = i2c_device_resume,
Russell Kingb864c7d2006-01-05 14:37:50 +0000221};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200222EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000223
David Brownell9b766b82008-01-27 18:14:51 +0100224
225/**
226 * i2c_verify_client - return parameter as i2c_client, or NULL
227 * @dev: device, probably from some driver model iterator
228 *
229 * When traversing the driver model tree, perhaps using driver model
230 * iterators like @device_for_each_child(), you can't assume very much
231 * about the nodes you find. Use this function to avoid oopses caused
232 * by wrongly treating some non-I2C device as an i2c_client.
233 */
234struct i2c_client *i2c_verify_client(struct device *dev)
235{
236 return (dev->bus == &i2c_bus_type)
237 ? to_i2c_client(dev)
238 : NULL;
239}
240EXPORT_SYMBOL(i2c_verify_client);
241
242
David Brownell9c1600e2007-05-01 23:26:31 +0200243/**
244 * i2c_new_device - instantiate an i2c device for use with a new style driver
245 * @adap: the adapter managing the device
246 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +0200247 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200248 *
249 * Create a device to work with a new style i2c driver, where binding is
250 * handled through driver model probe()/remove() methods. This call is not
251 * appropriate for use by mainboad initialization logic, which usually runs
252 * during an arch_initcall() long before any i2c_adapter could exist.
253 *
254 * This returns the new i2c client, which may be saved for later use with
255 * i2c_unregister_device(); or NULL to indicate an error.
256 */
257struct i2c_client *
258i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
259{
260 struct i2c_client *client;
261 int status;
262
263 client = kzalloc(sizeof *client, GFP_KERNEL);
264 if (!client)
265 return NULL;
266
267 client->adapter = adap;
268
269 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +0200270
Anton Vorontsov11f1f2a2008-10-22 20:21:33 +0200271 if (info->archdata)
272 client->dev.archdata = *info->archdata;
273
Marc Pignatee354252008-08-28 08:33:22 +0200274 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +0200275 client->addr = info->addr;
276 client->irq = info->irq;
277
David Brownell9c1600e2007-05-01 23:26:31 +0200278 strlcpy(client->name, info->type, sizeof(client->name));
279
280 /* a new style driver may be bound to this device when we
281 * return from this function, or any later moment (e.g. maybe
282 * hotplugging will load the driver module). and the device
283 * refcount model is the standard driver model one.
284 */
285 status = i2c_attach_client(client);
286 if (status < 0) {
287 kfree(client);
288 client = NULL;
289 }
290 return client;
291}
292EXPORT_SYMBOL_GPL(i2c_new_device);
293
294
295/**
296 * i2c_unregister_device - reverse effect of i2c_new_device()
297 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +0200298 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200299 */
300void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +0200301{
302 struct i2c_adapter *adapter = client->adapter;
303 struct i2c_driver *driver = client->driver;
304
305 if (driver && !is_newstyle_driver(driver)) {
306 dev_err(&client->dev, "can't unregister devices "
307 "with legacy drivers\n");
308 WARN_ON(1);
309 return;
310 }
311
Jean Delvare85081592008-07-14 22:38:36 +0200312 if (adapter->client_unregister) {
313 if (adapter->client_unregister(client)) {
314 dev_warn(&client->dev,
315 "client_unregister [%s] failed\n",
316 client->name);
317 }
318 }
319
David Brownella1d9e6e2007-05-01 23:26:30 +0200320 mutex_lock(&adapter->clist_lock);
321 list_del(&client->list);
322 mutex_unlock(&adapter->clist_lock);
323
324 device_unregister(&client->dev);
325}
David Brownell9c1600e2007-05-01 23:26:31 +0200326EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +0200327
328
Jean Delvare60b129d2008-05-11 20:37:06 +0200329static const struct i2c_device_id dummy_id[] = {
330 { "dummy", 0 },
331 { },
332};
333
Jean Delvared2653e92008-04-29 23:11:39 +0200334static int dummy_probe(struct i2c_client *client,
335 const struct i2c_device_id *id)
336{
337 return 0;
338}
339
340static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +0100341{
342 return 0;
343}
344
345static struct i2c_driver dummy_driver = {
346 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +0200347 .probe = dummy_probe,
348 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +0200349 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +0100350};
351
352/**
353 * i2c_new_dummy - return a new i2c device bound to a dummy driver
354 * @adapter: the adapter managing the device
355 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +0100356 * Context: can sleep
357 *
358 * This returns an I2C client bound to the "dummy" driver, intended for use
359 * with devices that consume multiple addresses. Examples of such chips
360 * include various EEPROMS (like 24c04 and 24c08 models).
361 *
362 * These dummy devices have two main uses. First, most I2C and SMBus calls
363 * except i2c_transfer() need a client handle; the dummy will be that handle.
364 * And second, this prevents the specified address from being bound to a
365 * different driver.
366 *
367 * This returns the new i2c client, which should be saved for later use with
368 * i2c_unregister_device(); or NULL to indicate an error.
369 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100370struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +0100371{
372 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +0200373 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +0100374 };
375
David Brownelle9f13732008-01-27 18:14:52 +0100376 return i2c_new_device(adapter, &info);
377}
378EXPORT_SYMBOL_GPL(i2c_new_dummy);
379
David Brownellf37dd802007-02-13 22:09:00 +0100380/* ------------------------------------------------------------------------- */
381
David Brownell16ffadf2007-05-01 23:26:28 +0200382/* I2C bus adapters -- one roots each I2C or SMBUS segment */
383
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200384static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
David Brownellef2c83212007-05-01 23:26:28 +0200386 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 complete(&adap->dev_released);
388}
389
David Brownell16ffadf2007-05-01 23:26:28 +0200390static ssize_t
391show_adapter_name(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
David Brownellef2c83212007-05-01 23:26:28 +0200393 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return sprintf(buf, "%s\n", adap->name);
395}
David Brownell16ffadf2007-05-01 23:26:28 +0200396
397static struct device_attribute i2c_adapter_attrs[] = {
398 __ATTR(name, S_IRUGO, show_adapter_name, NULL),
399 { },
400};
401
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200402static struct class i2c_adapter_class = {
David Brownell16ffadf2007-05-01 23:26:28 +0200403 .owner = THIS_MODULE,
404 .name = "i2c-adapter",
405 .dev_attrs = i2c_adapter_attrs,
406};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
David Brownell9c1600e2007-05-01 23:26:31 +0200408static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
409{
410 struct i2c_devinfo *devinfo;
411
412 mutex_lock(&__i2c_board_lock);
413 list_for_each_entry(devinfo, &__i2c_board_list, list) {
414 if (devinfo->busnum == adapter->nr
415 && !i2c_new_device(adapter,
416 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100417 dev_err(&adapter->dev,
418 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +0200419 devinfo->board_info.addr);
420 }
421 mutex_unlock(&__i2c_board_lock);
422}
423
Jean Delvare026526f2008-01-27 18:14:49 +0100424static int i2c_do_add_adapter(struct device_driver *d, void *data)
425{
426 struct i2c_driver *driver = to_i2c_driver(d);
427 struct i2c_adapter *adap = data;
428
Jean Delvare4735c982008-07-14 22:38:36 +0200429 /* Detect supported devices on that bus, and instantiate them */
430 i2c_detect(adap, driver);
431
432 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +0100433 if (driver->attach_adapter) {
434 /* We ignore the return code; if it fails, too bad */
435 driver->attach_adapter(adap);
436 }
437 return 0;
438}
439
David Brownell6e13e642007-05-01 23:26:31 +0200440static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Jean Delvare026526f2008-01-27 18:14:49 +0100442 int res = 0, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
David Brownell1d0b19c2008-10-14 17:30:05 +0200444 /* Can't register until after driver model init */
445 if (unlikely(WARN_ON(!i2c_bus_type.p)))
446 return -EAGAIN;
447
Ingo Molnar5c085d32006-01-18 23:16:04 +0100448 mutex_init(&adap->bus_lock);
449 mutex_init(&adap->clist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 INIT_LIST_HEAD(&adap->clients);
451
Jean Delvarecaada322008-01-27 18:14:49 +0100452 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* Add the adapter to the driver core.
455 * If the parent pointer is not set up,
456 * we add this adapter to the host bus.
457 */
David Brownellb119dc32007-01-04 13:07:04 +0100458 if (adap->dev.parent == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 adap->dev.parent = &platform_bus;
Jean Delvarefe2c8d52007-02-13 22:09:04 +0100460 pr_debug("I2C adapter driver [%s] forgot to specify "
461 "physical device\n", adap->name);
David Brownellb119dc32007-01-04 13:07:04 +0100462 }
Jean Delvare8fcfef62009-03-28 21:34:43 +0100463
464 /* Set default timeout to 1 second if not already set */
465 if (adap->timeout == 0)
466 adap->timeout = HZ;
467
Kay Sievers27d9c182009-01-07 14:29:16 +0100468 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 adap->dev.release = &i2c_adapter_dev_release;
Jean Delvarefccb56e2007-05-01 23:26:27 +0200470 adap->dev.class = &i2c_adapter_class;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200471 res = device_register(&adap->dev);
472 if (res)
473 goto out_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200475 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
476
David Brownell6e13e642007-05-01 23:26:31 +0200477 /* create pre-declared device nodes for new-style drivers */
478 if (adap->nr < __i2c_first_dynamic_bus_num)
479 i2c_scan_static_board_info(adap);
480
Jean Delvare4735c982008-07-14 22:38:36 +0200481 /* Notify drivers */
Jean Delvare026526f2008-01-27 18:14:49 +0100482 dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap,
483 i2c_do_add_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485out_unlock:
Jean Delvarecaada322008-01-27 18:14:49 +0100486 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return res;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200488
Jean Delvareb119c6c2006-08-15 18:26:30 +0200489out_list:
Jean Delvareb119c6c2006-08-15 18:26:30 +0200490 idr_remove(&i2c_adapter_idr, adap->nr);
491 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
David Brownell6e13e642007-05-01 23:26:31 +0200494/**
495 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
496 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +0200497 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200498 *
499 * This routine is used to declare an I2C adapter when its bus number
500 * doesn't matter. Examples: for I2C adapters dynamically added by
501 * USB links or PCI plugin cards.
502 *
503 * When this returns zero, a new bus number was allocated and stored
504 * in adap->nr, and the specified adapter became available for clients.
505 * Otherwise, a negative errno value is returned.
506 */
507int i2c_add_adapter(struct i2c_adapter *adapter)
508{
509 int id, res = 0;
510
511retry:
512 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
513 return -ENOMEM;
514
Jean Delvarecaada322008-01-27 18:14:49 +0100515 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200516 /* "above" here means "above or equal to", sigh */
517 res = idr_get_new_above(&i2c_adapter_idr, adapter,
518 __i2c_first_dynamic_bus_num, &id);
Jean Delvarecaada322008-01-27 18:14:49 +0100519 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200520
521 if (res < 0) {
522 if (res == -EAGAIN)
523 goto retry;
524 return res;
525 }
526
527 adapter->nr = id;
528 return i2c_register_adapter(adapter);
529}
530EXPORT_SYMBOL(i2c_add_adapter);
531
532/**
533 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
534 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +0200535 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200536 *
537 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +0100538 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
539 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +0200540 * is used to properly configure I2C devices.
541 *
542 * If no devices have pre-been declared for this bus, then be sure to
543 * register the adapter before any dynamically allocated ones. Otherwise
544 * the required bus ID may not be available.
545 *
546 * When this returns zero, the specified adapter became available for
547 * clients using the bus number provided in adap->nr. Also, the table
548 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
549 * and the appropriate driver model device nodes are created. Otherwise, a
550 * negative errno value is returned.
551 */
552int i2c_add_numbered_adapter(struct i2c_adapter *adap)
553{
554 int id;
555 int status;
556
557 if (adap->nr & ~MAX_ID_MASK)
558 return -EINVAL;
559
560retry:
561 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
562 return -ENOMEM;
563
Jean Delvarecaada322008-01-27 18:14:49 +0100564 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200565 /* "above" here means "above or equal to", sigh;
566 * we need the "equal to" result to force the result
567 */
568 status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
569 if (status == 0 && id != adap->nr) {
570 status = -EBUSY;
571 idr_remove(&i2c_adapter_idr, id);
572 }
Jean Delvarecaada322008-01-27 18:14:49 +0100573 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200574 if (status == -EAGAIN)
575 goto retry;
576
577 if (status == 0)
578 status = i2c_register_adapter(adap);
579 return status;
580}
581EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
582
Jean Delvare026526f2008-01-27 18:14:49 +0100583static int i2c_do_del_adapter(struct device_driver *d, void *data)
584{
585 struct i2c_driver *driver = to_i2c_driver(d);
586 struct i2c_adapter *adapter = data;
Jean Delvare4735c982008-07-14 22:38:36 +0200587 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +0100588 int res;
589
Jean Delvareacec2112009-03-28 21:34:40 +0100590 /* Remove the devices we created ourselves as the result of hardware
591 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +0200592 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
593 if (client->adapter == adapter) {
594 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
595 client->name, client->addr);
596 list_del(&client->detected);
597 i2c_unregister_device(client);
598 }
599 }
600
Jean Delvare026526f2008-01-27 18:14:49 +0100601 if (!driver->detach_adapter)
602 return 0;
603 res = driver->detach_adapter(adapter);
604 if (res)
605 dev_err(&adapter->dev, "detach_adapter failed (%d) "
606 "for driver [%s]\n", res, driver->driver.name);
607 return res;
608}
609
David Brownelld64f73b2007-07-12 14:12:28 +0200610/**
611 * i2c_del_adapter - unregister I2C adapter
612 * @adap: the adapter being unregistered
613 * Context: can sleep
614 *
615 * This unregisters an I2C adapter which was previously registered
616 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
617 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618int i2c_del_adapter(struct i2c_adapter *adap)
619{
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200620 struct i2c_client *client, *_n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 int res = 0;
622
Jean Delvarecaada322008-01-27 18:14:49 +0100623 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /* First make sure that this adapter was ever added */
Jean Delvare87c6c222008-01-27 18:14:48 +0100626 if (idr_find(&i2c_adapter_idr, adap->nr) != adap) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200627 pr_debug("i2c-core: attempting to delete unregistered "
628 "adapter [%s]\n", adap->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 res = -EINVAL;
630 goto out_unlock;
631 }
632
Jean Delvare026526f2008-01-27 18:14:49 +0100633 /* Tell drivers about this removal */
634 res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
635 i2c_do_del_adapter);
636 if (res)
637 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 /* detach any active clients. This must be done first, because
Tobias Klausera551acc2005-05-19 21:40:38 +0200640 * it can fail; in which case we give up. */
Jean Delvare79b93e12008-11-28 15:24:38 +0100641 list_for_each_entry_safe_reverse(client, _n, &adap->clients, list) {
David Brownella1d9e6e2007-05-01 23:26:30 +0200642 struct i2c_driver *driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
David Brownella1d9e6e2007-05-01 23:26:30 +0200644 driver = client->driver;
645
646 /* new style, follow standard driver model */
647 if (!driver || is_newstyle_driver(driver)) {
648 i2c_unregister_device(client);
649 continue;
650 }
651
652 /* legacy drivers create and remove clients themselves */
653 if ((res = driver->detach_client(client))) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200654 dev_err(&adap->dev, "detach_client failed for client "
655 "[%s] at address 0x%02x\n", client->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 client->addr);
657 goto out_unlock;
658 }
659 }
660
661 /* clean up the sysfs representation */
662 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 /* wait for sysfs to drop all references */
666 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
David Brownell6e13e642007-05-01 23:26:31 +0200668 /* free bus id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 idr_remove(&i2c_adapter_idr, adap->nr);
670
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200671 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Jean Delvarebd4bc3db2008-07-16 19:30:05 +0200673 /* Clear the device structure in case this adapter is ever going to be
674 added again */
675 memset(&adap->dev, 0, sizeof(adap->dev));
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 out_unlock:
Jean Delvarecaada322008-01-27 18:14:49 +0100678 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return res;
680}
David Brownellc0564602007-05-01 23:26:31 +0200681EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683
David Brownell7b4fbc52007-05-01 23:26:30 +0200684/* ------------------------------------------------------------------------- */
685
Dave Young7f101a92008-07-14 22:38:19 +0200686static int __attach_adapter(struct device *dev, void *data)
687{
688 struct i2c_adapter *adapter = to_i2c_adapter(dev);
689 struct i2c_driver *driver = data;
690
Jean Delvare4735c982008-07-14 22:38:36 +0200691 i2c_detect(adapter, driver);
692
693 /* Legacy drivers scan i2c busses directly */
694 if (driver->attach_adapter)
695 driver->attach_adapter(adapter);
Dave Young7f101a92008-07-14 22:38:19 +0200696
697 return 0;
698}
699
David Brownell7b4fbc52007-05-01 23:26:30 +0200700/*
701 * An i2c_driver is used with one or more i2c_client (device) nodes to access
702 * i2c slave chips, on a bus instance associated with some i2c_adapter. There
703 * are two models for binding the driver to its device: "new style" drivers
704 * follow the standard Linux driver model and just respond to probe() calls
705 * issued if the driver core sees they match(); "legacy" drivers create device
706 * nodes themselves.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 */
708
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800709int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Jean Delvare7eebcb72006-02-05 23:28:21 +0100711 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
David Brownell1d0b19c2008-10-14 17:30:05 +0200713 /* Can't register until after driver model init */
714 if (unlikely(WARN_ON(!i2c_bus_type.p)))
715 return -EAGAIN;
716
David Brownell7b4fbc52007-05-01 23:26:30 +0200717 /* new style driver methods can't mix with legacy ones */
David Brownella1d9e6e2007-05-01 23:26:30 +0200718 if (is_newstyle_driver(driver)) {
Jean Delvare93529862009-04-13 17:02:14 +0200719 if (driver->detach_adapter || driver->detach_client) {
David Brownell7b4fbc52007-05-01 23:26:30 +0200720 printk(KERN_WARNING
721 "i2c-core: driver [%s] is confused\n",
722 driver->driver.name);
723 return -EINVAL;
724 }
725 }
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800728 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
David Brownell6e13e642007-05-01 23:26:31 +0200731 /* for new style drivers, when registration returns the driver core
732 * will have called probe() for all matching-but-unbound devices.
733 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 res = driver_register(&driver->driver);
735 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +0100736 return res;
David Brownell438d6c22006-12-10 21:21:31 +0100737
Jean Delvarecaada322008-01-27 18:14:49 +0100738 mutex_lock(&core_lock);
Jean Delvare7eebcb72006-02-05 23:28:21 +0100739
Laurent Riffard35d8b2e2005-11-26 20:34:05 +0100740 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jean Delvare4735c982008-07-14 22:38:36 +0200742 INIT_LIST_HEAD(&driver->clients);
743 /* Walk the adapters that are already present */
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400744 class_for_each_device(&i2c_adapter_class, NULL, driver,
745 __attach_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Jean Delvarecaada322008-01-27 18:14:49 +0100747 mutex_unlock(&core_lock);
Jean Delvare7eebcb72006-02-05 23:28:21 +0100748 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800750EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Dave Young7f101a92008-07-14 22:38:19 +0200752static int __detach_adapter(struct device *dev, void *data)
753{
754 struct i2c_adapter *adapter = to_i2c_adapter(dev);
755 struct i2c_driver *driver = data;
Jean Delvare4735c982008-07-14 22:38:36 +0200756 struct i2c_client *client, *_n;
757
Jean Delvareacec2112009-03-28 21:34:40 +0100758 /* Remove the devices we created ourselves as the result of hardware
759 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +0200760 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
761 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
762 client->name, client->addr);
763 list_del(&client->detected);
764 i2c_unregister_device(client);
765 }
766
767 if (is_newstyle_driver(driver))
768 return 0;
Dave Young7f101a92008-07-14 22:38:19 +0200769
770 /* Have a look at each adapter, if clients of this driver are still
771 * attached. If so, detach them to be able to kill the driver
772 * afterwards.
773 */
774 if (driver->detach_adapter) {
775 if (driver->detach_adapter(adapter))
776 dev_err(&adapter->dev,
777 "detach_adapter failed for driver [%s]\n",
778 driver->driver.name);
779 } else {
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200780 struct i2c_client *client, *_n;
Dave Young7f101a92008-07-14 22:38:19 +0200781
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200782 list_for_each_entry_safe(client, _n, &adapter->clients, list) {
Dave Young7f101a92008-07-14 22:38:19 +0200783 if (client->driver != driver)
784 continue;
785 dev_dbg(&adapter->dev,
786 "detaching client [%s] at 0x%02x\n",
787 client->name, client->addr);
788 if (driver->detach_client(client))
789 dev_err(&adapter->dev, "detach_client "
790 "failed for client [%s] at 0x%02x\n",
791 client->name, client->addr);
792 }
793 }
794
795 return 0;
796}
797
David Brownella1d9e6e2007-05-01 23:26:30 +0200798/**
799 * i2c_del_driver - unregister I2C driver
800 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +0200801 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +0200802 */
Jean Delvareb3e82092007-05-01 23:26:32 +0200803void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Jean Delvarecaada322008-01-27 18:14:49 +0100805 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400807 class_for_each_device(&i2c_adapter_class, NULL, driver,
808 __detach_adapter);
David Brownella1d9e6e2007-05-01 23:26:30 +0200809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 driver_unregister(&driver->driver);
Laurent Riffard35d8b2e2005-11-26 20:34:05 +0100811 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Jean Delvarecaada322008-01-27 18:14:49 +0100813 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
David Brownellc0564602007-05-01 23:26:31 +0200815EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
David Brownell7b4fbc52007-05-01 23:26:30 +0200817/* ------------------------------------------------------------------------- */
818
David Brownell9b766b82008-01-27 18:14:51 +0100819static int __i2c_check_addr(struct device *dev, void *addrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
David Brownell9b766b82008-01-27 18:14:51 +0100821 struct i2c_client *client = i2c_verify_client(dev);
822 int addr = *(int *)addrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
David Brownell9b766b82008-01-27 18:14:51 +0100824 if (client && client->addr == addr)
825 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return 0;
827}
828
Jean Delvare5e31c2b2007-11-15 19:24:02 +0100829static int i2c_check_addr(struct i2c_adapter *adapter, int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
David Brownell9b766b82008-01-27 18:14:51 +0100831 return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834int i2c_attach_client(struct i2c_client *client)
835{
836 struct i2c_adapter *adapter = client->adapter;
Jean Delvarec1159f92008-08-10 22:56:16 +0200837 int res;
838
839 /* Check for address business */
840 res = i2c_check_addr(adapter, client->addr);
841 if (res)
842 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 client->dev.parent = &client->adapter->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 client->dev.bus = &i2c_bus_type;
David Brownell9c1600e2007-05-01 23:26:31 +0200846
847 if (client->driver)
848 client->dev.driver = &client->driver->driver;
849
David Brownellde81d2a2007-05-22 19:49:16 +0200850 if (client->driver && !is_newstyle_driver(client->driver)) {
David Brownell9c1600e2007-05-01 23:26:31 +0200851 client->dev.release = i2c_client_release;
Ming Leif67f1292009-03-01 21:10:49 +0800852 dev_set_uevent_suppress(&client->dev, 1);
David Brownellde81d2a2007-05-22 19:49:16 +0200853 } else
David Brownell9c1600e2007-05-01 23:26:31 +0200854 client->dev.release = i2c_client_dev_release;
David Brownell438d6c22006-12-10 21:21:31 +0100855
Kay Sievers27d9c182009-01-07 14:29:16 +0100856 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adapter),
857 client->addr);
Jean Delvareb119c6c2006-08-15 18:26:30 +0200858 res = device_register(&client->dev);
859 if (res)
David Brownell86ec5ec2008-01-27 18:14:51 +0100860 goto out_err;
861
862 mutex_lock(&adapter->clist_lock);
863 list_add_tail(&client->list, &adapter->clients);
Jean Delvareb119c6c2006-08-15 18:26:30 +0200864 mutex_unlock(&adapter->clist_lock);
Jean Delvare77ed74d2006-09-30 17:18:59 +0200865
David Brownell86ec5ec2008-01-27 18:14:51 +0100866 dev_dbg(&adapter->dev, "client [%s] registered with bus id %s\n",
Kay Sievers27d9c182009-01-07 14:29:16 +0100867 client->name, dev_name(&client->dev));
David Brownell86ec5ec2008-01-27 18:14:51 +0100868
Jean Delvare77ed74d2006-09-30 17:18:59 +0200869 if (adapter->client_register) {
870 if (adapter->client_register(client)) {
871 dev_dbg(&adapter->dev, "client_register "
872 "failed for client [%s] at 0x%02x\n",
873 client->name, client->addr);
874 }
875 }
876
877 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200878
David Brownell86ec5ec2008-01-27 18:14:51 +0100879out_err:
Jean Delvareb119c6c2006-08-15 18:26:30 +0200880 dev_err(&adapter->dev, "Failed to attach i2c client %s at 0x%02x "
881 "(%d)\n", client->name, client->addr, res);
Jean Delvare77ed74d2006-09-30 17:18:59 +0200882 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
David Brownellc0564602007-05-01 23:26:31 +0200884EXPORT_SYMBOL(i2c_attach_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886int i2c_detach_client(struct i2c_client *client)
887{
888 struct i2c_adapter *adapter = client->adapter;
889 int res = 0;
David Brownell438d6c22006-12-10 21:21:31 +0100890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (adapter->client_unregister) {
892 res = adapter->client_unregister(client);
893 if (res) {
894 dev_err(&client->dev,
Jean Delvare86749e82005-07-29 12:15:29 -0700895 "client_unregister [%s] failed, "
896 "client not detached\n", client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 goto out;
898 }
899 }
900
Ingo Molnar5c085d32006-01-18 23:16:04 +0100901 mutex_lock(&adapter->clist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 list_del(&client->list);
Jean Delvare9ddced12008-01-27 18:14:51 +0100903 mutex_unlock(&adapter->clist_lock);
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 init_completion(&client->released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 device_unregister(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 wait_for_completion(&client->released);
908
909 out:
910 return res;
911}
David Brownellc0564602007-05-01 23:26:31 +0200912EXPORT_SYMBOL(i2c_detach_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Jean Delvaree48d3312008-01-27 18:14:48 +0100914/**
915 * i2c_use_client - increments the reference count of the i2c client structure
916 * @client: the client being referenced
917 *
918 * Each live reference to a client should be refcounted. The driver model does
919 * that automatically as part of driver binding, so that most drivers don't
920 * need to do this explicitly: they hold a reference until they're unbound
921 * from the device.
922 *
923 * A pointer to the client with the incremented reference counter is returned.
924 */
925struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
David Brownell6ea438e2008-07-14 22:38:24 +0200927 if (client && get_device(&client->dev))
928 return client;
929 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
David Brownellc0564602007-05-01 23:26:31 +0200931EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jean Delvaree48d3312008-01-27 18:14:48 +0100933/**
934 * i2c_release_client - release a use of the i2c client structure
935 * @client: the client being no longer referenced
936 *
937 * Must be called when a user of a client is finished with it.
938 */
939void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
David Brownell6ea438e2008-07-14 22:38:24 +0200941 if (client)
942 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
David Brownellc0564602007-05-01 23:26:31 +0200944EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
David Brownell9b766b82008-01-27 18:14:51 +0100946struct i2c_cmd_arg {
947 unsigned cmd;
948 void *arg;
949};
950
951static int i2c_cmd(struct device *dev, void *_arg)
952{
953 struct i2c_client *client = i2c_verify_client(dev);
954 struct i2c_cmd_arg *arg = _arg;
955
956 if (client && client->driver && client->driver->command)
957 client->driver->command(client, arg->cmd, arg->arg);
958 return 0;
959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
962{
David Brownell9b766b82008-01-27 18:14:51 +0100963 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
David Brownell9b766b82008-01-27 18:14:51 +0100965 cmd_arg.cmd = cmd;
966 cmd_arg.arg = arg;
967 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
David Brownellc0564602007-05-01 23:26:31 +0200969EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971static int __init i2c_init(void)
972{
973 int retval;
974
975 retval = bus_register(&i2c_bus_type);
976 if (retval)
977 return retval;
David Brownelle9f13732008-01-27 18:14:52 +0100978 retval = class_register(&i2c_adapter_class);
979 if (retval)
980 goto bus_err;
981 retval = i2c_add_driver(&dummy_driver);
982 if (retval)
983 goto class_err;
984 return 0;
985
986class_err:
987 class_unregister(&i2c_adapter_class);
988bus_err:
989 bus_unregister(&i2c_bus_type);
990 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993static void __exit i2c_exit(void)
994{
David Brownelle9f13732008-01-27 18:14:52 +0100995 i2c_del_driver(&dummy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 class_unregister(&i2c_adapter_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 bus_unregister(&i2c_bus_type);
998}
999
David Brownella10f9e72008-10-14 17:30:06 +02001000/* We must initialize early, because some subsystems register i2c drivers
1001 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1002 */
1003postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004module_exit(i2c_exit);
1005
1006/* ----------------------------------------------------
1007 * the functional interface to the i2c busses.
1008 * ----------------------------------------------------
1009 */
1010
David Brownella1cdeda2008-07-14 22:38:24 +02001011/**
1012 * i2c_transfer - execute a single or combined I2C message
1013 * @adap: Handle to I2C bus
1014 * @msgs: One or more messages to execute before STOP is issued to
1015 * terminate the operation; each message begins with a START.
1016 * @num: Number of messages to be executed.
1017 *
1018 * Returns negative errno, else the number of messages executed.
1019 *
1020 * Note that there is no requirement that each message be sent to
1021 * the same slave address, although that is the most common model.
1022 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001023int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Clifford Wolf66b650f2009-06-15 18:01:46 +02001025 unsigned long orig_jiffies;
1026 int ret, try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
David Brownella1cdeda2008-07-14 22:38:24 +02001028 /* REVISIT the fault reporting model here is weak:
1029 *
1030 * - When we get an error after receiving N bytes from a slave,
1031 * there is no way to report "N".
1032 *
1033 * - When we get a NAK after transmitting N bytes to a slave,
1034 * there is no way to report "N" ... or to let the master
1035 * continue executing the rest of this combined message, if
1036 * that's the appropriate response.
1037 *
1038 * - When for example "num" is two and we successfully complete
1039 * the first message but get an error part way through the
1040 * second, it's unclear whether that should be reported as
1041 * one (discarding status on the second message) or errno
1042 * (discarding status on the first one).
1043 */
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (adap->algo->master_xfer) {
1046#ifdef DEBUG
1047 for (ret = 0; ret < num; ret++) {
1048 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02001049 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1050 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1051 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053#endif
1054
Mike Rapoportcea443a2008-01-27 18:14:50 +01001055 if (in_atomic() || irqs_disabled()) {
1056 ret = mutex_trylock(&adap->bus_lock);
1057 if (!ret)
1058 /* I2C activity is ongoing. */
1059 return -EAGAIN;
1060 } else {
1061 mutex_lock_nested(&adap->bus_lock, adap->level);
1062 }
1063
Clifford Wolf66b650f2009-06-15 18:01:46 +02001064 /* Retry automatically on arbitration loss */
1065 orig_jiffies = jiffies;
1066 for (ret = 0, try = 0; try <= adap->retries; try++) {
1067 ret = adap->algo->master_xfer(adap, msgs, num);
1068 if (ret != -EAGAIN)
1069 break;
1070 if (time_after(jiffies, orig_jiffies + adap->timeout))
1071 break;
1072 }
Ingo Molnar5c085d32006-01-18 23:16:04 +01001073 mutex_unlock(&adap->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 return ret;
1076 } else {
1077 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001078 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080}
David Brownellc0564602007-05-01 23:26:31 +02001081EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David Brownella1cdeda2008-07-14 22:38:24 +02001083/**
1084 * i2c_master_send - issue a single I2C message in master transmit mode
1085 * @client: Handle to slave device
1086 * @buf: Data that will be written to the slave
1087 * @count: How many bytes to write
1088 *
1089 * Returns negative errno, or else the number of bytes written.
1090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091int i2c_master_send(struct i2c_client *client,const char *buf ,int count)
1092{
1093 int ret;
1094 struct i2c_adapter *adap=client->adapter;
1095 struct i2c_msg msg;
1096
Jean Delvare815f55f2005-05-07 22:58:46 +02001097 msg.addr = client->addr;
1098 msg.flags = client->flags & I2C_M_TEN;
1099 msg.len = count;
1100 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01001101
Jean Delvare815f55f2005-05-07 22:58:46 +02001102 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Jean Delvare815f55f2005-05-07 22:58:46 +02001104 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1105 transmitted, else error code. */
1106 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
David Brownellc0564602007-05-01 23:26:31 +02001108EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
David Brownella1cdeda2008-07-14 22:38:24 +02001110/**
1111 * i2c_master_recv - issue a single I2C message in master receive mode
1112 * @client: Handle to slave device
1113 * @buf: Where to store data read from slave
1114 * @count: How many bytes to read
1115 *
1116 * Returns negative errno, or else the number of bytes read.
1117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118int i2c_master_recv(struct i2c_client *client, char *buf ,int count)
1119{
1120 struct i2c_adapter *adap=client->adapter;
1121 struct i2c_msg msg;
1122 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Jean Delvare815f55f2005-05-07 22:58:46 +02001124 msg.addr = client->addr;
1125 msg.flags = client->flags & I2C_M_TEN;
1126 msg.flags |= I2C_M_RD;
1127 msg.len = count;
1128 msg.buf = buf;
1129
1130 ret = i2c_transfer(adap, &msg, 1);
1131
1132 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1133 transmitted, else error code. */
1134 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
David Brownellc0564602007-05-01 23:26:31 +02001136EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138/* ----------------------------------------------------
1139 * the i2c address scanning function
1140 * Will not work for 10-bit addresses!
1141 * ----------------------------------------------------
1142 */
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001143static int i2c_probe_address(struct i2c_adapter *adapter, int addr, int kind,
1144 int (*found_proc) (struct i2c_adapter *, int, int))
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001145{
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001146 int err;
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001147
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001148 /* Make sure the address is valid */
1149 if (addr < 0x03 || addr > 0x77) {
1150 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1151 addr);
1152 return -EINVAL;
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001153 }
1154
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001155 /* Skip if already in use */
1156 if (i2c_check_addr(adapter, addr))
1157 return 0;
1158
1159 /* Make sure there is something at this address, unless forced */
Jean Delvare4c9337d2005-08-09 20:28:10 +02001160 if (kind < 0) {
1161 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1162 I2C_SMBUS_QUICK, NULL) < 0)
1163 return 0;
1164
1165 /* prevent 24RF08 corruption */
1166 if ((addr & ~0x0f) == 0x50)
1167 i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1168 I2C_SMBUS_QUICK, NULL);
1169 }
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001170
1171 /* Finally call the custom detection function */
1172 err = found_proc(adapter, addr, kind);
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001173 /* -ENODEV can be returned if there is a chip at the given address
1174 but it isn't supported by this chip driver. We catch it here as
1175 this isn't an error. */
Jean Delvare114fd182006-09-03 22:25:04 +02001176 if (err == -ENODEV)
1177 err = 0;
1178
1179 if (err)
1180 dev_warn(&adapter->dev, "Client creation failed at 0x%x (%d)\n",
1181 addr, err);
1182 return err;
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001183}
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185int i2c_probe(struct i2c_adapter *adapter,
Mark M. Hoffmanbfb6df22008-01-27 18:14:46 +01001186 const struct i2c_client_address_data *address_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 int (*found_proc) (struct i2c_adapter *, int, int))
1188{
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001189 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int adap_id = i2c_adapter_id(adapter);
1191
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001192 /* Force entries are done first, and are not affected by ignore
1193 entries */
1194 if (address_data->forces) {
Mark M. Hoffmanbfb6df22008-01-27 18:14:46 +01001195 const unsigned short * const *forces = address_data->forces;
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001196 int kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001198 for (kind = 0; forces[kind]; kind++) {
1199 for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1200 i += 2) {
1201 if (forces[kind][i] == adap_id
1202 || forces[kind][i] == ANY_I2C_BUS) {
1203 dev_dbg(&adapter->dev, "found force "
1204 "parameter for adapter %d, "
1205 "addr 0x%02x, kind %d\n",
1206 adap_id, forces[kind][i + 1],
1207 kind);
1208 err = i2c_probe_address(adapter,
1209 forces[kind][i + 1],
1210 kind, found_proc);
1211 if (err)
1212 return err;
1213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001217
Jean Delvare4366dc92005-09-25 16:50:06 +02001218 /* Stop here if we can't use SMBUS_QUICK */
1219 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1220 if (address_data->probe[0] == I2C_CLIENT_END
1221 && address_data->normal_i2c[0] == I2C_CLIENT_END)
David Brownell438d6c22006-12-10 21:21:31 +01001222 return 0;
Jean Delvare4366dc92005-09-25 16:50:06 +02001223
Jean Delvare4329cf82008-08-28 08:33:23 +02001224 dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
1225 "can't probe for chips\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001226 return -EOPNOTSUPP;
Jean Delvare4366dc92005-09-25 16:50:06 +02001227 }
1228
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001229 /* Probe entries are done second, and are not affected by ignore
1230 entries either */
1231 for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1232 if (address_data->probe[i] == adap_id
1233 || address_data->probe[i] == ANY_I2C_BUS) {
1234 dev_dbg(&adapter->dev, "found probe parameter for "
1235 "adapter %d, addr 0x%02x\n", adap_id,
1236 address_data->probe[i + 1]);
1237 err = i2c_probe_address(adapter,
1238 address_data->probe[i + 1],
1239 -1, found_proc);
1240 if (err)
1241 return err;
1242 }
1243 }
1244
1245 /* Normal entries are done last, unless shadowed by an ignore entry */
1246 for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1247 int j, ignore;
1248
1249 ignore = 0;
1250 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1251 j += 2) {
1252 if ((address_data->ignore[j] == adap_id ||
1253 address_data->ignore[j] == ANY_I2C_BUS)
1254 && address_data->ignore[j + 1]
1255 == address_data->normal_i2c[i]) {
1256 dev_dbg(&adapter->dev, "found ignore "
1257 "parameter for adapter %d, "
1258 "addr 0x%02x\n", adap_id,
1259 address_data->ignore[j + 1]);
Mark M. Hoffman2369df92006-07-01 17:01:59 +02001260 ignore = 1;
1261 break;
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001262 }
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001263 }
1264 if (ignore)
1265 continue;
1266
1267 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1268 "addr 0x%02x\n", adap_id,
1269 address_data->normal_i2c[i]);
1270 err = i2c_probe_address(adapter, address_data->normal_i2c[i],
1271 -1, found_proc);
1272 if (err)
1273 return err;
1274 }
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return 0;
1277}
David Brownellc0564602007-05-01 23:26:31 +02001278EXPORT_SYMBOL(i2c_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Jean Delvare4735c982008-07-14 22:38:36 +02001280/* Separate detection function for new-style drivers */
1281static int i2c_detect_address(struct i2c_client *temp_client, int kind,
1282 struct i2c_driver *driver)
1283{
1284 struct i2c_board_info info;
1285 struct i2c_adapter *adapter = temp_client->adapter;
1286 int addr = temp_client->addr;
1287 int err;
1288
1289 /* Make sure the address is valid */
1290 if (addr < 0x03 || addr > 0x77) {
1291 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1292 addr);
1293 return -EINVAL;
1294 }
1295
1296 /* Skip if already in use */
1297 if (i2c_check_addr(adapter, addr))
1298 return 0;
1299
1300 /* Make sure there is something at this address, unless forced */
1301 if (kind < 0) {
1302 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1303 I2C_SMBUS_QUICK, NULL) < 0)
1304 return 0;
1305
1306 /* prevent 24RF08 corruption */
1307 if ((addr & ~0x0f) == 0x50)
1308 i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1309 I2C_SMBUS_QUICK, NULL);
1310 }
1311
1312 /* Finally call the custom detection function */
1313 memset(&info, 0, sizeof(struct i2c_board_info));
1314 info.addr = addr;
1315 err = driver->detect(temp_client, kind, &info);
1316 if (err) {
1317 /* -ENODEV is returned if the detection fails. We catch it
1318 here as this isn't an error. */
1319 return err == -ENODEV ? 0 : err;
1320 }
1321
1322 /* Consistency check */
1323 if (info.type[0] == '\0') {
1324 dev_err(&adapter->dev, "%s detection function provided "
1325 "no name for 0x%x\n", driver->driver.name,
1326 addr);
1327 } else {
1328 struct i2c_client *client;
1329
1330 /* Detection succeeded, instantiate the device */
1331 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1332 info.type, info.addr);
1333 client = i2c_new_device(adapter, &info);
1334 if (client)
1335 list_add_tail(&client->detected, &driver->clients);
1336 else
1337 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1338 info.type, info.addr);
1339 }
1340 return 0;
1341}
1342
1343static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1344{
1345 const struct i2c_client_address_data *address_data;
1346 struct i2c_client *temp_client;
1347 int i, err = 0;
1348 int adap_id = i2c_adapter_id(adapter);
1349
1350 address_data = driver->address_data;
1351 if (!driver->detect || !address_data)
1352 return 0;
1353
1354 /* Set up a temporary client to help detect callback */
1355 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1356 if (!temp_client)
1357 return -ENOMEM;
1358 temp_client->adapter = adapter;
1359
1360 /* Force entries are done first, and are not affected by ignore
1361 entries */
1362 if (address_data->forces) {
1363 const unsigned short * const *forces = address_data->forces;
1364 int kind;
1365
1366 for (kind = 0; forces[kind]; kind++) {
1367 for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1368 i += 2) {
1369 if (forces[kind][i] == adap_id
1370 || forces[kind][i] == ANY_I2C_BUS) {
1371 dev_dbg(&adapter->dev, "found force "
1372 "parameter for adapter %d, "
1373 "addr 0x%02x, kind %d\n",
1374 adap_id, forces[kind][i + 1],
1375 kind);
1376 temp_client->addr = forces[kind][i + 1];
1377 err = i2c_detect_address(temp_client,
1378 kind, driver);
1379 if (err)
1380 goto exit_free;
1381 }
1382 }
1383 }
1384 }
1385
Jean Delvare4329cf82008-08-28 08:33:23 +02001386 /* Stop here if the classes do not match */
1387 if (!(adapter->class & driver->class))
1388 goto exit_free;
1389
Jean Delvare4735c982008-07-14 22:38:36 +02001390 /* Stop here if we can't use SMBUS_QUICK */
1391 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1392 if (address_data->probe[0] == I2C_CLIENT_END
1393 && address_data->normal_i2c[0] == I2C_CLIENT_END)
1394 goto exit_free;
1395
1396 dev_warn(&adapter->dev, "SMBus Quick command not supported, "
1397 "can't probe for chips\n");
1398 err = -EOPNOTSUPP;
1399 goto exit_free;
1400 }
1401
Jean Delvare4735c982008-07-14 22:38:36 +02001402 /* Probe entries are done second, and are not affected by ignore
1403 entries either */
1404 for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1405 if (address_data->probe[i] == adap_id
1406 || address_data->probe[i] == ANY_I2C_BUS) {
1407 dev_dbg(&adapter->dev, "found probe parameter for "
1408 "adapter %d, addr 0x%02x\n", adap_id,
1409 address_data->probe[i + 1]);
1410 temp_client->addr = address_data->probe[i + 1];
1411 err = i2c_detect_address(temp_client, -1, driver);
1412 if (err)
1413 goto exit_free;
1414 }
1415 }
1416
1417 /* Normal entries are done last, unless shadowed by an ignore entry */
1418 for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1419 int j, ignore;
1420
1421 ignore = 0;
1422 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1423 j += 2) {
1424 if ((address_data->ignore[j] == adap_id ||
1425 address_data->ignore[j] == ANY_I2C_BUS)
1426 && address_data->ignore[j + 1]
1427 == address_data->normal_i2c[i]) {
1428 dev_dbg(&adapter->dev, "found ignore "
1429 "parameter for adapter %d, "
1430 "addr 0x%02x\n", adap_id,
1431 address_data->ignore[j + 1]);
1432 ignore = 1;
1433 break;
1434 }
1435 }
1436 if (ignore)
1437 continue;
1438
1439 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1440 "addr 0x%02x\n", adap_id,
1441 address_data->normal_i2c[i]);
1442 temp_client->addr = address_data->normal_i2c[i];
1443 err = i2c_detect_address(temp_client, -1, driver);
1444 if (err)
1445 goto exit_free;
1446 }
1447
1448 exit_free:
1449 kfree(temp_client);
1450 return err;
1451}
1452
Jean Delvare12b5053a2007-05-01 23:26:31 +02001453struct i2c_client *
1454i2c_new_probed_device(struct i2c_adapter *adap,
1455 struct i2c_board_info *info,
1456 unsigned short const *addr_list)
1457{
1458 int i;
1459
1460 /* Stop here if the bus doesn't support probing */
1461 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) {
1462 dev_err(&adap->dev, "Probing not supported\n");
1463 return NULL;
1464 }
1465
Jean Delvare12b5053a2007-05-01 23:26:31 +02001466 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1467 /* Check address validity */
1468 if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
1469 dev_warn(&adap->dev, "Invalid 7-bit address "
1470 "0x%02x\n", addr_list[i]);
1471 continue;
1472 }
1473
1474 /* Check address availability */
David Brownell9b766b82008-01-27 18:14:51 +01001475 if (i2c_check_addr(adap, addr_list[i])) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02001476 dev_dbg(&adap->dev, "Address 0x%02x already in "
1477 "use, not probing\n", addr_list[i]);
1478 continue;
1479 }
1480
1481 /* Test address responsiveness
1482 The default probe method is a quick write, but it is known
1483 to corrupt the 24RF08 EEPROMs due to a state machine bug,
1484 and could also irreversibly write-protect some EEPROMs, so
1485 for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte
1486 read instead. Also, some bus drivers don't implement
1487 quick write, so we fallback to a byte read it that case
1488 too. */
1489 if ((addr_list[i] & ~0x07) == 0x30
1490 || (addr_list[i] & ~0x0f) == 0x50
1491 || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) {
Hans Verkuilb25b7912008-08-10 22:56:15 +02001492 union i2c_smbus_data data;
1493
Jean Delvare12b5053a2007-05-01 23:26:31 +02001494 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1495 I2C_SMBUS_READ, 0,
Hans Verkuilb25b7912008-08-10 22:56:15 +02001496 I2C_SMBUS_BYTE, &data) >= 0)
Jean Delvare12b5053a2007-05-01 23:26:31 +02001497 break;
1498 } else {
1499 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1500 I2C_SMBUS_WRITE, 0,
1501 I2C_SMBUS_QUICK, NULL) >= 0)
1502 break;
1503 }
1504 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02001505
1506 if (addr_list[i] == I2C_CLIENT_END) {
1507 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1508 return NULL;
1509 }
1510
1511 info->addr = addr_list[i];
1512 return i2c_new_device(adap, info);
1513}
1514EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516struct i2c_adapter* i2c_get_adapter(int id)
1517{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01001519
Jean Delvarecaada322008-01-27 18:14:49 +01001520 mutex_lock(&core_lock);
Jack Stone1cf92b42009-06-15 18:01:46 +02001521 adapter = idr_find(&i2c_adapter_idr, id);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001522 if (adapter && !try_module_get(adapter->owner))
1523 adapter = NULL;
1524
Jean Delvarecaada322008-01-27 18:14:49 +01001525 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001526 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
David Brownellc0564602007-05-01 23:26:31 +02001528EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530void i2c_put_adapter(struct i2c_adapter *adap)
1531{
1532 module_put(adap->owner);
1533}
David Brownellc0564602007-05-01 23:26:31 +02001534EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536/* The SMBus parts */
1537
David Brownell438d6c22006-12-10 21:21:31 +01001538#define POLY (0x1070U << 3)
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001539static u8 crc8(u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 int i;
David Brownell438d6c22006-12-10 21:21:31 +01001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 for(i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01001544 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 data = data ^ POLY;
1546 data = data << 1;
1547 }
1548 return (u8)(data >> 8);
1549}
1550
Jean Delvare421ef472005-10-26 21:28:55 +02001551/* Incremental CRC8 over count bytes in the array pointed to by p */
1552static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 int i;
1555
1556 for(i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02001557 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return crc;
1559}
1560
Jean Delvare421ef472005-10-26 21:28:55 +02001561/* Assume a 7-bit address, which is reasonable for SMBus */
1562static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Jean Delvare421ef472005-10-26 21:28:55 +02001564 /* The address will be sent first */
1565 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1566 pec = i2c_smbus_pec(pec, &addr, 1);
1567
1568 /* The data buffer follows */
1569 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
Jean Delvare421ef472005-10-26 21:28:55 +02001572/* Used for write only transactions */
1573static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Jean Delvare421ef472005-10-26 21:28:55 +02001575 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1576 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
Jean Delvare421ef472005-10-26 21:28:55 +02001579/* Return <0 on CRC error
1580 If there was a write before this read (most cases) we need to take the
1581 partial CRC from the write part into account.
1582 Note that this function does modify the message (we need to decrease the
1583 message length to hide the CRC byte from the caller). */
1584static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Jean Delvare421ef472005-10-26 21:28:55 +02001586 u8 rpec = msg->buf[--msg->len];
1587 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (rpec != cpec) {
1590 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1591 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02001592 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
David Brownell438d6c22006-12-10 21:21:31 +01001594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
David Brownella1cdeda2008-07-14 22:38:24 +02001597/**
1598 * i2c_smbus_read_byte - SMBus "receive byte" protocol
1599 * @client: Handle to slave device
1600 *
1601 * This executes the SMBus "receive byte" protocol, returning negative errno
1602 * else the byte received from the device.
1603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604s32 i2c_smbus_read_byte(struct i2c_client *client)
1605{
1606 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001607 int status;
1608
1609 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1610 I2C_SMBUS_READ, 0,
1611 I2C_SMBUS_BYTE, &data);
1612 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
David Brownellc0564602007-05-01 23:26:31 +02001614EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
David Brownella1cdeda2008-07-14 22:38:24 +02001616/**
1617 * i2c_smbus_write_byte - SMBus "send byte" protocol
1618 * @client: Handle to slave device
1619 * @value: Byte to be sent
1620 *
1621 * This executes the SMBus "send byte" protocol, returning negative errno
1622 * else zero on success.
1623 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1625{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02001627 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
David Brownellc0564602007-05-01 23:26:31 +02001629EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
David Brownella1cdeda2008-07-14 22:38:24 +02001631/**
1632 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1633 * @client: Handle to slave device
1634 * @command: Byte interpreted by slave
1635 *
1636 * This executes the SMBus "read byte" protocol, returning negative errno
1637 * else a data byte received from the device.
1638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1640{
1641 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001642 int status;
1643
1644 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1645 I2C_SMBUS_READ, command,
1646 I2C_SMBUS_BYTE_DATA, &data);
1647 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
David Brownellc0564602007-05-01 23:26:31 +02001649EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
David Brownella1cdeda2008-07-14 22:38:24 +02001651/**
1652 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1653 * @client: Handle to slave device
1654 * @command: Byte interpreted by slave
1655 * @value: Byte being written
1656 *
1657 * This executes the SMBus "write byte" protocol, returning negative errno
1658 * else zero on success.
1659 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1661{
1662 union i2c_smbus_data data;
1663 data.byte = value;
1664 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1665 I2C_SMBUS_WRITE,command,
1666 I2C_SMBUS_BYTE_DATA,&data);
1667}
David Brownellc0564602007-05-01 23:26:31 +02001668EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
David Brownella1cdeda2008-07-14 22:38:24 +02001670/**
1671 * i2c_smbus_read_word_data - SMBus "read word" protocol
1672 * @client: Handle to slave device
1673 * @command: Byte interpreted by slave
1674 *
1675 * This executes the SMBus "read word" protocol, returning negative errno
1676 * else a 16-bit unsigned "word" received from the device.
1677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1679{
1680 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001681 int status;
1682
1683 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1684 I2C_SMBUS_READ, command,
1685 I2C_SMBUS_WORD_DATA, &data);
1686 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
David Brownellc0564602007-05-01 23:26:31 +02001688EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
David Brownella1cdeda2008-07-14 22:38:24 +02001690/**
1691 * i2c_smbus_write_word_data - SMBus "write word" protocol
1692 * @client: Handle to slave device
1693 * @command: Byte interpreted by slave
1694 * @value: 16-bit "word" being written
1695 *
1696 * This executes the SMBus "write word" protocol, returning negative errno
1697 * else zero on success.
1698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1700{
1701 union i2c_smbus_data data;
1702 data.word = value;
1703 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1704 I2C_SMBUS_WRITE,command,
1705 I2C_SMBUS_WORD_DATA,&data);
1706}
David Brownellc0564602007-05-01 23:26:31 +02001707EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
David Brownella64ec072007-10-13 23:56:31 +02001709/**
Prakash Mortha596c88f2008-10-14 17:30:06 +02001710 * i2c_smbus_process_call - SMBus "process call" protocol
1711 * @client: Handle to slave device
1712 * @command: Byte interpreted by slave
1713 * @value: 16-bit "word" being written
1714 *
1715 * This executes the SMBus "process call" protocol, returning negative errno
1716 * else a 16-bit unsigned "word" received from the device.
1717 */
1718s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value)
1719{
1720 union i2c_smbus_data data;
1721 int status;
1722 data.word = value;
1723
1724 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1725 I2C_SMBUS_WRITE, command,
1726 I2C_SMBUS_PROC_CALL, &data);
1727 return (status < 0) ? status : data.word;
1728}
1729EXPORT_SYMBOL(i2c_smbus_process_call);
1730
1731/**
David Brownella1cdeda2008-07-14 22:38:24 +02001732 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02001733 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02001734 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02001735 * @values: Byte array into which data will be read; big enough to hold
1736 * the data returned by the slave. SMBus allows at most 32 bytes.
1737 *
David Brownella1cdeda2008-07-14 22:38:24 +02001738 * This executes the SMBus "block read" protocol, returning negative errno
1739 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02001740 *
1741 * Note that using this function requires that the client's adapter support
1742 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
1743 * support this; its emulation through I2C messaging relies on a specific
1744 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1745 */
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001746s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1747 u8 *values)
1748{
1749 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001750 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001751
David Brownell24a5bb72008-07-14 22:38:23 +02001752 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1753 I2C_SMBUS_READ, command,
1754 I2C_SMBUS_BLOCK_DATA, &data);
1755 if (status)
1756 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001757
1758 memcpy(values, &data.block[1], data.block[0]);
1759 return data.block[0];
1760}
1761EXPORT_SYMBOL(i2c_smbus_read_block_data);
1762
David Brownella1cdeda2008-07-14 22:38:24 +02001763/**
1764 * i2c_smbus_write_block_data - SMBus "block write" protocol
1765 * @client: Handle to slave device
1766 * @command: Byte interpreted by slave
1767 * @length: Size of data block; SMBus allows at most 32 bytes
1768 * @values: Byte array which will be written.
1769 *
1770 * This executes the SMBus "block write" protocol, returning negative errno
1771 * else zero on success.
1772 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001774 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (length > I2C_SMBUS_BLOCK_MAX)
1779 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01001781 memcpy(&data.block[1], values, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1783 I2C_SMBUS_WRITE,command,
1784 I2C_SMBUS_BLOCK_DATA,&data);
1785}
David Brownellc0564602007-05-01 23:26:31 +02001786EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788/* Returns the number of read bytes */
Jean Delvare4b2643d2007-07-12 14:12:29 +02001789s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1790 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001793 int status;
Jean Delvare76560322006-01-18 23:14:55 +01001794
Jean Delvare4b2643d2007-07-12 14:12:29 +02001795 if (length > I2C_SMBUS_BLOCK_MAX)
1796 length = I2C_SMBUS_BLOCK_MAX;
1797 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02001798 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1799 I2C_SMBUS_READ, command,
1800 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1801 if (status < 0)
1802 return status;
Jean Delvare76560322006-01-18 23:14:55 +01001803
1804 memcpy(values, &data.block[1], data.block[0]);
1805 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
David Brownellc0564602007-05-01 23:26:31 +02001807EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Jean Delvare21bbd692006-01-09 15:19:18 +11001809s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001810 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11001811{
1812 union i2c_smbus_data data;
1813
1814 if (length > I2C_SMBUS_BLOCK_MAX)
1815 length = I2C_SMBUS_BLOCK_MAX;
1816 data.block[0] = length;
1817 memcpy(data.block + 1, values, length);
1818 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1819 I2C_SMBUS_WRITE, command,
1820 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1821}
David Brownellc0564602007-05-01 23:26:31 +02001822EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11001823
David Brownell438d6c22006-12-10 21:21:31 +01001824/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 No checking of parameters is done! */
David Brownell438d6c22006-12-10 21:21:31 +01001826static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 unsigned short flags,
David Brownell438d6c22006-12-10 21:21:31 +01001828 char read_write, u8 command, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 union i2c_smbus_data * data)
1830{
1831 /* So we need to generate a series of msgs. In the case of writing, we
1832 need to use only one message; when reading, we need two. We initialize
1833 most things with sane defaults, to keep the code below somewhat
1834 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001835 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1836 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 int num = read_write == I2C_SMBUS_READ?2:1;
David Brownell438d6c22006-12-10 21:21:31 +01001838 struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 { addr, flags | I2C_M_RD, 0, msgbuf1 }
1840 };
1841 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02001842 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02001843 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 msgbuf0[0] = command;
1846 switch(size) {
1847 case I2C_SMBUS_QUICK:
1848 msg[0].len = 0;
1849 /* Special case: The read/write field is used as data */
Roel Kluinf29d2e02009-02-24 19:19:48 +01001850 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
1851 I2C_M_RD : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 num = 1;
1853 break;
1854 case I2C_SMBUS_BYTE:
1855 if (read_write == I2C_SMBUS_READ) {
1856 /* Special case: only a read! */
1857 msg[0].flags = I2C_M_RD | flags;
1858 num = 1;
1859 }
1860 break;
1861 case I2C_SMBUS_BYTE_DATA:
1862 if (read_write == I2C_SMBUS_READ)
1863 msg[1].len = 1;
1864 else {
1865 msg[0].len = 2;
1866 msgbuf0[1] = data->byte;
1867 }
1868 break;
1869 case I2C_SMBUS_WORD_DATA:
1870 if (read_write == I2C_SMBUS_READ)
1871 msg[1].len = 2;
1872 else {
1873 msg[0].len=3;
1874 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001875 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877 break;
1878 case I2C_SMBUS_PROC_CALL:
1879 num = 2; /* Special case */
1880 read_write = I2C_SMBUS_READ;
1881 msg[0].len = 3;
1882 msg[1].len = 2;
1883 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001884 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 break;
1886 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02001888 msg[1].flags |= I2C_M_RECV_LEN;
1889 msg[1].len = 1; /* block length will be added by
1890 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 } else {
1892 msg[0].len = data->block[0] + 2;
1893 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02001894 dev_err(&adapter->dev,
1895 "Invalid block write size %d\n",
1896 data->block[0]);
1897 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001899 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 msgbuf0[i] = data->block[i-1];
1901 }
1902 break;
1903 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02001904 num = 2; /* Another special case */
1905 read_write = I2C_SMBUS_READ;
1906 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02001907 dev_err(&adapter->dev,
1908 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02001909 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02001910 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02001911 }
1912 msg[0].len = data->block[0] + 2;
1913 for (i = 1; i < msg[0].len; i++)
1914 msgbuf0[i] = data->block[i-1];
1915 msg[1].flags |= I2C_M_RECV_LEN;
1916 msg[1].len = 1; /* block length will be added by
1917 the underlying bus driver */
1918 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 case I2C_SMBUS_I2C_BLOCK_DATA:
1920 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02001921 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 } else {
1923 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02001924 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02001925 dev_err(&adapter->dev,
1926 "Invalid block write size %d\n",
1927 data->block[0]);
1928 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930 for (i = 1; i <= data->block[0]; i++)
1931 msgbuf0[i] = data->block[i];
1932 }
1933 break;
1934 default:
David Brownell24a5bb72008-07-14 22:38:23 +02001935 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1936 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
Jean Delvare421ef472005-10-26 21:28:55 +02001939 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1940 && size != I2C_SMBUS_I2C_BLOCK_DATA);
1941 if (i) {
1942 /* Compute PEC if first message is a write */
1943 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01001944 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02001945 i2c_smbus_add_pec(&msg[0]);
1946 else /* Write followed by read */
1947 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1948 }
1949 /* Ask for PEC if last message is a read */
1950 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01001951 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02001952 }
1953
David Brownell24a5bb72008-07-14 22:38:23 +02001954 status = i2c_transfer(adapter, msg, num);
1955 if (status < 0)
1956 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Jean Delvare421ef472005-10-26 21:28:55 +02001958 /* Check PEC if last message is a read */
1959 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02001960 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1961 if (status < 0)
1962 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02001963 }
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (read_write == I2C_SMBUS_READ)
1966 switch(size) {
1967 case I2C_SMBUS_BYTE:
1968 data->byte = msgbuf0[0];
1969 break;
1970 case I2C_SMBUS_BYTE_DATA:
1971 data->byte = msgbuf1[0];
1972 break;
David Brownell438d6c22006-12-10 21:21:31 +01001973 case I2C_SMBUS_WORD_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 case I2C_SMBUS_PROC_CALL:
1975 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1976 break;
1977 case I2C_SMBUS_I2C_BLOCK_DATA:
Jean Delvare4b2643d2007-07-12 14:12:29 +02001978 for (i = 0; i < data->block[0]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 data->block[i+1] = msgbuf1[i];
1980 break;
Jean Delvare209d27c2007-05-01 23:26:29 +02001981 case I2C_SMBUS_BLOCK_DATA:
1982 case I2C_SMBUS_BLOCK_PROC_CALL:
1983 for (i = 0; i < msgbuf1[0] + 1; i++)
1984 data->block[i] = msgbuf1[i];
1985 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 return 0;
1988}
1989
David Brownella1cdeda2008-07-14 22:38:24 +02001990/**
1991 * i2c_smbus_xfer - execute SMBus protocol operations
1992 * @adapter: Handle to I2C bus
1993 * @addr: Address of SMBus slave on that bus
1994 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
1995 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
1996 * @command: Byte interpreted by slave, for protocols which use such bytes
1997 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
1998 * @data: Data to be read or written
1999 *
2000 * This executes an SMBus protocol operation, and returns a negative
2001 * errno code else zero on success.
2002 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002003s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02002004 char read_write, u8 command, int protocol,
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002005 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Clifford Wolf66b650f2009-06-15 18:01:46 +02002007 unsigned long orig_jiffies;
2008 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 flags &= I2C_M_TEN | I2C_CLIENT_PEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 if (adapter->algo->smbus_xfer) {
Ingo Molnar5c085d32006-01-18 23:16:04 +01002014 mutex_lock(&adapter->bus_lock);
Clifford Wolf66b650f2009-06-15 18:01:46 +02002015
2016 /* Retry automatically on arbitration loss */
2017 orig_jiffies = jiffies;
2018 for (res = 0, try = 0; try <= adapter->retries; try++) {
2019 res = adapter->algo->smbus_xfer(adapter, addr, flags,
2020 read_write, command,
2021 protocol, data);
2022 if (res != -EAGAIN)
2023 break;
2024 if (time_after(jiffies,
2025 orig_jiffies + adapter->timeout))
2026 break;
2027 }
Ingo Molnar5c085d32006-01-18 23:16:04 +01002028 mutex_unlock(&adapter->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 } else
2030 res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write,
David Brownella1cdeda2008-07-14 22:38:24 +02002031 command, protocol, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return res;
2034}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2038MODULE_DESCRIPTION("I2C-Bus main module");
2039MODULE_LICENSE("GPL");