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