1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
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@kernel.org>
11 */
12
13 #define pr_fmt(fmt) "i2c-core: " fmt
14
15 #include <dt-bindings/i2c/i2c.h>
16 #include <linux/acpi.h>
17 #include <linux/clk/clk-conf.h>
18 #include <linux/completion.h>
19 #include <linux/debugfs.h>
20 #include <linux/delay.h>
21 #include <linux/err.h>
22 #include <linux/errno.h>
23 #include <linux/gpio/consumer.h>
24 #include <linux/i2c.h>
25 #include <linux/i2c-smbus.h>
26 #include <linux/idr.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/irq.h>
30 #include <linux/jump_label.h>
31 #include <linux/kernel.h>
32 #include <linux/module.h>
33 #include <linux/mutex.h>
34 #include <linux/of_device.h>
35 #include <linux/of.h>
36 #include <linux/pinctrl/consumer.h>
37 #include <linux/pinctrl/devinfo.h>
38 #include <linux/pm_domain.h>
39 #include <linux/pm_runtime.h>
40 #include <linux/pm_wakeirq.h>
41 #include <linux/property.h>
42 #include <linux/rwsem.h>
43 #include <linux/slab.h>
44 #include <linux/string_choices.h>
45
46 #include "i2c-core.h"
47
48 #define CREATE_TRACE_POINTS
49 #include <trace/events/i2c.h>
50
51 #define I2C_ADDR_OFFSET_TEN_BIT 0xa000
52 #define I2C_ADDR_OFFSET_SLAVE 0x1000
53
54 #define I2C_ADDR_7BITS_MAX 0x77
55 #define I2C_ADDR_7BITS_COUNT (I2C_ADDR_7BITS_MAX + 1)
56
57 #define I2C_ADDR_DEVICE_ID 0x7c
58
59 /*
60 * core_lock protects i2c_adapter_idr, and guarantees that device detection,
61 * deletion of detected devices are serialized
62 */
63 static DEFINE_MUTEX(core_lock);
64 static DEFINE_IDR(i2c_adapter_idr);
65
66 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
67
68 static DEFINE_STATIC_KEY_FALSE(i2c_trace_msg_key);
69 static bool is_registered;
70
71 static struct dentry *i2c_debugfs_root;
72
i2c_transfer_trace_reg(void)73 int i2c_transfer_trace_reg(void)
74 {
75 static_branch_inc(&i2c_trace_msg_key);
76 return 0;
77 }
78
i2c_transfer_trace_unreg(void)79 void i2c_transfer_trace_unreg(void)
80 {
81 static_branch_dec(&i2c_trace_msg_key);
82 }
83
i2c_freq_mode_string(u32 bus_freq_hz)84 const char *i2c_freq_mode_string(u32 bus_freq_hz)
85 {
86 switch (bus_freq_hz) {
87 case I2C_MAX_STANDARD_MODE_FREQ:
88 return "Standard Mode (100 kHz)";
89 case I2C_MAX_FAST_MODE_FREQ:
90 return "Fast Mode (400 kHz)";
91 case I2C_MAX_FAST_MODE_PLUS_FREQ:
92 return "Fast Mode Plus (1.0 MHz)";
93 case I2C_MAX_TURBO_MODE_FREQ:
94 return "Turbo Mode (1.4 MHz)";
95 case I2C_MAX_HIGH_SPEED_MODE_FREQ:
96 return "High Speed Mode (3.4 MHz)";
97 case I2C_MAX_ULTRA_FAST_MODE_FREQ:
98 return "Ultra Fast Mode (5.0 MHz)";
99 default:
100 return "Unknown Mode";
101 }
102 }
103 EXPORT_SYMBOL_GPL(i2c_freq_mode_string);
104
i2c_match_id(const struct i2c_device_id * id,const struct i2c_client * client)105 const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
106 const struct i2c_client *client)
107 {
108 if (!(id && client))
109 return NULL;
110
111 while (id->name[0]) {
112 if (strcmp(client->name, id->name) == 0)
113 return id;
114 id++;
115 }
116 return NULL;
117 }
118 EXPORT_SYMBOL_GPL(i2c_match_id);
119
i2c_get_match_data(const struct i2c_client * client)120 const void *i2c_get_match_data(const struct i2c_client *client)
121 {
122 struct i2c_driver *driver = to_i2c_driver(client->dev.driver);
123 const struct i2c_device_id *match;
124 const void *data;
125
126 data = device_get_match_data(&client->dev);
127 if (!data) {
128 match = i2c_match_id(driver->id_table, client);
129 if (!match)
130 return NULL;
131
132 data = (const void *)match->driver_data;
133 }
134
135 return data;
136 }
137 EXPORT_SYMBOL(i2c_get_match_data);
138
i2c_device_match(struct device * dev,const struct device_driver * drv)139 static int i2c_device_match(struct device *dev, const struct device_driver *drv)
140 {
141 struct i2c_client *client = i2c_verify_client(dev);
142 const struct i2c_driver *driver;
143
144
145 /* Attempt an OF style match */
146 if (i2c_of_match_device(drv->of_match_table, client))
147 return 1;
148
149 /* Then ACPI style match */
150 if (acpi_driver_match_device(dev, drv))
151 return 1;
152
153 driver = to_i2c_driver(drv);
154
155 /* Finally an I2C match */
156 if (i2c_match_id(driver->id_table, client))
157 return 1;
158
159 return 0;
160 }
161
i2c_device_uevent(const struct device * dev,struct kobj_uevent_env * env)162 static int i2c_device_uevent(const struct device *dev, struct kobj_uevent_env *env)
163 {
164 const struct i2c_client *client = to_i2c_client(dev);
165 int rc;
166
167 rc = of_device_uevent_modalias(dev, env);
168 if (rc != -ENODEV)
169 return rc;
170
171 rc = acpi_device_uevent_modalias(dev, env);
172 if (rc != -ENODEV)
173 return rc;
174
175 return add_uevent_var(env, "MODALIAS=%s%s", I2C_MODULE_PREFIX, client->name);
176 }
177
178 /* i2c bus recovery routines */
get_scl_gpio_value(struct i2c_adapter * adap)179 static int get_scl_gpio_value(struct i2c_adapter *adap)
180 {
181 return gpiod_get_value_cansleep(adap->bus_recovery_info->scl_gpiod);
182 }
183
set_scl_gpio_value(struct i2c_adapter * adap,int val)184 static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
185 {
186 gpiod_set_value_cansleep(adap->bus_recovery_info->scl_gpiod, val);
187 }
188
get_sda_gpio_value(struct i2c_adapter * adap)189 static int get_sda_gpio_value(struct i2c_adapter *adap)
190 {
191 return gpiod_get_value_cansleep(adap->bus_recovery_info->sda_gpiod);
192 }
193
set_sda_gpio_value(struct i2c_adapter * adap,int val)194 static void set_sda_gpio_value(struct i2c_adapter *adap, int val)
195 {
196 gpiod_set_value_cansleep(adap->bus_recovery_info->sda_gpiod, val);
197 }
198
i2c_generic_bus_free(struct i2c_adapter * adap)199 static int i2c_generic_bus_free(struct i2c_adapter *adap)
200 {
201 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
202 int ret = -EOPNOTSUPP;
203
204 if (bri->get_bus_free)
205 ret = bri->get_bus_free(adap);
206 else if (bri->get_sda)
207 ret = bri->get_sda(adap);
208
209 if (ret < 0)
210 return ret;
211
212 return ret ? 0 : -EBUSY;
213 }
214
215 /*
216 * We are generating clock pulses. ndelay() determines durating of clk pulses.
217 * We will generate clock with rate 100 KHz and so duration of both clock levels
218 * is: delay in ns = (10^6 / 100) / 2
219 */
220 #define RECOVERY_NDELAY 5000
221 #define RECOVERY_CLK_CNT 9
222
i2c_generic_scl_recovery(struct i2c_adapter * adap)223 int i2c_generic_scl_recovery(struct i2c_adapter *adap)
224 {
225 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
226 int i = 0, scl = 1, ret = 0;
227
228 if (bri->prepare_recovery)
229 bri->prepare_recovery(adap);
230 if (bri->pinctrl)
231 pinctrl_select_state(bri->pinctrl, bri->pins_gpio);
232
233 /*
234 * If we can set SDA, we will always create a STOP to ensure additional
235 * pulses will do no harm. This is achieved by letting SDA follow SCL
236 * half a cycle later. Check the 'incomplete_write_byte' fault injector
237 * for details. Note that we must honour tsu:sto, 4us, but lets use 5us
238 * here for simplicity.
239 */
240 bri->set_scl(adap, scl);
241 ndelay(RECOVERY_NDELAY);
242 if (bri->set_sda)
243 bri->set_sda(adap, scl);
244 ndelay(RECOVERY_NDELAY / 2);
245
246 /*
247 * By this time SCL is high, as we need to give 9 falling-rising edges
248 */
249 while (i++ < RECOVERY_CLK_CNT * 2) {
250 if (scl) {
251 /* SCL shouldn't be low here */
252 if (!bri->get_scl(adap)) {
253 dev_err(&adap->dev,
254 "SCL is stuck low, exit recovery\n");
255 ret = -EBUSY;
256 break;
257 }
258 }
259
260 scl = !scl;
261 bri->set_scl(adap, scl);
262 /* Creating STOP again, see above */
263 if (scl) {
264 /* Honour minimum tsu:sto */
265 ndelay(RECOVERY_NDELAY);
266 } else {
267 /* Honour minimum tf and thd:dat */
268 ndelay(RECOVERY_NDELAY / 2);
269 }
270 if (bri->set_sda)
271 bri->set_sda(adap, scl);
272 ndelay(RECOVERY_NDELAY / 2);
273
274 if (scl) {
275 ret = i2c_generic_bus_free(adap);
276 if (ret == 0)
277 break;
278 }
279 }
280
281 /* If we can't check bus status, assume recovery worked */
282 if (ret == -EOPNOTSUPP)
283 ret = 0;
284
285 if (bri->unprepare_recovery)
286 bri->unprepare_recovery(adap);
287 if (bri->pinctrl)
288 pinctrl_select_state(bri->pinctrl, bri->pins_default);
289
290 return ret;
291 }
292 EXPORT_SYMBOL_GPL(i2c_generic_scl_recovery);
293
i2c_recover_bus(struct i2c_adapter * adap)294 int i2c_recover_bus(struct i2c_adapter *adap)
295 {
296 if (!adap->bus_recovery_info)
297 return -EBUSY;
298
299 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
300 return adap->bus_recovery_info->recover_bus(adap);
301 }
302 EXPORT_SYMBOL_GPL(i2c_recover_bus);
303
i2c_gpio_init_pinctrl_recovery(struct i2c_adapter * adap)304 static void i2c_gpio_init_pinctrl_recovery(struct i2c_adapter *adap)
305 {
306 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
307 struct device *dev = &adap->dev;
308 struct pinctrl *p = bri->pinctrl ?: dev_pinctrl(dev->parent);
309
310 bri->pinctrl = p;
311
312 /*
313 * we can't change states without pinctrl, so remove the states if
314 * populated
315 */
316 if (!p) {
317 bri->pins_default = NULL;
318 bri->pins_gpio = NULL;
319 return;
320 }
321
322 if (!bri->pins_default) {
323 bri->pins_default = pinctrl_lookup_state(p,
324 PINCTRL_STATE_DEFAULT);
325 if (IS_ERR(bri->pins_default)) {
326 dev_dbg(dev, PINCTRL_STATE_DEFAULT " state not found for GPIO recovery\n");
327 bri->pins_default = NULL;
328 }
329 }
330 if (!bri->pins_gpio) {
331 bri->pins_gpio = pinctrl_lookup_state(p, "gpio");
332 if (IS_ERR(bri->pins_gpio))
333 bri->pins_gpio = pinctrl_lookup_state(p, "recovery");
334
335 if (IS_ERR(bri->pins_gpio)) {
336 dev_dbg(dev, "no gpio or recovery state found for GPIO recovery\n");
337 bri->pins_gpio = NULL;
338 }
339 }
340
341 /* for pinctrl state changes, we need all the information */
342 if (bri->pins_default && bri->pins_gpio) {
343 dev_info(dev, "using pinctrl states for GPIO recovery");
344 } else {
345 bri->pinctrl = NULL;
346 bri->pins_default = NULL;
347 bri->pins_gpio = NULL;
348 }
349 }
350
i2c_gpio_init_generic_recovery(struct i2c_adapter * adap)351 static int i2c_gpio_init_generic_recovery(struct i2c_adapter *adap)
352 {
353 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
354 struct device *dev = &adap->dev;
355 struct gpio_desc *gpiod;
356 int ret = 0;
357
358 /*
359 * don't touch the recovery information if the driver is not using
360 * generic SCL recovery
361 */
362 if (bri->recover_bus && bri->recover_bus != i2c_generic_scl_recovery)
363 return 0;
364
365 /*
366 * pins might be taken as GPIO, so we should inform pinctrl about
367 * this and move the state to GPIO
368 */
369 if (bri->pinctrl)
370 pinctrl_select_state(bri->pinctrl, bri->pins_gpio);
371
372 /*
373 * if there is incomplete or no recovery information, see if generic
374 * GPIO recovery is available
375 */
376 if (!bri->scl_gpiod) {
377 gpiod = devm_gpiod_get(dev, "scl", GPIOD_OUT_HIGH_OPEN_DRAIN);
378 if (PTR_ERR(gpiod) == -EPROBE_DEFER) {
379 ret = -EPROBE_DEFER;
380 goto cleanup_pinctrl_state;
381 }
382 if (!IS_ERR(gpiod)) {
383 bri->scl_gpiod = gpiod;
384 bri->recover_bus = i2c_generic_scl_recovery;
385 dev_info(dev, "using generic GPIOs for recovery\n");
386 }
387 }
388
389 /* SDA GPIOD line is optional, so we care about DEFER only */
390 if (!bri->sda_gpiod) {
391 /*
392 * We have SCL. Pull SCL low and wait a bit so that SDA glitches
393 * have no effect.
394 */
395 gpiod_direction_output(bri->scl_gpiod, 0);
396 udelay(10);
397 gpiod = devm_gpiod_get(dev, "sda", GPIOD_IN);
398
399 /* Wait a bit in case of a SDA glitch, and then release SCL. */
400 udelay(10);
401 gpiod_direction_output(bri->scl_gpiod, 1);
402
403 if (PTR_ERR(gpiod) == -EPROBE_DEFER) {
404 ret = -EPROBE_DEFER;
405 goto cleanup_pinctrl_state;
406 }
407 if (!IS_ERR(gpiod))
408 bri->sda_gpiod = gpiod;
409 }
410
411 cleanup_pinctrl_state:
412 /* change the state of the pins back to their default state */
413 if (bri->pinctrl)
414 pinctrl_select_state(bri->pinctrl, bri->pins_default);
415
416 return ret;
417 }
418
i2c_gpio_init_recovery(struct i2c_adapter * adap)419 static int i2c_gpio_init_recovery(struct i2c_adapter *adap)
420 {
421 i2c_gpio_init_pinctrl_recovery(adap);
422 return i2c_gpio_init_generic_recovery(adap);
423 }
424
i2c_init_recovery(struct i2c_adapter * adap)425 static int i2c_init_recovery(struct i2c_adapter *adap)
426 {
427 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
428 bool is_error_level = true;
429 char *err_str;
430
431 if (!bri)
432 return 0;
433
434 if (i2c_gpio_init_recovery(adap) == -EPROBE_DEFER)
435 return -EPROBE_DEFER;
436
437 if (!bri->recover_bus) {
438 err_str = "no suitable method provided";
439 is_error_level = false;
440 goto err;
441 }
442
443 if (bri->scl_gpiod && bri->recover_bus == i2c_generic_scl_recovery) {
444 bri->get_scl = get_scl_gpio_value;
445 bri->set_scl = set_scl_gpio_value;
446 if (bri->sda_gpiod) {
447 bri->get_sda = get_sda_gpio_value;
448 /* FIXME: add proper flag instead of '0' once available */
449 if (gpiod_get_direction(bri->sda_gpiod) == 0)
450 bri->set_sda = set_sda_gpio_value;
451 }
452 } else if (bri->recover_bus == i2c_generic_scl_recovery) {
453 /* Generic SCL recovery */
454 if (!bri->set_scl || !bri->get_scl) {
455 err_str = "no {get|set}_scl() found";
456 goto err;
457 }
458 if (!bri->set_sda && !bri->get_sda) {
459 err_str = "either get_sda() or set_sda() needed";
460 goto err;
461 }
462 }
463
464 return 0;
465 err:
466 if (is_error_level)
467 dev_err(&adap->dev, "Not using recovery: %s\n", err_str);
468 else
469 dev_dbg(&adap->dev, "Not using recovery: %s\n", err_str);
470 adap->bus_recovery_info = NULL;
471
472 return -EINVAL;
473 }
474
i2c_smbus_host_notify_to_irq(const struct i2c_client * client)475 static int i2c_smbus_host_notify_to_irq(const struct i2c_client *client)
476 {
477 struct i2c_adapter *adap = client->adapter;
478 unsigned int irq;
479
480 if (!adap->host_notify_domain)
481 return -ENXIO;
482
483 if (client->flags & I2C_CLIENT_TEN)
484 return -EINVAL;
485
486 irq = irq_create_mapping(adap->host_notify_domain, client->addr);
487
488 return irq > 0 ? irq : -ENXIO;
489 }
490
i2c_device_probe(struct device * dev)491 static int i2c_device_probe(struct device *dev)
492 {
493 struct fwnode_handle *fwnode = dev_fwnode(dev);
494 struct i2c_client *client = i2c_verify_client(dev);
495 struct i2c_driver *driver;
496 bool do_power_on;
497 int status;
498
499 if (!client)
500 return 0;
501
502 client->irq = client->init_irq;
503
504 if (!client->irq) {
505 int irq = -ENOENT;
506
507 if (client->flags & I2C_CLIENT_HOST_NOTIFY) {
508 dev_dbg(dev, "Using Host Notify IRQ\n");
509 /* Keep adapter active when Host Notify is required */
510 pm_runtime_get_sync(&client->adapter->dev);
511 irq = i2c_smbus_host_notify_to_irq(client);
512 } else if (is_of_node(fwnode)) {
513 irq = fwnode_irq_get_byname(fwnode, "irq");
514 if (irq == -EINVAL || irq == -ENODATA)
515 irq = fwnode_irq_get(fwnode, 0);
516 } else if (is_acpi_device_node(fwnode)) {
517 bool wake_capable;
518
519 irq = i2c_acpi_get_irq(client, &wake_capable);
520 if (irq > 0 && wake_capable)
521 client->flags |= I2C_CLIENT_WAKE;
522 }
523 if (irq == -EPROBE_DEFER) {
524 status = dev_err_probe(dev, irq, "can't get irq\n");
525 goto put_sync_adapter;
526 }
527
528 if (irq < 0)
529 irq = 0;
530
531 client->irq = irq;
532 }
533
534 driver = to_i2c_driver(dev->driver);
535
536 /*
537 * An I2C ID table is not mandatory, if and only if, a suitable OF
538 * or ACPI ID table is supplied for the probing device.
539 */
540 if (!driver->id_table &&
541 !acpi_driver_match_device(dev, dev->driver) &&
542 !i2c_of_match_device(dev->driver->of_match_table, client)) {
543 status = -ENODEV;
544 goto put_sync_adapter;
545 }
546
547 if (client->flags & I2C_CLIENT_WAKE) {
548 int wakeirq;
549
550 wakeirq = fwnode_irq_get_byname(fwnode, "wakeup");
551 if (wakeirq == -EPROBE_DEFER) {
552 status = dev_err_probe(dev, wakeirq, "can't get wakeirq\n");
553 goto put_sync_adapter;
554 }
555
556 device_init_wakeup(&client->dev, true);
557
558 if (wakeirq > 0 && wakeirq != client->irq)
559 status = dev_pm_set_dedicated_wake_irq(dev, wakeirq);
560 else if (client->irq > 0)
561 status = dev_pm_set_wake_irq(dev, client->irq);
562 else
563 status = 0;
564
565 if (status)
566 dev_warn(&client->dev, "failed to set up wakeup irq\n");
567 }
568
569 dev_dbg(dev, "probe\n");
570
571 status = of_clk_set_defaults(to_of_node(fwnode), false);
572 if (status < 0)
573 goto err_clear_wakeup_irq;
574
575 do_power_on = !i2c_acpi_waive_d0_probe(dev);
576 status = dev_pm_domain_attach(&client->dev, do_power_on ? PD_FLAG_ATTACH_POWER_ON : 0);
577 if (status)
578 goto err_clear_wakeup_irq;
579
580 client->devres_group_id = devres_open_group(&client->dev, NULL,
581 GFP_KERNEL);
582 if (!client->devres_group_id) {
583 status = -ENOMEM;
584 goto err_detach_pm_domain;
585 }
586
587 client->debugfs = debugfs_create_dir(dev_name(&client->dev),
588 client->adapter->debugfs);
589
590 if (driver->probe)
591 status = driver->probe(client);
592 else
593 status = -EINVAL;
594
595 /*
596 * Note that we are not closing the devres group opened above so
597 * even resources that were attached to the device after probe is
598 * run are released when i2c_device_remove() is executed. This is
599 * needed as some drivers would allocate additional resources,
600 * for example when updating firmware.
601 */
602
603 if (status)
604 goto err_release_driver_resources;
605
606 return 0;
607
608 err_release_driver_resources:
609 debugfs_remove_recursive(client->debugfs);
610 devres_release_group(&client->dev, client->devres_group_id);
611 err_detach_pm_domain:
612 dev_pm_domain_detach(&client->dev, do_power_on);
613 err_clear_wakeup_irq:
614 dev_pm_clear_wake_irq(&client->dev);
615 device_init_wakeup(&client->dev, false);
616 put_sync_adapter:
617 if (client->flags & I2C_CLIENT_HOST_NOTIFY)
618 pm_runtime_put_sync(&client->adapter->dev);
619
620 return status;
621 }
622
i2c_device_remove(struct device * dev)623 static void i2c_device_remove(struct device *dev)
624 {
625 struct i2c_client *client = to_i2c_client(dev);
626 struct i2c_driver *driver;
627
628 driver = to_i2c_driver(dev->driver);
629 if (driver->remove) {
630 dev_dbg(dev, "remove\n");
631
632 driver->remove(client);
633 }
634
635 debugfs_remove_recursive(client->debugfs);
636
637 devres_release_group(&client->dev, client->devres_group_id);
638
639 dev_pm_domain_detach(&client->dev, true);
640
641 dev_pm_clear_wake_irq(&client->dev);
642 device_init_wakeup(&client->dev, false);
643
644 client->irq = 0;
645 if (client->flags & I2C_CLIENT_HOST_NOTIFY)
646 pm_runtime_put(&client->adapter->dev);
647 }
648
i2c_device_shutdown(struct device * dev)649 static void i2c_device_shutdown(struct device *dev)
650 {
651 struct i2c_client *client = i2c_verify_client(dev);
652 struct i2c_driver *driver;
653
654 if (!client || !dev->driver)
655 return;
656 driver = to_i2c_driver(dev->driver);
657 if (driver->shutdown)
658 driver->shutdown(client);
659 else if (client->irq > 0)
660 disable_irq(client->irq);
661 }
662
i2c_client_dev_release(struct device * dev)663 static void i2c_client_dev_release(struct device *dev)
664 {
665 kfree(to_i2c_client(dev));
666 }
667
668 static ssize_t
name_show(struct device * dev,struct device_attribute * attr,char * buf)669 name_show(struct device *dev, struct device_attribute *attr, char *buf)
670 {
671 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
672 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
673 }
674 static DEVICE_ATTR_RO(name);
675
676 static ssize_t
modalias_show(struct device * dev,struct device_attribute * attr,char * buf)677 modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
678 {
679 struct i2c_client *client = to_i2c_client(dev);
680 int len;
681
682 len = of_device_modalias(dev, buf, PAGE_SIZE);
683 if (len != -ENODEV)
684 return len;
685
686 len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
687 if (len != -ENODEV)
688 return len;
689
690 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
691 }
692 static DEVICE_ATTR_RO(modalias);
693
694 static struct attribute *i2c_dev_attrs[] = {
695 &dev_attr_name.attr,
696 /* modalias helps coldplug: modprobe $(cat .../modalias) */
697 &dev_attr_modalias.attr,
698 NULL
699 };
700 ATTRIBUTE_GROUPS(i2c_dev);
701
702 const struct bus_type i2c_bus_type = {
703 .name = "i2c",
704 .match = i2c_device_match,
705 .probe = i2c_device_probe,
706 .remove = i2c_device_remove,
707 .shutdown = i2c_device_shutdown,
708 };
709 EXPORT_SYMBOL_GPL(i2c_bus_type);
710
711 const struct device_type i2c_client_type = {
712 .groups = i2c_dev_groups,
713 .uevent = i2c_device_uevent,
714 .release = i2c_client_dev_release,
715 };
716 EXPORT_SYMBOL_GPL(i2c_client_type);
717
718
719 /**
720 * i2c_verify_client - return parameter as i2c_client, or NULL
721 * @dev: device, probably from some driver model iterator
722 *
723 * When traversing the driver model tree, perhaps using driver model
724 * iterators like @device_for_each_child(), you can't assume very much
725 * about the nodes you find. Use this function to avoid oopses caused
726 * by wrongly treating some non-I2C device as an i2c_client.
727 */
i2c_verify_client(struct device * dev)728 struct i2c_client *i2c_verify_client(struct device *dev)
729 {
730 return (dev->type == &i2c_client_type)
731 ? to_i2c_client(dev)
732 : NULL;
733 }
734 EXPORT_SYMBOL(i2c_verify_client);
735
736
737 /* Return a unique address which takes the flags of the client into account */
i2c_encode_flags_to_addr(struct i2c_client * client)738 static unsigned short i2c_encode_flags_to_addr(struct i2c_client *client)
739 {
740 unsigned short addr = client->addr;
741
742 /* For some client flags, add an arbitrary offset to avoid collisions */
743 if (client->flags & I2C_CLIENT_TEN)
744 addr |= I2C_ADDR_OFFSET_TEN_BIT;
745
746 if (client->flags & I2C_CLIENT_SLAVE)
747 addr |= I2C_ADDR_OFFSET_SLAVE;
748
749 return addr;
750 }
751
752 /* This is a permissive address validity check, I2C address map constraints
753 * are purposely not enforced, except for the general call address. */
i2c_check_addr_validity(unsigned int addr,unsigned short flags)754 static int i2c_check_addr_validity(unsigned int addr, unsigned short flags)
755 {
756 if (flags & I2C_CLIENT_TEN) {
757 /* 10-bit address, all values are valid */
758 if (addr > 0x3ff)
759 return -EINVAL;
760 } else {
761 /* 7-bit address, reject the general call address */
762 if (addr == 0x00 || addr > 0x7f)
763 return -EINVAL;
764 }
765 return 0;
766 }
767
768 /* And this is a strict address validity check, used when probing. If a
769 * device uses a reserved address, then it shouldn't be probed. 7-bit
770 * addressing is assumed, 10-bit address devices are rare and should be
771 * explicitly enumerated. */
i2c_check_7bit_addr_validity_strict(unsigned short addr)772 int i2c_check_7bit_addr_validity_strict(unsigned short addr)
773 {
774 /*
775 * Reserved addresses per I2C specification:
776 * 0x00 General call address / START byte
777 * 0x01 CBUS address
778 * 0x02 Reserved for different bus format
779 * 0x03 Reserved for future purposes
780 * 0x04-0x07 Hs-mode master code
781 * 0x78-0x7b 10-bit slave addressing
782 * 0x7c-0x7f Reserved for future purposes
783 */
784 if (addr < 0x08 || addr > 0x77)
785 return -EINVAL;
786 return 0;
787 }
788
__i2c_check_addr_busy(struct device * dev,void * addrp)789 static int __i2c_check_addr_busy(struct device *dev, void *addrp)
790 {
791 struct i2c_client *client = i2c_verify_client(dev);
792 int addr = *(int *)addrp;
793
794 if (client && i2c_encode_flags_to_addr(client) == addr)
795 return -EBUSY;
796 return 0;
797 }
798
799 /* walk up mux tree */
i2c_check_mux_parents(struct i2c_adapter * adapter,int addr)800 static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
801 {
802 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
803 int result;
804
805 result = device_for_each_child(&adapter->dev, &addr,
806 __i2c_check_addr_busy);
807
808 if (!result && parent)
809 result = i2c_check_mux_parents(parent, addr);
810
811 return result;
812 }
813
814 /* recurse down mux tree */
i2c_check_mux_children(struct device * dev,void * addrp)815 static int i2c_check_mux_children(struct device *dev, void *addrp)
816 {
817 int result;
818
819 if (dev->type == &i2c_adapter_type)
820 result = device_for_each_child(dev, addrp,
821 i2c_check_mux_children);
822 else
823 result = __i2c_check_addr_busy(dev, addrp);
824
825 return result;
826 }
827
i2c_check_addr_busy(struct i2c_adapter * adapter,int addr)828 static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
829 {
830 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
831 int result = 0;
832
833 if (parent)
834 result = i2c_check_mux_parents(parent, addr);
835
836 if (!result)
837 result = device_for_each_child(&adapter->dev, &addr,
838 i2c_check_mux_children);
839
840 return result;
841 }
842
843 /**
844 * i2c_adapter_lock_bus - Get exclusive access to an I2C bus segment
845 * @adapter: Target I2C bus segment
846 * @flags: I2C_LOCK_ROOT_ADAPTER locks the root i2c adapter, I2C_LOCK_SEGMENT
847 * locks only this branch in the adapter tree
848 */
i2c_adapter_lock_bus(struct i2c_adapter * adapter,unsigned int flags)849 static void i2c_adapter_lock_bus(struct i2c_adapter *adapter,
850 unsigned int flags)
851 {
852 rt_mutex_lock_nested(&adapter->bus_lock, i2c_adapter_depth(adapter));
853 }
854
855 /**
856 * i2c_adapter_trylock_bus - Try to get exclusive access to an I2C bus segment
857 * @adapter: Target I2C bus segment
858 * @flags: I2C_LOCK_ROOT_ADAPTER trylocks the root i2c adapter, I2C_LOCK_SEGMENT
859 * trylocks only this branch in the adapter tree
860 */
i2c_adapter_trylock_bus(struct i2c_adapter * adapter,unsigned int flags)861 static int i2c_adapter_trylock_bus(struct i2c_adapter *adapter,
862 unsigned int flags)
863 {
864 return rt_mutex_trylock(&adapter->bus_lock);
865 }
866
867 /**
868 * i2c_adapter_unlock_bus - Release exclusive access to an I2C bus segment
869 * @adapter: Target I2C bus segment
870 * @flags: I2C_LOCK_ROOT_ADAPTER unlocks the root i2c adapter, I2C_LOCK_SEGMENT
871 * unlocks only this branch in the adapter tree
872 */
i2c_adapter_unlock_bus(struct i2c_adapter * adapter,unsigned int flags)873 static void i2c_adapter_unlock_bus(struct i2c_adapter *adapter,
874 unsigned int flags)
875 {
876 rt_mutex_unlock(&adapter->bus_lock);
877 }
878
i2c_dev_set_name(struct i2c_adapter * adap,struct i2c_client * client,struct i2c_board_info const * info)879 static void i2c_dev_set_name(struct i2c_adapter *adap,
880 struct i2c_client *client,
881 struct i2c_board_info const *info)
882 {
883 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
884
885 if (info && info->dev_name) {
886 dev_set_name(&client->dev, "i2c-%s", info->dev_name);
887 return;
888 }
889
890 if (adev) {
891 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
892 return;
893 }
894
895 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
896 i2c_encode_flags_to_addr(client));
897 }
898
i2c_dev_irq_from_resources(const struct resource * resources,unsigned int num_resources)899 int i2c_dev_irq_from_resources(const struct resource *resources,
900 unsigned int num_resources)
901 {
902 struct irq_data *irqd;
903 int i;
904
905 for (i = 0; i < num_resources; i++) {
906 const struct resource *r = &resources[i];
907
908 if (resource_type(r) != IORESOURCE_IRQ)
909 continue;
910
911 if (r->flags & IORESOURCE_BITS) {
912 irqd = irq_get_irq_data(r->start);
913 if (!irqd)
914 break;
915
916 irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS);
917 }
918
919 return r->start;
920 }
921
922 return 0;
923 }
924
925 /*
926 * Serialize device instantiation in case it can be instantiated explicitly
927 * and by auto-detection
928 */
i2c_lock_addr(struct i2c_adapter * adap,unsigned short addr,unsigned short flags)929 static int i2c_lock_addr(struct i2c_adapter *adap, unsigned short addr,
930 unsigned short flags)
931 {
932 if (!(flags & I2C_CLIENT_TEN) &&
933 test_and_set_bit(addr, adap->addrs_in_instantiation))
934 return -EBUSY;
935
936 return 0;
937 }
938
i2c_unlock_addr(struct i2c_adapter * adap,unsigned short addr,unsigned short flags)939 static void i2c_unlock_addr(struct i2c_adapter *adap, unsigned short addr,
940 unsigned short flags)
941 {
942 if (!(flags & I2C_CLIENT_TEN))
943 clear_bit(addr, adap->addrs_in_instantiation);
944 }
945
946 /**
947 * i2c_new_client_device - instantiate an i2c device
948 * @adap: the adapter managing the device
949 * @info: describes one I2C device; bus_num is ignored
950 * Context: can sleep
951 *
952 * Create an i2c device. Binding is handled through driver model
953 * probe()/remove() methods. A driver may be bound to this device when we
954 * return from this function, or any later moment (e.g. maybe hotplugging will
955 * load the driver module). This call is not appropriate for use by mainboard
956 * initialization logic, which usually runs during an arch_initcall() long
957 * before any i2c_adapter could exist.
958 *
959 * This returns the new i2c client, which may be saved for later use with
960 * i2c_unregister_device(); or an ERR_PTR to describe the error.
961 */
962 struct i2c_client *
i2c_new_client_device(struct i2c_adapter * adap,struct i2c_board_info const * info)963 i2c_new_client_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
964 {
965 struct fwnode_handle *fwnode = info->fwnode;
966 struct i2c_client *client;
967 bool need_put = false;
968 int status;
969
970 client = kzalloc(sizeof *client, GFP_KERNEL);
971 if (!client)
972 return ERR_PTR(-ENOMEM);
973
974 client->adapter = adap;
975
976 client->dev.platform_data = info->platform_data;
977 client->flags = info->flags;
978 client->addr = info->addr;
979
980 client->init_irq = info->irq;
981 if (!client->init_irq)
982 client->init_irq = i2c_dev_irq_from_resources(info->resources,
983 info->num_resources);
984
985 strscpy(client->name, info->type, sizeof(client->name));
986
987 status = i2c_check_addr_validity(client->addr, client->flags);
988 if (status) {
989 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
990 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
991 goto out_err_silent;
992 }
993
994 status = i2c_lock_addr(adap, client->addr, client->flags);
995 if (status)
996 goto out_err_silent;
997
998 /* Check for address business */
999 status = i2c_check_addr_busy(adap, i2c_encode_flags_to_addr(client));
1000 if (status)
1001 goto out_err;
1002
1003 client->dev.parent = &client->adapter->dev;
1004 client->dev.bus = &i2c_bus_type;
1005 client->dev.type = &i2c_client_type;
1006
1007 device_enable_async_suspend(&client->dev);
1008
1009 device_set_node(&client->dev, fwnode_handle_get(fwnode));
1010
1011 if (info->swnode) {
1012 status = device_add_software_node(&client->dev, info->swnode);
1013 if (status) {
1014 dev_err(&adap->dev,
1015 "Failed to add software node to client %s: %d\n",
1016 client->name, status);
1017 goto out_err_put_fwnode;
1018 }
1019 }
1020
1021 i2c_dev_set_name(adap, client, info);
1022 status = device_register(&client->dev);
1023 if (status)
1024 goto out_remove_swnode;
1025
1026 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
1027 client->name, dev_name(&client->dev));
1028
1029 i2c_unlock_addr(adap, client->addr, client->flags);
1030
1031 return client;
1032
1033 out_remove_swnode:
1034 device_remove_software_node(&client->dev);
1035 need_put = true;
1036 out_err_put_fwnode:
1037 fwnode_handle_put(fwnode);
1038 out_err:
1039 dev_err(&adap->dev,
1040 "Failed to register i2c client %s at 0x%02x (%d)\n",
1041 client->name, client->addr, status);
1042 i2c_unlock_addr(adap, client->addr, client->flags);
1043 out_err_silent:
1044 if (need_put)
1045 put_device(&client->dev);
1046 else
1047 kfree(client);
1048 return ERR_PTR(status);
1049 }
1050 EXPORT_SYMBOL_GPL(i2c_new_client_device);
1051
1052 /**
1053 * i2c_unregister_device - reverse effect of i2c_new_*_device()
1054 * @client: value returned from i2c_new_*_device()
1055 * Context: can sleep
1056 */
i2c_unregister_device(struct i2c_client * client)1057 void i2c_unregister_device(struct i2c_client *client)
1058 {
1059 struct fwnode_handle *fwnode;
1060
1061 if (IS_ERR_OR_NULL(client))
1062 return;
1063
1064 fwnode = dev_fwnode(&client->dev);
1065 if (is_of_node(fwnode))
1066 of_node_clear_flag(to_of_node(fwnode), OF_POPULATED);
1067 else if (is_acpi_device_node(fwnode))
1068 acpi_device_clear_enumerated(to_acpi_device_node(fwnode));
1069
1070 /*
1071 * If the primary fwnode is a software node it is free-ed by
1072 * device_remove_software_node() below, avoid double-free.
1073 */
1074 if (!is_software_node(fwnode))
1075 fwnode_handle_put(fwnode);
1076
1077 device_remove_software_node(&client->dev);
1078 device_unregister(&client->dev);
1079 }
1080 EXPORT_SYMBOL_GPL(i2c_unregister_device);
1081
1082 /**
1083 * i2c_find_device_by_fwnode() - find an i2c_client for the fwnode
1084 * @fwnode: &struct fwnode_handle corresponding to the &struct i2c_client
1085 *
1086 * Look up and return the &struct i2c_client corresponding to the @fwnode.
1087 * If no client can be found, or @fwnode is NULL, this returns NULL.
1088 *
1089 * The user must call put_device(&client->dev) once done with the i2c client.
1090 */
i2c_find_device_by_fwnode(struct fwnode_handle * fwnode)1091 struct i2c_client *i2c_find_device_by_fwnode(struct fwnode_handle *fwnode)
1092 {
1093 struct i2c_client *client;
1094 struct device *dev;
1095
1096 if (!fwnode)
1097 return NULL;
1098
1099 dev = bus_find_device_by_fwnode(&i2c_bus_type, fwnode);
1100 if (!dev)
1101 return NULL;
1102
1103 client = i2c_verify_client(dev);
1104 if (!client)
1105 put_device(dev);
1106
1107 return client;
1108 }
1109 EXPORT_SYMBOL(i2c_find_device_by_fwnode);
1110
1111
1112 static const struct i2c_device_id dummy_id[] = {
1113 { "dummy", },
1114 { "smbus_host_notify", },
1115 { }
1116 };
1117
dummy_probe(struct i2c_client * client)1118 static int dummy_probe(struct i2c_client *client)
1119 {
1120 return 0;
1121 }
1122
1123 static struct i2c_driver dummy_driver = {
1124 .driver.name = "dummy",
1125 .probe = dummy_probe,
1126 .id_table = dummy_id,
1127 };
1128
1129 /**
1130 * i2c_new_dummy_device - return a new i2c device bound to a dummy driver
1131 * @adapter: the adapter managing the device
1132 * @address: seven bit address to be used
1133 * Context: can sleep
1134 *
1135 * This returns an I2C client bound to the "dummy" driver, intended for use
1136 * with devices that consume multiple addresses. Examples of such chips
1137 * include various EEPROMS (like 24c04 and 24c08 models).
1138 *
1139 * These dummy devices have two main uses. First, most I2C and SMBus calls
1140 * except i2c_transfer() need a client handle; the dummy will be that handle.
1141 * And second, this prevents the specified address from being bound to a
1142 * different driver.
1143 *
1144 * This returns the new i2c client, which should be saved for later use with
1145 * i2c_unregister_device(); or an ERR_PTR to describe the error.
1146 */
i2c_new_dummy_device(struct i2c_adapter * adapter,u16 address)1147 struct i2c_client *i2c_new_dummy_device(struct i2c_adapter *adapter, u16 address)
1148 {
1149 struct i2c_board_info info = {
1150 I2C_BOARD_INFO("dummy", address),
1151 };
1152
1153 return i2c_new_client_device(adapter, &info);
1154 }
1155 EXPORT_SYMBOL_GPL(i2c_new_dummy_device);
1156
devm_i2c_release_dummy(void * client)1157 static void devm_i2c_release_dummy(void *client)
1158 {
1159 i2c_unregister_device(client);
1160 }
1161
1162 /**
1163 * devm_i2c_new_dummy_device - return a new i2c device bound to a dummy driver
1164 * @dev: device the managed resource is bound to
1165 * @adapter: the adapter managing the device
1166 * @address: seven bit address to be used
1167 * Context: can sleep
1168 *
1169 * This is the device-managed version of @i2c_new_dummy_device. It returns the
1170 * new i2c client or an ERR_PTR in case of an error.
1171 */
devm_i2c_new_dummy_device(struct device * dev,struct i2c_adapter * adapter,u16 address)1172 struct i2c_client *devm_i2c_new_dummy_device(struct device *dev,
1173 struct i2c_adapter *adapter,
1174 u16 address)
1175 {
1176 struct i2c_client *client;
1177 int ret;
1178
1179 client = i2c_new_dummy_device(adapter, address);
1180 if (IS_ERR(client))
1181 return client;
1182
1183 ret = devm_add_action_or_reset(dev, devm_i2c_release_dummy, client);
1184 if (ret)
1185 return ERR_PTR(ret);
1186
1187 return client;
1188 }
1189 EXPORT_SYMBOL_GPL(devm_i2c_new_dummy_device);
1190
1191 /**
1192 * i2c_new_ancillary_device - Helper to get the instantiated secondary address
1193 * and create the associated device
1194 * @client: Handle to the primary client
1195 * @name: Handle to specify which secondary address to get
1196 * @default_addr: Used as a fallback if no secondary address was specified
1197 * Context: can sleep
1198 *
1199 * I2C clients can be composed of multiple I2C slaves bound together in a single
1200 * component. The I2C client driver then binds to the master I2C slave and needs
1201 * to create I2C dummy clients to communicate with all the other slaves.
1202 *
1203 * This function creates and returns an I2C dummy client whose I2C address is
1204 * retrieved from the platform firmware based on the given slave name. If no
1205 * address is specified by the firmware default_addr is used.
1206 *
1207 * On DT-based platforms the address is retrieved from the "reg" property entry
1208 * cell whose "reg-names" value matches the slave name.
1209 *
1210 * This returns the new i2c client, which should be saved for later use with
1211 * i2c_unregister_device(); or an ERR_PTR to describe the error.
1212 */
i2c_new_ancillary_device(struct i2c_client * client,const char * name,u16 default_addr)1213 struct i2c_client *i2c_new_ancillary_device(struct i2c_client *client,
1214 const char *name,
1215 u16 default_addr)
1216 {
1217 struct device_node *np = client->dev.of_node;
1218 u32 addr = default_addr;
1219 int i;
1220
1221 i = of_property_match_string(np, "reg-names", name);
1222 if (i >= 0)
1223 of_property_read_u32_index(np, "reg", i, &addr);
1224
1225 dev_dbg(&client->adapter->dev, "Address for %s : 0x%x\n", name, addr);
1226 return i2c_new_dummy_device(client->adapter, addr);
1227 }
1228 EXPORT_SYMBOL_GPL(i2c_new_ancillary_device);
1229
1230 /* ------------------------------------------------------------------------- */
1231
1232 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
1233
i2c_adapter_dev_release(struct device * dev)1234 static void i2c_adapter_dev_release(struct device *dev)
1235 {
1236 struct i2c_adapter *adap = to_i2c_adapter(dev);
1237 complete(&adap->dev_released);
1238 }
1239
i2c_adapter_depth(struct i2c_adapter * adapter)1240 unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
1241 {
1242 unsigned int depth = 0;
1243 struct device *parent;
1244
1245 for (parent = adapter->dev.parent; parent; parent = parent->parent)
1246 if (parent->type == &i2c_adapter_type)
1247 depth++;
1248
1249 WARN_ONCE(depth >= MAX_LOCKDEP_SUBCLASSES,
1250 "adapter depth exceeds lockdep subclass limit\n");
1251
1252 return depth;
1253 }
1254 EXPORT_SYMBOL_GPL(i2c_adapter_depth);
1255
1256 /*
1257 * Let users instantiate I2C devices through sysfs. This can be used when
1258 * platform initialization code doesn't contain the proper data for
1259 * whatever reason. Also useful for drivers that do device detection and
1260 * detection fails, either because the device uses an unexpected address,
1261 * or this is a compatible device with different ID register values.
1262 *
1263 * Parameter checking may look overzealous, but we really don't want
1264 * the user to provide incorrect parameters.
1265 */
1266 static ssize_t
new_device_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)1267 new_device_store(struct device *dev, struct device_attribute *attr,
1268 const char *buf, size_t count)
1269 {
1270 struct i2c_adapter *adap = to_i2c_adapter(dev);
1271 struct i2c_board_info info;
1272 struct i2c_client *client;
1273 char *blank, end;
1274 int res;
1275
1276 memset(&info, 0, sizeof(struct i2c_board_info));
1277
1278 blank = strchr(buf, ' ');
1279 if (!blank) {
1280 dev_err(dev, "%s: Missing parameters\n", "new_device");
1281 return -EINVAL;
1282 }
1283 if (blank - buf > I2C_NAME_SIZE - 1) {
1284 dev_err(dev, "%s: Invalid device name\n", "new_device");
1285 return -EINVAL;
1286 }
1287 memcpy(info.type, buf, blank - buf);
1288
1289 /* Parse remaining parameters, reject extra parameters */
1290 res = sscanf(++blank, "%hi%c", &info.addr, &end);
1291 if (res < 1) {
1292 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
1293 return -EINVAL;
1294 }
1295 if (res > 1 && end != '\n') {
1296 dev_err(dev, "%s: Extra parameters\n", "new_device");
1297 return -EINVAL;
1298 }
1299
1300 if ((info.addr & I2C_ADDR_OFFSET_TEN_BIT) == I2C_ADDR_OFFSET_TEN_BIT) {
1301 info.addr &= ~I2C_ADDR_OFFSET_TEN_BIT;
1302 info.flags |= I2C_CLIENT_TEN;
1303 }
1304
1305 if (info.addr & I2C_ADDR_OFFSET_SLAVE) {
1306 info.addr &= ~I2C_ADDR_OFFSET_SLAVE;
1307 info.flags |= I2C_CLIENT_SLAVE;
1308 }
1309
1310 client = i2c_new_client_device(adap, &info);
1311 if (IS_ERR(client))
1312 return PTR_ERR(client);
1313
1314 /* Keep track of the added device */
1315 mutex_lock(&adap->userspace_clients_lock);
1316 list_add_tail(&client->detected, &adap->userspace_clients);
1317 mutex_unlock(&adap->userspace_clients_lock);
1318 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1319 info.type, info.addr);
1320
1321 return count;
1322 }
1323 static DEVICE_ATTR_WO(new_device);
1324
1325 /*
1326 * And of course let the users delete the devices they instantiated, if
1327 * they got it wrong. This interface can only be used to delete devices
1328 * instantiated by i2c_sysfs_new_device above. This guarantees that we
1329 * don't delete devices to which some kernel code still has references.
1330 *
1331 * Parameter checking may look overzealous, but we really don't want
1332 * the user to delete the wrong device.
1333 */
1334 static ssize_t
delete_device_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)1335 delete_device_store(struct device *dev, struct device_attribute *attr,
1336 const char *buf, size_t count)
1337 {
1338 struct i2c_adapter *adap = to_i2c_adapter(dev);
1339 struct i2c_client *client, *next;
1340 unsigned short addr;
1341 char end;
1342 int res;
1343
1344 /* Parse parameters, reject extra parameters */
1345 res = sscanf(buf, "%hi%c", &addr, &end);
1346 if (res < 1) {
1347 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
1348 return -EINVAL;
1349 }
1350 if (res > 1 && end != '\n') {
1351 dev_err(dev, "%s: Extra parameters\n", "delete_device");
1352 return -EINVAL;
1353 }
1354
1355 /* Make sure the device was added through sysfs */
1356 res = -ENOENT;
1357 mutex_lock_nested(&adap->userspace_clients_lock,
1358 i2c_adapter_depth(adap));
1359 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1360 detected) {
1361 if (i2c_encode_flags_to_addr(client) == addr) {
1362 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
1363 "delete_device", client->name, client->addr);
1364
1365 list_del(&client->detected);
1366 i2c_unregister_device(client);
1367 res = count;
1368 break;
1369 }
1370 }
1371 mutex_unlock(&adap->userspace_clients_lock);
1372
1373 if (res < 0)
1374 dev_err(dev, "%s: Can't find device in list\n",
1375 "delete_device");
1376 return res;
1377 }
1378 static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
1379 delete_device_store);
1380
1381 static struct attribute *i2c_adapter_attrs[] = {
1382 &dev_attr_name.attr,
1383 &dev_attr_new_device.attr,
1384 &dev_attr_delete_device.attr,
1385 NULL
1386 };
1387 ATTRIBUTE_GROUPS(i2c_adapter);
1388
1389 const struct device_type i2c_adapter_type = {
1390 .groups = i2c_adapter_groups,
1391 .release = i2c_adapter_dev_release,
1392 };
1393 EXPORT_SYMBOL_GPL(i2c_adapter_type);
1394
1395 /**
1396 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1397 * @dev: device, probably from some driver model iterator
1398 *
1399 * When traversing the driver model tree, perhaps using driver model
1400 * iterators like @device_for_each_child(), you can't assume very much
1401 * about the nodes you find. Use this function to avoid oopses caused
1402 * by wrongly treating some non-I2C device as an i2c_adapter.
1403 */
i2c_verify_adapter(struct device * dev)1404 struct i2c_adapter *i2c_verify_adapter(struct device *dev)
1405 {
1406 return (dev->type == &i2c_adapter_type)
1407 ? to_i2c_adapter(dev)
1408 : NULL;
1409 }
1410 EXPORT_SYMBOL(i2c_verify_adapter);
1411
i2c_scan_static_board_info(struct i2c_adapter * adapter)1412 static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
1413 {
1414 struct i2c_devinfo *devinfo;
1415
1416 down_read(&__i2c_board_lock);
1417 list_for_each_entry(devinfo, &__i2c_board_list, list) {
1418 if (devinfo->busnum == adapter->nr &&
1419 IS_ERR(i2c_new_client_device(adapter, &devinfo->board_info)))
1420 dev_err(&adapter->dev,
1421 "Can't create device at 0x%02x\n",
1422 devinfo->board_info.addr);
1423 }
1424 up_read(&__i2c_board_lock);
1425 }
1426
i2c_do_add_adapter(struct i2c_driver * driver,struct i2c_adapter * adap)1427 static int i2c_do_add_adapter(struct i2c_driver *driver,
1428 struct i2c_adapter *adap)
1429 {
1430 /* Detect supported devices on that bus, and instantiate them */
1431 i2c_detect(adap, driver);
1432
1433 return 0;
1434 }
1435
__process_new_adapter(struct device_driver * d,void * data)1436 static int __process_new_adapter(struct device_driver *d, void *data)
1437 {
1438 return i2c_do_add_adapter(to_i2c_driver(d), data);
1439 }
1440
1441 static const struct i2c_lock_operations i2c_adapter_lock_ops = {
1442 .lock_bus = i2c_adapter_lock_bus,
1443 .trylock_bus = i2c_adapter_trylock_bus,
1444 .unlock_bus = i2c_adapter_unlock_bus,
1445 };
1446
i2c_host_notify_irq_teardown(struct i2c_adapter * adap)1447 static void i2c_host_notify_irq_teardown(struct i2c_adapter *adap)
1448 {
1449 struct irq_domain *domain = adap->host_notify_domain;
1450 irq_hw_number_t hwirq;
1451
1452 if (!domain)
1453 return;
1454
1455 for (hwirq = 0 ; hwirq < I2C_ADDR_7BITS_COUNT ; hwirq++)
1456 irq_dispose_mapping(irq_find_mapping(domain, hwirq));
1457
1458 irq_domain_remove(domain);
1459 adap->host_notify_domain = NULL;
1460 }
1461
i2c_host_notify_irq_map(struct irq_domain * h,unsigned int virq,irq_hw_number_t hw_irq_num)1462 static int i2c_host_notify_irq_map(struct irq_domain *h,
1463 unsigned int virq,
1464 irq_hw_number_t hw_irq_num)
1465 {
1466 irq_set_chip_and_handler(virq, &dummy_irq_chip, handle_simple_irq);
1467
1468 return 0;
1469 }
1470
1471 static const struct irq_domain_ops i2c_host_notify_irq_ops = {
1472 .map = i2c_host_notify_irq_map,
1473 };
1474
i2c_setup_host_notify_irq_domain(struct i2c_adapter * adap)1475 static int i2c_setup_host_notify_irq_domain(struct i2c_adapter *adap)
1476 {
1477 struct irq_domain *domain;
1478
1479 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_HOST_NOTIFY))
1480 return 0;
1481
1482 domain = irq_domain_create_linear(adap->dev.parent->fwnode,
1483 I2C_ADDR_7BITS_COUNT,
1484 &i2c_host_notify_irq_ops, adap);
1485 if (!domain)
1486 return -ENOMEM;
1487
1488 adap->host_notify_domain = domain;
1489
1490 return 0;
1491 }
1492
1493 /**
1494 * i2c_handle_smbus_host_notify - Forward a Host Notify event to the correct
1495 * I2C client.
1496 * @adap: the adapter
1497 * @addr: the I2C address of the notifying device
1498 * Context: can't sleep
1499 *
1500 * Helper function to be called from an I2C bus driver's interrupt
1501 * handler. It will schedule the Host Notify IRQ.
1502 */
i2c_handle_smbus_host_notify(struct i2c_adapter * adap,unsigned short addr)1503 int i2c_handle_smbus_host_notify(struct i2c_adapter *adap, unsigned short addr)
1504 {
1505 int irq;
1506
1507 if (!adap)
1508 return -EINVAL;
1509
1510 dev_dbg(&adap->dev, "Detected HostNotify from address 0x%02x", addr);
1511
1512 irq = irq_find_mapping(adap->host_notify_domain, addr);
1513 if (irq <= 0)
1514 return -ENXIO;
1515
1516 generic_handle_irq_safe(irq);
1517
1518 return 0;
1519 }
1520 EXPORT_SYMBOL_GPL(i2c_handle_smbus_host_notify);
1521
i2c_register_adapter(struct i2c_adapter * adap)1522 static int i2c_register_adapter(struct i2c_adapter *adap)
1523 {
1524 int res = -EINVAL;
1525
1526 /* Can't register until after driver model init */
1527 if (WARN_ON(!is_registered)) {
1528 res = -EAGAIN;
1529 goto out_list;
1530 }
1531
1532 /* Sanity checks */
1533 if (WARN(!adap->name[0], "i2c adapter has no name"))
1534 goto out_list;
1535
1536 if (!adap->algo) {
1537 pr_err("adapter '%s': no algo supplied!\n", adap->name);
1538 goto out_list;
1539 }
1540
1541 if (!adap->lock_ops)
1542 adap->lock_ops = &i2c_adapter_lock_ops;
1543
1544 adap->locked_flags = 0;
1545 rt_mutex_init(&adap->bus_lock);
1546 rt_mutex_init(&adap->mux_lock);
1547 mutex_init(&adap->userspace_clients_lock);
1548 INIT_LIST_HEAD(&adap->userspace_clients);
1549
1550 /* Set default timeout to 1 second if not already set */
1551 if (adap->timeout == 0)
1552 adap->timeout = HZ;
1553
1554 /* register soft irqs for Host Notify */
1555 res = i2c_setup_host_notify_irq_domain(adap);
1556 if (res) {
1557 pr_err("adapter '%s': can't create Host Notify IRQs (%d)\n",
1558 adap->name, res);
1559 goto out_list;
1560 }
1561
1562 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
1563 adap->dev.bus = &i2c_bus_type;
1564 adap->dev.type = &i2c_adapter_type;
1565 device_initialize(&adap->dev);
1566
1567 /*
1568 * This adapter can be used as a parent immediately after device_add(),
1569 * setup runtime-pm (especially ignore-children) before hand.
1570 */
1571 device_enable_async_suspend(&adap->dev);
1572 pm_runtime_no_callbacks(&adap->dev);
1573 pm_suspend_ignore_children(&adap->dev, true);
1574 pm_runtime_enable(&adap->dev);
1575
1576 res = device_add(&adap->dev);
1577 if (res) {
1578 pr_err("adapter '%s': can't register device (%d)\n", adap->name, res);
1579 put_device(&adap->dev);
1580 goto out_list;
1581 }
1582
1583 adap->debugfs = debugfs_create_dir(dev_name(&adap->dev), i2c_debugfs_root);
1584
1585 res = i2c_setup_smbus_alert(adap);
1586 if (res)
1587 goto out_reg;
1588
1589 res = i2c_init_recovery(adap);
1590 if (res == -EPROBE_DEFER)
1591 goto out_reg;
1592
1593 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1594
1595 /* create pre-declared device nodes */
1596 of_i2c_register_devices(adap);
1597 i2c_acpi_install_space_handler(adap);
1598 i2c_acpi_register_devices(adap);
1599
1600 if (adap->nr < __i2c_first_dynamic_bus_num)
1601 i2c_scan_static_board_info(adap);
1602
1603 /* Notify drivers */
1604 mutex_lock(&core_lock);
1605 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
1606 mutex_unlock(&core_lock);
1607
1608 return 0;
1609
1610 out_reg:
1611 debugfs_remove_recursive(adap->debugfs);
1612 init_completion(&adap->dev_released);
1613 device_unregister(&adap->dev);
1614 wait_for_completion(&adap->dev_released);
1615 out_list:
1616 mutex_lock(&core_lock);
1617 idr_remove(&i2c_adapter_idr, adap->nr);
1618 mutex_unlock(&core_lock);
1619 return res;
1620 }
1621
1622 /**
1623 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1624 * @adap: the adapter to register (with adap->nr initialized)
1625 * Context: can sleep
1626 *
1627 * See i2c_add_numbered_adapter() for details.
1628 */
__i2c_add_numbered_adapter(struct i2c_adapter * adap)1629 static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1630 {
1631 int id;
1632
1633 mutex_lock(&core_lock);
1634 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1, GFP_KERNEL);
1635 mutex_unlock(&core_lock);
1636 if (WARN(id < 0, "couldn't get idr"))
1637 return id == -ENOSPC ? -EBUSY : id;
1638
1639 return i2c_register_adapter(adap);
1640 }
1641
1642 /**
1643 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1644 * @adapter: the adapter to add
1645 * Context: can sleep
1646 *
1647 * This routine is used to declare an I2C adapter when its bus number
1648 * doesn't matter or when its bus number is specified by an dt alias.
1649 * Examples of bases when the bus number doesn't matter: I2C adapters
1650 * dynamically added by USB links or PCI plugin cards.
1651 *
1652 * When this returns zero, a new bus number was allocated and stored
1653 * in adap->nr, and the specified adapter became available for clients.
1654 * Otherwise, a negative errno value is returned.
1655 */
i2c_add_adapter(struct i2c_adapter * adapter)1656 int i2c_add_adapter(struct i2c_adapter *adapter)
1657 {
1658 struct device *dev = &adapter->dev;
1659 int id;
1660
1661 id = of_alias_get_id(dev->of_node, "i2c");
1662 if (id >= 0) {
1663 adapter->nr = id;
1664 return __i2c_add_numbered_adapter(adapter);
1665 }
1666
1667 mutex_lock(&core_lock);
1668 id = idr_alloc(&i2c_adapter_idr, adapter,
1669 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
1670 mutex_unlock(&core_lock);
1671 if (WARN(id < 0, "couldn't get idr"))
1672 return id;
1673
1674 adapter->nr = id;
1675
1676 return i2c_register_adapter(adapter);
1677 }
1678 EXPORT_SYMBOL(i2c_add_adapter);
1679
1680 /**
1681 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1682 * @adap: the adapter to register (with adap->nr initialized)
1683 * Context: can sleep
1684 *
1685 * This routine is used to declare an I2C adapter when its bus number
1686 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1687 * or otherwise built in to the system's mainboard, and where i2c_board_info
1688 * is used to properly configure I2C devices.
1689 *
1690 * If the requested bus number is set to -1, then this function will behave
1691 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1692 *
1693 * If no devices have pre-been declared for this bus, then be sure to
1694 * register the adapter before any dynamically allocated ones. Otherwise
1695 * the required bus ID may not be available.
1696 *
1697 * When this returns zero, the specified adapter became available for
1698 * clients using the bus number provided in adap->nr. Also, the table
1699 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1700 * and the appropriate driver model device nodes are created. Otherwise, a
1701 * negative errno value is returned.
1702 */
i2c_add_numbered_adapter(struct i2c_adapter * adap)1703 int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1704 {
1705 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1706 return i2c_add_adapter(adap);
1707
1708 return __i2c_add_numbered_adapter(adap);
1709 }
1710 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1711
i2c_do_del_adapter(struct i2c_driver * driver,struct i2c_adapter * adapter)1712 static void i2c_do_del_adapter(struct i2c_driver *driver,
1713 struct i2c_adapter *adapter)
1714 {
1715 struct i2c_client *client, *_n;
1716
1717 /* Remove the devices we created ourselves as the result of hardware
1718 * probing (using a driver's detect method) */
1719 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1720 if (client->adapter == adapter) {
1721 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1722 client->name, client->addr);
1723 list_del(&client->detected);
1724 i2c_unregister_device(client);
1725 }
1726 }
1727 }
1728
__unregister_client(struct device * dev,void * dummy)1729 static int __unregister_client(struct device *dev, void *dummy)
1730 {
1731 struct i2c_client *client = i2c_verify_client(dev);
1732 if (client && strcmp(client->name, "dummy"))
1733 i2c_unregister_device(client);
1734 return 0;
1735 }
1736
__unregister_dummy(struct device * dev,void * dummy)1737 static int __unregister_dummy(struct device *dev, void *dummy)
1738 {
1739 struct i2c_client *client = i2c_verify_client(dev);
1740 i2c_unregister_device(client);
1741 return 0;
1742 }
1743
__process_removed_adapter(struct device_driver * d,void * data)1744 static int __process_removed_adapter(struct device_driver *d, void *data)
1745 {
1746 i2c_do_del_adapter(to_i2c_driver(d), data);
1747 return 0;
1748 }
1749
1750 /**
1751 * i2c_del_adapter - unregister I2C adapter
1752 * @adap: the adapter being unregistered
1753 * Context: can sleep
1754 *
1755 * This unregisters an I2C adapter which was previously registered
1756 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1757 */
i2c_del_adapter(struct i2c_adapter * adap)1758 void i2c_del_adapter(struct i2c_adapter *adap)
1759 {
1760 struct i2c_adapter *found;
1761 struct i2c_client *client, *next;
1762
1763 /* First make sure that this adapter was ever added */
1764 mutex_lock(&core_lock);
1765 found = idr_find(&i2c_adapter_idr, adap->nr);
1766 mutex_unlock(&core_lock);
1767 if (found != adap) {
1768 pr_debug("attempting to delete unregistered adapter [%s]\n", adap->name);
1769 return;
1770 }
1771
1772 i2c_acpi_remove_space_handler(adap);
1773 /* Tell drivers about this removal */
1774 mutex_lock(&core_lock);
1775 bus_for_each_drv(&i2c_bus_type, NULL, adap,
1776 __process_removed_adapter);
1777 mutex_unlock(&core_lock);
1778
1779 /* Remove devices instantiated from sysfs */
1780 mutex_lock_nested(&adap->userspace_clients_lock,
1781 i2c_adapter_depth(adap));
1782 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1783 detected) {
1784 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1785 client->addr);
1786 list_del(&client->detected);
1787 i2c_unregister_device(client);
1788 }
1789 mutex_unlock(&adap->userspace_clients_lock);
1790
1791 /* Detach any active clients. This can't fail, thus we do not
1792 * check the returned value. This is a two-pass process, because
1793 * we can't remove the dummy devices during the first pass: they
1794 * could have been instantiated by real devices wishing to clean
1795 * them up properly, so we give them a chance to do that first. */
1796 device_for_each_child(&adap->dev, NULL, __unregister_client);
1797 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
1798
1799 /* device name is gone after device_unregister */
1800 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1801
1802 pm_runtime_disable(&adap->dev);
1803
1804 i2c_host_notify_irq_teardown(adap);
1805
1806 debugfs_remove_recursive(adap->debugfs);
1807
1808 /* wait until all references to the device are gone
1809 *
1810 * FIXME: This is old code and should ideally be replaced by an
1811 * alternative which results in decoupling the lifetime of the struct
1812 * device from the i2c_adapter, like spi or netdev do. Any solution
1813 * should be thoroughly tested with DEBUG_KOBJECT_RELEASE enabled!
1814 */
1815 init_completion(&adap->dev_released);
1816 device_unregister(&adap->dev);
1817 wait_for_completion(&adap->dev_released);
1818
1819 /* free bus id */
1820 mutex_lock(&core_lock);
1821 idr_remove(&i2c_adapter_idr, adap->nr);
1822 mutex_unlock(&core_lock);
1823
1824 /* Clear the device structure in case this adapter is ever going to be
1825 added again */
1826 memset(&adap->dev, 0, sizeof(adap->dev));
1827 }
1828 EXPORT_SYMBOL(i2c_del_adapter);
1829
devm_i2c_del_adapter(void * adapter)1830 static void devm_i2c_del_adapter(void *adapter)
1831 {
1832 i2c_del_adapter(adapter);
1833 }
1834
1835 /**
1836 * devm_i2c_add_adapter - device-managed variant of i2c_add_adapter()
1837 * @dev: managing device for adding this I2C adapter
1838 * @adapter: the adapter to add
1839 * Context: can sleep
1840 *
1841 * Add adapter with dynamic bus number, same with i2c_add_adapter()
1842 * but the adapter will be auto deleted on driver detach.
1843 */
devm_i2c_add_adapter(struct device * dev,struct i2c_adapter * adapter)1844 int devm_i2c_add_adapter(struct device *dev, struct i2c_adapter *adapter)
1845 {
1846 int ret;
1847
1848 ret = i2c_add_adapter(adapter);
1849 if (ret)
1850 return ret;
1851
1852 return devm_add_action_or_reset(dev, devm_i2c_del_adapter, adapter);
1853 }
1854 EXPORT_SYMBOL_GPL(devm_i2c_add_adapter);
1855
i2c_dev_or_parent_fwnode_match(struct device * dev,const void * data)1856 static int i2c_dev_or_parent_fwnode_match(struct device *dev, const void *data)
1857 {
1858 if (dev_fwnode(dev) == data)
1859 return 1;
1860
1861 if (dev->parent && dev_fwnode(dev->parent) == data)
1862 return 1;
1863
1864 return 0;
1865 }
1866
1867 /**
1868 * i2c_find_adapter_by_fwnode() - find an i2c_adapter for the fwnode
1869 * @fwnode: &struct fwnode_handle corresponding to the &struct i2c_adapter
1870 *
1871 * Look up and return the &struct i2c_adapter corresponding to the @fwnode.
1872 * If no adapter can be found, or @fwnode is NULL, this returns NULL.
1873 *
1874 * The user must call put_device(&adapter->dev) once done with the i2c adapter.
1875 */
i2c_find_adapter_by_fwnode(struct fwnode_handle * fwnode)1876 struct i2c_adapter *i2c_find_adapter_by_fwnode(struct fwnode_handle *fwnode)
1877 {
1878 struct i2c_adapter *adapter;
1879 struct device *dev;
1880
1881 if (!fwnode)
1882 return NULL;
1883
1884 dev = bus_find_device(&i2c_bus_type, NULL, fwnode,
1885 i2c_dev_or_parent_fwnode_match);
1886 if (!dev)
1887 return NULL;
1888
1889 adapter = i2c_verify_adapter(dev);
1890 if (!adapter)
1891 put_device(dev);
1892
1893 return adapter;
1894 }
1895 EXPORT_SYMBOL(i2c_find_adapter_by_fwnode);
1896
1897 /**
1898 * i2c_get_adapter_by_fwnode() - find an i2c_adapter for the fwnode
1899 * @fwnode: &struct fwnode_handle corresponding to the &struct i2c_adapter
1900 *
1901 * Look up and return the &struct i2c_adapter corresponding to the @fwnode,
1902 * and increment the adapter module's use count. If no adapter can be found,
1903 * or @fwnode is NULL, this returns NULL.
1904 *
1905 * The user must call i2c_put_adapter(adapter) once done with the i2c adapter.
1906 * Note that this is different from i2c_find_adapter_by_node().
1907 */
i2c_get_adapter_by_fwnode(struct fwnode_handle * fwnode)1908 struct i2c_adapter *i2c_get_adapter_by_fwnode(struct fwnode_handle *fwnode)
1909 {
1910 struct i2c_adapter *adapter;
1911
1912 adapter = i2c_find_adapter_by_fwnode(fwnode);
1913 if (!adapter)
1914 return NULL;
1915
1916 if (!try_module_get(adapter->owner)) {
1917 put_device(&adapter->dev);
1918 adapter = NULL;
1919 }
1920
1921 return adapter;
1922 }
1923 EXPORT_SYMBOL(i2c_get_adapter_by_fwnode);
1924
i2c_parse_timing(struct device * dev,char * prop_name,u32 * cur_val_p,u32 def_val,bool use_def)1925 static void i2c_parse_timing(struct device *dev, char *prop_name, u32 *cur_val_p,
1926 u32 def_val, bool use_def)
1927 {
1928 int ret;
1929
1930 ret = device_property_read_u32(dev, prop_name, cur_val_p);
1931 if (ret && use_def)
1932 *cur_val_p = def_val;
1933
1934 dev_dbg(dev, "%s: %u\n", prop_name, *cur_val_p);
1935 }
1936
1937 /**
1938 * i2c_parse_fw_timings - get I2C related timing parameters from firmware
1939 * @dev: The device to scan for I2C timing properties
1940 * @t: the i2c_timings struct to be filled with values
1941 * @use_defaults: bool to use sane defaults derived from the I2C specification
1942 * when properties are not found, otherwise don't update
1943 *
1944 * Scan the device for the generic I2C properties describing timing parameters
1945 * for the signal and fill the given struct with the results. If a property was
1946 * not found and use_defaults was true, then maximum timings are assumed which
1947 * are derived from the I2C specification. If use_defaults is not used, the
1948 * results will be as before, so drivers can apply their own defaults before
1949 * calling this helper. The latter is mainly intended for avoiding regressions
1950 * of existing drivers which want to switch to this function. New drivers
1951 * almost always should use the defaults.
1952 */
i2c_parse_fw_timings(struct device * dev,struct i2c_timings * t,bool use_defaults)1953 void i2c_parse_fw_timings(struct device *dev, struct i2c_timings *t, bool use_defaults)
1954 {
1955 bool u = use_defaults;
1956 u32 d;
1957
1958 i2c_parse_timing(dev, "clock-frequency", &t->bus_freq_hz,
1959 I2C_MAX_STANDARD_MODE_FREQ, u);
1960
1961 d = t->bus_freq_hz <= I2C_MAX_STANDARD_MODE_FREQ ? 1000 :
1962 t->bus_freq_hz <= I2C_MAX_FAST_MODE_FREQ ? 300 : 120;
1963 i2c_parse_timing(dev, "i2c-scl-rising-time-ns", &t->scl_rise_ns, d, u);
1964
1965 d = t->bus_freq_hz <= I2C_MAX_FAST_MODE_FREQ ? 300 : 120;
1966 i2c_parse_timing(dev, "i2c-scl-falling-time-ns", &t->scl_fall_ns, d, u);
1967
1968 i2c_parse_timing(dev, "i2c-scl-internal-delay-ns",
1969 &t->scl_int_delay_ns, 0, u);
1970 i2c_parse_timing(dev, "i2c-sda-falling-time-ns", &t->sda_fall_ns,
1971 t->scl_fall_ns, u);
1972 i2c_parse_timing(dev, "i2c-sda-hold-time-ns", &t->sda_hold_ns, 0, u);
1973 i2c_parse_timing(dev, "i2c-digital-filter-width-ns",
1974 &t->digital_filter_width_ns, 0, u);
1975 i2c_parse_timing(dev, "i2c-analog-filter-cutoff-frequency",
1976 &t->analog_filter_cutoff_freq_hz, 0, u);
1977 }
1978 EXPORT_SYMBOL_GPL(i2c_parse_fw_timings);
1979
1980 /* ------------------------------------------------------------------------- */
1981
i2c_for_each_dev(void * data,int (* fn)(struct device * dev,void * data))1982 int i2c_for_each_dev(void *data, int (*fn)(struct device *dev, void *data))
1983 {
1984 int res;
1985
1986 mutex_lock(&core_lock);
1987 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
1988 mutex_unlock(&core_lock);
1989
1990 return res;
1991 }
1992 EXPORT_SYMBOL_GPL(i2c_for_each_dev);
1993
__process_new_driver(struct device * dev,void * data)1994 static int __process_new_driver(struct device *dev, void *data)
1995 {
1996 if (dev->type != &i2c_adapter_type)
1997 return 0;
1998 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
1999 }
2000
2001 /*
2002 * An i2c_driver is used with one or more i2c_client (device) nodes to access
2003 * i2c slave chips, on a bus instance associated with some i2c_adapter.
2004 */
2005
i2c_register_driver(struct module * owner,struct i2c_driver * driver)2006 int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
2007 {
2008 int res;
2009
2010 /* Can't register until after driver model init */
2011 if (WARN_ON(!is_registered))
2012 return -EAGAIN;
2013
2014 /* add the driver to the list of i2c drivers in the driver core */
2015 driver->driver.owner = owner;
2016 driver->driver.bus = &i2c_bus_type;
2017 INIT_LIST_HEAD(&driver->clients);
2018
2019 /* When registration returns, the driver core
2020 * will have called probe() for all matching-but-unbound devices.
2021 */
2022 res = driver_register(&driver->driver);
2023 if (res)
2024 return res;
2025
2026 pr_debug("driver [%s] registered\n", driver->driver.name);
2027
2028 /* Walk the adapters that are already present */
2029 i2c_for_each_dev(driver, __process_new_driver);
2030
2031 return 0;
2032 }
2033 EXPORT_SYMBOL(i2c_register_driver);
2034
__process_removed_driver(struct device * dev,void * data)2035 static int __process_removed_driver(struct device *dev, void *data)
2036 {
2037 if (dev->type == &i2c_adapter_type)
2038 i2c_do_del_adapter(data, to_i2c_adapter(dev));
2039 return 0;
2040 }
2041
2042 /**
2043 * i2c_del_driver - unregister I2C driver
2044 * @driver: the driver being unregistered
2045 * Context: can sleep
2046 */
i2c_del_driver(struct i2c_driver * driver)2047 void i2c_del_driver(struct i2c_driver *driver)
2048 {
2049 i2c_for_each_dev(driver, __process_removed_driver);
2050
2051 driver_unregister(&driver->driver);
2052 pr_debug("driver [%s] unregistered\n", driver->driver.name);
2053 }
2054 EXPORT_SYMBOL(i2c_del_driver);
2055
2056 /* ------------------------------------------------------------------------- */
2057
2058 struct i2c_cmd_arg {
2059 unsigned cmd;
2060 void *arg;
2061 };
2062
i2c_cmd(struct device * dev,void * _arg)2063 static int i2c_cmd(struct device *dev, void *_arg)
2064 {
2065 struct i2c_client *client = i2c_verify_client(dev);
2066 struct i2c_cmd_arg *arg = _arg;
2067 struct i2c_driver *driver;
2068
2069 if (!client || !client->dev.driver)
2070 return 0;
2071
2072 driver = to_i2c_driver(client->dev.driver);
2073 if (driver->command)
2074 driver->command(client, arg->cmd, arg->arg);
2075 return 0;
2076 }
2077
i2c_clients_command(struct i2c_adapter * adap,unsigned int cmd,void * arg)2078 void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
2079 {
2080 struct i2c_cmd_arg cmd_arg;
2081
2082 cmd_arg.cmd = cmd;
2083 cmd_arg.arg = arg;
2084 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
2085 }
2086 EXPORT_SYMBOL(i2c_clients_command);
2087
i2c_init(void)2088 static int __init i2c_init(void)
2089 {
2090 int retval;
2091
2092 retval = of_alias_get_highest_id("i2c");
2093
2094 down_write(&__i2c_board_lock);
2095 if (retval >= __i2c_first_dynamic_bus_num)
2096 __i2c_first_dynamic_bus_num = retval + 1;
2097 up_write(&__i2c_board_lock);
2098
2099 retval = bus_register(&i2c_bus_type);
2100 if (retval)
2101 return retval;
2102
2103 is_registered = true;
2104
2105 i2c_debugfs_root = debugfs_create_dir("i2c", NULL);
2106
2107 retval = i2c_add_driver(&dummy_driver);
2108 if (retval)
2109 goto class_err;
2110
2111 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
2112 WARN_ON(of_reconfig_notifier_register(&i2c_of_notifier));
2113 if (IS_ENABLED(CONFIG_ACPI))
2114 WARN_ON(acpi_reconfig_notifier_register(&i2c_acpi_notifier));
2115
2116 return 0;
2117
2118 class_err:
2119 is_registered = false;
2120 bus_unregister(&i2c_bus_type);
2121 return retval;
2122 }
2123
i2c_exit(void)2124 static void __exit i2c_exit(void)
2125 {
2126 if (IS_ENABLED(CONFIG_ACPI))
2127 WARN_ON(acpi_reconfig_notifier_unregister(&i2c_acpi_notifier));
2128 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
2129 WARN_ON(of_reconfig_notifier_unregister(&i2c_of_notifier));
2130 i2c_del_driver(&dummy_driver);
2131 debugfs_remove_recursive(i2c_debugfs_root);
2132 bus_unregister(&i2c_bus_type);
2133 tracepoint_synchronize_unregister();
2134 }
2135
2136 /* We must initialize early, because some subsystems register i2c drivers
2137 * in subsys_initcall() code, but are linked (and initialized) before i2c.
2138 */
2139 postcore_initcall(i2c_init);
2140 module_exit(i2c_exit);
2141
2142 /* ----------------------------------------------------
2143 * the functional interface to the i2c busses.
2144 * ----------------------------------------------------
2145 */
2146
2147 /* Check if val is exceeding the quirk IFF quirk is non 0 */
2148 #define i2c_quirk_exceeded(val, quirk) ((quirk) && ((val) > (quirk)))
2149
i2c_quirk_error(struct i2c_adapter * adap,struct i2c_msg * msg,char * err_msg)2150 static int i2c_quirk_error(struct i2c_adapter *adap, struct i2c_msg *msg, char *err_msg)
2151 {
2152 dev_err_ratelimited(&adap->dev, "adapter quirk: %s (addr 0x%04x, size %u, %s)\n",
2153 err_msg, msg->addr, msg->len,
2154 str_read_write(msg->flags & I2C_M_RD));
2155 return -EOPNOTSUPP;
2156 }
2157
i2c_check_for_quirks(struct i2c_adapter * adap,struct i2c_msg * msgs,int num)2158 static int i2c_check_for_quirks(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2159 {
2160 const struct i2c_adapter_quirks *q = adap->quirks;
2161 int max_num = q->max_num_msgs, i;
2162 bool do_len_check = true;
2163
2164 if (q->flags & I2C_AQ_COMB) {
2165 max_num = 2;
2166
2167 /* special checks for combined messages */
2168 if (num == 2) {
2169 if (q->flags & I2C_AQ_COMB_WRITE_FIRST && msgs[0].flags & I2C_M_RD)
2170 return i2c_quirk_error(adap, &msgs[0], "1st comb msg must be write");
2171
2172 if (q->flags & I2C_AQ_COMB_READ_SECOND && !(msgs[1].flags & I2C_M_RD))
2173 return i2c_quirk_error(adap, &msgs[1], "2nd comb msg must be read");
2174
2175 if (q->flags & I2C_AQ_COMB_SAME_ADDR && msgs[0].addr != msgs[1].addr)
2176 return i2c_quirk_error(adap, &msgs[0], "comb msg only to same addr");
2177
2178 if (i2c_quirk_exceeded(msgs[0].len, q->max_comb_1st_msg_len))
2179 return i2c_quirk_error(adap, &msgs[0], "msg too long");
2180
2181 if (i2c_quirk_exceeded(msgs[1].len, q->max_comb_2nd_msg_len))
2182 return i2c_quirk_error(adap, &msgs[1], "msg too long");
2183
2184 do_len_check = false;
2185 }
2186 }
2187
2188 if (i2c_quirk_exceeded(num, max_num))
2189 return i2c_quirk_error(adap, &msgs[0], "too many messages");
2190
2191 for (i = 0; i < num; i++) {
2192 u16 len = msgs[i].len;
2193
2194 if (msgs[i].flags & I2C_M_RD) {
2195 if (do_len_check && i2c_quirk_exceeded(len, q->max_read_len))
2196 return i2c_quirk_error(adap, &msgs[i], "msg too long");
2197
2198 if (q->flags & I2C_AQ_NO_ZERO_LEN_READ && len == 0)
2199 return i2c_quirk_error(adap, &msgs[i], "no zero length");
2200 } else {
2201 if (do_len_check && i2c_quirk_exceeded(len, q->max_write_len))
2202 return i2c_quirk_error(adap, &msgs[i], "msg too long");
2203
2204 if (q->flags & I2C_AQ_NO_ZERO_LEN_WRITE && len == 0)
2205 return i2c_quirk_error(adap, &msgs[i], "no zero length");
2206 }
2207 }
2208
2209 return 0;
2210 }
2211
2212 /**
2213 * __i2c_transfer - unlocked flavor of i2c_transfer
2214 * @adap: Handle to I2C bus
2215 * @msgs: One or more messages to execute before STOP is issued to
2216 * terminate the operation; each message begins with a START.
2217 * @num: Number of messages to be executed.
2218 *
2219 * Returns negative errno, else the number of messages executed.
2220 *
2221 * Adapter lock must be held when calling this function. No debug logging
2222 * takes place.
2223 */
__i2c_transfer(struct i2c_adapter * adap,struct i2c_msg * msgs,int num)2224 int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2225 {
2226 unsigned long orig_jiffies;
2227 int ret, try;
2228
2229 if (!adap->algo->master_xfer) {
2230 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
2231 return -EOPNOTSUPP;
2232 }
2233
2234 if (WARN_ON(!msgs || num < 1))
2235 return -EINVAL;
2236
2237 ret = __i2c_check_suspended(adap);
2238 if (ret)
2239 return ret;
2240
2241 if (adap->quirks && i2c_check_for_quirks(adap, msgs, num))
2242 return -EOPNOTSUPP;
2243
2244 /*
2245 * i2c_trace_msg_key gets enabled when tracepoint i2c_transfer gets
2246 * enabled. This is an efficient way of keeping the for-loop from
2247 * being executed when not needed.
2248 */
2249 if (static_branch_unlikely(&i2c_trace_msg_key)) {
2250 int i;
2251 for (i = 0; i < num; i++)
2252 if (msgs[i].flags & I2C_M_RD)
2253 trace_i2c_read(adap, &msgs[i], i);
2254 else
2255 trace_i2c_write(adap, &msgs[i], i);
2256 }
2257
2258 /* Retry automatically on arbitration loss */
2259 orig_jiffies = jiffies;
2260 for (ret = 0, try = 0; try <= adap->retries; try++) {
2261 if (i2c_in_atomic_xfer_mode() && adap->algo->master_xfer_atomic)
2262 ret = adap->algo->master_xfer_atomic(adap, msgs, num);
2263 else
2264 ret = adap->algo->master_xfer(adap, msgs, num);
2265
2266 if (ret != -EAGAIN)
2267 break;
2268 if (time_after(jiffies, orig_jiffies + adap->timeout))
2269 break;
2270 }
2271
2272 if (static_branch_unlikely(&i2c_trace_msg_key)) {
2273 int i;
2274 for (i = 0; i < ret; i++)
2275 if (msgs[i].flags & I2C_M_RD)
2276 trace_i2c_reply(adap, &msgs[i], i);
2277 trace_i2c_result(adap, num, ret);
2278 }
2279
2280 return ret;
2281 }
2282 EXPORT_SYMBOL(__i2c_transfer);
2283
2284 /**
2285 * i2c_transfer - execute a single or combined I2C message
2286 * @adap: Handle to I2C bus
2287 * @msgs: One or more messages to execute before STOP is issued to
2288 * terminate the operation; each message begins with a START.
2289 * @num: Number of messages to be executed.
2290 *
2291 * Returns negative errno, else the number of messages executed.
2292 *
2293 * Note that there is no requirement that each message be sent to
2294 * the same slave address, although that is the most common model.
2295 */
i2c_transfer(struct i2c_adapter * adap,struct i2c_msg * msgs,int num)2296 int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2297 {
2298 int ret;
2299
2300 /* REVISIT the fault reporting model here is weak:
2301 *
2302 * - When we get an error after receiving N bytes from a slave,
2303 * there is no way to report "N".
2304 *
2305 * - When we get a NAK after transmitting N bytes to a slave,
2306 * there is no way to report "N" ... or to let the master
2307 * continue executing the rest of this combined message, if
2308 * that's the appropriate response.
2309 *
2310 * - When for example "num" is two and we successfully complete
2311 * the first message but get an error part way through the
2312 * second, it's unclear whether that should be reported as
2313 * one (discarding status on the second message) or errno
2314 * (discarding status on the first one).
2315 */
2316 ret = __i2c_lock_bus_helper(adap);
2317 if (ret)
2318 return ret;
2319
2320 ret = __i2c_transfer(adap, msgs, num);
2321 i2c_unlock_bus(adap, I2C_LOCK_SEGMENT);
2322
2323 return ret;
2324 }
2325 EXPORT_SYMBOL(i2c_transfer);
2326
2327 /**
2328 * i2c_transfer_buffer_flags - issue a single I2C message transferring data
2329 * to/from a buffer
2330 * @client: Handle to slave device
2331 * @buf: Where the data is stored
2332 * @count: How many bytes to transfer, must be less than 64k since msg.len is u16
2333 * @flags: The flags to be used for the message, e.g. I2C_M_RD for reads
2334 *
2335 * Returns negative errno, or else the number of bytes transferred.
2336 */
i2c_transfer_buffer_flags(const struct i2c_client * client,char * buf,int count,u16 flags)2337 int i2c_transfer_buffer_flags(const struct i2c_client *client, char *buf,
2338 int count, u16 flags)
2339 {
2340 int ret;
2341 struct i2c_msg msg = {
2342 .addr = client->addr,
2343 .flags = flags | (client->flags & I2C_M_TEN),
2344 .len = count,
2345 .buf = buf,
2346 };
2347
2348 ret = i2c_transfer(client->adapter, &msg, 1);
2349
2350 /*
2351 * If everything went ok (i.e. 1 msg transferred), return #bytes
2352 * transferred, else error code.
2353 */
2354 return (ret == 1) ? count : ret;
2355 }
2356 EXPORT_SYMBOL(i2c_transfer_buffer_flags);
2357
2358 /**
2359 * i2c_get_device_id - get manufacturer, part id and die revision of a device
2360 * @client: The device to query
2361 * @id: The queried information
2362 *
2363 * Returns negative errno on error, zero on success.
2364 */
i2c_get_device_id(const struct i2c_client * client,struct i2c_device_identity * id)2365 int i2c_get_device_id(const struct i2c_client *client,
2366 struct i2c_device_identity *id)
2367 {
2368 struct i2c_adapter *adap = client->adapter;
2369 union i2c_smbus_data raw_id;
2370 int ret;
2371
2372 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_I2C_BLOCK))
2373 return -EOPNOTSUPP;
2374
2375 raw_id.block[0] = 3;
2376 ret = i2c_smbus_xfer(adap, I2C_ADDR_DEVICE_ID, 0,
2377 I2C_SMBUS_READ, client->addr << 1,
2378 I2C_SMBUS_I2C_BLOCK_DATA, &raw_id);
2379 if (ret)
2380 return ret;
2381
2382 id->manufacturer_id = (raw_id.block[1] << 4) | (raw_id.block[2] >> 4);
2383 id->part_id = ((raw_id.block[2] & 0xf) << 5) | (raw_id.block[3] >> 3);
2384 id->die_revision = raw_id.block[3] & 0x7;
2385 return 0;
2386 }
2387 EXPORT_SYMBOL_GPL(i2c_get_device_id);
2388
2389 /**
2390 * i2c_client_get_device_id - get the driver match table entry of a device
2391 * @client: the device to query. The device must be bound to a driver
2392 *
2393 * Returns a pointer to the matching entry if found, NULL otherwise.
2394 */
i2c_client_get_device_id(const struct i2c_client * client)2395 const struct i2c_device_id *i2c_client_get_device_id(const struct i2c_client *client)
2396 {
2397 const struct i2c_driver *drv = to_i2c_driver(client->dev.driver);
2398
2399 return i2c_match_id(drv->id_table, client);
2400 }
2401 EXPORT_SYMBOL_GPL(i2c_client_get_device_id);
2402
2403 /* ----------------------------------------------------
2404 * the i2c address scanning function
2405 * Will not work for 10-bit addresses!
2406 * ----------------------------------------------------
2407 */
2408
2409 /*
2410 * Legacy default probe function, mostly relevant for SMBus. The default
2411 * probe method is a quick write, but it is known to corrupt the 24RF08
2412 * EEPROMs due to a state machine bug, and could also irreversibly
2413 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2414 * we use a short byte read instead. Also, some bus drivers don't implement
2415 * quick write, so we fallback to a byte read in that case too.
2416 * On x86, there is another special case for FSC hardware monitoring chips,
2417 * which want regular byte reads (address 0x73.) Fortunately, these are the
2418 * only known chips using this I2C address on PC hardware.
2419 * Returns 1 if probe succeeded, 0 if not.
2420 */
i2c_default_probe(struct i2c_adapter * adap,unsigned short addr)2421 static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
2422 {
2423 int err;
2424 union i2c_smbus_data dummy;
2425
2426 #ifdef CONFIG_X86
2427 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
2428 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
2429 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2430 I2C_SMBUS_BYTE_DATA, &dummy);
2431 else
2432 #endif
2433 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
2434 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
2435 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
2436 I2C_SMBUS_QUICK, NULL);
2437 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
2438 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2439 I2C_SMBUS_BYTE, &dummy);
2440 else {
2441 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
2442 addr);
2443 err = -EOPNOTSUPP;
2444 }
2445
2446 return err >= 0;
2447 }
2448
i2c_detect_address(struct i2c_client * temp_client,struct i2c_driver * driver)2449 static int i2c_detect_address(struct i2c_client *temp_client,
2450 struct i2c_driver *driver)
2451 {
2452 struct i2c_board_info info;
2453 struct i2c_adapter *adapter = temp_client->adapter;
2454 int addr = temp_client->addr;
2455 int err;
2456
2457 /* Make sure the address is valid */
2458 err = i2c_check_7bit_addr_validity_strict(addr);
2459 if (err) {
2460 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
2461 addr);
2462 return err;
2463 }
2464
2465 /* Skip if already in use (7 bit, no need to encode flags) */
2466 if (i2c_check_addr_busy(adapter, addr))
2467 return 0;
2468
2469 /* Make sure there is something at this address */
2470 if (!i2c_default_probe(adapter, addr))
2471 return 0;
2472
2473 /* Finally call the custom detection function */
2474 memset(&info, 0, sizeof(struct i2c_board_info));
2475 info.addr = addr;
2476 err = driver->detect(temp_client, &info);
2477 if (err) {
2478 /* -ENODEV is returned if the detection fails. We catch it
2479 here as this isn't an error. */
2480 return err == -ENODEV ? 0 : err;
2481 }
2482
2483 /* Consistency check */
2484 if (info.type[0] == '\0') {
2485 dev_err(&adapter->dev,
2486 "%s detection function provided no name for 0x%x\n",
2487 driver->driver.name, addr);
2488 } else {
2489 struct i2c_client *client;
2490
2491 /* Detection succeeded, instantiate the device */
2492 if (adapter->class & I2C_CLASS_DEPRECATED)
2493 dev_warn(&adapter->dev,
2494 "This adapter will soon drop class based instantiation of devices. "
2495 "Please make sure client 0x%02x gets instantiated by other means. "
2496 "Check 'Documentation/i2c/instantiating-devices.rst' for details.\n",
2497 info.addr);
2498
2499 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
2500 info.type, info.addr);
2501 client = i2c_new_client_device(adapter, &info);
2502 if (!IS_ERR(client))
2503 list_add_tail(&client->detected, &driver->clients);
2504 else
2505 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
2506 info.type, info.addr);
2507 }
2508 return 0;
2509 }
2510
i2c_detect(struct i2c_adapter * adapter,struct i2c_driver * driver)2511 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
2512 {
2513 const unsigned short *address_list;
2514 struct i2c_client *temp_client;
2515 int i, err = 0;
2516
2517 address_list = driver->address_list;
2518 if (!driver->detect || !address_list)
2519 return 0;
2520
2521 /* Warn that the adapter lost class based instantiation */
2522 if (adapter->class == I2C_CLASS_DEPRECATED) {
2523 dev_dbg(&adapter->dev,
2524 "This adapter dropped support for I2C classes and won't auto-detect %s devices anymore. "
2525 "If you need it, check 'Documentation/i2c/instantiating-devices.rst' for alternatives.\n",
2526 driver->driver.name);
2527 return 0;
2528 }
2529
2530 /* Stop here if the classes do not match */
2531 if (!(adapter->class & driver->class))
2532 return 0;
2533
2534 /* Set up a temporary client to help detect callback */
2535 temp_client = kzalloc(sizeof(*temp_client), GFP_KERNEL);
2536 if (!temp_client)
2537 return -ENOMEM;
2538
2539 temp_client->adapter = adapter;
2540
2541 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
2542 dev_dbg(&adapter->dev,
2543 "found normal entry for adapter %d, addr 0x%02x\n",
2544 i2c_adapter_id(adapter), address_list[i]);
2545 temp_client->addr = address_list[i];
2546 err = i2c_detect_address(temp_client, driver);
2547 if (unlikely(err))
2548 break;
2549 }
2550
2551 kfree(temp_client);
2552
2553 return err;
2554 }
2555
i2c_probe_func_quick_read(struct i2c_adapter * adap,unsigned short addr)2556 int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
2557 {
2558 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2559 I2C_SMBUS_QUICK, NULL) >= 0;
2560 }
2561 EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
2562
2563 struct i2c_client *
i2c_new_scanned_device(struct i2c_adapter * adap,struct i2c_board_info * info,unsigned short const * addr_list,int (* probe)(struct i2c_adapter * adap,unsigned short addr))2564 i2c_new_scanned_device(struct i2c_adapter *adap,
2565 struct i2c_board_info *info,
2566 unsigned short const *addr_list,
2567 int (*probe)(struct i2c_adapter *adap, unsigned short addr))
2568 {
2569 int i;
2570
2571 if (!probe)
2572 probe = i2c_default_probe;
2573
2574 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2575 /* Check address validity */
2576 if (i2c_check_7bit_addr_validity_strict(addr_list[i]) < 0) {
2577 dev_warn(&adap->dev, "Invalid 7-bit address 0x%02x\n",
2578 addr_list[i]);
2579 continue;
2580 }
2581
2582 /* Check address availability (7 bit, no need to encode flags) */
2583 if (i2c_check_addr_busy(adap, addr_list[i])) {
2584 dev_dbg(&adap->dev,
2585 "Address 0x%02x already in use, not probing\n",
2586 addr_list[i]);
2587 continue;
2588 }
2589
2590 /* Test address responsiveness */
2591 if (probe(adap, addr_list[i]))
2592 break;
2593 }
2594
2595 if (addr_list[i] == I2C_CLIENT_END) {
2596 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2597 return ERR_PTR(-ENODEV);
2598 }
2599
2600 info->addr = addr_list[i];
2601 return i2c_new_client_device(adap, info);
2602 }
2603 EXPORT_SYMBOL_GPL(i2c_new_scanned_device);
2604
i2c_get_adapter(int nr)2605 struct i2c_adapter *i2c_get_adapter(int nr)
2606 {
2607 struct i2c_adapter *adapter;
2608
2609 mutex_lock(&core_lock);
2610 adapter = idr_find(&i2c_adapter_idr, nr);
2611 if (!adapter)
2612 goto exit;
2613
2614 if (try_module_get(adapter->owner))
2615 get_device(&adapter->dev);
2616 else
2617 adapter = NULL;
2618
2619 exit:
2620 mutex_unlock(&core_lock);
2621 return adapter;
2622 }
2623 EXPORT_SYMBOL(i2c_get_adapter);
2624
i2c_put_adapter(struct i2c_adapter * adap)2625 void i2c_put_adapter(struct i2c_adapter *adap)
2626 {
2627 if (!adap)
2628 return;
2629
2630 module_put(adap->owner);
2631 /* Should be last, otherwise we risk use-after-free with 'adap' */
2632 put_device(&adap->dev);
2633 }
2634 EXPORT_SYMBOL(i2c_put_adapter);
2635
2636 /**
2637 * i2c_get_dma_safe_msg_buf() - get a DMA safe buffer for the given i2c_msg
2638 * @msg: the message to be checked
2639 * @threshold: the minimum number of bytes for which using DMA makes sense.
2640 * Should at least be 1.
2641 *
2642 * Return: NULL if a DMA safe buffer was not obtained. Use msg->buf with PIO.
2643 * Or a valid pointer to be used with DMA. After use, release it by
2644 * calling i2c_put_dma_safe_msg_buf().
2645 *
2646 * This function must only be called from process context!
2647 */
i2c_get_dma_safe_msg_buf(struct i2c_msg * msg,unsigned int threshold)2648 u8 *i2c_get_dma_safe_msg_buf(struct i2c_msg *msg, unsigned int threshold)
2649 {
2650 /* also skip 0-length msgs for bogus thresholds of 0 */
2651 if (!threshold)
2652 pr_debug("DMA buffer for addr=0x%02x with length 0 is bogus\n",
2653 msg->addr);
2654 if (msg->len < threshold || msg->len == 0)
2655 return NULL;
2656
2657 if (msg->flags & I2C_M_DMA_SAFE)
2658 return msg->buf;
2659
2660 pr_debug("using bounce buffer for addr=0x%02x, len=%d\n",
2661 msg->addr, msg->len);
2662
2663 if (msg->flags & I2C_M_RD)
2664 return kzalloc(msg->len, GFP_KERNEL);
2665 else
2666 return kmemdup(msg->buf, msg->len, GFP_KERNEL);
2667 }
2668 EXPORT_SYMBOL_GPL(i2c_get_dma_safe_msg_buf);
2669
2670 /**
2671 * i2c_put_dma_safe_msg_buf - release DMA safe buffer and sync with i2c_msg
2672 * @buf: the buffer obtained from i2c_get_dma_safe_msg_buf(). May be NULL.
2673 * @msg: the message which the buffer corresponds to
2674 * @xferred: bool saying if the message was transferred
2675 */
i2c_put_dma_safe_msg_buf(u8 * buf,struct i2c_msg * msg,bool xferred)2676 void i2c_put_dma_safe_msg_buf(u8 *buf, struct i2c_msg *msg, bool xferred)
2677 {
2678 if (!buf || buf == msg->buf)
2679 return;
2680
2681 if (xferred && msg->flags & I2C_M_RD)
2682 memcpy(msg->buf, buf, msg->len);
2683
2684 kfree(buf);
2685 }
2686 EXPORT_SYMBOL_GPL(i2c_put_dma_safe_msg_buf);
2687
2688 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2689 MODULE_DESCRIPTION("I2C-Bus main module");
2690 MODULE_LICENSE("GPL");
2691