blob: 4131698008b9b71a252ffa5818288a904229261e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i2c-core.c - a device driver for the iic-bus interface */
2/* ------------------------------------------------------------------------- */
3/* Copyright (C) 1995-99 Simon G. Vogl
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18/* ------------------------------------------------------------------------- */
19
Jan Engelhardt96de0e22007-10-19 23:21:04 +020020/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
Jean Delvare421ef472005-10-26 21:28:55 +020022 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
23 Jean Delvare <khali@linux-fr.org> */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/kernel.h>
27#include <linux/errno.h>
28#include <linux/slab.h>
29#include <linux/i2c.h>
30#include <linux/init.h>
31#include <linux/idr.h>
Arjan van de Venb3585e42006-01-11 10:50:26 +010032#include <linux/mutex.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010033#include <linux/completion.h>
Mike Rapoportcea443a2008-01-27 18:14:50 +010034#include <linux/hardirq.h>
35#include <linux/irqflags.h>
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +020036#include <linux/rwsem.h>
Mark Brown6de468a2010-03-02 12:23:46 +010037#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39
David Brownell9c1600e2007-05-01 23:26:31 +020040#include "i2c-core.h"
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Jean Delvare99cd8e22009-06-19 16:58:20 +020043/* core_lock protects i2c_adapter_idr, userspace_devices, and guarantees
Jean Delvare35fc37f2009-06-19 16:58:19 +020044 that device detection, deletion of detected devices, and attach_adapter
45 and detach_adapter calls are serialized */
Jean Delvarecaada322008-01-27 18:14:49 +010046static DEFINE_MUTEX(core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static DEFINE_IDR(i2c_adapter_idr);
Jean Delvare99cd8e22009-06-19 16:58:20 +020048static LIST_HEAD(userspace_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Jean Delvare4f8cf822009-09-18 22:45:46 +020050static struct device_type i2c_client_type;
Jean Delvaref8a227e2009-06-19 16:58:18 +020051static int i2c_check_addr(struct i2c_adapter *adapter, int addr);
Jean Delvare4735c982008-07-14 22:38:36 +020052static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010053
54/* ------------------------------------------------------------------------- */
55
Jean Delvared2653e92008-04-29 23:11:39 +020056static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
57 const struct i2c_client *client)
58{
59 while (id->name[0]) {
60 if (strcmp(client->name, id->name) == 0)
61 return id;
62 id++;
63 }
64 return NULL;
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int i2c_device_match(struct device *dev, struct device_driver *drv)
68{
Jean Delvare51298d12009-09-18 22:45:45 +020069 struct i2c_client *client = i2c_verify_client(dev);
70 struct i2c_driver *driver;
David Brownell7b4fbc52007-05-01 23:26:30 +020071
Jean Delvare51298d12009-09-18 22:45:45 +020072 if (!client)
73 return 0;
74
75 driver = to_i2c_driver(drv);
Jean Delvared2653e92008-04-29 23:11:39 +020076 /* match on an id table if there is one */
77 if (driver->id_table)
78 return i2c_match_id(driver->id_table, client) != NULL;
79
Jean Delvareeb8a7902008-05-18 20:49:41 +020080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
David Brownell7b4fbc52007-05-01 23:26:30 +020083#ifdef CONFIG_HOTPLUG
84
85/* uevent helps with hotplug: modprobe -q $(MODALIAS) */
Kay Sievers7eff2e72007-08-14 15:15:12 +020086static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +020087{
88 struct i2c_client *client = to_i2c_client(dev);
David Brownell7b4fbc52007-05-01 23:26:30 +020089
Jean Delvareeb8a7902008-05-18 20:49:41 +020090 if (add_uevent_var(env, "MODALIAS=%s%s",
91 I2C_MODULE_PREFIX, client->name))
92 return -ENOMEM;
David Brownell7b4fbc52007-05-01 23:26:30 +020093 dev_dbg(dev, "uevent\n");
94 return 0;
95}
96
97#else
98#define i2c_device_uevent NULL
99#endif /* CONFIG_HOTPLUG */
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static int i2c_device_probe(struct device *dev)
102{
Jean Delvare51298d12009-09-18 22:45:45 +0200103 struct i2c_client *client = i2c_verify_client(dev);
104 struct i2c_driver *driver;
Hans Verkuil50c33042008-03-12 14:15:00 +0100105 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200106
Jean Delvare51298d12009-09-18 22:45:45 +0200107 if (!client)
108 return 0;
109
110 driver = to_i2c_driver(dev->driver);
Jean Delvaree0457442008-07-14 22:38:30 +0200111 if (!driver->probe || !driver->id_table)
David Brownell7b4fbc52007-05-01 23:26:30 +0200112 return -ENODEV;
113 client->driver = driver;
Marc Pignatee354252008-08-28 08:33:22 +0200114 if (!device_can_wakeup(&client->dev))
115 device_init_wakeup(&client->dev,
116 client->flags & I2C_CLIENT_WAKE);
David Brownell7b4fbc52007-05-01 23:26:30 +0200117 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200118
Jean Delvaree0457442008-07-14 22:38:30 +0200119 status = driver->probe(client, i2c_match_id(driver->id_table, client));
Hans Verkuil50c33042008-03-12 14:15:00 +0100120 if (status)
121 client->driver = NULL;
122 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
125static int i2c_device_remove(struct device *dev)
126{
Jean Delvare51298d12009-09-18 22:45:45 +0200127 struct i2c_client *client = i2c_verify_client(dev);
David Brownella1d9e6e2007-05-01 23:26:30 +0200128 struct i2c_driver *driver;
129 int status;
130
Jean Delvare51298d12009-09-18 22:45:45 +0200131 if (!client || !dev->driver)
David Brownella1d9e6e2007-05-01 23:26:30 +0200132 return 0;
133
134 driver = to_i2c_driver(dev->driver);
135 if (driver->remove) {
136 dev_dbg(dev, "remove\n");
137 status = driver->remove(client);
138 } else {
139 dev->driver = NULL;
140 status = 0;
141 }
142 if (status == 0)
143 client->driver = NULL;
144 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
David Brownellf37dd802007-02-13 22:09:00 +0100147static void i2c_device_shutdown(struct device *dev)
148{
Jean Delvare51298d12009-09-18 22:45:45 +0200149 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100150 struct i2c_driver *driver;
151
Jean Delvare51298d12009-09-18 22:45:45 +0200152 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100153 return;
154 driver = to_i2c_driver(dev->driver);
155 if (driver->shutdown)
Jean Delvare51298d12009-09-18 22:45:45 +0200156 driver->shutdown(client);
David Brownellf37dd802007-02-13 22:09:00 +0100157}
158
sonic zhang54067ee2009-12-14 21:17:30 +0100159#ifdef CONFIG_SUSPEND
160static int i2c_device_pm_suspend(struct device *dev)
161{
162 const struct dev_pm_ops *pm;
163
164 if (!dev->driver)
165 return 0;
166 pm = dev->driver->pm;
167 if (!pm || !pm->suspend)
168 return 0;
169 return pm->suspend(dev);
170}
171
172static int i2c_device_pm_resume(struct device *dev)
173{
174 const struct dev_pm_ops *pm;
175
176 if (!dev->driver)
177 return 0;
178 pm = dev->driver->pm;
179 if (!pm || !pm->resume)
180 return 0;
181 return pm->resume(dev);
182}
183#else
184#define i2c_device_pm_suspend NULL
185#define i2c_device_pm_resume NULL
186#endif
187
Mark Brown6de468a2010-03-02 12:23:46 +0100188#ifdef CONFIG_PM_RUNTIME
189static int i2c_device_runtime_suspend(struct device *dev)
190{
191 const struct dev_pm_ops *pm;
192
193 if (!dev->driver)
194 return 0;
195 pm = dev->driver->pm;
196 if (!pm || !pm->runtime_suspend)
197 return 0;
198 return pm->runtime_suspend(dev);
199}
200
201static int i2c_device_runtime_resume(struct device *dev)
202{
203 const struct dev_pm_ops *pm;
204
205 if (!dev->driver)
206 return 0;
207 pm = dev->driver->pm;
208 if (!pm || !pm->runtime_resume)
209 return 0;
210 return pm->runtime_resume(dev);
211}
212
213static int i2c_device_runtime_idle(struct device *dev)
214{
215 const struct dev_pm_ops *pm = NULL;
216 int ret;
217
218 if (dev->driver)
219 pm = dev->driver->pm;
220 if (pm && pm->runtime_idle) {
221 ret = pm->runtime_idle(dev);
222 if (ret)
223 return ret;
224 }
225
226 return pm_runtime_suspend(dev);
227}
228#else
229#define i2c_device_runtime_suspend NULL
230#define i2c_device_runtime_resume NULL
231#define i2c_device_runtime_idle NULL
232#endif
233
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100234static int i2c_device_suspend(struct device *dev, pm_message_t mesg)
David Brownellf37dd802007-02-13 22:09:00 +0100235{
Jean Delvare51298d12009-09-18 22:45:45 +0200236 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100237 struct i2c_driver *driver;
238
Jean Delvare51298d12009-09-18 22:45:45 +0200239 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100240 return 0;
241 driver = to_i2c_driver(dev->driver);
242 if (!driver->suspend)
243 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200244 return driver->suspend(client, mesg);
David Brownellf37dd802007-02-13 22:09:00 +0100245}
246
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100247static int i2c_device_resume(struct device *dev)
David Brownellf37dd802007-02-13 22:09:00 +0100248{
Jean Delvare51298d12009-09-18 22:45:45 +0200249 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100250 struct i2c_driver *driver;
251
Jean Delvare51298d12009-09-18 22:45:45 +0200252 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100253 return 0;
254 driver = to_i2c_driver(dev->driver);
255 if (!driver->resume)
256 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200257 return driver->resume(client);
David Brownellf37dd802007-02-13 22:09:00 +0100258}
259
David Brownell9c1600e2007-05-01 23:26:31 +0200260static void i2c_client_dev_release(struct device *dev)
261{
262 kfree(to_i2c_client(dev));
263}
264
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100265static ssize_t
Jean Delvare4f8cf822009-09-18 22:45:46 +0200266show_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200267{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200268 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
269 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200270}
271
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100272static ssize_t
273show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200274{
275 struct i2c_client *client = to_i2c_client(dev);
Jean Delvareeb8a7902008-05-18 20:49:41 +0200276 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200277}
278
Jean Delvare4f8cf822009-09-18 22:45:46 +0200279static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Jean Delvare51298d12009-09-18 22:45:45 +0200280static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
281
282static struct attribute *i2c_dev_attrs[] = {
283 &dev_attr_name.attr,
David Brownell7b4fbc52007-05-01 23:26:30 +0200284 /* modalias helps coldplug: modprobe $(cat .../modalias) */
Jean Delvare51298d12009-09-18 22:45:45 +0200285 &dev_attr_modalias.attr,
286 NULL
287};
288
289static struct attribute_group i2c_dev_attr_group = {
290 .attrs = i2c_dev_attrs,
291};
292
293static const struct attribute_group *i2c_dev_attr_groups[] = {
294 &i2c_dev_attr_group,
295 NULL
David Brownell7b4fbc52007-05-01 23:26:30 +0200296};
297
Tobias Klauser0b2c3682010-01-16 20:43:12 +0100298static const struct dev_pm_ops i2c_device_pm_ops = {
sonic zhang54067ee2009-12-14 21:17:30 +0100299 .suspend = i2c_device_pm_suspend,
300 .resume = i2c_device_pm_resume,
Mark Brown6de468a2010-03-02 12:23:46 +0100301 .runtime_suspend = i2c_device_runtime_suspend,
302 .runtime_resume = i2c_device_runtime_resume,
303 .runtime_idle = i2c_device_runtime_idle,
sonic zhang54067ee2009-12-14 21:17:30 +0100304};
305
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200306struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100307 .name = "i2c",
308 .match = i2c_device_match,
309 .probe = i2c_device_probe,
310 .remove = i2c_device_remove,
311 .shutdown = i2c_device_shutdown,
312 .suspend = i2c_device_suspend,
313 .resume = i2c_device_resume,
sonic zhang54067ee2009-12-14 21:17:30 +0100314 .pm = &i2c_device_pm_ops,
Russell Kingb864c7d2006-01-05 14:37:50 +0000315};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200316EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000317
Jean Delvare51298d12009-09-18 22:45:45 +0200318static struct device_type i2c_client_type = {
319 .groups = i2c_dev_attr_groups,
320 .uevent = i2c_device_uevent,
321 .release = i2c_client_dev_release,
322};
323
David Brownell9b766b82008-01-27 18:14:51 +0100324
325/**
326 * i2c_verify_client - return parameter as i2c_client, or NULL
327 * @dev: device, probably from some driver model iterator
328 *
329 * When traversing the driver model tree, perhaps using driver model
330 * iterators like @device_for_each_child(), you can't assume very much
331 * about the nodes you find. Use this function to avoid oopses caused
332 * by wrongly treating some non-I2C device as an i2c_client.
333 */
334struct i2c_client *i2c_verify_client(struct device *dev)
335{
Jean Delvare51298d12009-09-18 22:45:45 +0200336 return (dev->type == &i2c_client_type)
David Brownell9b766b82008-01-27 18:14:51 +0100337 ? to_i2c_client(dev)
338 : NULL;
339}
340EXPORT_SYMBOL(i2c_verify_client);
341
342
David Brownell9c1600e2007-05-01 23:26:31 +0200343/**
Jean Delvaref8a227e2009-06-19 16:58:18 +0200344 * i2c_new_device - instantiate an i2c device
David Brownell9c1600e2007-05-01 23:26:31 +0200345 * @adap: the adapter managing the device
346 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +0200347 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200348 *
Jean Delvaref8a227e2009-06-19 16:58:18 +0200349 * Create an i2c device. Binding is handled through driver model
350 * probe()/remove() methods. A driver may be bound to this device when we
351 * return from this function, or any later moment (e.g. maybe hotplugging will
352 * load the driver module). This call is not appropriate for use by mainboard
353 * initialization logic, which usually runs during an arch_initcall() long
354 * before any i2c_adapter could exist.
David Brownell9c1600e2007-05-01 23:26:31 +0200355 *
356 * This returns the new i2c client, which may be saved for later use with
357 * i2c_unregister_device(); or NULL to indicate an error.
358 */
359struct i2c_client *
360i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
361{
362 struct i2c_client *client;
363 int status;
364
365 client = kzalloc(sizeof *client, GFP_KERNEL);
366 if (!client)
367 return NULL;
368
369 client->adapter = adap;
370
371 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +0200372
Anton Vorontsov11f1f2a2008-10-22 20:21:33 +0200373 if (info->archdata)
374 client->dev.archdata = *info->archdata;
375
Marc Pignatee354252008-08-28 08:33:22 +0200376 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +0200377 client->addr = info->addr;
378 client->irq = info->irq;
379
David Brownell9c1600e2007-05-01 23:26:31 +0200380 strlcpy(client->name, info->type, sizeof(client->name));
381
Jean Delvaref8a227e2009-06-19 16:58:18 +0200382 /* Check for address business */
383 status = i2c_check_addr(adap, client->addr);
384 if (status)
385 goto out_err;
386
387 client->dev.parent = &client->adapter->dev;
388 client->dev.bus = &i2c_bus_type;
Jean Delvare51298d12009-09-18 22:45:45 +0200389 client->dev.type = &i2c_client_type;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200390
391 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
392 client->addr);
393 status = device_register(&client->dev);
394 if (status)
395 goto out_err;
396
Jean Delvaref8a227e2009-06-19 16:58:18 +0200397 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
398 client->name, dev_name(&client->dev));
399
David Brownell9c1600e2007-05-01 23:26:31 +0200400 return client;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200401
402out_err:
403 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
404 "(%d)\n", client->name, client->addr, status);
405 kfree(client);
406 return NULL;
David Brownell9c1600e2007-05-01 23:26:31 +0200407}
408EXPORT_SYMBOL_GPL(i2c_new_device);
409
410
411/**
412 * i2c_unregister_device - reverse effect of i2c_new_device()
413 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +0200414 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200415 */
416void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +0200417{
David Brownella1d9e6e2007-05-01 23:26:30 +0200418 device_unregister(&client->dev);
419}
David Brownell9c1600e2007-05-01 23:26:31 +0200420EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +0200421
422
Jean Delvare60b129d2008-05-11 20:37:06 +0200423static const struct i2c_device_id dummy_id[] = {
424 { "dummy", 0 },
425 { },
426};
427
Jean Delvared2653e92008-04-29 23:11:39 +0200428static int dummy_probe(struct i2c_client *client,
429 const struct i2c_device_id *id)
430{
431 return 0;
432}
433
434static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +0100435{
436 return 0;
437}
438
439static struct i2c_driver dummy_driver = {
440 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +0200441 .probe = dummy_probe,
442 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +0200443 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +0100444};
445
446/**
447 * i2c_new_dummy - return a new i2c device bound to a dummy driver
448 * @adapter: the adapter managing the device
449 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +0100450 * Context: can sleep
451 *
452 * This returns an I2C client bound to the "dummy" driver, intended for use
453 * with devices that consume multiple addresses. Examples of such chips
454 * include various EEPROMS (like 24c04 and 24c08 models).
455 *
456 * These dummy devices have two main uses. First, most I2C and SMBus calls
457 * except i2c_transfer() need a client handle; the dummy will be that handle.
458 * And second, this prevents the specified address from being bound to a
459 * different driver.
460 *
461 * This returns the new i2c client, which should be saved for later use with
462 * i2c_unregister_device(); or NULL to indicate an error.
463 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100464struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +0100465{
466 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +0200467 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +0100468 };
469
David Brownelle9f13732008-01-27 18:14:52 +0100470 return i2c_new_device(adapter, &info);
471}
472EXPORT_SYMBOL_GPL(i2c_new_dummy);
473
David Brownellf37dd802007-02-13 22:09:00 +0100474/* ------------------------------------------------------------------------- */
475
David Brownell16ffadf2007-05-01 23:26:28 +0200476/* I2C bus adapters -- one roots each I2C or SMBUS segment */
477
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200478static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
David Brownellef2c8322007-05-01 23:26:28 +0200480 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 complete(&adap->dev_released);
482}
483
Jean Delvare99cd8e22009-06-19 16:58:20 +0200484/*
485 * Let users instantiate I2C devices through sysfs. This can be used when
486 * platform initialization code doesn't contain the proper data for
487 * whatever reason. Also useful for drivers that do device detection and
488 * detection fails, either because the device uses an unexpected address,
489 * or this is a compatible device with different ID register values.
490 *
491 * Parameter checking may look overzealous, but we really don't want
492 * the user to provide incorrect parameters.
493 */
494static ssize_t
495i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
496 const char *buf, size_t count)
497{
498 struct i2c_adapter *adap = to_i2c_adapter(dev);
499 struct i2c_board_info info;
500 struct i2c_client *client;
501 char *blank, end;
502 int res;
503
504 dev_warn(dev, "The new_device interface is still experimental "
505 "and may change in a near future\n");
506 memset(&info, 0, sizeof(struct i2c_board_info));
507
508 blank = strchr(buf, ' ');
509 if (!blank) {
510 dev_err(dev, "%s: Missing parameters\n", "new_device");
511 return -EINVAL;
512 }
513 if (blank - buf > I2C_NAME_SIZE - 1) {
514 dev_err(dev, "%s: Invalid device name\n", "new_device");
515 return -EINVAL;
516 }
517 memcpy(info.type, buf, blank - buf);
518
519 /* Parse remaining parameters, reject extra parameters */
520 res = sscanf(++blank, "%hi%c", &info.addr, &end);
521 if (res < 1) {
522 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
523 return -EINVAL;
524 }
525 if (res > 1 && end != '\n') {
526 dev_err(dev, "%s: Extra parameters\n", "new_device");
527 return -EINVAL;
528 }
529
530 if (info.addr < 0x03 || info.addr > 0x77) {
531 dev_err(dev, "%s: Invalid I2C address 0x%hx\n", "new_device",
532 info.addr);
533 return -EINVAL;
534 }
535
536 client = i2c_new_device(adap, &info);
537 if (!client)
538 return -EEXIST;
539
540 /* Keep track of the added device */
541 mutex_lock(&core_lock);
542 list_add_tail(&client->detected, &userspace_devices);
543 mutex_unlock(&core_lock);
544 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
545 info.type, info.addr);
546
547 return count;
548}
549
550/*
551 * And of course let the users delete the devices they instantiated, if
552 * they got it wrong. This interface can only be used to delete devices
553 * instantiated by i2c_sysfs_new_device above. This guarantees that we
554 * don't delete devices to which some kernel code still has references.
555 *
556 * Parameter checking may look overzealous, but we really don't want
557 * the user to delete the wrong device.
558 */
559static ssize_t
560i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
561 const char *buf, size_t count)
562{
563 struct i2c_adapter *adap = to_i2c_adapter(dev);
564 struct i2c_client *client, *next;
565 unsigned short addr;
566 char end;
567 int res;
568
569 /* Parse parameters, reject extra parameters */
570 res = sscanf(buf, "%hi%c", &addr, &end);
571 if (res < 1) {
572 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
573 return -EINVAL;
574 }
575 if (res > 1 && end != '\n') {
576 dev_err(dev, "%s: Extra parameters\n", "delete_device");
577 return -EINVAL;
578 }
579
580 /* Make sure the device was added through sysfs */
581 res = -ENOENT;
582 mutex_lock(&core_lock);
583 list_for_each_entry_safe(client, next, &userspace_devices, detected) {
584 if (client->addr == addr && client->adapter == adap) {
585 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
586 "delete_device", client->name, client->addr);
587
588 list_del(&client->detected);
589 i2c_unregister_device(client);
590 res = count;
591 break;
592 }
593 }
594 mutex_unlock(&core_lock);
595
596 if (res < 0)
597 dev_err(dev, "%s: Can't find device in list\n",
598 "delete_device");
599 return res;
600}
601
Jean Delvare4f8cf822009-09-18 22:45:46 +0200602static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
603static DEVICE_ATTR(delete_device, S_IWUSR, NULL, i2c_sysfs_delete_device);
604
605static struct attribute *i2c_adapter_attrs[] = {
606 &dev_attr_name.attr,
607 &dev_attr_new_device.attr,
608 &dev_attr_delete_device.attr,
609 NULL
David Brownell16ffadf2007-05-01 23:26:28 +0200610};
611
Jean Delvare4f8cf822009-09-18 22:45:46 +0200612static struct attribute_group i2c_adapter_attr_group = {
613 .attrs = i2c_adapter_attrs,
614};
615
616static const struct attribute_group *i2c_adapter_attr_groups[] = {
617 &i2c_adapter_attr_group,
618 NULL
619};
620
621static struct device_type i2c_adapter_type = {
622 .groups = i2c_adapter_attr_groups,
623 .release = i2c_adapter_dev_release,
David Brownell16ffadf2007-05-01 23:26:28 +0200624};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Jean Delvare2bb50952009-09-18 22:45:46 +0200626#ifdef CONFIG_I2C_COMPAT
627static struct class_compat *i2c_adapter_compat_class;
628#endif
629
David Brownell9c1600e2007-05-01 23:26:31 +0200630static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
631{
632 struct i2c_devinfo *devinfo;
633
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +0200634 down_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +0200635 list_for_each_entry(devinfo, &__i2c_board_list, list) {
636 if (devinfo->busnum == adapter->nr
637 && !i2c_new_device(adapter,
638 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100639 dev_err(&adapter->dev,
640 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +0200641 devinfo->board_info.addr);
642 }
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +0200643 up_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +0200644}
645
Jean Delvare69b00892009-12-06 17:06:27 +0100646static int i2c_do_add_adapter(struct i2c_driver *driver,
647 struct i2c_adapter *adap)
Jean Delvare026526f2008-01-27 18:14:49 +0100648{
Jean Delvare4735c982008-07-14 22:38:36 +0200649 /* Detect supported devices on that bus, and instantiate them */
650 i2c_detect(adap, driver);
651
652 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +0100653 if (driver->attach_adapter) {
654 /* We ignore the return code; if it fails, too bad */
655 driver->attach_adapter(adap);
656 }
657 return 0;
658}
659
Jean Delvare69b00892009-12-06 17:06:27 +0100660static int __process_new_adapter(struct device_driver *d, void *data)
661{
662 return i2c_do_add_adapter(to_i2c_driver(d), data);
663}
664
David Brownell6e13e642007-05-01 23:26:31 +0200665static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Jean Delvare026526f2008-01-27 18:14:49 +0100667 int res = 0, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
David Brownell1d0b19c2008-10-14 17:30:05 +0200669 /* Can't register until after driver model init */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200670 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
671 res = -EAGAIN;
672 goto out_list;
673 }
David Brownell1d0b19c2008-10-14 17:30:05 +0200674
Mika Kuoppala194684e2009-12-06 17:06:22 +0100675 rt_mutex_init(&adap->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jean Delvare8fcfef62009-03-28 21:34:43 +0100677 /* Set default timeout to 1 second if not already set */
678 if (adap->timeout == 0)
679 adap->timeout = HZ;
680
Kay Sievers27d9c182009-01-07 14:29:16 +0100681 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Jean Delvare4f8cf822009-09-18 22:45:46 +0200682 adap->dev.bus = &i2c_bus_type;
683 adap->dev.type = &i2c_adapter_type;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200684 res = device_register(&adap->dev);
685 if (res)
686 goto out_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200688 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
689
Jean Delvare2bb50952009-09-18 22:45:46 +0200690#ifdef CONFIG_I2C_COMPAT
691 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
692 adap->dev.parent);
693 if (res)
694 dev_warn(&adap->dev,
695 "Failed to create compatibility class link\n");
696#endif
697
Jean Delvare729d6dd2009-06-19 16:58:18 +0200698 /* create pre-declared device nodes */
David Brownell6e13e642007-05-01 23:26:31 +0200699 if (adap->nr < __i2c_first_dynamic_bus_num)
700 i2c_scan_static_board_info(adap);
701
Jean Delvare4735c982008-07-14 22:38:36 +0200702 /* Notify drivers */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200703 mutex_lock(&core_lock);
Jean Delvare026526f2008-01-27 18:14:49 +0100704 dummy = bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +0100705 __process_new_adapter);
Jean Delvarecaada322008-01-27 18:14:49 +0100706 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200707
708 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +0200709
Jean Delvareb119c6c2006-08-15 18:26:30 +0200710out_list:
Jean Delvare35fc37f2009-06-19 16:58:19 +0200711 mutex_lock(&core_lock);
Jean Delvareb119c6c2006-08-15 18:26:30 +0200712 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200713 mutex_unlock(&core_lock);
714 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
David Brownell6e13e642007-05-01 23:26:31 +0200717/**
718 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
719 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +0200720 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200721 *
722 * This routine is used to declare an I2C adapter when its bus number
723 * doesn't matter. Examples: for I2C adapters dynamically added by
724 * USB links or PCI plugin cards.
725 *
726 * When this returns zero, a new bus number was allocated and stored
727 * in adap->nr, and the specified adapter became available for clients.
728 * Otherwise, a negative errno value is returned.
729 */
730int i2c_add_adapter(struct i2c_adapter *adapter)
731{
732 int id, res = 0;
733
734retry:
735 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
736 return -ENOMEM;
737
Jean Delvarecaada322008-01-27 18:14:49 +0100738 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200739 /* "above" here means "above or equal to", sigh */
740 res = idr_get_new_above(&i2c_adapter_idr, adapter,
741 __i2c_first_dynamic_bus_num, &id);
Jean Delvarecaada322008-01-27 18:14:49 +0100742 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200743
744 if (res < 0) {
745 if (res == -EAGAIN)
746 goto retry;
747 return res;
748 }
749
750 adapter->nr = id;
751 return i2c_register_adapter(adapter);
752}
753EXPORT_SYMBOL(i2c_add_adapter);
754
755/**
756 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
757 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +0200758 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +0200759 *
760 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +0100761 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
762 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +0200763 * is used to properly configure I2C devices.
764 *
765 * If no devices have pre-been declared for this bus, then be sure to
766 * register the adapter before any dynamically allocated ones. Otherwise
767 * the required bus ID may not be available.
768 *
769 * When this returns zero, the specified adapter became available for
770 * clients using the bus number provided in adap->nr. Also, the table
771 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
772 * and the appropriate driver model device nodes are created. Otherwise, a
773 * negative errno value is returned.
774 */
775int i2c_add_numbered_adapter(struct i2c_adapter *adap)
776{
777 int id;
778 int status;
779
780 if (adap->nr & ~MAX_ID_MASK)
781 return -EINVAL;
782
783retry:
784 if (idr_pre_get(&i2c_adapter_idr, GFP_KERNEL) == 0)
785 return -ENOMEM;
786
Jean Delvarecaada322008-01-27 18:14:49 +0100787 mutex_lock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200788 /* "above" here means "above or equal to", sigh;
789 * we need the "equal to" result to force the result
790 */
791 status = idr_get_new_above(&i2c_adapter_idr, adap, adap->nr, &id);
792 if (status == 0 && id != adap->nr) {
793 status = -EBUSY;
794 idr_remove(&i2c_adapter_idr, id);
795 }
Jean Delvarecaada322008-01-27 18:14:49 +0100796 mutex_unlock(&core_lock);
David Brownell6e13e642007-05-01 23:26:31 +0200797 if (status == -EAGAIN)
798 goto retry;
799
800 if (status == 0)
801 status = i2c_register_adapter(adap);
802 return status;
803}
804EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
805
Jean Delvare69b00892009-12-06 17:06:27 +0100806static int i2c_do_del_adapter(struct i2c_driver *driver,
807 struct i2c_adapter *adapter)
Jean Delvare026526f2008-01-27 18:14:49 +0100808{
Jean Delvare4735c982008-07-14 22:38:36 +0200809 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +0100810 int res;
811
Jean Delvareacec2112009-03-28 21:34:40 +0100812 /* Remove the devices we created ourselves as the result of hardware
813 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +0200814 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
815 if (client->adapter == adapter) {
816 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
817 client->name, client->addr);
818 list_del(&client->detected);
819 i2c_unregister_device(client);
820 }
821 }
822
Jean Delvare026526f2008-01-27 18:14:49 +0100823 if (!driver->detach_adapter)
824 return 0;
825 res = driver->detach_adapter(adapter);
826 if (res)
827 dev_err(&adapter->dev, "detach_adapter failed (%d) "
828 "for driver [%s]\n", res, driver->driver.name);
829 return res;
830}
831
Jean Delvaree549c2b2009-06-19 16:58:19 +0200832static int __unregister_client(struct device *dev, void *dummy)
833{
834 struct i2c_client *client = i2c_verify_client(dev);
835 if (client)
836 i2c_unregister_device(client);
837 return 0;
838}
839
Jean Delvare69b00892009-12-06 17:06:27 +0100840static int __process_removed_adapter(struct device_driver *d, void *data)
841{
842 return i2c_do_del_adapter(to_i2c_driver(d), data);
843}
844
David Brownelld64f73b2007-07-12 14:12:28 +0200845/**
846 * i2c_del_adapter - unregister I2C adapter
847 * @adap: the adapter being unregistered
848 * Context: can sleep
849 *
850 * This unregisters an I2C adapter which was previously registered
851 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853int i2c_del_adapter(struct i2c_adapter *adap)
854{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 int res = 0;
Jean Delvare35fc37f2009-06-19 16:58:19 +0200856 struct i2c_adapter *found;
Jean Delvarebbd2d9c2009-11-26 09:22:33 +0100857 struct i2c_client *client, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 /* First make sure that this adapter was ever added */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200860 mutex_lock(&core_lock);
861 found = idr_find(&i2c_adapter_idr, adap->nr);
862 mutex_unlock(&core_lock);
863 if (found != adap) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +0200864 pr_debug("i2c-core: attempting to delete unregistered "
865 "adapter [%s]\n", adap->name);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200866 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
Jean Delvare026526f2008-01-27 18:14:49 +0100869 /* Tell drivers about this removal */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200870 mutex_lock(&core_lock);
Jean Delvare026526f2008-01-27 18:14:49 +0100871 res = bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +0100872 __process_removed_adapter);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200873 mutex_unlock(&core_lock);
Jean Delvare026526f2008-01-27 18:14:49 +0100874 if (res)
Jean Delvare35fc37f2009-06-19 16:58:19 +0200875 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Jean Delvarebbd2d9c2009-11-26 09:22:33 +0100877 /* Remove devices instantiated from sysfs */
878 list_for_each_entry_safe(client, next, &userspace_devices, detected) {
879 if (client->adapter == adap) {
880 dev_dbg(&adap->dev, "Removing %s at 0x%x\n",
881 client->name, client->addr);
882 list_del(&client->detected);
883 i2c_unregister_device(client);
884 }
885 }
886
Jean Delvaree549c2b2009-06-19 16:58:19 +0200887 /* Detach any active clients. This can't fail, thus we do not
888 checking the returned value. */
889 res = device_for_each_child(&adap->dev, NULL, __unregister_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Jean Delvare2bb50952009-09-18 22:45:46 +0200891#ifdef CONFIG_I2C_COMPAT
892 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
893 adap->dev.parent);
894#endif
895
Thadeu Lima de Souza Cascardoc5567522010-01-16 20:43:13 +0100896 /* device name is gone after device_unregister */
897 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* clean up the sysfs representation */
900 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 /* wait for sysfs to drop all references */
904 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
David Brownell6e13e642007-05-01 23:26:31 +0200906 /* free bus id */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200907 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200909 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Jean Delvarebd4bc3d2008-07-16 19:30:05 +0200911 /* Clear the device structure in case this adapter is ever going to be
912 added again */
913 memset(&adap->dev, 0, sizeof(adap->dev));
914
Jean Delvare35fc37f2009-06-19 16:58:19 +0200915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
David Brownellc0564602007-05-01 23:26:31 +0200917EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919
David Brownell7b4fbc52007-05-01 23:26:30 +0200920/* ------------------------------------------------------------------------- */
921
Jean Delvare69b00892009-12-06 17:06:27 +0100922static int __process_new_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +0200923{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200924 if (dev->type != &i2c_adapter_type)
925 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +0100926 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +0200927}
928
David Brownell7b4fbc52007-05-01 23:26:30 +0200929/*
930 * An i2c_driver is used with one or more i2c_client (device) nodes to access
Jean Delvare729d6dd2009-06-19 16:58:18 +0200931 * i2c slave chips, on a bus instance associated with some i2c_adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 */
933
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800934int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Jean Delvare7eebcb72006-02-05 23:28:21 +0100936 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
David Brownell1d0b19c2008-10-14 17:30:05 +0200938 /* Can't register until after driver model init */
939 if (unlikely(WARN_ON(!i2c_bus_type.p)))
940 return -EAGAIN;
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800943 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Jean Delvare729d6dd2009-06-19 16:58:18 +0200946 /* When registration returns, the driver core
David Brownell6e13e642007-05-01 23:26:31 +0200947 * will have called probe() for all matching-but-unbound devices.
948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 res = driver_register(&driver->driver);
950 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +0100951 return res;
David Brownell438d6c22006-12-10 21:21:31 +0100952
Laurent Riffard35d8b2e2005-11-26 20:34:05 +0100953 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jean Delvare4735c982008-07-14 22:38:36 +0200955 INIT_LIST_HEAD(&driver->clients);
956 /* Walk the adapters that are already present */
Jean Delvare35fc37f2009-06-19 16:58:19 +0200957 mutex_lock(&core_lock);
Jean Delvare69b00892009-12-06 17:06:27 +0100958 bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_new_driver);
Jean Delvarecaada322008-01-27 18:14:49 +0100959 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200960
Jean Delvare7eebcb72006-02-05 23:28:21 +0100961 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -0800963EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Jean Delvare69b00892009-12-06 17:06:27 +0100965static int __process_removed_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +0200966{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200967 if (dev->type != &i2c_adapter_type)
968 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +0100969 return i2c_do_del_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +0200970}
971
David Brownella1d9e6e2007-05-01 23:26:30 +0200972/**
973 * i2c_del_driver - unregister I2C driver
974 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +0200975 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +0200976 */
Jean Delvareb3e82092007-05-01 23:26:32 +0200977void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Jean Delvarecaada322008-01-27 18:14:49 +0100979 mutex_lock(&core_lock);
Jean Delvare69b00892009-12-06 17:06:27 +0100980 bus_for_each_dev(&i2c_bus_type, NULL, driver, __process_removed_driver);
Jean Delvare35fc37f2009-06-19 16:58:19 +0200981 mutex_unlock(&core_lock);
David Brownella1d9e6e2007-05-01 23:26:30 +0200982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 driver_unregister(&driver->driver);
Laurent Riffard35d8b2e2005-11-26 20:34:05 +0100984 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
David Brownellc0564602007-05-01 23:26:31 +0200986EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
David Brownell7b4fbc52007-05-01 23:26:30 +0200988/* ------------------------------------------------------------------------- */
989
David Brownell9b766b82008-01-27 18:14:51 +0100990static int __i2c_check_addr(struct device *dev, void *addrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
David Brownell9b766b82008-01-27 18:14:51 +0100992 struct i2c_client *client = i2c_verify_client(dev);
993 int addr = *(int *)addrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
David Brownell9b766b82008-01-27 18:14:51 +0100995 if (client && client->addr == addr)
996 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return 0;
998}
999
Jean Delvare5e31c2b2007-11-15 19:24:02 +01001000static int i2c_check_addr(struct i2c_adapter *adapter, int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
David Brownell9b766b82008-01-27 18:14:51 +01001002 return device_for_each_child(&adapter->dev, &addr, __i2c_check_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Jean Delvaree48d3312008-01-27 18:14:48 +01001005/**
1006 * i2c_use_client - increments the reference count of the i2c client structure
1007 * @client: the client being referenced
1008 *
1009 * Each live reference to a client should be refcounted. The driver model does
1010 * that automatically as part of driver binding, so that most drivers don't
1011 * need to do this explicitly: they hold a reference until they're unbound
1012 * from the device.
1013 *
1014 * A pointer to the client with the incremented reference counter is returned.
1015 */
1016struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
David Brownell6ea438e2008-07-14 22:38:24 +02001018 if (client && get_device(&client->dev))
1019 return client;
1020 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
David Brownellc0564602007-05-01 23:26:31 +02001022EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Jean Delvaree48d3312008-01-27 18:14:48 +01001024/**
1025 * i2c_release_client - release a use of the i2c client structure
1026 * @client: the client being no longer referenced
1027 *
1028 * Must be called when a user of a client is finished with it.
1029 */
1030void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
David Brownell6ea438e2008-07-14 22:38:24 +02001032 if (client)
1033 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
David Brownellc0564602007-05-01 23:26:31 +02001035EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
David Brownell9b766b82008-01-27 18:14:51 +01001037struct i2c_cmd_arg {
1038 unsigned cmd;
1039 void *arg;
1040};
1041
1042static int i2c_cmd(struct device *dev, void *_arg)
1043{
1044 struct i2c_client *client = i2c_verify_client(dev);
1045 struct i2c_cmd_arg *arg = _arg;
1046
1047 if (client && client->driver && client->driver->command)
1048 client->driver->command(client, arg->cmd, arg->arg);
1049 return 0;
1050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1053{
David Brownell9b766b82008-01-27 18:14:51 +01001054 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
David Brownell9b766b82008-01-27 18:14:51 +01001056 cmd_arg.cmd = cmd;
1057 cmd_arg.arg = arg;
1058 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
David Brownellc0564602007-05-01 23:26:31 +02001060EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062static int __init i2c_init(void)
1063{
1064 int retval;
1065
1066 retval = bus_register(&i2c_bus_type);
1067 if (retval)
1068 return retval;
Jean Delvare2bb50952009-09-18 22:45:46 +02001069#ifdef CONFIG_I2C_COMPAT
1070 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1071 if (!i2c_adapter_compat_class) {
1072 retval = -ENOMEM;
1073 goto bus_err;
1074 }
1075#endif
David Brownelle9f13732008-01-27 18:14:52 +01001076 retval = i2c_add_driver(&dummy_driver);
1077 if (retval)
Jean Delvare2bb50952009-09-18 22:45:46 +02001078 goto class_err;
David Brownelle9f13732008-01-27 18:14:52 +01001079 return 0;
1080
Jean Delvare2bb50952009-09-18 22:45:46 +02001081class_err:
1082#ifdef CONFIG_I2C_COMPAT
1083 class_compat_unregister(i2c_adapter_compat_class);
David Brownelle9f13732008-01-27 18:14:52 +01001084bus_err:
Jean Delvare2bb50952009-09-18 22:45:46 +02001085#endif
David Brownelle9f13732008-01-27 18:14:52 +01001086 bus_unregister(&i2c_bus_type);
1087 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static void __exit i2c_exit(void)
1091{
David Brownelle9f13732008-01-27 18:14:52 +01001092 i2c_del_driver(&dummy_driver);
Jean Delvare2bb50952009-09-18 22:45:46 +02001093#ifdef CONFIG_I2C_COMPAT
1094 class_compat_unregister(i2c_adapter_compat_class);
1095#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 bus_unregister(&i2c_bus_type);
1097}
1098
David Brownella10f9e72008-10-14 17:30:06 +02001099/* We must initialize early, because some subsystems register i2c drivers
1100 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1101 */
1102postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103module_exit(i2c_exit);
1104
1105/* ----------------------------------------------------
1106 * the functional interface to the i2c busses.
1107 * ----------------------------------------------------
1108 */
1109
David Brownella1cdeda2008-07-14 22:38:24 +02001110/**
1111 * i2c_transfer - execute a single or combined I2C message
1112 * @adap: Handle to I2C bus
1113 * @msgs: One or more messages to execute before STOP is issued to
1114 * terminate the operation; each message begins with a START.
1115 * @num: Number of messages to be executed.
1116 *
1117 * Returns negative errno, else the number of messages executed.
1118 *
1119 * Note that there is no requirement that each message be sent to
1120 * the same slave address, although that is the most common model.
1121 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001122int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Clifford Wolf66b650f2009-06-15 18:01:46 +02001124 unsigned long orig_jiffies;
1125 int ret, try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
David Brownella1cdeda2008-07-14 22:38:24 +02001127 /* REVISIT the fault reporting model here is weak:
1128 *
1129 * - When we get an error after receiving N bytes from a slave,
1130 * there is no way to report "N".
1131 *
1132 * - When we get a NAK after transmitting N bytes to a slave,
1133 * there is no way to report "N" ... or to let the master
1134 * continue executing the rest of this combined message, if
1135 * that's the appropriate response.
1136 *
1137 * - When for example "num" is two and we successfully complete
1138 * the first message but get an error part way through the
1139 * second, it's unclear whether that should be reported as
1140 * one (discarding status on the second message) or errno
1141 * (discarding status on the first one).
1142 */
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (adap->algo->master_xfer) {
1145#ifdef DEBUG
1146 for (ret = 0; ret < num; ret++) {
1147 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02001148 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1149 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1150 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152#endif
1153
Mike Rapoportcea443a2008-01-27 18:14:50 +01001154 if (in_atomic() || irqs_disabled()) {
Mika Kuoppala194684e2009-12-06 17:06:22 +01001155 ret = rt_mutex_trylock(&adap->bus_lock);
Mike Rapoportcea443a2008-01-27 18:14:50 +01001156 if (!ret)
1157 /* I2C activity is ongoing. */
1158 return -EAGAIN;
1159 } else {
Mika Kuoppala194684e2009-12-06 17:06:22 +01001160 rt_mutex_lock(&adap->bus_lock);
Mike Rapoportcea443a2008-01-27 18:14:50 +01001161 }
1162
Clifford Wolf66b650f2009-06-15 18:01:46 +02001163 /* Retry automatically on arbitration loss */
1164 orig_jiffies = jiffies;
1165 for (ret = 0, try = 0; try <= adap->retries; try++) {
1166 ret = adap->algo->master_xfer(adap, msgs, num);
1167 if (ret != -EAGAIN)
1168 break;
1169 if (time_after(jiffies, orig_jiffies + adap->timeout))
1170 break;
1171 }
Mika Kuoppala194684e2009-12-06 17:06:22 +01001172 rt_mutex_unlock(&adap->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 return ret;
1175 } else {
1176 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001177 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179}
David Brownellc0564602007-05-01 23:26:31 +02001180EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
David Brownella1cdeda2008-07-14 22:38:24 +02001182/**
1183 * i2c_master_send - issue a single I2C message in master transmit mode
1184 * @client: Handle to slave device
1185 * @buf: Data that will be written to the slave
1186 * @count: How many bytes to write
1187 *
1188 * Returns negative errno, or else the number of bytes written.
1189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190int i2c_master_send(struct i2c_client *client,const char *buf ,int count)
1191{
1192 int ret;
1193 struct i2c_adapter *adap=client->adapter;
1194 struct i2c_msg msg;
1195
Jean Delvare815f55f2005-05-07 22:58:46 +02001196 msg.addr = client->addr;
1197 msg.flags = client->flags & I2C_M_TEN;
1198 msg.len = count;
1199 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01001200
Jean Delvare815f55f2005-05-07 22:58:46 +02001201 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jean Delvare815f55f2005-05-07 22:58:46 +02001203 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1204 transmitted, else error code. */
1205 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
David Brownellc0564602007-05-01 23:26:31 +02001207EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
David Brownella1cdeda2008-07-14 22:38:24 +02001209/**
1210 * i2c_master_recv - issue a single I2C message in master receive mode
1211 * @client: Handle to slave device
1212 * @buf: Where to store data read from slave
1213 * @count: How many bytes to read
1214 *
1215 * Returns negative errno, or else the number of bytes read.
1216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217int i2c_master_recv(struct i2c_client *client, char *buf ,int count)
1218{
1219 struct i2c_adapter *adap=client->adapter;
1220 struct i2c_msg msg;
1221 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Jean Delvare815f55f2005-05-07 22:58:46 +02001223 msg.addr = client->addr;
1224 msg.flags = client->flags & I2C_M_TEN;
1225 msg.flags |= I2C_M_RD;
1226 msg.len = count;
1227 msg.buf = buf;
1228
1229 ret = i2c_transfer(adap, &msg, 1);
1230
1231 /* If everything went ok (i.e. 1 msg transmitted), return #bytes
1232 transmitted, else error code. */
1233 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
David Brownellc0564602007-05-01 23:26:31 +02001235EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237/* ----------------------------------------------------
1238 * the i2c address scanning function
1239 * Will not work for 10-bit addresses!
1240 * ----------------------------------------------------
1241 */
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001242
Jean Delvareccfbbd02009-12-06 17:06:25 +01001243static int i2c_detect_address(struct i2c_client *temp_client,
Jean Delvare4735c982008-07-14 22:38:36 +02001244 struct i2c_driver *driver)
1245{
1246 struct i2c_board_info info;
1247 struct i2c_adapter *adapter = temp_client->adapter;
1248 int addr = temp_client->addr;
1249 int err;
1250
1251 /* Make sure the address is valid */
1252 if (addr < 0x03 || addr > 0x77) {
1253 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1254 addr);
1255 return -EINVAL;
1256 }
1257
1258 /* Skip if already in use */
1259 if (i2c_check_addr(adapter, addr))
1260 return 0;
1261
Jean Delvareccfbbd02009-12-06 17:06:25 +01001262 /* Make sure there is something at this address */
1263 if (i2c_smbus_xfer(adapter, addr, 0, 0, 0, I2C_SMBUS_QUICK, NULL) < 0)
1264 return 0;
Jean Delvare4735c982008-07-14 22:38:36 +02001265
Jean Delvareccfbbd02009-12-06 17:06:25 +01001266 /* Prevent 24RF08 corruption */
1267 if ((addr & ~0x0f) == 0x50)
1268 i2c_smbus_xfer(adapter, addr, 0, 0, 0, I2C_SMBUS_QUICK, NULL);
Jean Delvare4735c982008-07-14 22:38:36 +02001269
1270 /* Finally call the custom detection function */
1271 memset(&info, 0, sizeof(struct i2c_board_info));
1272 info.addr = addr;
Jean Delvare310ec792009-12-14 21:17:23 +01001273 err = driver->detect(temp_client, &info);
Jean Delvare4735c982008-07-14 22:38:36 +02001274 if (err) {
1275 /* -ENODEV is returned if the detection fails. We catch it
1276 here as this isn't an error. */
1277 return err == -ENODEV ? 0 : err;
1278 }
1279
1280 /* Consistency check */
1281 if (info.type[0] == '\0') {
1282 dev_err(&adapter->dev, "%s detection function provided "
1283 "no name for 0x%x\n", driver->driver.name,
1284 addr);
1285 } else {
1286 struct i2c_client *client;
1287
1288 /* Detection succeeded, instantiate the device */
1289 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1290 info.type, info.addr);
1291 client = i2c_new_device(adapter, &info);
1292 if (client)
1293 list_add_tail(&client->detected, &driver->clients);
1294 else
1295 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1296 info.type, info.addr);
1297 }
1298 return 0;
1299}
1300
1301static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1302{
Jean Delvarec3813d62009-12-14 21:17:25 +01001303 const unsigned short *address_list;
Jean Delvare4735c982008-07-14 22:38:36 +02001304 struct i2c_client *temp_client;
1305 int i, err = 0;
1306 int adap_id = i2c_adapter_id(adapter);
1307
Jean Delvarec3813d62009-12-14 21:17:25 +01001308 address_list = driver->address_list;
1309 if (!driver->detect || !address_list)
Jean Delvare4735c982008-07-14 22:38:36 +02001310 return 0;
1311
1312 /* Set up a temporary client to help detect callback */
1313 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1314 if (!temp_client)
1315 return -ENOMEM;
1316 temp_client->adapter = adapter;
1317
Jean Delvare4329cf82008-08-28 08:33:23 +02001318 /* Stop here if the classes do not match */
1319 if (!(adapter->class & driver->class))
1320 goto exit_free;
1321
Jean Delvare4735c982008-07-14 22:38:36 +02001322 /* Stop here if we can't use SMBUS_QUICK */
1323 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
Jean Delvarec3813d62009-12-14 21:17:25 +01001324 if (address_list[0] == I2C_CLIENT_END)
Jean Delvare4735c982008-07-14 22:38:36 +02001325 goto exit_free;
1326
1327 dev_warn(&adapter->dev, "SMBus Quick command not supported, "
1328 "can't probe for chips\n");
1329 err = -EOPNOTSUPP;
1330 goto exit_free;
1331 }
1332
Jean Delvarec3813d62009-12-14 21:17:25 +01001333 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
Jean Delvare4735c982008-07-14 22:38:36 +02001334 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
Jean Delvarec3813d62009-12-14 21:17:25 +01001335 "addr 0x%02x\n", adap_id, address_list[i]);
1336 temp_client->addr = address_list[i];
Jean Delvareccfbbd02009-12-06 17:06:25 +01001337 err = i2c_detect_address(temp_client, driver);
Jean Delvare4735c982008-07-14 22:38:36 +02001338 if (err)
1339 goto exit_free;
1340 }
1341
1342 exit_free:
1343 kfree(temp_client);
1344 return err;
1345}
1346
Jean Delvare12b50532007-05-01 23:26:31 +02001347struct i2c_client *
1348i2c_new_probed_device(struct i2c_adapter *adap,
1349 struct i2c_board_info *info,
1350 unsigned short const *addr_list)
1351{
1352 int i;
1353
1354 /* Stop here if the bus doesn't support probing */
1355 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE)) {
1356 dev_err(&adap->dev, "Probing not supported\n");
1357 return NULL;
1358 }
1359
Jean Delvare12b50532007-05-01 23:26:31 +02001360 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1361 /* Check address validity */
1362 if (addr_list[i] < 0x03 || addr_list[i] > 0x77) {
1363 dev_warn(&adap->dev, "Invalid 7-bit address "
1364 "0x%02x\n", addr_list[i]);
1365 continue;
1366 }
1367
1368 /* Check address availability */
David Brownell9b766b82008-01-27 18:14:51 +01001369 if (i2c_check_addr(adap, addr_list[i])) {
Jean Delvare12b50532007-05-01 23:26:31 +02001370 dev_dbg(&adap->dev, "Address 0x%02x already in "
1371 "use, not probing\n", addr_list[i]);
1372 continue;
1373 }
1374
1375 /* Test address responsiveness
1376 The default probe method is a quick write, but it is known
1377 to corrupt the 24RF08 EEPROMs due to a state machine bug,
1378 and could also irreversibly write-protect some EEPROMs, so
1379 for address ranges 0x30-0x37 and 0x50-0x5f, we use a byte
1380 read instead. Also, some bus drivers don't implement
1381 quick write, so we fallback to a byte read it that case
1382 too. */
1383 if ((addr_list[i] & ~0x07) == 0x30
1384 || (addr_list[i] & ~0x0f) == 0x50
1385 || !i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK)) {
Hans Verkuilb25b7912008-08-10 22:56:15 +02001386 union i2c_smbus_data data;
1387
Jean Delvare12b50532007-05-01 23:26:31 +02001388 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1389 I2C_SMBUS_READ, 0,
Hans Verkuilb25b7912008-08-10 22:56:15 +02001390 I2C_SMBUS_BYTE, &data) >= 0)
Jean Delvare12b50532007-05-01 23:26:31 +02001391 break;
1392 } else {
1393 if (i2c_smbus_xfer(adap, addr_list[i], 0,
1394 I2C_SMBUS_WRITE, 0,
1395 I2C_SMBUS_QUICK, NULL) >= 0)
1396 break;
1397 }
1398 }
Jean Delvare12b50532007-05-01 23:26:31 +02001399
1400 if (addr_list[i] == I2C_CLIENT_END) {
1401 dev_dbg(&adap->dev, "Probing failed, no device found\n");
1402 return NULL;
1403 }
1404
1405 info->addr = addr_list[i];
1406 return i2c_new_device(adap, info);
1407}
1408EXPORT_SYMBOL_GPL(i2c_new_probed_device);
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410struct i2c_adapter* i2c_get_adapter(int id)
1411{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01001413
Jean Delvarecaada322008-01-27 18:14:49 +01001414 mutex_lock(&core_lock);
Jack Stone1cf92b42009-06-15 18:01:46 +02001415 adapter = idr_find(&i2c_adapter_idr, id);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001416 if (adapter && !try_module_get(adapter->owner))
1417 adapter = NULL;
1418
Jean Delvarecaada322008-01-27 18:14:49 +01001419 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04001420 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
David Brownellc0564602007-05-01 23:26:31 +02001422EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424void i2c_put_adapter(struct i2c_adapter *adap)
1425{
1426 module_put(adap->owner);
1427}
David Brownellc0564602007-05-01 23:26:31 +02001428EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430/* The SMBus parts */
1431
David Brownell438d6c22006-12-10 21:21:31 +01001432#define POLY (0x1070U << 3)
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001433static u8 crc8(u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 int i;
David Brownell438d6c22006-12-10 21:21:31 +01001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 for(i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01001438 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 data = data ^ POLY;
1440 data = data << 1;
1441 }
1442 return (u8)(data >> 8);
1443}
1444
Jean Delvare421ef472005-10-26 21:28:55 +02001445/* Incremental CRC8 over count bytes in the array pointed to by p */
1446static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448 int i;
1449
1450 for(i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02001451 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return crc;
1453}
1454
Jean Delvare421ef472005-10-26 21:28:55 +02001455/* Assume a 7-bit address, which is reasonable for SMBus */
1456static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Jean Delvare421ef472005-10-26 21:28:55 +02001458 /* The address will be sent first */
1459 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
1460 pec = i2c_smbus_pec(pec, &addr, 1);
1461
1462 /* The data buffer follows */
1463 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Jean Delvare421ef472005-10-26 21:28:55 +02001466/* Used for write only transactions */
1467static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Jean Delvare421ef472005-10-26 21:28:55 +02001469 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
1470 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
Jean Delvare421ef472005-10-26 21:28:55 +02001473/* Return <0 on CRC error
1474 If there was a write before this read (most cases) we need to take the
1475 partial CRC from the write part into account.
1476 Note that this function does modify the message (we need to decrease the
1477 message length to hide the CRC byte from the caller). */
1478static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Jean Delvare421ef472005-10-26 21:28:55 +02001480 u8 rpec = msg->buf[--msg->len];
1481 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (rpec != cpec) {
1484 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
1485 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02001486 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
David Brownell438d6c22006-12-10 21:21:31 +01001488 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
David Brownella1cdeda2008-07-14 22:38:24 +02001491/**
1492 * i2c_smbus_read_byte - SMBus "receive byte" protocol
1493 * @client: Handle to slave device
1494 *
1495 * This executes the SMBus "receive byte" protocol, returning negative errno
1496 * else the byte received from the device.
1497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498s32 i2c_smbus_read_byte(struct i2c_client *client)
1499{
1500 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001501 int status;
1502
1503 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1504 I2C_SMBUS_READ, 0,
1505 I2C_SMBUS_BYTE, &data);
1506 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
David Brownellc0564602007-05-01 23:26:31 +02001508EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
David Brownella1cdeda2008-07-14 22:38:24 +02001510/**
1511 * i2c_smbus_write_byte - SMBus "send byte" protocol
1512 * @client: Handle to slave device
1513 * @value: Byte to be sent
1514 *
1515 * This executes the SMBus "send byte" protocol, returning negative errno
1516 * else zero on success.
1517 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518s32 i2c_smbus_write_byte(struct i2c_client *client, u8 value)
1519{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02001521 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
David Brownellc0564602007-05-01 23:26:31 +02001523EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
David Brownella1cdeda2008-07-14 22:38:24 +02001525/**
1526 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
1527 * @client: Handle to slave device
1528 * @command: Byte interpreted by slave
1529 *
1530 * This executes the SMBus "read byte" protocol, returning negative errno
1531 * else a data byte received from the device.
1532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533s32 i2c_smbus_read_byte_data(struct i2c_client *client, u8 command)
1534{
1535 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001536 int status;
1537
1538 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1539 I2C_SMBUS_READ, command,
1540 I2C_SMBUS_BYTE_DATA, &data);
1541 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
David Brownellc0564602007-05-01 23:26:31 +02001543EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
David Brownella1cdeda2008-07-14 22:38:24 +02001545/**
1546 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
1547 * @client: Handle to slave device
1548 * @command: Byte interpreted by slave
1549 * @value: Byte being written
1550 *
1551 * This executes the SMBus "write byte" protocol, returning negative errno
1552 * else zero on success.
1553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554s32 i2c_smbus_write_byte_data(struct i2c_client *client, u8 command, u8 value)
1555{
1556 union i2c_smbus_data data;
1557 data.byte = value;
1558 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1559 I2C_SMBUS_WRITE,command,
1560 I2C_SMBUS_BYTE_DATA,&data);
1561}
David Brownellc0564602007-05-01 23:26:31 +02001562EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
David Brownella1cdeda2008-07-14 22:38:24 +02001564/**
1565 * i2c_smbus_read_word_data - SMBus "read word" protocol
1566 * @client: Handle to slave device
1567 * @command: Byte interpreted by slave
1568 *
1569 * This executes the SMBus "read word" protocol, returning negative errno
1570 * else a 16-bit unsigned "word" received from the device.
1571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572s32 i2c_smbus_read_word_data(struct i2c_client *client, u8 command)
1573{
1574 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001575 int status;
1576
1577 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1578 I2C_SMBUS_READ, command,
1579 I2C_SMBUS_WORD_DATA, &data);
1580 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
David Brownellc0564602007-05-01 23:26:31 +02001582EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
David Brownella1cdeda2008-07-14 22:38:24 +02001584/**
1585 * i2c_smbus_write_word_data - SMBus "write word" protocol
1586 * @client: Handle to slave device
1587 * @command: Byte interpreted by slave
1588 * @value: 16-bit "word" being written
1589 *
1590 * This executes the SMBus "write word" protocol, returning negative errno
1591 * else zero on success.
1592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value)
1594{
1595 union i2c_smbus_data data;
1596 data.word = value;
1597 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1598 I2C_SMBUS_WRITE,command,
1599 I2C_SMBUS_WORD_DATA,&data);
1600}
David Brownellc0564602007-05-01 23:26:31 +02001601EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
David Brownella64ec072007-10-13 23:56:31 +02001603/**
Prakash Mortha596c88f2008-10-14 17:30:06 +02001604 * i2c_smbus_process_call - SMBus "process call" protocol
1605 * @client: Handle to slave device
1606 * @command: Byte interpreted by slave
1607 * @value: 16-bit "word" being written
1608 *
1609 * This executes the SMBus "process call" protocol, returning negative errno
1610 * else a 16-bit unsigned "word" received from the device.
1611 */
1612s32 i2c_smbus_process_call(struct i2c_client *client, u8 command, u16 value)
1613{
1614 union i2c_smbus_data data;
1615 int status;
1616 data.word = value;
1617
1618 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1619 I2C_SMBUS_WRITE, command,
1620 I2C_SMBUS_PROC_CALL, &data);
1621 return (status < 0) ? status : data.word;
1622}
1623EXPORT_SYMBOL(i2c_smbus_process_call);
1624
1625/**
David Brownella1cdeda2008-07-14 22:38:24 +02001626 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02001627 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02001628 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02001629 * @values: Byte array into which data will be read; big enough to hold
1630 * the data returned by the slave. SMBus allows at most 32 bytes.
1631 *
David Brownella1cdeda2008-07-14 22:38:24 +02001632 * This executes the SMBus "block read" protocol, returning negative errno
1633 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02001634 *
1635 * Note that using this function requires that the client's adapter support
1636 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
1637 * support this; its emulation through I2C messaging relies on a specific
1638 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
1639 */
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001640s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command,
1641 u8 *values)
1642{
1643 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001644 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001645
David Brownell24a5bb72008-07-14 22:38:23 +02001646 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1647 I2C_SMBUS_READ, command,
1648 I2C_SMBUS_BLOCK_DATA, &data);
1649 if (status)
1650 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02001651
1652 memcpy(values, &data.block[1], data.block[0]);
1653 return data.block[0];
1654}
1655EXPORT_SYMBOL(i2c_smbus_read_block_data);
1656
David Brownella1cdeda2008-07-14 22:38:24 +02001657/**
1658 * i2c_smbus_write_block_data - SMBus "block write" protocol
1659 * @client: Handle to slave device
1660 * @command: Byte interpreted by slave
1661 * @length: Size of data block; SMBus allows at most 32 bytes
1662 * @values: Byte array which will be written.
1663 *
1664 * This executes the SMBus "block write" protocol, returning negative errno
1665 * else zero on success.
1666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001668 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (length > I2C_SMBUS_BLOCK_MAX)
1673 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01001675 memcpy(&data.block[1], values, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return i2c_smbus_xfer(client->adapter,client->addr,client->flags,
1677 I2C_SMBUS_WRITE,command,
1678 I2C_SMBUS_BLOCK_DATA,&data);
1679}
David Brownellc0564602007-05-01 23:26:31 +02001680EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682/* Returns the number of read bytes */
Jean Delvare4b2643d2007-07-12 14:12:29 +02001683s32 i2c_smbus_read_i2c_block_data(struct i2c_client *client, u8 command,
1684 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02001687 int status;
Jean Delvare76560322006-01-18 23:14:55 +01001688
Jean Delvare4b2643d2007-07-12 14:12:29 +02001689 if (length > I2C_SMBUS_BLOCK_MAX)
1690 length = I2C_SMBUS_BLOCK_MAX;
1691 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02001692 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1693 I2C_SMBUS_READ, command,
1694 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1695 if (status < 0)
1696 return status;
Jean Delvare76560322006-01-18 23:14:55 +01001697
1698 memcpy(values, &data.block[1], data.block[0]);
1699 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700}
David Brownellc0564602007-05-01 23:26:31 +02001701EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Jean Delvare21bbd692006-01-09 15:19:18 +11001703s32 i2c_smbus_write_i2c_block_data(struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02001704 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11001705{
1706 union i2c_smbus_data data;
1707
1708 if (length > I2C_SMBUS_BLOCK_MAX)
1709 length = I2C_SMBUS_BLOCK_MAX;
1710 data.block[0] = length;
1711 memcpy(data.block + 1, values, length);
1712 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
1713 I2C_SMBUS_WRITE, command,
1714 I2C_SMBUS_I2C_BLOCK_DATA, &data);
1715}
David Brownellc0564602007-05-01 23:26:31 +02001716EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11001717
David Brownell438d6c22006-12-10 21:21:31 +01001718/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 No checking of parameters is done! */
David Brownell438d6c22006-12-10 21:21:31 +01001720static s32 i2c_smbus_xfer_emulated(struct i2c_adapter * adapter, u16 addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 unsigned short flags,
David Brownell438d6c22006-12-10 21:21:31 +01001722 char read_write, u8 command, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 union i2c_smbus_data * data)
1724{
1725 /* So we need to generate a series of msgs. In the case of writing, we
1726 need to use only one message; when reading, we need two. We initialize
1727 most things with sane defaults, to keep the code below somewhat
1728 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001729 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
1730 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 int num = read_write == I2C_SMBUS_READ?2:1;
David Brownell438d6c22006-12-10 21:21:31 +01001732 struct i2c_msg msg[2] = { { addr, flags, 1, msgbuf0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 { addr, flags | I2C_M_RD, 0, msgbuf1 }
1734 };
1735 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02001736 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02001737 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 msgbuf0[0] = command;
1740 switch(size) {
1741 case I2C_SMBUS_QUICK:
1742 msg[0].len = 0;
1743 /* Special case: The read/write field is used as data */
Roel Kluinf29d2e02009-02-24 19:19:48 +01001744 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
1745 I2C_M_RD : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 num = 1;
1747 break;
1748 case I2C_SMBUS_BYTE:
1749 if (read_write == I2C_SMBUS_READ) {
1750 /* Special case: only a read! */
1751 msg[0].flags = I2C_M_RD | flags;
1752 num = 1;
1753 }
1754 break;
1755 case I2C_SMBUS_BYTE_DATA:
1756 if (read_write == I2C_SMBUS_READ)
1757 msg[1].len = 1;
1758 else {
1759 msg[0].len = 2;
1760 msgbuf0[1] = data->byte;
1761 }
1762 break;
1763 case I2C_SMBUS_WORD_DATA:
1764 if (read_write == I2C_SMBUS_READ)
1765 msg[1].len = 2;
1766 else {
1767 msg[0].len=3;
1768 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001769 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771 break;
1772 case I2C_SMBUS_PROC_CALL:
1773 num = 2; /* Special case */
1774 read_write = I2C_SMBUS_READ;
1775 msg[0].len = 3;
1776 msg[1].len = 2;
1777 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02001778 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 break;
1780 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02001782 msg[1].flags |= I2C_M_RECV_LEN;
1783 msg[1].len = 1; /* block length will be added by
1784 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 } else {
1786 msg[0].len = data->block[0] + 2;
1787 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02001788 dev_err(&adapter->dev,
1789 "Invalid block write size %d\n",
1790 data->block[0]);
1791 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02001793 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 msgbuf0[i] = data->block[i-1];
1795 }
1796 break;
1797 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02001798 num = 2; /* Another special case */
1799 read_write = I2C_SMBUS_READ;
1800 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02001801 dev_err(&adapter->dev,
1802 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02001803 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02001804 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02001805 }
1806 msg[0].len = data->block[0] + 2;
1807 for (i = 1; i < msg[0].len; i++)
1808 msgbuf0[i] = data->block[i-1];
1809 msg[1].flags |= I2C_M_RECV_LEN;
1810 msg[1].len = 1; /* block length will be added by
1811 the underlying bus driver */
1812 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 case I2C_SMBUS_I2C_BLOCK_DATA:
1814 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02001815 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 } else {
1817 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02001818 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02001819 dev_err(&adapter->dev,
1820 "Invalid block write size %d\n",
1821 data->block[0]);
1822 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824 for (i = 1; i <= data->block[0]; i++)
1825 msgbuf0[i] = data->block[i];
1826 }
1827 break;
1828 default:
David Brownell24a5bb72008-07-14 22:38:23 +02001829 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
1830 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832
Jean Delvare421ef472005-10-26 21:28:55 +02001833 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
1834 && size != I2C_SMBUS_I2C_BLOCK_DATA);
1835 if (i) {
1836 /* Compute PEC if first message is a write */
1837 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01001838 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02001839 i2c_smbus_add_pec(&msg[0]);
1840 else /* Write followed by read */
1841 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
1842 }
1843 /* Ask for PEC if last message is a read */
1844 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01001845 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02001846 }
1847
David Brownell24a5bb72008-07-14 22:38:23 +02001848 status = i2c_transfer(adapter, msg, num);
1849 if (status < 0)
1850 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Jean Delvare421ef472005-10-26 21:28:55 +02001852 /* Check PEC if last message is a read */
1853 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02001854 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
1855 if (status < 0)
1856 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02001857 }
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (read_write == I2C_SMBUS_READ)
1860 switch(size) {
1861 case I2C_SMBUS_BYTE:
1862 data->byte = msgbuf0[0];
1863 break;
1864 case I2C_SMBUS_BYTE_DATA:
1865 data->byte = msgbuf1[0];
1866 break;
David Brownell438d6c22006-12-10 21:21:31 +01001867 case I2C_SMBUS_WORD_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 case I2C_SMBUS_PROC_CALL:
1869 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
1870 break;
1871 case I2C_SMBUS_I2C_BLOCK_DATA:
Jean Delvare4b2643d2007-07-12 14:12:29 +02001872 for (i = 0; i < data->block[0]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 data->block[i+1] = msgbuf1[i];
1874 break;
Jean Delvare209d27c2007-05-01 23:26:29 +02001875 case I2C_SMBUS_BLOCK_DATA:
1876 case I2C_SMBUS_BLOCK_PROC_CALL:
1877 for (i = 0; i < msgbuf1[0] + 1; i++)
1878 data->block[i] = msgbuf1[i];
1879 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
1881 return 0;
1882}
1883
David Brownella1cdeda2008-07-14 22:38:24 +02001884/**
1885 * i2c_smbus_xfer - execute SMBus protocol operations
1886 * @adapter: Handle to I2C bus
1887 * @addr: Address of SMBus slave on that bus
1888 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
1889 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
1890 * @command: Byte interpreted by slave, for protocols which use such bytes
1891 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
1892 * @data: Data to be read or written
1893 *
1894 * This executes an SMBus protocol operation, and returns a negative
1895 * errno code else zero on success.
1896 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001897s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02001898 char read_write, u8 command, int protocol,
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001899 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Clifford Wolf66b650f2009-06-15 18:01:46 +02001901 unsigned long orig_jiffies;
1902 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 flags &= I2C_M_TEN | I2C_CLIENT_PEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907 if (adapter->algo->smbus_xfer) {
Mika Kuoppala194684e2009-12-06 17:06:22 +01001908 rt_mutex_lock(&adapter->bus_lock);
Clifford Wolf66b650f2009-06-15 18:01:46 +02001909
1910 /* Retry automatically on arbitration loss */
1911 orig_jiffies = jiffies;
1912 for (res = 0, try = 0; try <= adapter->retries; try++) {
1913 res = adapter->algo->smbus_xfer(adapter, addr, flags,
1914 read_write, command,
1915 protocol, data);
1916 if (res != -EAGAIN)
1917 break;
1918 if (time_after(jiffies,
1919 orig_jiffies + adapter->timeout))
1920 break;
1921 }
Mika Kuoppala194684e2009-12-06 17:06:22 +01001922 rt_mutex_unlock(&adapter->bus_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 } else
1924 res = i2c_smbus_xfer_emulated(adapter,addr,flags,read_write,
David Brownella1cdeda2008-07-14 22:38:24 +02001925 command, protocol, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return res;
1928}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
1932MODULE_DESCRIPTION("I2C-Bus main module");
1933MODULE_LICENSE("GPL");