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