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