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