blob: 68aeb8eedae0dfd4b8d346eeeb5697a6faff89c5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
Wolfram Sangca1f8da2014-11-04 23:46:27 +010013 GNU General Public License for more details. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/* ------------------------------------------------------------------------- */
15
Jan Engelhardt96de0e22007-10-19 23:21:04 +020016/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 All SMBus-related things are written by Frodo Looijaard <frodol@dds.nl>
Jean Delvare421ef472005-10-26 21:28:55 +020018 SMBus 2.0 support by Mark Studebaker <mdsxyz123@yahoo.com> and
Jean Delvare7c81c602014-01-29 20:40:08 +010019 Jean Delvare <jdelvare@suse.de>
Michael Lawnick08263742010-08-11 18:21:02 +020020 Mux support by Rodolfo Giometti <giometti@enneenne.com> and
Wolfram Sang687b81d2013-07-11 12:56:15 +010021 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>
Wolfram Sang17f4a5c2014-09-22 19:41:00 +020025 I2C ACPI code Copyright (C) 2014 Intel Corp
26 Author: Lan Tianyu <tianyu.lan@intel.com>
Wolfram Sang687b81d2013-07-11 12:56:15 +010027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/kernel.h>
Viresh Kumar5f9296b2012-02-28 18:26:31 +053031#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
Viresh Kumar5f9296b2012-02-28 18:26:31 +053033#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/slab.h>
35#include <linux/i2c.h>
36#include <linux/init.h>
37#include <linux/idr.h>
Arjan van de Venb3585e42006-01-11 10:50:26 +010038#include <linux/mutex.h>
Wolfram Sang687b81d2013-07-11 12:56:15 +010039#include <linux/of.h>
Grant Likely959e85f2010-06-08 07:48:19 -060040#include <linux/of_device.h>
Wolfram Sang687b81d2013-07-11 12:56:15 +010041#include <linux/of_irq.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020042#include <linux/clk/clk-conf.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010043#include <linux/completion.h>
Mike Rapoportcea443a2008-01-27 18:14:50 +010044#include <linux/hardirq.h>
45#include <linux/irqflags.h>
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +020046#include <linux/rwsem.h>
Mark Brown6de468a2010-03-02 12:23:46 +010047#include <linux/pm_runtime.h>
Ulf Hanssonf48c7672014-09-29 13:58:47 +020048#include <linux/pm_domain.h>
Mika Westerberg907ddf82012-11-23 12:23:40 +010049#include <linux/acpi.h>
David Howellsd9a83d62014-03-06 13:35:59 +000050#include <linux/jump_label.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/uaccess.h>
52
David Brownell9c1600e2007-05-01 23:26:31 +020053#include "i2c-core.h"
54
David Howellsd9a83d62014-03-06 13:35:59 +000055#define CREATE_TRACE_POINTS
56#include <trace/events/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jean Delvare6629dcf2010-05-04 11:09:28 +020058/* core_lock protects i2c_adapter_idr, and guarantees
Jean Delvare35fc37f2009-06-19 16:58:19 +020059 that device detection, deletion of detected devices, and attach_adapter
Lars-Peter Clausen19baba42013-03-09 08:16:44 +000060 calls are serialized */
Jean Delvarecaada322008-01-27 18:14:49 +010061static DEFINE_MUTEX(core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static DEFINE_IDR(i2c_adapter_idr);
63
Jean Delvare4f8cf822009-09-18 22:45:46 +020064static struct device_type i2c_client_type;
Jean Delvare4735c982008-07-14 22:38:36 +020065static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010066
David Howellsd9a83d62014-03-06 13:35:59 +000067static struct static_key i2c_trace_msg = STATIC_KEY_INIT_FALSE;
68
69void i2c_transfer_trace_reg(void)
70{
71 static_key_slow_inc(&i2c_trace_msg);
72}
73
74void i2c_transfer_trace_unreg(void)
75{
76 static_key_slow_dec(&i2c_trace_msg);
77}
78
Wolfram Sang17f4a5c2014-09-22 19:41:00 +020079#if defined(CONFIG_ACPI)
80struct acpi_i2c_handler_data {
81 struct acpi_connection_info info;
82 struct i2c_adapter *adapter;
83};
84
85struct gsb_buffer {
86 u8 status;
87 u8 len;
88 union {
89 u16 wdata;
90 u8 bdata;
91 u8 data[0];
92 };
93} __packed;
94
95static int acpi_i2c_add_resource(struct acpi_resource *ares, void *data)
96{
97 struct i2c_board_info *info = data;
98
99 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
100 struct acpi_resource_i2c_serialbus *sb;
101
102 sb = &ares->data.i2c_serial_bus;
103 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_I2C) {
104 info->addr = sb->slave_address;
105 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
106 info->flags |= I2C_CLIENT_TEN;
107 }
108 } else if (info->irq < 0) {
109 struct resource r;
110
111 if (acpi_dev_resource_interrupt(ares, 0, &r))
112 info->irq = r.start;
113 }
114
115 /* Tell the ACPI core to skip this resource */
116 return 1;
117}
118
119static acpi_status acpi_i2c_add_device(acpi_handle handle, u32 level,
120 void *data, void **return_value)
121{
122 struct i2c_adapter *adapter = data;
123 struct list_head resource_list;
124 struct i2c_board_info info;
125 struct acpi_device *adev;
126 int ret;
127
128 if (acpi_bus_get_device(handle, &adev))
129 return AE_OK;
130 if (acpi_bus_get_status(adev) || !adev->status.present)
131 return AE_OK;
132
133 memset(&info, 0, sizeof(info));
134 info.acpi_node.companion = adev;
135 info.irq = -1;
136
137 INIT_LIST_HEAD(&resource_list);
138 ret = acpi_dev_get_resources(adev, &resource_list,
139 acpi_i2c_add_resource, &info);
140 acpi_dev_free_resource_list(&resource_list);
141
142 if (ret < 0 || !info.addr)
143 return AE_OK;
144
145 adev->power.flags.ignore_parent = true;
146 strlcpy(info.type, dev_name(&adev->dev), sizeof(info.type));
147 if (!i2c_new_device(adapter, &info)) {
148 adev->power.flags.ignore_parent = false;
149 dev_err(&adapter->dev,
150 "failed to add I2C device %s from ACPI\n",
151 dev_name(&adev->dev));
152 }
153
154 return AE_OK;
155}
156
157/**
158 * acpi_i2c_register_devices - enumerate I2C slave devices behind adapter
159 * @adap: pointer to adapter
160 *
161 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
162 * namespace. When a device is found it will be added to the Linux device
163 * model and bound to the corresponding ACPI handle.
164 */
165static void acpi_i2c_register_devices(struct i2c_adapter *adap)
166{
167 acpi_handle handle;
168 acpi_status status;
169
170 if (!adap->dev.parent)
171 return;
172
173 handle = ACPI_HANDLE(adap->dev.parent);
174 if (!handle)
175 return;
176
177 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
178 acpi_i2c_add_device, NULL,
179 adap, NULL);
180 if (ACPI_FAILURE(status))
181 dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
182}
183
184#else /* CONFIG_ACPI */
185static inline void acpi_i2c_register_devices(struct i2c_adapter *adap) { }
186#endif /* CONFIG_ACPI */
187
188#ifdef CONFIG_ACPI_I2C_OPREGION
189static int acpi_gsb_i2c_read_bytes(struct i2c_client *client,
190 u8 cmd, u8 *data, u8 data_len)
191{
192
193 struct i2c_msg msgs[2];
194 int ret;
195 u8 *buffer;
196
197 buffer = kzalloc(data_len, GFP_KERNEL);
198 if (!buffer)
199 return AE_NO_MEMORY;
200
201 msgs[0].addr = client->addr;
202 msgs[0].flags = client->flags;
203 msgs[0].len = 1;
204 msgs[0].buf = &cmd;
205
206 msgs[1].addr = client->addr;
207 msgs[1].flags = client->flags | I2C_M_RD;
208 msgs[1].len = data_len;
209 msgs[1].buf = buffer;
210
211 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
212 if (ret < 0)
213 dev_err(&client->adapter->dev, "i2c read failed\n");
214 else
215 memcpy(data, buffer, data_len);
216
217 kfree(buffer);
218 return ret;
219}
220
221static int acpi_gsb_i2c_write_bytes(struct i2c_client *client,
222 u8 cmd, u8 *data, u8 data_len)
223{
224
225 struct i2c_msg msgs[1];
226 u8 *buffer;
227 int ret = AE_OK;
228
229 buffer = kzalloc(data_len + 1, GFP_KERNEL);
230 if (!buffer)
231 return AE_NO_MEMORY;
232
233 buffer[0] = cmd;
234 memcpy(buffer + 1, data, data_len);
235
236 msgs[0].addr = client->addr;
237 msgs[0].flags = client->flags;
238 msgs[0].len = data_len + 1;
239 msgs[0].buf = buffer;
240
241 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
242 if (ret < 0)
243 dev_err(&client->adapter->dev, "i2c write failed\n");
244
245 kfree(buffer);
246 return ret;
247}
248
249static acpi_status
250acpi_i2c_space_handler(u32 function, acpi_physical_address command,
251 u32 bits, u64 *value64,
252 void *handler_context, void *region_context)
253{
254 struct gsb_buffer *gsb = (struct gsb_buffer *)value64;
255 struct acpi_i2c_handler_data *data = handler_context;
256 struct acpi_connection_info *info = &data->info;
257 struct acpi_resource_i2c_serialbus *sb;
258 struct i2c_adapter *adapter = data->adapter;
259 struct i2c_client client;
260 struct acpi_resource *ares;
261 u32 accessor_type = function >> 16;
262 u8 action = function & ACPI_IO_MASK;
263 acpi_status ret = AE_OK;
264 int status;
265
266 ret = acpi_buffer_to_resource(info->connection, info->length, &ares);
267 if (ACPI_FAILURE(ret))
268 return ret;
269
270 if (!value64 || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) {
271 ret = AE_BAD_PARAMETER;
272 goto err;
273 }
274
275 sb = &ares->data.i2c_serial_bus;
276 if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C) {
277 ret = AE_BAD_PARAMETER;
278 goto err;
279 }
280
281 memset(&client, 0, sizeof(client));
282 client.adapter = adapter;
283 client.addr = sb->slave_address;
284 client.flags = 0;
285
286 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
287 client.flags |= I2C_CLIENT_TEN;
288
289 switch (accessor_type) {
290 case ACPI_GSB_ACCESS_ATTRIB_SEND_RCV:
291 if (action == ACPI_READ) {
292 status = i2c_smbus_read_byte(&client);
293 if (status >= 0) {
294 gsb->bdata = status;
295 status = 0;
296 }
297 } else {
298 status = i2c_smbus_write_byte(&client, gsb->bdata);
299 }
300 break;
301
302 case ACPI_GSB_ACCESS_ATTRIB_BYTE:
303 if (action == ACPI_READ) {
304 status = i2c_smbus_read_byte_data(&client, command);
305 if (status >= 0) {
306 gsb->bdata = status;
307 status = 0;
308 }
309 } else {
310 status = i2c_smbus_write_byte_data(&client, command,
311 gsb->bdata);
312 }
313 break;
314
315 case ACPI_GSB_ACCESS_ATTRIB_WORD:
316 if (action == ACPI_READ) {
317 status = i2c_smbus_read_word_data(&client, command);
318 if (status >= 0) {
319 gsb->wdata = status;
320 status = 0;
321 }
322 } else {
323 status = i2c_smbus_write_word_data(&client, command,
324 gsb->wdata);
325 }
326 break;
327
328 case ACPI_GSB_ACCESS_ATTRIB_BLOCK:
329 if (action == ACPI_READ) {
330 status = i2c_smbus_read_block_data(&client, command,
331 gsb->data);
332 if (status >= 0) {
333 gsb->len = status;
334 status = 0;
335 }
336 } else {
337 status = i2c_smbus_write_block_data(&client, command,
338 gsb->len, gsb->data);
339 }
340 break;
341
342 case ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE:
343 if (action == ACPI_READ) {
344 status = acpi_gsb_i2c_read_bytes(&client, command,
345 gsb->data, info->access_length);
346 if (status > 0)
347 status = 0;
348 } else {
349 status = acpi_gsb_i2c_write_bytes(&client, command,
350 gsb->data, info->access_length);
351 }
352 break;
353
354 default:
355 pr_info("protocol(0x%02x) is not supported.\n", accessor_type);
356 ret = AE_BAD_PARAMETER;
357 goto err;
358 }
359
360 gsb->status = status;
361
362 err:
363 ACPI_FREE(ares);
364 return ret;
365}
366
367
368static int acpi_i2c_install_space_handler(struct i2c_adapter *adapter)
369{
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200370 acpi_handle handle;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200371 struct acpi_i2c_handler_data *data;
372 acpi_status status;
373
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200374 if (!adapter->dev.parent)
375 return -ENODEV;
376
377 handle = ACPI_HANDLE(adapter->dev.parent);
378
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200379 if (!handle)
380 return -ENODEV;
381
382 data = kzalloc(sizeof(struct acpi_i2c_handler_data),
383 GFP_KERNEL);
384 if (!data)
385 return -ENOMEM;
386
387 data->adapter = adapter;
388 status = acpi_bus_attach_private_data(handle, (void *)data);
389 if (ACPI_FAILURE(status)) {
390 kfree(data);
391 return -ENOMEM;
392 }
393
394 status = acpi_install_address_space_handler(handle,
395 ACPI_ADR_SPACE_GSBUS,
396 &acpi_i2c_space_handler,
397 NULL,
398 data);
399 if (ACPI_FAILURE(status)) {
400 dev_err(&adapter->dev, "Error installing i2c space handler\n");
401 acpi_bus_detach_private_data(handle);
402 kfree(data);
403 return -ENOMEM;
404 }
405
Lan Tianyu40e7fcb2014-11-23 21:22:54 +0800406 acpi_walk_dep_device_list(handle);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200407 return 0;
408}
409
410static void acpi_i2c_remove_space_handler(struct i2c_adapter *adapter)
411{
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200412 acpi_handle handle;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200413 struct acpi_i2c_handler_data *data;
414 acpi_status status;
415
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200416 if (!adapter->dev.parent)
417 return;
418
419 handle = ACPI_HANDLE(adapter->dev.parent);
420
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200421 if (!handle)
422 return;
423
424 acpi_remove_address_space_handler(handle,
425 ACPI_ADR_SPACE_GSBUS,
426 &acpi_i2c_space_handler);
427
428 status = acpi_bus_get_private_data(handle, (void **)&data);
429 if (ACPI_SUCCESS(status))
430 kfree(data);
431
432 acpi_bus_detach_private_data(handle);
433}
434#else /* CONFIG_ACPI_I2C_OPREGION */
435static inline void acpi_i2c_remove_space_handler(struct i2c_adapter *adapter)
436{ }
437
438static inline int acpi_i2c_install_space_handler(struct i2c_adapter *adapter)
439{ return 0; }
440#endif /* CONFIG_ACPI_I2C_OPREGION */
441
David Brownellf37dd802007-02-13 22:09:00 +0100442/* ------------------------------------------------------------------------- */
443
Jean Delvared2653e92008-04-29 23:11:39 +0200444static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
445 const struct i2c_client *client)
446{
447 while (id->name[0]) {
448 if (strcmp(client->name, id->name) == 0)
449 return id;
450 id++;
451 }
452 return NULL;
453}
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455static int i2c_device_match(struct device *dev, struct device_driver *drv)
456{
Jean Delvare51298d12009-09-18 22:45:45 +0200457 struct i2c_client *client = i2c_verify_client(dev);
458 struct i2c_driver *driver;
David Brownell7b4fbc52007-05-01 23:26:30 +0200459
Jean Delvare51298d12009-09-18 22:45:45 +0200460 if (!client)
461 return 0;
462
Grant Likely959e85f2010-06-08 07:48:19 -0600463 /* Attempt an OF style match */
464 if (of_driver_match_device(dev, drv))
465 return 1;
466
Mika Westerberg907ddf82012-11-23 12:23:40 +0100467 /* Then ACPI style match */
468 if (acpi_driver_match_device(dev, drv))
469 return 1;
470
Jean Delvare51298d12009-09-18 22:45:45 +0200471 driver = to_i2c_driver(drv);
Jean Delvared2653e92008-04-29 23:11:39 +0200472 /* match on an id table if there is one */
473 if (driver->id_table)
474 return i2c_match_id(driver->id_table, client) != NULL;
475
Jean Delvareeb8a7902008-05-18 20:49:41 +0200476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
David Brownell7b4fbc52007-05-01 23:26:30 +0200479
480/* uevent helps with hotplug: modprobe -q $(MODALIAS) */
Kay Sievers7eff2e72007-08-14 15:15:12 +0200481static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +0200482{
483 struct i2c_client *client = to_i2c_client(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800484 int rc;
485
486 rc = acpi_device_uevent_modalias(dev, env);
487 if (rc != -ENODEV)
488 return rc;
David Brownell7b4fbc52007-05-01 23:26:30 +0200489
Jean Delvareeb8a7902008-05-18 20:49:41 +0200490 if (add_uevent_var(env, "MODALIAS=%s%s",
491 I2C_MODULE_PREFIX, client->name))
492 return -ENOMEM;
David Brownell7b4fbc52007-05-01 23:26:30 +0200493 dev_dbg(dev, "uevent\n");
494 return 0;
495}
496
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530497/* i2c bus recovery routines */
498static int get_scl_gpio_value(struct i2c_adapter *adap)
499{
500 return gpio_get_value(adap->bus_recovery_info->scl_gpio);
501}
502
503static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
504{
505 gpio_set_value(adap->bus_recovery_info->scl_gpio, val);
506}
507
508static int get_sda_gpio_value(struct i2c_adapter *adap)
509{
510 return gpio_get_value(adap->bus_recovery_info->sda_gpio);
511}
512
513static int i2c_get_gpios_for_recovery(struct i2c_adapter *adap)
514{
515 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
516 struct device *dev = &adap->dev;
517 int ret = 0;
518
519 ret = gpio_request_one(bri->scl_gpio, GPIOF_OPEN_DRAIN |
520 GPIOF_OUT_INIT_HIGH, "i2c-scl");
521 if (ret) {
522 dev_warn(dev, "Can't get SCL gpio: %d\n", bri->scl_gpio);
523 return ret;
524 }
525
526 if (bri->get_sda) {
527 if (gpio_request_one(bri->sda_gpio, GPIOF_IN, "i2c-sda")) {
528 /* work without SDA polling */
529 dev_warn(dev, "Can't get SDA gpio: %d. Not using SDA polling\n",
530 bri->sda_gpio);
531 bri->get_sda = NULL;
532 }
533 }
534
535 return ret;
536}
537
538static void i2c_put_gpios_for_recovery(struct i2c_adapter *adap)
539{
540 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
541
542 if (bri->get_sda)
543 gpio_free(bri->sda_gpio);
544
545 gpio_free(bri->scl_gpio);
546}
547
548/*
549 * We are generating clock pulses. ndelay() determines durating of clk pulses.
550 * We will generate clock with rate 100 KHz and so duration of both clock levels
551 * is: delay in ns = (10^6 / 100) / 2
552 */
553#define RECOVERY_NDELAY 5000
554#define RECOVERY_CLK_CNT 9
555
556static int i2c_generic_recovery(struct i2c_adapter *adap)
557{
558 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
559 int i = 0, val = 1, ret = 0;
560
561 if (bri->prepare_recovery)
562 bri->prepare_recovery(bri);
563
564 /*
565 * By this time SCL is high, as we need to give 9 falling-rising edges
566 */
567 while (i++ < RECOVERY_CLK_CNT * 2) {
568 if (val) {
569 /* Break if SDA is high */
570 if (bri->get_sda && bri->get_sda(adap))
571 break;
572 /* SCL shouldn't be low here */
573 if (!bri->get_scl(adap)) {
574 dev_err(&adap->dev,
575 "SCL is stuck low, exit recovery\n");
576 ret = -EBUSY;
577 break;
578 }
579 }
580
581 val = !val;
582 bri->set_scl(adap, val);
583 ndelay(RECOVERY_NDELAY);
584 }
585
586 if (bri->unprepare_recovery)
587 bri->unprepare_recovery(bri);
588
589 return ret;
590}
591
592int i2c_generic_scl_recovery(struct i2c_adapter *adap)
593{
594 adap->bus_recovery_info->set_scl(adap, 1);
595 return i2c_generic_recovery(adap);
596}
597
598int i2c_generic_gpio_recovery(struct i2c_adapter *adap)
599{
600 int ret;
601
602 ret = i2c_get_gpios_for_recovery(adap);
603 if (ret)
604 return ret;
605
606 ret = i2c_generic_recovery(adap);
607 i2c_put_gpios_for_recovery(adap);
608
609 return ret;
610}
611
612int i2c_recover_bus(struct i2c_adapter *adap)
613{
614 if (!adap->bus_recovery_info)
615 return -EOPNOTSUPP;
616
617 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
618 return adap->bus_recovery_info->recover_bus(adap);
619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621static int i2c_device_probe(struct device *dev)
622{
Jean Delvare51298d12009-09-18 22:45:45 +0200623 struct i2c_client *client = i2c_verify_client(dev);
624 struct i2c_driver *driver;
Hans Verkuil50c33042008-03-12 14:15:00 +0100625 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200626
Jean Delvare51298d12009-09-18 22:45:45 +0200627 if (!client)
628 return 0;
629
630 driver = to_i2c_driver(dev->driver);
Jean Delvaree0457442008-07-14 22:38:30 +0200631 if (!driver->probe || !driver->id_table)
David Brownell7b4fbc52007-05-01 23:26:30 +0200632 return -ENODEV;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +0200633
Marc Pignatee354252008-08-28 08:33:22 +0200634 if (!device_can_wakeup(&client->dev))
635 device_init_wakeup(&client->dev,
636 client->flags & I2C_CLIENT_WAKE);
David Brownell7b4fbc52007-05-01 23:26:30 +0200637 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200638
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200639 status = of_clk_set_defaults(dev->of_node, false);
640 if (status < 0)
641 return status;
642
Ulf Hanssone09b0d42014-09-19 20:27:39 +0200643 status = dev_pm_domain_attach(&client->dev, true);
644 if (status != -EPROBE_DEFER) {
645 status = driver->probe(client, i2c_match_id(driver->id_table,
646 client));
647 if (status)
648 dev_pm_domain_detach(&client->dev, true);
649 }
Wolfram Sang72fa8182014-01-21 17:48:34 +0100650
Hans Verkuil50c33042008-03-12 14:15:00 +0100651 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654static int i2c_device_remove(struct device *dev)
655{
Jean Delvare51298d12009-09-18 22:45:45 +0200656 struct i2c_client *client = i2c_verify_client(dev);
David Brownella1d9e6e2007-05-01 23:26:30 +0200657 struct i2c_driver *driver;
Wolfram Sang72fa8182014-01-21 17:48:34 +0100658 int status = 0;
David Brownella1d9e6e2007-05-01 23:26:30 +0200659
Jean Delvare51298d12009-09-18 22:45:45 +0200660 if (!client || !dev->driver)
David Brownella1d9e6e2007-05-01 23:26:30 +0200661 return 0;
662
663 driver = to_i2c_driver(dev->driver);
664 if (driver->remove) {
665 dev_dbg(dev, "remove\n");
666 status = driver->remove(client);
David Brownella1d9e6e2007-05-01 23:26:30 +0200667 }
Wolfram Sang72fa8182014-01-21 17:48:34 +0100668
Laurent Pincharte4df3a02014-10-30 15:59:37 +0200669 if (dev->of_node)
670 irq_dispose_mapping(client->irq);
671
Ulf Hanssone09b0d42014-09-19 20:27:39 +0200672 dev_pm_domain_detach(&client->dev, true);
David Brownella1d9e6e2007-05-01 23:26:30 +0200673 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
David Brownellf37dd802007-02-13 22:09:00 +0100676static void i2c_device_shutdown(struct device *dev)
677{
Jean Delvare51298d12009-09-18 22:45:45 +0200678 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100679 struct i2c_driver *driver;
680
Jean Delvare51298d12009-09-18 22:45:45 +0200681 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100682 return;
683 driver = to_i2c_driver(dev->driver);
684 if (driver->shutdown)
Jean Delvare51298d12009-09-18 22:45:45 +0200685 driver->shutdown(client);
David Brownellf37dd802007-02-13 22:09:00 +0100686}
687
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200688#ifdef CONFIG_PM_SLEEP
689static int i2c_legacy_suspend(struct device *dev, pm_message_t mesg)
David Brownellf37dd802007-02-13 22:09:00 +0100690{
Jean Delvare51298d12009-09-18 22:45:45 +0200691 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100692 struct i2c_driver *driver;
693
Jean Delvare51298d12009-09-18 22:45:45 +0200694 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100695 return 0;
696 driver = to_i2c_driver(dev->driver);
697 if (!driver->suspend)
698 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200699 return driver->suspend(client, mesg);
David Brownellf37dd802007-02-13 22:09:00 +0100700}
701
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200702static int i2c_legacy_resume(struct device *dev)
David Brownellf37dd802007-02-13 22:09:00 +0100703{
Jean Delvare51298d12009-09-18 22:45:45 +0200704 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100705 struct i2c_driver *driver;
706
Jean Delvare51298d12009-09-18 22:45:45 +0200707 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100708 return 0;
709 driver = to_i2c_driver(dev->driver);
710 if (!driver->resume)
711 return 0;
Jean Delvare51298d12009-09-18 22:45:45 +0200712 return driver->resume(client);
David Brownellf37dd802007-02-13 22:09:00 +0100713}
714
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200715static int i2c_device_pm_suspend(struct device *dev)
716{
717 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
718
Mark Brownd529de22011-01-14 22:03:49 +0100719 if (pm)
720 return pm_generic_suspend(dev);
721 else
722 return i2c_legacy_suspend(dev, PMSG_SUSPEND);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200723}
724
725static int i2c_device_pm_resume(struct device *dev)
726{
727 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200728
729 if (pm)
Mark Brownd529de22011-01-14 22:03:49 +0100730 return pm_generic_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200731 else
Mark Brownd529de22011-01-14 22:03:49 +0100732 return i2c_legacy_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200733}
734
735static int i2c_device_pm_freeze(struct device *dev)
736{
737 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
738
Mark Brownd529de22011-01-14 22:03:49 +0100739 if (pm)
740 return pm_generic_freeze(dev);
741 else
742 return i2c_legacy_suspend(dev, PMSG_FREEZE);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200743}
744
745static int i2c_device_pm_thaw(struct device *dev)
746{
747 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
748
Mark Brownd529de22011-01-14 22:03:49 +0100749 if (pm)
750 return pm_generic_thaw(dev);
751 else
752 return i2c_legacy_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200753}
754
755static int i2c_device_pm_poweroff(struct device *dev)
756{
757 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
758
Mark Brownd529de22011-01-14 22:03:49 +0100759 if (pm)
760 return pm_generic_poweroff(dev);
761 else
762 return i2c_legacy_suspend(dev, PMSG_HIBERNATE);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200763}
764
765static int i2c_device_pm_restore(struct device *dev)
766{
767 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200768
769 if (pm)
Mark Brownd529de22011-01-14 22:03:49 +0100770 return pm_generic_restore(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200771 else
Mark Brownd529de22011-01-14 22:03:49 +0100772 return i2c_legacy_resume(dev);
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200773}
774#else /* !CONFIG_PM_SLEEP */
775#define i2c_device_pm_suspend NULL
776#define i2c_device_pm_resume NULL
777#define i2c_device_pm_freeze NULL
778#define i2c_device_pm_thaw NULL
779#define i2c_device_pm_poweroff NULL
780#define i2c_device_pm_restore NULL
781#endif /* !CONFIG_PM_SLEEP */
782
David Brownell9c1600e2007-05-01 23:26:31 +0200783static void i2c_client_dev_release(struct device *dev)
784{
785 kfree(to_i2c_client(dev));
786}
787
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100788static ssize_t
Jean Delvare4f8cf822009-09-18 22:45:46 +0200789show_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200790{
Jean Delvare4f8cf822009-09-18 22:45:46 +0200791 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
792 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200793}
794
Zhenwen Xu09b8ce02009-03-28 21:34:46 +0100795static ssize_t
796show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +0200797{
798 struct i2c_client *client = to_i2c_client(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800799 int len;
800
801 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
802 if (len != -ENODEV)
803 return len;
804
Jean Delvareeb8a7902008-05-18 20:49:41 +0200805 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200806}
807
Jean Delvare4f8cf822009-09-18 22:45:46 +0200808static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Jean Delvare51298d12009-09-18 22:45:45 +0200809static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
810
811static struct attribute *i2c_dev_attrs[] = {
812 &dev_attr_name.attr,
David Brownell7b4fbc52007-05-01 23:26:30 +0200813 /* modalias helps coldplug: modprobe $(cat .../modalias) */
Jean Delvare51298d12009-09-18 22:45:45 +0200814 &dev_attr_modalias.attr,
815 NULL
816};
817
818static struct attribute_group i2c_dev_attr_group = {
819 .attrs = i2c_dev_attrs,
820};
821
822static const struct attribute_group *i2c_dev_attr_groups[] = {
823 &i2c_dev_attr_group,
824 NULL
David Brownell7b4fbc52007-05-01 23:26:30 +0200825};
826
Tobias Klauser0b2c3682010-01-16 20:43:12 +0100827static const struct dev_pm_ops i2c_device_pm_ops = {
sonic zhang54067ee2009-12-14 21:17:30 +0100828 .suspend = i2c_device_pm_suspend,
829 .resume = i2c_device_pm_resume,
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200830 .freeze = i2c_device_pm_freeze,
831 .thaw = i2c_device_pm_thaw,
832 .poweroff = i2c_device_pm_poweroff,
833 .restore = i2c_device_pm_restore,
834 SET_RUNTIME_PM_OPS(
835 pm_generic_runtime_suspend,
836 pm_generic_runtime_resume,
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200837 NULL
Rafael J. Wysocki2f60ba72010-05-10 23:09:30 +0200838 )
sonic zhang54067ee2009-12-14 21:17:30 +0100839};
840
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200841struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +0100842 .name = "i2c",
843 .match = i2c_device_match,
844 .probe = i2c_device_probe,
845 .remove = i2c_device_remove,
846 .shutdown = i2c_device_shutdown,
sonic zhang54067ee2009-12-14 21:17:30 +0100847 .pm = &i2c_device_pm_ops,
Russell Kingb864c7d2006-01-05 14:37:50 +0000848};
Jon Smirle9ca9eb2008-07-14 22:38:35 +0200849EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +0000850
Jean Delvare51298d12009-09-18 22:45:45 +0200851static struct device_type i2c_client_type = {
852 .groups = i2c_dev_attr_groups,
853 .uevent = i2c_device_uevent,
854 .release = i2c_client_dev_release,
855};
856
David Brownell9b766b82008-01-27 18:14:51 +0100857
858/**
859 * i2c_verify_client - return parameter as i2c_client, or NULL
860 * @dev: device, probably from some driver model iterator
861 *
862 * When traversing the driver model tree, perhaps using driver model
863 * iterators like @device_for_each_child(), you can't assume very much
864 * about the nodes you find. Use this function to avoid oopses caused
865 * by wrongly treating some non-I2C device as an i2c_client.
866 */
867struct i2c_client *i2c_verify_client(struct device *dev)
868{
Jean Delvare51298d12009-09-18 22:45:45 +0200869 return (dev->type == &i2c_client_type)
David Brownell9b766b82008-01-27 18:14:51 +0100870 ? to_i2c_client(dev)
871 : NULL;
872}
873EXPORT_SYMBOL(i2c_verify_client);
874
875
Jean Delvare3a89db52010-06-03 11:33:52 +0200876/* This is a permissive address validity check, I2C address map constraints
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300877 * are purposely not enforced, except for the general call address. */
Jean Delvare3a89db52010-06-03 11:33:52 +0200878static int i2c_check_client_addr_validity(const struct i2c_client *client)
879{
880 if (client->flags & I2C_CLIENT_TEN) {
881 /* 10-bit address, all values are valid */
882 if (client->addr > 0x3ff)
883 return -EINVAL;
884 } else {
885 /* 7-bit address, reject the general call address */
886 if (client->addr == 0x00 || client->addr > 0x7f)
887 return -EINVAL;
888 }
889 return 0;
890}
891
Jean Delvare656b8762010-06-03 11:33:53 +0200892/* And this is a strict address validity check, used when probing. If a
893 * device uses a reserved address, then it shouldn't be probed. 7-bit
894 * addressing is assumed, 10-bit address devices are rare and should be
895 * explicitly enumerated. */
896static int i2c_check_addr_validity(unsigned short addr)
897{
898 /*
899 * Reserved addresses per I2C specification:
900 * 0x00 General call address / START byte
901 * 0x01 CBUS address
902 * 0x02 Reserved for different bus format
903 * 0x03 Reserved for future purposes
904 * 0x04-0x07 Hs-mode master code
905 * 0x78-0x7b 10-bit slave addressing
906 * 0x7c-0x7f Reserved for future purposes
907 */
908 if (addr < 0x08 || addr > 0x77)
909 return -EINVAL;
910 return 0;
911}
912
Jean Delvare3b5f7942010-06-03 11:33:55 +0200913static int __i2c_check_addr_busy(struct device *dev, void *addrp)
914{
915 struct i2c_client *client = i2c_verify_client(dev);
916 int addr = *(int *)addrp;
917
918 if (client && client->addr == addr)
919 return -EBUSY;
920 return 0;
921}
922
Michael Lawnick08263742010-08-11 18:21:02 +0200923/* walk up mux tree */
924static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
925{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200926 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +0200927 int result;
928
929 result = device_for_each_child(&adapter->dev, &addr,
930 __i2c_check_addr_busy);
931
Jean Delvare97cc4d42010-10-24 18:16:57 +0200932 if (!result && parent)
933 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +0200934
935 return result;
936}
937
938/* recurse down mux tree */
939static int i2c_check_mux_children(struct device *dev, void *addrp)
940{
941 int result;
942
943 if (dev->type == &i2c_adapter_type)
944 result = device_for_each_child(dev, addrp,
945 i2c_check_mux_children);
946 else
947 result = __i2c_check_addr_busy(dev, addrp);
948
949 return result;
950}
951
Jean Delvare3b5f7942010-06-03 11:33:55 +0200952static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
953{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200954 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +0200955 int result = 0;
956
Jean Delvare97cc4d42010-10-24 18:16:57 +0200957 if (parent)
958 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +0200959
960 if (!result)
961 result = device_for_each_child(&adapter->dev, &addr,
962 i2c_check_mux_children);
963
964 return result;
Jean Delvare3b5f7942010-06-03 11:33:55 +0200965}
966
David Brownell9c1600e2007-05-01 23:26:31 +0200967/**
Jean Delvarefe61e072010-08-11 18:20:58 +0200968 * i2c_lock_adapter - Get exclusive access to an I2C bus segment
969 * @adapter: Target I2C bus segment
970 */
971void i2c_lock_adapter(struct i2c_adapter *adapter)
972{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200973 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
974
975 if (parent)
976 i2c_lock_adapter(parent);
Michael Lawnick08263742010-08-11 18:21:02 +0200977 else
978 rt_mutex_lock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200979}
980EXPORT_SYMBOL_GPL(i2c_lock_adapter);
981
982/**
983 * i2c_trylock_adapter - Try to get exclusive access to an I2C bus segment
984 * @adapter: Target I2C bus segment
985 */
986static int i2c_trylock_adapter(struct i2c_adapter *adapter)
987{
Jean Delvare97cc4d42010-10-24 18:16:57 +0200988 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
989
990 if (parent)
991 return i2c_trylock_adapter(parent);
Michael Lawnick08263742010-08-11 18:21:02 +0200992 else
993 return rt_mutex_trylock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +0200994}
995
996/**
997 * i2c_unlock_adapter - Release exclusive access to an I2C bus segment
998 * @adapter: Target I2C bus segment
999 */
1000void i2c_unlock_adapter(struct i2c_adapter *adapter)
1001{
Jean Delvare97cc4d42010-10-24 18:16:57 +02001002 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
1003
1004 if (parent)
1005 i2c_unlock_adapter(parent);
Michael Lawnick08263742010-08-11 18:21:02 +02001006 else
1007 rt_mutex_unlock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +02001008}
1009EXPORT_SYMBOL_GPL(i2c_unlock_adapter);
1010
Jarkko Nikula70762ab2013-11-14 14:03:52 +02001011static void i2c_dev_set_name(struct i2c_adapter *adap,
1012 struct i2c_client *client)
1013{
1014 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
1015
1016 if (adev) {
1017 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
1018 return;
1019 }
1020
1021 /* For 10-bit clients, add an arbitrary offset to avoid collisions */
1022 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
1023 client->addr | ((client->flags & I2C_CLIENT_TEN)
1024 ? 0xa000 : 0));
1025}
1026
Jean Delvarefe61e072010-08-11 18:20:58 +02001027/**
Jean Delvaref8a227e2009-06-19 16:58:18 +02001028 * i2c_new_device - instantiate an i2c device
David Brownell9c1600e2007-05-01 23:26:31 +02001029 * @adap: the adapter managing the device
1030 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +02001031 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +02001032 *
Jean Delvaref8a227e2009-06-19 16:58:18 +02001033 * Create an i2c device. Binding is handled through driver model
1034 * probe()/remove() methods. A driver may be bound to this device when we
1035 * return from this function, or any later moment (e.g. maybe hotplugging will
1036 * load the driver module). This call is not appropriate for use by mainboard
1037 * initialization logic, which usually runs during an arch_initcall() long
1038 * before any i2c_adapter could exist.
David Brownell9c1600e2007-05-01 23:26:31 +02001039 *
1040 * This returns the new i2c client, which may be saved for later use with
1041 * i2c_unregister_device(); or NULL to indicate an error.
1042 */
1043struct i2c_client *
1044i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
1045{
1046 struct i2c_client *client;
1047 int status;
1048
1049 client = kzalloc(sizeof *client, GFP_KERNEL);
1050 if (!client)
1051 return NULL;
1052
1053 client->adapter = adap;
1054
1055 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +02001056
Anton Vorontsov11f1f2a2008-10-22 20:21:33 +02001057 if (info->archdata)
1058 client->dev.archdata = *info->archdata;
1059
Marc Pignatee354252008-08-28 08:33:22 +02001060 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +02001061 client->addr = info->addr;
1062 client->irq = info->irq;
1063
David Brownell9c1600e2007-05-01 23:26:31 +02001064 strlcpy(client->name, info->type, sizeof(client->name));
1065
Jean Delvare3a89db52010-06-03 11:33:52 +02001066 /* Check for address validity */
1067 status = i2c_check_client_addr_validity(client);
1068 if (status) {
1069 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
1070 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
1071 goto out_err_silent;
1072 }
1073
Jean Delvaref8a227e2009-06-19 16:58:18 +02001074 /* Check for address business */
Jean Delvare3b5f7942010-06-03 11:33:55 +02001075 status = i2c_check_addr_busy(adap, client->addr);
Jean Delvaref8a227e2009-06-19 16:58:18 +02001076 if (status)
1077 goto out_err;
1078
1079 client->dev.parent = &client->adapter->dev;
1080 client->dev.bus = &i2c_bus_type;
Jean Delvare51298d12009-09-18 22:45:45 +02001081 client->dev.type = &i2c_client_type;
Grant Likelyd12d42f2010-04-13 16:12:28 -07001082 client->dev.of_node = info->of_node;
Rafael J. Wysocki7b199812013-11-11 22:41:56 +01001083 ACPI_COMPANION_SET(&client->dev, info->acpi_node.companion);
Jean Delvaref8a227e2009-06-19 16:58:18 +02001084
Jarkko Nikula70762ab2013-11-14 14:03:52 +02001085 i2c_dev_set_name(adap, client);
Jean Delvaref8a227e2009-06-19 16:58:18 +02001086 status = device_register(&client->dev);
1087 if (status)
1088 goto out_err;
1089
Jean Delvaref8a227e2009-06-19 16:58:18 +02001090 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
1091 client->name, dev_name(&client->dev));
1092
David Brownell9c1600e2007-05-01 23:26:31 +02001093 return client;
Jean Delvaref8a227e2009-06-19 16:58:18 +02001094
1095out_err:
1096 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
1097 "(%d)\n", client->name, client->addr, status);
Jean Delvare3a89db52010-06-03 11:33:52 +02001098out_err_silent:
Jean Delvaref8a227e2009-06-19 16:58:18 +02001099 kfree(client);
1100 return NULL;
David Brownell9c1600e2007-05-01 23:26:31 +02001101}
1102EXPORT_SYMBOL_GPL(i2c_new_device);
1103
1104
1105/**
1106 * i2c_unregister_device - reverse effect of i2c_new_device()
1107 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +02001108 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +02001109 */
1110void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +02001111{
David Brownella1d9e6e2007-05-01 23:26:30 +02001112 device_unregister(&client->dev);
1113}
David Brownell9c1600e2007-05-01 23:26:31 +02001114EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +02001115
1116
Jean Delvare60b129d2008-05-11 20:37:06 +02001117static const struct i2c_device_id dummy_id[] = {
1118 { "dummy", 0 },
1119 { },
1120};
1121
Jean Delvared2653e92008-04-29 23:11:39 +02001122static int dummy_probe(struct i2c_client *client,
1123 const struct i2c_device_id *id)
1124{
1125 return 0;
1126}
1127
1128static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +01001129{
1130 return 0;
1131}
1132
1133static struct i2c_driver dummy_driver = {
1134 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +02001135 .probe = dummy_probe,
1136 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +02001137 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +01001138};
1139
1140/**
1141 * i2c_new_dummy - return a new i2c device bound to a dummy driver
1142 * @adapter: the adapter managing the device
1143 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +01001144 * Context: can sleep
1145 *
1146 * This returns an I2C client bound to the "dummy" driver, intended for use
1147 * with devices that consume multiple addresses. Examples of such chips
1148 * include various EEPROMS (like 24c04 and 24c08 models).
1149 *
1150 * These dummy devices have two main uses. First, most I2C and SMBus calls
1151 * except i2c_transfer() need a client handle; the dummy will be that handle.
1152 * And second, this prevents the specified address from being bound to a
1153 * different driver.
1154 *
1155 * This returns the new i2c client, which should be saved for later use with
1156 * i2c_unregister_device(); or NULL to indicate an error.
1157 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001158struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +01001159{
1160 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +02001161 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +01001162 };
1163
David Brownelle9f13732008-01-27 18:14:52 +01001164 return i2c_new_device(adapter, &info);
1165}
1166EXPORT_SYMBOL_GPL(i2c_new_dummy);
1167
David Brownellf37dd802007-02-13 22:09:00 +01001168/* ------------------------------------------------------------------------- */
1169
David Brownell16ffadf2007-05-01 23:26:28 +02001170/* I2C bus adapters -- one roots each I2C or SMBUS segment */
1171
Adrian Bunk83eaaed2007-10-13 23:56:30 +02001172static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
David Brownellef2c83212007-05-01 23:26:28 +02001174 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 complete(&adap->dev_released);
1176}
1177
Jean Delvare99cd8e22009-06-19 16:58:20 +02001178/*
Jean Delvare390946b2012-09-10 10:14:02 +02001179 * This function is only needed for mutex_lock_nested, so it is never
1180 * called unless locking correctness checking is enabled. Thus we
1181 * make it inline to avoid a compiler warning. That's what gcc ends up
1182 * doing anyway.
1183 */
1184static inline unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
1185{
1186 unsigned int depth = 0;
1187
1188 while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
1189 depth++;
1190
1191 return depth;
1192}
1193
1194/*
Jean Delvare99cd8e22009-06-19 16:58:20 +02001195 * Let users instantiate I2C devices through sysfs. This can be used when
1196 * platform initialization code doesn't contain the proper data for
1197 * whatever reason. Also useful for drivers that do device detection and
1198 * detection fails, either because the device uses an unexpected address,
1199 * or this is a compatible device with different ID register values.
1200 *
1201 * Parameter checking may look overzealous, but we really don't want
1202 * the user to provide incorrect parameters.
1203 */
1204static ssize_t
1205i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
1206 const char *buf, size_t count)
1207{
1208 struct i2c_adapter *adap = to_i2c_adapter(dev);
1209 struct i2c_board_info info;
1210 struct i2c_client *client;
1211 char *blank, end;
1212 int res;
1213
Jean Delvare99cd8e22009-06-19 16:58:20 +02001214 memset(&info, 0, sizeof(struct i2c_board_info));
1215
1216 blank = strchr(buf, ' ');
1217 if (!blank) {
1218 dev_err(dev, "%s: Missing parameters\n", "new_device");
1219 return -EINVAL;
1220 }
1221 if (blank - buf > I2C_NAME_SIZE - 1) {
1222 dev_err(dev, "%s: Invalid device name\n", "new_device");
1223 return -EINVAL;
1224 }
1225 memcpy(info.type, buf, blank - buf);
1226
1227 /* Parse remaining parameters, reject extra parameters */
1228 res = sscanf(++blank, "%hi%c", &info.addr, &end);
1229 if (res < 1) {
1230 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
1231 return -EINVAL;
1232 }
1233 if (res > 1 && end != '\n') {
1234 dev_err(dev, "%s: Extra parameters\n", "new_device");
1235 return -EINVAL;
1236 }
1237
Jean Delvare99cd8e22009-06-19 16:58:20 +02001238 client = i2c_new_device(adap, &info);
1239 if (!client)
Jean Delvare3a89db52010-06-03 11:33:52 +02001240 return -EINVAL;
Jean Delvare99cd8e22009-06-19 16:58:20 +02001241
1242 /* Keep track of the added device */
Jean Delvaredafc50d2010-08-11 18:21:01 +02001243 mutex_lock(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001244 list_add_tail(&client->detected, &adap->userspace_clients);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001245 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001246 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1247 info.type, info.addr);
1248
1249 return count;
1250}
1251
1252/*
1253 * And of course let the users delete the devices they instantiated, if
1254 * they got it wrong. This interface can only be used to delete devices
1255 * instantiated by i2c_sysfs_new_device above. This guarantees that we
1256 * don't delete devices to which some kernel code still has references.
1257 *
1258 * Parameter checking may look overzealous, but we really don't want
1259 * the user to delete the wrong device.
1260 */
1261static ssize_t
1262i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
1263 const char *buf, size_t count)
1264{
1265 struct i2c_adapter *adap = to_i2c_adapter(dev);
1266 struct i2c_client *client, *next;
1267 unsigned short addr;
1268 char end;
1269 int res;
1270
1271 /* Parse parameters, reject extra parameters */
1272 res = sscanf(buf, "%hi%c", &addr, &end);
1273 if (res < 1) {
1274 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
1275 return -EINVAL;
1276 }
1277 if (res > 1 && end != '\n') {
1278 dev_err(dev, "%s: Extra parameters\n", "delete_device");
1279 return -EINVAL;
1280 }
1281
1282 /* Make sure the device was added through sysfs */
1283 res = -ENOENT;
Jean Delvare390946b2012-09-10 10:14:02 +02001284 mutex_lock_nested(&adap->userspace_clients_lock,
1285 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02001286 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1287 detected) {
1288 if (client->addr == addr) {
Jean Delvare99cd8e22009-06-19 16:58:20 +02001289 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
1290 "delete_device", client->name, client->addr);
1291
1292 list_del(&client->detected);
1293 i2c_unregister_device(client);
1294 res = count;
1295 break;
1296 }
1297 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02001298 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001299
1300 if (res < 0)
1301 dev_err(dev, "%s: Can't find device in list\n",
1302 "delete_device");
1303 return res;
1304}
1305
Jean Delvare4f8cf822009-09-18 22:45:46 +02001306static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
Alexander Sverdline9b526f2013-05-17 14:56:35 +02001307static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
1308 i2c_sysfs_delete_device);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001309
1310static struct attribute *i2c_adapter_attrs[] = {
1311 &dev_attr_name.attr,
1312 &dev_attr_new_device.attr,
1313 &dev_attr_delete_device.attr,
1314 NULL
David Brownell16ffadf2007-05-01 23:26:28 +02001315};
1316
Jean Delvare4f8cf822009-09-18 22:45:46 +02001317static struct attribute_group i2c_adapter_attr_group = {
1318 .attrs = i2c_adapter_attrs,
1319};
1320
1321static const struct attribute_group *i2c_adapter_attr_groups[] = {
1322 &i2c_adapter_attr_group,
1323 NULL
1324};
1325
Michael Lawnick08263742010-08-11 18:21:02 +02001326struct device_type i2c_adapter_type = {
Jean Delvare4f8cf822009-09-18 22:45:46 +02001327 .groups = i2c_adapter_attr_groups,
1328 .release = i2c_adapter_dev_release,
David Brownell16ffadf2007-05-01 23:26:28 +02001329};
Michael Lawnick08263742010-08-11 18:21:02 +02001330EXPORT_SYMBOL_GPL(i2c_adapter_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Stephen Warren643dd092012-04-17 12:43:33 -06001332/**
1333 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1334 * @dev: device, probably from some driver model iterator
1335 *
1336 * When traversing the driver model tree, perhaps using driver model
1337 * iterators like @device_for_each_child(), you can't assume very much
1338 * about the nodes you find. Use this function to avoid oopses caused
1339 * by wrongly treating some non-I2C device as an i2c_adapter.
1340 */
1341struct i2c_adapter *i2c_verify_adapter(struct device *dev)
1342{
1343 return (dev->type == &i2c_adapter_type)
1344 ? to_i2c_adapter(dev)
1345 : NULL;
1346}
1347EXPORT_SYMBOL(i2c_verify_adapter);
1348
Jean Delvare2bb50952009-09-18 22:45:46 +02001349#ifdef CONFIG_I2C_COMPAT
1350static struct class_compat *i2c_adapter_compat_class;
1351#endif
1352
David Brownell9c1600e2007-05-01 23:26:31 +02001353static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
1354{
1355 struct i2c_devinfo *devinfo;
1356
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +02001357 down_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +02001358 list_for_each_entry(devinfo, &__i2c_board_list, list) {
1359 if (devinfo->busnum == adapter->nr
1360 && !i2c_new_device(adapter,
1361 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001362 dev_err(&adapter->dev,
1363 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +02001364 devinfo->board_info.addr);
1365 }
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +02001366 up_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +02001367}
1368
Wolfram Sang687b81d2013-07-11 12:56:15 +01001369/* OF support code */
1370
1371#if IS_ENABLED(CONFIG_OF)
1372static void of_i2c_register_devices(struct i2c_adapter *adap)
1373{
1374 void *result;
1375 struct device_node *node;
1376
1377 /* Only register child devices if the adapter has a node pointer set */
1378 if (!adap->dev.of_node)
1379 return;
1380
1381 dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
1382
1383 for_each_available_child_of_node(adap->dev.of_node, node) {
1384 struct i2c_board_info info = {};
1385 struct dev_archdata dev_ad = {};
1386 const __be32 *addr;
1387 int len;
1388
1389 dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
1390
1391 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
1392 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
1393 node->full_name);
1394 continue;
1395 }
1396
1397 addr = of_get_property(node, "reg", &len);
1398 if (!addr || (len < sizeof(int))) {
1399 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
1400 node->full_name);
1401 continue;
1402 }
1403
1404 info.addr = be32_to_cpup(addr);
1405 if (info.addr > (1 << 10) - 1) {
1406 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
1407 info.addr, node->full_name);
1408 continue;
1409 }
1410
1411 info.irq = irq_of_parse_and_map(node, 0);
1412 info.of_node = of_node_get(node);
1413 info.archdata = &dev_ad;
1414
1415 if (of_get_property(node, "wakeup-source", NULL))
1416 info.flags |= I2C_CLIENT_WAKE;
1417
1418 request_module("%s%s", I2C_MODULE_PREFIX, info.type);
1419
1420 result = i2c_new_device(adap, &info);
1421 if (result == NULL) {
1422 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
1423 node->full_name);
1424 of_node_put(node);
1425 irq_dispose_mapping(info.irq);
1426 continue;
1427 }
1428 }
1429}
1430
1431static int of_dev_node_match(struct device *dev, void *data)
1432{
1433 return dev->of_node == data;
1434}
1435
1436/* must call put_device() when done with returned i2c_client device */
1437struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
1438{
1439 struct device *dev;
1440
1441 dev = bus_find_device(&i2c_bus_type, NULL, node,
1442 of_dev_node_match);
1443 if (!dev)
1444 return NULL;
1445
1446 return i2c_verify_client(dev);
1447}
1448EXPORT_SYMBOL(of_find_i2c_device_by_node);
1449
1450/* must call put_device() when done with returned i2c_adapter device */
1451struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
1452{
1453 struct device *dev;
1454
1455 dev = bus_find_device(&i2c_bus_type, NULL, node,
1456 of_dev_node_match);
1457 if (!dev)
1458 return NULL;
1459
1460 return i2c_verify_adapter(dev);
1461}
1462EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
1463#else
1464static void of_i2c_register_devices(struct i2c_adapter *adap) { }
1465#endif /* CONFIG_OF */
1466
Jean Delvare69b00892009-12-06 17:06:27 +01001467static int i2c_do_add_adapter(struct i2c_driver *driver,
1468 struct i2c_adapter *adap)
Jean Delvare026526f2008-01-27 18:14:49 +01001469{
Jean Delvare4735c982008-07-14 22:38:36 +02001470 /* Detect supported devices on that bus, and instantiate them */
1471 i2c_detect(adap, driver);
1472
1473 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +01001474 if (driver->attach_adapter) {
Jean Delvarea920ff42011-04-17 10:20:19 +02001475 dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
1476 driver->driver.name);
Jean Delvarefe6fc252011-03-20 14:50:53 +01001477 dev_warn(&adap->dev, "Please use another way to instantiate "
1478 "your i2c_client\n");
Jean Delvare026526f2008-01-27 18:14:49 +01001479 /* We ignore the return code; if it fails, too bad */
1480 driver->attach_adapter(adap);
1481 }
1482 return 0;
1483}
1484
Jean Delvare69b00892009-12-06 17:06:27 +01001485static int __process_new_adapter(struct device_driver *d, void *data)
1486{
1487 return i2c_do_add_adapter(to_i2c_driver(d), data);
1488}
1489
David Brownell6e13e642007-05-01 23:26:31 +02001490static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Jean Delvared6703282010-08-11 18:20:59 +02001492 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
David Brownell1d0b19c2008-10-14 17:30:05 +02001494 /* Can't register until after driver model init */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001495 if (unlikely(WARN_ON(!i2c_bus_type.p))) {
1496 res = -EAGAIN;
1497 goto out_list;
1498 }
David Brownell1d0b19c2008-10-14 17:30:05 +02001499
Jean Delvare2236baa2010-11-15 22:40:38 +01001500 /* Sanity checks */
1501 if (unlikely(adap->name[0] == '\0')) {
1502 pr_err("i2c-core: Attempt to register an adapter with "
1503 "no name!\n");
1504 return -EINVAL;
1505 }
1506 if (unlikely(!adap->algo)) {
1507 pr_err("i2c-core: Attempt to register adapter '%s' with "
1508 "no algo!\n", adap->name);
1509 return -EINVAL;
1510 }
1511
Mika Kuoppala194684e2009-12-06 17:06:22 +01001512 rt_mutex_init(&adap->bus_lock);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001513 mutex_init(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001514 INIT_LIST_HEAD(&adap->userspace_clients);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Jean Delvare8fcfef62009-03-28 21:34:43 +01001516 /* Set default timeout to 1 second if not already set */
1517 if (adap->timeout == 0)
1518 adap->timeout = HZ;
1519
Kay Sievers27d9c182009-01-07 14:29:16 +01001520 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001521 adap->dev.bus = &i2c_bus_type;
1522 adap->dev.type = &i2c_adapter_type;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001523 res = device_register(&adap->dev);
1524 if (res)
1525 goto out_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Jean Delvareb6d7b3d2005-07-31 19:02:53 +02001527 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1528
Jean Delvare2bb50952009-09-18 22:45:46 +02001529#ifdef CONFIG_I2C_COMPAT
1530 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1531 adap->dev.parent);
1532 if (res)
1533 dev_warn(&adap->dev,
1534 "Failed to create compatibility class link\n");
1535#endif
1536
Viresh Kumar5f9296b2012-02-28 18:26:31 +05301537 /* bus recovery specific initialization */
1538 if (adap->bus_recovery_info) {
1539 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
1540
1541 if (!bri->recover_bus) {
1542 dev_err(&adap->dev, "No recover_bus() found, not using recovery\n");
1543 adap->bus_recovery_info = NULL;
1544 goto exit_recovery;
1545 }
1546
1547 /* Generic GPIO recovery */
1548 if (bri->recover_bus == i2c_generic_gpio_recovery) {
1549 if (!gpio_is_valid(bri->scl_gpio)) {
1550 dev_err(&adap->dev, "Invalid SCL gpio, not using recovery\n");
1551 adap->bus_recovery_info = NULL;
1552 goto exit_recovery;
1553 }
1554
1555 if (gpio_is_valid(bri->sda_gpio))
1556 bri->get_sda = get_sda_gpio_value;
1557 else
1558 bri->get_sda = NULL;
1559
1560 bri->get_scl = get_scl_gpio_value;
1561 bri->set_scl = set_scl_gpio_value;
1562 } else if (!bri->set_scl || !bri->get_scl) {
1563 /* Generic SCL recovery */
1564 dev_err(&adap->dev, "No {get|set}_gpio() found, not using recovery\n");
1565 adap->bus_recovery_info = NULL;
1566 }
1567 }
1568
1569exit_recovery:
Jean Delvare729d6dd2009-06-19 16:58:18 +02001570 /* create pre-declared device nodes */
Wolfram Sang687b81d2013-07-11 12:56:15 +01001571 of_i2c_register_devices(adap);
Mika Westerberg55e71ed2013-08-21 17:28:23 +03001572 acpi_i2c_register_devices(adap);
Lan Tianyu5d98e612014-05-20 20:59:23 +08001573 acpi_i2c_install_space_handler(adap);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001574
David Brownell6e13e642007-05-01 23:26:31 +02001575 if (adap->nr < __i2c_first_dynamic_bus_num)
1576 i2c_scan_static_board_info(adap);
1577
Jean Delvare4735c982008-07-14 22:38:36 +02001578 /* Notify drivers */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001579 mutex_lock(&core_lock);
Jean Delvared6703282010-08-11 18:20:59 +02001580 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
Jean Delvarecaada322008-01-27 18:14:49 +01001581 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001582
1583 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001584
Jean Delvareb119c6c2006-08-15 18:26:30 +02001585out_list:
Jean Delvare35fc37f2009-06-19 16:58:19 +02001586 mutex_lock(&core_lock);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001587 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001588 mutex_unlock(&core_lock);
1589 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
David Brownell6e13e642007-05-01 23:26:31 +02001592/**
Doug Andersonee5c2742013-03-01 08:57:31 -08001593 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1594 * @adap: the adapter to register (with adap->nr initialized)
1595 * Context: can sleep
1596 *
1597 * See i2c_add_numbered_adapter() for details.
1598 */
1599static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1600{
1601 int id;
1602
1603 mutex_lock(&core_lock);
1604 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1,
1605 GFP_KERNEL);
1606 mutex_unlock(&core_lock);
1607 if (id < 0)
1608 return id == -ENOSPC ? -EBUSY : id;
1609
1610 return i2c_register_adapter(adap);
1611}
1612
1613/**
David Brownell6e13e642007-05-01 23:26:31 +02001614 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1615 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +02001616 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001617 *
1618 * This routine is used to declare an I2C adapter when its bus number
Doug Andersonee5c2742013-03-01 08:57:31 -08001619 * doesn't matter or when its bus number is specified by an dt alias.
1620 * Examples of bases when the bus number doesn't matter: I2C adapters
1621 * dynamically added by USB links or PCI plugin cards.
David Brownell6e13e642007-05-01 23:26:31 +02001622 *
1623 * When this returns zero, a new bus number was allocated and stored
1624 * in adap->nr, and the specified adapter became available for clients.
1625 * Otherwise, a negative errno value is returned.
1626 */
1627int i2c_add_adapter(struct i2c_adapter *adapter)
1628{
Doug Andersonee5c2742013-03-01 08:57:31 -08001629 struct device *dev = &adapter->dev;
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001630 int id;
David Brownell6e13e642007-05-01 23:26:31 +02001631
Doug Andersonee5c2742013-03-01 08:57:31 -08001632 if (dev->of_node) {
1633 id = of_alias_get_id(dev->of_node, "i2c");
1634 if (id >= 0) {
1635 adapter->nr = id;
1636 return __i2c_add_numbered_adapter(adapter);
1637 }
1638 }
1639
Jean Delvarecaada322008-01-27 18:14:49 +01001640 mutex_lock(&core_lock);
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001641 id = idr_alloc(&i2c_adapter_idr, adapter,
1642 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
Jean Delvarecaada322008-01-27 18:14:49 +01001643 mutex_unlock(&core_lock);
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001644 if (id < 0)
1645 return id;
David Brownell6e13e642007-05-01 23:26:31 +02001646
1647 adapter->nr = id;
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001648
David Brownell6e13e642007-05-01 23:26:31 +02001649 return i2c_register_adapter(adapter);
1650}
1651EXPORT_SYMBOL(i2c_add_adapter);
1652
1653/**
1654 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1655 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +02001656 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001657 *
1658 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +01001659 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1660 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +02001661 * is used to properly configure I2C devices.
1662 *
Grant Likely488bf312011-07-25 17:49:43 +02001663 * If the requested bus number is set to -1, then this function will behave
1664 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1665 *
David Brownell6e13e642007-05-01 23:26:31 +02001666 * If no devices have pre-been declared for this bus, then be sure to
1667 * register the adapter before any dynamically allocated ones. Otherwise
1668 * the required bus ID may not be available.
1669 *
1670 * When this returns zero, the specified adapter became available for
1671 * clients using the bus number provided in adap->nr. Also, the table
1672 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1673 * and the appropriate driver model device nodes are created. Otherwise, a
1674 * negative errno value is returned.
1675 */
1676int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1677{
Grant Likely488bf312011-07-25 17:49:43 +02001678 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1679 return i2c_add_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001680
Doug Andersonee5c2742013-03-01 08:57:31 -08001681 return __i2c_add_numbered_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001682}
1683EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1684
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001685static void i2c_do_del_adapter(struct i2c_driver *driver,
Jean Delvare69b00892009-12-06 17:06:27 +01001686 struct i2c_adapter *adapter)
Jean Delvare026526f2008-01-27 18:14:49 +01001687{
Jean Delvare4735c982008-07-14 22:38:36 +02001688 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +01001689
Jean Delvareacec2112009-03-28 21:34:40 +01001690 /* Remove the devices we created ourselves as the result of hardware
1691 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +02001692 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1693 if (client->adapter == adapter) {
1694 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1695 client->name, client->addr);
1696 list_del(&client->detected);
1697 i2c_unregister_device(client);
1698 }
1699 }
Jean Delvare026526f2008-01-27 18:14:49 +01001700}
1701
Jean Delvaree549c2b2009-06-19 16:58:19 +02001702static int __unregister_client(struct device *dev, void *dummy)
1703{
1704 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvare5219bf82011-01-14 22:03:49 +01001705 if (client && strcmp(client->name, "dummy"))
1706 i2c_unregister_device(client);
1707 return 0;
1708}
1709
1710static int __unregister_dummy(struct device *dev, void *dummy)
1711{
1712 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvaree549c2b2009-06-19 16:58:19 +02001713 if (client)
1714 i2c_unregister_device(client);
1715 return 0;
1716}
1717
Jean Delvare69b00892009-12-06 17:06:27 +01001718static int __process_removed_adapter(struct device_driver *d, void *data)
1719{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001720 i2c_do_del_adapter(to_i2c_driver(d), data);
1721 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001722}
1723
David Brownelld64f73b2007-07-12 14:12:28 +02001724/**
1725 * i2c_del_adapter - unregister I2C adapter
1726 * @adap: the adapter being unregistered
1727 * Context: can sleep
1728 *
1729 * This unregisters an I2C adapter which was previously registered
1730 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1731 */
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001732void i2c_del_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
Jean Delvare35fc37f2009-06-19 16:58:19 +02001734 struct i2c_adapter *found;
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001735 struct i2c_client *client, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737 /* First make sure that this adapter was ever added */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001738 mutex_lock(&core_lock);
1739 found = idr_find(&i2c_adapter_idr, adap->nr);
1740 mutex_unlock(&core_lock);
1741 if (found != adap) {
Jean Delvareb6d7b3d2005-07-31 19:02:53 +02001742 pr_debug("i2c-core: attempting to delete unregistered "
1743 "adapter [%s]\n", adap->name);
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001744 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
1746
Lan Tianyu5d98e612014-05-20 20:59:23 +08001747 acpi_i2c_remove_space_handler(adap);
Jean Delvare026526f2008-01-27 18:14:49 +01001748 /* Tell drivers about this removal */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001749 mutex_lock(&core_lock);
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001750 bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +01001751 __process_removed_adapter);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001752 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001754 /* Remove devices instantiated from sysfs */
Jean Delvare390946b2012-09-10 10:14:02 +02001755 mutex_lock_nested(&adap->userspace_clients_lock,
1756 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02001757 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1758 detected) {
1759 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
1760 client->addr);
1761 list_del(&client->detected);
1762 i2c_unregister_device(client);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001763 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02001764 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001765
Jean Delvaree549c2b2009-06-19 16:58:19 +02001766 /* Detach any active clients. This can't fail, thus we do not
Jean Delvare5219bf82011-01-14 22:03:49 +01001767 * check the returned value. This is a two-pass process, because
1768 * we can't remove the dummy devices during the first pass: they
1769 * could have been instantiated by real devices wishing to clean
1770 * them up properly, so we give them a chance to do that first. */
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001771 device_for_each_child(&adap->dev, NULL, __unregister_client);
1772 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Jean Delvare2bb50952009-09-18 22:45:46 +02001774#ifdef CONFIG_I2C_COMPAT
1775 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
1776 adap->dev.parent);
1777#endif
1778
Thadeu Lima de Souza Cascardoc5567522010-01-16 20:43:13 +01001779 /* device name is gone after device_unregister */
1780 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 /* clean up the sysfs representation */
1783 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 /* wait for sysfs to drop all references */
1787 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
David Brownell6e13e642007-05-01 23:26:31 +02001789 /* free bus id */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001790 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001792 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Jean Delvarebd4bc3db2008-07-16 19:30:05 +02001794 /* Clear the device structure in case this adapter is ever going to be
1795 added again */
1796 memset(&adap->dev, 0, sizeof(adap->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
David Brownellc0564602007-05-01 23:26:31 +02001798EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
David Brownell7b4fbc52007-05-01 23:26:30 +02001800/* ------------------------------------------------------------------------- */
1801
Jean Delvare7ae31482011-03-20 14:50:52 +01001802int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))
1803{
1804 int res;
1805
1806 mutex_lock(&core_lock);
1807 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
1808 mutex_unlock(&core_lock);
1809
1810 return res;
1811}
1812EXPORT_SYMBOL_GPL(i2c_for_each_dev);
1813
Jean Delvare69b00892009-12-06 17:06:27 +01001814static int __process_new_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001815{
Jean Delvare4f8cf822009-09-18 22:45:46 +02001816 if (dev->type != &i2c_adapter_type)
1817 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001818 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +02001819}
1820
David Brownell7b4fbc52007-05-01 23:26:30 +02001821/*
1822 * An i2c_driver is used with one or more i2c_client (device) nodes to access
Jean Delvare729d6dd2009-06-19 16:58:18 +02001823 * i2c slave chips, on a bus instance associated with some i2c_adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 */
1825
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001826int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Jean Delvare7eebcb72006-02-05 23:28:21 +01001828 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
David Brownell1d0b19c2008-10-14 17:30:05 +02001830 /* Can't register until after driver model init */
1831 if (unlikely(WARN_ON(!i2c_bus_type.p)))
1832 return -EAGAIN;
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001835 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Jean Delvare729d6dd2009-06-19 16:58:18 +02001838 /* When registration returns, the driver core
David Brownell6e13e642007-05-01 23:26:31 +02001839 * will have called probe() for all matching-but-unbound devices.
1840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 res = driver_register(&driver->driver);
1842 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +01001843 return res;
David Brownell438d6c22006-12-10 21:21:31 +01001844
Mark Brownf4e8db32011-01-14 22:03:50 +01001845 /* Drivers should switch to dev_pm_ops instead. */
1846 if (driver->suspend)
1847 pr_warn("i2c-core: driver [%s] using legacy suspend method\n",
1848 driver->driver.name);
1849 if (driver->resume)
1850 pr_warn("i2c-core: driver [%s] using legacy resume method\n",
1851 driver->driver.name);
1852
Laurent Riffard35d8b2e2005-11-26 20:34:05 +01001853 pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Jean Delvare4735c982008-07-14 22:38:36 +02001855 INIT_LIST_HEAD(&driver->clients);
1856 /* Walk the adapters that are already present */
Jean Delvare7ae31482011-03-20 14:50:52 +01001857 i2c_for_each_dev(driver, __process_new_driver);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001858
Jean Delvare7eebcb72006-02-05 23:28:21 +01001859 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08001861EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Jean Delvare69b00892009-12-06 17:06:27 +01001863static int __process_removed_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02001864{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001865 if (dev->type == &i2c_adapter_type)
1866 i2c_do_del_adapter(data, to_i2c_adapter(dev));
1867 return 0;
Dave Young7f101a92008-07-14 22:38:19 +02001868}
1869
David Brownella1d9e6e2007-05-01 23:26:30 +02001870/**
1871 * i2c_del_driver - unregister I2C driver
1872 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +02001873 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +02001874 */
Jean Delvareb3e82092007-05-01 23:26:32 +02001875void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
Jean Delvare7ae31482011-03-20 14:50:52 +01001877 i2c_for_each_dev(driver, __process_removed_driver);
David Brownella1d9e6e2007-05-01 23:26:30 +02001878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 driver_unregister(&driver->driver);
Laurent Riffard35d8b2e2005-11-26 20:34:05 +01001880 pr_debug("i2c-core: driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
David Brownellc0564602007-05-01 23:26:31 +02001882EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
David Brownell7b4fbc52007-05-01 23:26:30 +02001884/* ------------------------------------------------------------------------- */
1885
Jean Delvaree48d3312008-01-27 18:14:48 +01001886/**
1887 * i2c_use_client - increments the reference count of the i2c client structure
1888 * @client: the client being referenced
1889 *
1890 * Each live reference to a client should be refcounted. The driver model does
1891 * that automatically as part of driver binding, so that most drivers don't
1892 * need to do this explicitly: they hold a reference until they're unbound
1893 * from the device.
1894 *
1895 * A pointer to the client with the incremented reference counter is returned.
1896 */
1897struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
David Brownell6ea438e2008-07-14 22:38:24 +02001899 if (client && get_device(&client->dev))
1900 return client;
1901 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
David Brownellc0564602007-05-01 23:26:31 +02001903EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Jean Delvaree48d3312008-01-27 18:14:48 +01001905/**
1906 * i2c_release_client - release a use of the i2c client structure
1907 * @client: the client being no longer referenced
1908 *
1909 * Must be called when a user of a client is finished with it.
1910 */
1911void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
David Brownell6ea438e2008-07-14 22:38:24 +02001913 if (client)
1914 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
David Brownellc0564602007-05-01 23:26:31 +02001916EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
David Brownell9b766b82008-01-27 18:14:51 +01001918struct i2c_cmd_arg {
1919 unsigned cmd;
1920 void *arg;
1921};
1922
1923static int i2c_cmd(struct device *dev, void *_arg)
1924{
1925 struct i2c_client *client = i2c_verify_client(dev);
1926 struct i2c_cmd_arg *arg = _arg;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02001927 struct i2c_driver *driver;
David Brownell9b766b82008-01-27 18:14:51 +01001928
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02001929 if (!client || !client->dev.driver)
1930 return 0;
1931
1932 driver = to_i2c_driver(client->dev.driver);
1933 if (driver->command)
1934 driver->command(client, arg->cmd, arg->arg);
David Brownell9b766b82008-01-27 18:14:51 +01001935 return 0;
1936}
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
1939{
David Brownell9b766b82008-01-27 18:14:51 +01001940 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
David Brownell9b766b82008-01-27 18:14:51 +01001942 cmd_arg.cmd = cmd;
1943 cmd_arg.arg = arg;
1944 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
David Brownellc0564602007-05-01 23:26:31 +02001946EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948static int __init i2c_init(void)
1949{
1950 int retval;
1951
1952 retval = bus_register(&i2c_bus_type);
1953 if (retval)
1954 return retval;
Jean Delvare2bb50952009-09-18 22:45:46 +02001955#ifdef CONFIG_I2C_COMPAT
1956 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
1957 if (!i2c_adapter_compat_class) {
1958 retval = -ENOMEM;
1959 goto bus_err;
1960 }
1961#endif
David Brownelle9f13732008-01-27 18:14:52 +01001962 retval = i2c_add_driver(&dummy_driver);
1963 if (retval)
Jean Delvare2bb50952009-09-18 22:45:46 +02001964 goto class_err;
David Brownelle9f13732008-01-27 18:14:52 +01001965 return 0;
1966
Jean Delvare2bb50952009-09-18 22:45:46 +02001967class_err:
1968#ifdef CONFIG_I2C_COMPAT
1969 class_compat_unregister(i2c_adapter_compat_class);
David Brownelle9f13732008-01-27 18:14:52 +01001970bus_err:
Jean Delvare2bb50952009-09-18 22:45:46 +02001971#endif
David Brownelle9f13732008-01-27 18:14:52 +01001972 bus_unregister(&i2c_bus_type);
1973 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
1976static void __exit i2c_exit(void)
1977{
David Brownelle9f13732008-01-27 18:14:52 +01001978 i2c_del_driver(&dummy_driver);
Jean Delvare2bb50952009-09-18 22:45:46 +02001979#ifdef CONFIG_I2C_COMPAT
1980 class_compat_unregister(i2c_adapter_compat_class);
1981#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 bus_unregister(&i2c_bus_type);
David Howellsd9a83d62014-03-06 13:35:59 +00001983 tracepoint_synchronize_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
David Brownella10f9e72008-10-14 17:30:06 +02001986/* We must initialize early, because some subsystems register i2c drivers
1987 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1988 */
1989postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990module_exit(i2c_exit);
1991
1992/* ----------------------------------------------------
1993 * the functional interface to the i2c busses.
1994 * ----------------------------------------------------
1995 */
1996
David Brownella1cdeda2008-07-14 22:38:24 +02001997/**
Jean Delvareb37d2a32012-06-29 07:47:19 -03001998 * __i2c_transfer - unlocked flavor of i2c_transfer
1999 * @adap: Handle to I2C bus
2000 * @msgs: One or more messages to execute before STOP is issued to
2001 * terminate the operation; each message begins with a START.
2002 * @num: Number of messages to be executed.
2003 *
2004 * Returns negative errno, else the number of messages executed.
2005 *
2006 * Adapter lock must be held when calling this function. No debug logging
2007 * takes place. adap->algo->master_xfer existence isn't checked.
2008 */
2009int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2010{
2011 unsigned long orig_jiffies;
2012 int ret, try;
2013
David Howellsd9a83d62014-03-06 13:35:59 +00002014 /* i2c_trace_msg gets enabled when tracepoint i2c_transfer gets
2015 * enabled. This is an efficient way of keeping the for-loop from
2016 * being executed when not needed.
2017 */
2018 if (static_key_false(&i2c_trace_msg)) {
2019 int i;
2020 for (i = 0; i < num; i++)
2021 if (msgs[i].flags & I2C_M_RD)
2022 trace_i2c_read(adap, &msgs[i], i);
2023 else
2024 trace_i2c_write(adap, &msgs[i], i);
2025 }
2026
Jean Delvareb37d2a32012-06-29 07:47:19 -03002027 /* Retry automatically on arbitration loss */
2028 orig_jiffies = jiffies;
2029 for (ret = 0, try = 0; try <= adap->retries; try++) {
2030 ret = adap->algo->master_xfer(adap, msgs, num);
2031 if (ret != -EAGAIN)
2032 break;
2033 if (time_after(jiffies, orig_jiffies + adap->timeout))
2034 break;
2035 }
2036
David Howellsd9a83d62014-03-06 13:35:59 +00002037 if (static_key_false(&i2c_trace_msg)) {
2038 int i;
2039 for (i = 0; i < ret; i++)
2040 if (msgs[i].flags & I2C_M_RD)
2041 trace_i2c_reply(adap, &msgs[i], i);
2042 trace_i2c_result(adap, i, ret);
2043 }
2044
Jean Delvareb37d2a32012-06-29 07:47:19 -03002045 return ret;
2046}
2047EXPORT_SYMBOL(__i2c_transfer);
2048
2049/**
David Brownella1cdeda2008-07-14 22:38:24 +02002050 * i2c_transfer - execute a single or combined I2C message
2051 * @adap: Handle to I2C bus
2052 * @msgs: One or more messages to execute before STOP is issued to
2053 * terminate the operation; each message begins with a START.
2054 * @num: Number of messages to be executed.
2055 *
2056 * Returns negative errno, else the number of messages executed.
2057 *
2058 * Note that there is no requirement that each message be sent to
2059 * the same slave address, although that is the most common model.
2060 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002061int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
Jean Delvareb37d2a32012-06-29 07:47:19 -03002063 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
David Brownella1cdeda2008-07-14 22:38:24 +02002065 /* REVISIT the fault reporting model here is weak:
2066 *
2067 * - When we get an error after receiving N bytes from a slave,
2068 * there is no way to report "N".
2069 *
2070 * - When we get a NAK after transmitting N bytes to a slave,
2071 * there is no way to report "N" ... or to let the master
2072 * continue executing the rest of this combined message, if
2073 * that's the appropriate response.
2074 *
2075 * - When for example "num" is two and we successfully complete
2076 * the first message but get an error part way through the
2077 * second, it's unclear whether that should be reported as
2078 * one (discarding status on the second message) or errno
2079 * (discarding status on the first one).
2080 */
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (adap->algo->master_xfer) {
2083#ifdef DEBUG
2084 for (ret = 0; ret < num; ret++) {
2085 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02002086 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
2087 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
2088 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090#endif
2091
Mike Rapoportcea443a2008-01-27 18:14:50 +01002092 if (in_atomic() || irqs_disabled()) {
Jean Delvarefe61e072010-08-11 18:20:58 +02002093 ret = i2c_trylock_adapter(adap);
Mike Rapoportcea443a2008-01-27 18:14:50 +01002094 if (!ret)
2095 /* I2C activity is ongoing. */
2096 return -EAGAIN;
2097 } else {
Jean Delvarefe61e072010-08-11 18:20:58 +02002098 i2c_lock_adapter(adap);
Mike Rapoportcea443a2008-01-27 18:14:50 +01002099 }
2100
Jean Delvareb37d2a32012-06-29 07:47:19 -03002101 ret = __i2c_transfer(adap, msgs, num);
Jean Delvarefe61e072010-08-11 18:20:58 +02002102 i2c_unlock_adapter(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 return ret;
2105 } else {
2106 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02002107 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109}
David Brownellc0564602007-05-01 23:26:31 +02002110EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
David Brownella1cdeda2008-07-14 22:38:24 +02002112/**
2113 * i2c_master_send - issue a single I2C message in master transmit mode
2114 * @client: Handle to slave device
2115 * @buf: Data that will be written to the slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01002116 * @count: How many bytes to write, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02002117 *
2118 * Returns negative errno, or else the number of bytes written.
2119 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002120int i2c_master_send(const struct i2c_client *client, const char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
2122 int ret;
Farid Hammane7225acf2010-05-21 18:40:58 +02002123 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 struct i2c_msg msg;
2125
Jean Delvare815f55f2005-05-07 22:58:46 +02002126 msg.addr = client->addr;
2127 msg.flags = client->flags & I2C_M_TEN;
2128 msg.len = count;
2129 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01002130
Jean Delvare815f55f2005-05-07 22:58:46 +02002131 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Wolfram Sang834aa6f2012-03-15 18:11:05 +01002133 /*
2134 * If everything went ok (i.e. 1 msg transmitted), return #bytes
2135 * transmitted, else error code.
2136 */
Jean Delvare815f55f2005-05-07 22:58:46 +02002137 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
David Brownellc0564602007-05-01 23:26:31 +02002139EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
David Brownella1cdeda2008-07-14 22:38:24 +02002141/**
2142 * i2c_master_recv - issue a single I2C message in master receive mode
2143 * @client: Handle to slave device
2144 * @buf: Where to store data read from slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01002145 * @count: How many bytes to read, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02002146 *
2147 * Returns negative errno, or else the number of bytes read.
2148 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002149int i2c_master_recv(const struct i2c_client *client, char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Farid Hammane7225acf2010-05-21 18:40:58 +02002151 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 struct i2c_msg msg;
2153 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Jean Delvare815f55f2005-05-07 22:58:46 +02002155 msg.addr = client->addr;
2156 msg.flags = client->flags & I2C_M_TEN;
2157 msg.flags |= I2C_M_RD;
2158 msg.len = count;
2159 msg.buf = buf;
2160
2161 ret = i2c_transfer(adap, &msg, 1);
2162
Wolfram Sang834aa6f2012-03-15 18:11:05 +01002163 /*
2164 * If everything went ok (i.e. 1 msg received), return #bytes received,
2165 * else error code.
2166 */
Jean Delvare815f55f2005-05-07 22:58:46 +02002167 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
David Brownellc0564602007-05-01 23:26:31 +02002169EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171/* ----------------------------------------------------
2172 * the i2c address scanning function
2173 * Will not work for 10-bit addresses!
2174 * ----------------------------------------------------
2175 */
Jean Delvare9fc6adf2005-07-31 21:20:43 +02002176
Jean Delvare63e4e802010-06-03 11:33:51 +02002177/*
2178 * Legacy default probe function, mostly relevant for SMBus. The default
2179 * probe method is a quick write, but it is known to corrupt the 24RF08
2180 * EEPROMs due to a state machine bug, and could also irreversibly
2181 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2182 * we use a short byte read instead. Also, some bus drivers don't implement
2183 * quick write, so we fallback to a byte read in that case too.
2184 * On x86, there is another special case for FSC hardware monitoring chips,
2185 * which want regular byte reads (address 0x73.) Fortunately, these are the
2186 * only known chips using this I2C address on PC hardware.
2187 * Returns 1 if probe succeeded, 0 if not.
2188 */
2189static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
2190{
2191 int err;
2192 union i2c_smbus_data dummy;
2193
2194#ifdef CONFIG_X86
2195 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
2196 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
2197 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2198 I2C_SMBUS_BYTE_DATA, &dummy);
2199 else
2200#endif
Jean Delvare8031d792010-08-11 18:21:00 +02002201 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
2202 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
Jean Delvare63e4e802010-06-03 11:33:51 +02002203 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
2204 I2C_SMBUS_QUICK, NULL);
Jean Delvare8031d792010-08-11 18:21:00 +02002205 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
2206 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2207 I2C_SMBUS_BYTE, &dummy);
2208 else {
Andy Lutomirskid63a9e82013-07-17 13:27:59 -07002209 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
2210 addr);
Jean Delvare8031d792010-08-11 18:21:00 +02002211 err = -EOPNOTSUPP;
2212 }
Jean Delvare63e4e802010-06-03 11:33:51 +02002213
2214 return err >= 0;
2215}
2216
Jean Delvareccfbbd02009-12-06 17:06:25 +01002217static int i2c_detect_address(struct i2c_client *temp_client,
Jean Delvare4735c982008-07-14 22:38:36 +02002218 struct i2c_driver *driver)
2219{
2220 struct i2c_board_info info;
2221 struct i2c_adapter *adapter = temp_client->adapter;
2222 int addr = temp_client->addr;
2223 int err;
2224
2225 /* Make sure the address is valid */
Jean Delvare656b8762010-06-03 11:33:53 +02002226 err = i2c_check_addr_validity(addr);
2227 if (err) {
Jean Delvare4735c982008-07-14 22:38:36 +02002228 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
2229 addr);
Jean Delvare656b8762010-06-03 11:33:53 +02002230 return err;
Jean Delvare4735c982008-07-14 22:38:36 +02002231 }
2232
2233 /* Skip if already in use */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002234 if (i2c_check_addr_busy(adapter, addr))
Jean Delvare4735c982008-07-14 22:38:36 +02002235 return 0;
2236
Jean Delvareccfbbd02009-12-06 17:06:25 +01002237 /* Make sure there is something at this address */
Jean Delvare63e4e802010-06-03 11:33:51 +02002238 if (!i2c_default_probe(adapter, addr))
2239 return 0;
Jean Delvare4735c982008-07-14 22:38:36 +02002240
2241 /* Finally call the custom detection function */
2242 memset(&info, 0, sizeof(struct i2c_board_info));
2243 info.addr = addr;
Jean Delvare310ec792009-12-14 21:17:23 +01002244 err = driver->detect(temp_client, &info);
Jean Delvare4735c982008-07-14 22:38:36 +02002245 if (err) {
2246 /* -ENODEV is returned if the detection fails. We catch it
2247 here as this isn't an error. */
2248 return err == -ENODEV ? 0 : err;
2249 }
2250
2251 /* Consistency check */
2252 if (info.type[0] == '\0') {
2253 dev_err(&adapter->dev, "%s detection function provided "
2254 "no name for 0x%x\n", driver->driver.name,
2255 addr);
2256 } else {
2257 struct i2c_client *client;
2258
2259 /* Detection succeeded, instantiate the device */
Wolfram Sang0c176172014-02-10 11:03:56 +01002260 if (adapter->class & I2C_CLASS_DEPRECATED)
2261 dev_warn(&adapter->dev,
2262 "This adapter will soon drop class based instantiation of devices. "
2263 "Please make sure client 0x%02x gets instantiated by other means. "
2264 "Check 'Documentation/i2c/instantiating-devices' for details.\n",
2265 info.addr);
2266
Jean Delvare4735c982008-07-14 22:38:36 +02002267 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
2268 info.type, info.addr);
2269 client = i2c_new_device(adapter, &info);
2270 if (client)
2271 list_add_tail(&client->detected, &driver->clients);
2272 else
2273 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
2274 info.type, info.addr);
2275 }
2276 return 0;
2277}
2278
2279static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
2280{
Jean Delvarec3813d62009-12-14 21:17:25 +01002281 const unsigned short *address_list;
Jean Delvare4735c982008-07-14 22:38:36 +02002282 struct i2c_client *temp_client;
2283 int i, err = 0;
2284 int adap_id = i2c_adapter_id(adapter);
2285
Jean Delvarec3813d62009-12-14 21:17:25 +01002286 address_list = driver->address_list;
2287 if (!driver->detect || !address_list)
Jean Delvare4735c982008-07-14 22:38:36 +02002288 return 0;
2289
Wolfram Sang45552272014-07-10 13:46:21 +02002290 /* Warn that the adapter lost class based instantiation */
2291 if (adapter->class == I2C_CLASS_DEPRECATED) {
2292 dev_dbg(&adapter->dev,
2293 "This adapter dropped support for I2C classes and "
2294 "won't auto-detect %s devices anymore. If you need it, check "
2295 "'Documentation/i2c/instantiating-devices' for alternatives.\n",
2296 driver->driver.name);
2297 return 0;
2298 }
2299
Jean Delvare51b54ba2010-10-24 18:16:58 +02002300 /* Stop here if the classes do not match */
2301 if (!(adapter->class & driver->class))
2302 return 0;
2303
Jean Delvare4735c982008-07-14 22:38:36 +02002304 /* Set up a temporary client to help detect callback */
2305 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
2306 if (!temp_client)
2307 return -ENOMEM;
2308 temp_client->adapter = adapter;
2309
Jean Delvarec3813d62009-12-14 21:17:25 +01002310 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
Jean Delvare4735c982008-07-14 22:38:36 +02002311 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
Jean Delvarec3813d62009-12-14 21:17:25 +01002312 "addr 0x%02x\n", adap_id, address_list[i]);
2313 temp_client->addr = address_list[i];
Jean Delvareccfbbd02009-12-06 17:06:25 +01002314 err = i2c_detect_address(temp_client, driver);
Jean Delvare51b54ba2010-10-24 18:16:58 +02002315 if (unlikely(err))
2316 break;
Jean Delvare4735c982008-07-14 22:38:36 +02002317 }
2318
Jean Delvare4735c982008-07-14 22:38:36 +02002319 kfree(temp_client);
2320 return err;
2321}
2322
Jean Delvared44f19d2010-08-11 18:20:57 +02002323int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
2324{
2325 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2326 I2C_SMBUS_QUICK, NULL) >= 0;
2327}
2328EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
2329
Jean Delvare12b5053a2007-05-01 23:26:31 +02002330struct i2c_client *
2331i2c_new_probed_device(struct i2c_adapter *adap,
2332 struct i2c_board_info *info,
Jean Delvare9a942412010-08-11 18:20:56 +02002333 unsigned short const *addr_list,
2334 int (*probe)(struct i2c_adapter *, unsigned short addr))
Jean Delvare12b5053a2007-05-01 23:26:31 +02002335{
2336 int i;
2337
Jean Delvare8031d792010-08-11 18:21:00 +02002338 if (!probe)
Jean Delvare9a942412010-08-11 18:20:56 +02002339 probe = i2c_default_probe;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002340
Jean Delvare12b5053a2007-05-01 23:26:31 +02002341 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2342 /* Check address validity */
Jean Delvare656b8762010-06-03 11:33:53 +02002343 if (i2c_check_addr_validity(addr_list[i]) < 0) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02002344 dev_warn(&adap->dev, "Invalid 7-bit address "
2345 "0x%02x\n", addr_list[i]);
2346 continue;
2347 }
2348
2349 /* Check address availability */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002350 if (i2c_check_addr_busy(adap, addr_list[i])) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02002351 dev_dbg(&adap->dev, "Address 0x%02x already in "
2352 "use, not probing\n", addr_list[i]);
2353 continue;
2354 }
2355
Jean Delvare63e4e802010-06-03 11:33:51 +02002356 /* Test address responsiveness */
Jean Delvare9a942412010-08-11 18:20:56 +02002357 if (probe(adap, addr_list[i]))
Jean Delvare63e4e802010-06-03 11:33:51 +02002358 break;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002359 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02002360
2361 if (addr_list[i] == I2C_CLIENT_END) {
2362 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2363 return NULL;
2364 }
2365
2366 info->addr = addr_list[i];
2367 return i2c_new_device(adap, info);
2368}
2369EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2370
Jean Delvared735b342011-03-20 14:50:52 +01002371struct i2c_adapter *i2c_get_adapter(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01002374
Jean Delvarecaada322008-01-27 18:14:49 +01002375 mutex_lock(&core_lock);
Jean Delvared735b342011-03-20 14:50:52 +01002376 adapter = idr_find(&i2c_adapter_idr, nr);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002377 if (adapter && !try_module_get(adapter->owner))
2378 adapter = NULL;
2379
Jean Delvarecaada322008-01-27 18:14:49 +01002380 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002381 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
David Brownellc0564602007-05-01 23:26:31 +02002383EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385void i2c_put_adapter(struct i2c_adapter *adap)
2386{
Sebastian Hesselbarthc66c4cc2013-08-01 14:10:46 +02002387 if (adap)
2388 module_put(adap->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389}
David Brownellc0564602007-05-01 23:26:31 +02002390EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392/* The SMBus parts */
2393
David Brownell438d6c22006-12-10 21:21:31 +01002394#define POLY (0x1070U << 3)
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002395static u8 crc8(u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396{
2397 int i;
David Brownell438d6c22006-12-10 21:21:31 +01002398
Farid Hammane7225acf2010-05-21 18:40:58 +02002399 for (i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01002400 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 data = data ^ POLY;
2402 data = data << 1;
2403 }
2404 return (u8)(data >> 8);
2405}
2406
Jean Delvare421ef472005-10-26 21:28:55 +02002407/* Incremental CRC8 over count bytes in the array pointed to by p */
2408static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
2410 int i;
2411
Farid Hammane7225acf2010-05-21 18:40:58 +02002412 for (i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02002413 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return crc;
2415}
2416
Jean Delvare421ef472005-10-26 21:28:55 +02002417/* Assume a 7-bit address, which is reasonable for SMBus */
2418static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
Jean Delvare421ef472005-10-26 21:28:55 +02002420 /* The address will be sent first */
2421 u8 addr = (msg->addr << 1) | !!(msg->flags & I2C_M_RD);
2422 pec = i2c_smbus_pec(pec, &addr, 1);
2423
2424 /* The data buffer follows */
2425 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426}
2427
Jean Delvare421ef472005-10-26 21:28:55 +02002428/* Used for write only transactions */
2429static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Jean Delvare421ef472005-10-26 21:28:55 +02002431 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
2432 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Jean Delvare421ef472005-10-26 21:28:55 +02002435/* Return <0 on CRC error
2436 If there was a write before this read (most cases) we need to take the
2437 partial CRC from the write part into account.
2438 Note that this function does modify the message (we need to decrease the
2439 message length to hide the CRC byte from the caller). */
2440static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
Jean Delvare421ef472005-10-26 21:28:55 +02002442 u8 rpec = msg->buf[--msg->len];
2443 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (rpec != cpec) {
2446 pr_debug("i2c-core: Bad PEC 0x%02x vs. 0x%02x\n",
2447 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02002448 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
David Brownell438d6c22006-12-10 21:21:31 +01002450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
2452
David Brownella1cdeda2008-07-14 22:38:24 +02002453/**
2454 * i2c_smbus_read_byte - SMBus "receive byte" protocol
2455 * @client: Handle to slave device
2456 *
2457 * This executes the SMBus "receive byte" protocol, returning negative errno
2458 * else the byte received from the device.
2459 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002460s32 i2c_smbus_read_byte(const struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002463 int status;
2464
2465 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2466 I2C_SMBUS_READ, 0,
2467 I2C_SMBUS_BYTE, &data);
2468 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
David Brownellc0564602007-05-01 23:26:31 +02002470EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
David Brownella1cdeda2008-07-14 22:38:24 +02002472/**
2473 * i2c_smbus_write_byte - SMBus "send byte" protocol
2474 * @client: Handle to slave device
2475 * @value: Byte to be sent
2476 *
2477 * This executes the SMBus "send byte" protocol, returning negative errno
2478 * else zero on success.
2479 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002480s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
Farid Hammane7225acf2010-05-21 18:40:58 +02002482 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02002483 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
David Brownellc0564602007-05-01 23:26:31 +02002485EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
David Brownella1cdeda2008-07-14 22:38:24 +02002487/**
2488 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
2489 * @client: Handle to slave device
2490 * @command: Byte interpreted by slave
2491 *
2492 * This executes the SMBus "read byte" protocol, returning negative errno
2493 * else a data byte received from the device.
2494 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002495s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
2497 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002498 int status;
2499
2500 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2501 I2C_SMBUS_READ, command,
2502 I2C_SMBUS_BYTE_DATA, &data);
2503 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
David Brownellc0564602007-05-01 23:26:31 +02002505EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
David Brownella1cdeda2008-07-14 22:38:24 +02002507/**
2508 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
2509 * @client: Handle to slave device
2510 * @command: Byte interpreted by slave
2511 * @value: Byte being written
2512 *
2513 * This executes the SMBus "write byte" protocol, returning negative errno
2514 * else zero on success.
2515 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002516s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
2517 u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
2519 union i2c_smbus_data data;
2520 data.byte = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02002521 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2522 I2C_SMBUS_WRITE, command,
2523 I2C_SMBUS_BYTE_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524}
David Brownellc0564602007-05-01 23:26:31 +02002525EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
David Brownella1cdeda2008-07-14 22:38:24 +02002527/**
2528 * i2c_smbus_read_word_data - SMBus "read word" protocol
2529 * @client: Handle to slave device
2530 * @command: Byte interpreted by slave
2531 *
2532 * This executes the SMBus "read word" protocol, returning negative errno
2533 * else a 16-bit unsigned "word" received from the device.
2534 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002535s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
2537 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002538 int status;
2539
2540 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2541 I2C_SMBUS_READ, command,
2542 I2C_SMBUS_WORD_DATA, &data);
2543 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
David Brownellc0564602007-05-01 23:26:31 +02002545EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
David Brownella1cdeda2008-07-14 22:38:24 +02002547/**
2548 * i2c_smbus_write_word_data - SMBus "write word" protocol
2549 * @client: Handle to slave device
2550 * @command: Byte interpreted by slave
2551 * @value: 16-bit "word" being written
2552 *
2553 * This executes the SMBus "write word" protocol, returning negative errno
2554 * else zero on success.
2555 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002556s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
2557 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 union i2c_smbus_data data;
2560 data.word = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02002561 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2562 I2C_SMBUS_WRITE, command,
2563 I2C_SMBUS_WORD_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564}
David Brownellc0564602007-05-01 23:26:31 +02002565EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
David Brownella64ec072007-10-13 23:56:31 +02002567/**
David Brownella1cdeda2008-07-14 22:38:24 +02002568 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02002569 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02002570 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02002571 * @values: Byte array into which data will be read; big enough to hold
2572 * the data returned by the slave. SMBus allows at most 32 bytes.
2573 *
David Brownella1cdeda2008-07-14 22:38:24 +02002574 * This executes the SMBus "block read" protocol, returning negative errno
2575 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02002576 *
2577 * Note that using this function requires that the client's adapter support
2578 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
2579 * support this; its emulation through I2C messaging relies on a specific
2580 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
2581 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002582s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
Jean Delvareb86a1bc2007-05-01 23:26:34 +02002583 u8 *values)
2584{
2585 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002586 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02002587
David Brownell24a5bb72008-07-14 22:38:23 +02002588 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2589 I2C_SMBUS_READ, command,
2590 I2C_SMBUS_BLOCK_DATA, &data);
2591 if (status)
2592 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02002593
2594 memcpy(values, &data.block[1], data.block[0]);
2595 return data.block[0];
2596}
2597EXPORT_SYMBOL(i2c_smbus_read_block_data);
2598
David Brownella1cdeda2008-07-14 22:38:24 +02002599/**
2600 * i2c_smbus_write_block_data - SMBus "block write" protocol
2601 * @client: Handle to slave device
2602 * @command: Byte interpreted by slave
2603 * @length: Size of data block; SMBus allows at most 32 bytes
2604 * @values: Byte array which will be written.
2605 *
2606 * This executes the SMBus "block write" protocol, returning negative errno
2607 * else zero on success.
2608 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002609s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02002610 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
2612 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01002613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (length > I2C_SMBUS_BLOCK_MAX)
2615 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01002617 memcpy(&data.block[1], values, length);
Farid Hammane7225acf2010-05-21 18:40:58 +02002618 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2619 I2C_SMBUS_WRITE, command,
2620 I2C_SMBUS_BLOCK_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
David Brownellc0564602007-05-01 23:26:31 +02002622EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624/* Returns the number of read bytes */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002625s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
Jean Delvare4b2643d2007-07-12 14:12:29 +02002626 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
2628 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002629 int status;
Jean Delvare76560322006-01-18 23:14:55 +01002630
Jean Delvare4b2643d2007-07-12 14:12:29 +02002631 if (length > I2C_SMBUS_BLOCK_MAX)
2632 length = I2C_SMBUS_BLOCK_MAX;
2633 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02002634 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2635 I2C_SMBUS_READ, command,
2636 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2637 if (status < 0)
2638 return status;
Jean Delvare76560322006-01-18 23:14:55 +01002639
2640 memcpy(values, &data.block[1], data.block[0]);
2641 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
David Brownellc0564602007-05-01 23:26:31 +02002643EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Jean Delvare0cc43a12011-01-10 22:11:23 +01002645s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02002646 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11002647{
2648 union i2c_smbus_data data;
2649
2650 if (length > I2C_SMBUS_BLOCK_MAX)
2651 length = I2C_SMBUS_BLOCK_MAX;
2652 data.block[0] = length;
2653 memcpy(data.block + 1, values, length);
2654 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2655 I2C_SMBUS_WRITE, command,
2656 I2C_SMBUS_I2C_BLOCK_DATA, &data);
2657}
David Brownellc0564602007-05-01 23:26:31 +02002658EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11002659
David Brownell438d6c22006-12-10 21:21:31 +01002660/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 No checking of parameters is done! */
Farid Hammane7225acf2010-05-21 18:40:58 +02002662static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
2663 unsigned short flags,
2664 char read_write, u8 command, int size,
2665 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
2667 /* So we need to generate a series of msgs. In the case of writing, we
2668 need to use only one message; when reading, we need two. We initialize
2669 most things with sane defaults, to keep the code below somewhat
2670 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02002671 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
2672 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Farid Hammane7225acf2010-05-21 18:40:58 +02002673 int num = read_write == I2C_SMBUS_READ ? 2 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02002675 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02002676 int status;
Shubhrajyoti D230da092012-10-05 22:23:52 +02002677 struct i2c_msg msg[2] = {
2678 {
2679 .addr = addr,
2680 .flags = flags,
2681 .len = 1,
2682 .buf = msgbuf0,
2683 }, {
2684 .addr = addr,
2685 .flags = flags | I2C_M_RD,
2686 .len = 0,
2687 .buf = msgbuf1,
2688 },
2689 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 msgbuf0[0] = command;
Farid Hammane7225acf2010-05-21 18:40:58 +02002692 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 case I2C_SMBUS_QUICK:
2694 msg[0].len = 0;
2695 /* Special case: The read/write field is used as data */
Roel Kluinf29d2e02009-02-24 19:19:48 +01002696 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
2697 I2C_M_RD : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 num = 1;
2699 break;
2700 case I2C_SMBUS_BYTE:
2701 if (read_write == I2C_SMBUS_READ) {
2702 /* Special case: only a read! */
2703 msg[0].flags = I2C_M_RD | flags;
2704 num = 1;
2705 }
2706 break;
2707 case I2C_SMBUS_BYTE_DATA:
2708 if (read_write == I2C_SMBUS_READ)
2709 msg[1].len = 1;
2710 else {
2711 msg[0].len = 2;
2712 msgbuf0[1] = data->byte;
2713 }
2714 break;
2715 case I2C_SMBUS_WORD_DATA:
2716 if (read_write == I2C_SMBUS_READ)
2717 msg[1].len = 2;
2718 else {
Farid Hammane7225acf2010-05-21 18:40:58 +02002719 msg[0].len = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02002721 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 }
2723 break;
2724 case I2C_SMBUS_PROC_CALL:
2725 num = 2; /* Special case */
2726 read_write = I2C_SMBUS_READ;
2727 msg[0].len = 3;
2728 msg[1].len = 2;
2729 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02002730 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 break;
2732 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02002734 msg[1].flags |= I2C_M_RECV_LEN;
2735 msg[1].len = 1; /* block length will be added by
2736 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 } else {
2738 msg[0].len = data->block[0] + 2;
2739 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02002740 dev_err(&adapter->dev,
2741 "Invalid block write size %d\n",
2742 data->block[0]);
2743 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02002745 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 msgbuf0[i] = data->block[i-1];
2747 }
2748 break;
2749 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02002750 num = 2; /* Another special case */
2751 read_write = I2C_SMBUS_READ;
2752 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02002753 dev_err(&adapter->dev,
2754 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02002755 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02002756 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02002757 }
2758 msg[0].len = data->block[0] + 2;
2759 for (i = 1; i < msg[0].len; i++)
2760 msgbuf0[i] = data->block[i-1];
2761 msg[1].flags |= I2C_M_RECV_LEN;
2762 msg[1].len = 1; /* block length will be added by
2763 the underlying bus driver */
2764 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 case I2C_SMBUS_I2C_BLOCK_DATA:
2766 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02002767 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 } else {
2769 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02002770 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02002771 dev_err(&adapter->dev,
2772 "Invalid block write size %d\n",
2773 data->block[0]);
2774 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776 for (i = 1; i <= data->block[0]; i++)
2777 msgbuf0[i] = data->block[i];
2778 }
2779 break;
2780 default:
David Brownell24a5bb72008-07-14 22:38:23 +02002781 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
2782 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 }
2784
Jean Delvare421ef472005-10-26 21:28:55 +02002785 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
2786 && size != I2C_SMBUS_I2C_BLOCK_DATA);
2787 if (i) {
2788 /* Compute PEC if first message is a write */
2789 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01002790 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02002791 i2c_smbus_add_pec(&msg[0]);
2792 else /* Write followed by read */
2793 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
2794 }
2795 /* Ask for PEC if last message is a read */
2796 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01002797 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02002798 }
2799
David Brownell24a5bb72008-07-14 22:38:23 +02002800 status = i2c_transfer(adapter, msg, num);
2801 if (status < 0)
2802 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Jean Delvare421ef472005-10-26 21:28:55 +02002804 /* Check PEC if last message is a read */
2805 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02002806 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
2807 if (status < 0)
2808 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02002809 }
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (read_write == I2C_SMBUS_READ)
Farid Hammane7225acf2010-05-21 18:40:58 +02002812 switch (size) {
2813 case I2C_SMBUS_BYTE:
2814 data->byte = msgbuf0[0];
2815 break;
2816 case I2C_SMBUS_BYTE_DATA:
2817 data->byte = msgbuf1[0];
2818 break;
2819 case I2C_SMBUS_WORD_DATA:
2820 case I2C_SMBUS_PROC_CALL:
2821 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
2822 break;
2823 case I2C_SMBUS_I2C_BLOCK_DATA:
2824 for (i = 0; i < data->block[0]; i++)
2825 data->block[i+1] = msgbuf1[i];
2826 break;
2827 case I2C_SMBUS_BLOCK_DATA:
2828 case I2C_SMBUS_BLOCK_PROC_CALL:
2829 for (i = 0; i < msgbuf1[0] + 1; i++)
2830 data->block[i] = msgbuf1[i];
2831 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
2833 return 0;
2834}
2835
David Brownella1cdeda2008-07-14 22:38:24 +02002836/**
2837 * i2c_smbus_xfer - execute SMBus protocol operations
2838 * @adapter: Handle to I2C bus
2839 * @addr: Address of SMBus slave on that bus
2840 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
2841 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
2842 * @command: Byte interpreted by slave, for protocols which use such bytes
2843 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
2844 * @data: Data to be read or written
2845 *
2846 * This executes an SMBus protocol operation, and returns a negative
2847 * errno code else zero on success.
2848 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002849s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02002850 char read_write, u8 command, int protocol,
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002851 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
Clifford Wolf66b650f2009-06-15 18:01:46 +02002853 unsigned long orig_jiffies;
2854 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
David Howells8a325992014-03-06 13:36:06 +00002857 /* If enabled, the following two tracepoints are conditional on
2858 * read_write and protocol.
2859 */
2860 trace_smbus_write(adapter, addr, flags, read_write,
2861 command, protocol, data);
2862 trace_smbus_read(adapter, addr, flags, read_write,
2863 command, protocol);
2864
Laurent Pinchartd47726c2012-07-24 14:13:59 +02002865 flags &= I2C_M_TEN | I2C_CLIENT_PEC | I2C_CLIENT_SCCB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 if (adapter->algo->smbus_xfer) {
Jean Delvarefe61e072010-08-11 18:20:58 +02002868 i2c_lock_adapter(adapter);
Clifford Wolf66b650f2009-06-15 18:01:46 +02002869
2870 /* Retry automatically on arbitration loss */
2871 orig_jiffies = jiffies;
2872 for (res = 0, try = 0; try <= adapter->retries; try++) {
2873 res = adapter->algo->smbus_xfer(adapter, addr, flags,
2874 read_write, command,
2875 protocol, data);
2876 if (res != -EAGAIN)
2877 break;
2878 if (time_after(jiffies,
2879 orig_jiffies + adapter->timeout))
2880 break;
2881 }
Jean Delvarefe61e072010-08-11 18:20:58 +02002882 i2c_unlock_adapter(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Laurent Pinchart72fc2c72012-07-24 14:13:59 +02002884 if (res != -EOPNOTSUPP || !adapter->algo->master_xfer)
David Howells8a325992014-03-06 13:36:06 +00002885 goto trace;
Laurent Pinchart72fc2c72012-07-24 14:13:59 +02002886 /*
2887 * Fall back to i2c_smbus_xfer_emulated if the adapter doesn't
2888 * implement native support for the SMBus operation.
2889 */
2890 }
2891
David Howells8a325992014-03-06 13:36:06 +00002892 res = i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
2893 command, protocol, data);
2894
2895trace:
2896 /* If enabled, the reply tracepoint is conditional on read_write. */
2897 trace_smbus_reply(adapter, addr, flags, read_write,
2898 command, protocol, data);
2899 trace_smbus_result(adapter, addr, flags, read_write,
2900 command, protocol, res);
2901
2902 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2907MODULE_DESCRIPTION("I2C-Bus main module");
2908MODULE_LICENSE("GPL");