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