]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/i2c/i2c-core.c
c588a8504c99f56769fae732b0f56cefc47b1ce5
[karo-tx-linux.git] / drivers / i2c / i2c-core.c
1 /* i2c-core.c - a device driver for the iic-bus interface                    */
2 /* ------------------------------------------------------------------------- */
3 /*   Copyright (C) 1995-99 Simon G. Vogl
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.                             */
14 /* ------------------------------------------------------------------------- */
15
16 /* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
17    All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
18    SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
19    Jean Delvare <jdelvare@suse.de>
20    Mux support by Rodolfo Giometti <giometti@enneenne.com> and
21    Michael Lawnick <michael.lawnick.ext@nsn.com>
22    OF support is copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
23    (based on a previous patch from Jon Smirl <jonsmirl@gmail.com>) and
24    (c) 2013  Wolfram Sang <wsa@the-dreams.de>
25    I2C ACPI code Copyright (C) 2014 Intel Corp
26    Author: Lan Tianyu <tianyu.lan@intel.com>
27    I2C slave support (c) 2014 by Wolfram Sang <wsa@sang-engineering.com>
28  */
29
30 #define pr_fmt(fmt) "i2c-core: " fmt
31
32 #include <dt-bindings/i2c/i2c.h>
33 #include <asm/uaccess.h>
34 #include <linux/acpi.h>
35 #include <linux/clk/clk-conf.h>
36 #include <linux/completion.h>
37 #include <linux/delay.h>
38 #include <linux/err.h>
39 #include <linux/errno.h>
40 #include <linux/gpio.h>
41 #include <linux/hardirq.h>
42 #include <linux/i2c.h>
43 #include <linux/idr.h>
44 #include <linux/init.h>
45 #include <linux/irqflags.h>
46 #include <linux/jump_label.h>
47 #include <linux/kernel.h>
48 #include <linux/module.h>
49 #include <linux/mutex.h>
50 #include <linux/of_device.h>
51 #include <linux/of.h>
52 #include <linux/of_irq.h>
53 #include <linux/pm_domain.h>
54 #include <linux/pm_runtime.h>
55 #include <linux/pm_wakeirq.h>
56 #include <linux/property.h>
57 #include <linux/rwsem.h>
58 #include <linux/slab.h>
59
60 #include "i2c-core.h"
61
62 #define CREATE_TRACE_POINTS
63 #include <trace/events/i2c.h>
64
65 #define I2C_ADDR_OFFSET_TEN_BIT 0xa000
66 #define I2C_ADDR_OFFSET_SLAVE   0x1000
67
68 /* core_lock protects i2c_adapter_idr, and guarantees
69    that device detection, deletion of detected devices, and attach_adapter
70    calls are serialized */
71 static DEFINE_MUTEX(core_lock);
72 static DEFINE_IDR(i2c_adapter_idr);
73
74 static struct device_type i2c_client_type;
75 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
76
77 static struct static_key i2c_trace_msg = STATIC_KEY_INIT_FALSE;
78 static bool is_registered;
79
80 void i2c_transfer_trace_reg(void)
81 {
82         static_key_slow_inc(&i2c_trace_msg);
83 }
84
85 void i2c_transfer_trace_unreg(void)
86 {
87         static_key_slow_dec(&i2c_trace_msg);
88 }
89
90 #if defined(CONFIG_ACPI)
91 struct i2c_acpi_handler_data {
92         struct acpi_connection_info info;
93         struct i2c_adapter *adapter;
94 };
95
96 struct gsb_buffer {
97         u8      status;
98         u8      len;
99         union {
100                 u16     wdata;
101                 u8      bdata;
102                 u8      data[0];
103         };
104 } __packed;
105
106 struct i2c_acpi_lookup {
107         struct i2c_board_info *info;
108         acpi_handle adapter_handle;
109         acpi_handle device_handle;
110         acpi_handle search_handle;
111         u32 speed;
112         u32 min_speed;
113 };
114
115 static int i2c_acpi_fill_info(struct acpi_resource *ares, void *data)
116 {
117         struct i2c_acpi_lookup *lookup = data;
118         struct i2c_board_info *info = lookup->info;
119         struct acpi_resource_i2c_serialbus *sb;
120         acpi_status status;
121
122         if (info->addr || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
123                 return 1;
124
125         sb = &ares->data.i2c_serial_bus;
126         if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C)
127                 return 1;
128
129         status = acpi_get_handle(lookup->device_handle,
130                                  sb->resource_source.string_ptr,
131                                  &lookup->adapter_handle);
132         if (!ACPI_SUCCESS(status))
133                 return 1;
134
135         info->addr = sb->slave_address;
136         lookup->speed = sb->connection_speed;
137         if (sb->access_mode == ACPI_I2C_10BIT_MODE)
138                 info->flags |= I2C_CLIENT_TEN;
139
140         return 1;
141 }
142
143 static int i2c_acpi_do_lookup(struct acpi_device *adev,
144                               struct i2c_acpi_lookup *lookup)
145 {
146         struct i2c_board_info *info = lookup->info;
147         struct list_head resource_list;
148         int ret;
149
150         if (acpi_bus_get_status(adev) || !adev->status.present ||
151             acpi_device_enumerated(adev))
152                 return -EINVAL;
153
154         memset(info, 0, sizeof(*info));
155         lookup->device_handle = acpi_device_handle(adev);
156
157         /* Look up for I2cSerialBus resource */
158         INIT_LIST_HEAD(&resource_list);
159         ret = acpi_dev_get_resources(adev, &resource_list,
160                                      i2c_acpi_fill_info, lookup);
161         acpi_dev_free_resource_list(&resource_list);
162
163         if (ret < 0 || !info->addr)
164                 return -EINVAL;
165
166         return 0;
167 }
168
169 static int i2c_acpi_get_info(struct acpi_device *adev,
170                              struct i2c_board_info *info,
171                              struct i2c_adapter *adapter,
172                              acpi_handle *adapter_handle)
173 {
174         struct list_head resource_list;
175         struct resource_entry *entry;
176         struct i2c_acpi_lookup lookup;
177         int ret;
178
179         memset(&lookup, 0, sizeof(lookup));
180         lookup.info = info;
181
182         ret = i2c_acpi_do_lookup(adev, &lookup);
183         if (ret)
184                 return ret;
185
186         if (adapter) {
187                 /* The adapter must match the one in I2cSerialBus() connector */
188                 if (ACPI_HANDLE(&adapter->dev) != lookup.adapter_handle)
189                         return -ENODEV;
190         } else {
191                 struct acpi_device *adapter_adev;
192
193                 /* The adapter must be present */
194                 if (acpi_bus_get_device(lookup.adapter_handle, &adapter_adev))
195                         return -ENODEV;
196                 if (acpi_bus_get_status(adapter_adev) ||
197                     !adapter_adev->status.present)
198                         return -ENODEV;
199         }
200
201         info->fwnode = acpi_fwnode_handle(adev);
202         if (adapter_handle)
203                 *adapter_handle = lookup.adapter_handle;
204
205         /* Then fill IRQ number if any */
206         INIT_LIST_HEAD(&resource_list);
207         ret = acpi_dev_get_resources(adev, &resource_list, NULL, NULL);
208         if (ret < 0)
209                 return -EINVAL;
210
211         resource_list_for_each_entry(entry, &resource_list) {
212                 if (resource_type(entry->res) == IORESOURCE_IRQ) {
213                         info->irq = entry->res->start;
214                         break;
215                 }
216         }
217
218         acpi_dev_free_resource_list(&resource_list);
219
220         strlcpy(info->type, dev_name(&adev->dev), sizeof(info->type));
221
222         return 0;
223 }
224
225 static void i2c_acpi_register_device(struct i2c_adapter *adapter,
226                                      struct acpi_device *adev,
227                                      struct i2c_board_info *info)
228 {
229         adev->power.flags.ignore_parent = true;
230         acpi_device_set_enumerated(adev);
231
232         if (!i2c_new_device(adapter, info)) {
233                 adev->power.flags.ignore_parent = false;
234                 dev_err(&adapter->dev,
235                         "failed to add I2C device %s from ACPI\n",
236                         dev_name(&adev->dev));
237         }
238 }
239
240 static acpi_status i2c_acpi_add_device(acpi_handle handle, u32 level,
241                                        void *data, void **return_value)
242 {
243         struct i2c_adapter *adapter = data;
244         struct acpi_device *adev;
245         struct i2c_board_info info;
246
247         if (acpi_bus_get_device(handle, &adev))
248                 return AE_OK;
249
250         if (i2c_acpi_get_info(adev, &info, adapter, NULL))
251                 return AE_OK;
252
253         i2c_acpi_register_device(adapter, adev, &info);
254
255         return AE_OK;
256 }
257
258 #define I2C_ACPI_MAX_SCAN_DEPTH 32
259
260 /**
261  * i2c_acpi_register_devices - enumerate I2C slave devices behind adapter
262  * @adap: pointer to adapter
263  *
264  * Enumerate all I2C slave devices behind this adapter by walking the ACPI
265  * namespace. When a device is found it will be added to the Linux device
266  * model and bound to the corresponding ACPI handle.
267  */
268 static void i2c_acpi_register_devices(struct i2c_adapter *adap)
269 {
270         acpi_status status;
271
272         if (!has_acpi_companion(&adap->dev))
273                 return;
274
275         status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
276                                      I2C_ACPI_MAX_SCAN_DEPTH,
277                                      i2c_acpi_add_device, NULL,
278                                      adap, NULL);
279         if (ACPI_FAILURE(status))
280                 dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
281 }
282
283 static acpi_status i2c_acpi_lookup_speed(acpi_handle handle, u32 level,
284                                            void *data, void **return_value)
285 {
286         struct i2c_acpi_lookup *lookup = data;
287         struct acpi_device *adev;
288
289         if (acpi_bus_get_device(handle, &adev))
290                 return AE_OK;
291
292         if (i2c_acpi_do_lookup(adev, lookup))
293                 return AE_OK;
294
295         if (lookup->search_handle != lookup->adapter_handle)
296                 return AE_OK;
297
298         if (lookup->speed <= lookup->min_speed)
299                 lookup->min_speed = lookup->speed;
300
301         return AE_OK;
302 }
303
304 /**
305  * i2c_acpi_find_bus_speed - find I2C bus speed from ACPI
306  * @dev: The device owning the bus
307  *
308  * Find the I2C bus speed by walking the ACPI namespace for all I2C slaves
309  * devices connected to this bus and use the speed of slowest device.
310  *
311  * Returns the speed in Hz or zero
312  */
313 u32 i2c_acpi_find_bus_speed(struct device *dev)
314 {
315         struct i2c_acpi_lookup lookup;
316         struct i2c_board_info dummy;
317         acpi_status status;
318
319         if (!has_acpi_companion(dev))
320                 return 0;
321
322         memset(&lookup, 0, sizeof(lookup));
323         lookup.search_handle = ACPI_HANDLE(dev);
324         lookup.min_speed = UINT_MAX;
325         lookup.info = &dummy;
326
327         status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
328                                      I2C_ACPI_MAX_SCAN_DEPTH,
329                                      i2c_acpi_lookup_speed, NULL,
330                                      &lookup, NULL);
331
332         if (ACPI_FAILURE(status)) {
333                 dev_warn(dev, "unable to find I2C bus speed from ACPI\n");
334                 return 0;
335         }
336
337         return lookup.min_speed != UINT_MAX ? lookup.min_speed : 0;
338 }
339 EXPORT_SYMBOL_GPL(i2c_acpi_find_bus_speed);
340
341 static int i2c_acpi_match_adapter(struct device *dev, void *data)
342 {
343         struct i2c_adapter *adapter = i2c_verify_adapter(dev);
344
345         if (!adapter)
346                 return 0;
347
348         return ACPI_HANDLE(dev) == (acpi_handle)data;
349 }
350
351 static int i2c_acpi_match_device(struct device *dev, void *data)
352 {
353         return ACPI_COMPANION(dev) == data;
354 }
355
356 static struct i2c_adapter *i2c_acpi_find_adapter_by_handle(acpi_handle handle)
357 {
358         struct device *dev;
359
360         dev = bus_find_device(&i2c_bus_type, NULL, handle,
361                               i2c_acpi_match_adapter);
362         return dev ? i2c_verify_adapter(dev) : NULL;
363 }
364
365 static struct i2c_client *i2c_acpi_find_client_by_adev(struct acpi_device *adev)
366 {
367         struct device *dev;
368
369         dev = bus_find_device(&i2c_bus_type, NULL, adev, i2c_acpi_match_device);
370         return dev ? i2c_verify_client(dev) : NULL;
371 }
372
373 static int i2c_acpi_notify(struct notifier_block *nb, unsigned long value,
374                            void *arg)
375 {
376         struct acpi_device *adev = arg;
377         struct i2c_board_info info;
378         acpi_handle adapter_handle;
379         struct i2c_adapter *adapter;
380         struct i2c_client *client;
381
382         switch (value) {
383         case ACPI_RECONFIG_DEVICE_ADD:
384                 if (i2c_acpi_get_info(adev, &info, NULL, &adapter_handle))
385                         break;
386
387                 adapter = i2c_acpi_find_adapter_by_handle(adapter_handle);
388                 if (!adapter)
389                         break;
390
391                 i2c_acpi_register_device(adapter, adev, &info);
392                 break;
393         case ACPI_RECONFIG_DEVICE_REMOVE:
394                 if (!acpi_device_enumerated(adev))
395                         break;
396
397                 client = i2c_acpi_find_client_by_adev(adev);
398                 if (!client)
399                         break;
400
401                 i2c_unregister_device(client);
402                 put_device(&client->dev);
403                 break;
404         }
405
406         return NOTIFY_OK;
407 }
408
409 static struct notifier_block i2c_acpi_notifier = {
410         .notifier_call = i2c_acpi_notify,
411 };
412 #else /* CONFIG_ACPI */
413 static inline void i2c_acpi_register_devices(struct i2c_adapter *adap) { }
414 extern struct notifier_block i2c_acpi_notifier;
415 #endif /* CONFIG_ACPI */
416
417 #ifdef CONFIG_ACPI_I2C_OPREGION
418 static int acpi_gsb_i2c_read_bytes(struct i2c_client *client,
419                 u8 cmd, u8 *data, u8 data_len)
420 {
421
422         struct i2c_msg msgs[2];
423         int ret;
424         u8 *buffer;
425
426         buffer = kzalloc(data_len, GFP_KERNEL);
427         if (!buffer)
428                 return AE_NO_MEMORY;
429
430         msgs[0].addr = client->addr;
431         msgs[0].flags = client->flags;
432         msgs[0].len = 1;
433         msgs[0].buf = &cmd;
434
435         msgs[1].addr = client->addr;
436         msgs[1].flags = client->flags | I2C_M_RD;
437         msgs[1].len = data_len;
438         msgs[1].buf = buffer;
439
440         ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
441         if (ret < 0)
442                 dev_err(&client->adapter->dev, "i2c read failed\n");
443         else
444                 memcpy(data, buffer, data_len);
445
446         kfree(buffer);
447         return ret;
448 }
449
450 static int acpi_gsb_i2c_write_bytes(struct i2c_client *client,
451                 u8 cmd, u8 *data, u8 data_len)
452 {
453
454         struct i2c_msg msgs[1];
455         u8 *buffer;
456         int ret = AE_OK;
457
458         buffer = kzalloc(data_len + 1, GFP_KERNEL);
459         if (!buffer)
460                 return AE_NO_MEMORY;
461
462         buffer[0] = cmd;
463         memcpy(buffer + 1, data, data_len);
464
465         msgs[0].addr = client->addr;
466         msgs[0].flags = client->flags;
467         msgs[0].len = data_len + 1;
468         msgs[0].buf = buffer;
469
470         ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
471         if (ret < 0)
472                 dev_err(&client->adapter->dev, "i2c write failed\n");
473
474         kfree(buffer);
475         return ret;
476 }
477
478 static acpi_status
479 i2c_acpi_space_handler(u32 function, acpi_physical_address command,
480                         u32 bits, u64 *value64,
481                         void *handler_context, void *region_context)
482 {
483         struct gsb_buffer *gsb = (struct gsb_buffer *)value64;
484         struct i2c_acpi_handler_data *data = handler_context;
485         struct acpi_connection_info *info = &data->info;
486         struct acpi_resource_i2c_serialbus *sb;
487         struct i2c_adapter *adapter = data->adapter;
488         struct i2c_client *client;
489         struct acpi_resource *ares;
490         u32 accessor_type = function >> 16;
491         u8 action = function & ACPI_IO_MASK;
492         acpi_status ret;
493         int status;
494
495         ret = acpi_buffer_to_resource(info->connection, info->length, &ares);
496         if (ACPI_FAILURE(ret))
497                 return ret;
498
499         client = kzalloc(sizeof(*client), GFP_KERNEL);
500         if (!client) {
501                 ret = AE_NO_MEMORY;
502                 goto err;
503         }
504
505         if (!value64 || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) {
506                 ret = AE_BAD_PARAMETER;
507                 goto err;
508         }
509
510         sb = &ares->data.i2c_serial_bus;
511         if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C) {
512                 ret = AE_BAD_PARAMETER;
513                 goto err;
514         }
515
516         client->adapter = adapter;
517         client->addr = sb->slave_address;
518
519         if (sb->access_mode == ACPI_I2C_10BIT_MODE)
520                 client->flags |= I2C_CLIENT_TEN;
521
522         switch (accessor_type) {
523         case ACPI_GSB_ACCESS_ATTRIB_SEND_RCV:
524                 if (action == ACPI_READ) {
525                         status = i2c_smbus_read_byte(client);
526                         if (status >= 0) {
527                                 gsb->bdata = status;
528                                 status = 0;
529                         }
530                 } else {
531                         status = i2c_smbus_write_byte(client, gsb->bdata);
532                 }
533                 break;
534
535         case ACPI_GSB_ACCESS_ATTRIB_BYTE:
536                 if (action == ACPI_READ) {
537                         status = i2c_smbus_read_byte_data(client, command);
538                         if (status >= 0) {
539                                 gsb->bdata = status;
540                                 status = 0;
541                         }
542                 } else {
543                         status = i2c_smbus_write_byte_data(client, command,
544                                         gsb->bdata);
545                 }
546                 break;
547
548         case ACPI_GSB_ACCESS_ATTRIB_WORD:
549                 if (action == ACPI_READ) {
550                         status = i2c_smbus_read_word_data(client, command);
551                         if (status >= 0) {
552                                 gsb->wdata = status;
553                                 status = 0;
554                         }
555                 } else {
556                         status = i2c_smbus_write_word_data(client, command,
557                                         gsb->wdata);
558                 }
559                 break;
560
561         case ACPI_GSB_ACCESS_ATTRIB_BLOCK:
562                 if (action == ACPI_READ) {
563                         status = i2c_smbus_read_block_data(client, command,
564                                         gsb->data);
565                         if (status >= 0) {
566                                 gsb->len = status;
567                                 status = 0;
568                         }
569                 } else {
570                         status = i2c_smbus_write_block_data(client, command,
571                                         gsb->len, gsb->data);
572                 }
573                 break;
574
575         case ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE:
576                 if (action == ACPI_READ) {
577                         status = acpi_gsb_i2c_read_bytes(client, command,
578                                         gsb->data, info->access_length);
579                         if (status > 0)
580                                 status = 0;
581                 } else {
582                         status = acpi_gsb_i2c_write_bytes(client, command,
583                                         gsb->data, info->access_length);
584                 }
585                 break;
586
587         default:
588                 dev_warn(&adapter->dev, "protocol 0x%02x not supported for client 0x%02x\n",
589                          accessor_type, client->addr);
590                 ret = AE_BAD_PARAMETER;
591                 goto err;
592         }
593
594         gsb->status = status;
595
596  err:
597         kfree(client);
598         ACPI_FREE(ares);
599         return ret;
600 }
601
602
603 static int i2c_acpi_install_space_handler(struct i2c_adapter *adapter)
604 {
605         acpi_handle handle;
606         struct i2c_acpi_handler_data *data;
607         acpi_status status;
608
609         if (!adapter->dev.parent)
610                 return -ENODEV;
611
612         handle = ACPI_HANDLE(adapter->dev.parent);
613
614         if (!handle)
615                 return -ENODEV;
616
617         data = kzalloc(sizeof(struct i2c_acpi_handler_data),
618                             GFP_KERNEL);
619         if (!data)
620                 return -ENOMEM;
621
622         data->adapter = adapter;
623         status = acpi_bus_attach_private_data(handle, (void *)data);
624         if (ACPI_FAILURE(status)) {
625                 kfree(data);
626                 return -ENOMEM;
627         }
628
629         status = acpi_install_address_space_handler(handle,
630                                 ACPI_ADR_SPACE_GSBUS,
631                                 &i2c_acpi_space_handler,
632                                 NULL,
633                                 data);
634         if (ACPI_FAILURE(status)) {
635                 dev_err(&adapter->dev, "Error installing i2c space handler\n");
636                 acpi_bus_detach_private_data(handle);
637                 kfree(data);
638                 return -ENOMEM;
639         }
640
641         acpi_walk_dep_device_list(handle);
642         return 0;
643 }
644
645 static void i2c_acpi_remove_space_handler(struct i2c_adapter *adapter)
646 {
647         acpi_handle handle;
648         struct i2c_acpi_handler_data *data;
649         acpi_status status;
650
651         if (!adapter->dev.parent)
652                 return;
653
654         handle = ACPI_HANDLE(adapter->dev.parent);
655
656         if (!handle)
657                 return;
658
659         acpi_remove_address_space_handler(handle,
660                                 ACPI_ADR_SPACE_GSBUS,
661                                 &i2c_acpi_space_handler);
662
663         status = acpi_bus_get_private_data(handle, (void **)&data);
664         if (ACPI_SUCCESS(status))
665                 kfree(data);
666
667         acpi_bus_detach_private_data(handle);
668 }
669 #else /* CONFIG_ACPI_I2C_OPREGION */
670 static inline void i2c_acpi_remove_space_handler(struct i2c_adapter *adapter)
671 { }
672
673 static inline int i2c_acpi_install_space_handler(struct i2c_adapter *adapter)
674 { return 0; }
675 #endif /* CONFIG_ACPI_I2C_OPREGION */
676
677 /* ------------------------------------------------------------------------- */
678
679 static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
680                                                 const struct i2c_client *client)
681 {
682         if (!(id && client))
683                 return NULL;
684
685         while (id->name[0]) {
686                 if (strcmp(client->name, id->name) == 0)
687                         return id;
688                 id++;
689         }
690         return NULL;
691 }
692
693 static int i2c_device_match(struct device *dev, struct device_driver *drv)
694 {
695         struct i2c_client       *client = i2c_verify_client(dev);
696         struct i2c_driver       *driver;
697
698
699         /* Attempt an OF style match */
700         if (of_driver_match_device(dev, drv))
701                 return 1;
702
703         /* Then ACPI style match */
704         if (acpi_driver_match_device(dev, drv))
705                 return 1;
706
707         driver = to_i2c_driver(drv);
708
709         /* Finally an I2C match */
710         if (i2c_match_id(driver->id_table, client))
711                 return 1;
712
713         return 0;
714 }
715
716 static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
717 {
718         struct i2c_client *client = to_i2c_client(dev);
719         int rc;
720
721         rc = acpi_device_uevent_modalias(dev, env);
722         if (rc != -ENODEV)
723                 return rc;
724
725         return add_uevent_var(env, "MODALIAS=%s%s", I2C_MODULE_PREFIX, client->name);
726 }
727
728 /* i2c bus recovery routines */
729 static int get_scl_gpio_value(struct i2c_adapter *adap)
730 {
731         return gpio_get_value(adap->bus_recovery_info->scl_gpio);
732 }
733
734 static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
735 {
736         gpio_set_value(adap->bus_recovery_info->scl_gpio, val);
737 }
738
739 static int get_sda_gpio_value(struct i2c_adapter *adap)
740 {
741         return gpio_get_value(adap->bus_recovery_info->sda_gpio);
742 }
743
744 static int i2c_get_gpios_for_recovery(struct i2c_adapter *adap)
745 {
746         struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
747         struct device *dev = &adap->dev;
748         int ret = 0;
749
750         ret = gpio_request_one(bri->scl_gpio, GPIOF_OPEN_DRAIN |
751                         GPIOF_OUT_INIT_HIGH, "i2c-scl");
752         if (ret) {
753                 dev_warn(dev, "Can't get SCL gpio: %d\n", bri->scl_gpio);
754                 return ret;
755         }
756
757         if (bri->get_sda) {
758                 if (gpio_request_one(bri->sda_gpio, GPIOF_IN, "i2c-sda")) {
759                         /* work without SDA polling */
760                         dev_warn(dev, "Can't get SDA gpio: %d. Not using SDA polling\n",
761                                         bri->sda_gpio);
762                         bri->get_sda = NULL;
763                 }
764         }
765
766         return ret;
767 }
768
769 static void i2c_put_gpios_for_recovery(struct i2c_adapter *adap)
770 {
771         struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
772
773         if (bri->get_sda)
774                 gpio_free(bri->sda_gpio);
775
776         gpio_free(bri->scl_gpio);
777 }
778
779 /*
780  * We are generating clock pulses. ndelay() determines durating of clk pulses.
781  * We will generate clock with rate 100 KHz and so duration of both clock levels
782  * is: delay in ns = (10^6 / 100) / 2
783  */
784 #define RECOVERY_NDELAY         5000
785 #define RECOVERY_CLK_CNT        9
786
787 static int i2c_generic_recovery(struct i2c_adapter *adap)
788 {
789         struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
790         int i = 0, val = 1, ret = 0;
791
792         if (bri->prepare_recovery)
793                 bri->prepare_recovery(adap);
794
795         bri->set_scl(adap, val);
796         ndelay(RECOVERY_NDELAY);
797
798         /*
799          * By this time SCL is high, as we need to give 9 falling-rising edges
800          */
801         while (i++ < RECOVERY_CLK_CNT * 2) {
802                 if (val) {
803                         /* Break if SDA is high */
804                         if (bri->get_sda && bri->get_sda(adap))
805                                         break;
806                         /* SCL shouldn't be low here */
807                         if (!bri->get_scl(adap)) {
808                                 dev_err(&adap->dev,
809                                         "SCL is stuck low, exit recovery\n");
810                                 ret = -EBUSY;
811                                 break;
812                         }
813                 }
814
815                 val = !val;
816                 bri->set_scl(adap, val);
817                 ndelay(RECOVERY_NDELAY);
818         }
819
820         if (bri->unprepare_recovery)
821                 bri->unprepare_recovery(adap);
822
823         return ret;
824 }
825
826 int i2c_generic_scl_recovery(struct i2c_adapter *adap)
827 {
828         return i2c_generic_recovery(adap);
829 }
830 EXPORT_SYMBOL_GPL(i2c_generic_scl_recovery);
831
832 int i2c_generic_gpio_recovery(struct i2c_adapter *adap)
833 {
834         int ret;
835
836         ret = i2c_get_gpios_for_recovery(adap);
837         if (ret)
838                 return ret;
839
840         ret = i2c_generic_recovery(adap);
841         i2c_put_gpios_for_recovery(adap);
842
843         return ret;
844 }
845 EXPORT_SYMBOL_GPL(i2c_generic_gpio_recovery);
846
847 int i2c_recover_bus(struct i2c_adapter *adap)
848 {
849         if (!adap->bus_recovery_info)
850                 return -EOPNOTSUPP;
851
852         dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
853         return adap->bus_recovery_info->recover_bus(adap);
854 }
855 EXPORT_SYMBOL_GPL(i2c_recover_bus);
856
857 static void i2c_init_recovery(struct i2c_adapter *adap)
858 {
859         struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
860         char *err_str;
861
862         if (!bri)
863                 return;
864
865         if (!bri->recover_bus) {
866                 err_str = "no recover_bus() found";
867                 goto err;
868         }
869
870         /* Generic GPIO recovery */
871         if (bri->recover_bus == i2c_generic_gpio_recovery) {
872                 if (!gpio_is_valid(bri->scl_gpio)) {
873                         err_str = "invalid SCL gpio";
874                         goto err;
875                 }
876
877                 if (gpio_is_valid(bri->sda_gpio))
878                         bri->get_sda = get_sda_gpio_value;
879                 else
880                         bri->get_sda = NULL;
881
882                 bri->get_scl = get_scl_gpio_value;
883                 bri->set_scl = set_scl_gpio_value;
884         } else if (bri->recover_bus == i2c_generic_scl_recovery) {
885                 /* Generic SCL recovery */
886                 if (!bri->set_scl || !bri->get_scl) {
887                         err_str = "no {get|set}_scl() found";
888                         goto err;
889                 }
890         }
891
892         return;
893  err:
894         dev_err(&adap->dev, "Not using recovery: %s\n", err_str);
895         adap->bus_recovery_info = NULL;
896 }
897
898 static int i2c_device_probe(struct device *dev)
899 {
900         struct i2c_client       *client = i2c_verify_client(dev);
901         struct i2c_driver       *driver;
902         int status;
903
904         if (!client)
905                 return 0;
906
907         if (!client->irq) {
908                 int irq = -ENOENT;
909
910                 if (dev->of_node) {
911                         irq = of_irq_get_byname(dev->of_node, "irq");
912                         if (irq == -EINVAL || irq == -ENODATA)
913                                 irq = of_irq_get(dev->of_node, 0);
914                 } else if (ACPI_COMPANION(dev)) {
915                         irq = acpi_dev_gpio_irq_get(ACPI_COMPANION(dev), 0);
916                 }
917                 if (irq == -EPROBE_DEFER)
918                         return irq;
919                 if (irq < 0)
920                         irq = 0;
921
922                 client->irq = irq;
923         }
924
925         driver = to_i2c_driver(dev->driver);
926         if (!driver->probe || !driver->id_table)
927                 return -ENODEV;
928
929         if (client->flags & I2C_CLIENT_WAKE) {
930                 int wakeirq = -ENOENT;
931
932                 if (dev->of_node) {
933                         wakeirq = of_irq_get_byname(dev->of_node, "wakeup");
934                         if (wakeirq == -EPROBE_DEFER)
935                                 return wakeirq;
936                 }
937
938                 device_init_wakeup(&client->dev, true);
939
940                 if (wakeirq > 0 && wakeirq != client->irq)
941                         status = dev_pm_set_dedicated_wake_irq(dev, wakeirq);
942                 else if (client->irq > 0)
943                         status = dev_pm_set_wake_irq(dev, client->irq);
944                 else
945                         status = 0;
946
947                 if (status)
948                         dev_warn(&client->dev, "failed to set up wakeup irq\n");
949         }
950
951         dev_dbg(dev, "probe\n");
952
953         status = of_clk_set_defaults(dev->of_node, false);
954         if (status < 0)
955                 goto err_clear_wakeup_irq;
956
957         status = dev_pm_domain_attach(&client->dev, true);
958         if (status == -EPROBE_DEFER)
959                 goto err_clear_wakeup_irq;
960
961         status = driver->probe(client, i2c_match_id(driver->id_table, client));
962         if (status)
963                 goto err_detach_pm_domain;
964
965         return 0;
966
967 err_detach_pm_domain:
968         dev_pm_domain_detach(&client->dev, true);
969 err_clear_wakeup_irq:
970         dev_pm_clear_wake_irq(&client->dev);
971         device_init_wakeup(&client->dev, false);
972         return status;
973 }
974
975 static int i2c_device_remove(struct device *dev)
976 {
977         struct i2c_client       *client = i2c_verify_client(dev);
978         struct i2c_driver       *driver;
979         int status = 0;
980
981         if (!client || !dev->driver)
982                 return 0;
983
984         driver = to_i2c_driver(dev->driver);
985         if (driver->remove) {
986                 dev_dbg(dev, "remove\n");
987                 status = driver->remove(client);
988         }
989
990         dev_pm_domain_detach(&client->dev, true);
991
992         dev_pm_clear_wake_irq(&client->dev);
993         device_init_wakeup(&client->dev, false);
994
995         return status;
996 }
997
998 static void i2c_device_shutdown(struct device *dev)
999 {
1000         struct i2c_client *client = i2c_verify_client(dev);
1001         struct i2c_driver *driver;
1002
1003         if (!client || !dev->driver)
1004                 return;
1005         driver = to_i2c_driver(dev->driver);
1006         if (driver->shutdown)
1007                 driver->shutdown(client);
1008 }
1009
1010 static void i2c_client_dev_release(struct device *dev)
1011 {
1012         kfree(to_i2c_client(dev));
1013 }
1014
1015 static ssize_t
1016 show_name(struct device *dev, struct device_attribute *attr, char *buf)
1017 {
1018         return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
1019                        to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
1020 }
1021 static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1022
1023 static ssize_t
1024 show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
1025 {
1026         struct i2c_client *client = to_i2c_client(dev);
1027         int len;
1028
1029         len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
1030         if (len != -ENODEV)
1031                 return len;
1032
1033         return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
1034 }
1035 static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
1036
1037 static struct attribute *i2c_dev_attrs[] = {
1038         &dev_attr_name.attr,
1039         /* modalias helps coldplug:  modprobe $(cat .../modalias) */
1040         &dev_attr_modalias.attr,
1041         NULL
1042 };
1043 ATTRIBUTE_GROUPS(i2c_dev);
1044
1045 struct bus_type i2c_bus_type = {
1046         .name           = "i2c",
1047         .match          = i2c_device_match,
1048         .probe          = i2c_device_probe,
1049         .remove         = i2c_device_remove,
1050         .shutdown       = i2c_device_shutdown,
1051 };
1052 EXPORT_SYMBOL_GPL(i2c_bus_type);
1053
1054 static struct device_type i2c_client_type = {
1055         .groups         = i2c_dev_groups,
1056         .uevent         = i2c_device_uevent,
1057         .release        = i2c_client_dev_release,
1058 };
1059
1060
1061 /**
1062  * i2c_verify_client - return parameter as i2c_client, or NULL
1063  * @dev: device, probably from some driver model iterator
1064  *
1065  * When traversing the driver model tree, perhaps using driver model
1066  * iterators like @device_for_each_child(), you can't assume very much
1067  * about the nodes you find.  Use this function to avoid oopses caused
1068  * by wrongly treating some non-I2C device as an i2c_client.
1069  */
1070 struct i2c_client *i2c_verify_client(struct device *dev)
1071 {
1072         return (dev->type == &i2c_client_type)
1073                         ? to_i2c_client(dev)
1074                         : NULL;
1075 }
1076 EXPORT_SYMBOL(i2c_verify_client);
1077
1078
1079 /* Return a unique address which takes the flags of the client into account */
1080 static unsigned short i2c_encode_flags_to_addr(struct i2c_client *client)
1081 {
1082         unsigned short addr = client->addr;
1083
1084         /* For some client flags, add an arbitrary offset to avoid collisions */
1085         if (client->flags & I2C_CLIENT_TEN)
1086                 addr |= I2C_ADDR_OFFSET_TEN_BIT;
1087
1088         if (client->flags & I2C_CLIENT_SLAVE)
1089                 addr |= I2C_ADDR_OFFSET_SLAVE;
1090
1091         return addr;
1092 }
1093
1094 /* This is a permissive address validity check, I2C address map constraints
1095  * are purposely not enforced, except for the general call address. */
1096 static int i2c_check_addr_validity(unsigned addr, unsigned short flags)
1097 {
1098         if (flags & I2C_CLIENT_TEN) {
1099                 /* 10-bit address, all values are valid */
1100                 if (addr > 0x3ff)
1101                         return -EINVAL;
1102         } else {
1103                 /* 7-bit address, reject the general call address */
1104                 if (addr == 0x00 || addr > 0x7f)
1105                         return -EINVAL;
1106         }
1107         return 0;
1108 }
1109
1110 /* And this is a strict address validity check, used when probing. If a
1111  * device uses a reserved address, then it shouldn't be probed. 7-bit
1112  * addressing is assumed, 10-bit address devices are rare and should be
1113  * explicitly enumerated. */
1114 static int i2c_check_7bit_addr_validity_strict(unsigned short addr)
1115 {
1116         /*
1117          * Reserved addresses per I2C specification:
1118          *  0x00       General call address / START byte
1119          *  0x01       CBUS address
1120          *  0x02       Reserved for different bus format
1121          *  0x03       Reserved for future purposes
1122          *  0x04-0x07  Hs-mode master code
1123          *  0x78-0x7b  10-bit slave addressing
1124          *  0x7c-0x7f  Reserved for future purposes
1125          */
1126         if (addr < 0x08 || addr > 0x77)
1127                 return -EINVAL;
1128         return 0;
1129 }
1130
1131 static int __i2c_check_addr_busy(struct device *dev, void *addrp)
1132 {
1133         struct i2c_client       *client = i2c_verify_client(dev);
1134         int                     addr = *(int *)addrp;
1135
1136         if (client && i2c_encode_flags_to_addr(client) == addr)
1137                 return -EBUSY;
1138         return 0;
1139 }
1140
1141 /* walk up mux tree */
1142 static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
1143 {
1144         struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
1145         int result;
1146
1147         result = device_for_each_child(&adapter->dev, &addr,
1148                                         __i2c_check_addr_busy);
1149
1150         if (!result && parent)
1151                 result = i2c_check_mux_parents(parent, addr);
1152
1153         return result;
1154 }
1155
1156 /* recurse down mux tree */
1157 static int i2c_check_mux_children(struct device *dev, void *addrp)
1158 {
1159         int result;
1160
1161         if (dev->type == &i2c_adapter_type)
1162                 result = device_for_each_child(dev, addrp,
1163                                                 i2c_check_mux_children);
1164         else
1165                 result = __i2c_check_addr_busy(dev, addrp);
1166
1167         return result;
1168 }
1169
1170 static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
1171 {
1172         struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
1173         int result = 0;
1174
1175         if (parent)
1176                 result = i2c_check_mux_parents(parent, addr);
1177
1178         if (!result)
1179                 result = device_for_each_child(&adapter->dev, &addr,
1180                                                 i2c_check_mux_children);
1181
1182         return result;
1183 }
1184
1185 /**
1186  * i2c_adapter_lock_bus - Get exclusive access to an I2C bus segment
1187  * @adapter: Target I2C bus segment
1188  * @flags: I2C_LOCK_ROOT_ADAPTER locks the root i2c adapter, I2C_LOCK_SEGMENT
1189  *      locks only this branch in the adapter tree
1190  */
1191 static void i2c_adapter_lock_bus(struct i2c_adapter *adapter,
1192                                  unsigned int flags)
1193 {
1194         rt_mutex_lock(&adapter->bus_lock);
1195 }
1196
1197 /**
1198  * i2c_adapter_trylock_bus - Try to get exclusive access to an I2C bus segment
1199  * @adapter: Target I2C bus segment
1200  * @flags: I2C_LOCK_ROOT_ADAPTER trylocks the root i2c adapter, I2C_LOCK_SEGMENT
1201  *      trylocks only this branch in the adapter tree
1202  */
1203 static int i2c_adapter_trylock_bus(struct i2c_adapter *adapter,
1204                                    unsigned int flags)
1205 {
1206         return rt_mutex_trylock(&adapter->bus_lock);
1207 }
1208
1209 /**
1210  * i2c_adapter_unlock_bus - Release exclusive access to an I2C bus segment
1211  * @adapter: Target I2C bus segment
1212  * @flags: I2C_LOCK_ROOT_ADAPTER unlocks the root i2c adapter, I2C_LOCK_SEGMENT
1213  *      unlocks only this branch in the adapter tree
1214  */
1215 static void i2c_adapter_unlock_bus(struct i2c_adapter *adapter,
1216                                    unsigned int flags)
1217 {
1218         rt_mutex_unlock(&adapter->bus_lock);
1219 }
1220
1221 static void i2c_dev_set_name(struct i2c_adapter *adap,
1222                              struct i2c_client *client)
1223 {
1224         struct acpi_device *adev = ACPI_COMPANION(&client->dev);
1225
1226         if (adev) {
1227                 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
1228                 return;
1229         }
1230
1231         dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
1232                      i2c_encode_flags_to_addr(client));
1233 }
1234
1235 /**
1236  * i2c_new_device - instantiate an i2c device
1237  * @adap: the adapter managing the device
1238  * @info: describes one I2C device; bus_num is ignored
1239  * Context: can sleep
1240  *
1241  * Create an i2c device. Binding is handled through driver model
1242  * probe()/remove() methods.  A driver may be bound to this device when we
1243  * return from this function, or any later moment (e.g. maybe hotplugging will
1244  * load the driver module).  This call is not appropriate for use by mainboard
1245  * initialization logic, which usually runs during an arch_initcall() long
1246  * before any i2c_adapter could exist.
1247  *
1248  * This returns the new i2c client, which may be saved for later use with
1249  * i2c_unregister_device(); or NULL to indicate an error.
1250  */
1251 struct i2c_client *
1252 i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
1253 {
1254         struct i2c_client       *client;
1255         int                     status;
1256
1257         client = kzalloc(sizeof *client, GFP_KERNEL);
1258         if (!client)
1259                 return NULL;
1260
1261         client->adapter = adap;
1262
1263         client->dev.platform_data = info->platform_data;
1264
1265         if (info->archdata)
1266                 client->dev.archdata = *info->archdata;
1267
1268         client->flags = info->flags;
1269         client->addr = info->addr;
1270         client->irq = info->irq;
1271
1272         strlcpy(client->name, info->type, sizeof(client->name));
1273
1274         status = i2c_check_addr_validity(client->addr, client->flags);
1275         if (status) {
1276                 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
1277                         client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
1278                 goto out_err_silent;
1279         }
1280
1281         /* Check for address business */
1282         status = i2c_check_addr_busy(adap, i2c_encode_flags_to_addr(client));
1283         if (status)
1284                 goto out_err;
1285
1286         client->dev.parent = &client->adapter->dev;
1287         client->dev.bus = &i2c_bus_type;
1288         client->dev.type = &i2c_client_type;
1289         client->dev.of_node = info->of_node;
1290         client->dev.fwnode = info->fwnode;
1291
1292         i2c_dev_set_name(adap, client);
1293         status = device_register(&client->dev);
1294         if (status)
1295                 goto out_err;
1296
1297         dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
1298                 client->name, dev_name(&client->dev));
1299
1300         return client;
1301
1302 out_err:
1303         dev_err(&adap->dev,
1304                 "Failed to register i2c client %s at 0x%02x (%d)\n",
1305                 client->name, client->addr, status);
1306 out_err_silent:
1307         kfree(client);
1308         return NULL;
1309 }
1310 EXPORT_SYMBOL_GPL(i2c_new_device);
1311
1312
1313 /**
1314  * i2c_unregister_device - reverse effect of i2c_new_device()
1315  * @client: value returned from i2c_new_device()
1316  * Context: can sleep
1317  */
1318 void i2c_unregister_device(struct i2c_client *client)
1319 {
1320         if (client->dev.of_node)
1321                 of_node_clear_flag(client->dev.of_node, OF_POPULATED);
1322         if (ACPI_COMPANION(&client->dev))
1323                 acpi_device_clear_enumerated(ACPI_COMPANION(&client->dev));
1324         device_unregister(&client->dev);
1325 }
1326 EXPORT_SYMBOL_GPL(i2c_unregister_device);
1327
1328
1329 static const struct i2c_device_id dummy_id[] = {
1330         { "dummy", 0 },
1331         { },
1332 };
1333
1334 static int dummy_probe(struct i2c_client *client,
1335                        const struct i2c_device_id *id)
1336 {
1337         return 0;
1338 }
1339
1340 static int dummy_remove(struct i2c_client *client)
1341 {
1342         return 0;
1343 }
1344
1345 static struct i2c_driver dummy_driver = {
1346         .driver.name    = "dummy",
1347         .probe          = dummy_probe,
1348         .remove         = dummy_remove,
1349         .id_table       = dummy_id,
1350 };
1351
1352 /**
1353  * i2c_new_dummy - return a new i2c device bound to a dummy driver
1354  * @adapter: the adapter managing the device
1355  * @address: seven bit address to be used
1356  * Context: can sleep
1357  *
1358  * This returns an I2C client bound to the "dummy" driver, intended for use
1359  * with devices that consume multiple addresses.  Examples of such chips
1360  * include various EEPROMS (like 24c04 and 24c08 models).
1361  *
1362  * These dummy devices have two main uses.  First, most I2C and SMBus calls
1363  * except i2c_transfer() need a client handle; the dummy will be that handle.
1364  * And second, this prevents the specified address from being bound to a
1365  * different driver.
1366  *
1367  * This returns the new i2c client, which should be saved for later use with
1368  * i2c_unregister_device(); or NULL to indicate an error.
1369  */
1370 struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
1371 {
1372         struct i2c_board_info info = {
1373                 I2C_BOARD_INFO("dummy", address),
1374         };
1375
1376         return i2c_new_device(adapter, &info);
1377 }
1378 EXPORT_SYMBOL_GPL(i2c_new_dummy);
1379
1380 /**
1381  * i2c_new_secondary_device - Helper to get the instantiated secondary address
1382  * and create the associated device
1383  * @client: Handle to the primary client
1384  * @name: Handle to specify which secondary address to get
1385  * @default_addr: Used as a fallback if no secondary address was specified
1386  * Context: can sleep
1387  *
1388  * I2C clients can be composed of multiple I2C slaves bound together in a single
1389  * component. The I2C client driver then binds to the master I2C slave and needs
1390  * to create I2C dummy clients to communicate with all the other slaves.
1391  *
1392  * This function creates and returns an I2C dummy client whose I2C address is
1393  * retrieved from the platform firmware based on the given slave name. If no
1394  * address is specified by the firmware default_addr is used.
1395  *
1396  * On DT-based platforms the address is retrieved from the "reg" property entry
1397  * cell whose "reg-names" value matches the slave name.
1398  *
1399  * This returns the new i2c client, which should be saved for later use with
1400  * i2c_unregister_device(); or NULL to indicate an error.
1401  */
1402 struct i2c_client *i2c_new_secondary_device(struct i2c_client *client,
1403                                                 const char *name,
1404                                                 u16 default_addr)
1405 {
1406         struct device_node *np = client->dev.of_node;
1407         u32 addr = default_addr;
1408         int i;
1409
1410         if (np) {
1411                 i = of_property_match_string(np, "reg-names", name);
1412                 if (i >= 0)
1413                         of_property_read_u32_index(np, "reg", i, &addr);
1414         }
1415
1416         dev_dbg(&client->adapter->dev, "Address for %s : 0x%x\n", name, addr);
1417         return i2c_new_dummy(client->adapter, addr);
1418 }
1419 EXPORT_SYMBOL_GPL(i2c_new_secondary_device);
1420
1421 /* ------------------------------------------------------------------------- */
1422
1423 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
1424
1425 static void i2c_adapter_dev_release(struct device *dev)
1426 {
1427         struct i2c_adapter *adap = to_i2c_adapter(dev);
1428         complete(&adap->dev_released);
1429 }
1430
1431 unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
1432 {
1433         unsigned int depth = 0;
1434
1435         while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
1436                 depth++;
1437
1438         WARN_ONCE(depth >= MAX_LOCKDEP_SUBCLASSES,
1439                   "adapter depth exceeds lockdep subclass limit\n");
1440
1441         return depth;
1442 }
1443 EXPORT_SYMBOL_GPL(i2c_adapter_depth);
1444
1445 /*
1446  * Let users instantiate I2C devices through sysfs. This can be used when
1447  * platform initialization code doesn't contain the proper data for
1448  * whatever reason. Also useful for drivers that do device detection and
1449  * detection fails, either because the device uses an unexpected address,
1450  * or this is a compatible device with different ID register values.
1451  *
1452  * Parameter checking may look overzealous, but we really don't want
1453  * the user to provide incorrect parameters.
1454  */
1455 static ssize_t
1456 i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
1457                      const char *buf, size_t count)
1458 {
1459         struct i2c_adapter *adap = to_i2c_adapter(dev);
1460         struct i2c_board_info info;
1461         struct i2c_client *client;
1462         char *blank, end;
1463         int res;
1464
1465         memset(&info, 0, sizeof(struct i2c_board_info));
1466
1467         blank = strchr(buf, ' ');
1468         if (!blank) {
1469                 dev_err(dev, "%s: Missing parameters\n", "new_device");
1470                 return -EINVAL;
1471         }
1472         if (blank - buf > I2C_NAME_SIZE - 1) {
1473                 dev_err(dev, "%s: Invalid device name\n", "new_device");
1474                 return -EINVAL;
1475         }
1476         memcpy(info.type, buf, blank - buf);
1477
1478         /* Parse remaining parameters, reject extra parameters */
1479         res = sscanf(++blank, "%hi%c", &info.addr, &end);
1480         if (res < 1) {
1481                 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
1482                 return -EINVAL;
1483         }
1484         if (res > 1  && end != '\n') {
1485                 dev_err(dev, "%s: Extra parameters\n", "new_device");
1486                 return -EINVAL;
1487         }
1488
1489         if ((info.addr & I2C_ADDR_OFFSET_TEN_BIT) == I2C_ADDR_OFFSET_TEN_BIT) {
1490                 info.addr &= ~I2C_ADDR_OFFSET_TEN_BIT;
1491                 info.flags |= I2C_CLIENT_TEN;
1492         }
1493
1494         if (info.addr & I2C_ADDR_OFFSET_SLAVE) {
1495                 info.addr &= ~I2C_ADDR_OFFSET_SLAVE;
1496                 info.flags |= I2C_CLIENT_SLAVE;
1497         }
1498
1499         client = i2c_new_device(adap, &info);
1500         if (!client)
1501                 return -EINVAL;
1502
1503         /* Keep track of the added device */
1504         mutex_lock(&adap->userspace_clients_lock);
1505         list_add_tail(&client->detected, &adap->userspace_clients);
1506         mutex_unlock(&adap->userspace_clients_lock);
1507         dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1508                  info.type, info.addr);
1509
1510         return count;
1511 }
1512 static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
1513
1514 /*
1515  * And of course let the users delete the devices they instantiated, if
1516  * they got it wrong. This interface can only be used to delete devices
1517  * instantiated by i2c_sysfs_new_device above. This guarantees that we
1518  * don't delete devices to which some kernel code still has references.
1519  *
1520  * Parameter checking may look overzealous, but we really don't want
1521  * the user to delete the wrong device.
1522  */
1523 static ssize_t
1524 i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
1525                         const char *buf, size_t count)
1526 {
1527         struct i2c_adapter *adap = to_i2c_adapter(dev);
1528         struct i2c_client *client, *next;
1529         unsigned short addr;
1530         char end;
1531         int res;
1532
1533         /* Parse parameters, reject extra parameters */
1534         res = sscanf(buf, "%hi%c", &addr, &end);
1535         if (res < 1) {
1536                 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
1537                 return -EINVAL;
1538         }
1539         if (res > 1  && end != '\n') {
1540                 dev_err(dev, "%s: Extra parameters\n", "delete_device");
1541                 return -EINVAL;
1542         }
1543
1544         /* Make sure the device was added through sysfs */
1545         res = -ENOENT;
1546         mutex_lock_nested(&adap->userspace_clients_lock,
1547                           i2c_adapter_depth(adap));
1548         list_for_each_entry_safe(client, next, &adap->userspace_clients,
1549                                  detected) {
1550                 if (i2c_encode_flags_to_addr(client) == addr) {
1551                         dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
1552                                  "delete_device", client->name, client->addr);
1553
1554                         list_del(&client->detected);
1555                         i2c_unregister_device(client);
1556                         res = count;
1557                         break;
1558                 }
1559         }
1560         mutex_unlock(&adap->userspace_clients_lock);
1561
1562         if (res < 0)
1563                 dev_err(dev, "%s: Can't find device in list\n",
1564                         "delete_device");
1565         return res;
1566 }
1567 static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
1568                                    i2c_sysfs_delete_device);
1569
1570 static struct attribute *i2c_adapter_attrs[] = {
1571         &dev_attr_name.attr,
1572         &dev_attr_new_device.attr,
1573         &dev_attr_delete_device.attr,
1574         NULL
1575 };
1576 ATTRIBUTE_GROUPS(i2c_adapter);
1577
1578 struct device_type i2c_adapter_type = {
1579         .groups         = i2c_adapter_groups,
1580         .release        = i2c_adapter_dev_release,
1581 };
1582 EXPORT_SYMBOL_GPL(i2c_adapter_type);
1583
1584 /**
1585  * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1586  * @dev: device, probably from some driver model iterator
1587  *
1588  * When traversing the driver model tree, perhaps using driver model
1589  * iterators like @device_for_each_child(), you can't assume very much
1590  * about the nodes you find.  Use this function to avoid oopses caused
1591  * by wrongly treating some non-I2C device as an i2c_adapter.
1592  */
1593 struct i2c_adapter *i2c_verify_adapter(struct device *dev)
1594 {
1595         return (dev->type == &i2c_adapter_type)
1596                         ? to_i2c_adapter(dev)
1597                         : NULL;
1598 }
1599 EXPORT_SYMBOL(i2c_verify_adapter);
1600
1601 #ifdef CONFIG_I2C_COMPAT
1602 static struct class_compat *i2c_adapter_compat_class;
1603 #endif
1604
1605 static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
1606 {
1607         struct i2c_devinfo      *devinfo;
1608
1609         down_read(&__i2c_board_lock);
1610         list_for_each_entry(devinfo, &__i2c_board_list, list) {
1611                 if (devinfo->busnum == adapter->nr
1612                                 && !i2c_new_device(adapter,
1613                                                 &devinfo->board_info))
1614                         dev_err(&adapter->dev,
1615                                 "Can't create device at 0x%02x\n",
1616                                 devinfo->board_info.addr);
1617         }
1618         up_read(&__i2c_board_lock);
1619 }
1620
1621 /* OF support code */
1622
1623 #if IS_ENABLED(CONFIG_OF)
1624 static struct i2c_client *of_i2c_register_device(struct i2c_adapter *adap,
1625                                                  struct device_node *node)
1626 {
1627         struct i2c_client *result;
1628         struct i2c_board_info info = {};
1629         struct dev_archdata dev_ad = {};
1630         const __be32 *addr_be;
1631         u32 addr;
1632         int len;
1633
1634         dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
1635
1636         if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
1637                 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
1638                         node->full_name);
1639                 return ERR_PTR(-EINVAL);
1640         }
1641
1642         addr_be = of_get_property(node, "reg", &len);
1643         if (!addr_be || (len < sizeof(*addr_be))) {
1644                 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
1645                         node->full_name);
1646                 return ERR_PTR(-EINVAL);
1647         }
1648
1649         addr = be32_to_cpup(addr_be);
1650         if (addr & I2C_TEN_BIT_ADDRESS) {
1651                 addr &= ~I2C_TEN_BIT_ADDRESS;
1652                 info.flags |= I2C_CLIENT_TEN;
1653         }
1654
1655         if (addr & I2C_OWN_SLAVE_ADDRESS) {
1656                 addr &= ~I2C_OWN_SLAVE_ADDRESS;
1657                 info.flags |= I2C_CLIENT_SLAVE;
1658         }
1659
1660         if (i2c_check_addr_validity(addr, info.flags)) {
1661                 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
1662                         info.addr, node->full_name);
1663                 return ERR_PTR(-EINVAL);
1664         }
1665
1666         info.addr = addr;
1667         info.of_node = of_node_get(node);
1668         info.archdata = &dev_ad;
1669
1670         if (of_get_property(node, "wakeup-source", NULL))
1671                 info.flags |= I2C_CLIENT_WAKE;
1672
1673         result = i2c_new_device(adap, &info);
1674         if (result == NULL) {
1675                 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
1676                         node->full_name);
1677                 of_node_put(node);
1678                 return ERR_PTR(-EINVAL);
1679         }
1680         return result;
1681 }
1682
1683 static void of_i2c_register_devices(struct i2c_adapter *adap)
1684 {
1685         struct device_node *bus, *node;
1686         struct i2c_client *client;
1687
1688         /* Only register child devices if the adapter has a node pointer set */
1689         if (!adap->dev.of_node)
1690                 return;
1691
1692         dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
1693
1694         bus = of_get_child_by_name(adap->dev.of_node, "i2c-bus");
1695         if (!bus)
1696                 bus = of_node_get(adap->dev.of_node);
1697
1698         for_each_available_child_of_node(bus, node) {
1699                 if (of_node_test_and_set_flag(node, OF_POPULATED))
1700                         continue;
1701
1702                 client = of_i2c_register_device(adap, node);
1703                 if (IS_ERR(client)) {
1704                         dev_warn(&adap->dev,
1705                                  "Failed to create I2C device for %s\n",
1706                                  node->full_name);
1707                         of_node_clear_flag(node, OF_POPULATED);
1708                 }
1709         }
1710
1711         of_node_put(bus);
1712 }
1713
1714 static int of_dev_node_match(struct device *dev, void *data)
1715 {
1716         return dev->of_node == data;
1717 }
1718
1719 /* must call put_device() when done with returned i2c_client device */
1720 struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
1721 {
1722         struct device *dev;
1723         struct i2c_client *client;
1724
1725         dev = bus_find_device(&i2c_bus_type, NULL, node, of_dev_node_match);
1726         if (!dev)
1727                 return NULL;
1728
1729         client = i2c_verify_client(dev);
1730         if (!client)
1731                 put_device(dev);
1732
1733         return client;
1734 }
1735 EXPORT_SYMBOL(of_find_i2c_device_by_node);
1736
1737 /* must call put_device() when done with returned i2c_adapter device */
1738 struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
1739 {
1740         struct device *dev;
1741         struct i2c_adapter *adapter;
1742
1743         dev = bus_find_device(&i2c_bus_type, NULL, node, of_dev_node_match);
1744         if (!dev)
1745                 return NULL;
1746
1747         adapter = i2c_verify_adapter(dev);
1748         if (!adapter)
1749                 put_device(dev);
1750
1751         return adapter;
1752 }
1753 EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
1754
1755 /* must call i2c_put_adapter() when done with returned i2c_adapter device */
1756 struct i2c_adapter *of_get_i2c_adapter_by_node(struct device_node *node)
1757 {
1758         struct i2c_adapter *adapter;
1759
1760         adapter = of_find_i2c_adapter_by_node(node);
1761         if (!adapter)
1762                 return NULL;
1763
1764         if (!try_module_get(adapter->owner)) {
1765                 put_device(&adapter->dev);
1766                 adapter = NULL;
1767         }
1768
1769         return adapter;
1770 }
1771 EXPORT_SYMBOL(of_get_i2c_adapter_by_node);
1772
1773 static const struct of_device_id*
1774 i2c_of_match_device_sysfs(const struct of_device_id *matches,
1775                                   struct i2c_client *client)
1776 {
1777         const char *name;
1778
1779         for (; matches->compatible[0]; matches++) {
1780                 /*
1781                  * Adding devices through the i2c sysfs interface provides us
1782                  * a string to match which may be compatible with the device
1783                  * tree compatible strings, however with no actual of_node the
1784                  * of_match_device() will not match
1785                  */
1786                 if (sysfs_streq(client->name, matches->compatible))
1787                         return matches;
1788
1789                 name = strchr(matches->compatible, ',');
1790                 if (!name)
1791                         name = matches->compatible;
1792                 else
1793                         name++;
1794
1795                 if (sysfs_streq(client->name, name))
1796                         return matches;
1797         }
1798
1799         return NULL;
1800 }
1801
1802 #else
1803 static void of_i2c_register_devices(struct i2c_adapter *adap) { }
1804 #endif /* CONFIG_OF */
1805
1806 static int i2c_do_add_adapter(struct i2c_driver *driver,
1807                               struct i2c_adapter *adap)
1808 {
1809         /* Detect supported devices on that bus, and instantiate them */
1810         i2c_detect(adap, driver);
1811
1812         /* Let legacy drivers scan this bus for matching devices */
1813         if (driver->attach_adapter) {
1814                 dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
1815                          driver->driver.name);
1816                 dev_warn(&adap->dev,
1817                          "Please use another way to instantiate your i2c_client\n");
1818                 /* We ignore the return code; if it fails, too bad */
1819                 driver->attach_adapter(adap);
1820         }
1821         return 0;
1822 }
1823
1824 static int __process_new_adapter(struct device_driver *d, void *data)
1825 {
1826         return i2c_do_add_adapter(to_i2c_driver(d), data);
1827 }
1828
1829 static const struct i2c_lock_operations i2c_adapter_lock_ops = {
1830         .lock_bus =    i2c_adapter_lock_bus,
1831         .trylock_bus = i2c_adapter_trylock_bus,
1832         .unlock_bus =  i2c_adapter_unlock_bus,
1833 };
1834
1835 static int i2c_register_adapter(struct i2c_adapter *adap)
1836 {
1837         int res = -EINVAL;
1838
1839         /* Can't register until after driver model init */
1840         if (WARN_ON(!is_registered)) {
1841                 res = -EAGAIN;
1842                 goto out_list;
1843         }
1844
1845         /* Sanity checks */
1846         if (WARN(!adap->name[0], "i2c adapter has no name"))
1847                 goto out_list;
1848
1849         if (!adap->algo) {
1850                 pr_err("adapter '%s': no algo supplied!\n", adap->name);
1851                 goto out_list;
1852         }
1853
1854         if (!adap->lock_ops)
1855                 adap->lock_ops = &i2c_adapter_lock_ops;
1856
1857         rt_mutex_init(&adap->bus_lock);
1858         rt_mutex_init(&adap->mux_lock);
1859         mutex_init(&adap->userspace_clients_lock);
1860         INIT_LIST_HEAD(&adap->userspace_clients);
1861
1862         /* Set default timeout to 1 second if not already set */
1863         if (adap->timeout == 0)
1864                 adap->timeout = HZ;
1865
1866         dev_set_name(&adap->dev, "i2c-%d", adap->nr);
1867         adap->dev.bus = &i2c_bus_type;
1868         adap->dev.type = &i2c_adapter_type;
1869         res = device_register(&adap->dev);
1870         if (res) {
1871                 pr_err("adapter '%s': can't register device (%d)\n", adap->name, res);
1872                 goto out_list;
1873         }
1874
1875         dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1876
1877         pm_runtime_no_callbacks(&adap->dev);
1878         pm_suspend_ignore_children(&adap->dev, true);
1879         pm_runtime_enable(&adap->dev);
1880
1881 #ifdef CONFIG_I2C_COMPAT
1882         res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1883                                        adap->dev.parent);
1884         if (res)
1885                 dev_warn(&adap->dev,
1886                          "Failed to create compatibility class link\n");
1887 #endif
1888
1889         i2c_init_recovery(adap);
1890
1891         /* create pre-declared device nodes */
1892         of_i2c_register_devices(adap);
1893         i2c_acpi_register_devices(adap);
1894         i2c_acpi_install_space_handler(adap);
1895
1896         if (adap->nr < __i2c_first_dynamic_bus_num)
1897                 i2c_scan_static_board_info(adap);
1898
1899         /* Notify drivers */
1900         mutex_lock(&core_lock);
1901         bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
1902         mutex_unlock(&core_lock);
1903
1904         return 0;
1905
1906 out_list:
1907         mutex_lock(&core_lock);
1908         idr_remove(&i2c_adapter_idr, adap->nr);
1909         mutex_unlock(&core_lock);
1910         return res;
1911 }
1912
1913 /**
1914  * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1915  * @adap: the adapter to register (with adap->nr initialized)
1916  * Context: can sleep
1917  *
1918  * See i2c_add_numbered_adapter() for details.
1919  */
1920 static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1921 {
1922         int id;
1923
1924         mutex_lock(&core_lock);
1925         id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1, GFP_KERNEL);
1926         mutex_unlock(&core_lock);
1927         if (WARN(id < 0, "couldn't get idr"))
1928                 return id == -ENOSPC ? -EBUSY : id;
1929
1930         return i2c_register_adapter(adap);
1931 }
1932
1933 /**
1934  * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1935  * @adapter: the adapter to add
1936  * Context: can sleep
1937  *
1938  * This routine is used to declare an I2C adapter when its bus number
1939  * doesn't matter or when its bus number is specified by an dt alias.
1940  * Examples of bases when the bus number doesn't matter: I2C adapters
1941  * dynamically added by USB links or PCI plugin cards.
1942  *
1943  * When this returns zero, a new bus number was allocated and stored
1944  * in adap->nr, and the specified adapter became available for clients.
1945  * Otherwise, a negative errno value is returned.
1946  */
1947 int i2c_add_adapter(struct i2c_adapter *adapter)
1948 {
1949         struct device *dev = &adapter->dev;
1950         int id;
1951
1952         if (dev->of_node) {
1953                 id = of_alias_get_id(dev->of_node, "i2c");
1954                 if (id >= 0) {
1955                         adapter->nr = id;
1956                         return __i2c_add_numbered_adapter(adapter);
1957                 }
1958         }
1959
1960         mutex_lock(&core_lock);
1961         id = idr_alloc(&i2c_adapter_idr, adapter,
1962                        __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
1963         mutex_unlock(&core_lock);
1964         if (WARN(id < 0, "couldn't get idr"))
1965                 return id;
1966
1967         adapter->nr = id;
1968
1969         return i2c_register_adapter(adapter);
1970 }
1971 EXPORT_SYMBOL(i2c_add_adapter);
1972
1973 /**
1974  * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1975  * @adap: the adapter to register (with adap->nr initialized)
1976  * Context: can sleep
1977  *
1978  * This routine is used to declare an I2C adapter when its bus number
1979  * matters.  For example, use it for I2C adapters from system-on-chip CPUs,
1980  * or otherwise built in to the system's mainboard, and where i2c_board_info
1981  * is used to properly configure I2C devices.
1982  *
1983  * If the requested bus number is set to -1, then this function will behave
1984  * identically to i2c_add_adapter, and will dynamically assign a bus number.
1985  *
1986  * If no devices have pre-been declared for this bus, then be sure to
1987  * register the adapter before any dynamically allocated ones.  Otherwise
1988  * the required bus ID may not be available.
1989  *
1990  * When this returns zero, the specified adapter became available for
1991  * clients using the bus number provided in adap->nr.  Also, the table
1992  * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1993  * and the appropriate driver model device nodes are created.  Otherwise, a
1994  * negative errno value is returned.
1995  */
1996 int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1997 {
1998         if (adap->nr == -1) /* -1 means dynamically assign bus id */
1999                 return i2c_add_adapter(adap);
2000
2001         return __i2c_add_numbered_adapter(adap);
2002 }
2003 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
2004
2005 static void i2c_do_del_adapter(struct i2c_driver *driver,
2006                               struct i2c_adapter *adapter)
2007 {
2008         struct i2c_client *client, *_n;
2009
2010         /* Remove the devices we created ourselves as the result of hardware
2011          * probing (using a driver's detect method) */
2012         list_for_each_entry_safe(client, _n, &driver->clients, detected) {
2013                 if (client->adapter == adapter) {
2014                         dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
2015                                 client->name, client->addr);
2016                         list_del(&client->detected);
2017                         i2c_unregister_device(client);
2018                 }
2019         }
2020 }
2021
2022 static int __unregister_client(struct device *dev, void *dummy)
2023 {
2024         struct i2c_client *client = i2c_verify_client(dev);
2025         if (client && strcmp(client->name, "dummy"))
2026                 i2c_unregister_device(client);
2027         return 0;
2028 }
2029
2030 static int __unregister_dummy(struct device *dev, void *dummy)
2031 {
2032         struct i2c_client *client = i2c_verify_client(dev);
2033         if (client)
2034                 i2c_unregister_device(client);
2035         return 0;
2036 }
2037
2038 static int __process_removed_adapter(struct device_driver *d, void *data)
2039 {
2040         i2c_do_del_adapter(to_i2c_driver(d), data);
2041         return 0;
2042 }
2043
2044 /**
2045  * i2c_del_adapter - unregister I2C adapter
2046  * @adap: the adapter being unregistered
2047  * Context: can sleep
2048  *
2049  * This unregisters an I2C adapter which was previously registered
2050  * by @i2c_add_adapter or @i2c_add_numbered_adapter.
2051  */
2052 void i2c_del_adapter(struct i2c_adapter *adap)
2053 {
2054         struct i2c_adapter *found;
2055         struct i2c_client *client, *next;
2056
2057         /* First make sure that this adapter was ever added */
2058         mutex_lock(&core_lock);
2059         found = idr_find(&i2c_adapter_idr, adap->nr);
2060         mutex_unlock(&core_lock);
2061         if (found != adap) {
2062                 pr_debug("attempting to delete unregistered adapter [%s]\n", adap->name);
2063                 return;
2064         }
2065
2066         i2c_acpi_remove_space_handler(adap);
2067         /* Tell drivers about this removal */
2068         mutex_lock(&core_lock);
2069         bus_for_each_drv(&i2c_bus_type, NULL, adap,
2070                                __process_removed_adapter);
2071         mutex_unlock(&core_lock);
2072
2073         /* Remove devices instantiated from sysfs */
2074         mutex_lock_nested(&adap->userspace_clients_lock,
2075                           i2c_adapter_depth(adap));
2076         list_for_each_entry_safe(client, next, &adap->userspace_clients,
2077                                  detected) {
2078                 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
2079                         client->addr);
2080                 list_del(&client->detected);
2081                 i2c_unregister_device(client);
2082         }
2083         mutex_unlock(&adap->userspace_clients_lock);
2084
2085         /* Detach any active clients. This can't fail, thus we do not
2086          * check the returned value. This is a two-pass process, because
2087          * we can't remove the dummy devices during the first pass: they
2088          * could have been instantiated by real devices wishing to clean
2089          * them up properly, so we give them a chance to do that first. */
2090         device_for_each_child(&adap->dev, NULL, __unregister_client);
2091         device_for_each_child(&adap->dev, NULL, __unregister_dummy);
2092
2093 #ifdef CONFIG_I2C_COMPAT
2094         class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
2095                                  adap->dev.parent);
2096 #endif
2097
2098         /* device name is gone after device_unregister */
2099         dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
2100
2101         pm_runtime_disable(&adap->dev);
2102
2103         /* wait until all references to the device are gone
2104          *
2105          * FIXME: This is old code and should ideally be replaced by an
2106          * alternative which results in decoupling the lifetime of the struct
2107          * device from the i2c_adapter, like spi or netdev do. Any solution
2108          * should be thoroughly tested with DEBUG_KOBJECT_RELEASE enabled!
2109          */
2110         init_completion(&adap->dev_released);
2111         device_unregister(&adap->dev);
2112         wait_for_completion(&adap->dev_released);
2113
2114         /* free bus id */
2115         mutex_lock(&core_lock);
2116         idr_remove(&i2c_adapter_idr, adap->nr);
2117         mutex_unlock(&core_lock);
2118
2119         /* Clear the device structure in case this adapter is ever going to be
2120            added again */
2121         memset(&adap->dev, 0, sizeof(adap->dev));
2122 }
2123 EXPORT_SYMBOL(i2c_del_adapter);
2124
2125 /**
2126  * i2c_parse_fw_timings - get I2C related timing parameters from firmware
2127  * @dev: The device to scan for I2C timing properties
2128  * @t: the i2c_timings struct to be filled with values
2129  * @use_defaults: bool to use sane defaults derived from the I2C specification
2130  *                when properties are not found, otherwise use 0
2131  *
2132  * Scan the device for the generic I2C properties describing timing parameters
2133  * for the signal and fill the given struct with the results. If a property was
2134  * not found and use_defaults was true, then maximum timings are assumed which
2135  * are derived from the I2C specification. If use_defaults is not used, the
2136  * results will be 0, so drivers can apply their own defaults later. The latter
2137  * is mainly intended for avoiding regressions of existing drivers which want
2138  * to switch to this function. New drivers almost always should use the defaults.
2139  */
2140
2141 void i2c_parse_fw_timings(struct device *dev, struct i2c_timings *t, bool use_defaults)
2142 {
2143         int ret;
2144
2145         memset(t, 0, sizeof(*t));
2146
2147         ret = device_property_read_u32(dev, "clock-frequency", &t->bus_freq_hz);
2148         if (ret && use_defaults)
2149                 t->bus_freq_hz = 100000;
2150
2151         ret = device_property_read_u32(dev, "i2c-scl-rising-time-ns", &t->scl_rise_ns);
2152         if (ret && use_defaults) {
2153                 if (t->bus_freq_hz <= 100000)
2154                         t->scl_rise_ns = 1000;
2155                 else if (t->bus_freq_hz <= 400000)
2156                         t->scl_rise_ns = 300;
2157                 else
2158                         t->scl_rise_ns = 120;
2159         }
2160
2161         ret = device_property_read_u32(dev, "i2c-scl-falling-time-ns", &t->scl_fall_ns);
2162         if (ret && use_defaults) {
2163                 if (t->bus_freq_hz <= 400000)
2164                         t->scl_fall_ns = 300;
2165                 else
2166                         t->scl_fall_ns = 120;
2167         }
2168
2169         device_property_read_u32(dev, "i2c-scl-internal-delay-ns", &t->scl_int_delay_ns);
2170
2171         ret = device_property_read_u32(dev, "i2c-sda-falling-time-ns", &t->sda_fall_ns);
2172         if (ret && use_defaults)
2173                 t->sda_fall_ns = t->scl_fall_ns;
2174 }
2175 EXPORT_SYMBOL_GPL(i2c_parse_fw_timings);
2176
2177 /* ------------------------------------------------------------------------- */
2178
2179 int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))
2180 {
2181         int res;
2182
2183         mutex_lock(&core_lock);
2184         res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
2185         mutex_unlock(&core_lock);
2186
2187         return res;
2188 }
2189 EXPORT_SYMBOL_GPL(i2c_for_each_dev);
2190
2191 static int __process_new_driver(struct device *dev, void *data)
2192 {
2193         if (dev->type != &i2c_adapter_type)
2194                 return 0;
2195         return i2c_do_add_adapter(data, to_i2c_adapter(dev));
2196 }
2197
2198 /*
2199  * An i2c_driver is used with one or more i2c_client (device) nodes to access
2200  * i2c slave chips, on a bus instance associated with some i2c_adapter.
2201  */
2202
2203 int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
2204 {
2205         int res;
2206
2207         /* Can't register until after driver model init */
2208         if (WARN_ON(!is_registered))
2209                 return -EAGAIN;
2210
2211         /* add the driver to the list of i2c drivers in the driver core */
2212         driver->driver.owner = owner;
2213         driver->driver.bus = &i2c_bus_type;
2214         INIT_LIST_HEAD(&driver->clients);
2215
2216         /* When registration returns, the driver core
2217          * will have called probe() for all matching-but-unbound devices.
2218          */
2219         res = driver_register(&driver->driver);
2220         if (res)
2221                 return res;
2222
2223         pr_debug("driver [%s] registered\n", driver->driver.name);
2224
2225         /* Walk the adapters that are already present */
2226         i2c_for_each_dev(driver, __process_new_driver);
2227
2228         return 0;
2229 }
2230 EXPORT_SYMBOL(i2c_register_driver);
2231
2232 static int __process_removed_driver(struct device *dev, void *data)
2233 {
2234         if (dev->type == &i2c_adapter_type)
2235                 i2c_do_del_adapter(data, to_i2c_adapter(dev));
2236         return 0;
2237 }
2238
2239 /**
2240  * i2c_del_driver - unregister I2C driver
2241  * @driver: the driver being unregistered
2242  * Context: can sleep
2243  */
2244 void i2c_del_driver(struct i2c_driver *driver)
2245 {
2246         i2c_for_each_dev(driver, __process_removed_driver);
2247
2248         driver_unregister(&driver->driver);
2249         pr_debug("driver [%s] unregistered\n", driver->driver.name);
2250 }
2251 EXPORT_SYMBOL(i2c_del_driver);
2252
2253 /* ------------------------------------------------------------------------- */
2254
2255 /**
2256  * i2c_use_client - increments the reference count of the i2c client structure
2257  * @client: the client being referenced
2258  *
2259  * Each live reference to a client should be refcounted. The driver model does
2260  * that automatically as part of driver binding, so that most drivers don't
2261  * need to do this explicitly: they hold a reference until they're unbound
2262  * from the device.
2263  *
2264  * A pointer to the client with the incremented reference counter is returned.
2265  */
2266 struct i2c_client *i2c_use_client(struct i2c_client *client)
2267 {
2268         if (client && get_device(&client->dev))
2269                 return client;
2270         return NULL;
2271 }
2272 EXPORT_SYMBOL(i2c_use_client);
2273
2274 /**
2275  * i2c_release_client - release a use of the i2c client structure
2276  * @client: the client being no longer referenced
2277  *
2278  * Must be called when a user of a client is finished with it.
2279  */
2280 void i2c_release_client(struct i2c_client *client)
2281 {
2282         if (client)
2283                 put_device(&client->dev);
2284 }
2285 EXPORT_SYMBOL(i2c_release_client);
2286
2287 struct i2c_cmd_arg {
2288         unsigned        cmd;
2289         void            *arg;
2290 };
2291
2292 static int i2c_cmd(struct device *dev, void *_arg)
2293 {
2294         struct i2c_client       *client = i2c_verify_client(dev);
2295         struct i2c_cmd_arg      *arg = _arg;
2296         struct i2c_driver       *driver;
2297
2298         if (!client || !client->dev.driver)
2299                 return 0;
2300
2301         driver = to_i2c_driver(client->dev.driver);
2302         if (driver->command)
2303                 driver->command(client, arg->cmd, arg->arg);
2304         return 0;
2305 }
2306
2307 void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
2308 {
2309         struct i2c_cmd_arg      cmd_arg;
2310
2311         cmd_arg.cmd = cmd;
2312         cmd_arg.arg = arg;
2313         device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
2314 }
2315 EXPORT_SYMBOL(i2c_clients_command);
2316
2317 #if IS_ENABLED(CONFIG_OF_DYNAMIC)
2318 static int of_i2c_notify(struct notifier_block *nb, unsigned long action,
2319                          void *arg)
2320 {
2321         struct of_reconfig_data *rd = arg;
2322         struct i2c_adapter *adap;
2323         struct i2c_client *client;
2324
2325         switch (of_reconfig_get_state_change(action, rd)) {
2326         case OF_RECONFIG_CHANGE_ADD:
2327                 adap = of_find_i2c_adapter_by_node(rd->dn->parent);
2328                 if (adap == NULL)
2329                         return NOTIFY_OK;       /* not for us */
2330
2331                 if (of_node_test_and_set_flag(rd->dn, OF_POPULATED)) {
2332                         put_device(&adap->dev);
2333                         return NOTIFY_OK;
2334                 }
2335
2336                 client = of_i2c_register_device(adap, rd->dn);
2337                 put_device(&adap->dev);
2338
2339                 if (IS_ERR(client)) {
2340                         dev_err(&adap->dev, "failed to create client for '%s'\n",
2341                                  rd->dn->full_name);
2342                         of_node_clear_flag(rd->dn, OF_POPULATED);
2343                         return notifier_from_errno(PTR_ERR(client));
2344                 }
2345                 break;
2346         case OF_RECONFIG_CHANGE_REMOVE:
2347                 /* already depopulated? */
2348                 if (!of_node_check_flag(rd->dn, OF_POPULATED))
2349                         return NOTIFY_OK;
2350
2351                 /* find our device by node */
2352                 client = of_find_i2c_device_by_node(rd->dn);
2353                 if (client == NULL)
2354                         return NOTIFY_OK;       /* no? not meant for us */
2355
2356                 /* unregister takes one ref away */
2357                 i2c_unregister_device(client);
2358
2359                 /* and put the reference of the find */
2360                 put_device(&client->dev);
2361                 break;
2362         }
2363
2364         return NOTIFY_OK;
2365 }
2366 static struct notifier_block i2c_of_notifier = {
2367         .notifier_call = of_i2c_notify,
2368 };
2369 #else
2370 extern struct notifier_block i2c_of_notifier;
2371 #endif /* CONFIG_OF_DYNAMIC */
2372
2373 static int __init i2c_init(void)
2374 {
2375         int retval;
2376
2377         retval = of_alias_get_highest_id("i2c");
2378
2379         down_write(&__i2c_board_lock);
2380         if (retval >= __i2c_first_dynamic_bus_num)
2381                 __i2c_first_dynamic_bus_num = retval + 1;
2382         up_write(&__i2c_board_lock);
2383
2384         retval = bus_register(&i2c_bus_type);
2385         if (retval)
2386                 return retval;
2387
2388         is_registered = true;
2389
2390 #ifdef CONFIG_I2C_COMPAT
2391         i2c_adapter_compat_class = class_compat_register("i2c-adapter");
2392         if (!i2c_adapter_compat_class) {
2393                 retval = -ENOMEM;
2394                 goto bus_err;
2395         }
2396 #endif
2397         retval = i2c_add_driver(&dummy_driver);
2398         if (retval)
2399                 goto class_err;
2400
2401         if (IS_ENABLED(CONFIG_OF_DYNAMIC))
2402                 WARN_ON(of_reconfig_notifier_register(&i2c_of_notifier));
2403         if (IS_ENABLED(CONFIG_ACPI))
2404                 WARN_ON(acpi_reconfig_notifier_register(&i2c_acpi_notifier));
2405
2406         return 0;
2407
2408 class_err:
2409 #ifdef CONFIG_I2C_COMPAT
2410         class_compat_unregister(i2c_adapter_compat_class);
2411 bus_err:
2412 #endif
2413         is_registered = false;
2414         bus_unregister(&i2c_bus_type);
2415         return retval;
2416 }
2417
2418 static void __exit i2c_exit(void)
2419 {
2420         if (IS_ENABLED(CONFIG_ACPI))
2421                 WARN_ON(acpi_reconfig_notifier_unregister(&i2c_acpi_notifier));
2422         if (IS_ENABLED(CONFIG_OF_DYNAMIC))
2423                 WARN_ON(of_reconfig_notifier_unregister(&i2c_of_notifier));
2424         i2c_del_driver(&dummy_driver);
2425 #ifdef CONFIG_I2C_COMPAT
2426         class_compat_unregister(i2c_adapter_compat_class);
2427 #endif
2428         bus_unregister(&i2c_bus_type);
2429         tracepoint_synchronize_unregister();
2430 }
2431
2432 /* We must initialize early, because some subsystems register i2c drivers
2433  * in subsys_initcall() code, but are linked (and initialized) before i2c.
2434  */
2435 postcore_initcall(i2c_init);
2436 module_exit(i2c_exit);
2437
2438 /* ----------------------------------------------------
2439  * the functional interface to the i2c busses.
2440  * ----------------------------------------------------
2441  */
2442
2443 /* Check if val is exceeding the quirk IFF quirk is non 0 */
2444 #define i2c_quirk_exceeded(val, quirk) ((quirk) && ((val) > (quirk)))
2445
2446 static int i2c_quirk_error(struct i2c_adapter *adap, struct i2c_msg *msg, char *err_msg)
2447 {
2448         dev_err_ratelimited(&adap->dev, "adapter quirk: %s (addr 0x%04x, size %u, %s)\n",
2449                             err_msg, msg->addr, msg->len,
2450                             msg->flags & I2C_M_RD ? "read" : "write");
2451         return -EOPNOTSUPP;
2452 }
2453
2454 static int i2c_check_for_quirks(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2455 {
2456         const struct i2c_adapter_quirks *q = adap->quirks;
2457         int max_num = q->max_num_msgs, i;
2458         bool do_len_check = true;
2459
2460         if (q->flags & I2C_AQ_COMB) {
2461                 max_num = 2;
2462
2463                 /* special checks for combined messages */
2464                 if (num == 2) {
2465                         if (q->flags & I2C_AQ_COMB_WRITE_FIRST && msgs[0].flags & I2C_M_RD)
2466                                 return i2c_quirk_error(adap, &msgs[0], "1st comb msg must be write");
2467
2468                         if (q->flags & I2C_AQ_COMB_READ_SECOND && !(msgs[1].flags & I2C_M_RD))
2469                                 return i2c_quirk_error(adap, &msgs[1], "2nd comb msg must be read");
2470
2471                         if (q->flags & I2C_AQ_COMB_SAME_ADDR && msgs[0].addr != msgs[1].addr)
2472                                 return i2c_quirk_error(adap, &msgs[0], "comb msg only to same addr");
2473
2474                         if (i2c_quirk_exceeded(msgs[0].len, q->max_comb_1st_msg_len))
2475                                 return i2c_quirk_error(adap, &msgs[0], "msg too long");
2476
2477                         if (i2c_quirk_exceeded(msgs[1].len, q->max_comb_2nd_msg_len))
2478                                 return i2c_quirk_error(adap, &msgs[1], "msg too long");
2479
2480                         do_len_check = false;
2481                 }
2482         }
2483
2484         if (i2c_quirk_exceeded(num, max_num))
2485                 return i2c_quirk_error(adap, &msgs[0], "too many messages");
2486
2487         for (i = 0; i < num; i++) {
2488                 u16 len = msgs[i].len;
2489
2490                 if (msgs[i].flags & I2C_M_RD) {
2491                         if (do_len_check && i2c_quirk_exceeded(len, q->max_read_len))
2492                                 return i2c_quirk_error(adap, &msgs[i], "msg too long");
2493                 } else {
2494                         if (do_len_check && i2c_quirk_exceeded(len, q->max_write_len))
2495                                 return i2c_quirk_error(adap, &msgs[i], "msg too long");
2496                 }
2497         }
2498
2499         return 0;
2500 }
2501
2502 /**
2503  * __i2c_transfer - unlocked flavor of i2c_transfer
2504  * @adap: Handle to I2C bus
2505  * @msgs: One or more messages to execute before STOP is issued to
2506  *      terminate the operation; each message begins with a START.
2507  * @num: Number of messages to be executed.
2508  *
2509  * Returns negative errno, else the number of messages executed.
2510  *
2511  * Adapter lock must be held when calling this function. No debug logging
2512  * takes place. adap->algo->master_xfer existence isn't checked.
2513  */
2514 int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2515 {
2516         unsigned long orig_jiffies;
2517         int ret, try;
2518
2519         if (adap->quirks && i2c_check_for_quirks(adap, msgs, num))
2520                 return -EOPNOTSUPP;
2521
2522         /* i2c_trace_msg gets enabled when tracepoint i2c_transfer gets
2523          * enabled.  This is an efficient way of keeping the for-loop from
2524          * being executed when not needed.
2525          */
2526         if (static_key_false(&i2c_trace_msg)) {
2527                 int i;
2528                 for (i = 0; i < num; i++)
2529                         if (msgs[i].flags & I2C_M_RD)
2530                                 trace_i2c_read(adap, &msgs[i], i);
2531                         else
2532                                 trace_i2c_write(adap, &msgs[i], i);
2533         }
2534
2535         /* Retry automatically on arbitration loss */
2536         orig_jiffies = jiffies;
2537         for (ret = 0, try = 0; try <= adap->retries; try++) {
2538                 ret = adap->algo->master_xfer(adap, msgs, num);
2539                 if (ret != -EAGAIN)
2540                         break;
2541                 if (time_after(jiffies, orig_jiffies + adap->timeout))
2542                         break;
2543         }
2544
2545         if (static_key_false(&i2c_trace_msg)) {
2546                 int i;
2547                 for (i = 0; i < ret; i++)
2548                         if (msgs[i].flags & I2C_M_RD)
2549                                 trace_i2c_reply(adap, &msgs[i], i);
2550                 trace_i2c_result(adap, i, ret);
2551         }
2552
2553         return ret;
2554 }
2555 EXPORT_SYMBOL(__i2c_transfer);
2556
2557 /**
2558  * i2c_transfer - execute a single or combined I2C message
2559  * @adap: Handle to I2C bus
2560  * @msgs: One or more messages to execute before STOP is issued to
2561  *      terminate the operation; each message begins with a START.
2562  * @num: Number of messages to be executed.
2563  *
2564  * Returns negative errno, else the number of messages executed.
2565  *
2566  * Note that there is no requirement that each message be sent to
2567  * the same slave address, although that is the most common model.
2568  */
2569 int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2570 {
2571         int ret;
2572
2573         /* REVISIT the fault reporting model here is weak:
2574          *
2575          *  - When we get an error after receiving N bytes from a slave,
2576          *    there is no way to report "N".
2577          *
2578          *  - When we get a NAK after transmitting N bytes to a slave,
2579          *    there is no way to report "N" ... or to let the master
2580          *    continue executing the rest of this combined message, if
2581          *    that's the appropriate response.
2582          *
2583          *  - When for example "num" is two and we successfully complete
2584          *    the first message but get an error part way through the
2585          *    second, it's unclear whether that should be reported as
2586          *    one (discarding status on the second message) or errno
2587          *    (discarding status on the first one).
2588          */
2589
2590         if (adap->algo->master_xfer) {
2591 #ifdef DEBUG
2592                 for (ret = 0; ret < num; ret++) {
2593                         dev_dbg(&adap->dev,
2594                                 "master_xfer[%d] %c, addr=0x%02x, len=%d%s\n",
2595                                 ret, (msgs[ret].flags & I2C_M_RD) ? 'R' : 'W',
2596                                 msgs[ret].addr, msgs[ret].len,
2597                                 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
2598                 }
2599 #endif
2600
2601                 if (in_atomic() || irqs_disabled()) {
2602                         ret = i2c_trylock_bus(adap, I2C_LOCK_SEGMENT);
2603                         if (!ret)
2604                                 /* I2C activity is ongoing. */
2605                                 return -EAGAIN;
2606                 } else {
2607                         i2c_lock_bus(adap, I2C_LOCK_SEGMENT);
2608                 }
2609
2610                 ret = __i2c_transfer(adap, msgs, num);
2611                 i2c_unlock_bus(adap, I2C_LOCK_SEGMENT);
2612
2613                 return ret;
2614         } else {
2615                 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
2616                 return -EOPNOTSUPP;
2617         }
2618 }
2619 EXPORT_SYMBOL(i2c_transfer);
2620
2621 /**
2622  * i2c_master_send - issue a single I2C message in master transmit mode
2623  * @client: Handle to slave device
2624  * @buf: Data that will be written to the slave
2625  * @count: How many bytes to write, must be less than 64k since msg.len is u16
2626  *
2627  * Returns negative errno, or else the number of bytes written.
2628  */
2629 int i2c_master_send(const struct i2c_client *client, const char *buf, int count)
2630 {
2631         int ret;
2632         struct i2c_adapter *adap = client->adapter;
2633         struct i2c_msg msg;
2634
2635         msg.addr = client->addr;
2636         msg.flags = client->flags & I2C_M_TEN;
2637         msg.len = count;
2638         msg.buf = (char *)buf;
2639
2640         ret = i2c_transfer(adap, &msg, 1);
2641
2642         /*
2643          * If everything went ok (i.e. 1 msg transmitted), return #bytes
2644          * transmitted, else error code.
2645          */
2646         return (ret == 1) ? count : ret;
2647 }
2648 EXPORT_SYMBOL(i2c_master_send);
2649
2650 /**
2651  * i2c_master_recv - issue a single I2C message in master receive mode
2652  * @client: Handle to slave device
2653  * @buf: Where to store data read from slave
2654  * @count: How many bytes to read, must be less than 64k since msg.len is u16
2655  *
2656  * Returns negative errno, or else the number of bytes read.
2657  */
2658 int i2c_master_recv(const struct i2c_client *client, char *buf, int count)
2659 {
2660         struct i2c_adapter *adap = client->adapter;
2661         struct i2c_msg msg;
2662         int ret;
2663
2664         msg.addr = client->addr;
2665         msg.flags = client->flags & I2C_M_TEN;
2666         msg.flags |= I2C_M_RD;
2667         msg.len = count;
2668         msg.buf = buf;
2669
2670         ret = i2c_transfer(adap, &msg, 1);
2671
2672         /*
2673          * If everything went ok (i.e. 1 msg received), return #bytes received,
2674          * else error code.
2675          */
2676         return (ret == 1) ? count : ret;
2677 }
2678 EXPORT_SYMBOL(i2c_master_recv);
2679
2680 /* ----------------------------------------------------
2681  * the i2c address scanning function
2682  * Will not work for 10-bit addresses!
2683  * ----------------------------------------------------
2684  */
2685
2686 /*
2687  * Legacy default probe function, mostly relevant for SMBus. The default
2688  * probe method is a quick write, but it is known to corrupt the 24RF08
2689  * EEPROMs due to a state machine bug, and could also irreversibly
2690  * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2691  * we use a short byte read instead. Also, some bus drivers don't implement
2692  * quick write, so we fallback to a byte read in that case too.
2693  * On x86, there is another special case for FSC hardware monitoring chips,
2694  * which want regular byte reads (address 0x73.) Fortunately, these are the
2695  * only known chips using this I2C address on PC hardware.
2696  * Returns 1 if probe succeeded, 0 if not.
2697  */
2698 static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
2699 {
2700         int err;
2701         union i2c_smbus_data dummy;
2702
2703 #ifdef CONFIG_X86
2704         if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
2705          && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
2706                 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2707                                      I2C_SMBUS_BYTE_DATA, &dummy);
2708         else
2709 #endif
2710         if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
2711          && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
2712                 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
2713                                      I2C_SMBUS_QUICK, NULL);
2714         else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
2715                 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2716                                      I2C_SMBUS_BYTE, &dummy);
2717         else {
2718                 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
2719                          addr);
2720                 err = -EOPNOTSUPP;
2721         }
2722
2723         return err >= 0;
2724 }
2725
2726 static int i2c_detect_address(struct i2c_client *temp_client,
2727                               struct i2c_driver *driver)
2728 {
2729         struct i2c_board_info info;
2730         struct i2c_adapter *adapter = temp_client->adapter;
2731         int addr = temp_client->addr;
2732         int err;
2733
2734         /* Make sure the address is valid */
2735         err = i2c_check_7bit_addr_validity_strict(addr);
2736         if (err) {
2737                 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
2738                          addr);
2739                 return err;
2740         }
2741
2742         /* Skip if already in use (7 bit, no need to encode flags) */
2743         if (i2c_check_addr_busy(adapter, addr))
2744                 return 0;
2745
2746         /* Make sure there is something at this address */
2747         if (!i2c_default_probe(adapter, addr))
2748                 return 0;
2749
2750         /* Finally call the custom detection function */
2751         memset(&info, 0, sizeof(struct i2c_board_info));
2752         info.addr = addr;
2753         err = driver->detect(temp_client, &info);
2754         if (err) {
2755                 /* -ENODEV is returned if the detection fails. We catch it
2756                    here as this isn't an error. */
2757                 return err == -ENODEV ? 0 : err;
2758         }
2759
2760         /* Consistency check */
2761         if (info.type[0] == '\0') {
2762                 dev_err(&adapter->dev,
2763                         "%s detection function provided no name for 0x%x\n",
2764                         driver->driver.name, addr);
2765         } else {
2766                 struct i2c_client *client;
2767
2768                 /* Detection succeeded, instantiate the device */
2769                 if (adapter->class & I2C_CLASS_DEPRECATED)
2770                         dev_warn(&adapter->dev,
2771                                 "This adapter will soon drop class based instantiation of devices. "
2772                                 "Please make sure client 0x%02x gets instantiated by other means. "
2773                                 "Check 'Documentation/i2c/instantiating-devices' for details.\n",
2774                                 info.addr);
2775
2776                 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
2777                         info.type, info.addr);
2778                 client = i2c_new_device(adapter, &info);
2779                 if (client)
2780                         list_add_tail(&client->detected, &driver->clients);
2781                 else
2782                         dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
2783                                 info.type, info.addr);
2784         }
2785         return 0;
2786 }
2787
2788 static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
2789 {
2790         const unsigned short *address_list;
2791         struct i2c_client *temp_client;
2792         int i, err = 0;
2793         int adap_id = i2c_adapter_id(adapter);
2794
2795         address_list = driver->address_list;
2796         if (!driver->detect || !address_list)
2797                 return 0;
2798
2799         /* Warn that the adapter lost class based instantiation */
2800         if (adapter->class == I2C_CLASS_DEPRECATED) {
2801                 dev_dbg(&adapter->dev,
2802                         "This adapter dropped support for I2C classes and won't auto-detect %s devices anymore. "
2803                         "If you need it, check 'Documentation/i2c/instantiating-devices' for alternatives.\n",
2804                         driver->driver.name);
2805                 return 0;
2806         }
2807
2808         /* Stop here if the classes do not match */
2809         if (!(adapter->class & driver->class))
2810                 return 0;
2811
2812         /* Set up a temporary client to help detect callback */
2813         temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
2814         if (!temp_client)
2815                 return -ENOMEM;
2816         temp_client->adapter = adapter;
2817
2818         for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
2819                 dev_dbg(&adapter->dev,
2820                         "found normal entry for adapter %d, addr 0x%02x\n",
2821                         adap_id, address_list[i]);
2822                 temp_client->addr = address_list[i];
2823                 err = i2c_detect_address(temp_client, driver);
2824                 if (unlikely(err))
2825                         break;
2826         }
2827
2828         kfree(temp_client);
2829         return err;
2830 }
2831
2832 int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
2833 {
2834         return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2835                               I2C_SMBUS_QUICK, NULL) >= 0;
2836 }
2837 EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
2838
2839 struct i2c_client *
2840 i2c_new_probed_device(struct i2c_adapter *adap,
2841                       struct i2c_board_info *info,
2842                       unsigned short const *addr_list,
2843                       int (*probe)(struct i2c_adapter *, unsigned short addr))
2844 {
2845         int i;
2846
2847         if (!probe)
2848                 probe = i2c_default_probe;
2849
2850         for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2851                 /* Check address validity */
2852                 if (i2c_check_7bit_addr_validity_strict(addr_list[i]) < 0) {
2853                         dev_warn(&adap->dev, "Invalid 7-bit address 0x%02x\n",
2854                                  addr_list[i]);
2855                         continue;
2856                 }
2857
2858                 /* Check address availability (7 bit, no need to encode flags) */
2859                 if (i2c_check_addr_busy(adap, addr_list[i])) {
2860                         dev_dbg(&adap->dev,
2861                                 "Address 0x%02x already in use, not probing\n",
2862                                 addr_list[i]);
2863                         continue;
2864                 }
2865
2866                 /* Test address responsiveness */
2867                 if (probe(adap, addr_list[i]))
2868                         break;
2869         }
2870
2871         if (addr_list[i] == I2C_CLIENT_END) {
2872                 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2873                 return NULL;
2874         }
2875
2876         info->addr = addr_list[i];
2877         return i2c_new_device(adap, info);
2878 }
2879 EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2880
2881 struct i2c_adapter *i2c_get_adapter(int nr)
2882 {
2883         struct i2c_adapter *adapter;
2884
2885         mutex_lock(&core_lock);
2886         adapter = idr_find(&i2c_adapter_idr, nr);
2887         if (!adapter)
2888                 goto exit;
2889
2890         if (try_module_get(adapter->owner))
2891                 get_device(&adapter->dev);
2892         else
2893                 adapter = NULL;
2894
2895  exit:
2896         mutex_unlock(&core_lock);
2897         return adapter;
2898 }
2899 EXPORT_SYMBOL(i2c_get_adapter);
2900
2901 void i2c_put_adapter(struct i2c_adapter *adap)
2902 {
2903         if (!adap)
2904                 return;
2905
2906         put_device(&adap->dev);
2907         module_put(adap->owner);
2908 }
2909 EXPORT_SYMBOL(i2c_put_adapter);
2910
2911 /* The SMBus parts */
2912
2913 #define POLY    (0x1070U << 3)
2914 static u8 crc8(u16 data)
2915 {
2916         int i;
2917
2918         for (i = 0; i < 8; i++) {
2919                 if (data & 0x8000)
2920                         data = data ^ POLY;
2921                 data = data << 1;
2922         }
2923         return (u8)(data >> 8);
2924 }
2925
2926 /* Incremental CRC8 over count bytes in the array pointed to by p */
2927 static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
2928 {
2929         int i;
2930
2931         for (i = 0; i < count; i++)
2932                 crc = crc8((crc ^ p[i]) << 8);
2933         return crc;
2934 }
2935
2936 /* Assume a 7-bit address, which is reasonable for SMBus */
2937 static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
2938 {
2939         /* The address will be sent first */
2940         u8 addr = i2c_8bit_addr_from_msg(msg);
2941         pec = i2c_smbus_pec(pec, &addr, 1);
2942
2943         /* The data buffer follows */
2944         return i2c_smbus_pec(pec, msg->buf, msg->len);
2945 }
2946
2947 /* Used for write only transactions */
2948 static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
2949 {
2950         msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
2951         msg->len++;
2952 }
2953
2954 /* Return <0 on CRC error
2955    If there was a write before this read (most cases) we need to take the
2956    partial CRC from the write part into account.
2957    Note that this function does modify the message (we need to decrease the
2958    message length to hide the CRC byte from the caller). */
2959 static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
2960 {
2961         u8 rpec = msg->buf[--msg->len];
2962         cpec = i2c_smbus_msg_pec(cpec, msg);
2963
2964         if (rpec != cpec) {
2965                 pr_debug("Bad PEC 0x%02x vs. 0x%02x\n",
2966                         rpec, cpec);
2967                 return -EBADMSG;
2968         }
2969         return 0;
2970 }
2971
2972 /**
2973  * i2c_smbus_read_byte - SMBus "receive byte" protocol
2974  * @client: Handle to slave device
2975  *
2976  * This executes the SMBus "receive byte" protocol, returning negative errno
2977  * else the byte received from the device.
2978  */
2979 s32 i2c_smbus_read_byte(const struct i2c_client *client)
2980 {
2981         union i2c_smbus_data data;
2982         int status;
2983
2984         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2985                                 I2C_SMBUS_READ, 0,
2986                                 I2C_SMBUS_BYTE, &data);
2987         return (status < 0) ? status : data.byte;
2988 }
2989 EXPORT_SYMBOL(i2c_smbus_read_byte);
2990
2991 /**
2992  * i2c_smbus_write_byte - SMBus "send byte" protocol
2993  * @client: Handle to slave device
2994  * @value: Byte to be sent
2995  *
2996  * This executes the SMBus "send byte" protocol, returning negative errno
2997  * else zero on success.
2998  */
2999 s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
3000 {
3001         return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3002                               I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
3003 }
3004 EXPORT_SYMBOL(i2c_smbus_write_byte);
3005
3006 /**
3007  * i2c_smbus_read_byte_data - SMBus "read byte" protocol
3008  * @client: Handle to slave device
3009  * @command: Byte interpreted by slave
3010  *
3011  * This executes the SMBus "read byte" protocol, returning negative errno
3012  * else a data byte received from the device.
3013  */
3014 s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
3015 {
3016         union i2c_smbus_data data;
3017         int status;
3018
3019         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3020                                 I2C_SMBUS_READ, command,
3021                                 I2C_SMBUS_BYTE_DATA, &data);
3022         return (status < 0) ? status : data.byte;
3023 }
3024 EXPORT_SYMBOL(i2c_smbus_read_byte_data);
3025
3026 /**
3027  * i2c_smbus_write_byte_data - SMBus "write byte" protocol
3028  * @client: Handle to slave device
3029  * @command: Byte interpreted by slave
3030  * @value: Byte being written
3031  *
3032  * This executes the SMBus "write byte" protocol, returning negative errno
3033  * else zero on success.
3034  */
3035 s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
3036                               u8 value)
3037 {
3038         union i2c_smbus_data data;
3039         data.byte = value;
3040         return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3041                               I2C_SMBUS_WRITE, command,
3042                               I2C_SMBUS_BYTE_DATA, &data);
3043 }
3044 EXPORT_SYMBOL(i2c_smbus_write_byte_data);
3045
3046 /**
3047  * i2c_smbus_read_word_data - SMBus "read word" protocol
3048  * @client: Handle to slave device
3049  * @command: Byte interpreted by slave
3050  *
3051  * This executes the SMBus "read word" protocol, returning negative errno
3052  * else a 16-bit unsigned "word" received from the device.
3053  */
3054 s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
3055 {
3056         union i2c_smbus_data data;
3057         int status;
3058
3059         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3060                                 I2C_SMBUS_READ, command,
3061                                 I2C_SMBUS_WORD_DATA, &data);
3062         return (status < 0) ? status : data.word;
3063 }
3064 EXPORT_SYMBOL(i2c_smbus_read_word_data);
3065
3066 /**
3067  * i2c_smbus_write_word_data - SMBus "write word" protocol
3068  * @client: Handle to slave device
3069  * @command: Byte interpreted by slave
3070  * @value: 16-bit "word" being written
3071  *
3072  * This executes the SMBus "write word" protocol, returning negative errno
3073  * else zero on success.
3074  */
3075 s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
3076                               u16 value)
3077 {
3078         union i2c_smbus_data data;
3079         data.word = value;
3080         return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3081                               I2C_SMBUS_WRITE, command,
3082                               I2C_SMBUS_WORD_DATA, &data);
3083 }
3084 EXPORT_SYMBOL(i2c_smbus_write_word_data);
3085
3086 /**
3087  * i2c_smbus_read_block_data - SMBus "block read" protocol
3088  * @client: Handle to slave device
3089  * @command: Byte interpreted by slave
3090  * @values: Byte array into which data will be read; big enough to hold
3091  *      the data returned by the slave.  SMBus allows at most 32 bytes.
3092  *
3093  * This executes the SMBus "block read" protocol, returning negative errno
3094  * else the number of data bytes in the slave's response.
3095  *
3096  * Note that using this function requires that the client's adapter support
3097  * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality.  Not all adapter drivers
3098  * support this; its emulation through I2C messaging relies on a specific
3099  * mechanism (I2C_M_RECV_LEN) which may not be implemented.
3100  */
3101 s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
3102                               u8 *values)
3103 {
3104         union i2c_smbus_data data;
3105         int status;
3106
3107         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3108                                 I2C_SMBUS_READ, command,
3109                                 I2C_SMBUS_BLOCK_DATA, &data);
3110         if (status)
3111                 return status;
3112
3113         memcpy(values, &data.block[1], data.block[0]);
3114         return data.block[0];
3115 }
3116 EXPORT_SYMBOL(i2c_smbus_read_block_data);
3117
3118 /**
3119  * i2c_smbus_write_block_data - SMBus "block write" protocol
3120  * @client: Handle to slave device
3121  * @command: Byte interpreted by slave
3122  * @length: Size of data block; SMBus allows at most 32 bytes
3123  * @values: Byte array which will be written.
3124  *
3125  * This executes the SMBus "block write" protocol, returning negative errno
3126  * else zero on success.
3127  */
3128 s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
3129                                u8 length, const u8 *values)
3130 {
3131         union i2c_smbus_data data;
3132
3133         if (length > I2C_SMBUS_BLOCK_MAX)
3134                 length = I2C_SMBUS_BLOCK_MAX;
3135         data.block[0] = length;
3136         memcpy(&data.block[1], values, length);
3137         return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3138                               I2C_SMBUS_WRITE, command,
3139                               I2C_SMBUS_BLOCK_DATA, &data);
3140 }
3141 EXPORT_SYMBOL(i2c_smbus_write_block_data);
3142
3143 /* Returns the number of read bytes */
3144 s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
3145                                   u8 length, u8 *values)
3146 {
3147         union i2c_smbus_data data;
3148         int status;
3149
3150         if (length > I2C_SMBUS_BLOCK_MAX)
3151                 length = I2C_SMBUS_BLOCK_MAX;
3152         data.block[0] = length;
3153         status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3154                                 I2C_SMBUS_READ, command,
3155                                 I2C_SMBUS_I2C_BLOCK_DATA, &data);
3156         if (status < 0)
3157                 return status;
3158
3159         memcpy(values, &data.block[1], data.block[0]);
3160         return data.block[0];
3161 }
3162 EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
3163
3164 s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
3165                                    u8 length, const u8 *values)
3166 {
3167         union i2c_smbus_data data;
3168
3169         if (length > I2C_SMBUS_BLOCK_MAX)
3170                 length = I2C_SMBUS_BLOCK_MAX;
3171         data.block[0] = length;
3172         memcpy(data.block + 1, values, length);
3173         return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3174                               I2C_SMBUS_WRITE, command,
3175                               I2C_SMBUS_I2C_BLOCK_DATA, &data);
3176 }
3177 EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
3178
3179 /* Simulate a SMBus command using the i2c protocol
3180    No checking of parameters is done!  */
3181 static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
3182                                    unsigned short flags,
3183                                    char read_write, u8 command, int size,
3184                                    union i2c_smbus_data *data)
3185 {
3186         /* So we need to generate a series of msgs. In the case of writing, we
3187           need to use only one message; when reading, we need two. We initialize
3188           most things with sane defaults, to keep the code below somewhat
3189           simpler. */
3190         unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
3191         unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
3192         int num = read_write == I2C_SMBUS_READ ? 2 : 1;
3193         int i;
3194         u8 partial_pec = 0;
3195         int status;
3196         struct i2c_msg msg[2] = {
3197                 {
3198                         .addr = addr,
3199                         .flags = flags,
3200                         .len = 1,
3201                         .buf = msgbuf0,
3202                 }, {
3203                         .addr = addr,
3204                         .flags = flags | I2C_M_RD,
3205                         .len = 0,
3206                         .buf = msgbuf1,
3207                 },
3208         };
3209
3210         msgbuf0[0] = command;
3211         switch (size) {
3212         case I2C_SMBUS_QUICK:
3213                 msg[0].len = 0;
3214                 /* Special case: The read/write field is used as data */
3215                 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
3216                                         I2C_M_RD : 0);
3217                 num = 1;
3218                 break;
3219         case I2C_SMBUS_BYTE:
3220                 if (read_write == I2C_SMBUS_READ) {
3221                         /* Special case: only a read! */
3222                         msg[0].flags = I2C_M_RD | flags;
3223                         num = 1;
3224                 }
3225                 break;
3226         case I2C_SMBUS_BYTE_DATA:
3227                 if (read_write == I2C_SMBUS_READ)
3228                         msg[1].len = 1;
3229                 else {
3230                         msg[0].len = 2;
3231                         msgbuf0[1] = data->byte;
3232                 }
3233                 break;
3234         case I2C_SMBUS_WORD_DATA:
3235                 if (read_write == I2C_SMBUS_READ)
3236                         msg[1].len = 2;
3237                 else {
3238                         msg[0].len = 3;
3239                         msgbuf0[1] = data->word & 0xff;
3240                         msgbuf0[2] = data->word >> 8;
3241                 }
3242                 break;
3243         case I2C_SMBUS_PROC_CALL:
3244                 num = 2; /* Special case */
3245                 read_write = I2C_SMBUS_READ;
3246                 msg[0].len = 3;
3247                 msg[1].len = 2;
3248                 msgbuf0[1] = data->word & 0xff;
3249                 msgbuf0[2] = data->word >> 8;
3250                 break;
3251         case I2C_SMBUS_BLOCK_DATA:
3252                 if (read_write == I2C_SMBUS_READ) {
3253                         msg[1].flags |= I2C_M_RECV_LEN;
3254                         msg[1].len = 1; /* block length will be added by
3255                                            the underlying bus driver */
3256                 } else {
3257                         msg[0].len = data->block[0] + 2;
3258                         if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
3259                                 dev_err(&adapter->dev,
3260                                         "Invalid block write size %d\n",
3261                                         data->block[0]);
3262                                 return -EINVAL;
3263                         }
3264                         for (i = 1; i < msg[0].len; i++)
3265                                 msgbuf0[i] = data->block[i-1];
3266                 }
3267                 break;
3268         case I2C_SMBUS_BLOCK_PROC_CALL:
3269                 num = 2; /* Another special case */
3270                 read_write = I2C_SMBUS_READ;
3271                 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
3272                         dev_err(&adapter->dev,
3273                                 "Invalid block write size %d\n",
3274                                 data->block[0]);
3275                         return -EINVAL;
3276                 }
3277                 msg[0].len = data->block[0] + 2;
3278                 for (i = 1; i < msg[0].len; i++)
3279                         msgbuf0[i] = data->block[i-1];
3280                 msg[1].flags |= I2C_M_RECV_LEN;
3281                 msg[1].len = 1; /* block length will be added by
3282                                    the underlying bus driver */
3283                 break;
3284         case I2C_SMBUS_I2C_BLOCK_DATA:
3285                 if (read_write == I2C_SMBUS_READ) {
3286                         msg[1].len = data->block[0];
3287                 } else {
3288                         msg[0].len = data->block[0] + 1;
3289                         if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
3290                                 dev_err(&adapter->dev,
3291                                         "Invalid block write size %d\n",
3292                                         data->block[0]);
3293                                 return -EINVAL;
3294                         }
3295                         for (i = 1; i <= data->block[0]; i++)
3296                                 msgbuf0[i] = data->block[i];
3297                 }
3298                 break;
3299         default:
3300                 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
3301                 return -EOPNOTSUPP;
3302         }
3303
3304         i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
3305                                       && size != I2C_SMBUS_I2C_BLOCK_DATA);
3306         if (i) {
3307                 /* Compute PEC if first message is a write */
3308                 if (!(msg[0].flags & I2C_M_RD)) {
3309                         if (num == 1) /* Write only */
3310                                 i2c_smbus_add_pec(&msg[0]);
3311                         else /* Write followed by read */
3312                                 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
3313                 }
3314                 /* Ask for PEC if last message is a read */
3315                 if (msg[num-1].flags & I2C_M_RD)
3316                         msg[num-1].len++;
3317         }
3318
3319         status = i2c_transfer(adapter, msg, num);
3320         if (status < 0)
3321                 return status;
3322
3323         /* Check PEC if last message is a read */
3324         if (i && (msg[num-1].flags & I2C_M_RD)) {
3325                 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
3326                 if (status < 0)
3327                         return status;
3328         }
3329
3330         if (read_write == I2C_SMBUS_READ)
3331                 switch (size) {
3332                 case I2C_SMBUS_BYTE:
3333                         data->byte = msgbuf0[0];
3334                         break;
3335                 case I2C_SMBUS_BYTE_DATA:
3336                         data->byte = msgbuf1[0];
3337                         break;
3338                 case I2C_SMBUS_WORD_DATA:
3339                 case I2C_SMBUS_PROC_CALL:
3340                         data->word = msgbuf1[0] | (msgbuf1[1] << 8);
3341                         break;
3342                 case I2C_SMBUS_I2C_BLOCK_DATA:
3343                         for (i = 0; i < data->block[0]; i++)
3344                                 data->block[i+1] = msgbuf1[i];
3345                         break;
3346                 case I2C_SMBUS_BLOCK_DATA:
3347                 case I2C_SMBUS_BLOCK_PROC_CALL:
3348                         for (i = 0; i < msgbuf1[0] + 1; i++)
3349                                 data->block[i] = msgbuf1[i];
3350                         break;
3351                 }
3352         return 0;
3353 }
3354
3355 /**
3356  * i2c_smbus_xfer - execute SMBus protocol operations
3357  * @adapter: Handle to I2C bus
3358  * @addr: Address of SMBus slave on that bus
3359  * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
3360  * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
3361  * @command: Byte interpreted by slave, for protocols which use such bytes
3362  * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
3363  * @data: Data to be read or written
3364  *
3365  * This executes an SMBus protocol operation, and returns a negative
3366  * errno code else zero on success.
3367  */
3368 s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
3369                    char read_write, u8 command, int protocol,
3370                    union i2c_smbus_data *data)
3371 {
3372         unsigned long orig_jiffies;
3373         int try;
3374         s32 res;
3375
3376         /* If enabled, the following two tracepoints are conditional on
3377          * read_write and protocol.
3378          */
3379         trace_smbus_write(adapter, addr, flags, read_write,
3380                           command, protocol, data);
3381         trace_smbus_read(adapter, addr, flags, read_write,
3382                          command, protocol);
3383
3384         flags &= I2C_M_TEN | I2C_CLIENT_PEC | I2C_CLIENT_SCCB;
3385
3386         if (adapter->algo->smbus_xfer) {
3387                 i2c_lock_bus(adapter, I2C_LOCK_SEGMENT);
3388
3389                 /* Retry automatically on arbitration loss */
3390                 orig_jiffies = jiffies;
3391                 for (res = 0, try = 0; try <= adapter->retries; try++) {
3392                         res = adapter->algo->smbus_xfer(adapter, addr, flags,
3393                                                         read_write, command,
3394                                                         protocol, data);
3395                         if (res != -EAGAIN)
3396                                 break;
3397                         if (time_after(jiffies,
3398                                        orig_jiffies + adapter->timeout))
3399                                 break;
3400                 }
3401                 i2c_unlock_bus(adapter, I2C_LOCK_SEGMENT);
3402
3403                 if (res != -EOPNOTSUPP || !adapter->algo->master_xfer)
3404                         goto trace;
3405                 /*
3406                  * Fall back to i2c_smbus_xfer_emulated if the adapter doesn't
3407                  * implement native support for the SMBus operation.
3408                  */
3409         }
3410
3411         res = i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
3412                                       command, protocol, data);
3413
3414 trace:
3415         /* If enabled, the reply tracepoint is conditional on read_write. */
3416         trace_smbus_reply(adapter, addr, flags, read_write,
3417                           command, protocol, data);
3418         trace_smbus_result(adapter, addr, flags, read_write,
3419                            command, protocol, res);
3420
3421         return res;
3422 }
3423 EXPORT_SYMBOL(i2c_smbus_xfer);
3424
3425 /**
3426  * i2c_smbus_read_i2c_block_data_or_emulated - read block or emulate
3427  * @client: Handle to slave device
3428  * @command: Byte interpreted by slave
3429  * @length: Size of data block; SMBus allows at most I2C_SMBUS_BLOCK_MAX bytes
3430  * @values: Byte array into which data will be read; big enough to hold
3431  *      the data returned by the slave.  SMBus allows at most
3432  *      I2C_SMBUS_BLOCK_MAX bytes.
3433  *
3434  * This executes the SMBus "block read" protocol if supported by the adapter.
3435  * If block read is not supported, it emulates it using either word or byte
3436  * read protocols depending on availability.
3437  *
3438  * The addresses of the I2C slave device that are accessed with this function
3439  * must be mapped to a linear region, so that a block read will have the same
3440  * effect as a byte read. Before using this function you must double-check
3441  * if the I2C slave does support exchanging a block transfer with a byte
3442  * transfer.
3443  */
3444 s32 i2c_smbus_read_i2c_block_data_or_emulated(const struct i2c_client *client,
3445                                               u8 command, u8 length, u8 *values)
3446 {
3447         u8 i = 0;
3448         int status;
3449
3450         if (length > I2C_SMBUS_BLOCK_MAX)
3451                 length = I2C_SMBUS_BLOCK_MAX;
3452
3453         if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_I2C_BLOCK))
3454                 return i2c_smbus_read_i2c_block_data(client, command, length, values);
3455
3456         if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_BYTE_DATA))
3457                 return -EOPNOTSUPP;
3458
3459         if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_WORD_DATA)) {
3460                 while ((i + 2) <= length) {
3461                         status = i2c_smbus_read_word_data(client, command + i);
3462                         if (status < 0)
3463                                 return status;
3464                         values[i] = status & 0xff;
3465                         values[i + 1] = status >> 8;
3466                         i += 2;
3467                 }
3468         }
3469
3470         while (i < length) {
3471                 status = i2c_smbus_read_byte_data(client, command + i);
3472                 if (status < 0)
3473                         return status;
3474                 values[i] = status;
3475                 i++;
3476         }
3477
3478         return i;
3479 }
3480 EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data_or_emulated);
3481
3482 #if IS_ENABLED(CONFIG_I2C_SLAVE)
3483 int i2c_slave_register(struct i2c_client *client, i2c_slave_cb_t slave_cb)
3484 {
3485         int ret;
3486
3487         if (!client || !slave_cb) {
3488                 WARN(1, "insufficent data\n");
3489                 return -EINVAL;
3490         }
3491
3492         if (!(client->flags & I2C_CLIENT_SLAVE))
3493                 dev_warn(&client->dev, "%s: client slave flag not set. You might see address collisions\n",
3494                          __func__);
3495
3496         if (!(client->flags & I2C_CLIENT_TEN)) {
3497                 /* Enforce stricter address checking */
3498                 ret = i2c_check_7bit_addr_validity_strict(client->addr);
3499                 if (ret) {
3500                         dev_err(&client->dev, "%s: invalid address\n", __func__);
3501                         return ret;
3502                 }
3503         }
3504
3505         if (!client->adapter->algo->reg_slave) {
3506                 dev_err(&client->dev, "%s: not supported by adapter\n", __func__);
3507                 return -EOPNOTSUPP;
3508         }
3509
3510         client->slave_cb = slave_cb;
3511
3512         i2c_lock_adapter(client->adapter);
3513         ret = client->adapter->algo->reg_slave(client);
3514         i2c_unlock_adapter(client->adapter);
3515
3516         if (ret) {
3517                 client->slave_cb = NULL;
3518                 dev_err(&client->dev, "%s: adapter returned error %d\n", __func__, ret);
3519         }
3520
3521         return ret;
3522 }
3523 EXPORT_SYMBOL_GPL(i2c_slave_register);
3524
3525 int i2c_slave_unregister(struct i2c_client *client)
3526 {
3527         int ret;
3528
3529         if (!client->adapter->algo->unreg_slave) {
3530                 dev_err(&client->dev, "%s: not supported by adapter\n", __func__);
3531                 return -EOPNOTSUPP;
3532         }
3533
3534         i2c_lock_adapter(client->adapter);
3535         ret = client->adapter->algo->unreg_slave(client);
3536         i2c_unlock_adapter(client->adapter);
3537
3538         if (ret == 0)
3539                 client->slave_cb = NULL;
3540         else
3541                 dev_err(&client->dev, "%s: adapter returned error %d\n", __func__, ret);
3542
3543         return ret;
3544 }
3545 EXPORT_SYMBOL_GPL(i2c_slave_unregister);
3546 #endif
3547
3548 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
3549 MODULE_DESCRIPTION("I2C-Bus main module");
3550 MODULE_LICENSE("GPL");