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