blob: b4d84bd475da2f100e3a11eb505a2f552f5c5882 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Wolfram Sang61e3d0f2017-05-23 19:23:11 +02002/*
3 * Linux I2C core
4 *
5 * Copyright (C) 1995-99 Simon G. Vogl
6 * With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>
7 * Mux support by Rodolfo Giometti <giometti@enneenne.com> and
8 * Michael Lawnick <michael.lawnick.ext@nsn.com>
9 *
10 * Copyright (C) 2013-2017 Wolfram Sang <wsa@the-dreams.de>
Wolfram Sang687b81d2013-07-11 12:56:15 +010011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Wolfram Sang44239a52016-07-09 13:35:04 +090013#define pr_fmt(fmt) "i2c-core: " fmt
14
Wolfram Sangb4e2f6a2015-05-19 21:04:40 +020015#include <dt-bindings/i2c/i2c.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010016#include <linux/acpi.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020017#include <linux/clk/clk-conf.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010018#include <linux/completion.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010019#include <linux/delay.h>
Pantelis Antonioua430a3452014-10-28 22:36:02 +020020#include <linux/err.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010021#include <linux/errno.h>
Phil Reid10c9ef02017-11-28 11:09:10 +080022#include <linux/gpio/consumer.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010023#include <linux/i2c.h>
Phil Reidf8756c62017-08-24 17:31:04 +080024#include <linux/i2c-smbus.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010025#include <linux/idr.h>
26#include <linux/init.h>
27#include <linux/irqflags.h>
28#include <linux/jump_label.h>
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/mutex.h>
32#include <linux/of_device.h>
33#include <linux/of.h>
34#include <linux/of_irq.h>
35#include <linux/pm_domain.h>
36#include <linux/pm_runtime.h>
37#include <linux/pm_wakeirq.h>
Wolfram Sange1dba012015-12-08 10:37:46 +010038#include <linux/property.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010039#include <linux/rwsem.h>
40#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
David Brownell9c1600e2007-05-01 23:26:31 +020042#include "i2c-core.h"
43
David Howellsd9a83d62014-03-06 13:35:59 +000044#define CREATE_TRACE_POINTS
45#include <trace/events/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Wolfram Sangda899f52015-05-18 21:09:12 +020047#define I2C_ADDR_OFFSET_TEN_BIT 0xa000
48#define I2C_ADDR_OFFSET_SLAVE 0x1000
49
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +020050#define I2C_ADDR_7BITS_MAX 0x77
51#define I2C_ADDR_7BITS_COUNT (I2C_ADDR_7BITS_MAX + 1)
52
Peter Rosindde67eb2018-01-22 08:32:01 +010053#define I2C_ADDR_DEVICE_ID 0x7c
54
Wolfram Sang61e3d0f2017-05-23 19:23:11 +020055/*
56 * core_lock protects i2c_adapter_idr, and guarantees that device detection,
Wolfram Sang0c36dd32018-08-21 17:02:40 +020057 * deletion of detected devices are serialized
Wolfram Sang61e3d0f2017-05-23 19:23:11 +020058 */
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 Delvare4735c982008-07-14 22:38:36 +020062static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010063
Davidlohr Bueso50888b02018-03-26 14:09:24 -070064static DEFINE_STATIC_KEY_FALSE(i2c_trace_msg_key);
Sudip Mukherjee95026652016-03-07 17:19:17 +053065static bool is_registered;
David Howellsd9a83d62014-03-06 13:35:59 +000066
Steven Rostedt (Red Hat)8cf868a2016-11-28 13:03:21 -050067int i2c_transfer_trace_reg(void)
David Howellsd9a83d62014-03-06 13:35:59 +000068{
Davidlohr Bueso50888b02018-03-26 14:09:24 -070069 static_branch_inc(&i2c_trace_msg_key);
Steven Rostedt (Red Hat)8cf868a2016-11-28 13:03:21 -050070 return 0;
David Howellsd9a83d62014-03-06 13:35:59 +000071}
72
73void i2c_transfer_trace_unreg(void)
74{
Davidlohr Bueso50888b02018-03-26 14:09:24 -070075 static_branch_dec(&i2c_trace_msg_key);
David Howellsd9a83d62014-03-06 13:35:59 +000076}
77
Lee Jones5f441fc2016-11-07 12:47:40 +000078const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
Jean Delvared2653e92008-04-29 23:11:39 +020079 const struct i2c_client *client)
80{
Lee Jones811073b2016-11-07 12:47:36 +000081 if (!(id && client))
82 return NULL;
83
Jean Delvared2653e92008-04-29 23:11:39 +020084 while (id->name[0]) {
85 if (strcmp(client->name, id->name) == 0)
86 return id;
87 id++;
88 }
89 return NULL;
90}
Lee Jones5f441fc2016-11-07 12:47:40 +000091EXPORT_SYMBOL_GPL(i2c_match_id);
Jean Delvared2653e92008-04-29 23:11:39 +020092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static int i2c_device_match(struct device *dev, struct device_driver *drv)
94{
Jean Delvare51298d12009-09-18 22:45:45 +020095 struct i2c_client *client = i2c_verify_client(dev);
96 struct i2c_driver *driver;
David Brownell7b4fbc52007-05-01 23:26:30 +020097
Jean Delvare51298d12009-09-18 22:45:45 +020098
Grant Likely959e85f2010-06-08 07:48:19 -060099 /* Attempt an OF style match */
Lee Jonesda10c062016-11-07 12:47:39 +0000100 if (i2c_of_match_device(drv->of_match_table, client))
Grant Likely959e85f2010-06-08 07:48:19 -0600101 return 1;
102
Mika Westerberg907ddf82012-11-23 12:23:40 +0100103 /* Then ACPI style match */
104 if (acpi_driver_match_device(dev, drv))
105 return 1;
106
Jean Delvare51298d12009-09-18 22:45:45 +0200107 driver = to_i2c_driver(drv);
Lee Jones811073b2016-11-07 12:47:36 +0000108
109 /* Finally an I2C match */
110 if (i2c_match_id(driver->id_table, client))
111 return 1;
Jean Delvared2653e92008-04-29 23:11:39 +0200112
Jean Delvareeb8a7902008-05-18 20:49:41 +0200113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Kay Sievers7eff2e72007-08-14 15:15:12 +0200116static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +0200117{
Wolfram Sang8dcf3212016-03-23 20:47:02 +0100118 struct i2c_client *client = to_i2c_client(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800119 int rc;
120
Javier Martinez Canillasaf503712017-12-03 22:40:50 +0100121 rc = of_device_uevent_modalias(dev, env);
122 if (rc != -ENODEV)
123 return rc;
124
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800125 rc = acpi_device_uevent_modalias(dev, env);
126 if (rc != -ENODEV)
127 return rc;
David Brownell7b4fbc52007-05-01 23:26:30 +0200128
Wolfram Sang8dcf3212016-03-23 20:47:02 +0100129 return add_uevent_var(env, "MODALIAS=%s%s", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200130}
131
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530132/* i2c bus recovery routines */
133static int get_scl_gpio_value(struct i2c_adapter *adap)
134{
Phil Reid3991c5c2017-11-02 10:40:24 +0800135 return gpiod_get_value_cansleep(adap->bus_recovery_info->scl_gpiod);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530136}
137
138static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
139{
Phil Reid3991c5c2017-11-02 10:40:24 +0800140 gpiod_set_value_cansleep(adap->bus_recovery_info->scl_gpiod, val);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530141}
142
143static int get_sda_gpio_value(struct i2c_adapter *adap)
144{
Phil Reid3991c5c2017-11-02 10:40:24 +0800145 return gpiod_get_value_cansleep(adap->bus_recovery_info->sda_gpiod);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530146}
147
Wolfram Sang80921782018-01-09 14:58:56 +0100148static void set_sda_gpio_value(struct i2c_adapter *adap, int val)
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530149{
Wolfram Sang80921782018-01-09 14:58:56 +0100150 gpiod_set_value_cansleep(adap->bus_recovery_info->sda_gpiod, val);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530151}
152
Wolfram Sang7ca5f6b2018-07-11 00:24:22 +0200153static int i2c_generic_bus_free(struct i2c_adapter *adap)
154{
155 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
156 int ret = -EOPNOTSUPP;
157
158 if (bri->get_bus_free)
159 ret = bri->get_bus_free(adap);
160 else if (bri->get_sda)
161 ret = bri->get_sda(adap);
162
163 if (ret < 0)
164 return ret;
165
166 return ret ? 0 : -EBUSY;
167}
168
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530169/*
170 * We are generating clock pulses. ndelay() determines durating of clk pulses.
171 * We will generate clock with rate 100 KHz and so duration of both clock levels
172 * is: delay in ns = (10^6 / 100) / 2
173 */
174#define RECOVERY_NDELAY 5000
175#define RECOVERY_CLK_CNT 9
176
Phil Reide1eb7d22017-11-02 10:40:30 +0800177int i2c_generic_scl_recovery(struct i2c_adapter *adap)
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530178{
179 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
Linus Torvaldscf676902019-05-01 11:07:40 -0700180 int i = 0, scl = 1, ret = 0;
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530181
182 if (bri->prepare_recovery)
Grygorii Strashko2b2190a2015-04-06 15:38:39 +0300183 bri->prepare_recovery(adap);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530184
Wolfram Sangc4ae05b2018-07-17 11:00:05 +0200185 /*
186 * If we can set SDA, we will always create a STOP to ensure additional
187 * pulses will do no harm. This is achieved by letting SDA follow SCL
188 * half a cycle later. Check the 'incomplete_write_byte' fault injector
189 * for details.
190 */
Wolfram Sangf7ff75e2018-07-11 00:27:22 +0200191 bri->set_scl(adap, scl);
Wolfram Sangc4ae05b2018-07-17 11:00:05 +0200192 ndelay(RECOVERY_NDELAY / 2);
Wolfram Sang72b08fc2018-01-09 14:58:57 +0100193 if (bri->set_sda)
Wolfram Sangc4ae05b2018-07-17 11:00:05 +0200194 bri->set_sda(adap, scl);
195 ndelay(RECOVERY_NDELAY / 2);
Jan Luebbe8b062602015-07-08 16:35:06 +0200196
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530197 /*
198 * By this time SCL is high, as we need to give 9 falling-rising edges
199 */
200 while (i++ < RECOVERY_CLK_CNT * 2) {
Wolfram Sangf7ff75e2018-07-11 00:27:22 +0200201 if (scl) {
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530202 /* SCL shouldn't be low here */
203 if (!bri->get_scl(adap)) {
204 dev_err(&adap->dev,
205 "SCL is stuck low, exit recovery\n");
206 ret = -EBUSY;
207 break;
208 }
209 }
210
Wolfram Sangf7ff75e2018-07-11 00:27:22 +0200211 scl = !scl;
212 bri->set_scl(adap, scl);
Wolfram Sangc4ae05b2018-07-17 11:00:05 +0200213 /* Creating STOP again, see above */
Wolfram Sangabe41182018-07-10 23:42:15 +0200214 ndelay(RECOVERY_NDELAY / 2);
215 if (bri->set_sda)
Wolfram Sangf7ff75e2018-07-11 00:27:22 +0200216 bri->set_sda(adap, scl);
Wolfram Sangabe41182018-07-10 23:42:15 +0200217 ndelay(RECOVERY_NDELAY / 2);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530218
Wolfram Sangf7ff75e2018-07-11 00:27:22 +0200219 if (scl) {
Wolfram Sang7ca5f6b2018-07-11 00:24:22 +0200220 ret = i2c_generic_bus_free(adap);
Wolfram Sang0b710262018-07-10 23:42:17 +0200221 if (ret == 0)
222 break;
223 }
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530224 }
225
Wolfram Sang7ca5f6b2018-07-11 00:24:22 +0200226 /* If we can't check bus status, assume recovery worked */
227 if (ret == -EOPNOTSUPP)
228 ret = 0;
Wolfram Sang2806e6a2018-01-09 14:58:58 +0100229
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530230 if (bri->unprepare_recovery)
Grygorii Strashko2b2190a2015-04-06 15:38:39 +0300231 bri->unprepare_recovery(adap);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530232
233 return ret;
234}
Mark Brownc1c21f42015-04-15 19:18:39 +0100235EXPORT_SYMBOL_GPL(i2c_generic_scl_recovery);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530236
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530237int i2c_recover_bus(struct i2c_adapter *adap)
238{
239 if (!adap->bus_recovery_info)
240 return -EOPNOTSUPP;
241
242 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
243 return adap->bus_recovery_info->recover_bus(adap);
244}
Mark Brownc1c21f42015-04-15 19:18:39 +0100245EXPORT_SYMBOL_GPL(i2c_recover_bus);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530246
Wolfram Sangd3b11d82016-07-09 13:34:59 +0900247static void i2c_init_recovery(struct i2c_adapter *adap)
248{
249 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
250 char *err_str;
251
252 if (!bri)
253 return;
254
255 if (!bri->recover_bus) {
256 err_str = "no recover_bus() found";
257 goto err;
258 }
259
Phil Reid3991c5c2017-11-02 10:40:24 +0800260 if (bri->scl_gpiod && bri->recover_bus == i2c_generic_scl_recovery) {
Wolfram Sangd3b11d82016-07-09 13:34:59 +0900261 bri->get_scl = get_scl_gpio_value;
262 bri->set_scl = set_scl_gpio_value;
Wolfram Sang80921782018-01-09 14:58:56 +0100263 if (bri->sda_gpiod) {
Phil Reid3991c5c2017-11-02 10:40:24 +0800264 bri->get_sda = get_sda_gpio_value;
Wolfram Sang80921782018-01-09 14:58:56 +0100265 /* FIXME: add proper flag instead of '0' once available */
266 if (gpiod_get_direction(bri->sda_gpiod) == 0)
267 bri->set_sda = set_sda_gpio_value;
268 }
Phil Reid3991c5c2017-11-02 10:40:24 +0800269 return;
270 }
271
Phil Reide1eb7d22017-11-02 10:40:30 +0800272 if (bri->recover_bus == i2c_generic_scl_recovery) {
Wolfram Sangd3b11d82016-07-09 13:34:59 +0900273 /* Generic SCL recovery */
274 if (!bri->set_scl || !bri->get_scl) {
275 err_str = "no {get|set}_scl() found";
276 goto err;
277 }
Wolfram Sangffc59c42018-07-10 23:42:16 +0200278 if (!bri->set_sda && !bri->get_sda) {
279 err_str = "either get_sda() or set_sda() needed";
280 goto err;
281 }
Wolfram Sangd3b11d82016-07-09 13:34:59 +0900282 }
283
284 return;
285 err:
286 dev_err(&adap->dev, "Not using recovery: %s\n", err_str);
287 adap->bus_recovery_info = NULL;
288}
289
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +0200290static int i2c_smbus_host_notify_to_irq(const struct i2c_client *client)
291{
292 struct i2c_adapter *adap = client->adapter;
293 unsigned int irq;
294
295 if (!adap->host_notify_domain)
296 return -ENXIO;
297
298 if (client->flags & I2C_CLIENT_TEN)
299 return -EINVAL;
300
Charles Keepaxb9bb3fd2018-10-19 09:59:57 +0100301 irq = irq_create_mapping(adap->host_notify_domain, client->addr);
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +0200302
303 return irq > 0 ? irq : -ENXIO;
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static int i2c_device_probe(struct device *dev)
307{
Jean Delvare51298d12009-09-18 22:45:45 +0200308 struct i2c_client *client = i2c_verify_client(dev);
309 struct i2c_driver *driver;
Hans Verkuil50c33042008-03-12 14:15:00 +0100310 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200311
Jean Delvare51298d12009-09-18 22:45:45 +0200312 if (!client)
313 return 0;
314
Hans de Goeded1d84bb2017-04-05 00:03:34 +0200315 driver = to_i2c_driver(dev->driver);
316
Charles Keepax6e76cb72019-06-27 10:24:11 +0100317 client->irq = client->init_irq;
318
Hans de Goeded1d84bb2017-04-05 00:03:34 +0200319 if (!client->irq && !driver->disable_i2c_core_irq_mapping) {
Mika Westerberg845c8772015-05-06 13:29:08 +0300320 int irq = -ENOENT;
321
Dmitry Torokhov331c3422017-01-04 20:57:22 -0800322 if (client->flags & I2C_CLIENT_HOST_NOTIFY) {
323 dev_dbg(dev, "Using Host Notify IRQ\n");
Jarkko Nikula72bfcee2019-04-30 17:23:22 +0300324 /* Keep adapter active when Host Notify is required */
325 pm_runtime_get_sync(&client->adapter->dev);
Dmitry Torokhov331c3422017-01-04 20:57:22 -0800326 irq = i2c_smbus_host_notify_to_irq(client);
327 } else if (dev->of_node) {
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700328 irq = of_irq_get_byname(dev->of_node, "irq");
329 if (irq == -EINVAL || irq == -ENODATA)
330 irq = of_irq_get(dev->of_node, 0);
331 } else if (ACPI_COMPANION(dev)) {
Charles Keepax16c9db12019-06-27 10:24:09 +0100332 irq = i2c_acpi_get_irq(client);
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700333 }
Geert Uytterhoeven6f34be72014-11-17 12:43:00 +0100334 if (irq == -EPROBE_DEFER)
Laurent Pinchart2fd36c5522014-10-30 15:59:38 +0200335 return irq;
Dmitry Torokhov331c3422017-01-04 20:57:22 -0800336
Geert Uytterhoeven6f34be72014-11-17 12:43:00 +0100337 if (irq < 0)
338 irq = 0;
Laurent Pinchart2fd36c5522014-10-30 15:59:38 +0200339
340 client->irq = irq;
341 }
342
Lee Jonesda10c062016-11-07 12:47:39 +0000343 /*
Javier Martinez Canillasf4b17a12017-08-09 11:21:28 +0200344 * An I2C ID table is not mandatory, if and only if, a suitable OF
345 * or ACPI ID table is supplied for the probing device.
Lee Jonesda10c062016-11-07 12:47:39 +0000346 */
347 if (!driver->id_table &&
Andy Shevchenkoc64ffff2017-07-17 17:13:28 +0300348 !i2c_acpi_match_device(dev->driver->acpi_match_table, client) &&
Lee Jonesda10c062016-11-07 12:47:39 +0000349 !i2c_of_match_device(dev->driver->of_match_table, client))
David Brownell7b4fbc52007-05-01 23:26:30 +0200350 return -ENODEV;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +0200351
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700352 if (client->flags & I2C_CLIENT_WAKE) {
Andy Shevchenko3e998342019-07-26 16:14:21 +0300353 int wakeirq;
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700354
Andy Shevchenko3e998342019-07-26 16:14:21 +0300355 wakeirq = of_irq_get_byname(dev->of_node, "wakeup");
356 if (wakeirq == -EPROBE_DEFER)
357 return wakeirq;
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700358
359 device_init_wakeup(&client->dev, true);
360
361 if (wakeirq > 0 && wakeirq != client->irq)
362 status = dev_pm_set_dedicated_wake_irq(dev, wakeirq);
363 else if (client->irq > 0)
Grygorii Strashkoc18fba22015-11-12 15:42:26 +0200364 status = dev_pm_set_wake_irq(dev, client->irq);
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700365 else
366 status = 0;
367
368 if (status)
Andy Shevchenkob93d3d32016-08-25 17:42:10 +0300369 dev_warn(&client->dev, "failed to set up wakeup irq\n");
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700370 }
371
David Brownell7b4fbc52007-05-01 23:26:30 +0200372 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200373
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200374 status = of_clk_set_defaults(dev->of_node, false);
375 if (status < 0)
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700376 goto err_clear_wakeup_irq;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200377
Ulf Hanssone09b0d42014-09-19 20:27:39 +0200378 status = dev_pm_domain_attach(&client->dev, true);
Ulf Hanssone6a20b62018-04-26 10:53:07 +0200379 if (status)
Kieran Bingham74cedd32015-10-12 21:54:43 +0100380 goto err_clear_wakeup_irq;
381
Lee Jonesb8a1a4c2016-11-07 12:47:41 +0000382 /*
383 * When there are no more users of probe(),
384 * rename probe_new to probe.
385 */
386 if (driver->probe_new)
387 status = driver->probe_new(client);
388 else if (driver->probe)
389 status = driver->probe(client,
390 i2c_match_id(driver->id_table, client));
391 else
392 status = -EINVAL;
393
Kieran Bingham74cedd32015-10-12 21:54:43 +0100394 if (status)
395 goto err_detach_pm_domain;
Wolfram Sang72fa8182014-01-21 17:48:34 +0100396
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700397 return 0;
398
399err_detach_pm_domain:
400 dev_pm_domain_detach(&client->dev, true);
401err_clear_wakeup_irq:
402 dev_pm_clear_wake_irq(&client->dev);
403 device_init_wakeup(&client->dev, false);
Hans Verkuil50c33042008-03-12 14:15:00 +0100404 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407static int i2c_device_remove(struct device *dev)
408{
Jean Delvare51298d12009-09-18 22:45:45 +0200409 struct i2c_client *client = i2c_verify_client(dev);
David Brownella1d9e6e2007-05-01 23:26:30 +0200410 struct i2c_driver *driver;
Wolfram Sang72fa8182014-01-21 17:48:34 +0100411 int status = 0;
David Brownella1d9e6e2007-05-01 23:26:30 +0200412
Jean Delvare51298d12009-09-18 22:45:45 +0200413 if (!client || !dev->driver)
David Brownella1d9e6e2007-05-01 23:26:30 +0200414 return 0;
415
416 driver = to_i2c_driver(dev->driver);
417 if (driver->remove) {
418 dev_dbg(dev, "remove\n");
419 status = driver->remove(client);
David Brownella1d9e6e2007-05-01 23:26:30 +0200420 }
Wolfram Sang72fa8182014-01-21 17:48:34 +0100421
Ulf Hanssone09b0d42014-09-19 20:27:39 +0200422 dev_pm_domain_detach(&client->dev, true);
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700423
424 dev_pm_clear_wake_irq(&client->dev);
425 device_init_wakeup(&client->dev, false);
426
Charles Keepax6e76cb72019-06-27 10:24:11 +0100427 client->irq = 0;
Jarkko Nikula72bfcee2019-04-30 17:23:22 +0300428 if (client->flags & I2C_CLIENT_HOST_NOTIFY)
429 pm_runtime_put(&client->adapter->dev);
Charles Keepax6f108dd2018-10-19 09:59:58 +0100430
David Brownella1d9e6e2007-05-01 23:26:30 +0200431 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
David Brownellf37dd802007-02-13 22:09:00 +0100434static void i2c_device_shutdown(struct device *dev)
435{
Jean Delvare51298d12009-09-18 22:45:45 +0200436 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100437 struct i2c_driver *driver;
438
Jean Delvare51298d12009-09-18 22:45:45 +0200439 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100440 return;
441 driver = to_i2c_driver(dev->driver);
442 if (driver->shutdown)
Jean Delvare51298d12009-09-18 22:45:45 +0200443 driver->shutdown(client);
David Brownellf37dd802007-02-13 22:09:00 +0100444}
445
David Brownell9c1600e2007-05-01 23:26:31 +0200446static void i2c_client_dev_release(struct device *dev)
447{
448 kfree(to_i2c_client(dev));
449}
450
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100451static ssize_t
Jean Delvare4f8cf822009-09-18 22:45:46 +0200452show_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200453{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200454 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
455 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200456}
Wolfram Sanga5eb71b2015-01-19 20:12:24 +0100457static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
David Brownell7b4fbc52007-05-01 23:26:30 +0200458
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100459static ssize_t
460show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200461{
462 struct i2c_client *client = to_i2c_client(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800463 int len;
464
Javier Martinez Canillasaf503712017-12-03 22:40:50 +0100465 len = of_device_modalias(dev, buf, PAGE_SIZE);
466 if (len != -ENODEV)
467 return len;
468
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800469 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
470 if (len != -ENODEV)
471 return len;
472
Jean Delvareeb8a7902008-05-18 20:49:41 +0200473 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200474}
Jean Delvare51298d12009-09-18 22:45:45 +0200475static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
476
477static struct attribute *i2c_dev_attrs[] = {
478 &dev_attr_name.attr,
David Brownell7b4fbc52007-05-01 23:26:30 +0200479 /* modalias helps coldplug: modprobe $(cat .../modalias) */
Jean Delvare51298d12009-09-18 22:45:45 +0200480 &dev_attr_modalias.attr,
481 NULL
482};
Wolfram Sanga5eb71b2015-01-19 20:12:24 +0100483ATTRIBUTE_GROUPS(i2c_dev);
sonic zhang54067ee2009-12-14 21:17:30 +0100484
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200485struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100486 .name = "i2c",
487 .match = i2c_device_match,
488 .probe = i2c_device_probe,
489 .remove = i2c_device_remove,
490 .shutdown = i2c_device_shutdown,
Russell Kingb864c7d2006-01-05 14:37:50 +0000491};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200492EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000493
Dmitry Torokhov00a06c22017-03-04 11:29:34 -0800494struct device_type i2c_client_type = {
Wolfram Sanga5eb71b2015-01-19 20:12:24 +0100495 .groups = i2c_dev_groups,
Jean Delvare51298d12009-09-18 22:45:45 +0200496 .uevent = i2c_device_uevent,
497 .release = i2c_client_dev_release,
498};
Dmitry Torokhov00a06c22017-03-04 11:29:34 -0800499EXPORT_SYMBOL_GPL(i2c_client_type);
Jean Delvare51298d12009-09-18 22:45:45 +0200500
David Brownell9b766b82008-01-27 18:14:51 +0100501
502/**
503 * i2c_verify_client - return parameter as i2c_client, or NULL
504 * @dev: device, probably from some driver model iterator
505 *
506 * When traversing the driver model tree, perhaps using driver model
507 * iterators like @device_for_each_child(), you can't assume very much
508 * about the nodes you find. Use this function to avoid oopses caused
509 * by wrongly treating some non-I2C device as an i2c_client.
510 */
511struct i2c_client *i2c_verify_client(struct device *dev)
512{
Jean Delvare51298d12009-09-18 22:45:45 +0200513 return (dev->type == &i2c_client_type)
David Brownell9b766b82008-01-27 18:14:51 +0100514 ? to_i2c_client(dev)
515 : NULL;
516}
517EXPORT_SYMBOL(i2c_verify_client);
518
519
Wolfram Sangda899f52015-05-18 21:09:12 +0200520/* Return a unique address which takes the flags of the client into account */
521static unsigned short i2c_encode_flags_to_addr(struct i2c_client *client)
522{
523 unsigned short addr = client->addr;
524
525 /* For some client flags, add an arbitrary offset to avoid collisions */
526 if (client->flags & I2C_CLIENT_TEN)
527 addr |= I2C_ADDR_OFFSET_TEN_BIT;
528
529 if (client->flags & I2C_CLIENT_SLAVE)
530 addr |= I2C_ADDR_OFFSET_SLAVE;
531
532 return addr;
533}
534
Jean Delvare3a89db52010-06-03 11:33:52 +0200535/* This is a permissive address validity check, I2C address map constraints
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300536 * are purposely not enforced, except for the general call address. */
Wolfram Sang398432e2018-03-20 21:54:38 +0100537static int i2c_check_addr_validity(unsigned int addr, unsigned short flags)
Jean Delvare3a89db52010-06-03 11:33:52 +0200538{
Wolfram Sangc4019b72015-07-17 12:50:06 +0200539 if (flags & I2C_CLIENT_TEN) {
Jean Delvare3a89db52010-06-03 11:33:52 +0200540 /* 10-bit address, all values are valid */
Wolfram Sangc4019b72015-07-17 12:50:06 +0200541 if (addr > 0x3ff)
Jean Delvare3a89db52010-06-03 11:33:52 +0200542 return -EINVAL;
543 } else {
544 /* 7-bit address, reject the general call address */
Wolfram Sangc4019b72015-07-17 12:50:06 +0200545 if (addr == 0x00 || addr > 0x7f)
Jean Delvare3a89db52010-06-03 11:33:52 +0200546 return -EINVAL;
547 }
548 return 0;
549}
550
Jean Delvare656b8762010-06-03 11:33:53 +0200551/* And this is a strict address validity check, used when probing. If a
552 * device uses a reserved address, then it shouldn't be probed. 7-bit
553 * addressing is assumed, 10-bit address devices are rare and should be
554 * explicitly enumerated. */
Wolfram Sange4991ec2017-05-23 11:14:17 +0200555int i2c_check_7bit_addr_validity_strict(unsigned short addr)
Jean Delvare656b8762010-06-03 11:33:53 +0200556{
557 /*
558 * Reserved addresses per I2C specification:
559 * 0x00 General call address / START byte
560 * 0x01 CBUS address
561 * 0x02 Reserved for different bus format
562 * 0x03 Reserved for future purposes
563 * 0x04-0x07 Hs-mode master code
564 * 0x78-0x7b 10-bit slave addressing
565 * 0x7c-0x7f Reserved for future purposes
566 */
567 if (addr < 0x08 || addr > 0x77)
568 return -EINVAL;
569 return 0;
570}
571
Jean Delvare3b5f7942010-06-03 11:33:55 +0200572static int __i2c_check_addr_busy(struct device *dev, void *addrp)
573{
574 struct i2c_client *client = i2c_verify_client(dev);
575 int addr = *(int *)addrp;
576
Wolfram Sang9bccc702015-07-17 14:48:56 +0200577 if (client && i2c_encode_flags_to_addr(client) == addr)
Jean Delvare3b5f7942010-06-03 11:33:55 +0200578 return -EBUSY;
579 return 0;
580}
581
Michael Lawnick08263742010-08-11 18:21:02 +0200582/* walk up mux tree */
583static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
584{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200585 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +0200586 int result;
587
588 result = device_for_each_child(&adapter->dev, &addr,
589 __i2c_check_addr_busy);
590
Jean Delvare97cc4d42010-10-24 18:16:57 +0200591 if (!result && parent)
592 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +0200593
594 return result;
595}
596
597/* recurse down mux tree */
598static int i2c_check_mux_children(struct device *dev, void *addrp)
599{
600 int result;
601
602 if (dev->type == &i2c_adapter_type)
603 result = device_for_each_child(dev, addrp,
604 i2c_check_mux_children);
605 else
606 result = __i2c_check_addr_busy(dev, addrp);
607
608 return result;
609}
610
Jean Delvare3b5f7942010-06-03 11:33:55 +0200611static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
612{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200613 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +0200614 int result = 0;
615
Jean Delvare97cc4d42010-10-24 18:16:57 +0200616 if (parent)
617 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +0200618
619 if (!result)
620 result = device_for_each_child(&adapter->dev, &addr,
621 i2c_check_mux_children);
622
623 return result;
Jean Delvare3b5f7942010-06-03 11:33:55 +0200624}
625
David Brownell9c1600e2007-05-01 23:26:31 +0200626/**
Peter Rosin8320f492016-05-04 22:15:27 +0200627 * i2c_adapter_lock_bus - Get exclusive access to an I2C bus segment
Jean Delvarefe61e072010-08-11 18:20:58 +0200628 * @adapter: Target I2C bus segment
Peter Rosin8320f492016-05-04 22:15:27 +0200629 * @flags: I2C_LOCK_ROOT_ADAPTER locks the root i2c adapter, I2C_LOCK_SEGMENT
630 * locks only this branch in the adapter tree
Jean Delvarefe61e072010-08-11 18:20:58 +0200631 */
Peter Rosin8320f492016-05-04 22:15:27 +0200632static void i2c_adapter_lock_bus(struct i2c_adapter *adapter,
633 unsigned int flags)
Jean Delvarefe61e072010-08-11 18:20:58 +0200634{
Peter Rosin7b94ea52018-07-20 10:39:14 +0200635 rt_mutex_lock_nested(&adapter->bus_lock, i2c_adapter_depth(adapter));
Jean Delvarefe61e072010-08-11 18:20:58 +0200636}
Jean Delvarefe61e072010-08-11 18:20:58 +0200637
638/**
Peter Rosin8320f492016-05-04 22:15:27 +0200639 * i2c_adapter_trylock_bus - Try to get exclusive access to an I2C bus segment
Jean Delvarefe61e072010-08-11 18:20:58 +0200640 * @adapter: Target I2C bus segment
Peter Rosin8320f492016-05-04 22:15:27 +0200641 * @flags: I2C_LOCK_ROOT_ADAPTER trylocks the root i2c adapter, I2C_LOCK_SEGMENT
642 * trylocks only this branch in the adapter tree
Jean Delvarefe61e072010-08-11 18:20:58 +0200643 */
Peter Rosin8320f492016-05-04 22:15:27 +0200644static int i2c_adapter_trylock_bus(struct i2c_adapter *adapter,
645 unsigned int flags)
Jean Delvarefe61e072010-08-11 18:20:58 +0200646{
Peter Rosinfa96f0c2016-05-04 22:15:28 +0200647 return rt_mutex_trylock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200648}
649
650/**
Peter Rosin8320f492016-05-04 22:15:27 +0200651 * i2c_adapter_unlock_bus - Release exclusive access to an I2C bus segment
Jean Delvarefe61e072010-08-11 18:20:58 +0200652 * @adapter: Target I2C bus segment
Peter Rosin8320f492016-05-04 22:15:27 +0200653 * @flags: I2C_LOCK_ROOT_ADAPTER unlocks the root i2c adapter, I2C_LOCK_SEGMENT
654 * unlocks only this branch in the adapter tree
Jean Delvarefe61e072010-08-11 18:20:58 +0200655 */
Peter Rosin8320f492016-05-04 22:15:27 +0200656static void i2c_adapter_unlock_bus(struct i2c_adapter *adapter,
657 unsigned int flags)
Jean Delvarefe61e072010-08-11 18:20:58 +0200658{
Peter Rosinfa96f0c2016-05-04 22:15:28 +0200659 rt_mutex_unlock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200660}
Jean Delvarefe61e072010-08-11 18:20:58 +0200661
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200662static void i2c_dev_set_name(struct i2c_adapter *adap,
Hans de Goede728fe6c2017-10-11 11:41:19 +0200663 struct i2c_client *client,
664 struct i2c_board_info const *info)
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200665{
666 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
667
Hans de Goede728fe6c2017-10-11 11:41:19 +0200668 if (info && info->dev_name) {
669 dev_set_name(&client->dev, "i2c-%s", info->dev_name);
670 return;
671 }
672
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200673 if (adev) {
674 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
675 return;
676 }
677
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200678 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
Wolfram Sangda899f52015-05-18 21:09:12 +0200679 i2c_encode_flags_to_addr(client));
Jarkko Nikula70762ab2013-11-14 14:03:52 +0200680}
681
Charles Keepax1d7534b2019-06-27 10:24:06 +0100682int i2c_dev_irq_from_resources(const struct resource *resources,
683 unsigned int num_resources)
Dmitry Torokhov4124c4e2017-03-01 11:45:51 -0800684{
685 struct irq_data *irqd;
686 int i;
687
688 for (i = 0; i < num_resources; i++) {
689 const struct resource *r = &resources[i];
690
691 if (resource_type(r) != IORESOURCE_IRQ)
692 continue;
693
694 if (r->flags & IORESOURCE_BITS) {
695 irqd = irq_get_irq_data(r->start);
696 if (!irqd)
697 break;
698
699 irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS);
700 }
701
702 return r->start;
703 }
704
705 return 0;
706}
707
Jean Delvarefe61e072010-08-11 18:20:58 +0200708/**
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200709 * i2c_new_client_device - instantiate an i2c device
David Brownell9c1600e2007-05-01 23:26:31 +0200710 * @adap: the adapter managing the device
711 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +0200712 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200713 *
Jean Delvaref8a227e2009-06-19 16:58:18 +0200714 * Create an i2c device. Binding is handled through driver model
715 * probe()/remove() methods. A driver may be bound to this device when we
716 * return from this function, or any later moment (e.g. maybe hotplugging will
717 * load the driver module). This call is not appropriate for use by mainboard
718 * initialization logic, which usually runs during an arch_initcall() long
719 * before any i2c_adapter could exist.
David Brownell9c1600e2007-05-01 23:26:31 +0200720 *
721 * This returns the new i2c client, which may be saved for later use with
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200722 * i2c_unregister_device(); or an ERR_PTR to describe the error.
David Brownell9c1600e2007-05-01 23:26:31 +0200723 */
Wolfram Sang550113d2019-06-24 19:04:02 +0200724struct i2c_client *
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200725i2c_new_client_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
David Brownell9c1600e2007-05-01 23:26:31 +0200726{
727 struct i2c_client *client;
728 int status;
729
730 client = kzalloc(sizeof *client, GFP_KERNEL);
731 if (!client)
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200732 return ERR_PTR(-ENOMEM);
David Brownell9c1600e2007-05-01 23:26:31 +0200733
734 client->adapter = adap;
735
736 client->dev.platform_data = info->platform_data;
Marc Pignatee354252008-08-28 08:33:22 +0200737 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +0200738 client->addr = info->addr;
Dmitry Torokhov4124c4e2017-03-01 11:45:51 -0800739
Jim Broadus93b66042019-02-19 11:30:27 -0800740 client->init_irq = info->irq;
741 if (!client->init_irq)
742 client->init_irq = i2c_dev_irq_from_resources(info->resources,
Dmitry Torokhov4124c4e2017-03-01 11:45:51 -0800743 info->num_resources);
David Brownell9c1600e2007-05-01 23:26:31 +0200744
David Brownell9c1600e2007-05-01 23:26:31 +0200745 strlcpy(client->name, info->type, sizeof(client->name));
746
Wolfram Sangc4019b72015-07-17 12:50:06 +0200747 status = i2c_check_addr_validity(client->addr, client->flags);
Jean Delvare3a89db52010-06-03 11:33:52 +0200748 if (status) {
749 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
750 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
751 goto out_err_silent;
752 }
753
Jean Delvaref8a227e2009-06-19 16:58:18 +0200754 /* Check for address business */
Wolfram Sang9bccc702015-07-17 14:48:56 +0200755 status = i2c_check_addr_busy(adap, i2c_encode_flags_to_addr(client));
Jean Delvaref8a227e2009-06-19 16:58:18 +0200756 if (status)
757 goto out_err;
758
759 client->dev.parent = &client->adapter->dev;
760 client->dev.bus = &i2c_bus_type;
Jean Delvare51298d12009-09-18 22:45:45 +0200761 client->dev.type = &i2c_client_type;
Boris Brezillon04782262018-03-25 14:49:02 +0200762 client->dev.of_node = of_node_get(info->of_node);
Rafael J. Wysockice793482015-03-16 23:49:03 +0100763 client->dev.fwnode = info->fwnode;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200764
Hans de Goede728fe6c2017-10-11 11:41:19 +0200765 i2c_dev_set_name(adap, client, info);
Dmitry Torokhovd3e1b612017-02-02 17:41:28 -0800766
767 if (info->properties) {
768 status = device_add_properties(&client->dev, info->properties);
769 if (status) {
770 dev_err(&adap->dev,
771 "Failed to add properties to client %s: %d\n",
772 client->name, status);
Boris Brezillon04782262018-03-25 14:49:02 +0200773 goto out_err_put_of_node;
Dmitry Torokhovd3e1b612017-02-02 17:41:28 -0800774 }
775 }
776
Jean Delvaref8a227e2009-06-19 16:58:18 +0200777 status = device_register(&client->dev);
778 if (status)
Dmitry Torokhovd3e1b612017-02-02 17:41:28 -0800779 goto out_free_props;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200780
Jean Delvaref8a227e2009-06-19 16:58:18 +0200781 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
782 client->name, dev_name(&client->dev));
783
David Brownell9c1600e2007-05-01 23:26:31 +0200784 return client;
Jean Delvaref8a227e2009-06-19 16:58:18 +0200785
Dmitry Torokhovd3e1b612017-02-02 17:41:28 -0800786out_free_props:
787 if (info->properties)
788 device_remove_properties(&client->dev);
Boris Brezillon04782262018-03-25 14:49:02 +0200789out_err_put_of_node:
790 of_node_put(info->of_node);
Jean Delvaref8a227e2009-06-19 16:58:18 +0200791out_err:
Andy Shevchenkob93d3d32016-08-25 17:42:10 +0300792 dev_err(&adap->dev,
793 "Failed to register i2c client %s at 0x%02x (%d)\n",
794 client->name, client->addr, status);
Jean Delvare3a89db52010-06-03 11:33:52 +0200795out_err_silent:
Jean Delvaref8a227e2009-06-19 16:58:18 +0200796 kfree(client);
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200797 return ERR_PTR(status);
798}
799EXPORT_SYMBOL_GPL(i2c_new_client_device);
800
801/**
802 * i2c_new_device - instantiate an i2c device
803 * @adap: the adapter managing the device
804 * @info: describes one I2C device; bus_num is ignored
805 * Context: can sleep
806 *
807 * This deprecated function has the same functionality as
808 * @i2c_new_client_device, it just returns NULL instead of an ERR_PTR in case of
809 * an error for compatibility with current I2C API. It will be removed once all
810 * users are converted.
811 *
812 * This returns the new i2c client, which may be saved for later use with
813 * i2c_unregister_device(); or NULL to indicate an error.
814 */
815struct i2c_client *
816i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
817{
818 struct i2c_client *ret;
819
820 ret = i2c_new_client_device(adap, info);
821 return IS_ERR(ret) ? NULL : ret;
David Brownell9c1600e2007-05-01 23:26:31 +0200822}
823EXPORT_SYMBOL_GPL(i2c_new_device);
824
825
826/**
827 * i2c_unregister_device - reverse effect of i2c_new_device()
828 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +0200829 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +0200830 */
831void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +0200832{
Andy Shevchenko7b43dd12017-10-31 16:21:35 +0200833 if (!client)
834 return;
Lixin Wange0638fa2017-11-27 15:06:55 +0800835
836 if (client->dev.of_node) {
Pantelis Antoniou4f001fd2015-01-24 09:16:29 +0200837 of_node_clear_flag(client->dev.of_node, OF_POPULATED);
Lixin Wange0638fa2017-11-27 15:06:55 +0800838 of_node_put(client->dev.of_node);
839 }
840
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300841 if (ACPI_COMPANION(&client->dev))
842 acpi_device_clear_enumerated(ACPI_COMPANION(&client->dev));
David Brownella1d9e6e2007-05-01 23:26:30 +0200843 device_unregister(&client->dev);
844}
David Brownell9c1600e2007-05-01 23:26:31 +0200845EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +0200846
847
Jean Delvare60b129d2008-05-11 20:37:06 +0200848static const struct i2c_device_id dummy_id[] = {
849 { "dummy", 0 },
850 { },
851};
852
Jean Delvared2653e92008-04-29 23:11:39 +0200853static int dummy_probe(struct i2c_client *client,
854 const struct i2c_device_id *id)
855{
856 return 0;
857}
858
859static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +0100860{
861 return 0;
862}
863
864static struct i2c_driver dummy_driver = {
865 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +0200866 .probe = dummy_probe,
867 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +0200868 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +0100869};
870
871/**
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200872 * i2c_new_dummy_device - return a new i2c device bound to a dummy driver
David Brownelle9f13732008-01-27 18:14:52 +0100873 * @adapter: the adapter managing the device
874 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +0100875 * Context: can sleep
876 *
877 * This returns an I2C client bound to the "dummy" driver, intended for use
878 * with devices that consume multiple addresses. Examples of such chips
879 * include various EEPROMS (like 24c04 and 24c08 models).
880 *
881 * These dummy devices have two main uses. First, most I2C and SMBus calls
882 * except i2c_transfer() need a client handle; the dummy will be that handle.
883 * And second, this prevents the specified address from being bound to a
884 * different driver.
885 *
886 * This returns the new i2c client, which should be saved for later use with
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200887 * i2c_unregister_device(); or an ERR_PTR to describe the error.
David Brownelle9f13732008-01-27 18:14:52 +0100888 */
Wolfram Sang550113d2019-06-24 19:04:02 +0200889struct i2c_client *i2c_new_dummy_device(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +0100890{
891 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +0200892 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +0100893 };
894
Heiner Kallweit7159dbda2019-05-16 23:13:08 +0200895 return i2c_new_client_device(adapter, &info);
896}
897EXPORT_SYMBOL_GPL(i2c_new_dummy_device);
898
899/**
900 * i2c_new_dummy - return a new i2c device bound to a dummy driver
901 * @adapter: the adapter managing the device
902 * @address: seven bit address to be used
903 * Context: can sleep
904 *
905 * This deprecated function has the same functionality as @i2c_new_dummy_device,
906 * it just returns NULL instead of an ERR_PTR in case of an error for
907 * compatibility with current I2C API. It will be removed once all users are
908 * converted.
909 *
910 * This returns the new i2c client, which should be saved for later use with
911 * i2c_unregister_device(); or NULL to indicate an error.
912 */
913struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
914{
915 struct i2c_client *ret;
916
917 ret = i2c_new_dummy_device(adapter, address);
918 return IS_ERR(ret) ? NULL : ret;
David Brownelle9f13732008-01-27 18:14:52 +0100919}
920EXPORT_SYMBOL_GPL(i2c_new_dummy);
921
Heiner Kallweitb8f5fe32019-05-16 23:13:09 +0200922struct i2c_dummy_devres {
923 struct i2c_client *client;
924};
925
926static void devm_i2c_release_dummy(struct device *dev, void *res)
927{
928 struct i2c_dummy_devres *this = res;
929
930 i2c_unregister_device(this->client);
931}
932
933/**
934 * devm_i2c_new_dummy_device - return a new i2c device bound to a dummy driver
935 * @dev: device the managed resource is bound to
936 * @adapter: the adapter managing the device
937 * @address: seven bit address to be used
938 * Context: can sleep
939 *
940 * This is the device-managed version of @i2c_new_dummy_device. It returns the
941 * new i2c client or an ERR_PTR in case of an error.
942 */
943struct i2c_client *devm_i2c_new_dummy_device(struct device *dev,
944 struct i2c_adapter *adapter,
945 u16 address)
946{
947 struct i2c_dummy_devres *dr;
948 struct i2c_client *client;
949
950 dr = devres_alloc(devm_i2c_release_dummy, sizeof(*dr), GFP_KERNEL);
951 if (!dr)
952 return ERR_PTR(-ENOMEM);
953
954 client = i2c_new_dummy_device(adapter, address);
955 if (IS_ERR(client)) {
956 devres_free(dr);
957 } else {
958 dr->client = client;
959 devres_add(dev, dr);
960 }
961
962 return client;
963}
964EXPORT_SYMBOL_GPL(devm_i2c_new_dummy_device);
965
Jean-Michel Hautbois0f614d82016-01-31 16:33:00 +0100966/**
967 * i2c_new_secondary_device - Helper to get the instantiated secondary address
968 * and create the associated device
969 * @client: Handle to the primary client
970 * @name: Handle to specify which secondary address to get
971 * @default_addr: Used as a fallback if no secondary address was specified
972 * Context: can sleep
973 *
974 * I2C clients can be composed of multiple I2C slaves bound together in a single
975 * component. The I2C client driver then binds to the master I2C slave and needs
976 * to create I2C dummy clients to communicate with all the other slaves.
977 *
978 * This function creates and returns an I2C dummy client whose I2C address is
979 * retrieved from the platform firmware based on the given slave name. If no
980 * address is specified by the firmware default_addr is used.
981 *
982 * On DT-based platforms the address is retrieved from the "reg" property entry
983 * cell whose "reg-names" value matches the slave name.
984 *
985 * This returns the new i2c client, which should be saved for later use with
986 * i2c_unregister_device(); or NULL to indicate an error.
987 */
988struct i2c_client *i2c_new_secondary_device(struct i2c_client *client,
989 const char *name,
990 u16 default_addr)
991{
992 struct device_node *np = client->dev.of_node;
993 u32 addr = default_addr;
994 int i;
995
996 if (np) {
997 i = of_property_match_string(np, "reg-names", name);
998 if (i >= 0)
999 of_property_read_u32_index(np, "reg", i, &addr);
1000 }
1001
1002 dev_dbg(&client->adapter->dev, "Address for %s : 0x%x\n", name, addr);
1003 return i2c_new_dummy(client->adapter, addr);
1004}
1005EXPORT_SYMBOL_GPL(i2c_new_secondary_device);
1006
David Brownellf37dd802007-02-13 22:09:00 +01001007/* ------------------------------------------------------------------------- */
1008
David Brownell16ffadf2007-05-01 23:26:28 +02001009/* I2C bus adapters -- one roots each I2C or SMBUS segment */
1010
Adrian Bunk83eaaed2007-10-13 23:56:30 +02001011static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
David Brownellef2c83212007-05-01 23:26:28 +02001013 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 complete(&adap->dev_released);
1015}
1016
Bartosz Golaszewski8dd1fe12016-09-16 18:02:42 +02001017unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
Jean Delvare390946b2012-09-10 10:14:02 +02001018{
1019 unsigned int depth = 0;
1020
1021 while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
1022 depth++;
1023
Bartosz Golaszewski2771dc32016-09-16 18:02:44 +02001024 WARN_ONCE(depth >= MAX_LOCKDEP_SUBCLASSES,
1025 "adapter depth exceeds lockdep subclass limit\n");
1026
Jean Delvare390946b2012-09-10 10:14:02 +02001027 return depth;
1028}
Bartosz Golaszewski8dd1fe12016-09-16 18:02:42 +02001029EXPORT_SYMBOL_GPL(i2c_adapter_depth);
Jean Delvare390946b2012-09-10 10:14:02 +02001030
1031/*
Jean Delvare99cd8e22009-06-19 16:58:20 +02001032 * Let users instantiate I2C devices through sysfs. This can be used when
1033 * platform initialization code doesn't contain the proper data for
1034 * whatever reason. Also useful for drivers that do device detection and
1035 * detection fails, either because the device uses an unexpected address,
1036 * or this is a compatible device with different ID register values.
1037 *
1038 * Parameter checking may look overzealous, but we really don't want
1039 * the user to provide incorrect parameters.
1040 */
1041static ssize_t
1042i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
1043 const char *buf, size_t count)
1044{
1045 struct i2c_adapter *adap = to_i2c_adapter(dev);
1046 struct i2c_board_info info;
1047 struct i2c_client *client;
1048 char *blank, end;
1049 int res;
1050
Jean Delvare99cd8e22009-06-19 16:58:20 +02001051 memset(&info, 0, sizeof(struct i2c_board_info));
1052
1053 blank = strchr(buf, ' ');
1054 if (!blank) {
1055 dev_err(dev, "%s: Missing parameters\n", "new_device");
1056 return -EINVAL;
1057 }
1058 if (blank - buf > I2C_NAME_SIZE - 1) {
1059 dev_err(dev, "%s: Invalid device name\n", "new_device");
1060 return -EINVAL;
1061 }
1062 memcpy(info.type, buf, blank - buf);
1063
1064 /* Parse remaining parameters, reject extra parameters */
1065 res = sscanf(++blank, "%hi%c", &info.addr, &end);
1066 if (res < 1) {
1067 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
1068 return -EINVAL;
1069 }
1070 if (res > 1 && end != '\n') {
1071 dev_err(dev, "%s: Extra parameters\n", "new_device");
1072 return -EINVAL;
1073 }
1074
Wolfram Sangcfa03272015-07-27 14:03:38 +02001075 if ((info.addr & I2C_ADDR_OFFSET_TEN_BIT) == I2C_ADDR_OFFSET_TEN_BIT) {
1076 info.addr &= ~I2C_ADDR_OFFSET_TEN_BIT;
1077 info.flags |= I2C_CLIENT_TEN;
1078 }
1079
1080 if (info.addr & I2C_ADDR_OFFSET_SLAVE) {
1081 info.addr &= ~I2C_ADDR_OFFSET_SLAVE;
1082 info.flags |= I2C_CLIENT_SLAVE;
1083 }
1084
Heiner Kallweit7159dbda2019-05-16 23:13:08 +02001085 client = i2c_new_client_device(adap, &info);
1086 if (IS_ERR(client))
1087 return PTR_ERR(client);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001088
1089 /* Keep track of the added device */
Jean Delvaredafc50d2010-08-11 18:21:01 +02001090 mutex_lock(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001091 list_add_tail(&client->detected, &adap->userspace_clients);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001092 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001093 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1094 info.type, info.addr);
1095
1096 return count;
1097}
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001098static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001099
1100/*
1101 * And of course let the users delete the devices they instantiated, if
1102 * they got it wrong. This interface can only be used to delete devices
1103 * instantiated by i2c_sysfs_new_device above. This guarantees that we
1104 * don't delete devices to which some kernel code still has references.
1105 *
1106 * Parameter checking may look overzealous, but we really don't want
1107 * the user to delete the wrong device.
1108 */
1109static ssize_t
1110i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
1111 const char *buf, size_t count)
1112{
1113 struct i2c_adapter *adap = to_i2c_adapter(dev);
1114 struct i2c_client *client, *next;
1115 unsigned short addr;
1116 char end;
1117 int res;
1118
1119 /* Parse parameters, reject extra parameters */
1120 res = sscanf(buf, "%hi%c", &addr, &end);
1121 if (res < 1) {
1122 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
1123 return -EINVAL;
1124 }
1125 if (res > 1 && end != '\n') {
1126 dev_err(dev, "%s: Extra parameters\n", "delete_device");
1127 return -EINVAL;
1128 }
1129
1130 /* Make sure the device was added through sysfs */
1131 res = -ENOENT;
Jean Delvare390946b2012-09-10 10:14:02 +02001132 mutex_lock_nested(&adap->userspace_clients_lock,
1133 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02001134 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1135 detected) {
Wolfram Sangcfa03272015-07-27 14:03:38 +02001136 if (i2c_encode_flags_to_addr(client) == addr) {
Jean Delvare99cd8e22009-06-19 16:58:20 +02001137 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
1138 "delete_device", client->name, client->addr);
1139
1140 list_del(&client->detected);
1141 i2c_unregister_device(client);
1142 res = count;
1143 break;
1144 }
1145 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02001146 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001147
1148 if (res < 0)
1149 dev_err(dev, "%s: Can't find device in list\n",
1150 "delete_device");
1151 return res;
1152}
Alexander Sverdline9b526f2013-05-17 14:56:35 +02001153static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
1154 i2c_sysfs_delete_device);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001155
1156static struct attribute *i2c_adapter_attrs[] = {
1157 &dev_attr_name.attr,
1158 &dev_attr_new_device.attr,
1159 &dev_attr_delete_device.attr,
1160 NULL
David Brownell16ffadf2007-05-01 23:26:28 +02001161};
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001162ATTRIBUTE_GROUPS(i2c_adapter);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001163
Michael Lawnick08263742010-08-11 18:21:02 +02001164struct device_type i2c_adapter_type = {
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001165 .groups = i2c_adapter_groups,
Jean Delvare4f8cf822009-09-18 22:45:46 +02001166 .release = i2c_adapter_dev_release,
David Brownell16ffadf2007-05-01 23:26:28 +02001167};
Michael Lawnick08263742010-08-11 18:21:02 +02001168EXPORT_SYMBOL_GPL(i2c_adapter_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Stephen Warren643dd092012-04-17 12:43:33 -06001170/**
1171 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1172 * @dev: device, probably from some driver model iterator
1173 *
1174 * When traversing the driver model tree, perhaps using driver model
1175 * iterators like @device_for_each_child(), you can't assume very much
1176 * about the nodes you find. Use this function to avoid oopses caused
1177 * by wrongly treating some non-I2C device as an i2c_adapter.
1178 */
1179struct i2c_adapter *i2c_verify_adapter(struct device *dev)
1180{
1181 return (dev->type == &i2c_adapter_type)
1182 ? to_i2c_adapter(dev)
1183 : NULL;
1184}
1185EXPORT_SYMBOL(i2c_verify_adapter);
1186
Jean Delvare2bb50952009-09-18 22:45:46 +02001187#ifdef CONFIG_I2C_COMPAT
1188static struct class_compat *i2c_adapter_compat_class;
1189#endif
1190
David Brownell9c1600e2007-05-01 23:26:31 +02001191static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
1192{
1193 struct i2c_devinfo *devinfo;
1194
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +02001195 down_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +02001196 list_for_each_entry(devinfo, &__i2c_board_list, list) {
1197 if (devinfo->busnum == adapter->nr
1198 && !i2c_new_device(adapter,
1199 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001200 dev_err(&adapter->dev,
1201 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +02001202 devinfo->board_info.addr);
1203 }
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +02001204 up_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +02001205}
1206
Jean Delvare69b00892009-12-06 17:06:27 +01001207static int i2c_do_add_adapter(struct i2c_driver *driver,
1208 struct i2c_adapter *adap)
Jean Delvare026526f2008-01-27 18:14:49 +01001209{
Jean Delvare4735c982008-07-14 22:38:36 +02001210 /* Detect supported devices on that bus, and instantiate them */
1211 i2c_detect(adap, driver);
1212
Jean Delvare026526f2008-01-27 18:14:49 +01001213 return 0;
1214}
1215
Jean Delvare69b00892009-12-06 17:06:27 +01001216static int __process_new_adapter(struct device_driver *d, void *data)
1217{
1218 return i2c_do_add_adapter(to_i2c_driver(d), data);
1219}
1220
Peter Rosind1ed7982016-08-25 23:07:01 +02001221static const struct i2c_lock_operations i2c_adapter_lock_ops = {
1222 .lock_bus = i2c_adapter_lock_bus,
1223 .trylock_bus = i2c_adapter_trylock_bus,
1224 .unlock_bus = i2c_adapter_unlock_bus,
1225};
1226
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +02001227static void i2c_host_notify_irq_teardown(struct i2c_adapter *adap)
1228{
1229 struct irq_domain *domain = adap->host_notify_domain;
1230 irq_hw_number_t hwirq;
1231
1232 if (!domain)
1233 return;
1234
1235 for (hwirq = 0 ; hwirq < I2C_ADDR_7BITS_COUNT ; hwirq++)
1236 irq_dispose_mapping(irq_find_mapping(domain, hwirq));
1237
1238 irq_domain_remove(domain);
1239 adap->host_notify_domain = NULL;
1240}
1241
1242static int i2c_host_notify_irq_map(struct irq_domain *h,
1243 unsigned int virq,
1244 irq_hw_number_t hw_irq_num)
1245{
1246 irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
1247
1248 return 0;
1249}
1250
1251static const struct irq_domain_ops i2c_host_notify_irq_ops = {
1252 .map = i2c_host_notify_irq_map,
1253};
1254
1255static int i2c_setup_host_notify_irq_domain(struct i2c_adapter *adap)
1256{
1257 struct irq_domain *domain;
1258
1259 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_HOST_NOTIFY))
1260 return 0;
1261
1262 domain = irq_domain_create_linear(adap->dev.fwnode,
1263 I2C_ADDR_7BITS_COUNT,
1264 &i2c_host_notify_irq_ops, adap);
1265 if (!domain)
1266 return -ENOMEM;
1267
1268 adap->host_notify_domain = domain;
1269
1270 return 0;
1271}
1272
1273/**
1274 * i2c_handle_smbus_host_notify - Forward a Host Notify event to the correct
1275 * I2C client.
1276 * @adap: the adapter
1277 * @addr: the I2C address of the notifying device
1278 * Context: can't sleep
1279 *
1280 * Helper function to be called from an I2C bus driver's interrupt
1281 * handler. It will schedule the Host Notify IRQ.
1282 */
1283int i2c_handle_smbus_host_notify(struct i2c_adapter *adap, unsigned short addr)
1284{
1285 int irq;
1286
1287 if (!adap)
1288 return -EINVAL;
1289
1290 irq = irq_find_mapping(adap->host_notify_domain, addr);
1291 if (irq <= 0)
1292 return -ENXIO;
1293
1294 generic_handle_irq(irq);
1295
1296 return 0;
1297}
1298EXPORT_SYMBOL_GPL(i2c_handle_smbus_host_notify);
1299
David Brownell6e13e642007-05-01 23:26:31 +02001300static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Wolfram Sangce0dffa2016-07-09 13:34:58 +09001302 int res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
David Brownell1d0b19c2008-10-14 17:30:05 +02001304 /* Can't register until after driver model init */
Sudip Mukherjee95026652016-03-07 17:19:17 +05301305 if (WARN_ON(!is_registered)) {
Jean Delvare35fc37f2009-06-19 16:58:19 +02001306 res = -EAGAIN;
1307 goto out_list;
1308 }
David Brownell1d0b19c2008-10-14 17:30:05 +02001309
Jean Delvare2236baa2010-11-15 22:40:38 +01001310 /* Sanity checks */
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001311 if (WARN(!adap->name[0], "i2c adapter has no name"))
Wolfram Sangce0dffa2016-07-09 13:34:58 +09001312 goto out_list;
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001313
1314 if (!adap->algo) {
Wolfram Sang44239a52016-07-09 13:35:04 +09001315 pr_err("adapter '%s': no algo supplied!\n", adap->name);
Wolfram Sangce0dffa2016-07-09 13:34:58 +09001316 goto out_list;
Jean Delvare2236baa2010-11-15 22:40:38 +01001317 }
1318
Peter Rosind1ed7982016-08-25 23:07:01 +02001319 if (!adap->lock_ops)
1320 adap->lock_ops = &i2c_adapter_lock_ops;
Peter Rosin8320f492016-05-04 22:15:27 +02001321
Wolfram Sang9ac6cb52018-12-19 17:48:17 +01001322 adap->locked_flags = 0;
Mika Kuoppala194684e2009-12-06 17:06:22 +01001323 rt_mutex_init(&adap->bus_lock);
Peter Rosin6ef91fc2016-05-04 22:15:29 +02001324 rt_mutex_init(&adap->mux_lock);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001325 mutex_init(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001326 INIT_LIST_HEAD(&adap->userspace_clients);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Jean Delvare8fcfef62009-03-28 21:34:43 +01001328 /* Set default timeout to 1 second if not already set */
1329 if (adap->timeout == 0)
1330 adap->timeout = HZ;
1331
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +02001332 /* register soft irqs for Host Notify */
1333 res = i2c_setup_host_notify_irq_domain(adap);
1334 if (res) {
1335 pr_err("adapter '%s': can't create Host Notify IRQs (%d)\n",
1336 adap->name, res);
1337 goto out_list;
1338 }
1339
Kay Sievers27d9c182009-01-07 14:29:16 +01001340 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001341 adap->dev.bus = &i2c_bus_type;
1342 adap->dev.type = &i2c_adapter_type;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001343 res = device_register(&adap->dev);
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001344 if (res) {
Wolfram Sang44239a52016-07-09 13:35:04 +09001345 pr_err("adapter '%s': can't register device (%d)\n", adap->name, res);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001346 goto out_list;
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Phil Reidf8756c62017-08-24 17:31:04 +08001349 res = of_i2c_setup_smbus_alert(adap);
1350 if (res)
1351 goto out_reg;
1352
Jean Delvareb6d7b3d2005-07-31 19:02:53 +02001353 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1354
Charles Keepax6ada5c12015-04-16 13:05:19 +01001355 pm_runtime_no_callbacks(&adap->dev);
Linus Walleij04f59142016-04-12 09:57:35 +02001356 pm_suspend_ignore_children(&adap->dev, true);
Wolfram Sang9f924162015-12-23 18:19:28 +01001357 pm_runtime_enable(&adap->dev);
Charles Keepax6ada5c12015-04-16 13:05:19 +01001358
Jean Delvare2bb50952009-09-18 22:45:46 +02001359#ifdef CONFIG_I2C_COMPAT
1360 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1361 adap->dev.parent);
1362 if (res)
1363 dev_warn(&adap->dev,
1364 "Failed to create compatibility class link\n");
1365#endif
1366
Wolfram Sangd3b11d82016-07-09 13:34:59 +09001367 i2c_init_recovery(adap);
Viresh Kumar5f9296b2012-02-28 18:26:31 +05301368
Jean Delvare729d6dd2009-06-19 16:58:18 +02001369 /* create pre-declared device nodes */
Wolfram Sang687b81d2013-07-11 12:56:15 +01001370 of_i2c_register_devices(adap);
Jarkko Nikulaaec809f2016-08-12 17:02:52 +03001371 i2c_acpi_register_devices(adap);
1372 i2c_acpi_install_space_handler(adap);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001373
David Brownell6e13e642007-05-01 23:26:31 +02001374 if (adap->nr < __i2c_first_dynamic_bus_num)
1375 i2c_scan_static_board_info(adap);
1376
Jean Delvare4735c982008-07-14 22:38:36 +02001377 /* Notify drivers */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001378 mutex_lock(&core_lock);
Jean Delvared6703282010-08-11 18:20:59 +02001379 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
Jean Delvarecaada322008-01-27 18:14:49 +01001380 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001381
1382 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001383
Phil Reidf8756c62017-08-24 17:31:04 +08001384out_reg:
1385 init_completion(&adap->dev_released);
1386 device_unregister(&adap->dev);
1387 wait_for_completion(&adap->dev_released);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001388out_list:
Jean Delvare35fc37f2009-06-19 16:58:19 +02001389 mutex_lock(&core_lock);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001390 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001391 mutex_unlock(&core_lock);
1392 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
David Brownell6e13e642007-05-01 23:26:31 +02001395/**
Doug Andersonee5c2742013-03-01 08:57:31 -08001396 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1397 * @adap: the adapter to register (with adap->nr initialized)
1398 * Context: can sleep
1399 *
1400 * See i2c_add_numbered_adapter() for details.
1401 */
1402static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1403{
Wolfram Sang84d0b612016-07-09 13:35:01 +09001404 int id;
Doug Andersonee5c2742013-03-01 08:57:31 -08001405
1406 mutex_lock(&core_lock);
Wolfram Sang84d0b612016-07-09 13:35:01 +09001407 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1, GFP_KERNEL);
Doug Andersonee5c2742013-03-01 08:57:31 -08001408 mutex_unlock(&core_lock);
Wolfram Sang84d0b612016-07-09 13:35:01 +09001409 if (WARN(id < 0, "couldn't get idr"))
Doug Andersonee5c2742013-03-01 08:57:31 -08001410 return id == -ENOSPC ? -EBUSY : id;
1411
1412 return i2c_register_adapter(adap);
1413}
1414
1415/**
David Brownell6e13e642007-05-01 23:26:31 +02001416 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1417 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +02001418 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001419 *
1420 * This routine is used to declare an I2C adapter when its bus number
Doug Andersonee5c2742013-03-01 08:57:31 -08001421 * doesn't matter or when its bus number is specified by an dt alias.
1422 * Examples of bases when the bus number doesn't matter: I2C adapters
1423 * dynamically added by USB links or PCI plugin cards.
David Brownell6e13e642007-05-01 23:26:31 +02001424 *
1425 * When this returns zero, a new bus number was allocated and stored
1426 * in adap->nr, and the specified adapter became available for clients.
1427 * Otherwise, a negative errno value is returned.
1428 */
1429int i2c_add_adapter(struct i2c_adapter *adapter)
1430{
Doug Andersonee5c2742013-03-01 08:57:31 -08001431 struct device *dev = &adapter->dev;
Tejun Heo4ae42b02013-02-27 17:04:15 -08001432 int id;
David Brownell6e13e642007-05-01 23:26:31 +02001433
Doug Andersonee5c2742013-03-01 08:57:31 -08001434 if (dev->of_node) {
1435 id = of_alias_get_id(dev->of_node, "i2c");
1436 if (id >= 0) {
1437 adapter->nr = id;
1438 return __i2c_add_numbered_adapter(adapter);
1439 }
1440 }
1441
Jean Delvarecaada322008-01-27 18:14:49 +01001442 mutex_lock(&core_lock);
Tejun Heo4ae42b02013-02-27 17:04:15 -08001443 id = idr_alloc(&i2c_adapter_idr, adapter,
1444 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
Jean Delvarecaada322008-01-27 18:14:49 +01001445 mutex_unlock(&core_lock);
Wolfram Sang84d0b612016-07-09 13:35:01 +09001446 if (WARN(id < 0, "couldn't get idr"))
Tejun Heo4ae42b02013-02-27 17:04:15 -08001447 return id;
David Brownell6e13e642007-05-01 23:26:31 +02001448
1449 adapter->nr = id;
Tejun Heo4ae42b02013-02-27 17:04:15 -08001450
David Brownell6e13e642007-05-01 23:26:31 +02001451 return i2c_register_adapter(adapter);
1452}
1453EXPORT_SYMBOL(i2c_add_adapter);
1454
1455/**
1456 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1457 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +02001458 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001459 *
1460 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +01001461 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1462 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +02001463 * is used to properly configure I2C devices.
1464 *
Grant Likely488bf312011-07-25 17:49:43 +02001465 * If the requested bus number is set to -1, then this function will behave
1466 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1467 *
David Brownell6e13e642007-05-01 23:26:31 +02001468 * If no devices have pre-been declared for this bus, then be sure to
1469 * register the adapter before any dynamically allocated ones. Otherwise
1470 * the required bus ID may not be available.
1471 *
1472 * When this returns zero, the specified adapter became available for
1473 * clients using the bus number provided in adap->nr. Also, the table
1474 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1475 * and the appropriate driver model device nodes are created. Otherwise, a
1476 * negative errno value is returned.
1477 */
1478int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1479{
Grant Likely488bf312011-07-25 17:49:43 +02001480 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1481 return i2c_add_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001482
Doug Andersonee5c2742013-03-01 08:57:31 -08001483 return __i2c_add_numbered_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001484}
1485EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1486
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001487static void i2c_do_del_adapter(struct i2c_driver *driver,
Jean Delvare69b00892009-12-06 17:06:27 +01001488 struct i2c_adapter *adapter)
Jean Delvare026526f2008-01-27 18:14:49 +01001489{
Jean Delvare4735c982008-07-14 22:38:36 +02001490 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +01001491
Jean Delvareacec2112009-03-28 21:34:40 +01001492 /* Remove the devices we created ourselves as the result of hardware
1493 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +02001494 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1495 if (client->adapter == adapter) {
1496 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1497 client->name, client->addr);
1498 list_del(&client->detected);
1499 i2c_unregister_device(client);
1500 }
1501 }
Jean Delvare026526f2008-01-27 18:14:49 +01001502}
1503
Jean Delvaree549c2b2009-06-19 16:58:19 +02001504static int __unregister_client(struct device *dev, void *dummy)
1505{
1506 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvare5219bf82011-01-14 22:03:49 +01001507 if (client && strcmp(client->name, "dummy"))
1508 i2c_unregister_device(client);
1509 return 0;
1510}
1511
1512static int __unregister_dummy(struct device *dev, void *dummy)
1513{
1514 struct i2c_client *client = i2c_verify_client(dev);
Andy Shevchenko7b43dd12017-10-31 16:21:35 +02001515 i2c_unregister_device(client);
Jean Delvaree549c2b2009-06-19 16:58:19 +02001516 return 0;
1517}
1518
Jean Delvare69b00892009-12-06 17:06:27 +01001519static int __process_removed_adapter(struct device_driver *d, void *data)
1520{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001521 i2c_do_del_adapter(to_i2c_driver(d), data);
1522 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001523}
1524
David Brownelld64f73b2007-07-12 14:12:28 +02001525/**
1526 * i2c_del_adapter - unregister I2C adapter
1527 * @adap: the adapter being unregistered
1528 * Context: can sleep
1529 *
1530 * This unregisters an I2C adapter which was previously registered
1531 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1532 */
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001533void i2c_del_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Jean Delvare35fc37f2009-06-19 16:58:19 +02001535 struct i2c_adapter *found;
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001536 struct i2c_client *client, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 /* First make sure that this adapter was ever added */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001539 mutex_lock(&core_lock);
1540 found = idr_find(&i2c_adapter_idr, adap->nr);
1541 mutex_unlock(&core_lock);
1542 if (found != adap) {
Wolfram Sang44239a52016-07-09 13:35:04 +09001543 pr_debug("attempting to delete unregistered adapter [%s]\n", adap->name);
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001544 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546
Jarkko Nikulaaec809f2016-08-12 17:02:52 +03001547 i2c_acpi_remove_space_handler(adap);
Jean Delvare026526f2008-01-27 18:14:49 +01001548 /* Tell drivers about this removal */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001549 mutex_lock(&core_lock);
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001550 bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +01001551 __process_removed_adapter);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001552 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001554 /* Remove devices instantiated from sysfs */
Jean Delvare390946b2012-09-10 10:14:02 +02001555 mutex_lock_nested(&adap->userspace_clients_lock,
1556 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02001557 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1558 detected) {
1559 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1560 client->addr);
1561 list_del(&client->detected);
1562 i2c_unregister_device(client);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001563 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02001564 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001565
Jean Delvaree549c2b2009-06-19 16:58:19 +02001566 /* Detach any active clients. This can't fail, thus we do not
Jean Delvare5219bf82011-01-14 22:03:49 +01001567 * check the returned value. This is a two-pass process, because
1568 * we can't remove the dummy devices during the first pass: they
1569 * could have been instantiated by real devices wishing to clean
1570 * them up properly, so we give them a chance to do that first. */
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001571 device_for_each_child(&adap->dev, NULL, __unregister_client);
1572 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Jean Delvare2bb50952009-09-18 22:45:46 +02001574#ifdef CONFIG_I2C_COMPAT
1575 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
1576 adap->dev.parent);
1577#endif
1578
Thadeu Lima de Souza Cascardoc5567522010-01-16 20:43:13 +01001579 /* device name is gone after device_unregister */
1580 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1581
Wolfram Sang9f924162015-12-23 18:19:28 +01001582 pm_runtime_disable(&adap->dev);
1583
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +02001584 i2c_host_notify_irq_teardown(adap);
1585
Wolfram Sang26680ee2015-01-29 22:45:09 +01001586 /* wait until all references to the device are gone
1587 *
1588 * FIXME: This is old code and should ideally be replaced by an
1589 * alternative which results in decoupling the lifetime of the struct
1590 * device from the i2c_adapter, like spi or netdev do. Any solution
Shailendra Verma95cc1e32015-05-18 22:24:01 +05301591 * should be thoroughly tested with DEBUG_KOBJECT_RELEASE enabled!
Wolfram Sang26680ee2015-01-29 22:45:09 +01001592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
David Brownell6e13e642007-05-01 23:26:31 +02001597 /* free bus id */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001598 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001600 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Jean Delvarebd4bc3db2008-07-16 19:30:05 +02001602 /* Clear the device structure in case this adapter is ever going to be
1603 added again */
1604 memset(&adap->dev, 0, sizeof(adap->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
David Brownellc0564602007-05-01 23:26:31 +02001606EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Wolfram Sang54177cc2015-12-17 13:32:36 +01001608/**
1609 * i2c_parse_fw_timings - get I2C related timing parameters from firmware
1610 * @dev: The device to scan for I2C timing properties
1611 * @t: the i2c_timings struct to be filled with values
1612 * @use_defaults: bool to use sane defaults derived from the I2C specification
1613 * when properties are not found, otherwise use 0
1614 *
1615 * Scan the device for the generic I2C properties describing timing parameters
1616 * for the signal and fill the given struct with the results. If a property was
1617 * not found and use_defaults was true, then maximum timings are assumed which
1618 * are derived from the I2C specification. If use_defaults is not used, the
1619 * results will be 0, so drivers can apply their own defaults later. The latter
1620 * is mainly intended for avoiding regressions of existing drivers which want
1621 * to switch to this function. New drivers almost always should use the defaults.
1622 */
1623
1624void i2c_parse_fw_timings(struct device *dev, struct i2c_timings *t, bool use_defaults)
1625{
1626 int ret;
1627
1628 memset(t, 0, sizeof(*t));
1629
1630 ret = device_property_read_u32(dev, "clock-frequency", &t->bus_freq_hz);
1631 if (ret && use_defaults)
1632 t->bus_freq_hz = 100000;
1633
1634 ret = device_property_read_u32(dev, "i2c-scl-rising-time-ns", &t->scl_rise_ns);
1635 if (ret && use_defaults) {
1636 if (t->bus_freq_hz <= 100000)
1637 t->scl_rise_ns = 1000;
1638 else if (t->bus_freq_hz <= 400000)
1639 t->scl_rise_ns = 300;
1640 else
1641 t->scl_rise_ns = 120;
1642 }
1643
1644 ret = device_property_read_u32(dev, "i2c-scl-falling-time-ns", &t->scl_fall_ns);
1645 if (ret && use_defaults) {
1646 if (t->bus_freq_hz <= 400000)
1647 t->scl_fall_ns = 300;
1648 else
1649 t->scl_fall_ns = 120;
1650 }
1651
1652 device_property_read_u32(dev, "i2c-scl-internal-delay-ns", &t->scl_int_delay_ns);
1653
1654 ret = device_property_read_u32(dev, "i2c-sda-falling-time-ns", &t->sda_fall_ns);
1655 if (ret && use_defaults)
1656 t->sda_fall_ns = t->scl_fall_ns;
Andy Shevchenko4717be72018-07-25 17:39:25 +03001657
1658 device_property_read_u32(dev, "i2c-sda-hold-time-ns", &t->sda_hold_ns);
Wolfram Sang54177cc2015-12-17 13:32:36 +01001659}
1660EXPORT_SYMBOL_GPL(i2c_parse_fw_timings);
1661
David Brownell7b4fbc52007-05-01 23:26:30 +02001662/* ------------------------------------------------------------------------- */
1663
Wolfram Sangedd7a562019-06-03 10:25:33 +02001664int i2c_for_each_dev(void *data, int (*fn)(struct device *dev, void *data))
Jean Delvare7ae31482011-03-20 14:50:52 +01001665{
1666 int res;
1667
1668 mutex_lock(&core_lock);
1669 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
1670 mutex_unlock(&core_lock);
1671
1672 return res;
1673}
1674EXPORT_SYMBOL_GPL(i2c_for_each_dev);
1675
Jean Delvare69b00892009-12-06 17:06:27 +01001676static int __process_new_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001677{
Jean Delvare4f8cf822009-09-18 22:45:46 +02001678 if (dev->type != &i2c_adapter_type)
1679 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001680 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +02001681}
1682
David Brownell7b4fbc52007-05-01 23:26:30 +02001683/*
1684 * An i2c_driver is used with one or more i2c_client (device) nodes to access
Jean Delvare729d6dd2009-06-19 16:58:18 +02001685 * i2c slave chips, on a bus instance associated with some i2c_adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 */
1687
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001688int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Jean Delvare7eebcb72006-02-05 23:28:21 +01001690 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
David Brownell1d0b19c2008-10-14 17:30:05 +02001692 /* Can't register until after driver model init */
Sudip Mukherjee95026652016-03-07 17:19:17 +05301693 if (WARN_ON(!is_registered))
David Brownell1d0b19c2008-10-14 17:30:05 +02001694 return -EAGAIN;
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001697 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 driver->driver.bus = &i2c_bus_type;
Vladimir Zapolskiy147b36d2016-10-31 21:46:24 +02001699 INIT_LIST_HEAD(&driver->clients);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Jean Delvare729d6dd2009-06-19 16:58:18 +02001701 /* When registration returns, the driver core
David Brownell6e13e642007-05-01 23:26:31 +02001702 * will have called probe() for all matching-but-unbound devices.
1703 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 res = driver_register(&driver->driver);
1705 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +01001706 return res;
David Brownell438d6c22006-12-10 21:21:31 +01001707
Wolfram Sang44239a52016-07-09 13:35:04 +09001708 pr_debug("driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Jean Delvare4735c982008-07-14 22:38:36 +02001710 /* Walk the adapters that are already present */
Jean Delvare7ae31482011-03-20 14:50:52 +01001711 i2c_for_each_dev(driver, __process_new_driver);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001712
Jean Delvare7eebcb72006-02-05 23:28:21 +01001713 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001715EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Jean Delvare69b00892009-12-06 17:06:27 +01001717static int __process_removed_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001718{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001719 if (dev->type == &i2c_adapter_type)
1720 i2c_do_del_adapter(data, to_i2c_adapter(dev));
1721 return 0;
Dave Young7f101a92008-07-14 22:38:19 +02001722}
1723
David Brownella1d9e6e2007-05-01 23:26:30 +02001724/**
1725 * i2c_del_driver - unregister I2C driver
1726 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +02001727 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +02001728 */
Jean Delvareb3e82092007-05-01 23:26:32 +02001729void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Jean Delvare7ae31482011-03-20 14:50:52 +01001731 i2c_for_each_dev(driver, __process_removed_driver);
David Brownella1d9e6e2007-05-01 23:26:30 +02001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 driver_unregister(&driver->driver);
Wolfram Sang44239a52016-07-09 13:35:04 +09001734 pr_debug("driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
David Brownellc0564602007-05-01 23:26:31 +02001736EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
David Brownell7b4fbc52007-05-01 23:26:30 +02001738/* ------------------------------------------------------------------------- */
1739
Jean Delvaree48d3312008-01-27 18:14:48 +01001740/**
1741 * i2c_use_client - increments the reference count of the i2c client structure
1742 * @client: the client being referenced
1743 *
1744 * Each live reference to a client should be refcounted. The driver model does
1745 * that automatically as part of driver binding, so that most drivers don't
1746 * need to do this explicitly: they hold a reference until they're unbound
1747 * from the device.
1748 *
1749 * A pointer to the client with the incremented reference counter is returned.
1750 */
1751struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
David Brownell6ea438e2008-07-14 22:38:24 +02001753 if (client && get_device(&client->dev))
1754 return client;
1755 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
David Brownellc0564602007-05-01 23:26:31 +02001757EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Jean Delvaree48d3312008-01-27 18:14:48 +01001759/**
1760 * i2c_release_client - release a use of the i2c client structure
1761 * @client: the client being no longer referenced
1762 *
1763 * Must be called when a user of a client is finished with it.
1764 */
1765void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
David Brownell6ea438e2008-07-14 22:38:24 +02001767 if (client)
1768 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
David Brownellc0564602007-05-01 23:26:31 +02001770EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
David Brownell9b766b82008-01-27 18:14:51 +01001772struct i2c_cmd_arg {
1773 unsigned cmd;
1774 void *arg;
1775};
1776
1777static int i2c_cmd(struct device *dev, void *_arg)
1778{
1779 struct i2c_client *client = i2c_verify_client(dev);
1780 struct i2c_cmd_arg *arg = _arg;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02001781 struct i2c_driver *driver;
David Brownell9b766b82008-01-27 18:14:51 +01001782
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02001783 if (!client || !client->dev.driver)
1784 return 0;
1785
1786 driver = to_i2c_driver(client->dev.driver);
1787 if (driver->command)
1788 driver->command(client, arg->cmd, arg->arg);
David Brownell9b766b82008-01-27 18:14:51 +01001789 return 0;
1790}
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1793{
David Brownell9b766b82008-01-27 18:14:51 +01001794 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
David Brownell9b766b82008-01-27 18:14:51 +01001796 cmd_arg.cmd = cmd;
1797 cmd_arg.arg = arg;
1798 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
David Brownellc0564602007-05-01 23:26:31 +02001800EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802static int __init i2c_init(void)
1803{
1804 int retval;
1805
Wolfram Sang03bde7c2015-03-12 17:17:59 +01001806 retval = of_alias_get_highest_id("i2c");
1807
1808 down_write(&__i2c_board_lock);
1809 if (retval >= __i2c_first_dynamic_bus_num)
1810 __i2c_first_dynamic_bus_num = retval + 1;
1811 up_write(&__i2c_board_lock);
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 retval = bus_register(&i2c_bus_type);
1814 if (retval)
1815 return retval;
Wolfram Sangb980a262016-03-14 10:41:52 +01001816
1817 is_registered = true;
1818
Jean Delvare2bb50952009-09-18 22:45:46 +02001819#ifdef CONFIG_I2C_COMPAT
1820 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1821 if (!i2c_adapter_compat_class) {
1822 retval = -ENOMEM;
1823 goto bus_err;
1824 }
1825#endif
David Brownelle9f13732008-01-27 18:14:52 +01001826 retval = i2c_add_driver(&dummy_driver);
1827 if (retval)
Jean Delvare2bb50952009-09-18 22:45:46 +02001828 goto class_err;
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02001829
1830 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
1831 WARN_ON(of_reconfig_notifier_register(&i2c_of_notifier));
Octavian Purdila525e6fa2016-07-08 19:13:10 +03001832 if (IS_ENABLED(CONFIG_ACPI))
1833 WARN_ON(acpi_reconfig_notifier_register(&i2c_acpi_notifier));
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02001834
David Brownelle9f13732008-01-27 18:14:52 +01001835 return 0;
1836
Jean Delvare2bb50952009-09-18 22:45:46 +02001837class_err:
1838#ifdef CONFIG_I2C_COMPAT
1839 class_compat_unregister(i2c_adapter_compat_class);
David Brownelle9f13732008-01-27 18:14:52 +01001840bus_err:
Jean Delvare2bb50952009-09-18 22:45:46 +02001841#endif
Wolfram Sangb980a262016-03-14 10:41:52 +01001842 is_registered = false;
David Brownelle9f13732008-01-27 18:14:52 +01001843 bus_unregister(&i2c_bus_type);
1844 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
1847static void __exit i2c_exit(void)
1848{
Octavian Purdila525e6fa2016-07-08 19:13:10 +03001849 if (IS_ENABLED(CONFIG_ACPI))
1850 WARN_ON(acpi_reconfig_notifier_unregister(&i2c_acpi_notifier));
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02001851 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
1852 WARN_ON(of_reconfig_notifier_unregister(&i2c_of_notifier));
David Brownelle9f13732008-01-27 18:14:52 +01001853 i2c_del_driver(&dummy_driver);
Jean Delvare2bb50952009-09-18 22:45:46 +02001854#ifdef CONFIG_I2C_COMPAT
1855 class_compat_unregister(i2c_adapter_compat_class);
1856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 bus_unregister(&i2c_bus_type);
David Howellsd9a83d62014-03-06 13:35:59 +00001858 tracepoint_synchronize_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859}
1860
David Brownella10f9e72008-10-14 17:30:06 +02001861/* We must initialize early, because some subsystems register i2c drivers
1862 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1863 */
1864postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865module_exit(i2c_exit);
1866
1867/* ----------------------------------------------------
1868 * the functional interface to the i2c busses.
1869 * ----------------------------------------------------
1870 */
1871
Wolfram Sangb7f62582015-01-05 23:45:59 +01001872/* Check if val is exceeding the quirk IFF quirk is non 0 */
1873#define i2c_quirk_exceeded(val, quirk) ((quirk) && ((val) > (quirk)))
1874
1875static int i2c_quirk_error(struct i2c_adapter *adap, struct i2c_msg *msg, char *err_msg)
1876{
1877 dev_err_ratelimited(&adap->dev, "adapter quirk: %s (addr 0x%04x, size %u, %s)\n",
1878 err_msg, msg->addr, msg->len,
1879 msg->flags & I2C_M_RD ? "read" : "write");
1880 return -EOPNOTSUPP;
1881}
1882
1883static int i2c_check_for_quirks(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1884{
1885 const struct i2c_adapter_quirks *q = adap->quirks;
1886 int max_num = q->max_num_msgs, i;
1887 bool do_len_check = true;
1888
1889 if (q->flags & I2C_AQ_COMB) {
1890 max_num = 2;
1891
1892 /* special checks for combined messages */
1893 if (num == 2) {
1894 if (q->flags & I2C_AQ_COMB_WRITE_FIRST && msgs[0].flags & I2C_M_RD)
1895 return i2c_quirk_error(adap, &msgs[0], "1st comb msg must be write");
1896
1897 if (q->flags & I2C_AQ_COMB_READ_SECOND && !(msgs[1].flags & I2C_M_RD))
1898 return i2c_quirk_error(adap, &msgs[1], "2nd comb msg must be read");
1899
1900 if (q->flags & I2C_AQ_COMB_SAME_ADDR && msgs[0].addr != msgs[1].addr)
1901 return i2c_quirk_error(adap, &msgs[0], "comb msg only to same addr");
1902
1903 if (i2c_quirk_exceeded(msgs[0].len, q->max_comb_1st_msg_len))
1904 return i2c_quirk_error(adap, &msgs[0], "msg too long");
1905
1906 if (i2c_quirk_exceeded(msgs[1].len, q->max_comb_2nd_msg_len))
1907 return i2c_quirk_error(adap, &msgs[1], "msg too long");
1908
1909 do_len_check = false;
1910 }
1911 }
1912
1913 if (i2c_quirk_exceeded(num, max_num))
1914 return i2c_quirk_error(adap, &msgs[0], "too many messages");
1915
1916 for (i = 0; i < num; i++) {
1917 u16 len = msgs[i].len;
1918
1919 if (msgs[i].flags & I2C_M_RD) {
1920 if (do_len_check && i2c_quirk_exceeded(len, q->max_read_len))
1921 return i2c_quirk_error(adap, &msgs[i], "msg too long");
Wolfram Sangd9cfe2c2018-07-23 22:26:05 +02001922
1923 if (q->flags & I2C_AQ_NO_ZERO_LEN_READ && len == 0)
1924 return i2c_quirk_error(adap, &msgs[i], "no zero length");
Wolfram Sangb7f62582015-01-05 23:45:59 +01001925 } else {
1926 if (do_len_check && i2c_quirk_exceeded(len, q->max_write_len))
1927 return i2c_quirk_error(adap, &msgs[i], "msg too long");
Wolfram Sangd9cfe2c2018-07-23 22:26:05 +02001928
1929 if (q->flags & I2C_AQ_NO_ZERO_LEN_WRITE && len == 0)
1930 return i2c_quirk_error(adap, &msgs[i], "no zero length");
Wolfram Sangb7f62582015-01-05 23:45:59 +01001931 }
1932 }
1933
1934 return 0;
1935}
1936
David Brownella1cdeda2008-07-14 22:38:24 +02001937/**
Jean Delvareb37d2a32012-06-29 07:47:19 -03001938 * __i2c_transfer - unlocked flavor of i2c_transfer
1939 * @adap: Handle to I2C bus
1940 * @msgs: One or more messages to execute before STOP is issued to
1941 * terminate the operation; each message begins with a START.
1942 * @num: Number of messages to be executed.
1943 *
1944 * Returns negative errno, else the number of messages executed.
1945 *
1946 * Adapter lock must be held when calling this function. No debug logging
1947 * takes place. adap->algo->master_xfer existence isn't checked.
1948 */
1949int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
1950{
1951 unsigned long orig_jiffies;
1952 int ret, try;
1953
Ard Biesheuvel1eace832018-04-03 21:11:50 +02001954 if (WARN_ON(!msgs || num < 1))
1955 return -EINVAL;
Wolfram Sang5d756112019-04-25 16:19:48 +02001956
1957 ret = __i2c_check_suspended(adap);
1958 if (ret)
1959 return ret;
Ard Biesheuvel1eace832018-04-03 21:11:50 +02001960
Wolfram Sangb7f62582015-01-05 23:45:59 +01001961 if (adap->quirks && i2c_check_for_quirks(adap, msgs, num))
1962 return -EOPNOTSUPP;
1963
Davidlohr Bueso50888b02018-03-26 14:09:24 -07001964 /*
1965 * i2c_trace_msg_key gets enabled when tracepoint i2c_transfer gets
David Howellsd9a83d62014-03-06 13:35:59 +00001966 * enabled. This is an efficient way of keeping the for-loop from
1967 * being executed when not needed.
1968 */
Davidlohr Bueso50888b02018-03-26 14:09:24 -07001969 if (static_branch_unlikely(&i2c_trace_msg_key)) {
David Howellsd9a83d62014-03-06 13:35:59 +00001970 int i;
1971 for (i = 0; i < num; i++)
1972 if (msgs[i].flags & I2C_M_RD)
1973 trace_i2c_read(adap, &msgs[i], i);
1974 else
1975 trace_i2c_write(adap, &msgs[i], i);
1976 }
1977
Jean Delvareb37d2a32012-06-29 07:47:19 -03001978 /* Retry automatically on arbitration loss */
1979 orig_jiffies = jiffies;
1980 for (ret = 0, try = 0; try <= adap->retries; try++) {
Wolfram Sang63b96982019-04-03 14:40:10 +02001981 if (i2c_in_atomic_xfer_mode() && adap->algo->master_xfer_atomic)
1982 ret = adap->algo->master_xfer_atomic(adap, msgs, num);
1983 else
1984 ret = adap->algo->master_xfer(adap, msgs, num);
1985
Jean Delvareb37d2a32012-06-29 07:47:19 -03001986 if (ret != -EAGAIN)
1987 break;
1988 if (time_after(jiffies, orig_jiffies + adap->timeout))
1989 break;
1990 }
1991
Davidlohr Bueso50888b02018-03-26 14:09:24 -07001992 if (static_branch_unlikely(&i2c_trace_msg_key)) {
David Howellsd9a83d62014-03-06 13:35:59 +00001993 int i;
1994 for (i = 0; i < ret; i++)
1995 if (msgs[i].flags & I2C_M_RD)
1996 trace_i2c_reply(adap, &msgs[i], i);
Ahbong Chang4a3f7692018-03-31 16:17:34 +08001997 trace_i2c_result(adap, num, ret);
David Howellsd9a83d62014-03-06 13:35:59 +00001998 }
1999
Jean Delvareb37d2a32012-06-29 07:47:19 -03002000 return ret;
2001}
2002EXPORT_SYMBOL(__i2c_transfer);
2003
2004/**
David Brownella1cdeda2008-07-14 22:38:24 +02002005 * i2c_transfer - execute a single or combined I2C message
2006 * @adap: Handle to I2C bus
2007 * @msgs: One or more messages to execute before STOP is issued to
2008 * terminate the operation; each message begins with a START.
2009 * @num: Number of messages to be executed.
2010 *
2011 * Returns negative errno, else the number of messages executed.
2012 *
2013 * Note that there is no requirement that each message be sent to
2014 * the same slave address, although that is the most common model.
2015 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002016int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Jean Delvareb37d2a32012-06-29 07:47:19 -03002018 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Wolfram Sangcc526122018-09-20 18:14:21 +02002020 if (!adap->algo->master_xfer) {
2021 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
2022 return -EOPNOTSUPP;
2023 }
2024
David Brownella1cdeda2008-07-14 22:38:24 +02002025 /* REVISIT the fault reporting model here is weak:
2026 *
2027 * - When we get an error after receiving N bytes from a slave,
2028 * there is no way to report "N".
2029 *
2030 * - When we get a NAK after transmitting N bytes to a slave,
2031 * there is no way to report "N" ... or to let the master
2032 * continue executing the rest of this combined message, if
2033 * that's the appropriate response.
2034 *
2035 * - When for example "num" is two and we successfully complete
2036 * the first message but get an error part way through the
2037 * second, it's unclear whether that should be reported as
2038 * one (discarding status on the second message) or errno
2039 * (discarding status on the first one).
2040 */
Wolfram Sang83c42212019-04-03 14:40:09 +02002041 ret = __i2c_lock_bus_helper(adap);
2042 if (ret)
2043 return ret;
Wolfram Sangcc526122018-09-20 18:14:21 +02002044
2045 ret = __i2c_transfer(adap, msgs, num);
2046 i2c_unlock_bus(adap, I2C_LOCK_SEGMENT);
2047
2048 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
David Brownellc0564602007-05-01 23:26:31 +02002050EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
David Brownella1cdeda2008-07-14 22:38:24 +02002052/**
Wolfram Sang8a917322017-11-04 21:20:04 +01002053 * i2c_transfer_buffer_flags - issue a single I2C message transferring data
2054 * to/from a buffer
David Brownella1cdeda2008-07-14 22:38:24 +02002055 * @client: Handle to slave device
Wolfram Sang8a917322017-11-04 21:20:04 +01002056 * @buf: Where the data is stored
2057 * @count: How many bytes to transfer, must be less than 64k since msg.len is u16
2058 * @flags: The flags to be used for the message, e.g. I2C_M_RD for reads
David Brownella1cdeda2008-07-14 22:38:24 +02002059 *
Wolfram Sang8a917322017-11-04 21:20:04 +01002060 * Returns negative errno, or else the number of bytes transferred.
David Brownella1cdeda2008-07-14 22:38:24 +02002061 */
Wolfram Sang8a917322017-11-04 21:20:04 +01002062int i2c_transfer_buffer_flags(const struct i2c_client *client, char *buf,
2063 int count, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 int ret;
Wolfram Sang8a917322017-11-04 21:20:04 +01002066 struct i2c_msg msg = {
2067 .addr = client->addr,
2068 .flags = flags | (client->flags & I2C_M_TEN),
2069 .len = count,
2070 .buf = buf,
2071 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Wolfram Sang8a917322017-11-04 21:20:04 +01002073 ret = i2c_transfer(client->adapter, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Wolfram Sang834aa6f2012-03-15 18:11:05 +01002075 /*
Wolfram Sang8a917322017-11-04 21:20:04 +01002076 * If everything went ok (i.e. 1 msg transferred), return #bytes
2077 * transferred, else error code.
Wolfram Sang834aa6f2012-03-15 18:11:05 +01002078 */
Jean Delvare815f55f2005-05-07 22:58:46 +02002079 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
Wolfram Sang8a917322017-11-04 21:20:04 +01002081EXPORT_SYMBOL(i2c_transfer_buffer_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Peter Rosindde67eb2018-01-22 08:32:01 +01002083/**
2084 * i2c_get_device_id - get manufacturer, part id and die revision of a device
2085 * @client: The device to query
2086 * @id: The queried information
2087 *
2088 * Returns negative errno on error, zero on success.
2089 */
2090int i2c_get_device_id(const struct i2c_client *client,
2091 struct i2c_device_identity *id)
2092{
2093 struct i2c_adapter *adap = client->adapter;
2094 union i2c_smbus_data raw_id;
2095 int ret;
2096
2097 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_I2C_BLOCK))
2098 return -EOPNOTSUPP;
2099
2100 raw_id.block[0] = 3;
2101 ret = i2c_smbus_xfer(adap, I2C_ADDR_DEVICE_ID, 0,
2102 I2C_SMBUS_READ, client->addr << 1,
2103 I2C_SMBUS_I2C_BLOCK_DATA, &raw_id);
2104 if (ret)
2105 return ret;
2106
2107 id->manufacturer_id = (raw_id.block[1] << 4) | (raw_id.block[2] >> 4);
2108 id->part_id = ((raw_id.block[2] & 0xf) << 5) | (raw_id.block[3] >> 3);
2109 id->die_revision = raw_id.block[3] & 0x7;
2110 return 0;
2111}
2112EXPORT_SYMBOL_GPL(i2c_get_device_id);
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114/* ----------------------------------------------------
2115 * the i2c address scanning function
2116 * Will not work for 10-bit addresses!
2117 * ----------------------------------------------------
2118 */
Jean Delvare9fc6adf2005-07-31 21:20:43 +02002119
Jean Delvare63e4e802010-06-03 11:33:51 +02002120/*
2121 * Legacy default probe function, mostly relevant for SMBus. The default
2122 * probe method is a quick write, but it is known to corrupt the 24RF08
2123 * EEPROMs due to a state machine bug, and could also irreversibly
2124 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2125 * we use a short byte read instead. Also, some bus drivers don't implement
2126 * quick write, so we fallback to a byte read in that case too.
2127 * On x86, there is another special case for FSC hardware monitoring chips,
2128 * which want regular byte reads (address 0x73.) Fortunately, these are the
2129 * only known chips using this I2C address on PC hardware.
2130 * Returns 1 if probe succeeded, 0 if not.
2131 */
2132static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
2133{
2134 int err;
2135 union i2c_smbus_data dummy;
2136
2137#ifdef CONFIG_X86
2138 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
2139 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
2140 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2141 I2C_SMBUS_BYTE_DATA, &dummy);
2142 else
2143#endif
Jean Delvare8031d792010-08-11 18:21:00 +02002144 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
2145 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
Jean Delvare63e4e802010-06-03 11:33:51 +02002146 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
2147 I2C_SMBUS_QUICK, NULL);
Jean Delvare8031d792010-08-11 18:21:00 +02002148 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
2149 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2150 I2C_SMBUS_BYTE, &dummy);
2151 else {
Andy Lutomirskid63a9e82013-07-17 13:27:59 -07002152 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
2153 addr);
Jean Delvare8031d792010-08-11 18:21:00 +02002154 err = -EOPNOTSUPP;
2155 }
Jean Delvare63e4e802010-06-03 11:33:51 +02002156
2157 return err >= 0;
2158}
2159
Jean Delvareccfbbd02009-12-06 17:06:25 +01002160static int i2c_detect_address(struct i2c_client *temp_client,
Jean Delvare4735c982008-07-14 22:38:36 +02002161 struct i2c_driver *driver)
2162{
2163 struct i2c_board_info info;
2164 struct i2c_adapter *adapter = temp_client->adapter;
2165 int addr = temp_client->addr;
2166 int err;
2167
2168 /* Make sure the address is valid */
Wolfram Sang66be60562015-07-17 12:43:22 +02002169 err = i2c_check_7bit_addr_validity_strict(addr);
Jean Delvare656b8762010-06-03 11:33:53 +02002170 if (err) {
Jean Delvare4735c982008-07-14 22:38:36 +02002171 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
2172 addr);
Jean Delvare656b8762010-06-03 11:33:53 +02002173 return err;
Jean Delvare4735c982008-07-14 22:38:36 +02002174 }
2175
Wolfram Sang9bccc702015-07-17 14:48:56 +02002176 /* Skip if already in use (7 bit, no need to encode flags) */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002177 if (i2c_check_addr_busy(adapter, addr))
Jean Delvare4735c982008-07-14 22:38:36 +02002178 return 0;
2179
Jean Delvareccfbbd02009-12-06 17:06:25 +01002180 /* Make sure there is something at this address */
Jean Delvare63e4e802010-06-03 11:33:51 +02002181 if (!i2c_default_probe(adapter, addr))
2182 return 0;
Jean Delvare4735c982008-07-14 22:38:36 +02002183
2184 /* Finally call the custom detection function */
2185 memset(&info, 0, sizeof(struct i2c_board_info));
2186 info.addr = addr;
Jean Delvare310ec792009-12-14 21:17:23 +01002187 err = driver->detect(temp_client, &info);
Jean Delvare4735c982008-07-14 22:38:36 +02002188 if (err) {
2189 /* -ENODEV is returned if the detection fails. We catch it
2190 here as this isn't an error. */
2191 return err == -ENODEV ? 0 : err;
2192 }
2193
2194 /* Consistency check */
2195 if (info.type[0] == '\0') {
Andy Shevchenkob93d3d32016-08-25 17:42:10 +03002196 dev_err(&adapter->dev,
2197 "%s detection function provided no name for 0x%x\n",
2198 driver->driver.name, addr);
Jean Delvare4735c982008-07-14 22:38:36 +02002199 } else {
2200 struct i2c_client *client;
2201
2202 /* Detection succeeded, instantiate the device */
Wolfram Sang0c176172014-02-10 11:03:56 +01002203 if (adapter->class & I2C_CLASS_DEPRECATED)
2204 dev_warn(&adapter->dev,
2205 "This adapter will soon drop class based instantiation of devices. "
2206 "Please make sure client 0x%02x gets instantiated by other means. "
2207 "Check 'Documentation/i2c/instantiating-devices' for details.\n",
2208 info.addr);
2209
Jean Delvare4735c982008-07-14 22:38:36 +02002210 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
2211 info.type, info.addr);
2212 client = i2c_new_device(adapter, &info);
2213 if (client)
2214 list_add_tail(&client->detected, &driver->clients);
2215 else
2216 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
2217 info.type, info.addr);
2218 }
2219 return 0;
2220}
2221
2222static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
2223{
Jean Delvarec3813d62009-12-14 21:17:25 +01002224 const unsigned short *address_list;
Jean Delvare4735c982008-07-14 22:38:36 +02002225 struct i2c_client *temp_client;
2226 int i, err = 0;
2227 int adap_id = i2c_adapter_id(adapter);
2228
Jean Delvarec3813d62009-12-14 21:17:25 +01002229 address_list = driver->address_list;
2230 if (!driver->detect || !address_list)
Jean Delvare4735c982008-07-14 22:38:36 +02002231 return 0;
2232
Wolfram Sang45552272014-07-10 13:46:21 +02002233 /* Warn that the adapter lost class based instantiation */
2234 if (adapter->class == I2C_CLASS_DEPRECATED) {
2235 dev_dbg(&adapter->dev,
Andy Shevchenkob93d3d32016-08-25 17:42:10 +03002236 "This adapter dropped support for I2C classes and won't auto-detect %s devices anymore. "
2237 "If you need it, check 'Documentation/i2c/instantiating-devices' for alternatives.\n",
Wolfram Sang45552272014-07-10 13:46:21 +02002238 driver->driver.name);
2239 return 0;
2240 }
2241
Jean Delvare51b54ba2010-10-24 18:16:58 +02002242 /* Stop here if the classes do not match */
2243 if (!(adapter->class & driver->class))
2244 return 0;
2245
Jean Delvare4735c982008-07-14 22:38:36 +02002246 /* Set up a temporary client to help detect callback */
2247 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
2248 if (!temp_client)
2249 return -ENOMEM;
2250 temp_client->adapter = adapter;
2251
Jean Delvarec3813d62009-12-14 21:17:25 +01002252 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
Andy Shevchenkob93d3d32016-08-25 17:42:10 +03002253 dev_dbg(&adapter->dev,
2254 "found normal entry for adapter %d, addr 0x%02x\n",
2255 adap_id, address_list[i]);
Jean Delvarec3813d62009-12-14 21:17:25 +01002256 temp_client->addr = address_list[i];
Jean Delvareccfbbd02009-12-06 17:06:25 +01002257 err = i2c_detect_address(temp_client, driver);
Jean Delvare51b54ba2010-10-24 18:16:58 +02002258 if (unlikely(err))
2259 break;
Jean Delvare4735c982008-07-14 22:38:36 +02002260 }
2261
Jean Delvare4735c982008-07-14 22:38:36 +02002262 kfree(temp_client);
2263 return err;
2264}
2265
Jean Delvared44f19d2010-08-11 18:20:57 +02002266int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
2267{
2268 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2269 I2C_SMBUS_QUICK, NULL) >= 0;
2270}
2271EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
2272
Jean Delvare12b5053a2007-05-01 23:26:31 +02002273struct i2c_client *
2274i2c_new_probed_device(struct i2c_adapter *adap,
2275 struct i2c_board_info *info,
Jean Delvare9a942412010-08-11 18:20:56 +02002276 unsigned short const *addr_list,
Wolfram Sangedd7a562019-06-03 10:25:33 +02002277 int (*probe)(struct i2c_adapter *adap, unsigned short addr))
Jean Delvare12b5053a2007-05-01 23:26:31 +02002278{
2279 int i;
2280
Jean Delvare8031d792010-08-11 18:21:00 +02002281 if (!probe)
Jean Delvare9a942412010-08-11 18:20:56 +02002282 probe = i2c_default_probe;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002283
Jean Delvare12b5053a2007-05-01 23:26:31 +02002284 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2285 /* Check address validity */
Wolfram Sang66be60562015-07-17 12:43:22 +02002286 if (i2c_check_7bit_addr_validity_strict(addr_list[i]) < 0) {
Andy Shevchenkob93d3d32016-08-25 17:42:10 +03002287 dev_warn(&adap->dev, "Invalid 7-bit address 0x%02x\n",
2288 addr_list[i]);
Jean Delvare12b5053a2007-05-01 23:26:31 +02002289 continue;
2290 }
2291
Wolfram Sang9bccc702015-07-17 14:48:56 +02002292 /* Check address availability (7 bit, no need to encode flags) */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002293 if (i2c_check_addr_busy(adap, addr_list[i])) {
Andy Shevchenkob93d3d32016-08-25 17:42:10 +03002294 dev_dbg(&adap->dev,
2295 "Address 0x%02x already in use, not probing\n",
2296 addr_list[i]);
Jean Delvare12b5053a2007-05-01 23:26:31 +02002297 continue;
2298 }
2299
Jean Delvare63e4e802010-06-03 11:33:51 +02002300 /* Test address responsiveness */
Jean Delvare9a942412010-08-11 18:20:56 +02002301 if (probe(adap, addr_list[i]))
Jean Delvare63e4e802010-06-03 11:33:51 +02002302 break;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002303 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02002304
2305 if (addr_list[i] == I2C_CLIENT_END) {
2306 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2307 return NULL;
2308 }
2309
2310 info->addr = addr_list[i];
2311 return i2c_new_device(adap, info);
2312}
2313EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2314
Jean Delvared735b342011-03-20 14:50:52 +01002315struct i2c_adapter *i2c_get_adapter(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01002318
Jean Delvarecaada322008-01-27 18:14:49 +01002319 mutex_lock(&core_lock);
Jean Delvared735b342011-03-20 14:50:52 +01002320 adapter = idr_find(&i2c_adapter_idr, nr);
Vladimir Zapolskiy611e12e2015-07-27 17:30:49 +03002321 if (!adapter)
2322 goto exit;
2323
2324 if (try_module_get(adapter->owner))
2325 get_device(&adapter->dev);
2326 else
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002327 adapter = NULL;
2328
Vladimir Zapolskiy611e12e2015-07-27 17:30:49 +03002329 exit:
Jean Delvarecaada322008-01-27 18:14:49 +01002330 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002331 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
David Brownellc0564602007-05-01 23:26:31 +02002333EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335void i2c_put_adapter(struct i2c_adapter *adap)
2336{
Vladimir Zapolskiy611e12e2015-07-27 17:30:49 +03002337 if (!adap)
2338 return;
2339
2340 put_device(&adap->dev);
2341 module_put(adap->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342}
David Brownellc0564602007-05-01 23:26:31 +02002343EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002345/**
2346 * i2c_get_dma_safe_msg_buf() - get a DMA safe buffer for the given i2c_msg
2347 * @msg: the message to be checked
Wolfram Sangbf263c32019-03-12 13:44:42 +01002348 * @threshold: the minimum number of bytes for which using DMA makes sense.
2349 * Should at least be 1.
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002350 *
2351 * Return: NULL if a DMA safe buffer was not obtained. Use msg->buf with PIO.
2352 * Or a valid pointer to be used with DMA. After use, release it by
Stephen Boyd34d1b822018-10-08 07:55:20 -07002353 * calling i2c_put_dma_safe_msg_buf().
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002354 *
2355 * This function must only be called from process context!
2356 */
2357u8 *i2c_get_dma_safe_msg_buf(struct i2c_msg *msg, unsigned int threshold)
2358{
Wolfram Sangbf263c32019-03-12 13:44:42 +01002359 /* also skip 0-length msgs for bogus thresholds of 0 */
2360 if (!threshold)
2361 pr_debug("DMA buffer for addr=0x%02x with length 0 is bogus\n",
2362 msg->addr);
2363 if (msg->len < threshold || msg->len == 0)
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002364 return NULL;
2365
2366 if (msg->flags & I2C_M_DMA_SAFE)
2367 return msg->buf;
2368
2369 pr_debug("using bounce buffer for addr=0x%02x, len=%d\n",
2370 msg->addr, msg->len);
2371
2372 if (msg->flags & I2C_M_RD)
2373 return kzalloc(msg->len, GFP_KERNEL);
2374 else
2375 return kmemdup(msg->buf, msg->len, GFP_KERNEL);
2376}
2377EXPORT_SYMBOL_GPL(i2c_get_dma_safe_msg_buf);
2378
2379/**
Wolfram Sang82fe39a2018-08-24 16:52:44 +02002380 * i2c_put_dma_safe_msg_buf - release DMA safe buffer and sync with i2c_msg
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002381 * @buf: the buffer obtained from i2c_get_dma_safe_msg_buf(). May be NULL.
Wolfram Sang82fe39a2018-08-24 16:52:44 +02002382 * @msg: the message which the buffer corresponds to
2383 * @xferred: bool saying if the message was transferred
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002384 */
Wolfram Sang82fe39a2018-08-24 16:52:44 +02002385void i2c_put_dma_safe_msg_buf(u8 *buf, struct i2c_msg *msg, bool xferred)
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002386{
2387 if (!buf || buf == msg->buf)
2388 return;
2389
Wolfram Sang82fe39a2018-08-24 16:52:44 +02002390 if (xferred && msg->flags & I2C_M_RD)
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002391 memcpy(msg->buf, buf, msg->len);
2392
2393 kfree(buf);
2394}
Wolfram Sang82fe39a2018-08-24 16:52:44 +02002395EXPORT_SYMBOL_GPL(i2c_put_dma_safe_msg_buf);
Wolfram Sange94bc5d2017-11-04 21:20:02 +01002396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2398MODULE_DESCRIPTION("I2C-Bus main module");
2399MODULE_LICENSE("GPL");