blob: dd3a4dbb4718f98cbead83915ee00e29e9704a5f [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
Jean Delvare5694f8a2012-03-26 21:47:19 +020017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 MA 02110-1301 USA. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/* ------------------------------------------------------------------------- */
20
Jan Engelhardt96de0e22007-10-19 23:21:04 +020021/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
Jean Delvare421ef472005-10-26 21:28:55 +020023 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
Michael Lawnick08263742010-08-11 18:21:02 +020024 Jean Delvare <khali@linux-fr.org>
25 Mux support by Rodolfo Giometti <giometti@enneenne.com> and
Wolfram Sang687b81d2013-07-11 12:56:15 +010026 Michael Lawnick <michael.lawnick.ext@nsn.com>
27 OF support is copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
28 (based on a previous patch from Jon Smirl <jonsmirl@gmail.com>) and
29 (c) 2013 Wolfram Sang <wsa@the-dreams.de>
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/module.h>
33#include <linux/kernel.h>
Viresh Kumar5f9296b2012-02-28 18:26:31 +053034#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/errno.h>
Viresh Kumar5f9296b2012-02-28 18:26:31 +053036#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/slab.h>
38#include <linux/i2c.h>
39#include <linux/init.h>
40#include <linux/idr.h>
Arjan van de Venb3585e42006-01-11 10:50:26 +010041#include <linux/mutex.h>
Wolfram Sang687b81d2013-07-11 12:56:15 +010042#include <linux/of.h>
Grant Likely959e85f2010-06-08 07:48:19 -060043#include <linux/of_device.h>
Wolfram Sang687b81d2013-07-11 12:56:15 +010044#include <linux/of_irq.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010045#include <linux/completion.h>
Mike Rapoportcea443a82008-01-27 18:14:50 +010046#include <linux/hardirq.h>
47#include <linux/irqflags.h>
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +020048#include <linux/rwsem.h>
Mark Brown6de468a2010-03-02 12:23:46 +010049#include <linux/pm_runtime.h>
Mika Westerberg907ddf82012-11-23 12:23:40 +010050#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/uaccess.h>
52
David Brownell9c1600e2007-05-01 23:26:31 +020053#include "i2c-core.h"
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jean Delvare6629dcf2010-05-04 11:09:28 +020056/* core_lock protects i2c_adapter_idr, and guarantees
Jean Delvare35fc37f2009-06-19 16:58:19 +020057 that device detection, deletion of detected devices, and attach_adapter
Lars-Peter Clausen19baba42013-03-09 08:16:44 +000058 calls are serialized */
Jean Delvarecaada322008-01-27 18:14:49 +010059static DEFINE_MUTEX(core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static DEFINE_IDR(i2c_adapter_idr);
61
Jean Delvare4f8cf822009-09-18 22:45:46 +020062static struct device_type i2c_client_type;
Jean Delvare4735c982008-07-14 22:38:36 +020063static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010064
65/* ------------------------------------------------------------------------- */
66
Jean Delvared2653e92008-04-29 23:11:39 +020067static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
68 const struct i2c_client *client)
69{
70 while (id->name[0]) {
71 if (strcmp(client->name, id->name) == 0)
72 return id;
73 id++;
74 }
75 return NULL;
76}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static int i2c_device_match(struct device *dev, struct device_driver *drv)
79{
Jean Delvare51298d12009-09-18 22:45:45 +020080 struct i2c_client *client = i2c_verify_client(dev);
81 struct i2c_driver *driver;
David Brownell7b4fbc52007-05-01 23:26:30 +020082
Jean Delvare51298d12009-09-18 22:45:45 +020083 if (!client)
84 return 0;
85
Grant Likely959e85f2010-06-08 07:48:19 -060086 /* Attempt an OF style match */
87 if (of_driver_match_device(dev, drv))
88 return 1;
89
Mika Westerberg907ddf82012-11-23 12:23:40 +010090 /* Then ACPI style match */
91 if (acpi_driver_match_device(dev, drv))
92 return 1;
93
Jean Delvare51298d12009-09-18 22:45:45 +020094 driver = to_i2c_driver(drv);
Jean Delvared2653e92008-04-29 23:11:39 +020095 /* match on an id table if there is one */
96 if (driver->id_table)
97 return i2c_match_id(driver->id_table, client) != NULL;
98
Jean Delvareeb8a7902008-05-18 20:49:41 +020099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
David Brownell7b4fbc52007-05-01 23:26:30 +0200102
103/* uevent helps with hotplug: modprobe -q $(MODALIAS) */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200104static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +0200105{
106 struct i2c_client *client = to_i2c_client(dev);
David Brownell7b4fbc52007-05-01 23:26:30 +0200107
Jean Delvareeb8a7902008-05-18 20:49:41 +0200108 if (add_uevent_var(env, "MODALIAS=%s%s",
109 I2C_MODULE_PREFIX, client->name))
110 return -ENOMEM;
David Brownell7b4fbc52007-05-01 23:26:30 +0200111 dev_dbg(dev, "uevent\n");
112 return 0;
113}
114
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530115/* i2c bus recovery routines */
116static int get_scl_gpio_value(struct i2c_adapter *adap)
117{
118 return gpio_get_value(adap->bus_recovery_info->scl_gpio);
119}
120
121static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
122{
123 gpio_set_value(adap->bus_recovery_info->scl_gpio, val);
124}
125
126static int get_sda_gpio_value(struct i2c_adapter *adap)
127{
128 return gpio_get_value(adap->bus_recovery_info->sda_gpio);
129}
130
131static int i2c_get_gpios_for_recovery(struct i2c_adapter *adap)
132{
133 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
134 struct device *dev = &adap->dev;
135 int ret = 0;
136
137 ret = gpio_request_one(bri->scl_gpio, GPIOF_OPEN_DRAIN |
138 GPIOF_OUT_INIT_HIGH, "i2c-scl");
139 if (ret) {
140 dev_warn(dev, "Can't get SCL gpio: %d\n", bri->scl_gpio);
141 return ret;
142 }
143
144 if (bri->get_sda) {
145 if (gpio_request_one(bri->sda_gpio, GPIOF_IN, "i2c-sda")) {
146 /* work without SDA polling */
147 dev_warn(dev, "Can't get SDA gpio: %d. Not using SDA polling\n",
148 bri->sda_gpio);
149 bri->get_sda = NULL;
150 }
151 }
152
153 return ret;
154}
155
156static void i2c_put_gpios_for_recovery(struct i2c_adapter *adap)
157{
158 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
159
160 if (bri->get_sda)
161 gpio_free(bri->sda_gpio);
162
163 gpio_free(bri->scl_gpio);
164}
165
166/*
167 * We are generating clock pulses. ndelay() determines durating of clk pulses.
168 * We will generate clock with rate 100 KHz and so duration of both clock levels
169 * is: delay in ns = (10^6 / 100) / 2
170 */
171#define RECOVERY_NDELAY 5000
172#define RECOVERY_CLK_CNT 9
173
174static int i2c_generic_recovery(struct i2c_adapter *adap)
175{
176 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
177 int i = 0, val = 1, ret = 0;
178
179 if (bri->prepare_recovery)
180 bri->prepare_recovery(bri);
181
182 /*
183 * By this time SCL is high, as we need to give 9 falling-rising edges
184 */
185 while (i++ < RECOVERY_CLK_CNT * 2) {
186 if (val) {
187 /* Break if SDA is high */
188 if (bri->get_sda && bri->get_sda(adap))
189 break;
190 /* SCL shouldn't be low here */
191 if (!bri->get_scl(adap)) {
192 dev_err(&adap->dev,
193 "SCL is stuck low, exit recovery\n");
194 ret = -EBUSY;
195 break;
196 }
197 }
198
199 val = !val;
200 bri->set_scl(adap, val);
201 ndelay(RECOVERY_NDELAY);
202 }
203
204 if (bri->unprepare_recovery)
205 bri->unprepare_recovery(bri);
206
207 return ret;
208}
209
210int i2c_generic_scl_recovery(struct i2c_adapter *adap)
211{
212 adap->bus_recovery_info->set_scl(adap, 1);
213 return i2c_generic_recovery(adap);
214}
215
216int i2c_generic_gpio_recovery(struct i2c_adapter *adap)
217{
218 int ret;
219
220 ret = i2c_get_gpios_for_recovery(adap);
221 if (ret)
222 return ret;
223
224 ret = i2c_generic_recovery(adap);
225 i2c_put_gpios_for_recovery(adap);
226
227 return ret;
228}
229
230int i2c_recover_bus(struct i2c_adapter *adap)
231{
232 if (!adap->bus_recovery_info)
233 return -EOPNOTSUPP;
234
235 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
236 return adap->bus_recovery_info->recover_bus(adap);
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239static int i2c_device_probe(struct device *dev)
240{
Jean Delvare51298d12009-09-18 22:45:45 +0200241 struct i2c_client *client = i2c_verify_client(dev);
242 struct i2c_driver *driver;
Hans Verkuil50c33042008-03-12 14:15:00 +0100243 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200244
Jean Delvare51298d12009-09-18 22:45:45 +0200245 if (!client)
246 return 0;
247
248 driver = to_i2c_driver(dev->driver);
Jean Delvaree0457442008-07-14 22:38:30 +0200249 if (!driver->probe || !driver->id_table)
David Brownell7b4fbc52007-05-01 23:26:30 +0200250 return -ENODEV;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +0200251
Marc Pignatee354252008-08-28 08:33:22 +0200252 if (!device_can_wakeup(&client->dev))
253 device_init_wakeup(&client->dev,
254 client->flags & I2C_CLIENT_WAKE);
David Brownell7b4fbc52007-05-01 23:26:30 +0200255 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200256
Lv Zhenga76e9bd2013-10-10 13:28:47 +0300257 acpi_dev_pm_attach(&client->dev, true);
Jean Delvaree0457442008-07-14 22:38:30 +0200258 status = driver->probe(client, i2c_match_id(driver->id_table, client));
Wolfram Sang72fa8182014-01-21 17:48:34 +0100259 if (status)
Lv Zhenga76e9bd2013-10-10 13:28:47 +0300260 acpi_dev_pm_detach(&client->dev, true);
Wolfram Sang72fa8182014-01-21 17:48:34 +0100261
Hans Verkuil50c33042008-03-12 14:15:00 +0100262 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265static int i2c_device_remove(struct device *dev)
266{
Jean Delvare51298d12009-09-18 22:45:45 +0200267 struct i2c_client *client = i2c_verify_client(dev);
David Brownella1d9e6e2007-05-01 23:26:30 +0200268 struct i2c_driver *driver;
Wolfram Sang72fa8182014-01-21 17:48:34 +0100269 int status = 0;
David Brownella1d9e6e2007-05-01 23:26:30 +0200270
Jean Delvare51298d12009-09-18 22:45:45 +0200271 if (!client || !dev->driver)
David Brownella1d9e6e2007-05-01 23:26:30 +0200272 return 0;
273
274 driver = to_i2c_driver(dev->driver);
275 if (driver->remove) {
276 dev_dbg(dev, "remove\n");
277 status = driver->remove(client);
David Brownella1d9e6e2007-05-01 23:26:30 +0200278 }
Wolfram Sang72fa8182014-01-21 17:48:34 +0100279
Lv Zhenga76e9bd2013-10-10 13:28:47 +0300280 acpi_dev_pm_detach(&client->dev, true);
David Brownella1d9e6e2007-05-01 23:26:30 +0200281 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
David Brownellf37dd802007-02-13 22:09:00 +0100284static void i2c_device_shutdown(struct device *dev)
285{
Jean Delvare51298d12009-09-18 22:45:45 +0200286 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100287 struct i2c_driver *driver;
288
Jean Delvare51298d12009-09-18 22:45:45 +0200289 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100290 return;
291 driver = to_i2c_driver(dev->driver);
292 if (driver->shutdown)
Jean Delvare51298d12009-09-18 22:45:45 +0200293 driver->shutdown(client);
David Brownellf37dd802007-02-13 22:09:00 +0100294}
295
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200296#ifdef CONFIG_PM_SLEEP
297static int i2c_legacy_suspend(struct device *dev, pm_message_t mesg)
David Brownellf37dd802007-02-13 22:09:00 +0100298{
Jean Delvare51298d12009-09-18 22:45:45 +0200299 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100300 struct i2c_driver *driver;
301
Jean Delvare51298d12009-09-18 22:45:45 +0200302 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100303 return 0;
304 driver = to_i2c_driver(dev->driver);
305 if (!driver->suspend)
306 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200307 return driver->suspend(client, mesg);
David Brownellf37dd802007-02-13 22:09:00 +0100308}
309
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200310static int i2c_legacy_resume(struct device *dev)
David Brownellf37dd802007-02-13 22:09:00 +0100311{
Jean Delvare51298d12009-09-18 22:45:45 +0200312 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100313 struct i2c_driver *driver;
314
Jean Delvare51298d12009-09-18 22:45:45 +0200315 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100316 return 0;
317 driver = to_i2c_driver(dev->driver);
318 if (!driver->resume)
319 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200320 return driver->resume(client);
David Brownellf37dd802007-02-13 22:09:00 +0100321}
322
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200323static int i2c_device_pm_suspend(struct device *dev)
324{
325 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
326
Mark Brownd529de22011-01-14 22:03:49 +0100327 if (pm)
328 return pm_generic_suspend(dev);
329 else
330 return i2c_legacy_suspend(dev, PMSG_SUSPEND);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200331}
332
333static int i2c_device_pm_resume(struct device *dev)
334{
335 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200336
337 if (pm)
Mark Brownd529de22011-01-14 22:03:49 +0100338 return pm_generic_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200339 else
Mark Brownd529de22011-01-14 22:03:49 +0100340 return i2c_legacy_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200341}
342
343static int i2c_device_pm_freeze(struct device *dev)
344{
345 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
346
Mark Brownd529de22011-01-14 22:03:49 +0100347 if (pm)
348 return pm_generic_freeze(dev);
349 else
350 return i2c_legacy_suspend(dev, PMSG_FREEZE);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200351}
352
353static int i2c_device_pm_thaw(struct device *dev)
354{
355 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
356
Mark Brownd529de22011-01-14 22:03:49 +0100357 if (pm)
358 return pm_generic_thaw(dev);
359 else
360 return i2c_legacy_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200361}
362
363static int i2c_device_pm_poweroff(struct device *dev)
364{
365 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
366
Mark Brownd529de22011-01-14 22:03:49 +0100367 if (pm)
368 return pm_generic_poweroff(dev);
369 else
370 return i2c_legacy_suspend(dev, PMSG_HIBERNATE);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200371}
372
373static int i2c_device_pm_restore(struct device *dev)
374{
375 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200376
377 if (pm)
Mark Brownd529de22011-01-14 22:03:49 +0100378 return pm_generic_restore(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200379 else
Mark Brownd529de22011-01-14 22:03:49 +0100380 return i2c_legacy_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200381}
382#else /* !CONFIG_PM_SLEEP */
383#define i2c_device_pm_suspend NULL
384#define i2c_device_pm_resume NULL
385#define i2c_device_pm_freeze NULL
386#define i2c_device_pm_thaw NULL
387#define i2c_device_pm_poweroff NULL
388#define i2c_device_pm_restore NULL
389#endif /* !CONFIG_PM_SLEEP */
390
David Brownell9c1600e2007-05-01 23:26:31 +0200391static void i2c_client_dev_release(struct device *dev)
392{
393 kfree(to_i2c_client(dev));
394}
395
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100396static ssize_t
Jean Delvare4f8cf822009-09-18 22:45:46 +0200397show_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200398{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200399 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
400 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200401}
402
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100403static ssize_t
404show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200405{
406 struct i2c_client *client = to_i2c_client(dev);
Jean Delvareeb8a7902008-05-18 20:49:41 +0200407 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200408}
409
Jean Delvare4f8cf822009-09-18 22:45:46 +0200410static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Jean Delvare51298d12009-09-18 22:45:45 +0200411static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
412
413static struct attribute *i2c_dev_attrs[] = {
414 &dev_attr_name.attr,
David Brownell7b4fbc52007-05-01 23:26:30 +0200415 /* modalias helps coldplug: modprobe $(cat .../modalias) */
Jean Delvare51298d12009-09-18 22:45:45 +0200416 &dev_attr_modalias.attr,
417 NULL
418};
419
420static struct attribute_group i2c_dev_attr_group = {
421 .attrs = i2c_dev_attrs,
422};
423
424static const struct attribute_group *i2c_dev_attr_groups[] = {
425 &i2c_dev_attr_group,
426 NULL
David Brownell7b4fbc52007-05-01 23:26:30 +0200427};
428
Tobias Klauser0b2c3682010-01-16 20:43:12 +0100429static const struct dev_pm_ops i2c_device_pm_ops = {
sonic zhang54067ee2009-12-14 21:17:30 +0100430 .suspend = i2c_device_pm_suspend,
431 .resume = i2c_device_pm_resume,
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200432 .freeze = i2c_device_pm_freeze,
433 .thaw = i2c_device_pm_thaw,
434 .poweroff = i2c_device_pm_poweroff,
435 .restore = i2c_device_pm_restore,
436 SET_RUNTIME_PM_OPS(
437 pm_generic_runtime_suspend,
438 pm_generic_runtime_resume,
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200439 NULL
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200440 )
sonic zhang54067ee2009-12-14 21:17:30 +0100441};
442
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200443struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100444 .name = "i2c",
445 .match = i2c_device_match,
446 .probe = i2c_device_probe,
447 .remove = i2c_device_remove,
448 .shutdown = i2c_device_shutdown,
sonic zhang54067ee2009-12-14 21:17:30 +0100449 .pm = &i2c_device_pm_ops,
Russell Kingb864c7d2006-01-05 14:37:50 +0000450};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200451EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000452
Jean Delvare51298d12009-09-18 22:45:45 +0200453static struct device_type i2c_client_type = {
454 .groups = i2c_dev_attr_groups,
455 .uevent = i2c_device_uevent,
456 .release = i2c_client_dev_release,
457};
458
David Brownell9b766b82008-01-27 18:14:51 +0100459
460/**
461 * i2c_verify_client - return parameter as i2c_client, or NULL
462 * @dev: device, probably from some driver model iterator
463 *
464 * When traversing the driver model tree, perhaps using driver model
465 * iterators like @device_for_each_child(), you can't assume very much
466 * about the nodes you find. Use this function to avoid oopses caused
467 * by wrongly treating some non-I2C device as an i2c_client.
468 */
469struct i2c_client *i2c_verify_client(struct device *dev)
470{
Jean Delvare51298d12009-09-18 22:45:45 +0200471 return (dev->type == &i2c_client_type)
David Brownell9b766b82008-01-27 18:14:51 +0100472 ? to_i2c_client(dev)
473 : NULL;
474}
475EXPORT_SYMBOL(i2c_verify_client);
476
477
Jean Delvare3a89db52010-06-03 11:33:52 +0200478/* This is a permissive address validity check, I2C address map constraints
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300479 * are purposely not enforced, except for the general call address. */
Jean Delvare3a89db52010-06-03 11:33:52 +0200480static int i2c_check_client_addr_validity(const struct i2c_client *client)
481{
482 if (client->flags & I2C_CLIENT_TEN) {
483 /* 10-bit address, all values are valid */
484 if (client->addr > 0x3ff)
485 return -EINVAL;
486 } else {
487 /* 7-bit address, reject the general call address */
488 if (client->addr == 0x00 || client->addr > 0x7f)
489 return -EINVAL;
490 }
491 return 0;
492}
493
Jean Delvare656b8762010-06-03 11:33:53 +0200494/* And this is a strict address validity check, used when probing. If a
495 * device uses a reserved address, then it shouldn't be probed. 7-bit
496 * addressing is assumed, 10-bit address devices are rare and should be
497 * explicitly enumerated. */
498static int i2c_check_addr_validity(unsigned short addr)
499{
500 /*
501 * Reserved addresses per I2C specification:
502 * 0x00 General call address / START byte
503 * 0x01 CBUS address
504 * 0x02 Reserved for different bus format
505 * 0x03 Reserved for future purposes
506 * 0x04-0x07 Hs-mode master code
507 * 0x78-0x7b 10-bit slave addressing
508 * 0x7c-0x7f Reserved for future purposes
509 */
510 if (addr < 0x08 || addr > 0x77)
511 return -EINVAL;
512 return 0;
513}
514
Jean Delvare3b5f7942010-06-03 11:33:55 +0200515static int __i2c_check_addr_busy(struct device *dev, void *addrp)
516{
517 struct i2c_client *client = i2c_verify_client(dev);
518 int addr = *(int *)addrp;
519
520 if (client && client->addr == addr)
521 return -EBUSY;
522 return 0;
523}
524
Michael Lawnick08263742010-08-11 18:21:02 +0200525/* walk up mux tree */
526static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
527{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200528 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +0200529 int result;
530
531 result = device_for_each_child(&adapter->dev, &addr,
532 __i2c_check_addr_busy);
533
Jean Delvare97cc4d42010-10-24 18:16:57 +0200534 if (!result && parent)
535 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +0200536
537 return result;
538}
539
540/* recurse down mux tree */
541static int i2c_check_mux_children(struct device *dev, void *addrp)
542{
543 int result;
544
545 if (dev->type == &i2c_adapter_type)
546 result = device_for_each_child(dev, addrp,
547 i2c_check_mux_children);
548 else
549 result = __i2c_check_addr_busy(dev, addrp);
550
551 return result;
552}
553
Jean Delvare3b5f7942010-06-03 11:33:55 +0200554static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
555{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200556 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +0200557 int result = 0;
558
Jean Delvare97cc4d42010-10-24 18:16:57 +0200559 if (parent)
560 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +0200561
562 if (!result)
563 result = device_for_each_child(&adapter->dev, &addr,
564 i2c_check_mux_children);
565
566 return result;
Jean Delvare3b5f7942010-06-03 11:33:55 +0200567}
568
David Brownell9c1600e2007-05-01 23:26:31 +0200569/**
Jean Delvarefe61e072010-08-11 18:20:58 +0200570 * i2c_lock_adapter - Get exclusive access to an I2C bus segment
571 * @adapter: Target I2C bus segment
572 */
573void i2c_lock_adapter(struct i2c_adapter *adapter)
574{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200575 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
576
577 if (parent)
578 i2c_lock_adapter(parent);
Michael Lawnick08263742010-08-11 18:21:02 +0200579 else
580 rt_mutex_lock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200581}
582EXPORT_SYMBOL_GPL(i2c_lock_adapter);
583
584/**
585 * i2c_trylock_adapter - Try to get exclusive access to an I2C bus segment
586 * @adapter: Target I2C bus segment
587 */
588static int i2c_trylock_adapter(struct i2c_adapter *adapter)
589{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200590 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
591
592 if (parent)
593 return i2c_trylock_adapter(parent);
Michael Lawnick08263742010-08-11 18:21:02 +0200594 else
595 return rt_mutex_trylock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200596}
597
598/**
599 * i2c_unlock_adapter - Release exclusive access to an I2C bus segment
600 * @adapter: Target I2C bus segment
601 */
602void i2c_unlock_adapter(struct i2c_adapter *adapter)
603{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200604 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
605
606 if (parent)
607 i2c_unlock_adapter(parent);
Michael Lawnick08263742010-08-11 18:21:02 +0200608 else
609 rt_mutex_unlock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200610}
611EXPORT_SYMBOL_GPL(i2c_unlock_adapter);
612
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200613static void i2c_dev_set_name(struct i2c_adapter *adap,
614 struct i2c_client *client)
615{
616 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
617
618 if (adev) {
619 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
620 return;
621 }
622
623 /* For 10-bit clients, add an arbitrary offset to avoid collisions */
624 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
625 client->addr | ((client->flags & I2C_CLIENT_TEN)
626 ? 0xa000 : 0));
627}
628
Jean Delvarefe61e072010-08-11 18:20:58 +0200629/**
Jean Delvaref8a227e2009-06-19 16:58:18 +0200630 * i2c_new_device - instantiate an i2c device
David Brownell9c1600e2007-05-01 23:26:31 +0200631 * @adap: the adapter managing the device
632 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +0200633 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200634 *
Jean Delvaref8a227e2009-06-19 16:58:18 +0200635 * Create an i2c device. Binding is handled through driver model
636 * probe()/remove() methods. A driver may be bound to this device when we
637 * return from this function, or any later moment (e.g. maybe hotplugging will
638 * load the driver module). This call is not appropriate for use by mainboard
639 * initialization logic, which usually runs during an arch_initcall() long
640 * before any i2c_adapter could exist.
David Brownell9c1600e2007-05-01 23:26:31 +0200641 *
642 * This returns the new i2c client, which may be saved for later use with
643 * i2c_unregister_device(); or NULL to indicate an error.
644 */
645struct i2c_client *
646i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
647{
648 struct i2c_client *client;
649 int status;
650
651 client = kzalloc(sizeof *client, GFP_KERNEL);
652 if (!client)
653 return NULL;
654
655 client->adapter = adap;
656
657 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +0200658
Anton Vorontsov11f1f2a2008-10-22 20:21:33 +0200659 if (info->archdata)
660 client->dev.archdata = *info->archdata;
661
Marc Pignatee354252008-08-28 08:33:22 +0200662 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +0200663 client->addr = info->addr;
664 client->irq = info->irq;
665
David Brownell9c1600e2007-05-01 23:26:31 +0200666 strlcpy(client->name, info->type, sizeof(client->name));
667
Jean Delvare3a89db52010-06-03 11:33:52 +0200668 /* Check for address validity */
669 status = i2c_check_client_addr_validity(client);
670 if (status) {
671 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
672 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
673 goto out_err_silent;
674 }
675
Jean Delvaref8a227e2009-06-19 16:58:18 +0200676 /* Check for address business */
Jean Delvare3b5f7942010-06-03 11:33:55 +0200677 status = i2c_check_addr_busy(adap, client->addr);
Jean Delvaref8a227e2009-06-19 16:58:18 +0200678 if (status)
679 goto out_err;
680
681 client->dev.parent = &client->adapter->dev;
682 client->dev.bus = &i2c_bus_type;
Jean Delvare51298d12009-09-18 22:45:45 +0200683 client->dev.type = &i2c_client_type;
Grant Likelyd12d42f2010-04-13 16:12:28 -0700684 client->dev.of_node = info->of_node;
Rafael J. Wysocki7b199812013-11-11 22:41:56 +0100685 ACPI_COMPANION_SET(&client->dev, info->acpi_node.companion);
Jean Delvaref8a227e2009-06-19 16:58:18 +0200686
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200687 i2c_dev_set_name(adap, client);
Jean Delvaref8a227e2009-06-19 16:58:18 +0200688 status = device_register(&client->dev);
689 if (status)
690 goto out_err;
691
Jean Delvaref8a227e2009-06-19 16:58:18 +0200692 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
693 client->name, dev_name(&client->dev));
694
David Brownell9c1600e2007-05-01 23:26:31 +0200695 return client;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200696
697out_err:
698 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
699 "(%d)\n", client->name, client->addr, status);
Jean Delvare3a89db52010-06-03 11:33:52 +0200700out_err_silent:
Jean Delvaref8a227e2009-06-19 16:58:18 +0200701 kfree(client);
702 return NULL;
David Brownell9c1600e2007-05-01 23:26:31 +0200703}
704EXPORT_SYMBOL_GPL(i2c_new_device);
705
706
707/**
708 * i2c_unregister_device - reverse effect of i2c_new_device()
709 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +0200710 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200711 */
712void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +0200713{
David Brownella1d9e6e2007-05-01 23:26:30 +0200714 device_unregister(&client->dev);
715}
David Brownell9c1600e2007-05-01 23:26:31 +0200716EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +0200717
718
Jean Delvare60b129d2008-05-11 20:37:06 +0200719static const struct i2c_device_id dummy_id[] = {
720 { "dummy", 0 },
721 { },
722};
723
Jean Delvared2653e92008-04-29 23:11:39 +0200724static int dummy_probe(struct i2c_client *client,
725 const struct i2c_device_id *id)
726{
727 return 0;
728}
729
730static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +0100731{
732 return 0;
733}
734
735static struct i2c_driver dummy_driver = {
736 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +0200737 .probe = dummy_probe,
738 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +0200739 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +0100740};
741
742/**
743 * i2c_new_dummy - return a new i2c device bound to a dummy driver
744 * @adapter: the adapter managing the device
745 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +0100746 * Context: can sleep
747 *
748 * This returns an I2C client bound to the "dummy" driver, intended for use
749 * with devices that consume multiple addresses. Examples of such chips
750 * include various EEPROMS (like 24c04 and 24c08 models).
751 *
752 * These dummy devices have two main uses. First, most I2C and SMBus calls
753 * except i2c_transfer() need a client handle; the dummy will be that handle.
754 * And second, this prevents the specified address from being bound to a
755 * different driver.
756 *
757 * This returns the new i2c client, which should be saved for later use with
758 * i2c_unregister_device(); or NULL to indicate an error.
759 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100760struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +0100761{
762 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +0200763 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +0100764 };
765
David Brownelle9f13732008-01-27 18:14:52 +0100766 return i2c_new_device(adapter, &info);
767}
768EXPORT_SYMBOL_GPL(i2c_new_dummy);
769
David Brownellf37dd802007-02-13 22:09:00 +0100770/* ------------------------------------------------------------------------- */
771
David Brownell16ffadf2007-05-01 23:26:28 +0200772/* I2C bus adapters -- one roots each I2C or SMBUS segment */
773
Adrian Bunk83eaaed2007-10-13 23:56:30 +0200774static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
David Brownellef2c83212007-05-01 23:26:28 +0200776 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 complete(&adap->dev_released);
778}
779
Jean Delvare99cd8e22009-06-19 16:58:20 +0200780/*
Jean Delvare390946b2012-09-10 10:14:02 +0200781 * This function is only needed for mutex_lock_nested, so it is never
782 * called unless locking correctness checking is enabled. Thus we
783 * make it inline to avoid a compiler warning. That's what gcc ends up
784 * doing anyway.
785 */
786static inline unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
787{
788 unsigned int depth = 0;
789
790 while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
791 depth++;
792
793 return depth;
794}
795
796/*
Jean Delvare99cd8e22009-06-19 16:58:20 +0200797 * Let users instantiate I2C devices through sysfs. This can be used when
798 * platform initialization code doesn't contain the proper data for
799 * whatever reason. Also useful for drivers that do device detection and
800 * detection fails, either because the device uses an unexpected address,
801 * or this is a compatible device with different ID register values.
802 *
803 * Parameter checking may look overzealous, but we really don't want
804 * the user to provide incorrect parameters.
805 */
806static ssize_t
807i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
808 const char *buf, size_t count)
809{
810 struct i2c_adapter *adap = to_i2c_adapter(dev);
811 struct i2c_board_info info;
812 struct i2c_client *client;
813 char *blank, end;
814 int res;
815
Jean Delvare99cd8e22009-06-19 16:58:20 +0200816 memset(&info, 0, sizeof(struct i2c_board_info));
817
818 blank = strchr(buf, ' ');
819 if (!blank) {
820 dev_err(dev, "%s: Missing parameters\n", "new_device");
821 return -EINVAL;
822 }
823 if (blank - buf > I2C_NAME_SIZE - 1) {
824 dev_err(dev, "%s: Invalid device name\n", "new_device");
825 return -EINVAL;
826 }
827 memcpy(info.type, buf, blank - buf);
828
829 /* Parse remaining parameters, reject extra parameters */
830 res = sscanf(++blank, "%hi%c", &info.addr, &end);
831 if (res < 1) {
832 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
833 return -EINVAL;
834 }
835 if (res > 1 && end != '\n') {
836 dev_err(dev, "%s: Extra parameters\n", "new_device");
837 return -EINVAL;
838 }
839
Jean Delvare99cd8e22009-06-19 16:58:20 +0200840 client = i2c_new_device(adap, &info);
841 if (!client)
Jean Delvare3a89db52010-06-03 11:33:52 +0200842 return -EINVAL;
Jean Delvare99cd8e22009-06-19 16:58:20 +0200843
844 /* Keep track of the added device */
Jean Delvaredafc50d2010-08-11 18:21:01 +0200845 mutex_lock(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +0200846 list_add_tail(&client->detected, &adap->userspace_clients);
Jean Delvaredafc50d2010-08-11 18:21:01 +0200847 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +0200848 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
849 info.type, info.addr);
850
851 return count;
852}
853
854/*
855 * And of course let the users delete the devices they instantiated, if
856 * they got it wrong. This interface can only be used to delete devices
857 * instantiated by i2c_sysfs_new_device above. This guarantees that we
858 * don't delete devices to which some kernel code still has references.
859 *
860 * Parameter checking may look overzealous, but we really don't want
861 * the user to delete the wrong device.
862 */
863static ssize_t
864i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
865 const char *buf, size_t count)
866{
867 struct i2c_adapter *adap = to_i2c_adapter(dev);
868 struct i2c_client *client, *next;
869 unsigned short addr;
870 char end;
871 int res;
872
873 /* Parse parameters, reject extra parameters */
874 res = sscanf(buf, "%hi%c", &addr, &end);
875 if (res < 1) {
876 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
877 return -EINVAL;
878 }
879 if (res > 1 && end != '\n') {
880 dev_err(dev, "%s: Extra parameters\n", "delete_device");
881 return -EINVAL;
882 }
883
884 /* Make sure the device was added through sysfs */
885 res = -ENOENT;
Jean Delvare390946b2012-09-10 10:14:02 +0200886 mutex_lock_nested(&adap->userspace_clients_lock,
887 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +0200888 list_for_each_entry_safe(client, next, &adap->userspace_clients,
889 detected) {
890 if (client->addr == addr) {
Jean Delvare99cd8e22009-06-19 16:58:20 +0200891 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
892 "delete_device", client->name, client->addr);
893
894 list_del(&client->detected);
895 i2c_unregister_device(client);
896 res = count;
897 break;
898 }
899 }
Jean Delvaredafc50d2010-08-11 18:21:01 +0200900 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +0200901
902 if (res < 0)
903 dev_err(dev, "%s: Can't find device in list\n",
904 "delete_device");
905 return res;
906}
907
Jean Delvare4f8cf822009-09-18 22:45:46 +0200908static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
Alexander Sverdline9b526f2013-05-17 14:56:35 +0200909static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
910 i2c_sysfs_delete_device);
Jean Delvare4f8cf822009-09-18 22:45:46 +0200911
912static struct attribute *i2c_adapter_attrs[] = {
913 &dev_attr_name.attr,
914 &dev_attr_new_device.attr,
915 &dev_attr_delete_device.attr,
916 NULL
David Brownell16ffadf2007-05-01 23:26:28 +0200917};
918
Jean Delvare4f8cf822009-09-18 22:45:46 +0200919static struct attribute_group i2c_adapter_attr_group = {
920 .attrs = i2c_adapter_attrs,
921};
922
923static const struct attribute_group *i2c_adapter_attr_groups[] = {
924 &i2c_adapter_attr_group,
925 NULL
926};
927
Michael Lawnick08263742010-08-11 18:21:02 +0200928struct device_type i2c_adapter_type = {
Jean Delvare4f8cf822009-09-18 22:45:46 +0200929 .groups = i2c_adapter_attr_groups,
930 .release = i2c_adapter_dev_release,
David Brownell16ffadf2007-05-01 23:26:28 +0200931};
Michael Lawnick08263742010-08-11 18:21:02 +0200932EXPORT_SYMBOL_GPL(i2c_adapter_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Stephen Warren643dd092012-04-17 12:43:33 -0600934/**
935 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
936 * @dev: device, probably from some driver model iterator
937 *
938 * When traversing the driver model tree, perhaps using driver model
939 * iterators like @device_for_each_child(), you can't assume very much
940 * about the nodes you find. Use this function to avoid oopses caused
941 * by wrongly treating some non-I2C device as an i2c_adapter.
942 */
943struct i2c_adapter *i2c_verify_adapter(struct device *dev)
944{
945 return (dev->type == &i2c_adapter_type)
946 ? to_i2c_adapter(dev)
947 : NULL;
948}
949EXPORT_SYMBOL(i2c_verify_adapter);
950
Jean Delvare2bb50952009-09-18 22:45:46 +0200951#ifdef CONFIG_I2C_COMPAT
952static struct class_compat *i2c_adapter_compat_class;
953#endif
954
David Brownell9c1600e2007-05-01 23:26:31 +0200955static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
956{
957 struct i2c_devinfo *devinfo;
958
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +0200959 down_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +0200960 list_for_each_entry(devinfo, &__i2c_board_list, list) {
961 if (devinfo->busnum == adapter->nr
962 && !i2c_new_device(adapter,
963 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100964 dev_err(&adapter->dev,
965 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +0200966 devinfo->board_info.addr);
967 }
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +0200968 up_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +0200969}
970
Wolfram Sang687b81d2013-07-11 12:56:15 +0100971/* OF support code */
972
973#if IS_ENABLED(CONFIG_OF)
974static void of_i2c_register_devices(struct i2c_adapter *adap)
975{
976 void *result;
977 struct device_node *node;
978
979 /* Only register child devices if the adapter has a node pointer set */
980 if (!adap->dev.of_node)
981 return;
982
983 dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
984
985 for_each_available_child_of_node(adap->dev.of_node, node) {
986 struct i2c_board_info info = {};
987 struct dev_archdata dev_ad = {};
988 const __be32 *addr;
989 int len;
990
991 dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
992
993 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
994 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
995 node->full_name);
996 continue;
997 }
998
999 addr = of_get_property(node, "reg", &len);
1000 if (!addr || (len < sizeof(int))) {
1001 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
1002 node->full_name);
1003 continue;
1004 }
1005
1006 info.addr = be32_to_cpup(addr);
1007 if (info.addr > (1 << 10) - 1) {
1008 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
1009 info.addr, node->full_name);
1010 continue;
1011 }
1012
1013 info.irq = irq_of_parse_and_map(node, 0);
1014 info.of_node = of_node_get(node);
1015 info.archdata = &dev_ad;
1016
1017 if (of_get_property(node, "wakeup-source", NULL))
1018 info.flags |= I2C_CLIENT_WAKE;
1019
1020 request_module("%s%s", I2C_MODULE_PREFIX, info.type);
1021
1022 result = i2c_new_device(adap, &info);
1023 if (result == NULL) {
1024 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
1025 node->full_name);
1026 of_node_put(node);
1027 irq_dispose_mapping(info.irq);
1028 continue;
1029 }
1030 }
1031}
1032
1033static int of_dev_node_match(struct device *dev, void *data)
1034{
1035 return dev->of_node == data;
1036}
1037
1038/* must call put_device() when done with returned i2c_client device */
1039struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
1040{
1041 struct device *dev;
1042
1043 dev = bus_find_device(&i2c_bus_type, NULL, node,
1044 of_dev_node_match);
1045 if (!dev)
1046 return NULL;
1047
1048 return i2c_verify_client(dev);
1049}
1050EXPORT_SYMBOL(of_find_i2c_device_by_node);
1051
1052/* must call put_device() when done with returned i2c_adapter device */
1053struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
1054{
1055 struct device *dev;
1056
1057 dev = bus_find_device(&i2c_bus_type, NULL, node,
1058 of_dev_node_match);
1059 if (!dev)
1060 return NULL;
1061
1062 return i2c_verify_adapter(dev);
1063}
1064EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
1065#else
1066static void of_i2c_register_devices(struct i2c_adapter *adap) { }
1067#endif /* CONFIG_OF */
1068
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001069/* ACPI support code */
1070
1071#if IS_ENABLED(CONFIG_ACPI)
1072static int acpi_i2c_add_resource(struct acpi_resource *ares, void *data)
1073{
1074 struct i2c_board_info *info = data;
1075
1076 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1077 struct acpi_resource_i2c_serialbus *sb;
1078
1079 sb = &ares->data.i2c_serial_bus;
1080 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_I2C) {
1081 info->addr = sb->slave_address;
1082 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
1083 info->flags |= I2C_CLIENT_TEN;
1084 }
1085 } else if (info->irq < 0) {
1086 struct resource r;
1087
1088 if (acpi_dev_resource_interrupt(ares, 0, &r))
1089 info->irq = r.start;
1090 }
1091
1092 /* Tell the ACPI core to skip this resource */
1093 return 1;
1094}
1095
1096static acpi_status acpi_i2c_add_device(acpi_handle handle, u32 level,
1097 void *data, void **return_value)
1098{
1099 struct i2c_adapter *adapter = data;
1100 struct list_head resource_list;
1101 struct i2c_board_info info;
1102 struct acpi_device *adev;
1103 int ret;
1104
1105 if (acpi_bus_get_device(handle, &adev))
1106 return AE_OK;
1107 if (acpi_bus_get_status(adev) || !adev->status.present)
1108 return AE_OK;
1109
1110 memset(&info, 0, sizeof(info));
Rafael J. Wysocki7b199812013-11-11 22:41:56 +01001111 info.acpi_node.companion = adev;
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001112 info.irq = -1;
1113
1114 INIT_LIST_HEAD(&resource_list);
1115 ret = acpi_dev_get_resources(adev, &resource_list,
1116 acpi_i2c_add_resource, &info);
1117 acpi_dev_free_resource_list(&resource_list);
1118
1119 if (ret < 0 || !info.addr)
1120 return AE_OK;
1121
Lv Zhenga76e9bd2013-10-10 13:28:47 +03001122 adev->power.flags.ignore_parent = true;
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001123 strlcpy(info.type, dev_name(&adev->dev), sizeof(info.type));
1124 if (!i2c_new_device(adapter, &info)) {
Lv Zhenga76e9bd2013-10-10 13:28:47 +03001125 adev->power.flags.ignore_parent = false;
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001126 dev_err(&adapter->dev,
1127 "failed to add I2C device %s from ACPI\n",
1128 dev_name(&adev->dev));
1129 }
1130
1131 return AE_OK;
1132}
1133
1134/**
1135 * acpi_i2c_register_devices - enumerate I2C slave devices behind adapter
1136 * @adap: pointer to adapter
1137 *
1138 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
1139 * namespace. When a device is found it will be added to the Linux device
1140 * model and bound to the corresponding ACPI handle.
1141 */
1142static void acpi_i2c_register_devices(struct i2c_adapter *adap)
1143{
1144 acpi_handle handle;
1145 acpi_status status;
1146
Jean Delvare47b6e4772013-10-10 08:04:06 +02001147 if (!adap->dev.parent)
1148 return;
1149
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001150 handle = ACPI_HANDLE(adap->dev.parent);
1151 if (!handle)
1152 return;
1153
1154 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1155 acpi_i2c_add_device, NULL,
1156 adap, NULL);
1157 if (ACPI_FAILURE(status))
1158 dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
1159}
1160#else
1161static inline void acpi_i2c_register_devices(struct i2c_adapter *adap) {}
1162#endif /* CONFIG_ACPI */
1163
Jean Delvare69b00892009-12-06 17:06:27 +01001164static int i2c_do_add_adapter(struct i2c_driver *driver,
1165 struct i2c_adapter *adap)
Jean Delvare026526f2008-01-27 18:14:49 +01001166{
Jean Delvare4735c982008-07-14 22:38:36 +02001167 /* Detect supported devices on that bus, and instantiate them */
1168 i2c_detect(adap, driver);
1169
1170 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +01001171 if (driver->attach_adapter) {
Jean Delvarea920ff42011-04-17 10:20:19 +02001172 dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
1173 driver->driver.name);
Jean Delvarefe6fc252011-03-20 14:50:53 +01001174 dev_warn(&adap->dev, "Please use another way to instantiate "
1175 "your i2c_client\n");
Jean Delvare026526f2008-01-27 18:14:49 +01001176 /* We ignore the return code; if it fails, too bad */
1177 driver->attach_adapter(adap);
1178 }
1179 return 0;
1180}
1181
Jean Delvare69b00892009-12-06 17:06:27 +01001182static int __process_new_adapter(struct device_driver *d, void *data)
1183{
1184 return i2c_do_add_adapter(to_i2c_driver(d), data);
1185}
1186
David Brownell6e13e642007-05-01 23:26:31 +02001187static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Jean Delvared6703282010-08-11 18:20:59 +02001189 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
David Brownell1d0b19c2008-10-14 17:30:05 +02001191 /* Can't register until after driver model init */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001192 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
1193 res = -EAGAIN;
1194 goto out_list;
1195 }
David Brownell1d0b19c2008-10-14 17:30:05 +02001196
Jean Delvare2236baa2010-11-15 22:40:38 +01001197 /* Sanity checks */
1198 if (unlikely(adap->name[0] == '\0')) {
1199 pr_err("i2c-core: Attempt to register an adapter with "
1200 "no name!\n");
1201 return -EINVAL;
1202 }
1203 if (unlikely(!adap->algo)) {
1204 pr_err("i2c-core: Attempt to register adapter '%s' with "
1205 "no algo!\n", adap->name);
1206 return -EINVAL;
1207 }
1208
Mika Kuoppala194684e2009-12-06 17:06:22 +01001209 rt_mutex_init(&adap->bus_lock);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001210 mutex_init(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001211 INIT_LIST_HEAD(&adap->userspace_clients);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Jean Delvare8fcfef62009-03-28 21:34:43 +01001213 /* Set default timeout to 1 second if not already set */
1214 if (adap->timeout == 0)
1215 adap->timeout = HZ;
1216
Kay Sievers27d9c182009-01-07 14:29:16 +01001217 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001218 adap->dev.bus = &i2c_bus_type;
1219 adap->dev.type = &i2c_adapter_type;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001220 res = device_register(&adap->dev);
1221 if (res)
1222 goto out_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Jean Delvareb6d7b3d2005-07-31 19:02:53 +02001224 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1225
Jean Delvare2bb50952009-09-18 22:45:46 +02001226#ifdef CONFIG_I2C_COMPAT
1227 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1228 adap->dev.parent);
1229 if (res)
1230 dev_warn(&adap->dev,
1231 "Failed to create compatibility class link\n");
1232#endif
1233
Viresh Kumar5f9296b2012-02-28 18:26:31 +05301234 /* bus recovery specific initialization */
1235 if (adap->bus_recovery_info) {
1236 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
1237
1238 if (!bri->recover_bus) {
1239 dev_err(&adap->dev, "No recover_bus() found, not using recovery\n");
1240 adap->bus_recovery_info = NULL;
1241 goto exit_recovery;
1242 }
1243
1244 /* Generic GPIO recovery */
1245 if (bri->recover_bus == i2c_generic_gpio_recovery) {
1246 if (!gpio_is_valid(bri->scl_gpio)) {
1247 dev_err(&adap->dev, "Invalid SCL gpio, not using recovery\n");
1248 adap->bus_recovery_info = NULL;
1249 goto exit_recovery;
1250 }
1251
1252 if (gpio_is_valid(bri->sda_gpio))
1253 bri->get_sda = get_sda_gpio_value;
1254 else
1255 bri->get_sda = NULL;
1256
1257 bri->get_scl = get_scl_gpio_value;
1258 bri->set_scl = set_scl_gpio_value;
1259 } else if (!bri->set_scl || !bri->get_scl) {
1260 /* Generic SCL recovery */
1261 dev_err(&adap->dev, "No {get|set}_gpio() found, not using recovery\n");
1262 adap->bus_recovery_info = NULL;
1263 }
1264 }
1265
1266exit_recovery:
Jean Delvare729d6dd2009-06-19 16:58:18 +02001267 /* create pre-declared device nodes */
Wolfram Sang687b81d2013-07-11 12:56:15 +01001268 of_i2c_register_devices(adap);
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001269 acpi_i2c_register_devices(adap);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001270
David Brownell6e13e642007-05-01 23:26:31 +02001271 if (adap->nr < __i2c_first_dynamic_bus_num)
1272 i2c_scan_static_board_info(adap);
1273
Jean Delvare4735c982008-07-14 22:38:36 +02001274 /* Notify drivers */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001275 mutex_lock(&core_lock);
Jean Delvared6703282010-08-11 18:20:59 +02001276 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
Jean Delvarecaada322008-01-27 18:14:49 +01001277 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001278
1279 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001280
Jean Delvareb119c6c2006-08-15 18:26:30 +02001281out_list:
Jean Delvare35fc37f2009-06-19 16:58:19 +02001282 mutex_lock(&core_lock);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001283 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001284 mutex_unlock(&core_lock);
1285 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
David Brownell6e13e642007-05-01 23:26:31 +02001288/**
Doug Andersonee5c2742013-03-01 08:57:31 -08001289 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1290 * @adap: the adapter to register (with adap->nr initialized)
1291 * Context: can sleep
1292 *
1293 * See i2c_add_numbered_adapter() for details.
1294 */
1295static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1296{
1297 int id;
1298
1299 mutex_lock(&core_lock);
1300 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1,
1301 GFP_KERNEL);
1302 mutex_unlock(&core_lock);
1303 if (id < 0)
1304 return id == -ENOSPC ? -EBUSY : id;
1305
1306 return i2c_register_adapter(adap);
1307}
1308
1309/**
David Brownell6e13e642007-05-01 23:26:31 +02001310 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1311 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +02001312 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001313 *
1314 * This routine is used to declare an I2C adapter when its bus number
Doug Andersonee5c2742013-03-01 08:57:31 -08001315 * doesn't matter or when its bus number is specified by an dt alias.
1316 * Examples of bases when the bus number doesn't matter: I2C adapters
1317 * dynamically added by USB links or PCI plugin cards.
David Brownell6e13e642007-05-01 23:26:31 +02001318 *
1319 * When this returns zero, a new bus number was allocated and stored
1320 * in adap->nr, and the specified adapter became available for clients.
1321 * Otherwise, a negative errno value is returned.
1322 */
1323int i2c_add_adapter(struct i2c_adapter *adapter)
1324{
Doug Andersonee5c2742013-03-01 08:57:31 -08001325 struct device *dev = &adapter->dev;
Tejun Heo4ae42b02013-02-27 17:04:15 -08001326 int id;
David Brownell6e13e642007-05-01 23:26:31 +02001327
Doug Andersonee5c2742013-03-01 08:57:31 -08001328 if (dev->of_node) {
1329 id = of_alias_get_id(dev->of_node, "i2c");
1330 if (id >= 0) {
1331 adapter->nr = id;
1332 return __i2c_add_numbered_adapter(adapter);
1333 }
1334 }
1335
Jean Delvarecaada322008-01-27 18:14:49 +01001336 mutex_lock(&core_lock);
Tejun Heo4ae42b02013-02-27 17:04:15 -08001337 id = idr_alloc(&i2c_adapter_idr, adapter,
1338 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
Jean Delvarecaada322008-01-27 18:14:49 +01001339 mutex_unlock(&core_lock);
Tejun Heo4ae42b02013-02-27 17:04:15 -08001340 if (id < 0)
1341 return id;
David Brownell6e13e642007-05-01 23:26:31 +02001342
1343 adapter->nr = id;
Tejun Heo4ae42b02013-02-27 17:04:15 -08001344
David Brownell6e13e642007-05-01 23:26:31 +02001345 return i2c_register_adapter(adapter);
1346}
1347EXPORT_SYMBOL(i2c_add_adapter);
1348
1349/**
1350 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1351 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +02001352 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001353 *
1354 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +01001355 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1356 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +02001357 * is used to properly configure I2C devices.
1358 *
Grant Likely488bf312011-07-25 17:49:43 +02001359 * If the requested bus number is set to -1, then this function will behave
1360 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1361 *
David Brownell6e13e642007-05-01 23:26:31 +02001362 * If no devices have pre-been declared for this bus, then be sure to
1363 * register the adapter before any dynamically allocated ones. Otherwise
1364 * the required bus ID may not be available.
1365 *
1366 * When this returns zero, the specified adapter became available for
1367 * clients using the bus number provided in adap->nr. Also, the table
1368 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1369 * and the appropriate driver model device nodes are created. Otherwise, a
1370 * negative errno value is returned.
1371 */
1372int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1373{
Grant Likely488bf312011-07-25 17:49:43 +02001374 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1375 return i2c_add_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001376
Doug Andersonee5c2742013-03-01 08:57:31 -08001377 return __i2c_add_numbered_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001378}
1379EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1380
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001381static void i2c_do_del_adapter(struct i2c_driver *driver,
Jean Delvare69b00892009-12-06 17:06:27 +01001382 struct i2c_adapter *adapter)
Jean Delvare026526f2008-01-27 18:14:49 +01001383{
Jean Delvare4735c982008-07-14 22:38:36 +02001384 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +01001385
Jean Delvareacec2112009-03-28 21:34:40 +01001386 /* Remove the devices we created ourselves as the result of hardware
1387 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +02001388 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1389 if (client->adapter == adapter) {
1390 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1391 client->name, client->addr);
1392 list_del(&client->detected);
1393 i2c_unregister_device(client);
1394 }
1395 }
Jean Delvare026526f2008-01-27 18:14:49 +01001396}
1397
Jean Delvaree549c2b2009-06-19 16:58:19 +02001398static int __unregister_client(struct device *dev, void *dummy)
1399{
1400 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvare5219bf82011-01-14 22:03:49 +01001401 if (client && strcmp(client->name, "dummy"))
1402 i2c_unregister_device(client);
1403 return 0;
1404}
1405
1406static int __unregister_dummy(struct device *dev, void *dummy)
1407{
1408 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvaree549c2b2009-06-19 16:58:19 +02001409 if (client)
1410 i2c_unregister_device(client);
1411 return 0;
1412}
1413
Jean Delvare69b00892009-12-06 17:06:27 +01001414static int __process_removed_adapter(struct device_driver *d, void *data)
1415{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001416 i2c_do_del_adapter(to_i2c_driver(d), data);
1417 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001418}
1419
David Brownelld64f73b2007-07-12 14:12:28 +02001420/**
1421 * i2c_del_adapter - unregister I2C adapter
1422 * @adap: the adapter being unregistered
1423 * Context: can sleep
1424 *
1425 * This unregisters an I2C adapter which was previously registered
1426 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1427 */
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001428void i2c_del_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Jean Delvare35fc37f2009-06-19 16:58:19 +02001430 struct i2c_adapter *found;
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001431 struct i2c_client *client, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 /* First make sure that this adapter was ever added */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001434 mutex_lock(&core_lock);
1435 found = idr_find(&i2c_adapter_idr, adap->nr);
1436 mutex_unlock(&core_lock);
1437 if (found != adap) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +02001438 pr_debug("i2c-core: attempting to delete unregistered "
1439 "adapter [%s]\n", adap->name);
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001440 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442
Jean Delvare026526f2008-01-27 18:14:49 +01001443 /* Tell drivers about this removal */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001444 mutex_lock(&core_lock);
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001445 bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +01001446 __process_removed_adapter);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001447 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001449 /* Remove devices instantiated from sysfs */
Jean Delvare390946b2012-09-10 10:14:02 +02001450 mutex_lock_nested(&adap->userspace_clients_lock,
1451 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02001452 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1453 detected) {
1454 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1455 client->addr);
1456 list_del(&client->detected);
1457 i2c_unregister_device(client);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001458 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02001459 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001460
Jean Delvaree549c2b2009-06-19 16:58:19 +02001461 /* Detach any active clients. This can't fail, thus we do not
Jean Delvare5219bf82011-01-14 22:03:49 +01001462 * check the returned value. This is a two-pass process, because
1463 * we can't remove the dummy devices during the first pass: they
1464 * could have been instantiated by real devices wishing to clean
1465 * them up properly, so we give them a chance to do that first. */
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001466 device_for_each_child(&adap->dev, NULL, __unregister_client);
1467 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Jean Delvare2bb50952009-09-18 22:45:46 +02001469#ifdef CONFIG_I2C_COMPAT
1470 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
1471 adap->dev.parent);
1472#endif
1473
Thadeu Lima de Souza Cascardoc5567522010-01-16 20:43:13 +01001474 /* device name is gone after device_unregister */
1475 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 /* clean up the sysfs representation */
1478 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 /* wait for sysfs to drop all references */
1482 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
David Brownell6e13e642007-05-01 23:26:31 +02001484 /* free bus id */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001485 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001487 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Jean Delvarebd4bc3db2008-07-16 19:30:05 +02001489 /* Clear the device structure in case this adapter is ever going to be
1490 added again */
1491 memset(&adap->dev, 0, sizeof(adap->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
David Brownellc0564602007-05-01 23:26:31 +02001493EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
David Brownell7b4fbc52007-05-01 23:26:30 +02001495/* ------------------------------------------------------------------------- */
1496
Jean Delvare7ae31482011-03-20 14:50:52 +01001497int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))
1498{
1499 int res;
1500
1501 mutex_lock(&core_lock);
1502 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
1503 mutex_unlock(&core_lock);
1504
1505 return res;
1506}
1507EXPORT_SYMBOL_GPL(i2c_for_each_dev);
1508
Jean Delvare69b00892009-12-06 17:06:27 +01001509static int __process_new_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001510{
Jean Delvare4f8cf822009-09-18 22:45:46 +02001511 if (dev->type != &i2c_adapter_type)
1512 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001513 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +02001514}
1515
David Brownell7b4fbc52007-05-01 23:26:30 +02001516/*
1517 * An i2c_driver is used with one or more i2c_client (device) nodes to access
Jean Delvare729d6dd2009-06-19 16:58:18 +02001518 * i2c slave chips, on a bus instance associated with some i2c_adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 */
1520
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001521int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Jean Delvare7eebcb72006-02-05 23:28:21 +01001523 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
David Brownell1d0b19c2008-10-14 17:30:05 +02001525 /* Can't register until after driver model init */
1526 if (unlikely(WARN_ON(!i2c_bus_type.p)))
1527 return -EAGAIN;
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001530 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Jean Delvare729d6dd2009-06-19 16:58:18 +02001533 /* When registration returns, the driver core
David Brownell6e13e642007-05-01 23:26:31 +02001534 * will have called probe() for all matching-but-unbound devices.
1535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 res = driver_register(&driver->driver);
1537 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +01001538 return res;
David Brownell438d6c22006-12-10 21:21:31 +01001539
Mark Brownf4e8db32011-01-14 22:03:50 +01001540 /* Drivers should switch to dev_pm_ops instead. */
1541 if (driver->suspend)
1542 pr_warn("i2c-core: driver [%s] using legacy suspend method\n",
1543 driver->driver.name);
1544 if (driver->resume)
1545 pr_warn("i2c-core: driver [%s] using legacy resume method\n",
1546 driver->driver.name);
1547
Laurent Riffard35d8b2e2005-11-26 20:34:05 +01001548 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Jean Delvare4735c982008-07-14 22:38:36 +02001550 INIT_LIST_HEAD(&driver->clients);
1551 /* Walk the adapters that are already present */
Jean Delvare7ae31482011-03-20 14:50:52 +01001552 i2c_for_each_dev(driver, __process_new_driver);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001553
Jean Delvare7eebcb72006-02-05 23:28:21 +01001554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001556EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Jean Delvare69b00892009-12-06 17:06:27 +01001558static int __process_removed_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001559{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001560 if (dev->type == &i2c_adapter_type)
1561 i2c_do_del_adapter(data, to_i2c_adapter(dev));
1562 return 0;
Dave Young7f101a92008-07-14 22:38:19 +02001563}
1564
David Brownella1d9e6e2007-05-01 23:26:30 +02001565/**
1566 * i2c_del_driver - unregister I2C driver
1567 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +02001568 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +02001569 */
Jean Delvareb3e82092007-05-01 23:26:32 +02001570void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Jean Delvare7ae31482011-03-20 14:50:52 +01001572 i2c_for_each_dev(driver, __process_removed_driver);
David Brownella1d9e6e2007-05-01 23:26:30 +02001573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 driver_unregister(&driver->driver);
Laurent Riffard35d8b2e2005-11-26 20:34:05 +01001575 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
David Brownellc0564602007-05-01 23:26:31 +02001577EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
David Brownell7b4fbc52007-05-01 23:26:30 +02001579/* ------------------------------------------------------------------------- */
1580
Jean Delvaree48d3312008-01-27 18:14:48 +01001581/**
1582 * i2c_use_client - increments the reference count of the i2c client structure
1583 * @client: the client being referenced
1584 *
1585 * Each live reference to a client should be refcounted. The driver model does
1586 * that automatically as part of driver binding, so that most drivers don't
1587 * need to do this explicitly: they hold a reference until they're unbound
1588 * from the device.
1589 *
1590 * A pointer to the client with the incremented reference counter is returned.
1591 */
1592struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
David Brownell6ea438e2008-07-14 22:38:24 +02001594 if (client && get_device(&client->dev))
1595 return client;
1596 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
David Brownellc0564602007-05-01 23:26:31 +02001598EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Jean Delvaree48d3312008-01-27 18:14:48 +01001600/**
1601 * i2c_release_client - release a use of the i2c client structure
1602 * @client: the client being no longer referenced
1603 *
1604 * Must be called when a user of a client is finished with it.
1605 */
1606void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
David Brownell6ea438e2008-07-14 22:38:24 +02001608 if (client)
1609 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
David Brownellc0564602007-05-01 23:26:31 +02001611EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
David Brownell9b766b82008-01-27 18:14:51 +01001613struct i2c_cmd_arg {
1614 unsigned cmd;
1615 void *arg;
1616};
1617
1618static int i2c_cmd(struct device *dev, void *_arg)
1619{
1620 struct i2c_client *client = i2c_verify_client(dev);
1621 struct i2c_cmd_arg *arg = _arg;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02001622 struct i2c_driver *driver;
David Brownell9b766b82008-01-27 18:14:51 +01001623
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02001624 if (!client || !client->dev.driver)
1625 return 0;
1626
1627 driver = to_i2c_driver(client->dev.driver);
1628 if (driver->command)
1629 driver->command(client, arg->cmd, arg->arg);
David Brownell9b766b82008-01-27 18:14:51 +01001630 return 0;
1631}
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1634{
David Brownell9b766b82008-01-27 18:14:51 +01001635 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
David Brownell9b766b82008-01-27 18:14:51 +01001637 cmd_arg.cmd = cmd;
1638 cmd_arg.arg = arg;
1639 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
David Brownellc0564602007-05-01 23:26:31 +02001641EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643static int __init i2c_init(void)
1644{
1645 int retval;
1646
1647 retval = bus_register(&i2c_bus_type);
1648 if (retval)
1649 return retval;
Jean Delvare2bb50952009-09-18 22:45:46 +02001650#ifdef CONFIG_I2C_COMPAT
1651 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1652 if (!i2c_adapter_compat_class) {
1653 retval = -ENOMEM;
1654 goto bus_err;
1655 }
1656#endif
David Brownelle9f13732008-01-27 18:14:52 +01001657 retval = i2c_add_driver(&dummy_driver);
1658 if (retval)
Jean Delvare2bb50952009-09-18 22:45:46 +02001659 goto class_err;
David Brownelle9f13732008-01-27 18:14:52 +01001660 return 0;
1661
Jean Delvare2bb50952009-09-18 22:45:46 +02001662class_err:
1663#ifdef CONFIG_I2C_COMPAT
1664 class_compat_unregister(i2c_adapter_compat_class);
David Brownelle9f13732008-01-27 18:14:52 +01001665bus_err:
Jean Delvare2bb50952009-09-18 22:45:46 +02001666#endif
David Brownelle9f13732008-01-27 18:14:52 +01001667 bus_unregister(&i2c_bus_type);
1668 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670
1671static void __exit i2c_exit(void)
1672{
David Brownelle9f13732008-01-27 18:14:52 +01001673 i2c_del_driver(&dummy_driver);
Jean Delvare2bb50952009-09-18 22:45:46 +02001674#ifdef CONFIG_I2C_COMPAT
1675 class_compat_unregister(i2c_adapter_compat_class);
1676#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 bus_unregister(&i2c_bus_type);
1678}
1679
David Brownella10f9e72008-10-14 17:30:06 +02001680/* We must initialize early, because some subsystems register i2c drivers
1681 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1682 */
1683postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684module_exit(i2c_exit);
1685
1686/* ----------------------------------------------------
1687 * the functional interface to the i2c busses.
1688 * ----------------------------------------------------
1689 */
1690
David Brownella1cdeda2008-07-14 22:38:24 +02001691/**
Jean Delvareb37d2a32012-06-29 07:47:19 -03001692 * __i2c_transfer - unlocked flavor of i2c_transfer
1693 * @adap: Handle to I2C bus
1694 * @msgs: One or more messages to execute before STOP is issued to
1695 * terminate the operation; each message begins with a START.
1696 * @num: Number of messages to be executed.
1697 *
1698 * Returns negative errno, else the number of messages executed.
1699 *
1700 * Adapter lock must be held when calling this function. No debug logging
1701 * takes place. adap->algo->master_xfer existence isn't checked.
1702 */
1703int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1704{
1705 unsigned long orig_jiffies;
1706 int ret, try;
1707
1708 /* Retry automatically on arbitration loss */
1709 orig_jiffies = jiffies;
1710 for (ret = 0, try = 0; try <= adap->retries; try++) {
1711 ret = adap->algo->master_xfer(adap, msgs, num);
1712 if (ret != -EAGAIN)
1713 break;
1714 if (time_after(jiffies, orig_jiffies + adap->timeout))
1715 break;
1716 }
1717
1718 return ret;
1719}
1720EXPORT_SYMBOL(__i2c_transfer);
1721
1722/**
David Brownella1cdeda2008-07-14 22:38:24 +02001723 * i2c_transfer - execute a single or combined I2C message
1724 * @adap: Handle to I2C bus
1725 * @msgs: One or more messages to execute before STOP is issued to
1726 * terminate the operation; each message begins with a START.
1727 * @num: Number of messages to be executed.
1728 *
1729 * Returns negative errno, else the number of messages executed.
1730 *
1731 * Note that there is no requirement that each message be sent to
1732 * the same slave address, although that is the most common model.
1733 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001734int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Jean Delvareb37d2a32012-06-29 07:47:19 -03001736 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
David Brownella1cdeda2008-07-14 22:38:24 +02001738 /* REVISIT the fault reporting model here is weak:
1739 *
1740 * - When we get an error after receiving N bytes from a slave,
1741 * there is no way to report "N".
1742 *
1743 * - When we get a NAK after transmitting N bytes to a slave,
1744 * there is no way to report "N" ... or to let the master
1745 * continue executing the rest of this combined message, if
1746 * that's the appropriate response.
1747 *
1748 * - When for example "num" is two and we successfully complete
1749 * the first message but get an error part way through the
1750 * second, it's unclear whether that should be reported as
1751 * one (discarding status on the second message) or errno
1752 * (discarding status on the first one).
1753 */
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (adap->algo->master_xfer) {
1756#ifdef DEBUG
1757 for (ret = 0; ret < num; ret++) {
1758 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02001759 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
1760 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
1761 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763#endif
1764
Mike Rapoportcea443a82008-01-27 18:14:50 +01001765 if (in_atomic() || irqs_disabled()) {
Jean Delvarefe61e072010-08-11 18:20:58 +02001766 ret = i2c_trylock_adapter(adap);
Mike Rapoportcea443a82008-01-27 18:14:50 +01001767 if (!ret)
1768 /* I2C activity is ongoing. */
1769 return -EAGAIN;
1770 } else {
Jean Delvarefe61e072010-08-11 18:20:58 +02001771 i2c_lock_adapter(adap);
Mike Rapoportcea443a82008-01-27 18:14:50 +01001772 }
1773
Jean Delvareb37d2a32012-06-29 07:47:19 -03001774 ret = __i2c_transfer(adap, msgs, num);
Jean Delvarefe61e072010-08-11 18:20:58 +02001775 i2c_unlock_adapter(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 return ret;
1778 } else {
1779 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02001780 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
1782}
David Brownellc0564602007-05-01 23:26:31 +02001783EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
David Brownella1cdeda2008-07-14 22:38:24 +02001785/**
1786 * i2c_master_send - issue a single I2C message in master transmit mode
1787 * @client: Handle to slave device
1788 * @buf: Data that will be written to the slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01001789 * @count: How many bytes to write, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02001790 *
1791 * Returns negative errno, or else the number of bytes written.
1792 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01001793int i2c_master_send(const struct i2c_client *client, const char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
1795 int ret;
Farid Hammane7225acf2010-05-21 18:40:58 +02001796 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 struct i2c_msg msg;
1798
Jean Delvare815f55f2005-05-07 22:58:46 +02001799 msg.addr = client->addr;
1800 msg.flags = client->flags & I2C_M_TEN;
1801 msg.len = count;
1802 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01001803
Jean Delvare815f55f2005-05-07 22:58:46 +02001804 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Wolfram Sang834aa6f2012-03-15 18:11:05 +01001806 /*
1807 * If everything went ok (i.e. 1 msg transmitted), return #bytes
1808 * transmitted, else error code.
1809 */
Jean Delvare815f55f2005-05-07 22:58:46 +02001810 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
David Brownellc0564602007-05-01 23:26:31 +02001812EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
David Brownella1cdeda2008-07-14 22:38:24 +02001814/**
1815 * i2c_master_recv - issue a single I2C message in master receive mode
1816 * @client: Handle to slave device
1817 * @buf: Where to store data read from slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01001818 * @count: How many bytes to read, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02001819 *
1820 * Returns negative errno, or else the number of bytes read.
1821 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01001822int i2c_master_recv(const struct i2c_client *client, char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Farid Hammane7225acf2010-05-21 18:40:58 +02001824 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 struct i2c_msg msg;
1826 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Jean Delvare815f55f2005-05-07 22:58:46 +02001828 msg.addr = client->addr;
1829 msg.flags = client->flags & I2C_M_TEN;
1830 msg.flags |= I2C_M_RD;
1831 msg.len = count;
1832 msg.buf = buf;
1833
1834 ret = i2c_transfer(adap, &msg, 1);
1835
Wolfram Sang834aa6f2012-03-15 18:11:05 +01001836 /*
1837 * If everything went ok (i.e. 1 msg received), return #bytes received,
1838 * else error code.
1839 */
Jean Delvare815f55f2005-05-07 22:58:46 +02001840 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
David Brownellc0564602007-05-01 23:26:31 +02001842EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844/* ----------------------------------------------------
1845 * the i2c address scanning function
1846 * Will not work for 10-bit addresses!
1847 * ----------------------------------------------------
1848 */
Jean Delvare9fc6adf2005-07-31 21:20:43 +02001849
Jean Delvare63e4e802010-06-03 11:33:51 +02001850/*
1851 * Legacy default probe function, mostly relevant for SMBus. The default
1852 * probe method is a quick write, but it is known to corrupt the 24RF08
1853 * EEPROMs due to a state machine bug, and could also irreversibly
1854 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
1855 * we use a short byte read instead. Also, some bus drivers don't implement
1856 * quick write, so we fallback to a byte read in that case too.
1857 * On x86, there is another special case for FSC hardware monitoring chips,
1858 * which want regular byte reads (address 0x73.) Fortunately, these are the
1859 * only known chips using this I2C address on PC hardware.
1860 * Returns 1 if probe succeeded, 0 if not.
1861 */
1862static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
1863{
1864 int err;
1865 union i2c_smbus_data dummy;
1866
1867#ifdef CONFIG_X86
1868 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
1869 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
1870 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1871 I2C_SMBUS_BYTE_DATA, &dummy);
1872 else
1873#endif
Jean Delvare8031d792010-08-11 18:21:00 +02001874 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
1875 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
Jean Delvare63e4e802010-06-03 11:33:51 +02001876 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
1877 I2C_SMBUS_QUICK, NULL);
Jean Delvare8031d792010-08-11 18:21:00 +02001878 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
1879 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1880 I2C_SMBUS_BYTE, &dummy);
1881 else {
Andy Lutomirskid63a9e82013-07-17 13:27:59 -07001882 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
1883 addr);
Jean Delvare8031d792010-08-11 18:21:00 +02001884 err = -EOPNOTSUPP;
1885 }
Jean Delvare63e4e802010-06-03 11:33:51 +02001886
1887 return err >= 0;
1888}
1889
Jean Delvareccfbbd02009-12-06 17:06:25 +01001890static int i2c_detect_address(struct i2c_client *temp_client,
Jean Delvare4735c982008-07-14 22:38:36 +02001891 struct i2c_driver *driver)
1892{
1893 struct i2c_board_info info;
1894 struct i2c_adapter *adapter = temp_client->adapter;
1895 int addr = temp_client->addr;
1896 int err;
1897
1898 /* Make sure the address is valid */
Jean Delvare656b8762010-06-03 11:33:53 +02001899 err = i2c_check_addr_validity(addr);
1900 if (err) {
Jean Delvare4735c982008-07-14 22:38:36 +02001901 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
1902 addr);
Jean Delvare656b8762010-06-03 11:33:53 +02001903 return err;
Jean Delvare4735c982008-07-14 22:38:36 +02001904 }
1905
1906 /* Skip if already in use */
Jean Delvare3b5f7942010-06-03 11:33:55 +02001907 if (i2c_check_addr_busy(adapter, addr))
Jean Delvare4735c982008-07-14 22:38:36 +02001908 return 0;
1909
Jean Delvareccfbbd02009-12-06 17:06:25 +01001910 /* Make sure there is something at this address */
Jean Delvare63e4e802010-06-03 11:33:51 +02001911 if (!i2c_default_probe(adapter, addr))
1912 return 0;
Jean Delvare4735c982008-07-14 22:38:36 +02001913
1914 /* Finally call the custom detection function */
1915 memset(&info, 0, sizeof(struct i2c_board_info));
1916 info.addr = addr;
Jean Delvare310ec792009-12-14 21:17:23 +01001917 err = driver->detect(temp_client, &info);
Jean Delvare4735c982008-07-14 22:38:36 +02001918 if (err) {
1919 /* -ENODEV is returned if the detection fails. We catch it
1920 here as this isn't an error. */
1921 return err == -ENODEV ? 0 : err;
1922 }
1923
1924 /* Consistency check */
1925 if (info.type[0] == '\0') {
1926 dev_err(&adapter->dev, "%s detection function provided "
1927 "no name for 0x%x\n", driver->driver.name,
1928 addr);
1929 } else {
1930 struct i2c_client *client;
1931
1932 /* Detection succeeded, instantiate the device */
1933 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
1934 info.type, info.addr);
1935 client = i2c_new_device(adapter, &info);
1936 if (client)
1937 list_add_tail(&client->detected, &driver->clients);
1938 else
1939 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
1940 info.type, info.addr);
1941 }
1942 return 0;
1943}
1944
1945static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
1946{
Jean Delvarec3813d62009-12-14 21:17:25 +01001947 const unsigned short *address_list;
Jean Delvare4735c982008-07-14 22:38:36 +02001948 struct i2c_client *temp_client;
1949 int i, err = 0;
1950 int adap_id = i2c_adapter_id(adapter);
1951
Jean Delvarec3813d62009-12-14 21:17:25 +01001952 address_list = driver->address_list;
1953 if (!driver->detect || !address_list)
Jean Delvare4735c982008-07-14 22:38:36 +02001954 return 0;
1955
Jean Delvare51b54ba2010-10-24 18:16:58 +02001956 /* Stop here if the classes do not match */
1957 if (!(adapter->class & driver->class))
1958 return 0;
1959
Jean Delvare4735c982008-07-14 22:38:36 +02001960 /* Set up a temporary client to help detect callback */
1961 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1962 if (!temp_client)
1963 return -ENOMEM;
1964 temp_client->adapter = adapter;
1965
Jean Delvarec3813d62009-12-14 21:17:25 +01001966 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
Jean Delvare4735c982008-07-14 22:38:36 +02001967 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
Jean Delvarec3813d62009-12-14 21:17:25 +01001968 "addr 0x%02x\n", adap_id, address_list[i]);
1969 temp_client->addr = address_list[i];
Jean Delvareccfbbd02009-12-06 17:06:25 +01001970 err = i2c_detect_address(temp_client, driver);
Jean Delvare51b54ba2010-10-24 18:16:58 +02001971 if (unlikely(err))
1972 break;
Jean Delvare4735c982008-07-14 22:38:36 +02001973 }
1974
Jean Delvare4735c982008-07-14 22:38:36 +02001975 kfree(temp_client);
1976 return err;
1977}
1978
Jean Delvared44f19d2010-08-11 18:20:57 +02001979int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
1980{
1981 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
1982 I2C_SMBUS_QUICK, NULL) >= 0;
1983}
1984EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
1985
Jean Delvare12b5053a2007-05-01 23:26:31 +02001986struct i2c_client *
1987i2c_new_probed_device(struct i2c_adapter *adap,
1988 struct i2c_board_info *info,
Jean Delvare9a942412010-08-11 18:20:56 +02001989 unsigned short const *addr_list,
1990 int (*probe)(struct i2c_adapter *, unsigned short addr))
Jean Delvare12b5053a2007-05-01 23:26:31 +02001991{
1992 int i;
1993
Jean Delvare8031d792010-08-11 18:21:00 +02001994 if (!probe)
Jean Delvare9a942412010-08-11 18:20:56 +02001995 probe = i2c_default_probe;
Jean Delvare12b5053a2007-05-01 23:26:31 +02001996
Jean Delvare12b5053a2007-05-01 23:26:31 +02001997 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
1998 /* Check address validity */
Jean Delvare656b8762010-06-03 11:33:53 +02001999 if (i2c_check_addr_validity(addr_list[i]) < 0) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02002000 dev_warn(&adap->dev, "Invalid 7-bit address "
2001 "0x%02x\n", addr_list[i]);
2002 continue;
2003 }
2004
2005 /* Check address availability */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002006 if (i2c_check_addr_busy(adap, addr_list[i])) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02002007 dev_dbg(&adap->dev, "Address 0x%02x already in "
2008 "use, not probing\n", addr_list[i]);
2009 continue;
2010 }
2011
Jean Delvare63e4e802010-06-03 11:33:51 +02002012 /* Test address responsiveness */
Jean Delvare9a942412010-08-11 18:20:56 +02002013 if (probe(adap, addr_list[i]))
Jean Delvare63e4e802010-06-03 11:33:51 +02002014 break;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002015 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02002016
2017 if (addr_list[i] == I2C_CLIENT_END) {
2018 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2019 return NULL;
2020 }
2021
2022 info->addr = addr_list[i];
2023 return i2c_new_device(adap, info);
2024}
2025EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2026
Jean Delvared735b342011-03-20 14:50:52 +01002027struct i2c_adapter *i2c_get_adapter(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01002030
Jean Delvarecaada322008-01-27 18:14:49 +01002031 mutex_lock(&core_lock);
Jean Delvared735b342011-03-20 14:50:52 +01002032 adapter = idr_find(&i2c_adapter_idr, nr);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002033 if (adapter && !try_module_get(adapter->owner))
2034 adapter = NULL;
2035
Jean Delvarecaada322008-01-27 18:14:49 +01002036 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002037 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
David Brownellc0564602007-05-01 23:26:31 +02002039EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041void i2c_put_adapter(struct i2c_adapter *adap)
2042{
Sebastian Hesselbarthc66c4cc2013-08-01 14:10:46 +02002043 if (adap)
2044 module_put(adap->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
David Brownellc0564602007-05-01 23:26:31 +02002046EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048/* The SMBus parts */
2049
David Brownell438d6c22006-12-10 21:21:31 +01002050#define POLY (0x1070U << 3)
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002051static u8 crc8(u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
2053 int i;
David Brownell438d6c22006-12-10 21:21:31 +01002054
Farid Hammane7225acf2010-05-21 18:40:58 +02002055 for (i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01002056 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 data = data ^ POLY;
2058 data = data << 1;
2059 }
2060 return (u8)(data >> 8);
2061}
2062
Jean Delvare421ef472005-10-26 21:28:55 +02002063/* Incremental CRC8 over count bytes in the array pointed to by p */
2064static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
2066 int i;
2067
Farid Hammane7225acf2010-05-21 18:40:58 +02002068 for (i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02002069 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return crc;
2071}
2072
Jean Delvare421ef472005-10-26 21:28:55 +02002073/* Assume a 7-bit address, which is reasonable for SMBus */
2074static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Jean Delvare421ef472005-10-26 21:28:55 +02002076 /* The address will be sent first */
2077 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
2078 pec = i2c_smbus_pec(pec, &addr, 1);
2079
2080 /* The data buffer follows */
2081 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
Jean Delvare421ef472005-10-26 21:28:55 +02002084/* Used for write only transactions */
2085static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Jean Delvare421ef472005-10-26 21:28:55 +02002087 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
2088 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
2090
Jean Delvare421ef472005-10-26 21:28:55 +02002091/* Return <0 on CRC error
2092 If there was a write before this read (most cases) we need to take the
2093 partial CRC from the write part into account.
2094 Note that this function does modify the message (we need to decrease the
2095 message length to hide the CRC byte from the caller). */
2096static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Jean Delvare421ef472005-10-26 21:28:55 +02002098 u8 rpec = msg->buf[--msg->len];
2099 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if (rpec != cpec) {
2102 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
2103 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02002104 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
David Brownell438d6c22006-12-10 21:21:31 +01002106 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
David Brownella1cdeda2008-07-14 22:38:24 +02002109/**
2110 * i2c_smbus_read_byte - SMBus "receive byte" protocol
2111 * @client: Handle to slave device
2112 *
2113 * This executes the SMBus "receive byte" protocol, returning negative errno
2114 * else the byte received from the device.
2115 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002116s32 i2c_smbus_read_byte(const struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002119 int status;
2120
2121 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2122 I2C_SMBUS_READ, 0,
2123 I2C_SMBUS_BYTE, &data);
2124 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
David Brownellc0564602007-05-01 23:26:31 +02002126EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
David Brownella1cdeda2008-07-14 22:38:24 +02002128/**
2129 * i2c_smbus_write_byte - SMBus "send byte" protocol
2130 * @client: Handle to slave device
2131 * @value: Byte to be sent
2132 *
2133 * This executes the SMBus "send byte" protocol, returning negative errno
2134 * else zero on success.
2135 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002136s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Farid Hammane7225acf2010-05-21 18:40:58 +02002138 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02002139 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
David Brownellc0564602007-05-01 23:26:31 +02002141EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
David Brownella1cdeda2008-07-14 22:38:24 +02002143/**
2144 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
2145 * @client: Handle to slave device
2146 * @command: Byte interpreted by slave
2147 *
2148 * This executes the SMBus "read byte" protocol, returning negative errno
2149 * else a data byte received from the device.
2150 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002151s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
2153 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002154 int status;
2155
2156 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2157 I2C_SMBUS_READ, command,
2158 I2C_SMBUS_BYTE_DATA, &data);
2159 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
David Brownellc0564602007-05-01 23:26:31 +02002161EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
David Brownella1cdeda2008-07-14 22:38:24 +02002163/**
2164 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
2165 * @client: Handle to slave device
2166 * @command: Byte interpreted by slave
2167 * @value: Byte being written
2168 *
2169 * This executes the SMBus "write byte" protocol, returning negative errno
2170 * else zero on success.
2171 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002172s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
2173 u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 union i2c_smbus_data data;
2176 data.byte = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02002177 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2178 I2C_SMBUS_WRITE, command,
2179 I2C_SMBUS_BYTE_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
David Brownellc0564602007-05-01 23:26:31 +02002181EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
David Brownella1cdeda2008-07-14 22:38:24 +02002183/**
2184 * i2c_smbus_read_word_data - SMBus "read word" protocol
2185 * @client: Handle to slave device
2186 * @command: Byte interpreted by slave
2187 *
2188 * This executes the SMBus "read word" protocol, returning negative errno
2189 * else a 16-bit unsigned "word" received from the device.
2190 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002191s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
2193 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002194 int status;
2195
2196 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2197 I2C_SMBUS_READ, command,
2198 I2C_SMBUS_WORD_DATA, &data);
2199 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200}
David Brownellc0564602007-05-01 23:26:31 +02002201EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
David Brownella1cdeda2008-07-14 22:38:24 +02002203/**
2204 * i2c_smbus_write_word_data - SMBus "write word" protocol
2205 * @client: Handle to slave device
2206 * @command: Byte interpreted by slave
2207 * @value: 16-bit "word" being written
2208 *
2209 * This executes the SMBus "write word" protocol, returning negative errno
2210 * else zero on success.
2211 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002212s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
2213 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
2215 union i2c_smbus_data data;
2216 data.word = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02002217 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2218 I2C_SMBUS_WRITE, command,
2219 I2C_SMBUS_WORD_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220}
David Brownellc0564602007-05-01 23:26:31 +02002221EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
David Brownella64ec072007-10-13 23:56:31 +02002223/**
David Brownella1cdeda2008-07-14 22:38:24 +02002224 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02002225 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02002226 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02002227 * @values: Byte array into which data will be read; big enough to hold
2228 * the data returned by the slave. SMBus allows at most 32 bytes.
2229 *
David Brownella1cdeda2008-07-14 22:38:24 +02002230 * This executes the SMBus "block read" protocol, returning negative errno
2231 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02002232 *
2233 * Note that using this function requires that the client's adapter support
2234 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
2235 * support this; its emulation through I2C messaging relies on a specific
2236 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
2237 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002238s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
Jean Delvareb86a1bc2007-05-01 23:26:34 +02002239 u8 *values)
2240{
2241 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002242 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02002243
David Brownell24a5bb72008-07-14 22:38:23 +02002244 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2245 I2C_SMBUS_READ, command,
2246 I2C_SMBUS_BLOCK_DATA, &data);
2247 if (status)
2248 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02002249
2250 memcpy(values, &data.block[1], data.block[0]);
2251 return data.block[0];
2252}
2253EXPORT_SYMBOL(i2c_smbus_read_block_data);
2254
David Brownella1cdeda2008-07-14 22:38:24 +02002255/**
2256 * i2c_smbus_write_block_data - SMBus "block write" protocol
2257 * @client: Handle to slave device
2258 * @command: Byte interpreted by slave
2259 * @length: Size of data block; SMBus allows at most 32 bytes
2260 * @values: Byte array which will be written.
2261 *
2262 * This executes the SMBus "block write" protocol, returning negative errno
2263 * else zero on success.
2264 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002265s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02002266 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
2268 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (length > I2C_SMBUS_BLOCK_MAX)
2271 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01002273 memcpy(&data.block[1], values, length);
Farid Hammane7225acf2010-05-21 18:40:58 +02002274 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2275 I2C_SMBUS_WRITE, command,
2276 I2C_SMBUS_BLOCK_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277}
David Brownellc0564602007-05-01 23:26:31 +02002278EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
2280/* Returns the number of read bytes */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002281s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
Jean Delvare4b2643d2007-07-12 14:12:29 +02002282 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
2284 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002285 int status;
Jean Delvare76560322006-01-18 23:14:55 +01002286
Jean Delvare4b2643d2007-07-12 14:12:29 +02002287 if (length > I2C_SMBUS_BLOCK_MAX)
2288 length = I2C_SMBUS_BLOCK_MAX;
2289 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02002290 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2291 I2C_SMBUS_READ, command,
2292 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2293 if (status < 0)
2294 return status;
Jean Delvare76560322006-01-18 23:14:55 +01002295
2296 memcpy(values, &data.block[1], data.block[0]);
2297 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
David Brownellc0564602007-05-01 23:26:31 +02002299EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Jean Delvare0cc43a12011-01-10 22:11:23 +01002301s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02002302 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11002303{
2304 union i2c_smbus_data data;
2305
2306 if (length > I2C_SMBUS_BLOCK_MAX)
2307 length = I2C_SMBUS_BLOCK_MAX;
2308 data.block[0] = length;
2309 memcpy(data.block + 1, values, length);
2310 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2311 I2C_SMBUS_WRITE, command,
2312 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2313}
David Brownellc0564602007-05-01 23:26:31 +02002314EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11002315
David Brownell438d6c22006-12-10 21:21:31 +01002316/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 No checking of parameters is done! */
Farid Hammane7225acf2010-05-21 18:40:58 +02002318static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
2319 unsigned short flags,
2320 char read_write, u8 command, int size,
2321 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
2323 /* So we need to generate a series of msgs. In the case of writing, we
2324 need to use only one message; when reading, we need two. We initialize
2325 most things with sane defaults, to keep the code below somewhat
2326 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02002327 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
2328 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Farid Hammane7225acf2010-05-21 18:40:58 +02002329 int num = read_write == I2C_SMBUS_READ ? 2 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02002331 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02002332 int status;
Shubhrajyoti D230da092012-10-05 22:23:52 +02002333 struct i2c_msg msg[2] = {
2334 {
2335 .addr = addr,
2336 .flags = flags,
2337 .len = 1,
2338 .buf = msgbuf0,
2339 }, {
2340 .addr = addr,
2341 .flags = flags | I2C_M_RD,
2342 .len = 0,
2343 .buf = msgbuf1,
2344 },
2345 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
2347 msgbuf0[0] = command;
Farid Hammane7225acf2010-05-21 18:40:58 +02002348 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 case I2C_SMBUS_QUICK:
2350 msg[0].len = 0;
2351 /* Special case: The read/write field is used as data */
Roel Kluinf29d2e02009-02-24 19:19:48 +01002352 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
2353 I2C_M_RD : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 num = 1;
2355 break;
2356 case I2C_SMBUS_BYTE:
2357 if (read_write == I2C_SMBUS_READ) {
2358 /* Special case: only a read! */
2359 msg[0].flags = I2C_M_RD | flags;
2360 num = 1;
2361 }
2362 break;
2363 case I2C_SMBUS_BYTE_DATA:
2364 if (read_write == I2C_SMBUS_READ)
2365 msg[1].len = 1;
2366 else {
2367 msg[0].len = 2;
2368 msgbuf0[1] = data->byte;
2369 }
2370 break;
2371 case I2C_SMBUS_WORD_DATA:
2372 if (read_write == I2C_SMBUS_READ)
2373 msg[1].len = 2;
2374 else {
Farid Hammane7225acf2010-05-21 18:40:58 +02002375 msg[0].len = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02002377 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379 break;
2380 case I2C_SMBUS_PROC_CALL:
2381 num = 2; /* Special case */
2382 read_write = I2C_SMBUS_READ;
2383 msg[0].len = 3;
2384 msg[1].len = 2;
2385 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02002386 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 break;
2388 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02002390 msg[1].flags |= I2C_M_RECV_LEN;
2391 msg[1].len = 1; /* block length will be added by
2392 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 } else {
2394 msg[0].len = data->block[0] + 2;
2395 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02002396 dev_err(&adapter->dev,
2397 "Invalid block write size %d\n",
2398 data->block[0]);
2399 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02002401 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 msgbuf0[i] = data->block[i-1];
2403 }
2404 break;
2405 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02002406 num = 2; /* Another special case */
2407 read_write = I2C_SMBUS_READ;
2408 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02002409 dev_err(&adapter->dev,
2410 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02002411 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02002412 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02002413 }
2414 msg[0].len = data->block[0] + 2;
2415 for (i = 1; i < msg[0].len; i++)
2416 msgbuf0[i] = data->block[i-1];
2417 msg[1].flags |= I2C_M_RECV_LEN;
2418 msg[1].len = 1; /* block length will be added by
2419 the underlying bus driver */
2420 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 case I2C_SMBUS_I2C_BLOCK_DATA:
2422 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02002423 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 } else {
2425 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02002426 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02002427 dev_err(&adapter->dev,
2428 "Invalid block write size %d\n",
2429 data->block[0]);
2430 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
2432 for (i = 1; i <= data->block[0]; i++)
2433 msgbuf0[i] = data->block[i];
2434 }
2435 break;
2436 default:
David Brownell24a5bb72008-07-14 22:38:23 +02002437 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
2438 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440
Jean Delvare421ef472005-10-26 21:28:55 +02002441 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
2442 && size != I2C_SMBUS_I2C_BLOCK_DATA);
2443 if (i) {
2444 /* Compute PEC if first message is a write */
2445 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01002446 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02002447 i2c_smbus_add_pec(&msg[0]);
2448 else /* Write followed by read */
2449 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
2450 }
2451 /* Ask for PEC if last message is a read */
2452 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01002453 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02002454 }
2455
David Brownell24a5bb72008-07-14 22:38:23 +02002456 status = i2c_transfer(adapter, msg, num);
2457 if (status < 0)
2458 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Jean Delvare421ef472005-10-26 21:28:55 +02002460 /* Check PEC if last message is a read */
2461 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02002462 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
2463 if (status < 0)
2464 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02002465 }
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 if (read_write == I2C_SMBUS_READ)
Farid Hammane7225acf2010-05-21 18:40:58 +02002468 switch (size) {
2469 case I2C_SMBUS_BYTE:
2470 data->byte = msgbuf0[0];
2471 break;
2472 case I2C_SMBUS_BYTE_DATA:
2473 data->byte = msgbuf1[0];
2474 break;
2475 case I2C_SMBUS_WORD_DATA:
2476 case I2C_SMBUS_PROC_CALL:
2477 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
2478 break;
2479 case I2C_SMBUS_I2C_BLOCK_DATA:
2480 for (i = 0; i < data->block[0]; i++)
2481 data->block[i+1] = msgbuf1[i];
2482 break;
2483 case I2C_SMBUS_BLOCK_DATA:
2484 case I2C_SMBUS_BLOCK_PROC_CALL:
2485 for (i = 0; i < msgbuf1[0] + 1; i++)
2486 data->block[i] = msgbuf1[i];
2487 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
2489 return 0;
2490}
2491
David Brownella1cdeda2008-07-14 22:38:24 +02002492/**
2493 * i2c_smbus_xfer - execute SMBus protocol operations
2494 * @adapter: Handle to I2C bus
2495 * @addr: Address of SMBus slave on that bus
2496 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
2497 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
2498 * @command: Byte interpreted by slave, for protocols which use such bytes
2499 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
2500 * @data: Data to be read or written
2501 *
2502 * This executes an SMBus protocol operation, and returns a negative
2503 * errno code else zero on success.
2504 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002505s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02002506 char read_write, u8 command, int protocol,
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002507 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Clifford Wolf66b650f2009-06-15 18:01:46 +02002509 unsigned long orig_jiffies;
2510 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Laurent Pinchartd47726c2012-07-24 14:13:59 +02002513 flags &= I2C_M_TEN | I2C_CLIENT_PEC | I2C_CLIENT_SCCB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 if (adapter->algo->smbus_xfer) {
Jean Delvarefe61e072010-08-11 18:20:58 +02002516 i2c_lock_adapter(adapter);
Clifford Wolf66b650f2009-06-15 18:01:46 +02002517
2518 /* Retry automatically on arbitration loss */
2519 orig_jiffies = jiffies;
2520 for (res = 0, try = 0; try <= adapter->retries; try++) {
2521 res = adapter->algo->smbus_xfer(adapter, addr, flags,
2522 read_write, command,
2523 protocol, data);
2524 if (res != -EAGAIN)
2525 break;
2526 if (time_after(jiffies,
2527 orig_jiffies + adapter->timeout))
2528 break;
2529 }
Jean Delvarefe61e072010-08-11 18:20:58 +02002530 i2c_unlock_adapter(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Laurent Pinchart72fc2c72012-07-24 14:13:59 +02002532 if (res != -EOPNOTSUPP || !adapter->algo->master_xfer)
2533 return res;
2534 /*
2535 * Fall back to i2c_smbus_xfer_emulated if the adapter doesn't
2536 * implement native support for the SMBus operation.
2537 */
2538 }
2539
2540 return i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
2541 command, protocol, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
2545MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2546MODULE_DESCRIPTION("I2C-Bus main module");
2547MODULE_LICENSE("GPL");