blob: 80ae12048e858a4bd80bfd66deaddf7d7351ef49 [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
155static int i2c_device_suspend(struct device * dev, pm_message_t mesg)
156{
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
167static int i2c_device_resume(struct device * dev)
168{
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
David Brownell7b4fbc52007-05-01 23:26:30 +0200190static ssize_t show_client_name(struct device *dev, struct device_attribute *attr, char *buf)
191{
192 struct i2c_client *client = to_i2c_client(dev);
193 return sprintf(buf, "%s\n", client->name);
194}
195
196static ssize_t show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
197{
198 struct i2c_client *client = to_i2c_client(dev);
Jean Delvareeb8a7902008-05-18 20:49:41 +0200199 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200200}
201
202static struct device_attribute i2c_dev_attrs[] = {
203 __ATTR(name, S_IRUGO, show_client_name, NULL),
204 /* modalias helps coldplug: modprobe $(cat .../modalias) */
205 __ATTR(modalias, S_IRUGO, show_modalias, NULL),
206 { },
207};
208
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200209struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100210 .name = "i2c",
David Brownell7b4fbc52007-05-01 23:26:30 +0200211 .dev_attrs = i2c_dev_attrs,
David Brownellf37dd802007-02-13 22:09:00 +0100212 .match = i2c_device_match,
David Brownell7b4fbc52007-05-01 23:26:30 +0200213 .uevent = i2c_device_uevent,
David Brownellf37dd802007-02-13 22:09:00 +0100214 .probe = i2c_device_probe,
215 .remove = i2c_device_remove,
216 .shutdown = i2c_device_shutdown,
217 .suspend = i2c_device_suspend,
218 .resume = i2c_device_resume,
Russell Kingb864c7d2006-01-05 14:37:50 +0000219};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200220EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000221
David Brownell9b766b82008-01-27 18:14:51 +0100222
223/**
224 * i2c_verify_client - return parameter as i2c_client, or NULL
225 * @dev: device, probably from some driver model iterator
226 *
227 * When traversing the driver model tree, perhaps using driver model
228 * iterators like @device_for_each_child(), you can't assume very much
229 * about the nodes you find. Use this function to avoid oopses caused
230 * by wrongly treating some non-I2C device as an i2c_client.
231 */
232struct i2c_client *i2c_verify_client(struct device *dev)
233{
234 return (dev->bus == &i2c_bus_type)
235 ? to_i2c_client(dev)
236 : NULL;
237}
238EXPORT_SYMBOL(i2c_verify_client);
239
240
David Brownell9c1600e2007-05-01 23:26:31 +0200241/**
242 * i2c_new_device - instantiate an i2c device for use with a new style driver
243 * @adap: the adapter managing the device
244 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +0200245 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200246 *
247 * Create a device to work with a new style i2c driver, where binding is
248 * handled through driver model probe()/remove() methods. This call is not
249 * appropriate for use by mainboad initialization logic, which usually runs
250 * during an arch_initcall() long before any i2c_adapter could exist.
251 *
252 * This returns the new i2c client, which may be saved for later use with
253 * i2c_unregister_device(); or NULL to indicate an error.
254 */
255struct i2c_client *
256i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
257{
258 struct i2c_client *client;
259 int status;
260
261 client = kzalloc(sizeof *client, GFP_KERNEL);
262 if (!client)
263 return NULL;
264
265 client->adapter = adap;
266
267 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +0200268
Marc Pignatee354252008-08-28 08:33:22 +0200269 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +0200270 client->addr = info->addr;
271 client->irq = info->irq;
272
David Brownell9c1600e2007-05-01 23:26:31 +0200273 strlcpy(client->name, info->type, sizeof(client->name));
274
275 /* a new style driver may be bound to this device when we
276 * return from this function, or any later moment (e.g. maybe
277 * hotplugging will load the driver module). and the device
278 * refcount model is the standard driver model one.
279 */
280 status = i2c_attach_client(client);
281 if (status < 0) {
282 kfree(client);
283 client = NULL;
284 }
285 return client;
286}
287EXPORT_SYMBOL_GPL(i2c_new_device);
288
289
290/**
291 * i2c_unregister_device - reverse effect of i2c_new_device()
292 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +0200293 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200294 */
295void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +0200296{
297 struct i2c_adapter *adapter = client->adapter;
298 struct i2c_driver *driver = client->driver;
299
300 if (driver && !is_newstyle_driver(driver)) {
301 dev_err(&client->dev, "can't unregister devices "
302 "with legacy drivers\n");
303 WARN_ON(1);
304 return;
305 }
306
Jean Delvare85081592008-07-14 22:38:36 +0200307 if (adapter->client_unregister) {
308 if (adapter->client_unregister(client)) {
309 dev_warn(&client->dev,
310 "client_unregister [%s] failed\n",
311 client->name);
312 }
313 }
314
David Brownella1d9e6e2007-05-01 23:26:30 +0200315 mutex_lock(&adapter->clist_lock);
316 list_del(&client->list);
317 mutex_unlock(&adapter->clist_lock);
318
319 device_unregister(&client->dev);
320}
David Brownell9c1600e2007-05-01 23:26:31 +0200321EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +0200322
323
Jean Delvare60b129d2008-05-11 20:37:06 +0200324static const struct i2c_device_id dummy_id[] = {
325 { "dummy", 0 },
326 { },
327};
328
Jean Delvared2653e92008-04-29 23:11:39 +0200329static int dummy_probe(struct i2c_client *client,
330 const struct i2c_device_id *id)
331{
332 return 0;
333}
334
335static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +0100336{
337 return 0;
338}
339
340static struct i2c_driver dummy_driver = {
341 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +0200342 .probe = dummy_probe,
343 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +0200344 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +0100345};
346
347/**
348 * i2c_new_dummy - return a new i2c device bound to a dummy driver
349 * @adapter: the adapter managing the device
350 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +0100351 * Context: can sleep
352 *
353 * This returns an I2C client bound to the "dummy" driver, intended for use
354 * with devices that consume multiple addresses. Examples of such chips
355 * include various EEPROMS (like 24c04 and 24c08 models).
356 *
357 * These dummy devices have two main uses. First, most I2C and SMBus calls
358 * except i2c_transfer() need a client handle; the dummy will be that handle.
359 * And second, this prevents the specified address from being bound to a
360 * different driver.
361 *
362 * This returns the new i2c client, which should be saved for later use with
363 * i2c_unregister_device(); or NULL to indicate an error.
364 */
365struct i2c_client *
Jean Delvare60b129d2008-05-11 20:37:06 +0200366i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +0100367{
368 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +0200369 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +0100370 };
371
David Brownelle9f13732008-01-27 18:14:52 +0100372 return i2c_new_device(adapter, &info);
373}
374EXPORT_SYMBOL_GPL(i2c_new_dummy);
375
David Brownellf37dd802007-02-13 22:09:00 +0100376/* ------------------------------------------------------------------------- */
377
David Brownell16ffadf2007-05-01 23:26:28 +0200378/* I2C bus adapters -- one roots each I2C or SMBUS segment */
379
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200380static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
David Brownellef2c83212007-05-01 23:26:28 +0200382 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 complete(&adap->dev_released);
384}
385
David Brownell16ffadf2007-05-01 23:26:28 +0200386static ssize_t
387show_adapter_name(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
David Brownellef2c83212007-05-01 23:26:28 +0200389 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return sprintf(buf, "%s\n", adap->name);
391}
David Brownell16ffadf2007-05-01 23:26:28 +0200392
393static struct device_attribute i2c_adapter_attrs[] = {
394 __ATTR(name, S_IRUGO, show_adapter_name, NULL),
395 { },
396};
397
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200398static struct class i2c_adapter_class = {
David Brownell16ffadf2007-05-01 23:26:28 +0200399 .owner = THIS_MODULE,
400 .name = "i2c-adapter",
401 .dev_attrs = i2c_adapter_attrs,
402};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
David Brownell9c1600e2007-05-01 23:26:31 +0200404static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
405{
406 struct i2c_devinfo *devinfo;
407
408 mutex_lock(&__i2c_board_lock);
409 list_for_each_entry(devinfo, &__i2c_board_list, list) {
410 if (devinfo->busnum == adapter->nr
411 && !i2c_new_device(adapter,
412 &devinfo->board_info))
413 printk(KERN_ERR "i2c-core: can't create i2c%d-%04x\n",
414 i2c_adapter_id(adapter),
415 devinfo->board_info.addr);
416 }
417 mutex_unlock(&__i2c_board_lock);
418}
419
Jean Delvare026526f2008-01-27 18:14:49 +0100420static int i2c_do_add_adapter(struct device_driver *d, void *data)
421{
422 struct i2c_driver *driver = to_i2c_driver(d);
423 struct i2c_adapter *adap = data;
424
Jean Delvare4735c982008-07-14 22:38:36 +0200425 /* Detect supported devices on that bus, and instantiate them */
426 i2c_detect(adap, driver);
427
428 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +0100429 if (driver->attach_adapter) {
430 /* We ignore the return code; if it fails, too bad */
431 driver->attach_adapter(adap);
432 }
433 return 0;
434}
435
David Brownell6e13e642007-05-01 23:26:31 +0200436static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Jean Delvare026526f2008-01-27 18:14:49 +0100438 int res = 0, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
David Brownell1d0b19c2008-10-14 17:30:05 +0200440 /* Can't register until after driver model init */
441 if (unlikely(WARN_ON(!i2c_bus_type.p)))
442 return -EAGAIN;
443
Ingo Molnar5c085d32006-01-18 23:16:04 +0100444 mutex_init(&adap->bus_lock);
445 mutex_init(&adap->clist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 INIT_LIST_HEAD(&adap->clients);
447
Jean Delvarecaada322008-01-27 18:14:49 +0100448 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* Add the adapter to the driver core.
451 * If the parent pointer is not set up,
452 * we add this adapter to the host bus.
453 */
David Brownellb119dc32007-01-04 13:07:04 +0100454 if (adap->dev.parent == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 adap->dev.parent = &platform_bus;
Jean Delvarefe2c8d52007-02-13 22:09:04 +0100456 pr_debug("I2C adapter driver [%s] forgot to specify "
457 "physical device\n", adap->name);
David Brownellb119dc32007-01-04 13:07:04 +0100458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 sprintf(adap->dev.bus_id, "i2c-%d", adap->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 adap->dev.release = &i2c_adapter_dev_release;
Jean Delvarefccb56e2007-05-01 23:26:27 +0200461 adap->dev.class = &i2c_adapter_class;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200462 res = device_register(&adap->dev);
463 if (res)
464 goto out_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200466 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
467
David Brownell6e13e642007-05-01 23:26:31 +0200468 /* create pre-declared device nodes for new-style drivers */
469 if (adap->nr < __i2c_first_dynamic_bus_num)
470 i2c_scan_static_board_info(adap);
471
Jean Delvare4735c982008-07-14 22:38:36 +0200472 /* Notify drivers */
Jean Delvare026526f2008-01-27 18:14:49 +0100473 dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap,
474 i2c_do_add_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476out_unlock:
Jean Delvarecaada322008-01-27 18:14:49 +0100477 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return res;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200479
Jean Delvareb119c6c2006-08-15 18:26:30 +0200480out_list:
Jean Delvareb119c6c2006-08-15 18:26:30 +0200481 idr_remove(&i2c_adapter_idr, adap->nr);
482 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
David Brownell6e13e642007-05-01 23:26:31 +0200485/**
486 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
487 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +0200488 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200489 *
490 * This routine is used to declare an I2C adapter when its bus number
491 * doesn't matter. Examples: for I2C adapters dynamically added by
492 * USB links or PCI plugin cards.
493 *
494 * When this returns zero, a new bus number was allocated and stored
495 * in adap->nr, and the specified adapter became available for clients.
496 * Otherwise, a negative errno value is returned.
497 */
498int i2c_add_adapter(struct i2c_adapter *adapter)
499{
500 int id, res = 0;
501
502retry:
503 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
504 return -ENOMEM;
505
Jean Delvarecaada322008-01-27 18:14:49 +0100506 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200507 /* "above" here means "above or equal to", sigh */
508 res = idr_get_new_above(&i2c_adapter_idr, adapter,
509 __i2c_first_dynamic_bus_num, &id);
Jean Delvarecaada322008-01-27 18:14:49 +0100510 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200511
512 if (res < 0) {
513 if (res == -EAGAIN)
514 goto retry;
515 return res;
516 }
517
518 adapter->nr = id;
519 return i2c_register_adapter(adapter);
520}
521EXPORT_SYMBOL(i2c_add_adapter);
522
523/**
524 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
525 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +0200526 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200527 *
528 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +0100529 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
530 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +0200531 * is used to properly configure I2C devices.
532 *
533 * If no devices have pre-been declared for this bus, then be sure to
534 * register the adapter before any dynamically allocated ones. Otherwise
535 * the required bus ID may not be available.
536 *
537 * When this returns zero, the specified adapter became available for
538 * clients using the bus number provided in adap->nr. Also, the table
539 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
540 * and the appropriate driver model device nodes are created. Otherwise, a
541 * negative errno value is returned.
542 */
543int i2c_add_numbered_adapter(struct i2c_adapter *adap)
544{
545 int id;
546 int status;
547
548 if (adap->nr & ~MAX_ID_MASK)
549 return -EINVAL;
550
551retry:
552 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
553 return -ENOMEM;
554
Jean Delvarecaada322008-01-27 18:14:49 +0100555 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200556 /* "above" here means "above or equal to", sigh;
557 * we need the "equal to" result to force the result
558 */
559 status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
560 if (status == 0 && id != adap->nr) {
561 status = -EBUSY;
562 idr_remove(&i2c_adapter_idr, id);
563 }
Jean Delvarecaada322008-01-27 18:14:49 +0100564 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200565 if (status == -EAGAIN)
566 goto retry;
567
568 if (status == 0)
569 status = i2c_register_adapter(adap);
570 return status;
571}
572EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
573
Jean Delvare026526f2008-01-27 18:14:49 +0100574static int i2c_do_del_adapter(struct device_driver *d, void *data)
575{
576 struct i2c_driver *driver = to_i2c_driver(d);
577 struct i2c_adapter *adapter = data;
Jean Delvare4735c982008-07-14 22:38:36 +0200578 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +0100579 int res;
580
Jean Delvare4735c982008-07-14 22:38:36 +0200581 /* Remove the devices we created ourselves */
582 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
583 if (client->adapter == adapter) {
584 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
585 client->name, client->addr);
586 list_del(&client->detected);
587 i2c_unregister_device(client);
588 }
589 }
590
Jean Delvare026526f2008-01-27 18:14:49 +0100591 if (!driver->detach_adapter)
592 return 0;
593 res = driver->detach_adapter(adapter);
594 if (res)
595 dev_err(&adapter->dev, "detach_adapter failed (%d) "
596 "for driver [%s]\n", res, driver->driver.name);
597 return res;
598}
599
David Brownelld64f73b2007-07-12 14:12:28 +0200600/**
601 * i2c_del_adapter - unregister I2C adapter
602 * @adap: the adapter being unregistered
603 * Context: can sleep
604 *
605 * This unregisters an I2C adapter which was previously registered
606 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608int i2c_del_adapter(struct i2c_adapter *adap)
609{
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200610 struct i2c_client *client, *_n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int res = 0;
612
Jean Delvarecaada322008-01-27 18:14:49 +0100613 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 /* First make sure that this adapter was ever added */
Jean Delvare87c6c222008-01-27 18:14:48 +0100616 if (idr_find(&i2c_adapter_idr, adap->nr) != adap) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200617 pr_debug("i2c-core: attempting to delete unregistered "
618 "adapter [%s]\n", adap->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 res = -EINVAL;
620 goto out_unlock;
621 }
622
Jean Delvare026526f2008-01-27 18:14:49 +0100623 /* Tell drivers about this removal */
624 res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
625 i2c_do_del_adapter);
626 if (res)
627 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* detach any active clients. This must be done first, because
Tobias Klausera551acc2005-05-19 21:40:38 +0200630 * it can fail; in which case we give up. */
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200631 list_for_each_entry_safe(client, _n, &adap->clients, list) {
David Brownella1d9e6e2007-05-01 23:26:30 +0200632 struct i2c_driver *driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
David Brownella1d9e6e2007-05-01 23:26:30 +0200634 driver = client->driver;
635
636 /* new style, follow standard driver model */
637 if (!driver || is_newstyle_driver(driver)) {
638 i2c_unregister_device(client);
639 continue;
640 }
641
642 /* legacy drivers create and remove clients themselves */
643 if ((res = driver->detach_client(client))) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200644 dev_err(&adap->dev, "detach_client failed for client "
645 "[%s] at address 0x%02x\n", client->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 client->addr);
647 goto out_unlock;
648 }
649 }
650
651 /* clean up the sysfs representation */
652 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* wait for sysfs to drop all references */
656 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
David Brownell6e13e642007-05-01 23:26:31 +0200658 /* free bus id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 idr_remove(&i2c_adapter_idr, adap->nr);
660
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200661 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jean Delvarebd4bc3db2008-07-16 19:30:05 +0200663 /* Clear the device structure in case this adapter is ever going to be
664 added again */
665 memset(&adap->dev, 0, sizeof(adap->dev));
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 out_unlock:
Jean Delvarecaada322008-01-27 18:14:49 +0100668 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return res;
670}
David Brownellc0564602007-05-01 23:26:31 +0200671EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673
David Brownell7b4fbc52007-05-01 23:26:30 +0200674/* ------------------------------------------------------------------------- */
675
Dave Young7f101a92008-07-14 22:38:19 +0200676static int __attach_adapter(struct device *dev, void *data)
677{
678 struct i2c_adapter *adapter = to_i2c_adapter(dev);
679 struct i2c_driver *driver = data;
680
Jean Delvare4735c982008-07-14 22:38:36 +0200681 i2c_detect(adapter, driver);
682
683 /* Legacy drivers scan i2c busses directly */
684 if (driver->attach_adapter)
685 driver->attach_adapter(adapter);
Dave Young7f101a92008-07-14 22:38:19 +0200686
687 return 0;
688}
689
David Brownell7b4fbc52007-05-01 23:26:30 +0200690/*
691 * An i2c_driver is used with one or more i2c_client (device) nodes to access
692 * i2c slave chips, on a bus instance associated with some i2c_adapter. There
693 * are two models for binding the driver to its device: "new style" drivers
694 * follow the standard Linux driver model and just respond to probe() calls
695 * issued if the driver core sees they match(); "legacy" drivers create device
696 * nodes themselves.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
698
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800699int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Jean Delvare7eebcb72006-02-05 23:28:21 +0100701 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
David Brownell1d0b19c2008-10-14 17:30:05 +0200703 /* Can't register until after driver model init */
704 if (unlikely(WARN_ON(!i2c_bus_type.p)))
705 return -EAGAIN;
706
David Brownell7b4fbc52007-05-01 23:26:30 +0200707 /* new style driver methods can't mix with legacy ones */
David Brownella1d9e6e2007-05-01 23:26:30 +0200708 if (is_newstyle_driver(driver)) {
David Brownell7b4fbc52007-05-01 23:26:30 +0200709 if (driver->attach_adapter || driver->detach_adapter
710 || driver->detach_client) {
711 printk(KERN_WARNING
712 "i2c-core: driver [%s] is confused\n",
713 driver->driver.name);
714 return -EINVAL;
715 }
716 }
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800719 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
David Brownell6e13e642007-05-01 23:26:31 +0200722 /* for new style drivers, when registration returns the driver core
723 * will have called probe() for all matching-but-unbound devices.
724 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 res = driver_register(&driver->driver);
726 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +0100727 return res;
David Brownell438d6c22006-12-10 21:21:31 +0100728
Jean Delvarecaada322008-01-27 18:14:49 +0100729 mutex_lock(&core_lock);
Jean Delvare7eebcb72006-02-05 23:28:21 +0100730
Laurent Riffard35d8b2e2005-11-26 20:34:05 +0100731 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Jean Delvare4735c982008-07-14 22:38:36 +0200733 INIT_LIST_HEAD(&driver->clients);
734 /* Walk the adapters that are already present */
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400735 class_for_each_device(&i2c_adapter_class, NULL, driver,
736 __attach_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Jean Delvarecaada322008-01-27 18:14:49 +0100738 mutex_unlock(&core_lock);
Jean Delvare7eebcb72006-02-05 23:28:21 +0100739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800741EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Dave Young7f101a92008-07-14 22:38:19 +0200743static int __detach_adapter(struct device *dev, void *data)
744{
745 struct i2c_adapter *adapter = to_i2c_adapter(dev);
746 struct i2c_driver *driver = data;
Jean Delvare4735c982008-07-14 22:38:36 +0200747 struct i2c_client *client, *_n;
748
749 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
750 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
751 client->name, client->addr);
752 list_del(&client->detected);
753 i2c_unregister_device(client);
754 }
755
756 if (is_newstyle_driver(driver))
757 return 0;
Dave Young7f101a92008-07-14 22:38:19 +0200758
759 /* Have a look at each adapter, if clients of this driver are still
760 * attached. If so, detach them to be able to kill the driver
761 * afterwards.
762 */
763 if (driver->detach_adapter) {
764 if (driver->detach_adapter(adapter))
765 dev_err(&adapter->dev,
766 "detach_adapter failed for driver [%s]\n",
767 driver->driver.name);
768 } else {
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200769 struct i2c_client *client, *_n;
Dave Young7f101a92008-07-14 22:38:19 +0200770
Matthias Kaehlcke6a03cd92008-07-14 22:38:26 +0200771 list_for_each_entry_safe(client, _n, &adapter->clients, list) {
Dave Young7f101a92008-07-14 22:38:19 +0200772 if (client->driver != driver)
773 continue;
774 dev_dbg(&adapter->dev,
775 "detaching client [%s] at 0x%02x\n",
776 client->name, client->addr);
777 if (driver->detach_client(client))
778 dev_err(&adapter->dev, "detach_client "
779 "failed for client [%s] at 0x%02x\n",
780 client->name, client->addr);
781 }
782 }
783
784 return 0;
785}
786
David Brownella1d9e6e2007-05-01 23:26:30 +0200787/**
788 * i2c_del_driver - unregister I2C driver
789 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +0200790 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +0200791 */
Jean Delvareb3e82092007-05-01 23:26:32 +0200792void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Jean Delvarecaada322008-01-27 18:14:49 +0100794 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400796 class_for_each_device(&i2c_adapter_class, NULL, driver,
797 __detach_adapter);
David Brownella1d9e6e2007-05-01 23:26:30 +0200798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 driver_unregister(&driver->driver);
Laurent Riffard35d8b2e2005-11-26 20:34:05 +0100800 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jean Delvarecaada322008-01-27 18:14:49 +0100802 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
David Brownellc0564602007-05-01 23:26:31 +0200804EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
David Brownell7b4fbc52007-05-01 23:26:30 +0200806/* ------------------------------------------------------------------------- */
807
David Brownell9b766b82008-01-27 18:14:51 +0100808static int __i2c_check_addr(struct device *dev, void *addrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
David Brownell9b766b82008-01-27 18:14:51 +0100810 struct i2c_client *client = i2c_verify_client(dev);
811 int addr = *(int *)addrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
David Brownell9b766b82008-01-27 18:14:51 +0100813 if (client && client->addr == addr)
814 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return 0;
816}
817
Jean Delvare5e31c2b2007-11-15 19:24:02 +0100818static int i2c_check_addr(struct i2c_adapter *adapter, int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
David Brownell9b766b82008-01-27 18:14:51 +0100820 return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823int i2c_attach_client(struct i2c_client *client)
824{
825 struct i2c_adapter *adapter = client->adapter;
Jean Delvarec1159f92008-08-10 22:56:16 +0200826 int res;
827
828 /* Check for address business */
829 res = i2c_check_addr(adapter, client->addr);
830 if (res)
831 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 client->dev.parent = &client->adapter->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 client->dev.bus = &i2c_bus_type;
David Brownell9c1600e2007-05-01 23:26:31 +0200835
836 if (client->driver)
837 client->dev.driver = &client->driver->driver;
838
David Brownellde81d2a2007-05-22 19:49:16 +0200839 if (client->driver && !is_newstyle_driver(client->driver)) {
David Brownell9c1600e2007-05-01 23:26:31 +0200840 client->dev.release = i2c_client_release;
David Brownellde81d2a2007-05-22 19:49:16 +0200841 client->dev.uevent_suppress = 1;
842 } else
David Brownell9c1600e2007-05-01 23:26:31 +0200843 client->dev.release = i2c_client_dev_release;
David Brownell438d6c22006-12-10 21:21:31 +0100844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 snprintf(&client->dev.bus_id[0], sizeof(client->dev.bus_id),
846 "%d-%04x", i2c_adapter_id(adapter), client->addr);
Jean Delvareb119c6c2006-08-15 18:26:30 +0200847 res = device_register(&client->dev);
848 if (res)
David Brownell86ec5ec2008-01-27 18:14:51 +0100849 goto out_err;
850
851 mutex_lock(&adapter->clist_lock);
852 list_add_tail(&client->list, &adapter->clients);
Jean Delvareb119c6c2006-08-15 18:26:30 +0200853 mutex_unlock(&adapter->clist_lock);
Jean Delvare77ed74d2006-09-30 17:18:59 +0200854
David Brownell86ec5ec2008-01-27 18:14:51 +0100855 dev_dbg(&adapter->dev, "client [%s] registered with bus id %s\n",
856 client->name, client->dev.bus_id);
857
Jean Delvare77ed74d2006-09-30 17:18:59 +0200858 if (adapter->client_register) {
859 if (adapter->client_register(client)) {
860 dev_dbg(&adapter->dev, "client_register "
861 "failed for client [%s] at 0x%02x\n",
862 client->name, client->addr);
863 }
864 }
865
866 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200867
David Brownell86ec5ec2008-01-27 18:14:51 +0100868out_err:
Jean Delvareb119c6c2006-08-15 18:26:30 +0200869 dev_err(&adapter->dev, "Failed to attach i2c client %s at 0x%02x "
870 "(%d)\n", client->name, client->addr, res);
Jean Delvare77ed74d2006-09-30 17:18:59 +0200871 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
David Brownellc0564602007-05-01 23:26:31 +0200873EXPORT_SYMBOL(i2c_attach_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875int i2c_detach_client(struct i2c_client *client)
876{
877 struct i2c_adapter *adapter = client->adapter;
878 int res = 0;
David Brownell438d6c22006-12-10 21:21:31 +0100879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (adapter->client_unregister) {
881 res = adapter->client_unregister(client);
882 if (res) {
883 dev_err(&client->dev,
Jean Delvare86749e82005-07-29 12:15:29 -0700884 "client_unregister [%s] failed, "
885 "client not detached\n", client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto out;
887 }
888 }
889
Ingo Molnar5c085d32006-01-18 23:16:04 +0100890 mutex_lock(&adapter->clist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 list_del(&client->list);
Jean Delvare9ddced12008-01-27 18:14:51 +0100892 mutex_unlock(&adapter->clist_lock);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 init_completion(&client->released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 device_unregister(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 wait_for_completion(&client->released);
897
898 out:
899 return res;
900}
David Brownellc0564602007-05-01 23:26:31 +0200901EXPORT_SYMBOL(i2c_detach_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Jean Delvaree48d3312008-01-27 18:14:48 +0100903/**
904 * i2c_use_client - increments the reference count of the i2c client structure
905 * @client: the client being referenced
906 *
907 * Each live reference to a client should be refcounted. The driver model does
908 * that automatically as part of driver binding, so that most drivers don't
909 * need to do this explicitly: they hold a reference until they're unbound
910 * from the device.
911 *
912 * A pointer to the client with the incremented reference counter is returned.
913 */
914struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
David Brownell6ea438e2008-07-14 22:38:24 +0200916 if (client && get_device(&client->dev))
917 return client;
918 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
David Brownellc0564602007-05-01 23:26:31 +0200920EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Jean Delvaree48d3312008-01-27 18:14:48 +0100922/**
923 * i2c_release_client - release a use of the i2c client structure
924 * @client: the client being no longer referenced
925 *
926 * Must be called when a user of a client is finished with it.
927 */
928void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
David Brownell6ea438e2008-07-14 22:38:24 +0200930 if (client)
931 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
David Brownellc0564602007-05-01 23:26:31 +0200933EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
David Brownell9b766b82008-01-27 18:14:51 +0100935struct i2c_cmd_arg {
936 unsigned cmd;
937 void *arg;
938};
939
940static int i2c_cmd(struct device *dev, void *_arg)
941{
942 struct i2c_client *client = i2c_verify_client(dev);
943 struct i2c_cmd_arg *arg = _arg;
944
945 if (client && client->driver && client->driver->command)
946 client->driver->command(client, arg->cmd, arg->arg);
947 return 0;
948}
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
951{
David Brownell9b766b82008-01-27 18:14:51 +0100952 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
David Brownell9b766b82008-01-27 18:14:51 +0100954 cmd_arg.cmd = cmd;
955 cmd_arg.arg = arg;
956 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
David Brownellc0564602007-05-01 23:26:31 +0200958EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960static int __init i2c_init(void)
961{
962 int retval;
963
964 retval = bus_register(&i2c_bus_type);
965 if (retval)
966 return retval;
David Brownelle9f13732008-01-27 18:14:52 +0100967 retval = class_register(&i2c_adapter_class);
968 if (retval)
969 goto bus_err;
970 retval = i2c_add_driver(&dummy_driver);
971 if (retval)
972 goto class_err;
973 return 0;
974
975class_err:
976 class_unregister(&i2c_adapter_class);
977bus_err:
978 bus_unregister(&i2c_bus_type);
979 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
982static void __exit i2c_exit(void)
983{
David Brownelle9f13732008-01-27 18:14:52 +0100984 i2c_del_driver(&dummy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 class_unregister(&i2c_adapter_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 bus_unregister(&i2c_bus_type);
987}
988
David Brownella10f9e72008-10-14 17:30:06 +0200989/* We must initialize early, because some subsystems register i2c drivers
990 * in subsys_initcall() code, but are linked (and initialized) before i2c.
991 */
992postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993module_exit(i2c_exit);
994
995/* ----------------------------------------------------
996 * the functional interface to the i2c busses.
997 * ----------------------------------------------------
998 */
999
David Brownella1cdeda2008-07-14 22:38:24 +02001000/**
1001 * i2c_transfer - execute a single or combined I2C message
1002 * @adap: Handle to I2C bus
1003 * @msgs: One or more messages to execute before STOP is issued to
1004 * terminate the operation; each message begins with a START.
1005 * @num: Number of messages to be executed.
1006 *
1007 * Returns negative errno, else the number of messages executed.
1008 *
1009 * Note that there is no requirement that each message be sent to
1010 * the same slave address, although that is the most common model.
1011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012int i2c_transfer(struct i2c_adapter * adap, struct i2c_msg *msgs, int num)
1013{
1014 int ret;
1015
David Brownella1cdeda2008-07-14 22:38:24 +02001016 /* REVISIT the fault reporting model here is weak:
1017 *
1018 * - When we get an error after receiving N bytes from a slave,
1019 * there is no way to report "N".
1020 *
1021 * - When we get a NAK after transmitting N bytes to a slave,
1022 * there is no way to report "N" ... or to let the master
1023 * continue executing the rest of this combined message, if
1024 * that's the appropriate response.
1025 *
1026 * - When for example "num" is two and we successfully complete
1027 * the first message but get an error part way through the
1028 * second, it's unclear whether that should be reported as
1029 * one (discarding status on the second message) or errno
1030 * (discarding status on the first one).
1031 */
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (adap->algo->master_xfer) {
1034#ifdef DEBUG
1035 for (ret = 0; ret < num; ret++) {
1036 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02001037 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1038 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1039 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041#endif
1042
Mike Rapoportcea443a2008-01-27 18:14:50 +01001043 if (in_atomic() || irqs_disabled()) {
1044 ret = mutex_trylock(&adap->bus_lock);
1045 if (!ret)
1046 /* I2C activity is ongoing. */
1047 return -EAGAIN;
1048 } else {
1049 mutex_lock_nested(&adap->bus_lock, adap->level);
1050 }
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 ret = adap->algo->master_xfer(adap,msgs,num);
Ingo Molnar5c085d32006-01-18 23:16:04 +01001053 mutex_unlock(&adap->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 return ret;
1056 } else {
1057 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001058 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060}
David Brownellc0564602007-05-01 23:26:31 +02001061EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
David Brownella1cdeda2008-07-14 22:38:24 +02001063/**
1064 * i2c_master_send - issue a single I2C message in master transmit mode
1065 * @client: Handle to slave device
1066 * @buf: Data that will be written to the slave
1067 * @count: How many bytes to write
1068 *
1069 * Returns negative errno, or else the number of bytes written.
1070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071int i2c_master_send(struct i2c_client *client,const char *buf ,int count)
1072{
1073 int ret;
1074 struct i2c_adapter *adap=client->adapter;
1075 struct i2c_msg msg;
1076
Jean Delvare815f55f2005-05-07 22:58:46 +02001077 msg.addr = client->addr;
1078 msg.flags = client->flags & I2C_M_TEN;
1079 msg.len = count;
1080 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01001081
Jean Delvare815f55f2005-05-07 22:58:46 +02001082 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Jean Delvare815f55f2005-05-07 22:58:46 +02001084 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1085 transmitted, else error code. */
1086 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
David Brownellc0564602007-05-01 23:26:31 +02001088EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
David Brownella1cdeda2008-07-14 22:38:24 +02001090/**
1091 * i2c_master_recv - issue a single I2C message in master receive mode
1092 * @client: Handle to slave device
1093 * @buf: Where to store data read from slave
1094 * @count: How many bytes to read
1095 *
1096 * Returns negative errno, or else the number of bytes read.
1097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098int i2c_master_recv(struct i2c_client *client, char *buf ,int count)
1099{
1100 struct i2c_adapter *adap=client->adapter;
1101 struct i2c_msg msg;
1102 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Jean Delvare815f55f2005-05-07 22:58:46 +02001104 msg.addr = client->addr;
1105 msg.flags = client->flags & I2C_M_TEN;
1106 msg.flags |= I2C_M_RD;
1107 msg.len = count;
1108 msg.buf = buf;
1109
1110 ret = i2c_transfer(adap, &msg, 1);
1111
1112 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1113 transmitted, else error code. */
1114 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
David Brownellc0564602007-05-01 23:26:31 +02001116EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118/* ----------------------------------------------------
1119 * the i2c address scanning function
1120 * Will not work for 10-bit addresses!
1121 * ----------------------------------------------------
1122 */
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001123static int i2c_probe_address(struct i2c_adapter *adapter, int addr, int kind,
1124 int (*found_proc) (struct i2c_adapter *, int, int))
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001125{
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001126 int err;
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001127
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001128 /* Make sure the address is valid */
1129 if (addr < 0x03 || addr > 0x77) {
1130 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1131 addr);
1132 return -EINVAL;
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001133 }
1134
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001135 /* Skip if already in use */
1136 if (i2c_check_addr(adapter, addr))
1137 return 0;
1138
1139 /* Make sure there is something at this address, unless forced */
Jean Delvare4c9337d2005-08-09 20:28:10 +02001140 if (kind < 0) {
1141 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1142 I2C_SMBUS_QUICK, NULL) < 0)
1143 return 0;
1144
1145 /* prevent 24RF08 corruption */
1146 if ((addr & ~0x0f) == 0x50)
1147 i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1148 I2C_SMBUS_QUICK, NULL);
1149 }
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001150
1151 /* Finally call the custom detection function */
1152 err = found_proc(adapter, addr, kind);
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001153 /* -ENODEV can be returned if there is a chip at the given address
1154 but it isn't supported by this chip driver. We catch it here as
1155 this isn't an error. */
Jean Delvare114fd182006-09-03 22:25:04 +02001156 if (err == -ENODEV)
1157 err = 0;
1158
1159 if (err)
1160 dev_warn(&adapter->dev, "Client creation failed at 0x%x (%d)\n",
1161 addr, err);
1162 return err;
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165int i2c_probe(struct i2c_adapter *adapter,
Mark M. Hoffmanbfb6df22008-01-27 18:14:46 +01001166 const struct i2c_client_address_data *address_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 int (*found_proc) (struct i2c_adapter *, int, int))
1168{
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001169 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int adap_id = i2c_adapter_id(adapter);
1171
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001172 /* Force entries are done first, and are not affected by ignore
1173 entries */
1174 if (address_data->forces) {
Mark M. Hoffmanbfb6df22008-01-27 18:14:46 +01001175 const unsigned short * const *forces = address_data->forces;
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001176 int kind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001178 for (kind = 0; forces[kind]; kind++) {
1179 for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1180 i += 2) {
1181 if (forces[kind][i] == adap_id
1182 || forces[kind][i] == ANY_I2C_BUS) {
1183 dev_dbg(&adapter->dev, "found force "
1184 "parameter for adapter %d, "
1185 "addr 0x%02x, kind %d\n",
1186 adap_id, forces[kind][i + 1],
1187 kind);
1188 err = i2c_probe_address(adapter,
1189 forces[kind][i + 1],
1190 kind, found_proc);
1191 if (err)
1192 return err;
1193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
1195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001197
Jean Delvare4366dc92005-09-25 16:50:06 +02001198 /* Stop here if we can't use SMBUS_QUICK */
1199 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1200 if (address_data->probe[0] == I2C_CLIENT_END
1201 && address_data->normal_i2c[0] == I2C_CLIENT_END)
David Brownell438d6c22006-12-10 21:21:31 +01001202 return 0;
Jean Delvare4366dc92005-09-25 16:50:06 +02001203
Jean Delvare4329cf82008-08-28 08:33:23 +02001204 dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
1205 "can't probe for chips\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001206 return -EOPNOTSUPP;
Jean Delvare4366dc92005-09-25 16:50:06 +02001207 }
1208
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001209 /* Probe entries are done second, and are not affected by ignore
1210 entries either */
1211 for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1212 if (address_data->probe[i] == adap_id
1213 || address_data->probe[i] == ANY_I2C_BUS) {
1214 dev_dbg(&adapter->dev, "found probe parameter for "
1215 "adapter %d, addr 0x%02x\n", adap_id,
1216 address_data->probe[i + 1]);
1217 err = i2c_probe_address(adapter,
1218 address_data->probe[i + 1],
1219 -1, found_proc);
1220 if (err)
1221 return err;
1222 }
1223 }
1224
1225 /* Normal entries are done last, unless shadowed by an ignore entry */
1226 for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1227 int j, ignore;
1228
1229 ignore = 0;
1230 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1231 j += 2) {
1232 if ((address_data->ignore[j] == adap_id ||
1233 address_data->ignore[j] == ANY_I2C_BUS)
1234 && address_data->ignore[j + 1]
1235 == address_data->normal_i2c[i]) {
1236 dev_dbg(&adapter->dev, "found ignore "
1237 "parameter for adapter %d, "
1238 "addr 0x%02x\n", adap_id,
1239 address_data->ignore[j + 1]);
Mark M. Hoffman2369df92006-07-01 17:01:59 +02001240 ignore = 1;
1241 break;
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001242 }
Jean Delvarea89ba0b2005-08-09 20:17:55 +02001243 }
1244 if (ignore)
1245 continue;
1246
1247 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1248 "addr 0x%02x\n", adap_id,
1249 address_data->normal_i2c[i]);
1250 err = i2c_probe_address(adapter, address_data->normal_i2c[i],
1251 -1, found_proc);
1252 if (err)
1253 return err;
1254 }
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return 0;
1257}
David Brownellc0564602007-05-01 23:26:31 +02001258EXPORT_SYMBOL(i2c_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Jean Delvare4735c982008-07-14 22:38:36 +02001260/* Separate detection function for new-style drivers */
1261static int i2c_detect_address(struct i2c_client *temp_client, int kind,
1262 struct i2c_driver *driver)
1263{
1264 struct i2c_board_info info;
1265 struct i2c_adapter *adapter = temp_client->adapter;
1266 int addr = temp_client->addr;
1267 int err;
1268
1269 /* Make sure the address is valid */
1270 if (addr < 0x03 || addr > 0x77) {
1271 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1272 addr);
1273 return -EINVAL;
1274 }
1275
1276 /* Skip if already in use */
1277 if (i2c_check_addr(adapter, addr))
1278 return 0;
1279
1280 /* Make sure there is something at this address, unless forced */
1281 if (kind < 0) {
1282 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1283 I2C_SMBUS_QUICK, NULL) < 0)
1284 return 0;
1285
1286 /* prevent 24RF08 corruption */
1287 if ((addr & ~0x0f) == 0x50)
1288 i2c_smbus_xfer(adapter, addr, 0, 0, 0,
1289 I2C_SMBUS_QUICK, NULL);
1290 }
1291
1292 /* Finally call the custom detection function */
1293 memset(&info, 0, sizeof(struct i2c_board_info));
1294 info.addr = addr;
1295 err = driver->detect(temp_client, kind, &info);
1296 if (err) {
1297 /* -ENODEV is returned if the detection fails. We catch it
1298 here as this isn't an error. */
1299 return err == -ENODEV ? 0 : err;
1300 }
1301
1302 /* Consistency check */
1303 if (info.type[0] == '\0') {
1304 dev_err(&adapter->dev, "%s detection function provided "
1305 "no name for 0x%x\n", driver->driver.name,
1306 addr);
1307 } else {
1308 struct i2c_client *client;
1309
1310 /* Detection succeeded, instantiate the device */
1311 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1312 info.type, info.addr);
1313 client = i2c_new_device(adapter, &info);
1314 if (client)
1315 list_add_tail(&client->detected, &driver->clients);
1316 else
1317 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1318 info.type, info.addr);
1319 }
1320 return 0;
1321}
1322
1323static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1324{
1325 const struct i2c_client_address_data *address_data;
1326 struct i2c_client *temp_client;
1327 int i, err = 0;
1328 int adap_id = i2c_adapter_id(adapter);
1329
1330 address_data = driver->address_data;
1331 if (!driver->detect || !address_data)
1332 return 0;
1333
1334 /* Set up a temporary client to help detect callback */
1335 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1336 if (!temp_client)
1337 return -ENOMEM;
1338 temp_client->adapter = adapter;
1339
1340 /* Force entries are done first, and are not affected by ignore
1341 entries */
1342 if (address_data->forces) {
1343 const unsigned short * const *forces = address_data->forces;
1344 int kind;
1345
1346 for (kind = 0; forces[kind]; kind++) {
1347 for (i = 0; forces[kind][i] != I2C_CLIENT_END;
1348 i += 2) {
1349 if (forces[kind][i] == adap_id
1350 || forces[kind][i] == ANY_I2C_BUS) {
1351 dev_dbg(&adapter->dev, "found force "
1352 "parameter for adapter %d, "
1353 "addr 0x%02x, kind %d\n",
1354 adap_id, forces[kind][i + 1],
1355 kind);
1356 temp_client->addr = forces[kind][i + 1];
1357 err = i2c_detect_address(temp_client,
1358 kind, driver);
1359 if (err)
1360 goto exit_free;
1361 }
1362 }
1363 }
1364 }
1365
Jean Delvare4329cf82008-08-28 08:33:23 +02001366 /* Stop here if the classes do not match */
1367 if (!(adapter->class & driver->class))
1368 goto exit_free;
1369
Jean Delvare4735c982008-07-14 22:38:36 +02001370 /* Stop here if we can't use SMBUS_QUICK */
1371 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
1372 if (address_data->probe[0] == I2C_CLIENT_END
1373 && address_data->normal_i2c[0] == I2C_CLIENT_END)
1374 goto exit_free;
1375
1376 dev_warn(&adapter->dev, "SMBus Quick command not supported, "
1377 "can't probe for chips\n");
1378 err = -EOPNOTSUPP;
1379 goto exit_free;
1380 }
1381
Jean Delvare4735c982008-07-14 22:38:36 +02001382 /* Probe entries are done second, and are not affected by ignore
1383 entries either */
1384 for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
1385 if (address_data->probe[i] == adap_id
1386 || address_data->probe[i] == ANY_I2C_BUS) {
1387 dev_dbg(&adapter->dev, "found probe parameter for "
1388 "adapter %d, addr 0x%02x\n", adap_id,
1389 address_data->probe[i + 1]);
1390 temp_client->addr = address_data->probe[i + 1];
1391 err = i2c_detect_address(temp_client, -1, driver);
1392 if (err)
1393 goto exit_free;
1394 }
1395 }
1396
1397 /* Normal entries are done last, unless shadowed by an ignore entry */
1398 for (i = 0; address_data->normal_i2c[i] != I2C_CLIENT_END; i += 1) {
1399 int j, ignore;
1400
1401 ignore = 0;
1402 for (j = 0; address_data->ignore[j] != I2C_CLIENT_END;
1403 j += 2) {
1404 if ((address_data->ignore[j] == adap_id ||
1405 address_data->ignore[j] == ANY_I2C_BUS)
1406 && address_data->ignore[j + 1]
1407 == address_data->normal_i2c[i]) {
1408 dev_dbg(&adapter->dev, "found ignore "
1409 "parameter for adapter %d, "
1410 "addr 0x%02x\n", adap_id,
1411 address_data->ignore[j + 1]);
1412 ignore = 1;
1413 break;
1414 }
1415 }
1416 if (ignore)
1417 continue;
1418
1419 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
1420 "addr 0x%02x\n", adap_id,
1421 address_data->normal_i2c[i]);
1422 temp_client->addr = address_data->normal_i2c[i];
1423 err = i2c_detect_address(temp_client, -1, driver);
1424 if (err)
1425 goto exit_free;
1426 }
1427
1428 exit_free:
1429 kfree(temp_client);
1430 return err;
1431}
1432
Jean Delvare12b5053a2007-05-01 23:26:31 +02001433struct i2c_client *
1434i2c_new_probed_device(struct i2c_adapter *adap,
1435 struct i2c_board_info *info,
1436 unsigned short const *addr_list)
1437{
1438 int i;
1439
1440 /* Stop here if the bus doesn't support probing */
1441 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) {
1442 dev_err(&adap->dev, "Probing not supported\n");
1443 return NULL;
1444 }
1445
Jean Delvare12b5053a2007-05-01 23:26:31 +02001446 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1447 /* Check address validity */
1448 if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
1449 dev_warn(&adap->dev, "Invalid 7-bit address "
1450 "0x%02x\n", addr_list[i]);
1451 continue;
1452 }
1453
1454 /* Check address availability */
David Brownell9b766b82008-01-27 18:14:51 +01001455 if (i2c_check_addr(adap, addr_list[i])) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02001456 dev_dbg(&adap->dev, "Address 0x%02x already in "
1457 "use, not probing\n", addr_list[i]);
1458 continue;
1459 }
1460
1461 /* Test address responsiveness
1462 The default probe method is a quick write, but it is known
1463 to corrupt the 24RF08 EEPROMs due to a state machine bug,
1464 and could also irreversibly write-protect some EEPROMs, so
1465 for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte
1466 read instead. Also, some bus drivers don't implement
1467 quick write, so we fallback to a byte read it that case
1468 too. */
1469 if ((addr_list[i] & ~0x07) == 0x30
1470 || (addr_list[i] & ~0x0f) == 0x50
1471 || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) {
Hans Verkuilb25b7912008-08-10 22:56:15 +02001472 union i2c_smbus_data data;
1473
Jean Delvare12b5053a2007-05-01 23:26:31 +02001474 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1475 I2C_SMBUS_READ, 0,
Hans Verkuilb25b7912008-08-10 22:56:15 +02001476 I2C_SMBUS_BYTE, &data) >= 0)
Jean Delvare12b5053a2007-05-01 23:26:31 +02001477 break;
1478 } else {
1479 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1480 I2C_SMBUS_WRITE, 0,
1481 I2C_SMBUS_QUICK, NULL) >= 0)
1482 break;
1483 }
1484 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02001485
1486 if (addr_list[i] == I2C_CLIENT_END) {
1487 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1488 return NULL;
1489 }
1490
1491 info->addr = addr_list[i];
1492 return i2c_new_device(adap, info);
1493}
1494EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496struct i2c_adapter* i2c_get_adapter(int id)
1497{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01001499
Jean Delvarecaada322008-01-27 18:14:49 +01001500 mutex_lock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001501 adapter = (struct i2c_adapter *)idr_find(&i2c_adapter_idr, id);
1502 if (adapter && !try_module_get(adapter->owner))
1503 adapter = NULL;
1504
Jean Delvarecaada322008-01-27 18:14:49 +01001505 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001506 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
David Brownellc0564602007-05-01 23:26:31 +02001508EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510void i2c_put_adapter(struct i2c_adapter *adap)
1511{
1512 module_put(adap->owner);
1513}
David Brownellc0564602007-05-01 23:26:31 +02001514EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516/* The SMBus parts */
1517
David Brownell438d6c22006-12-10 21:21:31 +01001518#define POLY (0x1070U << 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519static u8
1520crc8(u16 data)
1521{
1522 int i;
David Brownell438d6c22006-12-10 21:21:31 +01001523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 for(i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01001525 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 data = data ^ POLY;
1527 data = data << 1;
1528 }
1529 return (u8)(data >> 8);
1530}
1531
Jean Delvare421ef472005-10-26 21:28:55 +02001532/* Incremental CRC8 over count bytes in the array pointed to by p */
1533static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 int i;
1536
1537 for(i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02001538 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return crc;
1540}
1541
Jean Delvare421ef472005-10-26 21:28:55 +02001542/* Assume a 7-bit address, which is reasonable for SMBus */
1543static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Jean Delvare421ef472005-10-26 21:28:55 +02001545 /* The address will be sent first */
1546 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1547 pec = i2c_smbus_pec(pec, &addr, 1);
1548
1549 /* The data buffer follows */
1550 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
Jean Delvare421ef472005-10-26 21:28:55 +02001553/* Used for write only transactions */
1554static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Jean Delvare421ef472005-10-26 21:28:55 +02001556 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1557 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Jean Delvare421ef472005-10-26 21:28:55 +02001560/* Return <0 on CRC error
1561 If there was a write before this read (most cases) we need to take the
1562 partial CRC from the write part into account.
1563 Note that this function does modify the message (we need to decrease the
1564 message length to hide the CRC byte from the caller). */
1565static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Jean Delvare421ef472005-10-26 21:28:55 +02001567 u8 rpec = msg->buf[--msg->len];
1568 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (rpec != cpec) {
1571 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1572 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02001573 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
David Brownell438d6c22006-12-10 21:21:31 +01001575 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
David Brownella1cdeda2008-07-14 22:38:24 +02001578/**
1579 * i2c_smbus_read_byte - SMBus "receive byte" protocol
1580 * @client: Handle to slave device
1581 *
1582 * This executes the SMBus "receive byte" protocol, returning negative errno
1583 * else the byte received from the device.
1584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585s32 i2c_smbus_read_byte(struct i2c_client *client)
1586{
1587 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001588 int status;
1589
1590 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1591 I2C_SMBUS_READ, 0,
1592 I2C_SMBUS_BYTE, &data);
1593 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
David Brownellc0564602007-05-01 23:26:31 +02001595EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
David Brownella1cdeda2008-07-14 22:38:24 +02001597/**
1598 * i2c_smbus_write_byte - SMBus "send byte" protocol
1599 * @client: Handle to slave device
1600 * @value: Byte to be sent
1601 *
1602 * This executes the SMBus "send byte" protocol, returning negative errno
1603 * else zero on success.
1604 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1606{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02001608 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
David Brownellc0564602007-05-01 23:26:31 +02001610EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
David Brownella1cdeda2008-07-14 22:38:24 +02001612/**
1613 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1614 * @client: Handle to slave device
1615 * @command: Byte interpreted by slave
1616 *
1617 * This executes the SMBus "read byte" protocol, returning negative errno
1618 * else a data byte received from the device.
1619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1621{
1622 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001623 int status;
1624
1625 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1626 I2C_SMBUS_READ, command,
1627 I2C_SMBUS_BYTE_DATA, &data);
1628 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
David Brownellc0564602007-05-01 23:26:31 +02001630EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
David Brownella1cdeda2008-07-14 22:38:24 +02001632/**
1633 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1634 * @client: Handle to slave device
1635 * @command: Byte interpreted by slave
1636 * @value: Byte being written
1637 *
1638 * This executes the SMBus "write byte" protocol, returning negative errno
1639 * else zero on success.
1640 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1642{
1643 union i2c_smbus_data data;
1644 data.byte = value;
1645 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1646 I2C_SMBUS_WRITE,command,
1647 I2C_SMBUS_BYTE_DATA,&data);
1648}
David Brownellc0564602007-05-01 23:26:31 +02001649EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
David Brownella1cdeda2008-07-14 22:38:24 +02001651/**
1652 * i2c_smbus_read_word_data - SMBus "read word" protocol
1653 * @client: Handle to slave device
1654 * @command: Byte interpreted by slave
1655 *
1656 * This executes the SMBus "read word" protocol, returning negative errno
1657 * else a 16-bit unsigned "word" received from the device.
1658 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1660{
1661 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001662 int status;
1663
1664 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1665 I2C_SMBUS_READ, command,
1666 I2C_SMBUS_WORD_DATA, &data);
1667 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
David Brownellc0564602007-05-01 23:26:31 +02001669EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
David Brownella1cdeda2008-07-14 22:38:24 +02001671/**
1672 * i2c_smbus_write_word_data - SMBus "write word" protocol
1673 * @client: Handle to slave device
1674 * @command: Byte interpreted by slave
1675 * @value: 16-bit "word" being written
1676 *
1677 * This executes the SMBus "write word" protocol, returning negative errno
1678 * else zero on success.
1679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1681{
1682 union i2c_smbus_data data;
1683 data.word = value;
1684 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1685 I2C_SMBUS_WRITE,command,
1686 I2C_SMBUS_WORD_DATA,&data);
1687}
David Brownellc0564602007-05-01 23:26:31 +02001688EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
David Brownella64ec072007-10-13 23:56:31 +02001690/**
David Brownella1cdeda2008-07-14 22:38:24 +02001691 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02001692 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02001693 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02001694 * @values: Byte array into which data will be read; big enough to hold
1695 * the data returned by the slave. SMBus allows at most 32 bytes.
1696 *
David Brownella1cdeda2008-07-14 22:38:24 +02001697 * This executes the SMBus "block read" protocol, returning negative errno
1698 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02001699 *
1700 * Note that using this function requires that the client's adapter support
1701 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
1702 * support this; its emulation through I2C messaging relies on a specific
1703 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1704 */
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001705s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1706 u8 *values)
1707{
1708 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001709 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001710
David Brownell24a5bb72008-07-14 22:38:23 +02001711 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1712 I2C_SMBUS_READ, command,
1713 I2C_SMBUS_BLOCK_DATA, &data);
1714 if (status)
1715 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001716
1717 memcpy(values, &data.block[1], data.block[0]);
1718 return data.block[0];
1719}
1720EXPORT_SYMBOL(i2c_smbus_read_block_data);
1721
David Brownella1cdeda2008-07-14 22:38:24 +02001722/**
1723 * i2c_smbus_write_block_data - SMBus "block write" protocol
1724 * @client: Handle to slave device
1725 * @command: Byte interpreted by slave
1726 * @length: Size of data block; SMBus allows at most 32 bytes
1727 * @values: Byte array which will be written.
1728 *
1729 * This executes the SMBus "block write" protocol, returning negative errno
1730 * else zero on success.
1731 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001733 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
1735 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (length > I2C_SMBUS_BLOCK_MAX)
1738 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01001740 memcpy(&data.block[1], values, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1742 I2C_SMBUS_WRITE,command,
1743 I2C_SMBUS_BLOCK_DATA,&data);
1744}
David Brownellc0564602007-05-01 23:26:31 +02001745EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747/* Returns the number of read bytes */
Jean Delvare4b2643d2007-07-12 14:12:29 +02001748s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1749 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001752 int status;
Jean Delvare76560322006-01-18 23:14:55 +01001753
Jean Delvare4b2643d2007-07-12 14:12:29 +02001754 if (length > I2C_SMBUS_BLOCK_MAX)
1755 length = I2C_SMBUS_BLOCK_MAX;
1756 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02001757 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1758 I2C_SMBUS_READ, command,
1759 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1760 if (status < 0)
1761 return status;
Jean Delvare76560322006-01-18 23:14:55 +01001762
1763 memcpy(values, &data.block[1], data.block[0]);
1764 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
David Brownellc0564602007-05-01 23:26:31 +02001766EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Jean Delvare21bbd692006-01-09 15:19:18 +11001768s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001769 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11001770{
1771 union i2c_smbus_data data;
1772
1773 if (length > I2C_SMBUS_BLOCK_MAX)
1774 length = I2C_SMBUS_BLOCK_MAX;
1775 data.block[0] = length;
1776 memcpy(data.block + 1, values, length);
1777 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1778 I2C_SMBUS_WRITE, command,
1779 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1780}
David Brownellc0564602007-05-01 23:26:31 +02001781EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11001782
David Brownell438d6c22006-12-10 21:21:31 +01001783/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 No checking of parameters is done! */
David Brownell438d6c22006-12-10 21:21:31 +01001785static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 unsigned short flags,
David Brownell438d6c22006-12-10 21:21:31 +01001787 char read_write, u8 command, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 union i2c_smbus_data * data)
1789{
1790 /* So we need to generate a series of msgs. In the case of writing, we
1791 need to use only one message; when reading, we need two. We initialize
1792 most things with sane defaults, to keep the code below somewhat
1793 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001794 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1795 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 int num = read_write == I2C_SMBUS_READ?2:1;
David Brownell438d6c22006-12-10 21:21:31 +01001797 struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 { addr, flags | I2C_M_RD, 0, msgbuf1 }
1799 };
1800 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02001801 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02001802 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 msgbuf0[0] = command;
1805 switch(size) {
1806 case I2C_SMBUS_QUICK:
1807 msg[0].len = 0;
1808 /* Special case: The read/write field is used as data */
1809 msg[0].flags = flags | (read_write==I2C_SMBUS_READ)?I2C_M_RD:0;
1810 num = 1;
1811 break;
1812 case I2C_SMBUS_BYTE:
1813 if (read_write == I2C_SMBUS_READ) {
1814 /* Special case: only a read! */
1815 msg[0].flags = I2C_M_RD | flags;
1816 num = 1;
1817 }
1818 break;
1819 case I2C_SMBUS_BYTE_DATA:
1820 if (read_write == I2C_SMBUS_READ)
1821 msg[1].len = 1;
1822 else {
1823 msg[0].len = 2;
1824 msgbuf0[1] = data->byte;
1825 }
1826 break;
1827 case I2C_SMBUS_WORD_DATA:
1828 if (read_write == I2C_SMBUS_READ)
1829 msg[1].len = 2;
1830 else {
1831 msg[0].len=3;
1832 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001833 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835 break;
1836 case I2C_SMBUS_PROC_CALL:
1837 num = 2; /* Special case */
1838 read_write = I2C_SMBUS_READ;
1839 msg[0].len = 3;
1840 msg[1].len = 2;
1841 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001842 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 break;
1844 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02001846 msg[1].flags |= I2C_M_RECV_LEN;
1847 msg[1].len = 1; /* block length will be added by
1848 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 } else {
1850 msg[0].len = data->block[0] + 2;
1851 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02001852 dev_err(&adapter->dev,
1853 "Invalid block write size %d\n",
1854 data->block[0]);
1855 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001857 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 msgbuf0[i] = data->block[i-1];
1859 }
1860 break;
1861 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02001862 num = 2; /* Another special case */
1863 read_write = I2C_SMBUS_READ;
1864 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02001865 dev_err(&adapter->dev,
1866 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02001867 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02001868 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02001869 }
1870 msg[0].len = data->block[0] + 2;
1871 for (i = 1; i < msg[0].len; i++)
1872 msgbuf0[i] = data->block[i-1];
1873 msg[1].flags |= I2C_M_RECV_LEN;
1874 msg[1].len = 1; /* block length will be added by
1875 the underlying bus driver */
1876 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 case I2C_SMBUS_I2C_BLOCK_DATA:
1878 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02001879 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 } else {
1881 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02001882 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02001883 dev_err(&adapter->dev,
1884 "Invalid block write size %d\n",
1885 data->block[0]);
1886 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888 for (i = 1; i <= data->block[0]; i++)
1889 msgbuf0[i] = data->block[i];
1890 }
1891 break;
1892 default:
David Brownell24a5bb72008-07-14 22:38:23 +02001893 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1894 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
1896
Jean Delvare421ef472005-10-26 21:28:55 +02001897 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1898 && size != I2C_SMBUS_I2C_BLOCK_DATA);
1899 if (i) {
1900 /* Compute PEC if first message is a write */
1901 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01001902 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02001903 i2c_smbus_add_pec(&msg[0]);
1904 else /* Write followed by read */
1905 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1906 }
1907 /* Ask for PEC if last message is a read */
1908 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01001909 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02001910 }
1911
David Brownell24a5bb72008-07-14 22:38:23 +02001912 status = i2c_transfer(adapter, msg, num);
1913 if (status < 0)
1914 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Jean Delvare421ef472005-10-26 21:28:55 +02001916 /* Check PEC if last message is a read */
1917 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02001918 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1919 if (status < 0)
1920 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02001921 }
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (read_write == I2C_SMBUS_READ)
1924 switch(size) {
1925 case I2C_SMBUS_BYTE:
1926 data->byte = msgbuf0[0];
1927 break;
1928 case I2C_SMBUS_BYTE_DATA:
1929 data->byte = msgbuf1[0];
1930 break;
David Brownell438d6c22006-12-10 21:21:31 +01001931 case I2C_SMBUS_WORD_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 case I2C_SMBUS_PROC_CALL:
1933 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1934 break;
1935 case I2C_SMBUS_I2C_BLOCK_DATA:
Jean Delvare4b2643d2007-07-12 14:12:29 +02001936 for (i = 0; i < data->block[0]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 data->block[i+1] = msgbuf1[i];
1938 break;
Jean Delvare209d27c2007-05-01 23:26:29 +02001939 case I2C_SMBUS_BLOCK_DATA:
1940 case I2C_SMBUS_BLOCK_PROC_CALL:
1941 for (i = 0; i < msgbuf1[0] + 1; i++)
1942 data->block[i] = msgbuf1[i];
1943 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
1945 return 0;
1946}
1947
David Brownella1cdeda2008-07-14 22:38:24 +02001948/**
1949 * i2c_smbus_xfer - execute SMBus protocol operations
1950 * @adapter: Handle to I2C bus
1951 * @addr: Address of SMBus slave on that bus
1952 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
1953 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
1954 * @command: Byte interpreted by slave, for protocols which use such bytes
1955 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
1956 * @data: Data to be read or written
1957 *
1958 * This executes an SMBus protocol operation, and returns a negative
1959 * errno code else zero on success.
1960 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961s32 i2c_smbus_xfer(struct i2c_adapter * adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02001962 char read_write, u8 command, int protocol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 union i2c_smbus_data * data)
1964{
1965 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 flags &= I2C_M_TEN | I2C_CLIENT_PEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 if (adapter->algo->smbus_xfer) {
Ingo Molnar5c085d32006-01-18 23:16:04 +01001970 mutex_lock(&adapter->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 res = adapter->algo->smbus_xfer(adapter,addr,flags,read_write,
David Brownella1cdeda2008-07-14 22:38:24 +02001972 command, protocol, data);
Ingo Molnar5c085d32006-01-18 23:16:04 +01001973 mutex_unlock(&adapter->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 } else
1975 res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write,
David Brownella1cdeda2008-07-14 22:38:24 +02001976 command, protocol, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return res;
1979}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
1983MODULE_DESCRIPTION("I2C-Bus main module");
1984MODULE_LICENSE("GPL");