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