blob: 05794423e01ff55be3f37a4ce27490541601daef [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 Sang4b1acc42014-11-18 17:04:53 +010027 I2C slave support (c) 2014 by Wolfram Sang <wsa@sang-engineering.com>
Wolfram Sang687b81d2013-07-11 12:56:15 +010028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Wolfram Sang44239a52016-07-09 13:35:04 +090030#define pr_fmt(fmt) "i2c-core: " fmt
31
Wolfram Sangb4e2f6a2015-05-19 21:04:40 +020032#include <dt-bindings/i2c/i2c.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010033#include <asm/uaccess.h>
34#include <linux/acpi.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020035#include <linux/clk/clk-conf.h>
Jean Delvareb8d6f452007-02-13 22:09:00 +010036#include <linux/completion.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010037#include <linux/delay.h>
Pantelis Antonioua430a3452014-10-28 22:36:02 +020038#include <linux/err.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010039#include <linux/errno.h>
40#include <linux/gpio.h>
41#include <linux/hardirq.h>
42#include <linux/i2c.h>
43#include <linux/idr.h>
44#include <linux/init.h>
45#include <linux/irqflags.h>
46#include <linux/jump_label.h>
47#include <linux/kernel.h>
48#include <linux/module.h>
49#include <linux/mutex.h>
50#include <linux/of_device.h>
51#include <linux/of.h>
52#include <linux/of_irq.h>
53#include <linux/pm_domain.h>
54#include <linux/pm_runtime.h>
55#include <linux/pm_wakeirq.h>
Wolfram Sange1dba012015-12-08 10:37:46 +010056#include <linux/property.h>
Wolfram Sang53feedf2016-02-20 23:33:38 +010057#include <linux/rwsem.h>
58#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
David Brownell9c1600e2007-05-01 23:26:31 +020060#include "i2c-core.h"
61
David Howellsd9a83d62014-03-06 13:35:59 +000062#define CREATE_TRACE_POINTS
63#include <trace/events/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Wolfram Sangda899f52015-05-18 21:09:12 +020065#define I2C_ADDR_OFFSET_TEN_BIT 0xa000
66#define I2C_ADDR_OFFSET_SLAVE 0x1000
67
Jean Delvare6629dcf2010-05-04 11:09:28 +020068/* core_lock protects i2c_adapter_idr, and guarantees
Jean Delvare35fc37f2009-06-19 16:58:19 +020069 that device detection, deletion of detected devices, and attach_adapter
Lars-Peter Clausen19baba42013-03-09 08:16:44 +000070 calls are serialized */
Jean Delvarecaada322008-01-27 18:14:49 +010071static DEFINE_MUTEX(core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static DEFINE_IDR(i2c_adapter_idr);
73
Jean Delvare4f8cf822009-09-18 22:45:46 +020074static struct device_type i2c_client_type;
Jean Delvare4735c982008-07-14 22:38:36 +020075static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver);
David Brownellf37dd802007-02-13 22:09:00 +010076
David Howellsd9a83d62014-03-06 13:35:59 +000077static struct static_key i2c_trace_msg = STATIC_KEY_INIT_FALSE;
Sudip Mukherjee95026652016-03-07 17:19:17 +053078static bool is_registered;
David Howellsd9a83d62014-03-06 13:35:59 +000079
80void i2c_transfer_trace_reg(void)
81{
82 static_key_slow_inc(&i2c_trace_msg);
83}
84
85void i2c_transfer_trace_unreg(void)
86{
87 static_key_slow_dec(&i2c_trace_msg);
88}
89
Wolfram Sang17f4a5c2014-09-22 19:41:00 +020090#if defined(CONFIG_ACPI)
Jarkko Nikulaaec809f2016-08-12 17:02:52 +030091struct i2c_acpi_handler_data {
Wolfram Sang17f4a5c2014-09-22 19:41:00 +020092 struct acpi_connection_info info;
93 struct i2c_adapter *adapter;
94};
95
96struct gsb_buffer {
97 u8 status;
98 u8 len;
99 union {
100 u16 wdata;
101 u8 bdata;
102 u8 data[0];
103 };
104} __packed;
105
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300106struct i2c_acpi_lookup {
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300107 struct i2c_board_info *info;
108 acpi_handle adapter_handle;
109 acpi_handle device_handle;
Jarkko Nikula5853b222016-08-12 17:02:53 +0300110 acpi_handle search_handle;
111 u32 speed;
112 u32 min_speed;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300113};
114
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300115static int i2c_acpi_fill_info(struct acpi_resource *ares, void *data)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200116{
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300117 struct i2c_acpi_lookup *lookup = data;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300118 struct i2c_board_info *info = lookup->info;
119 struct acpi_resource_i2c_serialbus *sb;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300120 acpi_status status;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200121
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300122 if (info->addr || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
123 return 1;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200124
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300125 sb = &ares->data.i2c_serial_bus;
126 if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C)
127 return 1;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200128
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300129 status = acpi_get_handle(lookup->device_handle,
130 sb->resource_source.string_ptr,
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300131 &lookup->adapter_handle);
132 if (!ACPI_SUCCESS(status))
133 return 1;
134
135 info->addr = sb->slave_address;
Jarkko Nikula5853b222016-08-12 17:02:53 +0300136 lookup->speed = sb->connection_speed;
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300137 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
138 info->flags |= I2C_CLIENT_TEN;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200139
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200140 return 1;
141}
142
Jarkko Nikula5853b222016-08-12 17:02:53 +0300143static int i2c_acpi_do_lookup(struct acpi_device *adev,
144 struct i2c_acpi_lookup *lookup)
145{
146 struct i2c_board_info *info = lookup->info;
147 struct list_head resource_list;
148 int ret;
149
150 if (acpi_bus_get_status(adev) || !adev->status.present ||
151 acpi_device_enumerated(adev))
152 return -EINVAL;
153
154 memset(info, 0, sizeof(*info));
155 lookup->device_handle = acpi_device_handle(adev);
156
157 /* Look up for I2cSerialBus resource */
158 INIT_LIST_HEAD(&resource_list);
159 ret = acpi_dev_get_resources(adev, &resource_list,
160 i2c_acpi_fill_info, lookup);
161 acpi_dev_free_resource_list(&resource_list);
162
163 if (ret < 0 || !info->addr)
164 return -EINVAL;
165
166 return 0;
167}
168
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300169static int i2c_acpi_get_info(struct acpi_device *adev,
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300170 struct i2c_board_info *info,
171 acpi_handle *adapter_handle)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200172{
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200173 struct list_head resource_list;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300174 struct resource_entry *entry;
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300175 struct i2c_acpi_lookup lookup;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200176 int ret;
177
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300178 memset(&lookup, 0, sizeof(lookup));
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300179 lookup.info = info;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300180
Jarkko Nikula5853b222016-08-12 17:02:53 +0300181 ret = i2c_acpi_do_lookup(adev, &lookup);
182 if (ret)
183 return ret;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200184
Jarkko Nikula5853b222016-08-12 17:02:53 +0300185 info->fwnode = acpi_fwnode_handle(adev);
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300186 *adapter_handle = lookup.adapter_handle;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200187
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300188 /* Then fill IRQ number if any */
Jarkko Nikula5853b222016-08-12 17:02:53 +0300189 INIT_LIST_HEAD(&resource_list);
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300190 ret = acpi_dev_get_resources(adev, &resource_list, NULL, NULL);
191 if (ret < 0)
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300192 return -EINVAL;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300193
194 resource_list_for_each_entry(entry, &resource_list) {
195 if (resource_type(entry->res) == IORESOURCE_IRQ) {
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300196 info->irq = entry->res->start;
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300197 break;
198 }
199 }
200
201 acpi_dev_free_resource_list(&resource_list);
202
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300203 strlcpy(info->type, dev_name(&adev->dev), sizeof(info->type));
204
205 return 0;
206}
207
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300208static void i2c_acpi_register_device(struct i2c_adapter *adapter,
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300209 struct acpi_device *adev,
210 struct i2c_board_info *info)
211{
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200212 adev->power.flags.ignore_parent = true;
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300213 acpi_device_set_enumerated(adev);
214
215 if (!i2c_new_device(adapter, info)) {
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200216 adev->power.flags.ignore_parent = false;
217 dev_err(&adapter->dev,
218 "failed to add I2C device %s from ACPI\n",
219 dev_name(&adev->dev));
220 }
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300221}
222
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300223static acpi_status i2c_acpi_add_device(acpi_handle handle, u32 level,
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300224 void *data, void **return_value)
225{
226 struct i2c_adapter *adapter = data;
227 struct acpi_device *adev;
228 acpi_handle adapter_handle;
229 struct i2c_board_info info;
230
231 if (acpi_bus_get_device(handle, &adev))
232 return AE_OK;
233
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300234 if (i2c_acpi_get_info(adev, &info, &adapter_handle))
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300235 return AE_OK;
236
237 if (adapter_handle != ACPI_HANDLE(&adapter->dev))
238 return AE_OK;
239
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300240 i2c_acpi_register_device(adapter, adev, &info);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200241
242 return AE_OK;
243}
244
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300245#define I2C_ACPI_MAX_SCAN_DEPTH 32
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300246
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200247/**
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300248 * i2c_acpi_register_devices - enumerate I2C slave devices behind adapter
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200249 * @adap: pointer to adapter
250 *
251 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
252 * namespace. When a device is found it will be added to the Linux device
253 * model and bound to the corresponding ACPI handle.
254 */
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300255static void i2c_acpi_register_devices(struct i2c_adapter *adap)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200256{
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200257 acpi_status status;
258
Dustin Byford8eb5c872015-10-23 12:27:07 -0700259 if (!has_acpi_companion(&adap->dev))
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200260 return;
261
Mika Westerberg166c2ba2015-10-07 13:18:44 +0300262 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300263 I2C_ACPI_MAX_SCAN_DEPTH,
264 i2c_acpi_add_device, NULL,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200265 adap, NULL);
266 if (ACPI_FAILURE(status))
267 dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
268}
269
Jarkko Nikula5853b222016-08-12 17:02:53 +0300270static acpi_status i2c_acpi_lookup_speed(acpi_handle handle, u32 level,
271 void *data, void **return_value)
272{
273 struct i2c_acpi_lookup *lookup = data;
274 struct acpi_device *adev;
275
276 if (acpi_bus_get_device(handle, &adev))
277 return AE_OK;
278
279 if (i2c_acpi_do_lookup(adev, lookup))
280 return AE_OK;
281
282 if (lookup->search_handle != lookup->adapter_handle)
283 return AE_OK;
284
285 if (lookup->speed <= lookup->min_speed)
286 lookup->min_speed = lookup->speed;
287
288 return AE_OK;
289}
290
291/**
292 * i2c_acpi_find_bus_speed - find I2C bus speed from ACPI
293 * @dev: The device owning the bus
294 *
295 * Find the I2C bus speed by walking the ACPI namespace for all I2C slaves
296 * devices connected to this bus and use the speed of slowest device.
297 *
298 * Returns the speed in Hz or zero
299 */
300u32 i2c_acpi_find_bus_speed(struct device *dev)
301{
302 struct i2c_acpi_lookup lookup;
303 struct i2c_board_info dummy;
304 acpi_status status;
305
306 if (!has_acpi_companion(dev))
307 return 0;
308
309 memset(&lookup, 0, sizeof(lookup));
310 lookup.search_handle = ACPI_HANDLE(dev);
311 lookup.min_speed = UINT_MAX;
312 lookup.info = &dummy;
313
314 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
315 I2C_ACPI_MAX_SCAN_DEPTH,
316 i2c_acpi_lookup_speed, NULL,
317 &lookup, NULL);
318
319 if (ACPI_FAILURE(status)) {
320 dev_warn(dev, "unable to find I2C bus speed from ACPI\n");
321 return 0;
322 }
323
324 return lookup.min_speed != UINT_MAX ? lookup.min_speed : 0;
325}
326EXPORT_SYMBOL_GPL(i2c_acpi_find_bus_speed);
327
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300328static int i2c_acpi_match_adapter(struct device *dev, void *data)
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300329{
330 struct i2c_adapter *adapter = i2c_verify_adapter(dev);
331
332 if (!adapter)
333 return 0;
334
335 return ACPI_HANDLE(dev) == (acpi_handle)data;
336}
337
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300338static int i2c_acpi_match_device(struct device *dev, void *data)
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300339{
340 return ACPI_COMPANION(dev) == data;
341}
342
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300343static struct i2c_adapter *i2c_acpi_find_adapter_by_handle(acpi_handle handle)
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300344{
345 struct device *dev;
346
347 dev = bus_find_device(&i2c_bus_type, NULL, handle,
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300348 i2c_acpi_match_adapter);
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300349 return dev ? i2c_verify_adapter(dev) : NULL;
350}
351
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300352static struct i2c_client *i2c_acpi_find_client_by_adev(struct acpi_device *adev)
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300353{
354 struct device *dev;
355
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300356 dev = bus_find_device(&i2c_bus_type, NULL, adev, i2c_acpi_match_device);
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300357 return dev ? i2c_verify_client(dev) : NULL;
358}
359
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300360static int i2c_acpi_notify(struct notifier_block *nb, unsigned long value,
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300361 void *arg)
362{
363 struct acpi_device *adev = arg;
364 struct i2c_board_info info;
365 acpi_handle adapter_handle;
366 struct i2c_adapter *adapter;
367 struct i2c_client *client;
368
369 switch (value) {
370 case ACPI_RECONFIG_DEVICE_ADD:
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300371 if (i2c_acpi_get_info(adev, &info, &adapter_handle))
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300372 break;
373
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300374 adapter = i2c_acpi_find_adapter_by_handle(adapter_handle);
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300375 if (!adapter)
376 break;
377
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300378 i2c_acpi_register_device(adapter, adev, &info);
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300379 break;
380 case ACPI_RECONFIG_DEVICE_REMOVE:
381 if (!acpi_device_enumerated(adev))
382 break;
383
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300384 client = i2c_acpi_find_client_by_adev(adev);
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300385 if (!client)
386 break;
387
388 i2c_unregister_device(client);
389 put_device(&client->dev);
390 break;
391 }
392
393 return NOTIFY_OK;
394}
395
396static struct notifier_block i2c_acpi_notifier = {
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300397 .notifier_call = i2c_acpi_notify,
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300398};
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200399#else /* CONFIG_ACPI */
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300400static inline void i2c_acpi_register_devices(struct i2c_adapter *adap) { }
Octavian Purdila525e6fa2016-07-08 19:13:10 +0300401extern struct notifier_block i2c_acpi_notifier;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200402#endif /* CONFIG_ACPI */
403
404#ifdef CONFIG_ACPI_I2C_OPREGION
405static int acpi_gsb_i2c_read_bytes(struct i2c_client *client,
406 u8 cmd, u8 *data, u8 data_len)
407{
408
409 struct i2c_msg msgs[2];
410 int ret;
411 u8 *buffer;
412
413 buffer = kzalloc(data_len, GFP_KERNEL);
414 if (!buffer)
415 return AE_NO_MEMORY;
416
417 msgs[0].addr = client->addr;
418 msgs[0].flags = client->flags;
419 msgs[0].len = 1;
420 msgs[0].buf = &cmd;
421
422 msgs[1].addr = client->addr;
423 msgs[1].flags = client->flags | I2C_M_RD;
424 msgs[1].len = data_len;
425 msgs[1].buf = buffer;
426
427 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
428 if (ret < 0)
429 dev_err(&client->adapter->dev, "i2c read failed\n");
430 else
431 memcpy(data, buffer, data_len);
432
433 kfree(buffer);
434 return ret;
435}
436
437static int acpi_gsb_i2c_write_bytes(struct i2c_client *client,
438 u8 cmd, u8 *data, u8 data_len)
439{
440
441 struct i2c_msg msgs[1];
442 u8 *buffer;
443 int ret = AE_OK;
444
445 buffer = kzalloc(data_len + 1, GFP_KERNEL);
446 if (!buffer)
447 return AE_NO_MEMORY;
448
449 buffer[0] = cmd;
450 memcpy(buffer + 1, data, data_len);
451
452 msgs[0].addr = client->addr;
453 msgs[0].flags = client->flags;
454 msgs[0].len = data_len + 1;
455 msgs[0].buf = buffer;
456
457 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
458 if (ret < 0)
459 dev_err(&client->adapter->dev, "i2c write failed\n");
460
461 kfree(buffer);
462 return ret;
463}
464
465static acpi_status
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300466i2c_acpi_space_handler(u32 function, acpi_physical_address command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200467 u32 bits, u64 *value64,
468 void *handler_context, void *region_context)
469{
470 struct gsb_buffer *gsb = (struct gsb_buffer *)value64;
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300471 struct i2c_acpi_handler_data *data = handler_context;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200472 struct acpi_connection_info *info = &data->info;
473 struct acpi_resource_i2c_serialbus *sb;
474 struct i2c_adapter *adapter = data->adapter;
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300475 struct i2c_client *client;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200476 struct acpi_resource *ares;
477 u32 accessor_type = function >> 16;
478 u8 action = function & ACPI_IO_MASK;
Wolfram Sang4470c722014-11-18 15:12:43 +0100479 acpi_status ret;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200480 int status;
481
482 ret = acpi_buffer_to_resource(info->connection, info->length, &ares);
483 if (ACPI_FAILURE(ret))
484 return ret;
485
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300486 client = kzalloc(sizeof(*client), GFP_KERNEL);
487 if (!client) {
488 ret = AE_NO_MEMORY;
489 goto err;
490 }
491
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200492 if (!value64 || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) {
493 ret = AE_BAD_PARAMETER;
494 goto err;
495 }
496
497 sb = &ares->data.i2c_serial_bus;
498 if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C) {
499 ret = AE_BAD_PARAMETER;
500 goto err;
501 }
502
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300503 client->adapter = adapter;
504 client->addr = sb->slave_address;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200505
506 if (sb->access_mode == ACPI_I2C_10BIT_MODE)
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300507 client->flags |= I2C_CLIENT_TEN;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200508
509 switch (accessor_type) {
510 case ACPI_GSB_ACCESS_ATTRIB_SEND_RCV:
511 if (action == ACPI_READ) {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300512 status = i2c_smbus_read_byte(client);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200513 if (status >= 0) {
514 gsb->bdata = status;
515 status = 0;
516 }
517 } else {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300518 status = i2c_smbus_write_byte(client, gsb->bdata);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200519 }
520 break;
521
522 case ACPI_GSB_ACCESS_ATTRIB_BYTE:
523 if (action == ACPI_READ) {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300524 status = i2c_smbus_read_byte_data(client, command);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200525 if (status >= 0) {
526 gsb->bdata = status;
527 status = 0;
528 }
529 } else {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300530 status = i2c_smbus_write_byte_data(client, command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200531 gsb->bdata);
532 }
533 break;
534
535 case ACPI_GSB_ACCESS_ATTRIB_WORD:
536 if (action == ACPI_READ) {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300537 status = i2c_smbus_read_word_data(client, command);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200538 if (status >= 0) {
539 gsb->wdata = status;
540 status = 0;
541 }
542 } else {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300543 status = i2c_smbus_write_word_data(client, command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200544 gsb->wdata);
545 }
546 break;
547
548 case ACPI_GSB_ACCESS_ATTRIB_BLOCK:
549 if (action == ACPI_READ) {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300550 status = i2c_smbus_read_block_data(client, command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200551 gsb->data);
552 if (status >= 0) {
553 gsb->len = status;
554 status = 0;
555 }
556 } else {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300557 status = i2c_smbus_write_block_data(client, command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200558 gsb->len, gsb->data);
559 }
560 break;
561
562 case ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE:
563 if (action == ACPI_READ) {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300564 status = acpi_gsb_i2c_read_bytes(client, command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200565 gsb->data, info->access_length);
566 if (status > 0)
567 status = 0;
568 } else {
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300569 status = acpi_gsb_i2c_write_bytes(client, command,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200570 gsb->data, info->access_length);
571 }
572 break;
573
574 default:
Wolfram Sangbe309c32016-07-09 13:35:03 +0900575 dev_warn(&adapter->dev, "protocol 0x%02x not supported for client 0x%02x\n",
576 accessor_type, client->addr);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200577 ret = AE_BAD_PARAMETER;
578 goto err;
579 }
580
581 gsb->status = status;
582
583 err:
Jarkko Nikula7ef85f52015-05-20 16:36:52 +0300584 kfree(client);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200585 ACPI_FREE(ares);
586 return ret;
587}
588
589
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300590static int i2c_acpi_install_space_handler(struct i2c_adapter *adapter)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200591{
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200592 acpi_handle handle;
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300593 struct i2c_acpi_handler_data *data;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200594 acpi_status status;
595
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200596 if (!adapter->dev.parent)
597 return -ENODEV;
598
599 handle = ACPI_HANDLE(adapter->dev.parent);
600
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200601 if (!handle)
602 return -ENODEV;
603
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300604 data = kzalloc(sizeof(struct i2c_acpi_handler_data),
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200605 GFP_KERNEL);
606 if (!data)
607 return -ENOMEM;
608
609 data->adapter = adapter;
610 status = acpi_bus_attach_private_data(handle, (void *)data);
611 if (ACPI_FAILURE(status)) {
612 kfree(data);
613 return -ENOMEM;
614 }
615
616 status = acpi_install_address_space_handler(handle,
617 ACPI_ADR_SPACE_GSBUS,
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300618 &i2c_acpi_space_handler,
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200619 NULL,
620 data);
621 if (ACPI_FAILURE(status)) {
622 dev_err(&adapter->dev, "Error installing i2c space handler\n");
623 acpi_bus_detach_private_data(handle);
624 kfree(data);
625 return -ENOMEM;
626 }
627
Lan Tianyu40e7fcb2014-11-23 21:22:54 +0800628 acpi_walk_dep_device_list(handle);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200629 return 0;
630}
631
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300632static void i2c_acpi_remove_space_handler(struct i2c_adapter *adapter)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200633{
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200634 acpi_handle handle;
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300635 struct i2c_acpi_handler_data *data;
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200636 acpi_status status;
637
Peter Hüwe0aef44e2014-09-12 21:09:47 +0200638 if (!adapter->dev.parent)
639 return;
640
641 handle = ACPI_HANDLE(adapter->dev.parent);
642
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200643 if (!handle)
644 return;
645
646 acpi_remove_address_space_handler(handle,
647 ACPI_ADR_SPACE_GSBUS,
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300648 &i2c_acpi_space_handler);
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200649
650 status = acpi_bus_get_private_data(handle, (void **)&data);
651 if (ACPI_SUCCESS(status))
652 kfree(data);
653
654 acpi_bus_detach_private_data(handle);
655}
656#else /* CONFIG_ACPI_I2C_OPREGION */
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300657static inline void i2c_acpi_remove_space_handler(struct i2c_adapter *adapter)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200658{ }
659
Jarkko Nikulaaec809f2016-08-12 17:02:52 +0300660static inline int i2c_acpi_install_space_handler(struct i2c_adapter *adapter)
Wolfram Sang17f4a5c2014-09-22 19:41:00 +0200661{ return 0; }
662#endif /* CONFIG_ACPI_I2C_OPREGION */
663
David Brownellf37dd802007-02-13 22:09:00 +0100664/* ------------------------------------------------------------------------- */
665
Jean Delvared2653e92008-04-29 23:11:39 +0200666static const struct i2c_device_id *i2c_match_id(const struct i2c_device_id *id,
667 const struct i2c_client *client)
668{
669 while (id->name[0]) {
670 if (strcmp(client->name, id->name) == 0)
671 return id;
672 id++;
673 }
674 return NULL;
675}
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677static int i2c_device_match(struct device *dev, struct device_driver *drv)
678{
Jean Delvare51298d12009-09-18 22:45:45 +0200679 struct i2c_client *client = i2c_verify_client(dev);
680 struct i2c_driver *driver;
David Brownell7b4fbc52007-05-01 23:26:30 +0200681
Jean Delvare51298d12009-09-18 22:45:45 +0200682 if (!client)
683 return 0;
684
Grant Likely959e85f2010-06-08 07:48:19 -0600685 /* Attempt an OF style match */
686 if (of_driver_match_device(dev, drv))
687 return 1;
688
Mika Westerberg907ddf82012-11-23 12:23:40 +0100689 /* Then ACPI style match */
690 if (acpi_driver_match_device(dev, drv))
691 return 1;
692
Jean Delvare51298d12009-09-18 22:45:45 +0200693 driver = to_i2c_driver(drv);
Jean Delvared2653e92008-04-29 23:11:39 +0200694 /* match on an id table if there is one */
695 if (driver->id_table)
696 return i2c_match_id(driver->id_table, client) != NULL;
697
Jean Delvareeb8a7902008-05-18 20:49:41 +0200698 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Kay Sievers7eff2e72007-08-14 15:15:12 +0200701static int i2c_device_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell7b4fbc52007-05-01 23:26:30 +0200702{
Wolfram Sang8dcf3212016-03-23 20:47:02 +0100703 struct i2c_client *client = to_i2c_client(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800704 int rc;
705
706 rc = acpi_device_uevent_modalias(dev, env);
707 if (rc != -ENODEV)
708 return rc;
David Brownell7b4fbc52007-05-01 23:26:30 +0200709
Wolfram Sang8dcf3212016-03-23 20:47:02 +0100710 return add_uevent_var(env, "MODALIAS=%s%s", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +0200711}
712
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530713/* i2c bus recovery routines */
714static int get_scl_gpio_value(struct i2c_adapter *adap)
715{
716 return gpio_get_value(adap->bus_recovery_info->scl_gpio);
717}
718
719static void set_scl_gpio_value(struct i2c_adapter *adap, int val)
720{
721 gpio_set_value(adap->bus_recovery_info->scl_gpio, val);
722}
723
724static int get_sda_gpio_value(struct i2c_adapter *adap)
725{
726 return gpio_get_value(adap->bus_recovery_info->sda_gpio);
727}
728
729static int i2c_get_gpios_for_recovery(struct i2c_adapter *adap)
730{
731 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
732 struct device *dev = &adap->dev;
733 int ret = 0;
734
735 ret = gpio_request_one(bri->scl_gpio, GPIOF_OPEN_DRAIN |
736 GPIOF_OUT_INIT_HIGH, "i2c-scl");
737 if (ret) {
738 dev_warn(dev, "Can't get SCL gpio: %d\n", bri->scl_gpio);
739 return ret;
740 }
741
742 if (bri->get_sda) {
743 if (gpio_request_one(bri->sda_gpio, GPIOF_IN, "i2c-sda")) {
744 /* work without SDA polling */
745 dev_warn(dev, "Can't get SDA gpio: %d. Not using SDA polling\n",
746 bri->sda_gpio);
747 bri->get_sda = NULL;
748 }
749 }
750
751 return ret;
752}
753
754static void i2c_put_gpios_for_recovery(struct i2c_adapter *adap)
755{
756 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
757
758 if (bri->get_sda)
759 gpio_free(bri->sda_gpio);
760
761 gpio_free(bri->scl_gpio);
762}
763
764/*
765 * We are generating clock pulses. ndelay() determines durating of clk pulses.
766 * We will generate clock with rate 100 KHz and so duration of both clock levels
767 * is: delay in ns = (10^6 / 100) / 2
768 */
769#define RECOVERY_NDELAY 5000
770#define RECOVERY_CLK_CNT 9
771
772static int i2c_generic_recovery(struct i2c_adapter *adap)
773{
774 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
775 int i = 0, val = 1, ret = 0;
776
777 if (bri->prepare_recovery)
Grygorii Strashko2b2190a2015-04-06 15:38:39 +0300778 bri->prepare_recovery(adap);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530779
Jan Luebbe8b062602015-07-08 16:35:06 +0200780 bri->set_scl(adap, val);
781 ndelay(RECOVERY_NDELAY);
782
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530783 /*
784 * By this time SCL is high, as we need to give 9 falling-rising edges
785 */
786 while (i++ < RECOVERY_CLK_CNT * 2) {
787 if (val) {
788 /* Break if SDA is high */
789 if (bri->get_sda && bri->get_sda(adap))
790 break;
791 /* SCL shouldn't be low here */
792 if (!bri->get_scl(adap)) {
793 dev_err(&adap->dev,
794 "SCL is stuck low, exit recovery\n");
795 ret = -EBUSY;
796 break;
797 }
798 }
799
800 val = !val;
801 bri->set_scl(adap, val);
802 ndelay(RECOVERY_NDELAY);
803 }
804
805 if (bri->unprepare_recovery)
Grygorii Strashko2b2190a2015-04-06 15:38:39 +0300806 bri->unprepare_recovery(adap);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530807
808 return ret;
809}
810
811int i2c_generic_scl_recovery(struct i2c_adapter *adap)
812{
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530813 return i2c_generic_recovery(adap);
814}
Mark Brownc1c21f42015-04-15 19:18:39 +0100815EXPORT_SYMBOL_GPL(i2c_generic_scl_recovery);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530816
817int i2c_generic_gpio_recovery(struct i2c_adapter *adap)
818{
819 int ret;
820
821 ret = i2c_get_gpios_for_recovery(adap);
822 if (ret)
823 return ret;
824
825 ret = i2c_generic_recovery(adap);
826 i2c_put_gpios_for_recovery(adap);
827
828 return ret;
829}
Mark Brownc1c21f42015-04-15 19:18:39 +0100830EXPORT_SYMBOL_GPL(i2c_generic_gpio_recovery);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530831
832int i2c_recover_bus(struct i2c_adapter *adap)
833{
834 if (!adap->bus_recovery_info)
835 return -EOPNOTSUPP;
836
837 dev_dbg(&adap->dev, "Trying i2c bus recovery\n");
838 return adap->bus_recovery_info->recover_bus(adap);
839}
Mark Brownc1c21f42015-04-15 19:18:39 +0100840EXPORT_SYMBOL_GPL(i2c_recover_bus);
Viresh Kumar5f9296b2012-02-28 18:26:31 +0530841
Wolfram Sangd3b11d82016-07-09 13:34:59 +0900842static void i2c_init_recovery(struct i2c_adapter *adap)
843{
844 struct i2c_bus_recovery_info *bri = adap->bus_recovery_info;
845 char *err_str;
846
847 if (!bri)
848 return;
849
850 if (!bri->recover_bus) {
851 err_str = "no recover_bus() found";
852 goto err;
853 }
854
855 /* Generic GPIO recovery */
856 if (bri->recover_bus == i2c_generic_gpio_recovery) {
857 if (!gpio_is_valid(bri->scl_gpio)) {
858 err_str = "invalid SCL gpio";
859 goto err;
860 }
861
862 if (gpio_is_valid(bri->sda_gpio))
863 bri->get_sda = get_sda_gpio_value;
864 else
865 bri->get_sda = NULL;
866
867 bri->get_scl = get_scl_gpio_value;
868 bri->set_scl = set_scl_gpio_value;
869 } else if (bri->recover_bus == i2c_generic_scl_recovery) {
870 /* Generic SCL recovery */
871 if (!bri->set_scl || !bri->get_scl) {
872 err_str = "no {get|set}_scl() found";
873 goto err;
874 }
875 }
876
877 return;
878 err:
879 dev_err(&adap->dev, "Not using recovery: %s\n", err_str);
880 adap->bus_recovery_info = NULL;
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static int i2c_device_probe(struct device *dev)
884{
Jean Delvare51298d12009-09-18 22:45:45 +0200885 struct i2c_client *client = i2c_verify_client(dev);
886 struct i2c_driver *driver;
Hans Verkuil50c33042008-03-12 14:15:00 +0100887 int status;
David Brownell7b4fbc52007-05-01 23:26:30 +0200888
Jean Delvare51298d12009-09-18 22:45:45 +0200889 if (!client)
890 return 0;
891
Mika Westerberg845c8772015-05-06 13:29:08 +0300892 if (!client->irq) {
893 int irq = -ENOENT;
894
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700895 if (dev->of_node) {
896 irq = of_irq_get_byname(dev->of_node, "irq");
897 if (irq == -EINVAL || irq == -ENODATA)
898 irq = of_irq_get(dev->of_node, 0);
899 } else if (ACPI_COMPANION(dev)) {
Mika Westerberg845c8772015-05-06 13:29:08 +0300900 irq = acpi_dev_gpio_irq_get(ACPI_COMPANION(dev), 0);
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700901 }
Geert Uytterhoeven6f34be72014-11-17 12:43:00 +0100902 if (irq == -EPROBE_DEFER)
Laurent Pinchart2fd36c552014-10-30 15:59:38 +0200903 return irq;
Geert Uytterhoeven6f34be72014-11-17 12:43:00 +0100904 if (irq < 0)
905 irq = 0;
Laurent Pinchart2fd36c552014-10-30 15:59:38 +0200906
907 client->irq = irq;
908 }
909
Jean Delvare51298d12009-09-18 22:45:45 +0200910 driver = to_i2c_driver(dev->driver);
Jean Delvaree0457442008-07-14 22:38:30 +0200911 if (!driver->probe || !driver->id_table)
David Brownell7b4fbc52007-05-01 23:26:30 +0200912 return -ENODEV;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +0200913
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700914 if (client->flags & I2C_CLIENT_WAKE) {
915 int wakeirq = -ENOENT;
916
917 if (dev->of_node) {
918 wakeirq = of_irq_get_byname(dev->of_node, "wakeup");
919 if (wakeirq == -EPROBE_DEFER)
920 return wakeirq;
921 }
922
923 device_init_wakeup(&client->dev, true);
924
925 if (wakeirq > 0 && wakeirq != client->irq)
926 status = dev_pm_set_dedicated_wake_irq(dev, wakeirq);
927 else if (client->irq > 0)
Grygorii Strashkoc18fba22015-11-12 15:42:26 +0200928 status = dev_pm_set_wake_irq(dev, client->irq);
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700929 else
930 status = 0;
931
932 if (status)
933 dev_warn(&client->dev, "failed to set up wakeup irq");
934 }
935
David Brownell7b4fbc52007-05-01 23:26:30 +0200936 dev_dbg(dev, "probe\n");
Jean Delvared2653e92008-04-29 23:11:39 +0200937
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200938 status = of_clk_set_defaults(dev->of_node, false);
939 if (status < 0)
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700940 goto err_clear_wakeup_irq;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200941
Ulf Hanssone09b0d42014-09-19 20:27:39 +0200942 status = dev_pm_domain_attach(&client->dev, true);
Kieran Bingham74cedd32015-10-12 21:54:43 +0100943 if (status == -EPROBE_DEFER)
944 goto err_clear_wakeup_irq;
945
946 status = driver->probe(client, i2c_match_id(driver->id_table, client));
947 if (status)
948 goto err_detach_pm_domain;
Wolfram Sang72fa8182014-01-21 17:48:34 +0100949
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700950 return 0;
951
952err_detach_pm_domain:
953 dev_pm_domain_detach(&client->dev, true);
954err_clear_wakeup_irq:
955 dev_pm_clear_wake_irq(&client->dev);
956 device_init_wakeup(&client->dev, false);
Hans Verkuil50c33042008-03-12 14:15:00 +0100957 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960static int i2c_device_remove(struct device *dev)
961{
Jean Delvare51298d12009-09-18 22:45:45 +0200962 struct i2c_client *client = i2c_verify_client(dev);
David Brownella1d9e6e2007-05-01 23:26:30 +0200963 struct i2c_driver *driver;
Wolfram Sang72fa8182014-01-21 17:48:34 +0100964 int status = 0;
David Brownella1d9e6e2007-05-01 23:26:30 +0200965
Jean Delvare51298d12009-09-18 22:45:45 +0200966 if (!client || !dev->driver)
David Brownella1d9e6e2007-05-01 23:26:30 +0200967 return 0;
968
969 driver = to_i2c_driver(dev->driver);
970 if (driver->remove) {
971 dev_dbg(dev, "remove\n");
972 status = driver->remove(client);
David Brownella1d9e6e2007-05-01 23:26:30 +0200973 }
Wolfram Sang72fa8182014-01-21 17:48:34 +0100974
Ulf Hanssone09b0d42014-09-19 20:27:39 +0200975 dev_pm_domain_detach(&client->dev, true);
Dmitry Torokhov3fffd122015-08-17 23:52:51 -0700976
977 dev_pm_clear_wake_irq(&client->dev);
978 device_init_wakeup(&client->dev, false);
979
David Brownella1d9e6e2007-05-01 23:26:30 +0200980 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
David Brownellf37dd802007-02-13 22:09:00 +0100983static void i2c_device_shutdown(struct device *dev)
984{
Jean Delvare51298d12009-09-18 22:45:45 +0200985 struct i2c_client *client = i2c_verify_client(dev);
David Brownellf37dd802007-02-13 22:09:00 +0100986 struct i2c_driver *driver;
987
Jean Delvare51298d12009-09-18 22:45:45 +0200988 if (!client || !dev->driver)
David Brownellf37dd802007-02-13 22:09:00 +0100989 return;
990 driver = to_i2c_driver(dev->driver);
991 if (driver->shutdown)
Jean Delvare51298d12009-09-18 22:45:45 +0200992 driver->shutdown(client);
David Brownellf37dd802007-02-13 22:09:00 +0100993}
994
David Brownell9c1600e2007-05-01 23:26:31 +0200995static void i2c_client_dev_release(struct device *dev)
996{
997 kfree(to_i2c_client(dev));
998}
999
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001000static ssize_t
Jean Delvare4f8cf822009-09-18 22:45:46 +02001001show_name(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +02001002{
Jean Delvare4f8cf822009-09-18 22:45:46 +02001003 return sprintf(buf, "%s\n", dev->type == &i2c_client_type ?
1004 to_i2c_client(dev)->name : to_i2c_adapter(dev)->name);
David Brownell7b4fbc52007-05-01 23:26:30 +02001005}
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001006static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
David Brownell7b4fbc52007-05-01 23:26:30 +02001007
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001008static ssize_t
1009show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
David Brownell7b4fbc52007-05-01 23:26:30 +02001010{
1011 struct i2c_client *client = to_i2c_client(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +08001012 int len;
1013
1014 len = acpi_device_modalias(dev, buf, PAGE_SIZE -1);
1015 if (len != -ENODEV)
1016 return len;
1017
Jean Delvareeb8a7902008-05-18 20:49:41 +02001018 return sprintf(buf, "%s%s\n", I2C_MODULE_PREFIX, client->name);
David Brownell7b4fbc52007-05-01 23:26:30 +02001019}
Jean Delvare51298d12009-09-18 22:45:45 +02001020static DEVICE_ATTR(modalias, S_IRUGO, show_modalias, NULL);
1021
1022static struct attribute *i2c_dev_attrs[] = {
1023 &dev_attr_name.attr,
David Brownell7b4fbc52007-05-01 23:26:30 +02001024 /* modalias helps coldplug: modprobe $(cat .../modalias) */
Jean Delvare51298d12009-09-18 22:45:45 +02001025 &dev_attr_modalias.attr,
1026 NULL
1027};
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001028ATTRIBUTE_GROUPS(i2c_dev);
sonic zhang54067ee2009-12-14 21:17:30 +01001029
Jon Smirle9ca9eb2008-07-14 22:38:35 +02001030struct bus_type i2c_bus_type = {
David Brownellf37dd802007-02-13 22:09:00 +01001031 .name = "i2c",
1032 .match = i2c_device_match,
1033 .probe = i2c_device_probe,
1034 .remove = i2c_device_remove,
1035 .shutdown = i2c_device_shutdown,
Russell Kingb864c7d2006-01-05 14:37:50 +00001036};
Jon Smirle9ca9eb2008-07-14 22:38:35 +02001037EXPORT_SYMBOL_GPL(i2c_bus_type);
Russell Kingb864c7d2006-01-05 14:37:50 +00001038
Jean Delvare51298d12009-09-18 22:45:45 +02001039static struct device_type i2c_client_type = {
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001040 .groups = i2c_dev_groups,
Jean Delvare51298d12009-09-18 22:45:45 +02001041 .uevent = i2c_device_uevent,
1042 .release = i2c_client_dev_release,
1043};
1044
David Brownell9b766b82008-01-27 18:14:51 +01001045
1046/**
1047 * i2c_verify_client - return parameter as i2c_client, or NULL
1048 * @dev: device, probably from some driver model iterator
1049 *
1050 * When traversing the driver model tree, perhaps using driver model
1051 * iterators like @device_for_each_child(), you can't assume very much
1052 * about the nodes you find. Use this function to avoid oopses caused
1053 * by wrongly treating some non-I2C device as an i2c_client.
1054 */
1055struct i2c_client *i2c_verify_client(struct device *dev)
1056{
Jean Delvare51298d12009-09-18 22:45:45 +02001057 return (dev->type == &i2c_client_type)
David Brownell9b766b82008-01-27 18:14:51 +01001058 ? to_i2c_client(dev)
1059 : NULL;
1060}
1061EXPORT_SYMBOL(i2c_verify_client);
1062
1063
Wolfram Sangda899f52015-05-18 21:09:12 +02001064/* Return a unique address which takes the flags of the client into account */
1065static unsigned short i2c_encode_flags_to_addr(struct i2c_client *client)
1066{
1067 unsigned short addr = client->addr;
1068
1069 /* For some client flags, add an arbitrary offset to avoid collisions */
1070 if (client->flags & I2C_CLIENT_TEN)
1071 addr |= I2C_ADDR_OFFSET_TEN_BIT;
1072
1073 if (client->flags & I2C_CLIENT_SLAVE)
1074 addr |= I2C_ADDR_OFFSET_SLAVE;
1075
1076 return addr;
1077}
1078
Jean Delvare3a89db52010-06-03 11:33:52 +02001079/* This is a permissive address validity check, I2C address map constraints
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001080 * are purposely not enforced, except for the general call address. */
Wolfram Sangc4019b72015-07-17 12:50:06 +02001081static int i2c_check_addr_validity(unsigned addr, unsigned short flags)
Jean Delvare3a89db52010-06-03 11:33:52 +02001082{
Wolfram Sangc4019b72015-07-17 12:50:06 +02001083 if (flags & I2C_CLIENT_TEN) {
Jean Delvare3a89db52010-06-03 11:33:52 +02001084 /* 10-bit address, all values are valid */
Wolfram Sangc4019b72015-07-17 12:50:06 +02001085 if (addr > 0x3ff)
Jean Delvare3a89db52010-06-03 11:33:52 +02001086 return -EINVAL;
1087 } else {
1088 /* 7-bit address, reject the general call address */
Wolfram Sangc4019b72015-07-17 12:50:06 +02001089 if (addr == 0x00 || addr > 0x7f)
Jean Delvare3a89db52010-06-03 11:33:52 +02001090 return -EINVAL;
1091 }
1092 return 0;
1093}
1094
Jean Delvare656b8762010-06-03 11:33:53 +02001095/* And this is a strict address validity check, used when probing. If a
1096 * device uses a reserved address, then it shouldn't be probed. 7-bit
1097 * addressing is assumed, 10-bit address devices are rare and should be
1098 * explicitly enumerated. */
Wolfram Sang66be60562015-07-17 12:43:22 +02001099static int i2c_check_7bit_addr_validity_strict(unsigned short addr)
Jean Delvare656b8762010-06-03 11:33:53 +02001100{
1101 /*
1102 * Reserved addresses per I2C specification:
1103 * 0x00 General call address / START byte
1104 * 0x01 CBUS address
1105 * 0x02 Reserved for different bus format
1106 * 0x03 Reserved for future purposes
1107 * 0x04-0x07 Hs-mode master code
1108 * 0x78-0x7b 10-bit slave addressing
1109 * 0x7c-0x7f Reserved for future purposes
1110 */
1111 if (addr < 0x08 || addr > 0x77)
1112 return -EINVAL;
1113 return 0;
1114}
1115
Jean Delvare3b5f7942010-06-03 11:33:55 +02001116static int __i2c_check_addr_busy(struct device *dev, void *addrp)
1117{
1118 struct i2c_client *client = i2c_verify_client(dev);
1119 int addr = *(int *)addrp;
1120
Wolfram Sang9bccc702015-07-17 14:48:56 +02001121 if (client && i2c_encode_flags_to_addr(client) == addr)
Jean Delvare3b5f7942010-06-03 11:33:55 +02001122 return -EBUSY;
1123 return 0;
1124}
1125
Michael Lawnick08263742010-08-11 18:21:02 +02001126/* walk up mux tree */
1127static int i2c_check_mux_parents(struct i2c_adapter *adapter, int addr)
1128{
Jean Delvare97cc4d42010-10-24 18:16:57 +02001129 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +02001130 int result;
1131
1132 result = device_for_each_child(&adapter->dev, &addr,
1133 __i2c_check_addr_busy);
1134
Jean Delvare97cc4d42010-10-24 18:16:57 +02001135 if (!result && parent)
1136 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +02001137
1138 return result;
1139}
1140
1141/* recurse down mux tree */
1142static int i2c_check_mux_children(struct device *dev, void *addrp)
1143{
1144 int result;
1145
1146 if (dev->type == &i2c_adapter_type)
1147 result = device_for_each_child(dev, addrp,
1148 i2c_check_mux_children);
1149 else
1150 result = __i2c_check_addr_busy(dev, addrp);
1151
1152 return result;
1153}
1154
Jean Delvare3b5f7942010-06-03 11:33:55 +02001155static int i2c_check_addr_busy(struct i2c_adapter *adapter, int addr)
1156{
Jean Delvare97cc4d42010-10-24 18:16:57 +02001157 struct i2c_adapter *parent = i2c_parent_is_i2c_adapter(adapter);
Michael Lawnick08263742010-08-11 18:21:02 +02001158 int result = 0;
1159
Jean Delvare97cc4d42010-10-24 18:16:57 +02001160 if (parent)
1161 result = i2c_check_mux_parents(parent, addr);
Michael Lawnick08263742010-08-11 18:21:02 +02001162
1163 if (!result)
1164 result = device_for_each_child(&adapter->dev, &addr,
1165 i2c_check_mux_children);
1166
1167 return result;
Jean Delvare3b5f7942010-06-03 11:33:55 +02001168}
1169
David Brownell9c1600e2007-05-01 23:26:31 +02001170/**
Peter Rosin8320f492016-05-04 22:15:27 +02001171 * i2c_adapter_lock_bus - Get exclusive access to an I2C bus segment
Jean Delvarefe61e072010-08-11 18:20:58 +02001172 * @adapter: Target I2C bus segment
Peter Rosin8320f492016-05-04 22:15:27 +02001173 * @flags: I2C_LOCK_ROOT_ADAPTER locks the root i2c adapter, I2C_LOCK_SEGMENT
1174 * locks only this branch in the adapter tree
Jean Delvarefe61e072010-08-11 18:20:58 +02001175 */
Peter Rosin8320f492016-05-04 22:15:27 +02001176static void i2c_adapter_lock_bus(struct i2c_adapter *adapter,
1177 unsigned int flags)
Jean Delvarefe61e072010-08-11 18:20:58 +02001178{
Peter Rosinfa96f0c2016-05-04 22:15:28 +02001179 rt_mutex_lock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +02001180}
Jean Delvarefe61e072010-08-11 18:20:58 +02001181
1182/**
Peter Rosin8320f492016-05-04 22:15:27 +02001183 * i2c_adapter_trylock_bus - Try to get exclusive access to an I2C bus segment
Jean Delvarefe61e072010-08-11 18:20:58 +02001184 * @adapter: Target I2C bus segment
Peter Rosin8320f492016-05-04 22:15:27 +02001185 * @flags: I2C_LOCK_ROOT_ADAPTER trylocks the root i2c adapter, I2C_LOCK_SEGMENT
1186 * trylocks only this branch in the adapter tree
Jean Delvarefe61e072010-08-11 18:20:58 +02001187 */
Peter Rosin8320f492016-05-04 22:15:27 +02001188static int i2c_adapter_trylock_bus(struct i2c_adapter *adapter,
1189 unsigned int flags)
Jean Delvarefe61e072010-08-11 18:20:58 +02001190{
Peter Rosinfa96f0c2016-05-04 22:15:28 +02001191 return rt_mutex_trylock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +02001192}
1193
1194/**
Peter Rosin8320f492016-05-04 22:15:27 +02001195 * i2c_adapter_unlock_bus - Release exclusive access to an I2C bus segment
Jean Delvarefe61e072010-08-11 18:20:58 +02001196 * @adapter: Target I2C bus segment
Peter Rosin8320f492016-05-04 22:15:27 +02001197 * @flags: I2C_LOCK_ROOT_ADAPTER unlocks the root i2c adapter, I2C_LOCK_SEGMENT
1198 * unlocks only this branch in the adapter tree
Jean Delvarefe61e072010-08-11 18:20:58 +02001199 */
Peter Rosin8320f492016-05-04 22:15:27 +02001200static void i2c_adapter_unlock_bus(struct i2c_adapter *adapter,
1201 unsigned int flags)
Jean Delvarefe61e072010-08-11 18:20:58 +02001202{
Peter Rosinfa96f0c2016-05-04 22:15:28 +02001203 rt_mutex_unlock(&adapter->bus_lock);
Jean Delvarefe61e072010-08-11 18:20:58 +02001204}
Jean Delvarefe61e072010-08-11 18:20:58 +02001205
Jarkko Nikula70762ab2013-11-14 14:03:52 +02001206static void i2c_dev_set_name(struct i2c_adapter *adap,
1207 struct i2c_client *client)
1208{
1209 struct acpi_device *adev = ACPI_COMPANION(&client->dev);
1210
1211 if (adev) {
1212 dev_set_name(&client->dev, "i2c-%s", acpi_dev_name(adev));
1213 return;
1214 }
1215
Jarkko Nikula70762ab2013-11-14 14:03:52 +02001216 dev_set_name(&client->dev, "%d-%04x", i2c_adapter_id(adap),
Wolfram Sangda899f52015-05-18 21:09:12 +02001217 i2c_encode_flags_to_addr(client));
Jarkko Nikula70762ab2013-11-14 14:03:52 +02001218}
1219
Jean Delvarefe61e072010-08-11 18:20:58 +02001220/**
Jean Delvaref8a227e2009-06-19 16:58:18 +02001221 * i2c_new_device - instantiate an i2c device
David Brownell9c1600e2007-05-01 23:26:31 +02001222 * @adap: the adapter managing the device
1223 * @info: describes one I2C device; bus_num is ignored
David Brownelld64f73b2007-07-12 14:12:28 +02001224 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +02001225 *
Jean Delvaref8a227e2009-06-19 16:58:18 +02001226 * Create an i2c device. Binding is handled through driver model
1227 * probe()/remove() methods. A driver may be bound to this device when we
1228 * return from this function, or any later moment (e.g. maybe hotplugging will
1229 * load the driver module). This call is not appropriate for use by mainboard
1230 * initialization logic, which usually runs during an arch_initcall() long
1231 * before any i2c_adapter could exist.
David Brownell9c1600e2007-05-01 23:26:31 +02001232 *
1233 * This returns the new i2c client, which may be saved for later use with
1234 * i2c_unregister_device(); or NULL to indicate an error.
1235 */
1236struct i2c_client *
1237i2c_new_device(struct i2c_adapter *adap, struct i2c_board_info const *info)
1238{
1239 struct i2c_client *client;
1240 int status;
1241
1242 client = kzalloc(sizeof *client, GFP_KERNEL);
1243 if (!client)
1244 return NULL;
1245
1246 client->adapter = adap;
1247
1248 client->dev.platform_data = info->platform_data;
David Brownell3bbb8352007-10-13 23:56:29 +02001249
Anton Vorontsov11f1f2a2008-10-22 20:21:33 +02001250 if (info->archdata)
1251 client->dev.archdata = *info->archdata;
1252
Marc Pignatee354252008-08-28 08:33:22 +02001253 client->flags = info->flags;
David Brownell9c1600e2007-05-01 23:26:31 +02001254 client->addr = info->addr;
1255 client->irq = info->irq;
1256
David Brownell9c1600e2007-05-01 23:26:31 +02001257 strlcpy(client->name, info->type, sizeof(client->name));
1258
Wolfram Sangc4019b72015-07-17 12:50:06 +02001259 status = i2c_check_addr_validity(client->addr, client->flags);
Jean Delvare3a89db52010-06-03 11:33:52 +02001260 if (status) {
1261 dev_err(&adap->dev, "Invalid %d-bit I2C address 0x%02hx\n",
1262 client->flags & I2C_CLIENT_TEN ? 10 : 7, client->addr);
1263 goto out_err_silent;
1264 }
1265
Jean Delvaref8a227e2009-06-19 16:58:18 +02001266 /* Check for address business */
Wolfram Sang9bccc702015-07-17 14:48:56 +02001267 status = i2c_check_addr_busy(adap, i2c_encode_flags_to_addr(client));
Jean Delvaref8a227e2009-06-19 16:58:18 +02001268 if (status)
1269 goto out_err;
1270
1271 client->dev.parent = &client->adapter->dev;
1272 client->dev.bus = &i2c_bus_type;
Jean Delvare51298d12009-09-18 22:45:45 +02001273 client->dev.type = &i2c_client_type;
Grant Likelyd12d42f2010-04-13 16:12:28 -07001274 client->dev.of_node = info->of_node;
Rafael J. Wysockice793482015-03-16 23:49:03 +01001275 client->dev.fwnode = info->fwnode;
Jean Delvaref8a227e2009-06-19 16:58:18 +02001276
Jarkko Nikula70762ab2013-11-14 14:03:52 +02001277 i2c_dev_set_name(adap, client);
Jean Delvaref8a227e2009-06-19 16:58:18 +02001278 status = device_register(&client->dev);
1279 if (status)
1280 goto out_err;
1281
Jean Delvaref8a227e2009-06-19 16:58:18 +02001282 dev_dbg(&adap->dev, "client [%s] registered with bus id %s\n",
1283 client->name, dev_name(&client->dev));
1284
David Brownell9c1600e2007-05-01 23:26:31 +02001285 return client;
Jean Delvaref8a227e2009-06-19 16:58:18 +02001286
1287out_err:
1288 dev_err(&adap->dev, "Failed to register i2c client %s at 0x%02x "
1289 "(%d)\n", client->name, client->addr, status);
Jean Delvare3a89db52010-06-03 11:33:52 +02001290out_err_silent:
Jean Delvaref8a227e2009-06-19 16:58:18 +02001291 kfree(client);
1292 return NULL;
David Brownell9c1600e2007-05-01 23:26:31 +02001293}
1294EXPORT_SYMBOL_GPL(i2c_new_device);
1295
1296
1297/**
1298 * i2c_unregister_device - reverse effect of i2c_new_device()
1299 * @client: value returned from i2c_new_device()
David Brownelld64f73b2007-07-12 14:12:28 +02001300 * Context: can sleep
David Brownell9c1600e2007-05-01 23:26:31 +02001301 */
1302void i2c_unregister_device(struct i2c_client *client)
David Brownella1d9e6e2007-05-01 23:26:30 +02001303{
Pantelis Antoniou4f001fd2015-01-24 09:16:29 +02001304 if (client->dev.of_node)
1305 of_node_clear_flag(client->dev.of_node, OF_POPULATED);
Octavian Purdila525e6fa2016-07-08 19:13:10 +03001306 if (ACPI_COMPANION(&client->dev))
1307 acpi_device_clear_enumerated(ACPI_COMPANION(&client->dev));
David Brownella1d9e6e2007-05-01 23:26:30 +02001308 device_unregister(&client->dev);
1309}
David Brownell9c1600e2007-05-01 23:26:31 +02001310EXPORT_SYMBOL_GPL(i2c_unregister_device);
David Brownella1d9e6e2007-05-01 23:26:30 +02001311
1312
Jean Delvare60b129d2008-05-11 20:37:06 +02001313static const struct i2c_device_id dummy_id[] = {
1314 { "dummy", 0 },
1315 { },
1316};
1317
Jean Delvared2653e92008-04-29 23:11:39 +02001318static int dummy_probe(struct i2c_client *client,
1319 const struct i2c_device_id *id)
1320{
1321 return 0;
1322}
1323
1324static int dummy_remove(struct i2c_client *client)
David Brownelle9f13732008-01-27 18:14:52 +01001325{
1326 return 0;
1327}
1328
1329static struct i2c_driver dummy_driver = {
1330 .driver.name = "dummy",
Jean Delvared2653e92008-04-29 23:11:39 +02001331 .probe = dummy_probe,
1332 .remove = dummy_remove,
Jean Delvare60b129d2008-05-11 20:37:06 +02001333 .id_table = dummy_id,
David Brownelle9f13732008-01-27 18:14:52 +01001334};
1335
1336/**
1337 * i2c_new_dummy - return a new i2c device bound to a dummy driver
1338 * @adapter: the adapter managing the device
1339 * @address: seven bit address to be used
David Brownelle9f13732008-01-27 18:14:52 +01001340 * Context: can sleep
1341 *
1342 * This returns an I2C client bound to the "dummy" driver, intended for use
1343 * with devices that consume multiple addresses. Examples of such chips
1344 * include various EEPROMS (like 24c04 and 24c08 models).
1345 *
1346 * These dummy devices have two main uses. First, most I2C and SMBus calls
1347 * except i2c_transfer() need a client handle; the dummy will be that handle.
1348 * And second, this prevents the specified address from being bound to a
1349 * different driver.
1350 *
1351 * This returns the new i2c client, which should be saved for later use with
1352 * i2c_unregister_device(); or NULL to indicate an error.
1353 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001354struct i2c_client *i2c_new_dummy(struct i2c_adapter *adapter, u16 address)
David Brownelle9f13732008-01-27 18:14:52 +01001355{
1356 struct i2c_board_info info = {
Jean Delvare60b129d2008-05-11 20:37:06 +02001357 I2C_BOARD_INFO("dummy", address),
David Brownelle9f13732008-01-27 18:14:52 +01001358 };
1359
David Brownelle9f13732008-01-27 18:14:52 +01001360 return i2c_new_device(adapter, &info);
1361}
1362EXPORT_SYMBOL_GPL(i2c_new_dummy);
1363
Jean-Michel Hautbois0f614d82016-01-31 16:33:00 +01001364/**
1365 * i2c_new_secondary_device - Helper to get the instantiated secondary address
1366 * and create the associated device
1367 * @client: Handle to the primary client
1368 * @name: Handle to specify which secondary address to get
1369 * @default_addr: Used as a fallback if no secondary address was specified
1370 * Context: can sleep
1371 *
1372 * I2C clients can be composed of multiple I2C slaves bound together in a single
1373 * component. The I2C client driver then binds to the master I2C slave and needs
1374 * to create I2C dummy clients to communicate with all the other slaves.
1375 *
1376 * This function creates and returns an I2C dummy client whose I2C address is
1377 * retrieved from the platform firmware based on the given slave name. If no
1378 * address is specified by the firmware default_addr is used.
1379 *
1380 * On DT-based platforms the address is retrieved from the "reg" property entry
1381 * cell whose "reg-names" value matches the slave name.
1382 *
1383 * This returns the new i2c client, which should be saved for later use with
1384 * i2c_unregister_device(); or NULL to indicate an error.
1385 */
1386struct i2c_client *i2c_new_secondary_device(struct i2c_client *client,
1387 const char *name,
1388 u16 default_addr)
1389{
1390 struct device_node *np = client->dev.of_node;
1391 u32 addr = default_addr;
1392 int i;
1393
1394 if (np) {
1395 i = of_property_match_string(np, "reg-names", name);
1396 if (i >= 0)
1397 of_property_read_u32_index(np, "reg", i, &addr);
1398 }
1399
1400 dev_dbg(&client->adapter->dev, "Address for %s : 0x%x\n", name, addr);
1401 return i2c_new_dummy(client->adapter, addr);
1402}
1403EXPORT_SYMBOL_GPL(i2c_new_secondary_device);
1404
David Brownellf37dd802007-02-13 22:09:00 +01001405/* ------------------------------------------------------------------------- */
1406
David Brownell16ffadf2007-05-01 23:26:28 +02001407/* I2C bus adapters -- one roots each I2C or SMBUS segment */
1408
Adrian Bunk83eaaed2007-10-13 23:56:30 +02001409static void i2c_adapter_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
David Brownellef2c83212007-05-01 23:26:28 +02001411 struct i2c_adapter *adap = to_i2c_adapter(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 complete(&adap->dev_released);
1413}
1414
Jean Delvare99cd8e22009-06-19 16:58:20 +02001415/*
Jean Delvare390946b2012-09-10 10:14:02 +02001416 * This function is only needed for mutex_lock_nested, so it is never
1417 * called unless locking correctness checking is enabled. Thus we
1418 * make it inline to avoid a compiler warning. That's what gcc ends up
1419 * doing anyway.
1420 */
1421static inline unsigned int i2c_adapter_depth(struct i2c_adapter *adapter)
1422{
1423 unsigned int depth = 0;
1424
1425 while ((adapter = i2c_parent_is_i2c_adapter(adapter)))
1426 depth++;
1427
1428 return depth;
1429}
1430
1431/*
Jean Delvare99cd8e22009-06-19 16:58:20 +02001432 * Let users instantiate I2C devices through sysfs. This can be used when
1433 * platform initialization code doesn't contain the proper data for
1434 * whatever reason. Also useful for drivers that do device detection and
1435 * detection fails, either because the device uses an unexpected address,
1436 * or this is a compatible device with different ID register values.
1437 *
1438 * Parameter checking may look overzealous, but we really don't want
1439 * the user to provide incorrect parameters.
1440 */
1441static ssize_t
1442i2c_sysfs_new_device(struct device *dev, struct device_attribute *attr,
1443 const char *buf, size_t count)
1444{
1445 struct i2c_adapter *adap = to_i2c_adapter(dev);
1446 struct i2c_board_info info;
1447 struct i2c_client *client;
1448 char *blank, end;
1449 int res;
1450
Jean Delvare99cd8e22009-06-19 16:58:20 +02001451 memset(&info, 0, sizeof(struct i2c_board_info));
1452
1453 blank = strchr(buf, ' ');
1454 if (!blank) {
1455 dev_err(dev, "%s: Missing parameters\n", "new_device");
1456 return -EINVAL;
1457 }
1458 if (blank - buf > I2C_NAME_SIZE - 1) {
1459 dev_err(dev, "%s: Invalid device name\n", "new_device");
1460 return -EINVAL;
1461 }
1462 memcpy(info.type, buf, blank - buf);
1463
1464 /* Parse remaining parameters, reject extra parameters */
1465 res = sscanf(++blank, "%hi%c", &info.addr, &end);
1466 if (res < 1) {
1467 dev_err(dev, "%s: Can't parse I2C address\n", "new_device");
1468 return -EINVAL;
1469 }
1470 if (res > 1 && end != '\n') {
1471 dev_err(dev, "%s: Extra parameters\n", "new_device");
1472 return -EINVAL;
1473 }
1474
Wolfram Sangcfa03272015-07-27 14:03:38 +02001475 if ((info.addr & I2C_ADDR_OFFSET_TEN_BIT) == I2C_ADDR_OFFSET_TEN_BIT) {
1476 info.addr &= ~I2C_ADDR_OFFSET_TEN_BIT;
1477 info.flags |= I2C_CLIENT_TEN;
1478 }
1479
1480 if (info.addr & I2C_ADDR_OFFSET_SLAVE) {
1481 info.addr &= ~I2C_ADDR_OFFSET_SLAVE;
1482 info.flags |= I2C_CLIENT_SLAVE;
1483 }
1484
Jean Delvare99cd8e22009-06-19 16:58:20 +02001485 client = i2c_new_device(adap, &info);
1486 if (!client)
Jean Delvare3a89db52010-06-03 11:33:52 +02001487 return -EINVAL;
Jean Delvare99cd8e22009-06-19 16:58:20 +02001488
1489 /* Keep track of the added device */
Jean Delvaredafc50d2010-08-11 18:21:01 +02001490 mutex_lock(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001491 list_add_tail(&client->detected, &adap->userspace_clients);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001492 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001493 dev_info(dev, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1494 info.type, info.addr);
1495
1496 return count;
1497}
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001498static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001499
1500/*
1501 * And of course let the users delete the devices they instantiated, if
1502 * they got it wrong. This interface can only be used to delete devices
1503 * instantiated by i2c_sysfs_new_device above. This guarantees that we
1504 * don't delete devices to which some kernel code still has references.
1505 *
1506 * Parameter checking may look overzealous, but we really don't want
1507 * the user to delete the wrong device.
1508 */
1509static ssize_t
1510i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr,
1511 const char *buf, size_t count)
1512{
1513 struct i2c_adapter *adap = to_i2c_adapter(dev);
1514 struct i2c_client *client, *next;
1515 unsigned short addr;
1516 char end;
1517 int res;
1518
1519 /* Parse parameters, reject extra parameters */
1520 res = sscanf(buf, "%hi%c", &addr, &end);
1521 if (res < 1) {
1522 dev_err(dev, "%s: Can't parse I2C address\n", "delete_device");
1523 return -EINVAL;
1524 }
1525 if (res > 1 && end != '\n') {
1526 dev_err(dev, "%s: Extra parameters\n", "delete_device");
1527 return -EINVAL;
1528 }
1529
1530 /* Make sure the device was added through sysfs */
1531 res = -ENOENT;
Jean Delvare390946b2012-09-10 10:14:02 +02001532 mutex_lock_nested(&adap->userspace_clients_lock,
1533 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02001534 list_for_each_entry_safe(client, next, &adap->userspace_clients,
1535 detected) {
Wolfram Sangcfa03272015-07-27 14:03:38 +02001536 if (i2c_encode_flags_to_addr(client) == addr) {
Jean Delvare99cd8e22009-06-19 16:58:20 +02001537 dev_info(dev, "%s: Deleting device %s at 0x%02hx\n",
1538 "delete_device", client->name, client->addr);
1539
1540 list_del(&client->detected);
1541 i2c_unregister_device(client);
1542 res = count;
1543 break;
1544 }
1545 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02001546 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvare99cd8e22009-06-19 16:58:20 +02001547
1548 if (res < 0)
1549 dev_err(dev, "%s: Can't find device in list\n",
1550 "delete_device");
1551 return res;
1552}
Alexander Sverdline9b526f2013-05-17 14:56:35 +02001553static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL,
1554 i2c_sysfs_delete_device);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001555
1556static struct attribute *i2c_adapter_attrs[] = {
1557 &dev_attr_name.attr,
1558 &dev_attr_new_device.attr,
1559 &dev_attr_delete_device.attr,
1560 NULL
David Brownell16ffadf2007-05-01 23:26:28 +02001561};
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001562ATTRIBUTE_GROUPS(i2c_adapter);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001563
Michael Lawnick08263742010-08-11 18:21:02 +02001564struct device_type i2c_adapter_type = {
Wolfram Sanga5eb71b2015-01-19 20:12:24 +01001565 .groups = i2c_adapter_groups,
Jean Delvare4f8cf822009-09-18 22:45:46 +02001566 .release = i2c_adapter_dev_release,
David Brownell16ffadf2007-05-01 23:26:28 +02001567};
Michael Lawnick08263742010-08-11 18:21:02 +02001568EXPORT_SYMBOL_GPL(i2c_adapter_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Stephen Warren643dd092012-04-17 12:43:33 -06001570/**
1571 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1572 * @dev: device, probably from some driver model iterator
1573 *
1574 * When traversing the driver model tree, perhaps using driver model
1575 * iterators like @device_for_each_child(), you can't assume very much
1576 * about the nodes you find. Use this function to avoid oopses caused
1577 * by wrongly treating some non-I2C device as an i2c_adapter.
1578 */
1579struct i2c_adapter *i2c_verify_adapter(struct device *dev)
1580{
1581 return (dev->type == &i2c_adapter_type)
1582 ? to_i2c_adapter(dev)
1583 : NULL;
1584}
1585EXPORT_SYMBOL(i2c_verify_adapter);
1586
Jean Delvare2bb50952009-09-18 22:45:46 +02001587#ifdef CONFIG_I2C_COMPAT
1588static struct class_compat *i2c_adapter_compat_class;
1589#endif
1590
David Brownell9c1600e2007-05-01 23:26:31 +02001591static void i2c_scan_static_board_info(struct i2c_adapter *adapter)
1592{
1593 struct i2c_devinfo *devinfo;
1594
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +02001595 down_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +02001596 list_for_each_entry(devinfo, &__i2c_board_list, list) {
1597 if (devinfo->busnum == adapter->nr
1598 && !i2c_new_device(adapter,
1599 &devinfo->board_info))
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01001600 dev_err(&adapter->dev,
1601 "Can't create device at 0x%02x\n",
David Brownell9c1600e2007-05-01 23:26:31 +02001602 devinfo->board_info.addr);
1603 }
Rodolfo Giomettif18c41d2009-06-19 16:58:20 +02001604 up_read(&__i2c_board_lock);
David Brownell9c1600e2007-05-01 23:26:31 +02001605}
1606
Wolfram Sang687b81d2013-07-11 12:56:15 +01001607/* OF support code */
1608
1609#if IS_ENABLED(CONFIG_OF)
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001610static struct i2c_client *of_i2c_register_device(struct i2c_adapter *adap,
1611 struct device_node *node)
1612{
1613 struct i2c_client *result;
1614 struct i2c_board_info info = {};
1615 struct dev_archdata dev_ad = {};
Wolfram Sangb4e2f6a2015-05-19 21:04:40 +02001616 const __be32 *addr_be;
1617 u32 addr;
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001618 int len;
1619
1620 dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
1621
1622 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
1623 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
1624 node->full_name);
1625 return ERR_PTR(-EINVAL);
1626 }
1627
Wolfram Sangb4e2f6a2015-05-19 21:04:40 +02001628 addr_be = of_get_property(node, "reg", &len);
1629 if (!addr_be || (len < sizeof(*addr_be))) {
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001630 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
1631 node->full_name);
1632 return ERR_PTR(-EINVAL);
1633 }
1634
Wolfram Sangb4e2f6a2015-05-19 21:04:40 +02001635 addr = be32_to_cpup(addr_be);
1636 if (addr & I2C_TEN_BIT_ADDRESS) {
1637 addr &= ~I2C_TEN_BIT_ADDRESS;
1638 info.flags |= I2C_CLIENT_TEN;
1639 }
1640
1641 if (addr & I2C_OWN_SLAVE_ADDRESS) {
1642 addr &= ~I2C_OWN_SLAVE_ADDRESS;
1643 info.flags |= I2C_CLIENT_SLAVE;
1644 }
1645
1646 if (i2c_check_addr_validity(addr, info.flags)) {
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001647 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
1648 info.addr, node->full_name);
1649 return ERR_PTR(-EINVAL);
1650 }
1651
Wolfram Sangb4e2f6a2015-05-19 21:04:40 +02001652 info.addr = addr;
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001653 info.of_node = of_node_get(node);
1654 info.archdata = &dev_ad;
1655
1656 if (of_get_property(node, "wakeup-source", NULL))
1657 info.flags |= I2C_CLIENT_WAKE;
1658
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001659 result = i2c_new_device(adap, &info);
1660 if (result == NULL) {
1661 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
1662 node->full_name);
1663 of_node_put(node);
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001664 return ERR_PTR(-EINVAL);
1665 }
1666 return result;
1667}
1668
Wolfram Sang687b81d2013-07-11 12:56:15 +01001669static void of_i2c_register_devices(struct i2c_adapter *adap)
1670{
Wolfram Sang687b81d2013-07-11 12:56:15 +01001671 struct device_node *node;
1672
1673 /* Only register child devices if the adapter has a node pointer set */
1674 if (!adap->dev.of_node)
1675 return;
1676
1677 dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
1678
Pantelis Antoniou4f001fd2015-01-24 09:16:29 +02001679 for_each_available_child_of_node(adap->dev.of_node, node) {
1680 if (of_node_test_and_set_flag(node, OF_POPULATED))
1681 continue;
Pantelis Antonioua430a3452014-10-28 22:36:02 +02001682 of_i2c_register_device(adap, node);
Pantelis Antoniou4f001fd2015-01-24 09:16:29 +02001683 }
Wolfram Sang687b81d2013-07-11 12:56:15 +01001684}
1685
1686static int of_dev_node_match(struct device *dev, void *data)
1687{
1688 return dev->of_node == data;
1689}
1690
1691/* must call put_device() when done with returned i2c_client device */
1692struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
1693{
1694 struct device *dev;
Vladimir Zapolskiye3311462015-07-27 17:30:48 +03001695 struct i2c_client *client;
Wolfram Sang687b81d2013-07-11 12:56:15 +01001696
Vladimir Zapolskiye3311462015-07-27 17:30:48 +03001697 dev = bus_find_device(&i2c_bus_type, NULL, node, of_dev_node_match);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001698 if (!dev)
1699 return NULL;
1700
Vladimir Zapolskiye3311462015-07-27 17:30:48 +03001701 client = i2c_verify_client(dev);
1702 if (!client)
1703 put_device(dev);
1704
1705 return client;
Wolfram Sang687b81d2013-07-11 12:56:15 +01001706}
1707EXPORT_SYMBOL(of_find_i2c_device_by_node);
1708
1709/* must call put_device() when done with returned i2c_adapter device */
1710struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
1711{
1712 struct device *dev;
Vladimir Zapolskiye3311462015-07-27 17:30:48 +03001713 struct i2c_adapter *adapter;
Wolfram Sang687b81d2013-07-11 12:56:15 +01001714
Vladimir Zapolskiye3311462015-07-27 17:30:48 +03001715 dev = bus_find_device(&i2c_bus_type, NULL, node, of_dev_node_match);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001716 if (!dev)
1717 return NULL;
1718
Vladimir Zapolskiye3311462015-07-27 17:30:48 +03001719 adapter = i2c_verify_adapter(dev);
1720 if (!adapter)
1721 put_device(dev);
1722
1723 return adapter;
Wolfram Sang687b81d2013-07-11 12:56:15 +01001724}
1725EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
Vladimir Zapolskiy48e97432015-07-27 17:30:50 +03001726
1727/* must call i2c_put_adapter() when done with returned i2c_adapter device */
1728struct i2c_adapter *of_get_i2c_adapter_by_node(struct device_node *node)
1729{
1730 struct i2c_adapter *adapter;
1731
1732 adapter = of_find_i2c_adapter_by_node(node);
1733 if (!adapter)
1734 return NULL;
1735
1736 if (!try_module_get(adapter->owner)) {
1737 put_device(&adapter->dev);
1738 adapter = NULL;
1739 }
1740
1741 return adapter;
1742}
1743EXPORT_SYMBOL(of_get_i2c_adapter_by_node);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001744#else
1745static void of_i2c_register_devices(struct i2c_adapter *adap) { }
1746#endif /* CONFIG_OF */
1747
Jean Delvare69b00892009-12-06 17:06:27 +01001748static int i2c_do_add_adapter(struct i2c_driver *driver,
1749 struct i2c_adapter *adap)
Jean Delvare026526f2008-01-27 18:14:49 +01001750{
Jean Delvare4735c982008-07-14 22:38:36 +02001751 /* Detect supported devices on that bus, and instantiate them */
1752 i2c_detect(adap, driver);
1753
1754 /* Let legacy drivers scan this bus for matching devices */
Jean Delvare026526f2008-01-27 18:14:49 +01001755 if (driver->attach_adapter) {
Jean Delvarea920ff42011-04-17 10:20:19 +02001756 dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
1757 driver->driver.name);
Jean Delvarefe6fc252011-03-20 14:50:53 +01001758 dev_warn(&adap->dev, "Please use another way to instantiate "
1759 "your i2c_client\n");
Jean Delvare026526f2008-01-27 18:14:49 +01001760 /* We ignore the return code; if it fails, too bad */
1761 driver->attach_adapter(adap);
1762 }
1763 return 0;
1764}
1765
Jean Delvare69b00892009-12-06 17:06:27 +01001766static int __process_new_adapter(struct device_driver *d, void *data)
1767{
1768 return i2c_do_add_adapter(to_i2c_driver(d), data);
1769}
1770
David Brownell6e13e642007-05-01 23:26:31 +02001771static int i2c_register_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Wolfram Sangce0dffa2016-07-09 13:34:58 +09001773 int res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
David Brownell1d0b19c2008-10-14 17:30:05 +02001775 /* Can't register until after driver model init */
Sudip Mukherjee95026652016-03-07 17:19:17 +05301776 if (WARN_ON(!is_registered)) {
Jean Delvare35fc37f2009-06-19 16:58:19 +02001777 res = -EAGAIN;
1778 goto out_list;
1779 }
David Brownell1d0b19c2008-10-14 17:30:05 +02001780
Jean Delvare2236baa2010-11-15 22:40:38 +01001781 /* Sanity checks */
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001782 if (WARN(!adap->name[0], "i2c adapter has no name"))
Wolfram Sangce0dffa2016-07-09 13:34:58 +09001783 goto out_list;
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001784
1785 if (!adap->algo) {
Wolfram Sang44239a52016-07-09 13:35:04 +09001786 pr_err("adapter '%s': no algo supplied!\n", adap->name);
Wolfram Sangce0dffa2016-07-09 13:34:58 +09001787 goto out_list;
Jean Delvare2236baa2010-11-15 22:40:38 +01001788 }
1789
Peter Rosin8320f492016-05-04 22:15:27 +02001790 if (!adap->lock_bus) {
1791 adap->lock_bus = i2c_adapter_lock_bus;
1792 adap->trylock_bus = i2c_adapter_trylock_bus;
1793 adap->unlock_bus = i2c_adapter_unlock_bus;
1794 }
1795
Mika Kuoppala194684e2009-12-06 17:06:22 +01001796 rt_mutex_init(&adap->bus_lock);
Peter Rosin6ef91fc2016-05-04 22:15:29 +02001797 rt_mutex_init(&adap->mux_lock);
Jean Delvaredafc50d2010-08-11 18:21:01 +02001798 mutex_init(&adap->userspace_clients_lock);
Jean Delvare6629dcf2010-05-04 11:09:28 +02001799 INIT_LIST_HEAD(&adap->userspace_clients);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Jean Delvare8fcfef62009-03-28 21:34:43 +01001801 /* Set default timeout to 1 second if not already set */
1802 if (adap->timeout == 0)
1803 adap->timeout = HZ;
1804
Kay Sievers27d9c182009-01-07 14:29:16 +01001805 dev_set_name(&adap->dev, "i2c-%d", adap->nr);
Jean Delvare4f8cf822009-09-18 22:45:46 +02001806 adap->dev.bus = &i2c_bus_type;
1807 adap->dev.type = &i2c_adapter_type;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001808 res = device_register(&adap->dev);
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001809 if (res) {
Wolfram Sang44239a52016-07-09 13:35:04 +09001810 pr_err("adapter '%s': can't register device (%d)\n", adap->name, res);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001811 goto out_list;
Wolfram Sang8ddfe412016-07-09 13:35:00 +09001812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Jean Delvareb6d7b3d2005-07-31 19:02:53 +02001814 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1815
Charles Keepax6ada5c12015-04-16 13:05:19 +01001816 pm_runtime_no_callbacks(&adap->dev);
Linus Walleij04f59142016-04-12 09:57:35 +02001817 pm_suspend_ignore_children(&adap->dev, true);
Wolfram Sang9f924162015-12-23 18:19:28 +01001818 pm_runtime_enable(&adap->dev);
Charles Keepax6ada5c12015-04-16 13:05:19 +01001819
Jean Delvare2bb50952009-09-18 22:45:46 +02001820#ifdef CONFIG_I2C_COMPAT
1821 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1822 adap->dev.parent);
1823 if (res)
1824 dev_warn(&adap->dev,
1825 "Failed to create compatibility class link\n");
1826#endif
1827
Wolfram Sangd3b11d82016-07-09 13:34:59 +09001828 i2c_init_recovery(adap);
Viresh Kumar5f9296b2012-02-28 18:26:31 +05301829
Jean Delvare729d6dd2009-06-19 16:58:18 +02001830 /* create pre-declared device nodes */
Wolfram Sang687b81d2013-07-11 12:56:15 +01001831 of_i2c_register_devices(adap);
Jarkko Nikulaaec809f2016-08-12 17:02:52 +03001832 i2c_acpi_register_devices(adap);
1833 i2c_acpi_install_space_handler(adap);
Wolfram Sang687b81d2013-07-11 12:56:15 +01001834
David Brownell6e13e642007-05-01 23:26:31 +02001835 if (adap->nr < __i2c_first_dynamic_bus_num)
1836 i2c_scan_static_board_info(adap);
1837
Jean Delvare4735c982008-07-14 22:38:36 +02001838 /* Notify drivers */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001839 mutex_lock(&core_lock);
Jean Delvared6703282010-08-11 18:20:59 +02001840 bus_for_each_drv(&i2c_bus_type, NULL, adap, __process_new_adapter);
Jean Delvarecaada322008-01-27 18:14:49 +01001841 mutex_unlock(&core_lock);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001842
1843 return 0;
Jean Delvareb119c6c2006-08-15 18:26:30 +02001844
Jean Delvareb119c6c2006-08-15 18:26:30 +02001845out_list:
Jean Delvare35fc37f2009-06-19 16:58:19 +02001846 mutex_lock(&core_lock);
Jean Delvareb119c6c2006-08-15 18:26:30 +02001847 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02001848 mutex_unlock(&core_lock);
1849 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
David Brownell6e13e642007-05-01 23:26:31 +02001852/**
Doug Andersonee5c2742013-03-01 08:57:31 -08001853 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1854 * @adap: the adapter to register (with adap->nr initialized)
1855 * Context: can sleep
1856 *
1857 * See i2c_add_numbered_adapter() for details.
1858 */
1859static int __i2c_add_numbered_adapter(struct i2c_adapter *adap)
1860{
Wolfram Sang84d0b612016-07-09 13:35:01 +09001861 int id;
Doug Andersonee5c2742013-03-01 08:57:31 -08001862
1863 mutex_lock(&core_lock);
Wolfram Sang84d0b612016-07-09 13:35:01 +09001864 id = idr_alloc(&i2c_adapter_idr, adap, adap->nr, adap->nr + 1, GFP_KERNEL);
Doug Andersonee5c2742013-03-01 08:57:31 -08001865 mutex_unlock(&core_lock);
Wolfram Sang84d0b612016-07-09 13:35:01 +09001866 if (WARN(id < 0, "couldn't get idr"))
Doug Andersonee5c2742013-03-01 08:57:31 -08001867 return id == -ENOSPC ? -EBUSY : id;
1868
1869 return i2c_register_adapter(adap);
1870}
1871
1872/**
David Brownell6e13e642007-05-01 23:26:31 +02001873 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1874 * @adapter: the adapter to add
David Brownelld64f73b2007-07-12 14:12:28 +02001875 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001876 *
1877 * This routine is used to declare an I2C adapter when its bus number
Doug Andersonee5c2742013-03-01 08:57:31 -08001878 * doesn't matter or when its bus number is specified by an dt alias.
1879 * Examples of bases when the bus number doesn't matter: I2C adapters
1880 * dynamically added by USB links or PCI plugin cards.
David Brownell6e13e642007-05-01 23:26:31 +02001881 *
1882 * When this returns zero, a new bus number was allocated and stored
1883 * in adap->nr, and the specified adapter became available for clients.
1884 * Otherwise, a negative errno value is returned.
1885 */
1886int i2c_add_adapter(struct i2c_adapter *adapter)
1887{
Doug Andersonee5c2742013-03-01 08:57:31 -08001888 struct device *dev = &adapter->dev;
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001889 int id;
David Brownell6e13e642007-05-01 23:26:31 +02001890
Doug Andersonee5c2742013-03-01 08:57:31 -08001891 if (dev->of_node) {
1892 id = of_alias_get_id(dev->of_node, "i2c");
1893 if (id >= 0) {
1894 adapter->nr = id;
1895 return __i2c_add_numbered_adapter(adapter);
1896 }
1897 }
1898
Jean Delvarecaada322008-01-27 18:14:49 +01001899 mutex_lock(&core_lock);
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001900 id = idr_alloc(&i2c_adapter_idr, adapter,
1901 __i2c_first_dynamic_bus_num, 0, GFP_KERNEL);
Jean Delvarecaada322008-01-27 18:14:49 +01001902 mutex_unlock(&core_lock);
Wolfram Sang84d0b612016-07-09 13:35:01 +09001903 if (WARN(id < 0, "couldn't get idr"))
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001904 return id;
David Brownell6e13e642007-05-01 23:26:31 +02001905
1906 adapter->nr = id;
Tejun Heo4ae42b0f2013-02-27 17:04:15 -08001907
David Brownell6e13e642007-05-01 23:26:31 +02001908 return i2c_register_adapter(adapter);
1909}
1910EXPORT_SYMBOL(i2c_add_adapter);
1911
1912/**
1913 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1914 * @adap: the adapter to register (with adap->nr initialized)
David Brownelld64f73b2007-07-12 14:12:28 +02001915 * Context: can sleep
David Brownell6e13e642007-05-01 23:26:31 +02001916 *
1917 * This routine is used to declare an I2C adapter when its bus number
Randy Dunlap8c07e462008-03-23 20:28:20 +01001918 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1919 * or otherwise built in to the system's mainboard, and where i2c_board_info
David Brownell6e13e642007-05-01 23:26:31 +02001920 * is used to properly configure I2C devices.
1921 *
Grant Likely488bf312011-07-25 17:49:43 +02001922 * If the requested bus number is set to -1, then this function will behave
1923 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1924 *
David Brownell6e13e642007-05-01 23:26:31 +02001925 * If no devices have pre-been declared for this bus, then be sure to
1926 * register the adapter before any dynamically allocated ones. Otherwise
1927 * the required bus ID may not be available.
1928 *
1929 * When this returns zero, the specified adapter became available for
1930 * clients using the bus number provided in adap->nr. Also, the table
1931 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1932 * and the appropriate driver model device nodes are created. Otherwise, a
1933 * negative errno value is returned.
1934 */
1935int i2c_add_numbered_adapter(struct i2c_adapter *adap)
1936{
Grant Likely488bf312011-07-25 17:49:43 +02001937 if (adap->nr == -1) /* -1 means dynamically assign bus id */
1938 return i2c_add_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001939
Doug Andersonee5c2742013-03-01 08:57:31 -08001940 return __i2c_add_numbered_adapter(adap);
David Brownell6e13e642007-05-01 23:26:31 +02001941}
1942EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter);
1943
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001944static void i2c_do_del_adapter(struct i2c_driver *driver,
Jean Delvare69b00892009-12-06 17:06:27 +01001945 struct i2c_adapter *adapter)
Jean Delvare026526f2008-01-27 18:14:49 +01001946{
Jean Delvare4735c982008-07-14 22:38:36 +02001947 struct i2c_client *client, *_n;
Jean Delvare026526f2008-01-27 18:14:49 +01001948
Jean Delvareacec2112009-03-28 21:34:40 +01001949 /* Remove the devices we created ourselves as the result of hardware
1950 * probing (using a driver's detect method) */
Jean Delvare4735c982008-07-14 22:38:36 +02001951 list_for_each_entry_safe(client, _n, &driver->clients, detected) {
1952 if (client->adapter == adapter) {
1953 dev_dbg(&adapter->dev, "Removing %s at 0x%x\n",
1954 client->name, client->addr);
1955 list_del(&client->detected);
1956 i2c_unregister_device(client);
1957 }
1958 }
Jean Delvare026526f2008-01-27 18:14:49 +01001959}
1960
Jean Delvaree549c2b2009-06-19 16:58:19 +02001961static int __unregister_client(struct device *dev, void *dummy)
1962{
1963 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvare5219bf82011-01-14 22:03:49 +01001964 if (client && strcmp(client->name, "dummy"))
1965 i2c_unregister_device(client);
1966 return 0;
1967}
1968
1969static int __unregister_dummy(struct device *dev, void *dummy)
1970{
1971 struct i2c_client *client = i2c_verify_client(dev);
Jean Delvaree549c2b2009-06-19 16:58:19 +02001972 if (client)
1973 i2c_unregister_device(client);
1974 return 0;
1975}
1976
Jean Delvare69b00892009-12-06 17:06:27 +01001977static int __process_removed_adapter(struct device_driver *d, void *data)
1978{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00001979 i2c_do_del_adapter(to_i2c_driver(d), data);
1980 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01001981}
1982
David Brownelld64f73b2007-07-12 14:12:28 +02001983/**
1984 * i2c_del_adapter - unregister I2C adapter
1985 * @adap: the adapter being unregistered
1986 * Context: can sleep
1987 *
1988 * This unregisters an I2C adapter which was previously registered
1989 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1990 */
Lars-Peter Clausen71546302013-03-09 08:16:47 +00001991void i2c_del_adapter(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Jean Delvare35fc37f2009-06-19 16:58:19 +02001993 struct i2c_adapter *found;
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01001994 struct i2c_client *client, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 /* First make sure that this adapter was ever added */
Jean Delvare35fc37f2009-06-19 16:58:19 +02001997 mutex_lock(&core_lock);
1998 found = idr_find(&i2c_adapter_idr, adap->nr);
1999 mutex_unlock(&core_lock);
2000 if (found != adap) {
Wolfram Sang44239a52016-07-09 13:35:04 +09002001 pr_debug("attempting to delete unregistered adapter [%s]\n", adap->name);
Lars-Peter Clausen71546302013-03-09 08:16:47 +00002002 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004
Jarkko Nikulaaec809f2016-08-12 17:02:52 +03002005 i2c_acpi_remove_space_handler(adap);
Jean Delvare026526f2008-01-27 18:14:49 +01002006 /* Tell drivers about this removal */
Jean Delvare35fc37f2009-06-19 16:58:19 +02002007 mutex_lock(&core_lock);
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00002008 bus_for_each_drv(&i2c_bus_type, NULL, adap,
Jean Delvare69b00892009-12-06 17:06:27 +01002009 __process_removed_adapter);
Jean Delvare35fc37f2009-06-19 16:58:19 +02002010 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01002012 /* Remove devices instantiated from sysfs */
Jean Delvare390946b2012-09-10 10:14:02 +02002013 mutex_lock_nested(&adap->userspace_clients_lock,
2014 i2c_adapter_depth(adap));
Jean Delvare6629dcf2010-05-04 11:09:28 +02002015 list_for_each_entry_safe(client, next, &adap->userspace_clients,
2016 detected) {
2017 dev_dbg(&adap->dev, "Removing %s at 0x%x\n", client->name,
2018 client->addr);
2019 list_del(&client->detected);
2020 i2c_unregister_device(client);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01002021 }
Jean Delvaredafc50d2010-08-11 18:21:01 +02002022 mutex_unlock(&adap->userspace_clients_lock);
Jean Delvarebbd2d9c2009-11-26 09:22:33 +01002023
Jean Delvaree549c2b2009-06-19 16:58:19 +02002024 /* Detach any active clients. This can't fail, thus we do not
Jean Delvare5219bf82011-01-14 22:03:49 +01002025 * check the returned value. This is a two-pass process, because
2026 * we can't remove the dummy devices during the first pass: they
2027 * could have been instantiated by real devices wishing to clean
2028 * them up properly, so we give them a chance to do that first. */
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00002029 device_for_each_child(&adap->dev, NULL, __unregister_client);
2030 device_for_each_child(&adap->dev, NULL, __unregister_dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Jean Delvare2bb50952009-09-18 22:45:46 +02002032#ifdef CONFIG_I2C_COMPAT
2033 class_compat_remove_link(i2c_adapter_compat_class, &adap->dev,
2034 adap->dev.parent);
2035#endif
2036
Thadeu Lima de Souza Cascardoc5567522010-01-16 20:43:13 +01002037 /* device name is gone after device_unregister */
2038 dev_dbg(&adap->dev, "adapter [%s] unregistered\n", adap->name);
2039
Wolfram Sang9f924162015-12-23 18:19:28 +01002040 pm_runtime_disable(&adap->dev);
2041
Wolfram Sang26680ee2015-01-29 22:45:09 +01002042 /* wait until all references to the device are gone
2043 *
2044 * FIXME: This is old code and should ideally be replaced by an
2045 * alternative which results in decoupling the lifetime of the struct
2046 * device from the i2c_adapter, like spi or netdev do. Any solution
Shailendra Verma95cc1e32015-05-18 22:24:01 +05302047 * should be thoroughly tested with DEBUG_KOBJECT_RELEASE enabled!
Wolfram Sang26680ee2015-01-29 22:45:09 +01002048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 init_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 device_unregister(&adap->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 wait_for_completion(&adap->dev_released);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
David Brownell6e13e642007-05-01 23:26:31 +02002053 /* free bus id */
Jean Delvare35fc37f2009-06-19 16:58:19 +02002054 mutex_lock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 idr_remove(&i2c_adapter_idr, adap->nr);
Jean Delvare35fc37f2009-06-19 16:58:19 +02002056 mutex_unlock(&core_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Jean Delvarebd4bc3db2008-07-16 19:30:05 +02002058 /* Clear the device structure in case this adapter is ever going to be
2059 added again */
2060 memset(&adap->dev, 0, sizeof(adap->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
David Brownellc0564602007-05-01 23:26:31 +02002062EXPORT_SYMBOL(i2c_del_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Wolfram Sang54177cc2015-12-17 13:32:36 +01002064/**
2065 * i2c_parse_fw_timings - get I2C related timing parameters from firmware
2066 * @dev: The device to scan for I2C timing properties
2067 * @t: the i2c_timings struct to be filled with values
2068 * @use_defaults: bool to use sane defaults derived from the I2C specification
2069 * when properties are not found, otherwise use 0
2070 *
2071 * Scan the device for the generic I2C properties describing timing parameters
2072 * for the signal and fill the given struct with the results. If a property was
2073 * not found and use_defaults was true, then maximum timings are assumed which
2074 * are derived from the I2C specification. If use_defaults is not used, the
2075 * results will be 0, so drivers can apply their own defaults later. The latter
2076 * is mainly intended for avoiding regressions of existing drivers which want
2077 * to switch to this function. New drivers almost always should use the defaults.
2078 */
2079
2080void i2c_parse_fw_timings(struct device *dev, struct i2c_timings *t, bool use_defaults)
2081{
2082 int ret;
2083
2084 memset(t, 0, sizeof(*t));
2085
2086 ret = device_property_read_u32(dev, "clock-frequency", &t->bus_freq_hz);
2087 if (ret && use_defaults)
2088 t->bus_freq_hz = 100000;
2089
2090 ret = device_property_read_u32(dev, "i2c-scl-rising-time-ns", &t->scl_rise_ns);
2091 if (ret && use_defaults) {
2092 if (t->bus_freq_hz <= 100000)
2093 t->scl_rise_ns = 1000;
2094 else if (t->bus_freq_hz <= 400000)
2095 t->scl_rise_ns = 300;
2096 else
2097 t->scl_rise_ns = 120;
2098 }
2099
2100 ret = device_property_read_u32(dev, "i2c-scl-falling-time-ns", &t->scl_fall_ns);
2101 if (ret && use_defaults) {
2102 if (t->bus_freq_hz <= 400000)
2103 t->scl_fall_ns = 300;
2104 else
2105 t->scl_fall_ns = 120;
2106 }
2107
2108 device_property_read_u32(dev, "i2c-scl-internal-delay-ns", &t->scl_int_delay_ns);
2109
2110 ret = device_property_read_u32(dev, "i2c-sda-falling-time-ns", &t->sda_fall_ns);
2111 if (ret && use_defaults)
2112 t->sda_fall_ns = t->scl_fall_ns;
2113}
2114EXPORT_SYMBOL_GPL(i2c_parse_fw_timings);
2115
David Brownell7b4fbc52007-05-01 23:26:30 +02002116/* ------------------------------------------------------------------------- */
2117
Jean Delvare7ae31482011-03-20 14:50:52 +01002118int i2c_for_each_dev(void *data, int (*fn)(struct device *, void *))
2119{
2120 int res;
2121
2122 mutex_lock(&core_lock);
2123 res = bus_for_each_dev(&i2c_bus_type, NULL, data, fn);
2124 mutex_unlock(&core_lock);
2125
2126 return res;
2127}
2128EXPORT_SYMBOL_GPL(i2c_for_each_dev);
2129
Jean Delvare69b00892009-12-06 17:06:27 +01002130static int __process_new_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02002131{
Jean Delvare4f8cf822009-09-18 22:45:46 +02002132 if (dev->type != &i2c_adapter_type)
2133 return 0;
Jean Delvare69b00892009-12-06 17:06:27 +01002134 return i2c_do_add_adapter(data, to_i2c_adapter(dev));
Dave Young7f101a92008-07-14 22:38:19 +02002135}
2136
David Brownell7b4fbc52007-05-01 23:26:30 +02002137/*
2138 * An i2c_driver is used with one or more i2c_client (device) nodes to access
Jean Delvare729d6dd2009-06-19 16:58:18 +02002139 * i2c slave chips, on a bus instance associated with some i2c_adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 */
2141
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08002142int i2c_register_driver(struct module *owner, struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
Jean Delvare7eebcb72006-02-05 23:28:21 +01002144 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
David Brownell1d0b19c2008-10-14 17:30:05 +02002146 /* Can't register until after driver model init */
Sudip Mukherjee95026652016-03-07 17:19:17 +05302147 if (WARN_ON(!is_registered))
David Brownell1d0b19c2008-10-14 17:30:05 +02002148 return -EAGAIN;
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 /* add the driver to the list of i2c drivers in the driver core */
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08002151 driver->driver.owner = owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 driver->driver.bus = &i2c_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Jean Delvare729d6dd2009-06-19 16:58:18 +02002154 /* When registration returns, the driver core
David Brownell6e13e642007-05-01 23:26:31 +02002155 * will have called probe() for all matching-but-unbound devices.
2156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 res = driver_register(&driver->driver);
2158 if (res)
Jean Delvare7eebcb72006-02-05 23:28:21 +01002159 return res;
David Brownell438d6c22006-12-10 21:21:31 +01002160
Wolfram Sang44239a52016-07-09 13:35:04 +09002161 pr_debug("driver [%s] registered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Jean Delvare4735c982008-07-14 22:38:36 +02002163 INIT_LIST_HEAD(&driver->clients);
2164 /* Walk the adapters that are already present */
Jean Delvare7ae31482011-03-20 14:50:52 +01002165 i2c_for_each_dev(driver, __process_new_driver);
Jean Delvare35fc37f2009-06-19 16:58:19 +02002166
Jean Delvare7eebcb72006-02-05 23:28:21 +01002167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
Greg Kroah-Hartmande59cf92005-12-06 15:33:15 -08002169EXPORT_SYMBOL(i2c_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Jean Delvare69b00892009-12-06 17:06:27 +01002171static int __process_removed_driver(struct device *dev, void *data)
Dave Young7f101a92008-07-14 22:38:19 +02002172{
Lars-Peter Clausen19baba42013-03-09 08:16:44 +00002173 if (dev->type == &i2c_adapter_type)
2174 i2c_do_del_adapter(data, to_i2c_adapter(dev));
2175 return 0;
Dave Young7f101a92008-07-14 22:38:19 +02002176}
2177
David Brownella1d9e6e2007-05-01 23:26:30 +02002178/**
2179 * i2c_del_driver - unregister I2C driver
2180 * @driver: the driver being unregistered
David Brownelld64f73b2007-07-12 14:12:28 +02002181 * Context: can sleep
David Brownella1d9e6e2007-05-01 23:26:30 +02002182 */
Jean Delvareb3e82092007-05-01 23:26:32 +02002183void i2c_del_driver(struct i2c_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Jean Delvare7ae31482011-03-20 14:50:52 +01002185 i2c_for_each_dev(driver, __process_removed_driver);
David Brownella1d9e6e2007-05-01 23:26:30 +02002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 driver_unregister(&driver->driver);
Wolfram Sang44239a52016-07-09 13:35:04 +09002188 pr_debug("driver [%s] unregistered\n", driver->driver.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
David Brownellc0564602007-05-01 23:26:31 +02002190EXPORT_SYMBOL(i2c_del_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
David Brownell7b4fbc52007-05-01 23:26:30 +02002192/* ------------------------------------------------------------------------- */
2193
Jean Delvaree48d3312008-01-27 18:14:48 +01002194/**
2195 * i2c_use_client - increments the reference count of the i2c client structure
2196 * @client: the client being referenced
2197 *
2198 * Each live reference to a client should be refcounted. The driver model does
2199 * that automatically as part of driver binding, so that most drivers don't
2200 * need to do this explicitly: they hold a reference until they're unbound
2201 * from the device.
2202 *
2203 * A pointer to the client with the incremented reference counter is returned.
2204 */
2205struct i2c_client *i2c_use_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
David Brownell6ea438e2008-07-14 22:38:24 +02002207 if (client && get_device(&client->dev))
2208 return client;
2209 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210}
David Brownellc0564602007-05-01 23:26:31 +02002211EXPORT_SYMBOL(i2c_use_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Jean Delvaree48d3312008-01-27 18:14:48 +01002213/**
2214 * i2c_release_client - release a use of the i2c client structure
2215 * @client: the client being no longer referenced
2216 *
2217 * Must be called when a user of a client is finished with it.
2218 */
2219void i2c_release_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
David Brownell6ea438e2008-07-14 22:38:24 +02002221 if (client)
2222 put_device(&client->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
David Brownellc0564602007-05-01 23:26:31 +02002224EXPORT_SYMBOL(i2c_release_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
David Brownell9b766b82008-01-27 18:14:51 +01002226struct i2c_cmd_arg {
2227 unsigned cmd;
2228 void *arg;
2229};
2230
2231static int i2c_cmd(struct device *dev, void *_arg)
2232{
2233 struct i2c_client *client = i2c_verify_client(dev);
2234 struct i2c_cmd_arg *arg = _arg;
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02002235 struct i2c_driver *driver;
David Brownell9b766b82008-01-27 18:14:51 +01002236
Lars-Peter Clausen0acc2b32013-09-29 10:51:06 +02002237 if (!client || !client->dev.driver)
2238 return 0;
2239
2240 driver = to_i2c_driver(client->dev.driver);
2241 if (driver->command)
2242 driver->command(client, arg->cmd, arg->arg);
David Brownell9b766b82008-01-27 18:14:51 +01002243 return 0;
2244}
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246void i2c_clients_command(struct i2c_adapter *adap, unsigned int cmd, void *arg)
2247{
David Brownell9b766b82008-01-27 18:14:51 +01002248 struct i2c_cmd_arg cmd_arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
David Brownell9b766b82008-01-27 18:14:51 +01002250 cmd_arg.cmd = cmd;
2251 cmd_arg.arg = arg;
2252 device_for_each_child(&adap->dev, &cmd_arg, i2c_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
David Brownellc0564602007-05-01 23:26:31 +02002254EXPORT_SYMBOL(i2c_clients_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002256#if IS_ENABLED(CONFIG_OF_DYNAMIC)
2257static int of_i2c_notify(struct notifier_block *nb, unsigned long action,
2258 void *arg)
2259{
2260 struct of_reconfig_data *rd = arg;
2261 struct i2c_adapter *adap;
2262 struct i2c_client *client;
2263
2264 switch (of_reconfig_get_state_change(action, rd)) {
2265 case OF_RECONFIG_CHANGE_ADD:
2266 adap = of_find_i2c_adapter_by_node(rd->dn->parent);
2267 if (adap == NULL)
2268 return NOTIFY_OK; /* not for us */
2269
Pantelis Antoniou4f001fd2015-01-24 09:16:29 +02002270 if (of_node_test_and_set_flag(rd->dn, OF_POPULATED)) {
2271 put_device(&adap->dev);
2272 return NOTIFY_OK;
2273 }
2274
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002275 client = of_i2c_register_device(adap, rd->dn);
2276 put_device(&adap->dev);
2277
2278 if (IS_ERR(client)) {
Wolfram Sang399d62a2016-07-09 13:35:02 +09002279 dev_err(&adap->dev, "failed to create client for '%s'\n",
2280 rd->dn->full_name);
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002281 return notifier_from_errno(PTR_ERR(client));
2282 }
2283 break;
2284 case OF_RECONFIG_CHANGE_REMOVE:
Pantelis Antoniou4f001fd2015-01-24 09:16:29 +02002285 /* already depopulated? */
2286 if (!of_node_check_flag(rd->dn, OF_POPULATED))
2287 return NOTIFY_OK;
2288
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002289 /* find our device by node */
2290 client = of_find_i2c_device_by_node(rd->dn);
2291 if (client == NULL)
2292 return NOTIFY_OK; /* no? not meant for us */
2293
2294 /* unregister takes one ref away */
2295 i2c_unregister_device(client);
2296
2297 /* and put the reference of the find */
2298 put_device(&client->dev);
2299 break;
2300 }
2301
2302 return NOTIFY_OK;
2303}
2304static struct notifier_block i2c_of_notifier = {
2305 .notifier_call = of_i2c_notify,
2306};
2307#else
2308extern struct notifier_block i2c_of_notifier;
2309#endif /* CONFIG_OF_DYNAMIC */
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311static int __init i2c_init(void)
2312{
2313 int retval;
2314
Wolfram Sang03bde7c2015-03-12 17:17:59 +01002315 retval = of_alias_get_highest_id("i2c");
2316
2317 down_write(&__i2c_board_lock);
2318 if (retval >= __i2c_first_dynamic_bus_num)
2319 __i2c_first_dynamic_bus_num = retval + 1;
2320 up_write(&__i2c_board_lock);
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 retval = bus_register(&i2c_bus_type);
2323 if (retval)
2324 return retval;
Wolfram Sangb980a262016-03-14 10:41:52 +01002325
2326 is_registered = true;
2327
Jean Delvare2bb50952009-09-18 22:45:46 +02002328#ifdef CONFIG_I2C_COMPAT
2329 i2c_adapter_compat_class = class_compat_register("i2c-adapter");
2330 if (!i2c_adapter_compat_class) {
2331 retval = -ENOMEM;
2332 goto bus_err;
2333 }
2334#endif
David Brownelle9f13732008-01-27 18:14:52 +01002335 retval = i2c_add_driver(&dummy_driver);
2336 if (retval)
Jean Delvare2bb50952009-09-18 22:45:46 +02002337 goto class_err;
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002338
2339 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
2340 WARN_ON(of_reconfig_notifier_register(&i2c_of_notifier));
Octavian Purdila525e6fa2016-07-08 19:13:10 +03002341 if (IS_ENABLED(CONFIG_ACPI))
2342 WARN_ON(acpi_reconfig_notifier_register(&i2c_acpi_notifier));
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002343
David Brownelle9f13732008-01-27 18:14:52 +01002344 return 0;
2345
Jean Delvare2bb50952009-09-18 22:45:46 +02002346class_err:
2347#ifdef CONFIG_I2C_COMPAT
2348 class_compat_unregister(i2c_adapter_compat_class);
David Brownelle9f13732008-01-27 18:14:52 +01002349bus_err:
Jean Delvare2bb50952009-09-18 22:45:46 +02002350#endif
Wolfram Sangb980a262016-03-14 10:41:52 +01002351 is_registered = false;
David Brownelle9f13732008-01-27 18:14:52 +01002352 bus_unregister(&i2c_bus_type);
2353 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
2356static void __exit i2c_exit(void)
2357{
Octavian Purdila525e6fa2016-07-08 19:13:10 +03002358 if (IS_ENABLED(CONFIG_ACPI))
2359 WARN_ON(acpi_reconfig_notifier_unregister(&i2c_acpi_notifier));
Pantelis Antoniouea7513b2014-10-28 22:36:03 +02002360 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
2361 WARN_ON(of_reconfig_notifier_unregister(&i2c_of_notifier));
David Brownelle9f13732008-01-27 18:14:52 +01002362 i2c_del_driver(&dummy_driver);
Jean Delvare2bb50952009-09-18 22:45:46 +02002363#ifdef CONFIG_I2C_COMPAT
2364 class_compat_unregister(i2c_adapter_compat_class);
2365#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 bus_unregister(&i2c_bus_type);
David Howellsd9a83d62014-03-06 13:35:59 +00002367 tracepoint_synchronize_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368}
2369
David Brownella10f9e72008-10-14 17:30:06 +02002370/* We must initialize early, because some subsystems register i2c drivers
2371 * in subsys_initcall() code, but are linked (and initialized) before i2c.
2372 */
2373postcore_initcall(i2c_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374module_exit(i2c_exit);
2375
2376/* ----------------------------------------------------
2377 * the functional interface to the i2c busses.
2378 * ----------------------------------------------------
2379 */
2380
Wolfram Sangb7f62582015-01-05 23:45:59 +01002381/* Check if val is exceeding the quirk IFF quirk is non 0 */
2382#define i2c_quirk_exceeded(val, quirk) ((quirk) && ((val) > (quirk)))
2383
2384static int i2c_quirk_error(struct i2c_adapter *adap, struct i2c_msg *msg, char *err_msg)
2385{
2386 dev_err_ratelimited(&adap->dev, "adapter quirk: %s (addr 0x%04x, size %u, %s)\n",
2387 err_msg, msg->addr, msg->len,
2388 msg->flags & I2C_M_RD ? "read" : "write");
2389 return -EOPNOTSUPP;
2390}
2391
2392static int i2c_check_for_quirks(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2393{
2394 const struct i2c_adapter_quirks *q = adap->quirks;
2395 int max_num = q->max_num_msgs, i;
2396 bool do_len_check = true;
2397
2398 if (q->flags & I2C_AQ_COMB) {
2399 max_num = 2;
2400
2401 /* special checks for combined messages */
2402 if (num == 2) {
2403 if (q->flags & I2C_AQ_COMB_WRITE_FIRST && msgs[0].flags & I2C_M_RD)
2404 return i2c_quirk_error(adap, &msgs[0], "1st comb msg must be write");
2405
2406 if (q->flags & I2C_AQ_COMB_READ_SECOND && !(msgs[1].flags & I2C_M_RD))
2407 return i2c_quirk_error(adap, &msgs[1], "2nd comb msg must be read");
2408
2409 if (q->flags & I2C_AQ_COMB_SAME_ADDR && msgs[0].addr != msgs[1].addr)
2410 return i2c_quirk_error(adap, &msgs[0], "comb msg only to same addr");
2411
2412 if (i2c_quirk_exceeded(msgs[0].len, q->max_comb_1st_msg_len))
2413 return i2c_quirk_error(adap, &msgs[0], "msg too long");
2414
2415 if (i2c_quirk_exceeded(msgs[1].len, q->max_comb_2nd_msg_len))
2416 return i2c_quirk_error(adap, &msgs[1], "msg too long");
2417
2418 do_len_check = false;
2419 }
2420 }
2421
2422 if (i2c_quirk_exceeded(num, max_num))
2423 return i2c_quirk_error(adap, &msgs[0], "too many messages");
2424
2425 for (i = 0; i < num; i++) {
2426 u16 len = msgs[i].len;
2427
2428 if (msgs[i].flags & I2C_M_RD) {
2429 if (do_len_check && i2c_quirk_exceeded(len, q->max_read_len))
2430 return i2c_quirk_error(adap, &msgs[i], "msg too long");
2431 } else {
2432 if (do_len_check && i2c_quirk_exceeded(len, q->max_write_len))
2433 return i2c_quirk_error(adap, &msgs[i], "msg too long");
2434 }
2435 }
2436
2437 return 0;
2438}
2439
David Brownella1cdeda2008-07-14 22:38:24 +02002440/**
Jean Delvareb37d2a32012-06-29 07:47:19 -03002441 * __i2c_transfer - unlocked flavor of i2c_transfer
2442 * @adap: Handle to I2C bus
2443 * @msgs: One or more messages to execute before STOP is issued to
2444 * terminate the operation; each message begins with a START.
2445 * @num: Number of messages to be executed.
2446 *
2447 * Returns negative errno, else the number of messages executed.
2448 *
2449 * Adapter lock must be held when calling this function. No debug logging
2450 * takes place. adap->algo->master_xfer existence isn't checked.
2451 */
2452int __i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
2453{
2454 unsigned long orig_jiffies;
2455 int ret, try;
2456
Wolfram Sangb7f62582015-01-05 23:45:59 +01002457 if (adap->quirks && i2c_check_for_quirks(adap, msgs, num))
2458 return -EOPNOTSUPP;
2459
David Howellsd9a83d62014-03-06 13:35:59 +00002460 /* i2c_trace_msg gets enabled when tracepoint i2c_transfer gets
2461 * enabled. This is an efficient way of keeping the for-loop from
2462 * being executed when not needed.
2463 */
2464 if (static_key_false(&i2c_trace_msg)) {
2465 int i;
2466 for (i = 0; i < num; i++)
2467 if (msgs[i].flags & I2C_M_RD)
2468 trace_i2c_read(adap, &msgs[i], i);
2469 else
2470 trace_i2c_write(adap, &msgs[i], i);
2471 }
2472
Jean Delvareb37d2a32012-06-29 07:47:19 -03002473 /* Retry automatically on arbitration loss */
2474 orig_jiffies = jiffies;
2475 for (ret = 0, try = 0; try <= adap->retries; try++) {
2476 ret = adap->algo->master_xfer(adap, msgs, num);
2477 if (ret != -EAGAIN)
2478 break;
2479 if (time_after(jiffies, orig_jiffies + adap->timeout))
2480 break;
2481 }
2482
David Howellsd9a83d62014-03-06 13:35:59 +00002483 if (static_key_false(&i2c_trace_msg)) {
2484 int i;
2485 for (i = 0; i < ret; i++)
2486 if (msgs[i].flags & I2C_M_RD)
2487 trace_i2c_reply(adap, &msgs[i], i);
2488 trace_i2c_result(adap, i, ret);
2489 }
2490
Jean Delvareb37d2a32012-06-29 07:47:19 -03002491 return ret;
2492}
2493EXPORT_SYMBOL(__i2c_transfer);
2494
2495/**
David Brownella1cdeda2008-07-14 22:38:24 +02002496 * i2c_transfer - execute a single or combined I2C message
2497 * @adap: Handle to I2C bus
2498 * @msgs: One or more messages to execute before STOP is issued to
2499 * terminate the operation; each message begins with a START.
2500 * @num: Number of messages to be executed.
2501 *
2502 * Returns negative errno, else the number of messages executed.
2503 *
2504 * Note that there is no requirement that each message be sent to
2505 * the same slave address, although that is the most common model.
2506 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002507int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Jean Delvareb37d2a32012-06-29 07:47:19 -03002509 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
David Brownella1cdeda2008-07-14 22:38:24 +02002511 /* REVISIT the fault reporting model here is weak:
2512 *
2513 * - When we get an error after receiving N bytes from a slave,
2514 * there is no way to report "N".
2515 *
2516 * - When we get a NAK after transmitting N bytes to a slave,
2517 * there is no way to report "N" ... or to let the master
2518 * continue executing the rest of this combined message, if
2519 * that's the appropriate response.
2520 *
2521 * - When for example "num" is two and we successfully complete
2522 * the first message but get an error part way through the
2523 * second, it's unclear whether that should be reported as
2524 * one (discarding status on the second message) or errno
2525 * (discarding status on the first one).
2526 */
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 if (adap->algo->master_xfer) {
2529#ifdef DEBUG
2530 for (ret = 0; ret < num; ret++) {
2531 dev_dbg(&adap->dev, "master_xfer[%d] %c, addr=0x%02x, "
Jean Delvare209d27c2007-05-01 23:26:29 +02002532 "len=%d%s\n", ret, (msgs[ret].flags & I2C_M_RD)
2533 ? 'R' : 'W', msgs[ret].addr, msgs[ret].len,
2534 (msgs[ret].flags & I2C_M_RECV_LEN) ? "+" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 }
2536#endif
2537
Mike Rapoportcea443a2008-01-27 18:14:50 +01002538 if (in_atomic() || irqs_disabled()) {
Peter Rosinfb79e092016-06-29 15:04:03 +02002539 ret = i2c_trylock_bus(adap, I2C_LOCK_SEGMENT);
Mike Rapoportcea443a2008-01-27 18:14:50 +01002540 if (!ret)
2541 /* I2C activity is ongoing. */
2542 return -EAGAIN;
2543 } else {
Peter Rosin8320f492016-05-04 22:15:27 +02002544 i2c_lock_bus(adap, I2C_LOCK_SEGMENT);
Mike Rapoportcea443a2008-01-27 18:14:50 +01002545 }
2546
Jean Delvareb37d2a32012-06-29 07:47:19 -03002547 ret = __i2c_transfer(adap, msgs, num);
Peter Rosin8320f492016-05-04 22:15:27 +02002548 i2c_unlock_bus(adap, I2C_LOCK_SEGMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 return ret;
2551 } else {
2552 dev_dbg(&adap->dev, "I2C level transfers not supported\n");
David Brownell24a5bb72008-07-14 22:38:23 +02002553 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 }
2555}
David Brownellc0564602007-05-01 23:26:31 +02002556EXPORT_SYMBOL(i2c_transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
David Brownella1cdeda2008-07-14 22:38:24 +02002558/**
2559 * i2c_master_send - issue a single I2C message in master transmit mode
2560 * @client: Handle to slave device
2561 * @buf: Data that will be written to the slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01002562 * @count: How many bytes to write, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02002563 *
2564 * Returns negative errno, or else the number of bytes written.
2565 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002566int i2c_master_send(const struct i2c_client *client, const char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
2568 int ret;
Farid Hammane7225acf2010-05-21 18:40:58 +02002569 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 struct i2c_msg msg;
2571
Jean Delvare815f55f2005-05-07 22:58:46 +02002572 msg.addr = client->addr;
2573 msg.flags = client->flags & I2C_M_TEN;
2574 msg.len = count;
2575 msg.buf = (char *)buf;
David Brownell438d6c22006-12-10 21:21:31 +01002576
Jean Delvare815f55f2005-05-07 22:58:46 +02002577 ret = i2c_transfer(adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Wolfram Sang834aa6f2012-03-15 18:11:05 +01002579 /*
2580 * If everything went ok (i.e. 1 msg transmitted), return #bytes
2581 * transmitted, else error code.
2582 */
Jean Delvare815f55f2005-05-07 22:58:46 +02002583 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584}
David Brownellc0564602007-05-01 23:26:31 +02002585EXPORT_SYMBOL(i2c_master_send);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
David Brownella1cdeda2008-07-14 22:38:24 +02002587/**
2588 * i2c_master_recv - issue a single I2C message in master receive mode
2589 * @client: Handle to slave device
2590 * @buf: Where to store data read from slave
Zhangfei Gao0c43ea52010-03-02 12:23:49 +01002591 * @count: How many bytes to read, must be less than 64k since msg.len is u16
David Brownella1cdeda2008-07-14 22:38:24 +02002592 *
2593 * Returns negative errno, or else the number of bytes read.
2594 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002595int i2c_master_recv(const struct i2c_client *client, char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Farid Hammane7225acf2010-05-21 18:40:58 +02002597 struct i2c_adapter *adap = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 struct i2c_msg msg;
2599 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Jean Delvare815f55f2005-05-07 22:58:46 +02002601 msg.addr = client->addr;
2602 msg.flags = client->flags & I2C_M_TEN;
2603 msg.flags |= I2C_M_RD;
2604 msg.len = count;
2605 msg.buf = buf;
2606
2607 ret = i2c_transfer(adap, &msg, 1);
2608
Wolfram Sang834aa6f2012-03-15 18:11:05 +01002609 /*
2610 * If everything went ok (i.e. 1 msg received), return #bytes received,
2611 * else error code.
2612 */
Jean Delvare815f55f2005-05-07 22:58:46 +02002613 return (ret == 1) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
David Brownellc0564602007-05-01 23:26:31 +02002615EXPORT_SYMBOL(i2c_master_recv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617/* ----------------------------------------------------
2618 * the i2c address scanning function
2619 * Will not work for 10-bit addresses!
2620 * ----------------------------------------------------
2621 */
Jean Delvare9fc6adf2005-07-31 21:20:43 +02002622
Jean Delvare63e4e802010-06-03 11:33:51 +02002623/*
2624 * Legacy default probe function, mostly relevant for SMBus. The default
2625 * probe method is a quick write, but it is known to corrupt the 24RF08
2626 * EEPROMs due to a state machine bug, and could also irreversibly
2627 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2628 * we use a short byte read instead. Also, some bus drivers don't implement
2629 * quick write, so we fallback to a byte read in that case too.
2630 * On x86, there is another special case for FSC hardware monitoring chips,
2631 * which want regular byte reads (address 0x73.) Fortunately, these are the
2632 * only known chips using this I2C address on PC hardware.
2633 * Returns 1 if probe succeeded, 0 if not.
2634 */
2635static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
2636{
2637 int err;
2638 union i2c_smbus_data dummy;
2639
2640#ifdef CONFIG_X86
2641 if (addr == 0x73 && (adap->class & I2C_CLASS_HWMON)
2642 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE_DATA))
2643 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2644 I2C_SMBUS_BYTE_DATA, &dummy);
2645 else
2646#endif
Jean Delvare8031d792010-08-11 18:21:00 +02002647 if (!((addr & ~0x07) == 0x30 || (addr & ~0x0f) == 0x50)
2648 && i2c_check_functionality(adap, I2C_FUNC_SMBUS_QUICK))
Jean Delvare63e4e802010-06-03 11:33:51 +02002649 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_WRITE, 0,
2650 I2C_SMBUS_QUICK, NULL);
Jean Delvare8031d792010-08-11 18:21:00 +02002651 else if (i2c_check_functionality(adap, I2C_FUNC_SMBUS_READ_BYTE))
2652 err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2653 I2C_SMBUS_BYTE, &dummy);
2654 else {
Andy Lutomirskid63a9e82013-07-17 13:27:59 -07002655 dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
2656 addr);
Jean Delvare8031d792010-08-11 18:21:00 +02002657 err = -EOPNOTSUPP;
2658 }
Jean Delvare63e4e802010-06-03 11:33:51 +02002659
2660 return err >= 0;
2661}
2662
Jean Delvareccfbbd02009-12-06 17:06:25 +01002663static int i2c_detect_address(struct i2c_client *temp_client,
Jean Delvare4735c982008-07-14 22:38:36 +02002664 struct i2c_driver *driver)
2665{
2666 struct i2c_board_info info;
2667 struct i2c_adapter *adapter = temp_client->adapter;
2668 int addr = temp_client->addr;
2669 int err;
2670
2671 /* Make sure the address is valid */
Wolfram Sang66be60562015-07-17 12:43:22 +02002672 err = i2c_check_7bit_addr_validity_strict(addr);
Jean Delvare656b8762010-06-03 11:33:53 +02002673 if (err) {
Jean Delvare4735c982008-07-14 22:38:36 +02002674 dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",
2675 addr);
Jean Delvare656b8762010-06-03 11:33:53 +02002676 return err;
Jean Delvare4735c982008-07-14 22:38:36 +02002677 }
2678
Wolfram Sang9bccc702015-07-17 14:48:56 +02002679 /* Skip if already in use (7 bit, no need to encode flags) */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002680 if (i2c_check_addr_busy(adapter, addr))
Jean Delvare4735c982008-07-14 22:38:36 +02002681 return 0;
2682
Jean Delvareccfbbd02009-12-06 17:06:25 +01002683 /* Make sure there is something at this address */
Jean Delvare63e4e802010-06-03 11:33:51 +02002684 if (!i2c_default_probe(adapter, addr))
2685 return 0;
Jean Delvare4735c982008-07-14 22:38:36 +02002686
2687 /* Finally call the custom detection function */
2688 memset(&info, 0, sizeof(struct i2c_board_info));
2689 info.addr = addr;
Jean Delvare310ec792009-12-14 21:17:23 +01002690 err = driver->detect(temp_client, &info);
Jean Delvare4735c982008-07-14 22:38:36 +02002691 if (err) {
2692 /* -ENODEV is returned if the detection fails. We catch it
2693 here as this isn't an error. */
2694 return err == -ENODEV ? 0 : err;
2695 }
2696
2697 /* Consistency check */
2698 if (info.type[0] == '\0') {
2699 dev_err(&adapter->dev, "%s detection function provided "
2700 "no name for 0x%x\n", driver->driver.name,
2701 addr);
2702 } else {
2703 struct i2c_client *client;
2704
2705 /* Detection succeeded, instantiate the device */
Wolfram Sang0c176172014-02-10 11:03:56 +01002706 if (adapter->class & I2C_CLASS_DEPRECATED)
2707 dev_warn(&adapter->dev,
2708 "This adapter will soon drop class based instantiation of devices. "
2709 "Please make sure client 0x%02x gets instantiated by other means. "
2710 "Check 'Documentation/i2c/instantiating-devices' for details.\n",
2711 info.addr);
2712
Jean Delvare4735c982008-07-14 22:38:36 +02002713 dev_dbg(&adapter->dev, "Creating %s at 0x%02x\n",
2714 info.type, info.addr);
2715 client = i2c_new_device(adapter, &info);
2716 if (client)
2717 list_add_tail(&client->detected, &driver->clients);
2718 else
2719 dev_err(&adapter->dev, "Failed creating %s at 0x%02x\n",
2720 info.type, info.addr);
2721 }
2722 return 0;
2723}
2724
2725static int i2c_detect(struct i2c_adapter *adapter, struct i2c_driver *driver)
2726{
Jean Delvarec3813d62009-12-14 21:17:25 +01002727 const unsigned short *address_list;
Jean Delvare4735c982008-07-14 22:38:36 +02002728 struct i2c_client *temp_client;
2729 int i, err = 0;
2730 int adap_id = i2c_adapter_id(adapter);
2731
Jean Delvarec3813d62009-12-14 21:17:25 +01002732 address_list = driver->address_list;
2733 if (!driver->detect || !address_list)
Jean Delvare4735c982008-07-14 22:38:36 +02002734 return 0;
2735
Wolfram Sang45552272014-07-10 13:46:21 +02002736 /* Warn that the adapter lost class based instantiation */
2737 if (adapter->class == I2C_CLASS_DEPRECATED) {
2738 dev_dbg(&adapter->dev,
2739 "This adapter dropped support for I2C classes and "
2740 "won't auto-detect %s devices anymore. If you need it, check "
2741 "'Documentation/i2c/instantiating-devices' for alternatives.\n",
2742 driver->driver.name);
2743 return 0;
2744 }
2745
Jean Delvare51b54ba2010-10-24 18:16:58 +02002746 /* Stop here if the classes do not match */
2747 if (!(adapter->class & driver->class))
2748 return 0;
2749
Jean Delvare4735c982008-07-14 22:38:36 +02002750 /* Set up a temporary client to help detect callback */
2751 temp_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
2752 if (!temp_client)
2753 return -ENOMEM;
2754 temp_client->adapter = adapter;
2755
Jean Delvarec3813d62009-12-14 21:17:25 +01002756 for (i = 0; address_list[i] != I2C_CLIENT_END; i += 1) {
Jean Delvare4735c982008-07-14 22:38:36 +02002757 dev_dbg(&adapter->dev, "found normal entry for adapter %d, "
Jean Delvarec3813d62009-12-14 21:17:25 +01002758 "addr 0x%02x\n", adap_id, address_list[i]);
2759 temp_client->addr = address_list[i];
Jean Delvareccfbbd02009-12-06 17:06:25 +01002760 err = i2c_detect_address(temp_client, driver);
Jean Delvare51b54ba2010-10-24 18:16:58 +02002761 if (unlikely(err))
2762 break;
Jean Delvare4735c982008-07-14 22:38:36 +02002763 }
2764
Jean Delvare4735c982008-07-14 22:38:36 +02002765 kfree(temp_client);
2766 return err;
2767}
2768
Jean Delvared44f19d2010-08-11 18:20:57 +02002769int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr)
2770{
2771 return i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
2772 I2C_SMBUS_QUICK, NULL) >= 0;
2773}
2774EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read);
2775
Jean Delvare12b5053a2007-05-01 23:26:31 +02002776struct i2c_client *
2777i2c_new_probed_device(struct i2c_adapter *adap,
2778 struct i2c_board_info *info,
Jean Delvare9a942412010-08-11 18:20:56 +02002779 unsigned short const *addr_list,
2780 int (*probe)(struct i2c_adapter *, unsigned short addr))
Jean Delvare12b5053a2007-05-01 23:26:31 +02002781{
2782 int i;
2783
Jean Delvare8031d792010-08-11 18:21:00 +02002784 if (!probe)
Jean Delvare9a942412010-08-11 18:20:56 +02002785 probe = i2c_default_probe;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002786
Jean Delvare12b5053a2007-05-01 23:26:31 +02002787 for (i = 0; addr_list[i] != I2C_CLIENT_END; i++) {
2788 /* Check address validity */
Wolfram Sang66be60562015-07-17 12:43:22 +02002789 if (i2c_check_7bit_addr_validity_strict(addr_list[i]) < 0) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02002790 dev_warn(&adap->dev, "Invalid 7-bit address "
2791 "0x%02x\n", addr_list[i]);
2792 continue;
2793 }
2794
Wolfram Sang9bccc702015-07-17 14:48:56 +02002795 /* Check address availability (7 bit, no need to encode flags) */
Jean Delvare3b5f7942010-06-03 11:33:55 +02002796 if (i2c_check_addr_busy(adap, addr_list[i])) {
Jean Delvare12b5053a2007-05-01 23:26:31 +02002797 dev_dbg(&adap->dev, "Address 0x%02x already in "
2798 "use, not probing\n", addr_list[i]);
2799 continue;
2800 }
2801
Jean Delvare63e4e802010-06-03 11:33:51 +02002802 /* Test address responsiveness */
Jean Delvare9a942412010-08-11 18:20:56 +02002803 if (probe(adap, addr_list[i]))
Jean Delvare63e4e802010-06-03 11:33:51 +02002804 break;
Jean Delvare12b5053a2007-05-01 23:26:31 +02002805 }
Jean Delvare12b5053a2007-05-01 23:26:31 +02002806
2807 if (addr_list[i] == I2C_CLIENT_END) {
2808 dev_dbg(&adap->dev, "Probing failed, no device found\n");
2809 return NULL;
2810 }
2811
2812 info->addr = addr_list[i];
2813 return i2c_new_device(adap, info);
2814}
2815EXPORT_SYMBOL_GPL(i2c_new_probed_device);
2816
Jean Delvared735b342011-03-20 14:50:52 +01002817struct i2c_adapter *i2c_get_adapter(int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct i2c_adapter *adapter;
David Brownell438d6c22006-12-10 21:21:31 +01002820
Jean Delvarecaada322008-01-27 18:14:49 +01002821 mutex_lock(&core_lock);
Jean Delvared735b342011-03-20 14:50:52 +01002822 adapter = idr_find(&i2c_adapter_idr, nr);
Vladimir Zapolskiy611e12e2015-07-27 17:30:49 +03002823 if (!adapter)
2824 goto exit;
2825
2826 if (try_module_get(adapter->owner))
2827 get_device(&adapter->dev);
2828 else
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002829 adapter = NULL;
2830
Vladimir Zapolskiy611e12e2015-07-27 17:30:49 +03002831 exit:
Jean Delvarecaada322008-01-27 18:14:49 +01002832 mutex_unlock(&core_lock);
Mark M. Hoffmana0920e12005-06-28 00:21:30 -04002833 return adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
David Brownellc0564602007-05-01 23:26:31 +02002835EXPORT_SYMBOL(i2c_get_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
2837void i2c_put_adapter(struct i2c_adapter *adap)
2838{
Vladimir Zapolskiy611e12e2015-07-27 17:30:49 +03002839 if (!adap)
2840 return;
2841
2842 put_device(&adap->dev);
2843 module_put(adap->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844}
David Brownellc0564602007-05-01 23:26:31 +02002845EXPORT_SYMBOL(i2c_put_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
2847/* The SMBus parts */
2848
David Brownell438d6c22006-12-10 21:21:31 +01002849#define POLY (0x1070U << 3)
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01002850static u8 crc8(u16 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
2852 int i;
David Brownell438d6c22006-12-10 21:21:31 +01002853
Farid Hammane7225acf2010-05-21 18:40:58 +02002854 for (i = 0; i < 8; i++) {
David Brownell438d6c22006-12-10 21:21:31 +01002855 if (data & 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 data = data ^ POLY;
2857 data = data << 1;
2858 }
2859 return (u8)(data >> 8);
2860}
2861
Jean Delvare421ef472005-10-26 21:28:55 +02002862/* Incremental CRC8 over count bytes in the array pointed to by p */
2863static u8 i2c_smbus_pec(u8 crc, u8 *p, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
2865 int i;
2866
Farid Hammane7225acf2010-05-21 18:40:58 +02002867 for (i = 0; i < count; i++)
Jean Delvare421ef472005-10-26 21:28:55 +02002868 crc = crc8((crc ^ p[i]) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 return crc;
2870}
2871
Jean Delvare421ef472005-10-26 21:28:55 +02002872/* Assume a 7-bit address, which is reasonable for SMBus */
2873static u8 i2c_smbus_msg_pec(u8 pec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
Jean Delvare421ef472005-10-26 21:28:55 +02002875 /* The address will be sent first */
Wolfram Sang041edda2016-04-03 20:44:46 +02002876 u8 addr = i2c_8bit_addr_from_msg(msg);
Jean Delvare421ef472005-10-26 21:28:55 +02002877 pec = i2c_smbus_pec(pec, &addr, 1);
2878
2879 /* The data buffer follows */
2880 return i2c_smbus_pec(pec, msg->buf, msg->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881}
2882
Jean Delvare421ef472005-10-26 21:28:55 +02002883/* Used for write only transactions */
2884static inline void i2c_smbus_add_pec(struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885{
Jean Delvare421ef472005-10-26 21:28:55 +02002886 msg->buf[msg->len] = i2c_smbus_msg_pec(0, msg);
2887 msg->len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Jean Delvare421ef472005-10-26 21:28:55 +02002890/* Return <0 on CRC error
2891 If there was a write before this read (most cases) we need to take the
2892 partial CRC from the write part into account.
2893 Note that this function does modify the message (we need to decrease the
2894 message length to hide the CRC byte from the caller). */
2895static int i2c_smbus_check_pec(u8 cpec, struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896{
Jean Delvare421ef472005-10-26 21:28:55 +02002897 u8 rpec = msg->buf[--msg->len];
2898 cpec = i2c_smbus_msg_pec(cpec, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (rpec != cpec) {
Wolfram Sang44239a52016-07-09 13:35:04 +09002901 pr_debug("Bad PEC 0x%02x vs. 0x%02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 rpec, cpec);
David Brownell24a5bb72008-07-14 22:38:23 +02002903 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 }
David Brownell438d6c22006-12-10 21:21:31 +01002905 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906}
2907
David Brownella1cdeda2008-07-14 22:38:24 +02002908/**
2909 * i2c_smbus_read_byte - SMBus "receive byte" protocol
2910 * @client: Handle to slave device
2911 *
2912 * This executes the SMBus "receive byte" protocol, returning negative errno
2913 * else the byte received from the device.
2914 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002915s32 i2c_smbus_read_byte(const struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
2917 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002918 int status;
2919
2920 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2921 I2C_SMBUS_READ, 0,
2922 I2C_SMBUS_BYTE, &data);
2923 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924}
David Brownellc0564602007-05-01 23:26:31 +02002925EXPORT_SYMBOL(i2c_smbus_read_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
David Brownella1cdeda2008-07-14 22:38:24 +02002927/**
2928 * i2c_smbus_write_byte - SMBus "send byte" protocol
2929 * @client: Handle to slave device
2930 * @value: Byte to be sent
2931 *
2932 * This executes the SMBus "send byte" protocol, returning negative errno
2933 * else zero on success.
2934 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002935s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Farid Hammane7225acf2010-05-21 18:40:58 +02002937 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
Jean Delvare421ef472005-10-26 21:28:55 +02002938 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939}
David Brownellc0564602007-05-01 23:26:31 +02002940EXPORT_SYMBOL(i2c_smbus_write_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
David Brownella1cdeda2008-07-14 22:38:24 +02002942/**
2943 * i2c_smbus_read_byte_data - SMBus "read byte" protocol
2944 * @client: Handle to slave device
2945 * @command: Byte interpreted by slave
2946 *
2947 * This executes the SMBus "read byte" protocol, returning negative errno
2948 * else a data byte received from the device.
2949 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002950s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
2952 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002953 int status;
2954
2955 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2956 I2C_SMBUS_READ, command,
2957 I2C_SMBUS_BYTE_DATA, &data);
2958 return (status < 0) ? status : data.byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959}
David Brownellc0564602007-05-01 23:26:31 +02002960EXPORT_SYMBOL(i2c_smbus_read_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
David Brownella1cdeda2008-07-14 22:38:24 +02002962/**
2963 * i2c_smbus_write_byte_data - SMBus "write byte" protocol
2964 * @client: Handle to slave device
2965 * @command: Byte interpreted by slave
2966 * @value: Byte being written
2967 *
2968 * This executes the SMBus "write byte" protocol, returning negative errno
2969 * else zero on success.
2970 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002971s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
2972 u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
2974 union i2c_smbus_data data;
2975 data.byte = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02002976 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2977 I2C_SMBUS_WRITE, command,
2978 I2C_SMBUS_BYTE_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979}
David Brownellc0564602007-05-01 23:26:31 +02002980EXPORT_SYMBOL(i2c_smbus_write_byte_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
David Brownella1cdeda2008-07-14 22:38:24 +02002982/**
2983 * i2c_smbus_read_word_data - SMBus "read word" protocol
2984 * @client: Handle to slave device
2985 * @command: Byte interpreted by slave
2986 *
2987 * This executes the SMBus "read word" protocol, returning negative errno
2988 * else a 16-bit unsigned "word" received from the device.
2989 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01002990s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
2992 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02002993 int status;
2994
2995 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
2996 I2C_SMBUS_READ, command,
2997 I2C_SMBUS_WORD_DATA, &data);
2998 return (status < 0) ? status : data.word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999}
David Brownellc0564602007-05-01 23:26:31 +02003000EXPORT_SYMBOL(i2c_smbus_read_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
David Brownella1cdeda2008-07-14 22:38:24 +02003002/**
3003 * i2c_smbus_write_word_data - SMBus "write word" protocol
3004 * @client: Handle to slave device
3005 * @command: Byte interpreted by slave
3006 * @value: 16-bit "word" being written
3007 *
3008 * This executes the SMBus "write word" protocol, returning negative errno
3009 * else zero on success.
3010 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01003011s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
3012 u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
3014 union i2c_smbus_data data;
3015 data.word = value;
Farid Hammane7225acf2010-05-21 18:40:58 +02003016 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3017 I2C_SMBUS_WRITE, command,
3018 I2C_SMBUS_WORD_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019}
David Brownellc0564602007-05-01 23:26:31 +02003020EXPORT_SYMBOL(i2c_smbus_write_word_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
David Brownella64ec072007-10-13 23:56:31 +02003022/**
David Brownella1cdeda2008-07-14 22:38:24 +02003023 * i2c_smbus_read_block_data - SMBus "block read" protocol
David Brownella64ec072007-10-13 23:56:31 +02003024 * @client: Handle to slave device
David Brownella1cdeda2008-07-14 22:38:24 +02003025 * @command: Byte interpreted by slave
David Brownella64ec072007-10-13 23:56:31 +02003026 * @values: Byte array into which data will be read; big enough to hold
3027 * the data returned by the slave. SMBus allows at most 32 bytes.
3028 *
David Brownella1cdeda2008-07-14 22:38:24 +02003029 * This executes the SMBus "block read" protocol, returning negative errno
3030 * else the number of data bytes in the slave's response.
David Brownella64ec072007-10-13 23:56:31 +02003031 *
3032 * Note that using this function requires that the client's adapter support
3033 * the I2C_FUNC_SMBUS_READ_BLOCK_DATA functionality. Not all adapter drivers
3034 * support this; its emulation through I2C messaging relies on a specific
3035 * mechanism (I2C_M_RECV_LEN) which may not be implemented.
3036 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01003037s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
Jean Delvareb86a1bc2007-05-01 23:26:34 +02003038 u8 *values)
3039{
3040 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02003041 int status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02003042
David Brownell24a5bb72008-07-14 22:38:23 +02003043 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3044 I2C_SMBUS_READ, command,
3045 I2C_SMBUS_BLOCK_DATA, &data);
3046 if (status)
3047 return status;
Jean Delvareb86a1bc2007-05-01 23:26:34 +02003048
3049 memcpy(values, &data.block[1], data.block[0]);
3050 return data.block[0];
3051}
3052EXPORT_SYMBOL(i2c_smbus_read_block_data);
3053
David Brownella1cdeda2008-07-14 22:38:24 +02003054/**
3055 * i2c_smbus_write_block_data - SMBus "block write" protocol
3056 * @client: Handle to slave device
3057 * @command: Byte interpreted by slave
3058 * @length: Size of data block; SMBus allows at most 32 bytes
3059 * @values: Byte array which will be written.
3060 *
3061 * This executes the SMBus "block write" protocol, returning negative errno
3062 * else zero on success.
3063 */
Jean Delvare0cc43a12011-01-10 22:11:23 +01003064s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02003065 u8 length, const u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
3067 union i2c_smbus_data data;
Jean Delvare76560322006-01-18 23:14:55 +01003068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 if (length > I2C_SMBUS_BLOCK_MAX)
3070 length = I2C_SMBUS_BLOCK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 data.block[0] = length;
Jean Delvare76560322006-01-18 23:14:55 +01003072 memcpy(&data.block[1], values, length);
Farid Hammane7225acf2010-05-21 18:40:58 +02003073 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3074 I2C_SMBUS_WRITE, command,
3075 I2C_SMBUS_BLOCK_DATA, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076}
David Brownellc0564602007-05-01 23:26:31 +02003077EXPORT_SYMBOL(i2c_smbus_write_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
3079/* Returns the number of read bytes */
Jean Delvare0cc43a12011-01-10 22:11:23 +01003080s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
Jean Delvare4b2643d2007-07-12 14:12:29 +02003081 u8 length, u8 *values)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
3083 union i2c_smbus_data data;
David Brownell24a5bb72008-07-14 22:38:23 +02003084 int status;
Jean Delvare76560322006-01-18 23:14:55 +01003085
Jean Delvare4b2643d2007-07-12 14:12:29 +02003086 if (length > I2C_SMBUS_BLOCK_MAX)
3087 length = I2C_SMBUS_BLOCK_MAX;
3088 data.block[0] = length;
David Brownell24a5bb72008-07-14 22:38:23 +02003089 status = i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3090 I2C_SMBUS_READ, command,
3091 I2C_SMBUS_I2C_BLOCK_DATA, &data);
3092 if (status < 0)
3093 return status;
Jean Delvare76560322006-01-18 23:14:55 +01003094
3095 memcpy(values, &data.block[1], data.block[0]);
3096 return data.block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
David Brownellc0564602007-05-01 23:26:31 +02003098EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Jean Delvare0cc43a12011-01-10 22:11:23 +01003100s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
Krzysztof Halasa46f5ed72006-06-12 21:42:20 +02003101 u8 length, const u8 *values)
Jean Delvare21bbd692006-01-09 15:19:18 +11003102{
3103 union i2c_smbus_data data;
3104
3105 if (length > I2C_SMBUS_BLOCK_MAX)
3106 length = I2C_SMBUS_BLOCK_MAX;
3107 data.block[0] = length;
3108 memcpy(data.block + 1, values, length);
3109 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
3110 I2C_SMBUS_WRITE, command,
3111 I2C_SMBUS_I2C_BLOCK_DATA, &data);
3112}
David Brownellc0564602007-05-01 23:26:31 +02003113EXPORT_SYMBOL(i2c_smbus_write_i2c_block_data);
Jean Delvare21bbd692006-01-09 15:19:18 +11003114
David Brownell438d6c22006-12-10 21:21:31 +01003115/* Simulate a SMBus command using the i2c protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 No checking of parameters is done! */
Farid Hammane7225acf2010-05-21 18:40:58 +02003117static s32 i2c_smbus_xfer_emulated(struct i2c_adapter *adapter, u16 addr,
3118 unsigned short flags,
3119 char read_write, u8 command, int size,
3120 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121{
3122 /* So we need to generate a series of msgs. In the case of writing, we
3123 need to use only one message; when reading, we need two. We initialize
3124 most things with sane defaults, to keep the code below somewhat
3125 simpler. */
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02003126 unsigned char msgbuf0[I2C_SMBUS_BLOCK_MAX+3];
3127 unsigned char msgbuf1[I2C_SMBUS_BLOCK_MAX+2];
Farid Hammane7225acf2010-05-21 18:40:58 +02003128 int num = read_write == I2C_SMBUS_READ ? 2 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 int i;
Jean Delvare421ef472005-10-26 21:28:55 +02003130 u8 partial_pec = 0;
David Brownell24a5bb72008-07-14 22:38:23 +02003131 int status;
Shubhrajyoti D230da092012-10-05 22:23:52 +02003132 struct i2c_msg msg[2] = {
3133 {
3134 .addr = addr,
3135 .flags = flags,
3136 .len = 1,
3137 .buf = msgbuf0,
3138 }, {
3139 .addr = addr,
3140 .flags = flags | I2C_M_RD,
3141 .len = 0,
3142 .buf = msgbuf1,
3143 },
3144 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
3146 msgbuf0[0] = command;
Farid Hammane7225acf2010-05-21 18:40:58 +02003147 switch (size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 case I2C_SMBUS_QUICK:
3149 msg[0].len = 0;
3150 /* Special case: The read/write field is used as data */
Roel Kluinf29d2e02009-02-24 19:19:48 +01003151 msg[0].flags = flags | (read_write == I2C_SMBUS_READ ?
3152 I2C_M_RD : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 num = 1;
3154 break;
3155 case I2C_SMBUS_BYTE:
3156 if (read_write == I2C_SMBUS_READ) {
3157 /* Special case: only a read! */
3158 msg[0].flags = I2C_M_RD | flags;
3159 num = 1;
3160 }
3161 break;
3162 case I2C_SMBUS_BYTE_DATA:
3163 if (read_write == I2C_SMBUS_READ)
3164 msg[1].len = 1;
3165 else {
3166 msg[0].len = 2;
3167 msgbuf0[1] = data->byte;
3168 }
3169 break;
3170 case I2C_SMBUS_WORD_DATA:
3171 if (read_write == I2C_SMBUS_READ)
3172 msg[1].len = 2;
3173 else {
Farid Hammane7225acf2010-05-21 18:40:58 +02003174 msg[0].len = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02003176 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 }
3178 break;
3179 case I2C_SMBUS_PROC_CALL:
3180 num = 2; /* Special case */
3181 read_write = I2C_SMBUS_READ;
3182 msg[0].len = 3;
3183 msg[1].len = 2;
3184 msgbuf0[1] = data->word & 0xff;
Jean Delvare7eff82c2006-09-03 22:24:00 +02003185 msgbuf0[2] = data->word >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 break;
3187 case I2C_SMBUS_BLOCK_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 if (read_write == I2C_SMBUS_READ) {
Jean Delvare209d27c2007-05-01 23:26:29 +02003189 msg[1].flags |= I2C_M_RECV_LEN;
3190 msg[1].len = 1; /* block length will be added by
3191 the underlying bus driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 } else {
3193 msg[0].len = data->block[0] + 2;
3194 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 2) {
David Brownell24a5bb72008-07-14 22:38:23 +02003195 dev_err(&adapter->dev,
3196 "Invalid block write size %d\n",
3197 data->block[0]);
3198 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 }
Hideki Iwamoto5c50d182005-09-25 17:01:11 +02003200 for (i = 1; i < msg[0].len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 msgbuf0[i] = data->block[i-1];
3202 }
3203 break;
3204 case I2C_SMBUS_BLOCK_PROC_CALL:
Jean Delvare209d27c2007-05-01 23:26:29 +02003205 num = 2; /* Another special case */
3206 read_write = I2C_SMBUS_READ;
3207 if (data->block[0] > I2C_SMBUS_BLOCK_MAX) {
David Brownell24a5bb72008-07-14 22:38:23 +02003208 dev_err(&adapter->dev,
3209 "Invalid block write size %d\n",
Jean Delvare209d27c2007-05-01 23:26:29 +02003210 data->block[0]);
David Brownell24a5bb72008-07-14 22:38:23 +02003211 return -EINVAL;
Jean Delvare209d27c2007-05-01 23:26:29 +02003212 }
3213 msg[0].len = data->block[0] + 2;
3214 for (i = 1; i < msg[0].len; i++)
3215 msgbuf0[i] = data->block[i-1];
3216 msg[1].flags |= I2C_M_RECV_LEN;
3217 msg[1].len = 1; /* block length will be added by
3218 the underlying bus driver */
3219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 case I2C_SMBUS_I2C_BLOCK_DATA:
3221 if (read_write == I2C_SMBUS_READ) {
Jean Delvare4b2643d2007-07-12 14:12:29 +02003222 msg[1].len = data->block[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 } else {
3224 msg[0].len = data->block[0] + 1;
Jean Delvare30dac742005-10-08 00:15:59 +02003225 if (msg[0].len > I2C_SMBUS_BLOCK_MAX + 1) {
David Brownell24a5bb72008-07-14 22:38:23 +02003226 dev_err(&adapter->dev,
3227 "Invalid block write size %d\n",
3228 data->block[0]);
3229 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 }
3231 for (i = 1; i <= data->block[0]; i++)
3232 msgbuf0[i] = data->block[i];
3233 }
3234 break;
3235 default:
David Brownell24a5bb72008-07-14 22:38:23 +02003236 dev_err(&adapter->dev, "Unsupported transaction %d\n", size);
3237 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 }
3239
Jean Delvare421ef472005-10-26 21:28:55 +02003240 i = ((flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK
3241 && size != I2C_SMBUS_I2C_BLOCK_DATA);
3242 if (i) {
3243 /* Compute PEC if first message is a write */
3244 if (!(msg[0].flags & I2C_M_RD)) {
David Brownell438d6c22006-12-10 21:21:31 +01003245 if (num == 1) /* Write only */
Jean Delvare421ef472005-10-26 21:28:55 +02003246 i2c_smbus_add_pec(&msg[0]);
3247 else /* Write followed by read */
3248 partial_pec = i2c_smbus_msg_pec(0, &msg[0]);
3249 }
3250 /* Ask for PEC if last message is a read */
3251 if (msg[num-1].flags & I2C_M_RD)
David Brownell438d6c22006-12-10 21:21:31 +01003252 msg[num-1].len++;
Jean Delvare421ef472005-10-26 21:28:55 +02003253 }
3254
David Brownell24a5bb72008-07-14 22:38:23 +02003255 status = i2c_transfer(adapter, msg, num);
3256 if (status < 0)
3257 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Jean Delvare421ef472005-10-26 21:28:55 +02003259 /* Check PEC if last message is a read */
3260 if (i && (msg[num-1].flags & I2C_M_RD)) {
David Brownell24a5bb72008-07-14 22:38:23 +02003261 status = i2c_smbus_check_pec(partial_pec, &msg[num-1]);
3262 if (status < 0)
3263 return status;
Jean Delvare421ef472005-10-26 21:28:55 +02003264 }
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 if (read_write == I2C_SMBUS_READ)
Farid Hammane7225acf2010-05-21 18:40:58 +02003267 switch (size) {
3268 case I2C_SMBUS_BYTE:
3269 data->byte = msgbuf0[0];
3270 break;
3271 case I2C_SMBUS_BYTE_DATA:
3272 data->byte = msgbuf1[0];
3273 break;
3274 case I2C_SMBUS_WORD_DATA:
3275 case I2C_SMBUS_PROC_CALL:
3276 data->word = msgbuf1[0] | (msgbuf1[1] << 8);
3277 break;
3278 case I2C_SMBUS_I2C_BLOCK_DATA:
3279 for (i = 0; i < data->block[0]; i++)
3280 data->block[i+1] = msgbuf1[i];
3281 break;
3282 case I2C_SMBUS_BLOCK_DATA:
3283 case I2C_SMBUS_BLOCK_PROC_CALL:
3284 for (i = 0; i < msgbuf1[0] + 1; i++)
3285 data->block[i] = msgbuf1[i];
3286 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 }
3288 return 0;
3289}
3290
David Brownella1cdeda2008-07-14 22:38:24 +02003291/**
3292 * i2c_smbus_xfer - execute SMBus protocol operations
3293 * @adapter: Handle to I2C bus
3294 * @addr: Address of SMBus slave on that bus
3295 * @flags: I2C_CLIENT_* flags (usually zero or I2C_CLIENT_PEC)
3296 * @read_write: I2C_SMBUS_READ or I2C_SMBUS_WRITE
3297 * @command: Byte interpreted by slave, for protocols which use such bytes
3298 * @protocol: SMBus protocol operation to execute, such as I2C_SMBUS_PROC_CALL
3299 * @data: Data to be read or written
3300 *
3301 * This executes an SMBus protocol operation, and returns a negative
3302 * errno code else zero on success.
3303 */
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01003304s32 i2c_smbus_xfer(struct i2c_adapter *adapter, u16 addr, unsigned short flags,
David Brownella1cdeda2008-07-14 22:38:24 +02003305 char read_write, u8 command, int protocol,
Zhenwen Xu09b8ce02009-03-28 21:34:46 +01003306 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307{
Clifford Wolf66b650f2009-06-15 18:01:46 +02003308 unsigned long orig_jiffies;
3309 int try;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 s32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
David Howells8a325992014-03-06 13:36:06 +00003312 /* If enabled, the following two tracepoints are conditional on
3313 * read_write and protocol.
3314 */
3315 trace_smbus_write(adapter, addr, flags, read_write,
3316 command, protocol, data);
3317 trace_smbus_read(adapter, addr, flags, read_write,
3318 command, protocol);
3319
Laurent Pinchartd47726c2012-07-24 14:13:59 +02003320 flags &= I2C_M_TEN | I2C_CLIENT_PEC | I2C_CLIENT_SCCB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
3322 if (adapter->algo->smbus_xfer) {
Peter Rosin8320f492016-05-04 22:15:27 +02003323 i2c_lock_bus(adapter, I2C_LOCK_SEGMENT);
Clifford Wolf66b650f2009-06-15 18:01:46 +02003324
3325 /* Retry automatically on arbitration loss */
3326 orig_jiffies = jiffies;
3327 for (res = 0, try = 0; try <= adapter->retries; try++) {
3328 res = adapter->algo->smbus_xfer(adapter, addr, flags,
3329 read_write, command,
3330 protocol, data);
3331 if (res != -EAGAIN)
3332 break;
3333 if (time_after(jiffies,
3334 orig_jiffies + adapter->timeout))
3335 break;
3336 }
Peter Rosin8320f492016-05-04 22:15:27 +02003337 i2c_unlock_bus(adapter, I2C_LOCK_SEGMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Laurent Pinchart72fc2c72012-07-24 14:13:59 +02003339 if (res != -EOPNOTSUPP || !adapter->algo->master_xfer)
David Howells8a325992014-03-06 13:36:06 +00003340 goto trace;
Laurent Pinchart72fc2c72012-07-24 14:13:59 +02003341 /*
3342 * Fall back to i2c_smbus_xfer_emulated if the adapter doesn't
3343 * implement native support for the SMBus operation.
3344 */
3345 }
3346
David Howells8a325992014-03-06 13:36:06 +00003347 res = i2c_smbus_xfer_emulated(adapter, addr, flags, read_write,
3348 command, protocol, data);
3349
3350trace:
3351 /* If enabled, the reply tracepoint is conditional on read_write. */
3352 trace_smbus_reply(adapter, addr, flags, read_write,
3353 command, protocol, data);
3354 trace_smbus_result(adapter, addr, flags, read_write,
3355 command, protocol, res);
3356
3357 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359EXPORT_SYMBOL(i2c_smbus_xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Irina Tirdea01eef962015-08-12 17:31:33 +03003361/**
3362 * i2c_smbus_read_i2c_block_data_or_emulated - read block or emulate
3363 * @client: Handle to slave device
3364 * @command: Byte interpreted by slave
3365 * @length: Size of data block; SMBus allows at most I2C_SMBUS_BLOCK_MAX bytes
3366 * @values: Byte array into which data will be read; big enough to hold
3367 * the data returned by the slave. SMBus allows at most
3368 * I2C_SMBUS_BLOCK_MAX bytes.
3369 *
3370 * This executes the SMBus "block read" protocol if supported by the adapter.
3371 * If block read is not supported, it emulates it using either word or byte
3372 * read protocols depending on availability.
3373 *
3374 * The addresses of the I2C slave device that are accessed with this function
3375 * must be mapped to a linear region, so that a block read will have the same
3376 * effect as a byte read. Before using this function you must double-check
3377 * if the I2C slave does support exchanging a block transfer with a byte
3378 * transfer.
3379 */
3380s32 i2c_smbus_read_i2c_block_data_or_emulated(const struct i2c_client *client,
3381 u8 command, u8 length, u8 *values)
3382{
3383 u8 i = 0;
3384 int status;
3385
3386 if (length > I2C_SMBUS_BLOCK_MAX)
3387 length = I2C_SMBUS_BLOCK_MAX;
3388
3389 if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_I2C_BLOCK))
3390 return i2c_smbus_read_i2c_block_data(client, command, length, values);
3391
3392 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_BYTE_DATA))
3393 return -EOPNOTSUPP;
3394
3395 if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_WORD_DATA)) {
3396 while ((i + 2) <= length) {
3397 status = i2c_smbus_read_word_data(client, command + i);
3398 if (status < 0)
3399 return status;
3400 values[i] = status & 0xff;
3401 values[i + 1] = status >> 8;
3402 i += 2;
3403 }
3404 }
3405
3406 while (i < length) {
3407 status = i2c_smbus_read_byte_data(client, command + i);
3408 if (status < 0)
3409 return status;
3410 values[i] = status;
3411 i++;
3412 }
3413
3414 return i;
3415}
3416EXPORT_SYMBOL(i2c_smbus_read_i2c_block_data_or_emulated);
3417
Jean Delvared5fd1202015-01-26 20:59:31 +01003418#if IS_ENABLED(CONFIG_I2C_SLAVE)
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003419int i2c_slave_register(struct i2c_client *client, i2c_slave_cb_t slave_cb)
3420{
3421 int ret;
3422
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003423 if (!client || !slave_cb) {
3424 WARN(1, "insufficent data\n");
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003425 return -EINVAL;
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003426 }
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003427
Wolfram Sangc6909d62015-08-05 21:12:54 +02003428 if (!(client->flags & I2C_CLIENT_SLAVE))
3429 dev_warn(&client->dev, "%s: client slave flag not set. You might see address collisions\n",
3430 __func__);
3431
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003432 if (!(client->flags & I2C_CLIENT_TEN)) {
3433 /* Enforce stricter address checking */
Wolfram Sang66be60562015-07-17 12:43:22 +02003434 ret = i2c_check_7bit_addr_validity_strict(client->addr);
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003435 if (ret) {
3436 dev_err(&client->dev, "%s: invalid address\n", __func__);
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003437 return ret;
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003438 }
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003439 }
3440
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003441 if (!client->adapter->algo->reg_slave) {
3442 dev_err(&client->dev, "%s: not supported by adapter\n", __func__);
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003443 return -EOPNOTSUPP;
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003444 }
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003445
3446 client->slave_cb = slave_cb;
3447
3448 i2c_lock_adapter(client->adapter);
3449 ret = client->adapter->algo->reg_slave(client);
3450 i2c_unlock_adapter(client->adapter);
3451
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003452 if (ret) {
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003453 client->slave_cb = NULL;
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003454 dev_err(&client->dev, "%s: adapter returned error %d\n", __func__, ret);
3455 }
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003456
3457 return ret;
3458}
3459EXPORT_SYMBOL_GPL(i2c_slave_register);
3460
3461int i2c_slave_unregister(struct i2c_client *client)
3462{
3463 int ret;
3464
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003465 if (!client->adapter->algo->unreg_slave) {
3466 dev_err(&client->dev, "%s: not supported by adapter\n", __func__);
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003467 return -EOPNOTSUPP;
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003468 }
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003469
3470 i2c_lock_adapter(client->adapter);
3471 ret = client->adapter->algo->unreg_slave(client);
3472 i2c_unlock_adapter(client->adapter);
3473
3474 if (ret == 0)
3475 client->slave_cb = NULL;
Wolfram Sang0c7cab92015-05-14 14:40:05 +02003476 else
3477 dev_err(&client->dev, "%s: adapter returned error %d\n", __func__, ret);
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003478
3479 return ret;
3480}
3481EXPORT_SYMBOL_GPL(i2c_slave_unregister);
Jean Delvared5fd1202015-01-26 20:59:31 +01003482#endif
Wolfram Sang4b1acc42014-11-18 17:04:53 +01003483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
3485MODULE_DESCRIPTION("I2C-Bus main module");
3486MODULE_LICENSE("GPL");