4 * Copyright (C) 1995-99 Simon G. Vogl
5 * With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi>
6 * Mux support by Rodolfo Giometti <giometti@enneenne.com> and
7 * Michael Lawnick <michael.lawnick.ext@nsn.com>
9 * Copyright (C) 2013-2017 Wolfram Sang <wsa@the-dreams.de>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 #define pr_fmt(fmt) "i2c-core: " fmt
23 #include <dt-bindings/i2c/i2c.h>
24 #include <linux/acpi.h>
25 #include <linux/clk/clk-conf.h>
26 #include <linux/completion.h>
27 #include <linux/delay.h>
28 #include <linux/err.h>
29 #include <linux/errno.h>
30 #include <linux/gpio/consumer.h>
31 #include <linux/i2c.h>
32 #include <linux/i2c-smbus.h>
33 #include <linux/idr.h>
34 #include <linux/init.h>
35 #include <linux/irqflags.h>
36 #include <linux/jump_label.h>
37 #include <linux/kernel.h>
38 #include <linux/module.h>
39 #include <linux/mutex.h>
40 #include <linux/of_device.h>
42 #include <linux/of_irq.h>
43 #include <linux/pm_domain.h>
44 #include <linux/pm_runtime.h>
45 #include <linux/pm_wakeirq.h>
46 #include <linux/property.h>
47 #include <linux/rwsem.h>
48 #include <linux/slab.h>
52 #define CREATE_TRACE_POINTS
53 #include <trace/events/i2c.h>
55 #define I2C_ADDR_OFFSET_TEN_BIT 0xa000
56 #define I2C_ADDR_OFFSET_SLAVE 0x1000
58 #define I2C_ADDR_7BITS_MAX 0x77
59 #define I2C_ADDR_7BITS_COUNT (I2C_ADDR_7BITS_MAX + 1)
61 #define I2C_ADDR_DEVICE_ID 0x7c
64 * core_lock protects i2c_adapter_idr, and guarantees that device detection,
65 * deletion of detected devices are serialized
67 static DEFINE_MUTEX(core_lock
);
68 static DEFINE_IDR(i2c_adapter_idr
);
70 static int i2c_detect(struct i2c_adapter
*adapter
, struct i2c_driver
*driver
);
72 static DEFINE_STATIC_KEY_FALSE(i2c_trace_msg_key
);
73 static bool is_registered
;
75 int i2c_transfer_trace_reg(void)
77 static_branch_inc(&i2c_trace_msg_key
);
81 void i2c_transfer_trace_unreg(void)
83 static_branch_dec(&i2c_trace_msg_key
);
86 const struct i2c_device_id
*i2c_match_id(const struct i2c_device_id
*id
,
87 const struct i2c_client
*client
)
93 if (strcmp(client
->name
, id
->name
) == 0)
99 EXPORT_SYMBOL_GPL(i2c_match_id
);
101 static int i2c_device_match(struct device
*dev
, struct device_driver
*drv
)
103 struct i2c_client
*client
= i2c_verify_client(dev
);
104 struct i2c_driver
*driver
;
107 /* Attempt an OF style match */
108 if (i2c_of_match_device(drv
->of_match_table
, client
))
111 /* Then ACPI style match */
112 if (acpi_driver_match_device(dev
, drv
))
115 driver
= to_i2c_driver(drv
);
117 /* Finally an I2C match */
118 if (i2c_match_id(driver
->id_table
, client
))
124 static int i2c_device_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
126 struct i2c_client
*client
= to_i2c_client(dev
);
129 rc
= of_device_uevent_modalias(dev
, env
);
133 rc
= acpi_device_uevent_modalias(dev
, env
);
137 return add_uevent_var(env
, "MODALIAS=%s%s", I2C_MODULE_PREFIX
, client
->name
);
140 /* i2c bus recovery routines */
141 static int get_scl_gpio_value(struct i2c_adapter
*adap
)
143 return gpiod_get_value_cansleep(adap
->bus_recovery_info
->scl_gpiod
);
146 static void set_scl_gpio_value(struct i2c_adapter
*adap
, int val
)
148 gpiod_set_value_cansleep(adap
->bus_recovery_info
->scl_gpiod
, val
);
151 static int get_sda_gpio_value(struct i2c_adapter
*adap
)
153 return gpiod_get_value_cansleep(adap
->bus_recovery_info
->sda_gpiod
);
156 static void set_sda_gpio_value(struct i2c_adapter
*adap
, int val
)
158 gpiod_set_value_cansleep(adap
->bus_recovery_info
->sda_gpiod
, val
);
161 static int i2c_generic_bus_free(struct i2c_adapter
*adap
)
163 struct i2c_bus_recovery_info
*bri
= adap
->bus_recovery_info
;
164 int ret
= -EOPNOTSUPP
;
166 if (bri
->get_bus_free
)
167 ret
= bri
->get_bus_free(adap
);
168 else if (bri
->get_sda
)
169 ret
= bri
->get_sda(adap
);
174 return ret
? 0 : -EBUSY
;
178 * We are generating clock pulses. ndelay() determines durating of clk pulses.
179 * We will generate clock with rate 100 KHz and so duration of both clock levels
180 * is: delay in ns = (10^6 / 100) / 2
182 #define RECOVERY_NDELAY 5000
183 #define RECOVERY_CLK_CNT 9
185 int i2c_generic_scl_recovery(struct i2c_adapter
*adap
)
187 struct i2c_bus_recovery_info
*bri
= adap
->bus_recovery_info
;
188 int i
= 0, scl
= 1, ret
= 0;
190 if (bri
->prepare_recovery
)
191 bri
->prepare_recovery(adap
);
194 * If we can set SDA, we will always create a STOP to ensure additional
195 * pulses will do no harm. This is achieved by letting SDA follow SCL
196 * half a cycle later. Check the 'incomplete_write_byte' fault injector
197 * for details. Note that we must honour tsu:sto, 4us, but lets use 5us
198 * here for simplicity.
200 bri
->set_scl(adap
, scl
);
201 ndelay(RECOVERY_NDELAY
);
203 bri
->set_sda(adap
, scl
);
204 ndelay(RECOVERY_NDELAY
/ 2);
207 * By this time SCL is high, as we need to give 9 falling-rising edges
209 while (i
++ < RECOVERY_CLK_CNT
* 2) {
211 /* SCL shouldn't be low here */
212 if (!bri
->get_scl(adap
)) {
214 "SCL is stuck low, exit recovery\n");
221 bri
->set_scl(adap
, scl
);
222 /* Creating STOP again, see above */
224 /* Honour minimum tsu:sto */
225 ndelay(RECOVERY_NDELAY
);
227 /* Honour minimum tf and thd:dat */
228 ndelay(RECOVERY_NDELAY
/ 2);
231 bri
->set_sda(adap
, scl
);
232 ndelay(RECOVERY_NDELAY
/ 2);
235 ret
= i2c_generic_bus_free(adap
);
241 /* If we can't check bus status, assume recovery worked */
242 if (ret
== -EOPNOTSUPP
)
245 if (bri
->unprepare_recovery
)
246 bri
->unprepare_recovery(adap
);
250 EXPORT_SYMBOL_GPL(i2c_generic_scl_recovery
);
252 int i2c_recover_bus(struct i2c_adapter
*adap
)
254 if (!adap
->bus_recovery_info
)
257 dev_dbg(&adap
->dev
, "Trying i2c bus recovery\n");
258 return adap
->bus_recovery_info
->recover_bus(adap
);
260 EXPORT_SYMBOL_GPL(i2c_recover_bus
);
262 static void i2c_init_recovery(struct i2c_adapter
*adap
)
264 struct i2c_bus_recovery_info
*bri
= adap
->bus_recovery_info
;
270 if (!bri
->recover_bus
) {
271 err_str
= "no recover_bus() found";
275 if (bri
->scl_gpiod
&& bri
->recover_bus
== i2c_generic_scl_recovery
) {
276 bri
->get_scl
= get_scl_gpio_value
;
277 bri
->set_scl
= set_scl_gpio_value
;
278 if (bri
->sda_gpiod
) {
279 bri
->get_sda
= get_sda_gpio_value
;
280 /* FIXME: add proper flag instead of '0' once available */
281 if (gpiod_get_direction(bri
->sda_gpiod
) == 0)
282 bri
->set_sda
= set_sda_gpio_value
;
287 if (bri
->recover_bus
== i2c_generic_scl_recovery
) {
288 /* Generic SCL recovery */
289 if (!bri
->set_scl
|| !bri
->get_scl
) {
290 err_str
= "no {get|set}_scl() found";
293 if (!bri
->set_sda
&& !bri
->get_sda
) {
294 err_str
= "either get_sda() or set_sda() needed";
301 dev_err(&adap
->dev
, "Not using recovery: %s\n", err_str
);
302 adap
->bus_recovery_info
= NULL
;
305 static int i2c_smbus_host_notify_to_irq(const struct i2c_client
*client
)
307 struct i2c_adapter
*adap
= client
->adapter
;
310 if (!adap
->host_notify_domain
)
313 if (client
->flags
& I2C_CLIENT_TEN
)
316 irq
= irq_create_mapping(adap
->host_notify_domain
, client
->addr
);
318 return irq
> 0 ? irq
: -ENXIO
;
321 static int i2c_device_probe(struct device
*dev
)
323 struct i2c_client
*client
= i2c_verify_client(dev
);
324 struct i2c_driver
*driver
;
330 driver
= to_i2c_driver(dev
->driver
);
332 if (!client
->irq
&& !driver
->disable_i2c_core_irq_mapping
) {
335 if (client
->flags
& I2C_CLIENT_HOST_NOTIFY
) {
336 dev_dbg(dev
, "Using Host Notify IRQ\n");
337 /* Keep adapter active when Host Notify is required */
338 pm_runtime_get_sync(&client
->adapter
->dev
);
339 irq
= i2c_smbus_host_notify_to_irq(client
);
340 } else if (dev
->of_node
) {
341 irq
= of_irq_get_byname(dev
->of_node
, "irq");
342 if (irq
== -EINVAL
|| irq
== -ENODATA
)
343 irq
= of_irq_get(dev
->of_node
, 0);
344 } else if (ACPI_COMPANION(dev
)) {
345 irq
= acpi_dev_gpio_irq_get(ACPI_COMPANION(dev
), 0);
347 if (irq
== -EPROBE_DEFER
)
357 * An I2C ID table is not mandatory, if and only if, a suitable OF
358 * or ACPI ID table is supplied for the probing device.
360 if (!driver
->id_table
&&
361 !i2c_acpi_match_device(dev
->driver
->acpi_match_table
, client
) &&
362 !i2c_of_match_device(dev
->driver
->of_match_table
, client
))
365 if (client
->flags
& I2C_CLIENT_WAKE
) {
366 int wakeirq
= -ENOENT
;
369 wakeirq
= of_irq_get_byname(dev
->of_node
, "wakeup");
370 if (wakeirq
== -EPROBE_DEFER
)
374 device_init_wakeup(&client
->dev
, true);
376 if (wakeirq
> 0 && wakeirq
!= client
->irq
)
377 status
= dev_pm_set_dedicated_wake_irq(dev
, wakeirq
);
378 else if (client
->irq
> 0)
379 status
= dev_pm_set_wake_irq(dev
, client
->irq
);
384 dev_warn(&client
->dev
, "failed to set up wakeup irq\n");
387 dev_dbg(dev
, "probe\n");
389 status
= of_clk_set_defaults(dev
->of_node
, false);
391 goto err_clear_wakeup_irq
;
393 status
= dev_pm_domain_attach(&client
->dev
, true);
395 goto err_clear_wakeup_irq
;
398 * When there are no more users of probe(),
399 * rename probe_new to probe.
401 if (driver
->probe_new
)
402 status
= driver
->probe_new(client
);
403 else if (driver
->probe
)
404 status
= driver
->probe(client
,
405 i2c_match_id(driver
->id_table
, client
));
410 goto err_detach_pm_domain
;
414 err_detach_pm_domain
:
415 dev_pm_domain_detach(&client
->dev
, true);
416 err_clear_wakeup_irq
:
417 dev_pm_clear_wake_irq(&client
->dev
);
418 device_init_wakeup(&client
->dev
, false);
422 static int i2c_device_remove(struct device
*dev
)
424 struct i2c_client
*client
= i2c_verify_client(dev
);
425 struct i2c_driver
*driver
;
428 if (!client
|| !dev
->driver
)
431 driver
= to_i2c_driver(dev
->driver
);
432 if (driver
->remove
) {
433 dev_dbg(dev
, "remove\n");
434 status
= driver
->remove(client
);
437 dev_pm_domain_detach(&client
->dev
, true);
439 dev_pm_clear_wake_irq(&client
->dev
);
440 device_init_wakeup(&client
->dev
, false);
442 client
->irq
= client
->init_irq
;
443 if (client
->flags
& I2C_CLIENT_HOST_NOTIFY
)
444 pm_runtime_put(&client
->adapter
->dev
);
449 static void i2c_device_shutdown(struct device
*dev
)
451 struct i2c_client
*client
= i2c_verify_client(dev
);
452 struct i2c_driver
*driver
;
454 if (!client
|| !dev
->driver
)
456 driver
= to_i2c_driver(dev
->driver
);
457 if (driver
->shutdown
)
458 driver
->shutdown(client
);
461 static void i2c_client_dev_release(struct device
*dev
)
463 kfree(to_i2c_client(dev
));
467 show_name(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
469 return sprintf(buf
, "%s\n", dev
->type
== &i2c_client_type
?
470 to_i2c_client(dev
)->name
: to_i2c_adapter(dev
)->name
);
472 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
);
475 show_modalias(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
477 struct i2c_client
*client
= to_i2c_client(dev
);
480 len
= of_device_modalias(dev
, buf
, PAGE_SIZE
);
484 len
= acpi_device_modalias(dev
, buf
, PAGE_SIZE
-1);
488 return sprintf(buf
, "%s%s\n", I2C_MODULE_PREFIX
, client
->name
);
490 static DEVICE_ATTR(modalias
, S_IRUGO
, show_modalias
, NULL
);
492 static struct attribute
*i2c_dev_attrs
[] = {
494 /* modalias helps coldplug: modprobe $(cat .../modalias) */
495 &dev_attr_modalias
.attr
,
498 ATTRIBUTE_GROUPS(i2c_dev
);
500 struct bus_type i2c_bus_type
= {
502 .match
= i2c_device_match
,
503 .probe
= i2c_device_probe
,
504 .remove
= i2c_device_remove
,
505 .shutdown
= i2c_device_shutdown
,
507 EXPORT_SYMBOL_GPL(i2c_bus_type
);
509 struct device_type i2c_client_type
= {
510 .groups
= i2c_dev_groups
,
511 .uevent
= i2c_device_uevent
,
512 .release
= i2c_client_dev_release
,
514 EXPORT_SYMBOL_GPL(i2c_client_type
);
518 * i2c_verify_client - return parameter as i2c_client, or NULL
519 * @dev: device, probably from some driver model iterator
521 * When traversing the driver model tree, perhaps using driver model
522 * iterators like @device_for_each_child(), you can't assume very much
523 * about the nodes you find. Use this function to avoid oopses caused
524 * by wrongly treating some non-I2C device as an i2c_client.
526 struct i2c_client
*i2c_verify_client(struct device
*dev
)
528 return (dev
->type
== &i2c_client_type
)
532 EXPORT_SYMBOL(i2c_verify_client
);
535 /* Return a unique address which takes the flags of the client into account */
536 static unsigned short i2c_encode_flags_to_addr(struct i2c_client
*client
)
538 unsigned short addr
= client
->addr
;
540 /* For some client flags, add an arbitrary offset to avoid collisions */
541 if (client
->flags
& I2C_CLIENT_TEN
)
542 addr
|= I2C_ADDR_OFFSET_TEN_BIT
;
544 if (client
->flags
& I2C_CLIENT_SLAVE
)
545 addr
|= I2C_ADDR_OFFSET_SLAVE
;
550 /* This is a permissive address validity check, I2C address map constraints
551 * are purposely not enforced, except for the general call address. */
552 static int i2c_check_addr_validity(unsigned int addr
, unsigned short flags
)
554 if (flags
& I2C_CLIENT_TEN
) {
555 /* 10-bit address, all values are valid */
559 /* 7-bit address, reject the general call address */
560 if (addr
== 0x00 || addr
> 0x7f)
566 /* And this is a strict address validity check, used when probing. If a
567 * device uses a reserved address, then it shouldn't be probed. 7-bit
568 * addressing is assumed, 10-bit address devices are rare and should be
569 * explicitly enumerated. */
570 int i2c_check_7bit_addr_validity_strict(unsigned short addr
)
573 * Reserved addresses per I2C specification:
574 * 0x00 General call address / START byte
576 * 0x02 Reserved for different bus format
577 * 0x03 Reserved for future purposes
578 * 0x04-0x07 Hs-mode master code
579 * 0x78-0x7b 10-bit slave addressing
580 * 0x7c-0x7f Reserved for future purposes
582 if (addr
< 0x08 || addr
> 0x77)
587 static int __i2c_check_addr_busy(struct device
*dev
, void *addrp
)
589 struct i2c_client
*client
= i2c_verify_client(dev
);
590 int addr
= *(int *)addrp
;
592 if (client
&& i2c_encode_flags_to_addr(client
) == addr
)
597 /* walk up mux tree */
598 static int i2c_check_mux_parents(struct i2c_adapter
*adapter
, int addr
)
600 struct i2c_adapter
*parent
= i2c_parent_is_i2c_adapter(adapter
);
603 result
= device_for_each_child(&adapter
->dev
, &addr
,
604 __i2c_check_addr_busy
);
606 if (!result
&& parent
)
607 result
= i2c_check_mux_parents(parent
, addr
);
612 /* recurse down mux tree */
613 static int i2c_check_mux_children(struct device
*dev
, void *addrp
)
617 if (dev
->type
== &i2c_adapter_type
)
618 result
= device_for_each_child(dev
, addrp
,
619 i2c_check_mux_children
);
621 result
= __i2c_check_addr_busy(dev
, addrp
);
626 static int i2c_check_addr_busy(struct i2c_adapter
*adapter
, int addr
)
628 struct i2c_adapter
*parent
= i2c_parent_is_i2c_adapter(adapter
);
632 result
= i2c_check_mux_parents(parent
, addr
);
635 result
= device_for_each_child(&adapter
->dev
, &addr
,
636 i2c_check_mux_children
);
642 * i2c_adapter_lock_bus - Get exclusive access to an I2C bus segment
643 * @adapter: Target I2C bus segment
644 * @flags: I2C_LOCK_ROOT_ADAPTER locks the root i2c adapter, I2C_LOCK_SEGMENT
645 * locks only this branch in the adapter tree
647 static void i2c_adapter_lock_bus(struct i2c_adapter
*adapter
,
650 rt_mutex_lock_nested(&adapter
->bus_lock
, i2c_adapter_depth(adapter
));
654 * i2c_adapter_trylock_bus - Try to get exclusive access to an I2C bus segment
655 * @adapter: Target I2C bus segment
656 * @flags: I2C_LOCK_ROOT_ADAPTER trylocks the root i2c adapter, I2C_LOCK_SEGMENT
657 * trylocks only this branch in the adapter tree
659 static int i2c_adapter_trylock_bus(struct i2c_adapter
*adapter
,
662 return rt_mutex_trylock(&adapter
->bus_lock
);
666 * i2c_adapter_unlock_bus - Release exclusive access to an I2C bus segment
667 * @adapter: Target I2C bus segment
668 * @flags: I2C_LOCK_ROOT_ADAPTER unlocks the root i2c adapter, I2C_LOCK_SEGMENT
669 * unlocks only this branch in the adapter tree
671 static void i2c_adapter_unlock_bus(struct i2c_adapter
*adapter
,
674 rt_mutex_unlock(&adapter
->bus_lock
);
677 static void i2c_dev_set_name(struct i2c_adapter
*adap
,
678 struct i2c_client
*client
,
679 struct i2c_board_info
const *info
)
681 struct acpi_device
*adev
= ACPI_COMPANION(&client
->dev
);
683 if (info
&& info
->dev_name
) {
684 dev_set_name(&client
->dev
, "i2c-%s", info
->dev_name
);
689 dev_set_name(&client
->dev
, "i2c-%s", acpi_dev_name(adev
));
693 dev_set_name(&client
->dev
, "%d-%04x", i2c_adapter_id(adap
),
694 i2c_encode_flags_to_addr(client
));
697 static int i2c_dev_irq_from_resources(const struct resource
*resources
,
698 unsigned int num_resources
)
700 struct irq_data
*irqd
;
703 for (i
= 0; i
< num_resources
; i
++) {
704 const struct resource
*r
= &resources
[i
];
706 if (resource_type(r
) != IORESOURCE_IRQ
)
709 if (r
->flags
& IORESOURCE_BITS
) {
710 irqd
= irq_get_irq_data(r
->start
);
714 irqd_set_trigger_type(irqd
, r
->flags
& IORESOURCE_BITS
);
724 * i2c_new_device - instantiate an i2c device
725 * @adap: the adapter managing the device
726 * @info: describes one I2C device; bus_num is ignored
729 * Create an i2c device. Binding is handled through driver model
730 * probe()/remove() methods. A driver may be bound to this device when we
731 * return from this function, or any later moment (e.g. maybe hotplugging will
732 * load the driver module). This call is not appropriate for use by mainboard
733 * initialization logic, which usually runs during an arch_initcall() long
734 * before any i2c_adapter could exist.
736 * This returns the new i2c client, which may be saved for later use with
737 * i2c_unregister_device(); or NULL to indicate an error.
740 i2c_new_device(struct i2c_adapter
*adap
, struct i2c_board_info
const *info
)
742 struct i2c_client
*client
;
745 client
= kzalloc(sizeof *client
, GFP_KERNEL
);
749 client
->adapter
= adap
;
751 client
->dev
.platform_data
= info
->platform_data
;
752 client
->flags
= info
->flags
;
753 client
->addr
= info
->addr
;
755 client
->init_irq
= info
->irq
;
756 if (!client
->init_irq
)
757 client
->init_irq
= i2c_dev_irq_from_resources(info
->resources
,
758 info
->num_resources
);
759 client
->irq
= client
->init_irq
;
761 strlcpy(client
->name
, info
->type
, sizeof(client
->name
));
763 status
= i2c_check_addr_validity(client
->addr
, client
->flags
);
765 dev_err(&adap
->dev
, "Invalid %d-bit I2C address 0x%02hx\n",
766 client
->flags
& I2C_CLIENT_TEN
? 10 : 7, client
->addr
);
770 /* Check for address business */
771 status
= i2c_check_addr_busy(adap
, i2c_encode_flags_to_addr(client
));
775 client
->dev
.parent
= &client
->adapter
->dev
;
776 client
->dev
.bus
= &i2c_bus_type
;
777 client
->dev
.type
= &i2c_client_type
;
778 client
->dev
.of_node
= of_node_get(info
->of_node
);
779 client
->dev
.fwnode
= info
->fwnode
;
781 i2c_dev_set_name(adap
, client
, info
);
783 if (info
->properties
) {
784 status
= device_add_properties(&client
->dev
, info
->properties
);
787 "Failed to add properties to client %s: %d\n",
788 client
->name
, status
);
789 goto out_err_put_of_node
;
793 status
= device_register(&client
->dev
);
797 dev_dbg(&adap
->dev
, "client [%s] registered with bus id %s\n",
798 client
->name
, dev_name(&client
->dev
));
803 if (info
->properties
)
804 device_remove_properties(&client
->dev
);
806 of_node_put(info
->of_node
);
809 "Failed to register i2c client %s at 0x%02x (%d)\n",
810 client
->name
, client
->addr
, status
);
815 EXPORT_SYMBOL_GPL(i2c_new_device
);
819 * i2c_unregister_device - reverse effect of i2c_new_device()
820 * @client: value returned from i2c_new_device()
823 void i2c_unregister_device(struct i2c_client
*client
)
828 if (client
->dev
.of_node
) {
829 of_node_clear_flag(client
->dev
.of_node
, OF_POPULATED
);
830 of_node_put(client
->dev
.of_node
);
833 if (ACPI_COMPANION(&client
->dev
))
834 acpi_device_clear_enumerated(ACPI_COMPANION(&client
->dev
));
835 device_unregister(&client
->dev
);
837 EXPORT_SYMBOL_GPL(i2c_unregister_device
);
840 static const struct i2c_device_id dummy_id
[] = {
845 static int dummy_probe(struct i2c_client
*client
,
846 const struct i2c_device_id
*id
)
851 static int dummy_remove(struct i2c_client
*client
)
856 static struct i2c_driver dummy_driver
= {
857 .driver
.name
= "dummy",
858 .probe
= dummy_probe
,
859 .remove
= dummy_remove
,
860 .id_table
= dummy_id
,
864 * i2c_new_dummy - return a new i2c device bound to a dummy driver
865 * @adapter: the adapter managing the device
866 * @address: seven bit address to be used
869 * This returns an I2C client bound to the "dummy" driver, intended for use
870 * with devices that consume multiple addresses. Examples of such chips
871 * include various EEPROMS (like 24c04 and 24c08 models).
873 * These dummy devices have two main uses. First, most I2C and SMBus calls
874 * except i2c_transfer() need a client handle; the dummy will be that handle.
875 * And second, this prevents the specified address from being bound to a
878 * This returns the new i2c client, which should be saved for later use with
879 * i2c_unregister_device(); or NULL to indicate an error.
881 struct i2c_client
*i2c_new_dummy(struct i2c_adapter
*adapter
, u16 address
)
883 struct i2c_board_info info
= {
884 I2C_BOARD_INFO("dummy", address
),
887 return i2c_new_device(adapter
, &info
);
889 EXPORT_SYMBOL_GPL(i2c_new_dummy
);
892 * i2c_new_secondary_device - Helper to get the instantiated secondary address
893 * and create the associated device
894 * @client: Handle to the primary client
895 * @name: Handle to specify which secondary address to get
896 * @default_addr: Used as a fallback if no secondary address was specified
899 * I2C clients can be composed of multiple I2C slaves bound together in a single
900 * component. The I2C client driver then binds to the master I2C slave and needs
901 * to create I2C dummy clients to communicate with all the other slaves.
903 * This function creates and returns an I2C dummy client whose I2C address is
904 * retrieved from the platform firmware based on the given slave name. If no
905 * address is specified by the firmware default_addr is used.
907 * On DT-based platforms the address is retrieved from the "reg" property entry
908 * cell whose "reg-names" value matches the slave name.
910 * This returns the new i2c client, which should be saved for later use with
911 * i2c_unregister_device(); or NULL to indicate an error.
913 struct i2c_client
*i2c_new_secondary_device(struct i2c_client
*client
,
917 struct device_node
*np
= client
->dev
.of_node
;
918 u32 addr
= default_addr
;
922 i
= of_property_match_string(np
, "reg-names", name
);
924 of_property_read_u32_index(np
, "reg", i
, &addr
);
927 dev_dbg(&client
->adapter
->dev
, "Address for %s : 0x%x\n", name
, addr
);
928 return i2c_new_dummy(client
->adapter
, addr
);
930 EXPORT_SYMBOL_GPL(i2c_new_secondary_device
);
932 /* ------------------------------------------------------------------------- */
934 /* I2C bus adapters -- one roots each I2C or SMBUS segment */
936 static void i2c_adapter_dev_release(struct device
*dev
)
938 struct i2c_adapter
*adap
= to_i2c_adapter(dev
);
939 complete(&adap
->dev_released
);
942 unsigned int i2c_adapter_depth(struct i2c_adapter
*adapter
)
944 unsigned int depth
= 0;
946 while ((adapter
= i2c_parent_is_i2c_adapter(adapter
)))
949 WARN_ONCE(depth
>= MAX_LOCKDEP_SUBCLASSES
,
950 "adapter depth exceeds lockdep subclass limit\n");
954 EXPORT_SYMBOL_GPL(i2c_adapter_depth
);
957 * Let users instantiate I2C devices through sysfs. This can be used when
958 * platform initialization code doesn't contain the proper data for
959 * whatever reason. Also useful for drivers that do device detection and
960 * detection fails, either because the device uses an unexpected address,
961 * or this is a compatible device with different ID register values.
963 * Parameter checking may look overzealous, but we really don't want
964 * the user to provide incorrect parameters.
967 i2c_sysfs_new_device(struct device
*dev
, struct device_attribute
*attr
,
968 const char *buf
, size_t count
)
970 struct i2c_adapter
*adap
= to_i2c_adapter(dev
);
971 struct i2c_board_info info
;
972 struct i2c_client
*client
;
976 memset(&info
, 0, sizeof(struct i2c_board_info
));
978 blank
= strchr(buf
, ' ');
980 dev_err(dev
, "%s: Missing parameters\n", "new_device");
983 if (blank
- buf
> I2C_NAME_SIZE
- 1) {
984 dev_err(dev
, "%s: Invalid device name\n", "new_device");
987 memcpy(info
.type
, buf
, blank
- buf
);
989 /* Parse remaining parameters, reject extra parameters */
990 res
= sscanf(++blank
, "%hi%c", &info
.addr
, &end
);
992 dev_err(dev
, "%s: Can't parse I2C address\n", "new_device");
995 if (res
> 1 && end
!= '\n') {
996 dev_err(dev
, "%s: Extra parameters\n", "new_device");
1000 if ((info
.addr
& I2C_ADDR_OFFSET_TEN_BIT
) == I2C_ADDR_OFFSET_TEN_BIT
) {
1001 info
.addr
&= ~I2C_ADDR_OFFSET_TEN_BIT
;
1002 info
.flags
|= I2C_CLIENT_TEN
;
1005 if (info
.addr
& I2C_ADDR_OFFSET_SLAVE
) {
1006 info
.addr
&= ~I2C_ADDR_OFFSET_SLAVE
;
1007 info
.flags
|= I2C_CLIENT_SLAVE
;
1010 client
= i2c_new_device(adap
, &info
);
1014 /* Keep track of the added device */
1015 mutex_lock(&adap
->userspace_clients_lock
);
1016 list_add_tail(&client
->detected
, &adap
->userspace_clients
);
1017 mutex_unlock(&adap
->userspace_clients_lock
);
1018 dev_info(dev
, "%s: Instantiated device %s at 0x%02hx\n", "new_device",
1019 info
.type
, info
.addr
);
1023 static DEVICE_ATTR(new_device
, S_IWUSR
, NULL
, i2c_sysfs_new_device
);
1026 * And of course let the users delete the devices they instantiated, if
1027 * they got it wrong. This interface can only be used to delete devices
1028 * instantiated by i2c_sysfs_new_device above. This guarantees that we
1029 * don't delete devices to which some kernel code still has references.
1031 * Parameter checking may look overzealous, but we really don't want
1032 * the user to delete the wrong device.
1035 i2c_sysfs_delete_device(struct device
*dev
, struct device_attribute
*attr
,
1036 const char *buf
, size_t count
)
1038 struct i2c_adapter
*adap
= to_i2c_adapter(dev
);
1039 struct i2c_client
*client
, *next
;
1040 unsigned short addr
;
1044 /* Parse parameters, reject extra parameters */
1045 res
= sscanf(buf
, "%hi%c", &addr
, &end
);
1047 dev_err(dev
, "%s: Can't parse I2C address\n", "delete_device");
1050 if (res
> 1 && end
!= '\n') {
1051 dev_err(dev
, "%s: Extra parameters\n", "delete_device");
1055 /* Make sure the device was added through sysfs */
1057 mutex_lock_nested(&adap
->userspace_clients_lock
,
1058 i2c_adapter_depth(adap
));
1059 list_for_each_entry_safe(client
, next
, &adap
->userspace_clients
,
1061 if (i2c_encode_flags_to_addr(client
) == addr
) {
1062 dev_info(dev
, "%s: Deleting device %s at 0x%02hx\n",
1063 "delete_device", client
->name
, client
->addr
);
1065 list_del(&client
->detected
);
1066 i2c_unregister_device(client
);
1071 mutex_unlock(&adap
->userspace_clients_lock
);
1074 dev_err(dev
, "%s: Can't find device in list\n",
1078 static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device
, S_IWUSR
, NULL
,
1079 i2c_sysfs_delete_device
);
1081 static struct attribute
*i2c_adapter_attrs
[] = {
1082 &dev_attr_name
.attr
,
1083 &dev_attr_new_device
.attr
,
1084 &dev_attr_delete_device
.attr
,
1087 ATTRIBUTE_GROUPS(i2c_adapter
);
1089 struct device_type i2c_adapter_type
= {
1090 .groups
= i2c_adapter_groups
,
1091 .release
= i2c_adapter_dev_release
,
1093 EXPORT_SYMBOL_GPL(i2c_adapter_type
);
1096 * i2c_verify_adapter - return parameter as i2c_adapter or NULL
1097 * @dev: device, probably from some driver model iterator
1099 * When traversing the driver model tree, perhaps using driver model
1100 * iterators like @device_for_each_child(), you can't assume very much
1101 * about the nodes you find. Use this function to avoid oopses caused
1102 * by wrongly treating some non-I2C device as an i2c_adapter.
1104 struct i2c_adapter
*i2c_verify_adapter(struct device
*dev
)
1106 return (dev
->type
== &i2c_adapter_type
)
1107 ? to_i2c_adapter(dev
)
1110 EXPORT_SYMBOL(i2c_verify_adapter
);
1112 #ifdef CONFIG_I2C_COMPAT
1113 static struct class_compat
*i2c_adapter_compat_class
;
1116 static void i2c_scan_static_board_info(struct i2c_adapter
*adapter
)
1118 struct i2c_devinfo
*devinfo
;
1120 down_read(&__i2c_board_lock
);
1121 list_for_each_entry(devinfo
, &__i2c_board_list
, list
) {
1122 if (devinfo
->busnum
== adapter
->nr
1123 && !i2c_new_device(adapter
,
1124 &devinfo
->board_info
))
1125 dev_err(&adapter
->dev
,
1126 "Can't create device at 0x%02x\n",
1127 devinfo
->board_info
.addr
);
1129 up_read(&__i2c_board_lock
);
1132 static int i2c_do_add_adapter(struct i2c_driver
*driver
,
1133 struct i2c_adapter
*adap
)
1135 /* Detect supported devices on that bus, and instantiate them */
1136 i2c_detect(adap
, driver
);
1141 static int __process_new_adapter(struct device_driver
*d
, void *data
)
1143 return i2c_do_add_adapter(to_i2c_driver(d
), data
);
1146 static const struct i2c_lock_operations i2c_adapter_lock_ops
= {
1147 .lock_bus
= i2c_adapter_lock_bus
,
1148 .trylock_bus
= i2c_adapter_trylock_bus
,
1149 .unlock_bus
= i2c_adapter_unlock_bus
,
1152 static void i2c_host_notify_irq_teardown(struct i2c_adapter
*adap
)
1154 struct irq_domain
*domain
= adap
->host_notify_domain
;
1155 irq_hw_number_t hwirq
;
1160 for (hwirq
= 0 ; hwirq
< I2C_ADDR_7BITS_COUNT
; hwirq
++)
1161 irq_dispose_mapping(irq_find_mapping(domain
, hwirq
));
1163 irq_domain_remove(domain
);
1164 adap
->host_notify_domain
= NULL
;
1167 static int i2c_host_notify_irq_map(struct irq_domain
*h
,
1169 irq_hw_number_t hw_irq_num
)
1171 irq_set_chip_and_handler(virq
, &dummy_irq_chip
, handle_simple_irq
);
1176 static const struct irq_domain_ops i2c_host_notify_irq_ops
= {
1177 .map
= i2c_host_notify_irq_map
,
1180 static int i2c_setup_host_notify_irq_domain(struct i2c_adapter
*adap
)
1182 struct irq_domain
*domain
;
1184 if (!i2c_check_functionality(adap
, I2C_FUNC_SMBUS_HOST_NOTIFY
))
1187 domain
= irq_domain_create_linear(adap
->dev
.fwnode
,
1188 I2C_ADDR_7BITS_COUNT
,
1189 &i2c_host_notify_irq_ops
, adap
);
1193 adap
->host_notify_domain
= domain
;
1199 * i2c_handle_smbus_host_notify - Forward a Host Notify event to the correct
1201 * @adap: the adapter
1202 * @addr: the I2C address of the notifying device
1203 * Context: can't sleep
1205 * Helper function to be called from an I2C bus driver's interrupt
1206 * handler. It will schedule the Host Notify IRQ.
1208 int i2c_handle_smbus_host_notify(struct i2c_adapter
*adap
, unsigned short addr
)
1215 irq
= irq_find_mapping(adap
->host_notify_domain
, addr
);
1219 generic_handle_irq(irq
);
1223 EXPORT_SYMBOL_GPL(i2c_handle_smbus_host_notify
);
1225 static int i2c_register_adapter(struct i2c_adapter
*adap
)
1229 /* Can't register until after driver model init */
1230 if (WARN_ON(!is_registered
)) {
1236 if (WARN(!adap
->name
[0], "i2c adapter has no name"))
1240 pr_err("adapter '%s': no algo supplied!\n", adap
->name
);
1244 if (!adap
->lock_ops
)
1245 adap
->lock_ops
= &i2c_adapter_lock_ops
;
1247 rt_mutex_init(&adap
->bus_lock
);
1248 rt_mutex_init(&adap
->mux_lock
);
1249 mutex_init(&adap
->userspace_clients_lock
);
1250 INIT_LIST_HEAD(&adap
->userspace_clients
);
1252 /* Set default timeout to 1 second if not already set */
1253 if (adap
->timeout
== 0)
1256 /* register soft irqs for Host Notify */
1257 res
= i2c_setup_host_notify_irq_domain(adap
);
1259 pr_err("adapter '%s': can't create Host Notify IRQs (%d)\n",
1264 dev_set_name(&adap
->dev
, "i2c-%d", adap
->nr
);
1265 adap
->dev
.bus
= &i2c_bus_type
;
1266 adap
->dev
.type
= &i2c_adapter_type
;
1267 res
= device_register(&adap
->dev
);
1269 pr_err("adapter '%s': can't register device (%d)\n", adap
->name
, res
);
1273 res
= of_i2c_setup_smbus_alert(adap
);
1277 dev_dbg(&adap
->dev
, "adapter [%s] registered\n", adap
->name
);
1279 pm_runtime_no_callbacks(&adap
->dev
);
1280 pm_suspend_ignore_children(&adap
->dev
, true);
1281 pm_runtime_enable(&adap
->dev
);
1283 #ifdef CONFIG_I2C_COMPAT
1284 res
= class_compat_create_link(i2c_adapter_compat_class
, &adap
->dev
,
1287 dev_warn(&adap
->dev
,
1288 "Failed to create compatibility class link\n");
1291 i2c_init_recovery(adap
);
1293 /* create pre-declared device nodes */
1294 of_i2c_register_devices(adap
);
1295 i2c_acpi_register_devices(adap
);
1296 i2c_acpi_install_space_handler(adap
);
1298 if (adap
->nr
< __i2c_first_dynamic_bus_num
)
1299 i2c_scan_static_board_info(adap
);
1301 /* Notify drivers */
1302 mutex_lock(&core_lock
);
1303 bus_for_each_drv(&i2c_bus_type
, NULL
, adap
, __process_new_adapter
);
1304 mutex_unlock(&core_lock
);
1309 init_completion(&adap
->dev_released
);
1310 device_unregister(&adap
->dev
);
1311 wait_for_completion(&adap
->dev_released
);
1313 mutex_lock(&core_lock
);
1314 idr_remove(&i2c_adapter_idr
, adap
->nr
);
1315 mutex_unlock(&core_lock
);
1320 * __i2c_add_numbered_adapter - i2c_add_numbered_adapter where nr is never -1
1321 * @adap: the adapter to register (with adap->nr initialized)
1322 * Context: can sleep
1324 * See i2c_add_numbered_adapter() for details.
1326 static int __i2c_add_numbered_adapter(struct i2c_adapter
*adap
)
1330 mutex_lock(&core_lock
);
1331 id
= idr_alloc(&i2c_adapter_idr
, adap
, adap
->nr
, adap
->nr
+ 1, GFP_KERNEL
);
1332 mutex_unlock(&core_lock
);
1333 if (WARN(id
< 0, "couldn't get idr"))
1334 return id
== -ENOSPC
? -EBUSY
: id
;
1336 return i2c_register_adapter(adap
);
1340 * i2c_add_adapter - declare i2c adapter, use dynamic bus number
1341 * @adapter: the adapter to add
1342 * Context: can sleep
1344 * This routine is used to declare an I2C adapter when its bus number
1345 * doesn't matter or when its bus number is specified by an dt alias.
1346 * Examples of bases when the bus number doesn't matter: I2C adapters
1347 * dynamically added by USB links or PCI plugin cards.
1349 * When this returns zero, a new bus number was allocated and stored
1350 * in adap->nr, and the specified adapter became available for clients.
1351 * Otherwise, a negative errno value is returned.
1353 int i2c_add_adapter(struct i2c_adapter
*adapter
)
1355 struct device
*dev
= &adapter
->dev
;
1359 id
= of_alias_get_id(dev
->of_node
, "i2c");
1362 return __i2c_add_numbered_adapter(adapter
);
1366 mutex_lock(&core_lock
);
1367 id
= idr_alloc(&i2c_adapter_idr
, adapter
,
1368 __i2c_first_dynamic_bus_num
, 0, GFP_KERNEL
);
1369 mutex_unlock(&core_lock
);
1370 if (WARN(id
< 0, "couldn't get idr"))
1375 return i2c_register_adapter(adapter
);
1377 EXPORT_SYMBOL(i2c_add_adapter
);
1380 * i2c_add_numbered_adapter - declare i2c adapter, use static bus number
1381 * @adap: the adapter to register (with adap->nr initialized)
1382 * Context: can sleep
1384 * This routine is used to declare an I2C adapter when its bus number
1385 * matters. For example, use it for I2C adapters from system-on-chip CPUs,
1386 * or otherwise built in to the system's mainboard, and where i2c_board_info
1387 * is used to properly configure I2C devices.
1389 * If the requested bus number is set to -1, then this function will behave
1390 * identically to i2c_add_adapter, and will dynamically assign a bus number.
1392 * If no devices have pre-been declared for this bus, then be sure to
1393 * register the adapter before any dynamically allocated ones. Otherwise
1394 * the required bus ID may not be available.
1396 * When this returns zero, the specified adapter became available for
1397 * clients using the bus number provided in adap->nr. Also, the table
1398 * of I2C devices pre-declared using i2c_register_board_info() is scanned,
1399 * and the appropriate driver model device nodes are created. Otherwise, a
1400 * negative errno value is returned.
1402 int i2c_add_numbered_adapter(struct i2c_adapter
*adap
)
1404 if (adap
->nr
== -1) /* -1 means dynamically assign bus id */
1405 return i2c_add_adapter(adap
);
1407 return __i2c_add_numbered_adapter(adap
);
1409 EXPORT_SYMBOL_GPL(i2c_add_numbered_adapter
);
1411 static void i2c_do_del_adapter(struct i2c_driver
*driver
,
1412 struct i2c_adapter
*adapter
)
1414 struct i2c_client
*client
, *_n
;
1416 /* Remove the devices we created ourselves as the result of hardware
1417 * probing (using a driver's detect method) */
1418 list_for_each_entry_safe(client
, _n
, &driver
->clients
, detected
) {
1419 if (client
->adapter
== adapter
) {
1420 dev_dbg(&adapter
->dev
, "Removing %s at 0x%x\n",
1421 client
->name
, client
->addr
);
1422 list_del(&client
->detected
);
1423 i2c_unregister_device(client
);
1428 static int __unregister_client(struct device
*dev
, void *dummy
)
1430 struct i2c_client
*client
= i2c_verify_client(dev
);
1431 if (client
&& strcmp(client
->name
, "dummy"))
1432 i2c_unregister_device(client
);
1436 static int __unregister_dummy(struct device
*dev
, void *dummy
)
1438 struct i2c_client
*client
= i2c_verify_client(dev
);
1439 i2c_unregister_device(client
);
1443 static int __process_removed_adapter(struct device_driver
*d
, void *data
)
1445 i2c_do_del_adapter(to_i2c_driver(d
), data
);
1450 * i2c_del_adapter - unregister I2C adapter
1451 * @adap: the adapter being unregistered
1452 * Context: can sleep
1454 * This unregisters an I2C adapter which was previously registered
1455 * by @i2c_add_adapter or @i2c_add_numbered_adapter.
1457 void i2c_del_adapter(struct i2c_adapter
*adap
)
1459 struct i2c_adapter
*found
;
1460 struct i2c_client
*client
, *next
;
1462 /* First make sure that this adapter was ever added */
1463 mutex_lock(&core_lock
);
1464 found
= idr_find(&i2c_adapter_idr
, adap
->nr
);
1465 mutex_unlock(&core_lock
);
1466 if (found
!= adap
) {
1467 pr_debug("attempting to delete unregistered adapter [%s]\n", adap
->name
);
1471 i2c_acpi_remove_space_handler(adap
);
1472 /* Tell drivers about this removal */
1473 mutex_lock(&core_lock
);
1474 bus_for_each_drv(&i2c_bus_type
, NULL
, adap
,
1475 __process_removed_adapter
);
1476 mutex_unlock(&core_lock
);
1478 /* Remove devices instantiated from sysfs */
1479 mutex_lock_nested(&adap
->userspace_clients_lock
,
1480 i2c_adapter_depth(adap
));
1481 list_for_each_entry_safe(client
, next
, &adap
->userspace_clients
,
1483 dev_dbg(&adap
->dev
, "Removing %s at 0x%x\n", client
->name
,
1485 list_del(&client
->detected
);
1486 i2c_unregister_device(client
);
1488 mutex_unlock(&adap
->userspace_clients_lock
);
1490 /* Detach any active clients. This can't fail, thus we do not
1491 * check the returned value. This is a two-pass process, because
1492 * we can't remove the dummy devices during the first pass: they
1493 * could have been instantiated by real devices wishing to clean
1494 * them up properly, so we give them a chance to do that first. */
1495 device_for_each_child(&adap
->dev
, NULL
, __unregister_client
);
1496 device_for_each_child(&adap
->dev
, NULL
, __unregister_dummy
);
1498 #ifdef CONFIG_I2C_COMPAT
1499 class_compat_remove_link(i2c_adapter_compat_class
, &adap
->dev
,
1503 /* device name is gone after device_unregister */
1504 dev_dbg(&adap
->dev
, "adapter [%s] unregistered\n", adap
->name
);
1506 pm_runtime_disable(&adap
->dev
);
1508 i2c_host_notify_irq_teardown(adap
);
1510 /* wait until all references to the device are gone
1512 * FIXME: This is old code and should ideally be replaced by an
1513 * alternative which results in decoupling the lifetime of the struct
1514 * device from the i2c_adapter, like spi or netdev do. Any solution
1515 * should be thoroughly tested with DEBUG_KOBJECT_RELEASE enabled!
1517 init_completion(&adap
->dev_released
);
1518 device_unregister(&adap
->dev
);
1519 wait_for_completion(&adap
->dev_released
);
1522 mutex_lock(&core_lock
);
1523 idr_remove(&i2c_adapter_idr
, adap
->nr
);
1524 mutex_unlock(&core_lock
);
1526 /* Clear the device structure in case this adapter is ever going to be
1528 memset(&adap
->dev
, 0, sizeof(adap
->dev
));
1530 EXPORT_SYMBOL(i2c_del_adapter
);
1533 * i2c_parse_fw_timings - get I2C related timing parameters from firmware
1534 * @dev: The device to scan for I2C timing properties
1535 * @t: the i2c_timings struct to be filled with values
1536 * @use_defaults: bool to use sane defaults derived from the I2C specification
1537 * when properties are not found, otherwise use 0
1539 * Scan the device for the generic I2C properties describing timing parameters
1540 * for the signal and fill the given struct with the results. If a property was
1541 * not found and use_defaults was true, then maximum timings are assumed which
1542 * are derived from the I2C specification. If use_defaults is not used, the
1543 * results will be 0, so drivers can apply their own defaults later. The latter
1544 * is mainly intended for avoiding regressions of existing drivers which want
1545 * to switch to this function. New drivers almost always should use the defaults.
1548 void i2c_parse_fw_timings(struct device
*dev
, struct i2c_timings
*t
, bool use_defaults
)
1552 memset(t
, 0, sizeof(*t
));
1554 ret
= device_property_read_u32(dev
, "clock-frequency", &t
->bus_freq_hz
);
1555 if (ret
&& use_defaults
)
1556 t
->bus_freq_hz
= 100000;
1558 ret
= device_property_read_u32(dev
, "i2c-scl-rising-time-ns", &t
->scl_rise_ns
);
1559 if (ret
&& use_defaults
) {
1560 if (t
->bus_freq_hz
<= 100000)
1561 t
->scl_rise_ns
= 1000;
1562 else if (t
->bus_freq_hz
<= 400000)
1563 t
->scl_rise_ns
= 300;
1565 t
->scl_rise_ns
= 120;
1568 ret
= device_property_read_u32(dev
, "i2c-scl-falling-time-ns", &t
->scl_fall_ns
);
1569 if (ret
&& use_defaults
) {
1570 if (t
->bus_freq_hz
<= 400000)
1571 t
->scl_fall_ns
= 300;
1573 t
->scl_fall_ns
= 120;
1576 device_property_read_u32(dev
, "i2c-scl-internal-delay-ns", &t
->scl_int_delay_ns
);
1578 ret
= device_property_read_u32(dev
, "i2c-sda-falling-time-ns", &t
->sda_fall_ns
);
1579 if (ret
&& use_defaults
)
1580 t
->sda_fall_ns
= t
->scl_fall_ns
;
1582 device_property_read_u32(dev
, "i2c-sda-hold-time-ns", &t
->sda_hold_ns
);
1584 EXPORT_SYMBOL_GPL(i2c_parse_fw_timings
);
1586 /* ------------------------------------------------------------------------- */
1588 int i2c_for_each_dev(void *data
, int (*fn
)(struct device
*, void *))
1592 mutex_lock(&core_lock
);
1593 res
= bus_for_each_dev(&i2c_bus_type
, NULL
, data
, fn
);
1594 mutex_unlock(&core_lock
);
1598 EXPORT_SYMBOL_GPL(i2c_for_each_dev
);
1600 static int __process_new_driver(struct device
*dev
, void *data
)
1602 if (dev
->type
!= &i2c_adapter_type
)
1604 return i2c_do_add_adapter(data
, to_i2c_adapter(dev
));
1608 * An i2c_driver is used with one or more i2c_client (device) nodes to access
1609 * i2c slave chips, on a bus instance associated with some i2c_adapter.
1612 int i2c_register_driver(struct module
*owner
, struct i2c_driver
*driver
)
1616 /* Can't register until after driver model init */
1617 if (WARN_ON(!is_registered
))
1620 /* add the driver to the list of i2c drivers in the driver core */
1621 driver
->driver
.owner
= owner
;
1622 driver
->driver
.bus
= &i2c_bus_type
;
1623 INIT_LIST_HEAD(&driver
->clients
);
1625 /* When registration returns, the driver core
1626 * will have called probe() for all matching-but-unbound devices.
1628 res
= driver_register(&driver
->driver
);
1632 pr_debug("driver [%s] registered\n", driver
->driver
.name
);
1634 /* Walk the adapters that are already present */
1635 i2c_for_each_dev(driver
, __process_new_driver
);
1639 EXPORT_SYMBOL(i2c_register_driver
);
1641 static int __process_removed_driver(struct device
*dev
, void *data
)
1643 if (dev
->type
== &i2c_adapter_type
)
1644 i2c_do_del_adapter(data
, to_i2c_adapter(dev
));
1649 * i2c_del_driver - unregister I2C driver
1650 * @driver: the driver being unregistered
1651 * Context: can sleep
1653 void i2c_del_driver(struct i2c_driver
*driver
)
1655 i2c_for_each_dev(driver
, __process_removed_driver
);
1657 driver_unregister(&driver
->driver
);
1658 pr_debug("driver [%s] unregistered\n", driver
->driver
.name
);
1660 EXPORT_SYMBOL(i2c_del_driver
);
1662 /* ------------------------------------------------------------------------- */
1665 * i2c_use_client - increments the reference count of the i2c client structure
1666 * @client: the client being referenced
1668 * Each live reference to a client should be refcounted. The driver model does
1669 * that automatically as part of driver binding, so that most drivers don't
1670 * need to do this explicitly: they hold a reference until they're unbound
1673 * A pointer to the client with the incremented reference counter is returned.
1675 struct i2c_client
*i2c_use_client(struct i2c_client
*client
)
1677 if (client
&& get_device(&client
->dev
))
1681 EXPORT_SYMBOL(i2c_use_client
);
1684 * i2c_release_client - release a use of the i2c client structure
1685 * @client: the client being no longer referenced
1687 * Must be called when a user of a client is finished with it.
1689 void i2c_release_client(struct i2c_client
*client
)
1692 put_device(&client
->dev
);
1694 EXPORT_SYMBOL(i2c_release_client
);
1696 struct i2c_cmd_arg
{
1701 static int i2c_cmd(struct device
*dev
, void *_arg
)
1703 struct i2c_client
*client
= i2c_verify_client(dev
);
1704 struct i2c_cmd_arg
*arg
= _arg
;
1705 struct i2c_driver
*driver
;
1707 if (!client
|| !client
->dev
.driver
)
1710 driver
= to_i2c_driver(client
->dev
.driver
);
1711 if (driver
->command
)
1712 driver
->command(client
, arg
->cmd
, arg
->arg
);
1716 void i2c_clients_command(struct i2c_adapter
*adap
, unsigned int cmd
, void *arg
)
1718 struct i2c_cmd_arg cmd_arg
;
1722 device_for_each_child(&adap
->dev
, &cmd_arg
, i2c_cmd
);
1724 EXPORT_SYMBOL(i2c_clients_command
);
1726 static int __init
i2c_init(void)
1730 retval
= of_alias_get_highest_id("i2c");
1732 down_write(&__i2c_board_lock
);
1733 if (retval
>= __i2c_first_dynamic_bus_num
)
1734 __i2c_first_dynamic_bus_num
= retval
+ 1;
1735 up_write(&__i2c_board_lock
);
1737 retval
= bus_register(&i2c_bus_type
);
1741 is_registered
= true;
1743 #ifdef CONFIG_I2C_COMPAT
1744 i2c_adapter_compat_class
= class_compat_register("i2c-adapter");
1745 if (!i2c_adapter_compat_class
) {
1750 retval
= i2c_add_driver(&dummy_driver
);
1754 if (IS_ENABLED(CONFIG_OF_DYNAMIC
))
1755 WARN_ON(of_reconfig_notifier_register(&i2c_of_notifier
));
1756 if (IS_ENABLED(CONFIG_ACPI
))
1757 WARN_ON(acpi_reconfig_notifier_register(&i2c_acpi_notifier
));
1762 #ifdef CONFIG_I2C_COMPAT
1763 class_compat_unregister(i2c_adapter_compat_class
);
1766 is_registered
= false;
1767 bus_unregister(&i2c_bus_type
);
1771 static void __exit
i2c_exit(void)
1773 if (IS_ENABLED(CONFIG_ACPI
))
1774 WARN_ON(acpi_reconfig_notifier_unregister(&i2c_acpi_notifier
));
1775 if (IS_ENABLED(CONFIG_OF_DYNAMIC
))
1776 WARN_ON(of_reconfig_notifier_unregister(&i2c_of_notifier
));
1777 i2c_del_driver(&dummy_driver
);
1778 #ifdef CONFIG_I2C_COMPAT
1779 class_compat_unregister(i2c_adapter_compat_class
);
1781 bus_unregister(&i2c_bus_type
);
1782 tracepoint_synchronize_unregister();
1785 /* We must initialize early, because some subsystems register i2c drivers
1786 * in subsys_initcall() code, but are linked (and initialized) before i2c.
1788 postcore_initcall(i2c_init
);
1789 module_exit(i2c_exit
);
1791 /* ----------------------------------------------------
1792 * the functional interface to the i2c busses.
1793 * ----------------------------------------------------
1796 /* Check if val is exceeding the quirk IFF quirk is non 0 */
1797 #define i2c_quirk_exceeded(val, quirk) ((quirk) && ((val) > (quirk)))
1799 static int i2c_quirk_error(struct i2c_adapter
*adap
, struct i2c_msg
*msg
, char *err_msg
)
1801 dev_err_ratelimited(&adap
->dev
, "adapter quirk: %s (addr 0x%04x, size %u, %s)\n",
1802 err_msg
, msg
->addr
, msg
->len
,
1803 msg
->flags
& I2C_M_RD
? "read" : "write");
1807 static int i2c_check_for_quirks(struct i2c_adapter
*adap
, struct i2c_msg
*msgs
, int num
)
1809 const struct i2c_adapter_quirks
*q
= adap
->quirks
;
1810 int max_num
= q
->max_num_msgs
, i
;
1811 bool do_len_check
= true;
1813 if (q
->flags
& I2C_AQ_COMB
) {
1816 /* special checks for combined messages */
1818 if (q
->flags
& I2C_AQ_COMB_WRITE_FIRST
&& msgs
[0].flags
& I2C_M_RD
)
1819 return i2c_quirk_error(adap
, &msgs
[0], "1st comb msg must be write");
1821 if (q
->flags
& I2C_AQ_COMB_READ_SECOND
&& !(msgs
[1].flags
& I2C_M_RD
))
1822 return i2c_quirk_error(adap
, &msgs
[1], "2nd comb msg must be read");
1824 if (q
->flags
& I2C_AQ_COMB_SAME_ADDR
&& msgs
[0].addr
!= msgs
[1].addr
)
1825 return i2c_quirk_error(adap
, &msgs
[0], "comb msg only to same addr");
1827 if (i2c_quirk_exceeded(msgs
[0].len
, q
->max_comb_1st_msg_len
))
1828 return i2c_quirk_error(adap
, &msgs
[0], "msg too long");
1830 if (i2c_quirk_exceeded(msgs
[1].len
, q
->max_comb_2nd_msg_len
))
1831 return i2c_quirk_error(adap
, &msgs
[1], "msg too long");
1833 do_len_check
= false;
1837 if (i2c_quirk_exceeded(num
, max_num
))
1838 return i2c_quirk_error(adap
, &msgs
[0], "too many messages");
1840 for (i
= 0; i
< num
; i
++) {
1841 u16 len
= msgs
[i
].len
;
1843 if (msgs
[i
].flags
& I2C_M_RD
) {
1844 if (do_len_check
&& i2c_quirk_exceeded(len
, q
->max_read_len
))
1845 return i2c_quirk_error(adap
, &msgs
[i
], "msg too long");
1847 if (q
->flags
& I2C_AQ_NO_ZERO_LEN_READ
&& len
== 0)
1848 return i2c_quirk_error(adap
, &msgs
[i
], "no zero length");
1850 if (do_len_check
&& i2c_quirk_exceeded(len
, q
->max_write_len
))
1851 return i2c_quirk_error(adap
, &msgs
[i
], "msg too long");
1853 if (q
->flags
& I2C_AQ_NO_ZERO_LEN_WRITE
&& len
== 0)
1854 return i2c_quirk_error(adap
, &msgs
[i
], "no zero length");
1862 * __i2c_transfer - unlocked flavor of i2c_transfer
1863 * @adap: Handle to I2C bus
1864 * @msgs: One or more messages to execute before STOP is issued to
1865 * terminate the operation; each message begins with a START.
1866 * @num: Number of messages to be executed.
1868 * Returns negative errno, else the number of messages executed.
1870 * Adapter lock must be held when calling this function. No debug logging
1871 * takes place. adap->algo->master_xfer existence isn't checked.
1873 int __i2c_transfer(struct i2c_adapter
*adap
, struct i2c_msg
*msgs
, int num
)
1875 unsigned long orig_jiffies
;
1878 if (WARN_ON(!msgs
|| num
< 1))
1881 if (adap
->quirks
&& i2c_check_for_quirks(adap
, msgs
, num
))
1885 * i2c_trace_msg_key gets enabled when tracepoint i2c_transfer gets
1886 * enabled. This is an efficient way of keeping the for-loop from
1887 * being executed when not needed.
1889 if (static_branch_unlikely(&i2c_trace_msg_key
)) {
1891 for (i
= 0; i
< num
; i
++)
1892 if (msgs
[i
].flags
& I2C_M_RD
)
1893 trace_i2c_read(adap
, &msgs
[i
], i
);
1895 trace_i2c_write(adap
, &msgs
[i
], i
);
1898 /* Retry automatically on arbitration loss */
1899 orig_jiffies
= jiffies
;
1900 for (ret
= 0, try = 0; try <= adap
->retries
; try++) {
1901 ret
= adap
->algo
->master_xfer(adap
, msgs
, num
);
1904 if (time_after(jiffies
, orig_jiffies
+ adap
->timeout
))
1908 if (static_branch_unlikely(&i2c_trace_msg_key
)) {
1910 for (i
= 0; i
< ret
; i
++)
1911 if (msgs
[i
].flags
& I2C_M_RD
)
1912 trace_i2c_reply(adap
, &msgs
[i
], i
);
1913 trace_i2c_result(adap
, num
, ret
);
1918 EXPORT_SYMBOL(__i2c_transfer
);
1921 * i2c_transfer - execute a single or combined I2C message
1922 * @adap: Handle to I2C bus
1923 * @msgs: One or more messages to execute before STOP is issued to
1924 * terminate the operation; each message begins with a START.
1925 * @num: Number of messages to be executed.
1927 * Returns negative errno, else the number of messages executed.
1929 * Note that there is no requirement that each message be sent to
1930 * the same slave address, although that is the most common model.
1932 int i2c_transfer(struct i2c_adapter
*adap
, struct i2c_msg
*msgs
, int num
)
1936 /* REVISIT the fault reporting model here is weak:
1938 * - When we get an error after receiving N bytes from a slave,
1939 * there is no way to report "N".
1941 * - When we get a NAK after transmitting N bytes to a slave,
1942 * there is no way to report "N" ... or to let the master
1943 * continue executing the rest of this combined message, if
1944 * that's the appropriate response.
1946 * - When for example "num" is two and we successfully complete
1947 * the first message but get an error part way through the
1948 * second, it's unclear whether that should be reported as
1949 * one (discarding status on the second message) or errno
1950 * (discarding status on the first one).
1953 if (adap
->algo
->master_xfer
) {
1955 for (ret
= 0; ret
< num
; ret
++) {
1957 "master_xfer[%d] %c, addr=0x%02x, len=%d%s\n",
1958 ret
, (msgs
[ret
].flags
& I2C_M_RD
) ? 'R' : 'W',
1959 msgs
[ret
].addr
, msgs
[ret
].len
,
1960 (msgs
[ret
].flags
& I2C_M_RECV_LEN
) ? "+" : "");
1964 if (in_atomic() || irqs_disabled()) {
1965 ret
= i2c_trylock_bus(adap
, I2C_LOCK_SEGMENT
);
1967 /* I2C activity is ongoing. */
1970 i2c_lock_bus(adap
, I2C_LOCK_SEGMENT
);
1973 ret
= __i2c_transfer(adap
, msgs
, num
);
1974 i2c_unlock_bus(adap
, I2C_LOCK_SEGMENT
);
1978 dev_dbg(&adap
->dev
, "I2C level transfers not supported\n");
1982 EXPORT_SYMBOL(i2c_transfer
);
1985 * i2c_transfer_buffer_flags - issue a single I2C message transferring data
1987 * @client: Handle to slave device
1988 * @buf: Where the data is stored
1989 * @count: How many bytes to transfer, must be less than 64k since msg.len is u16
1990 * @flags: The flags to be used for the message, e.g. I2C_M_RD for reads
1992 * Returns negative errno, or else the number of bytes transferred.
1994 int i2c_transfer_buffer_flags(const struct i2c_client
*client
, char *buf
,
1995 int count
, u16 flags
)
1998 struct i2c_msg msg
= {
1999 .addr
= client
->addr
,
2000 .flags
= flags
| (client
->flags
& I2C_M_TEN
),
2005 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
2008 * If everything went ok (i.e. 1 msg transferred), return #bytes
2009 * transferred, else error code.
2011 return (ret
== 1) ? count
: ret
;
2013 EXPORT_SYMBOL(i2c_transfer_buffer_flags
);
2016 * i2c_get_device_id - get manufacturer, part id and die revision of a device
2017 * @client: The device to query
2018 * @id: The queried information
2020 * Returns negative errno on error, zero on success.
2022 int i2c_get_device_id(const struct i2c_client
*client
,
2023 struct i2c_device_identity
*id
)
2025 struct i2c_adapter
*adap
= client
->adapter
;
2026 union i2c_smbus_data raw_id
;
2029 if (!i2c_check_functionality(adap
, I2C_FUNC_SMBUS_READ_I2C_BLOCK
))
2032 raw_id
.block
[0] = 3;
2033 ret
= i2c_smbus_xfer(adap
, I2C_ADDR_DEVICE_ID
, 0,
2034 I2C_SMBUS_READ
, client
->addr
<< 1,
2035 I2C_SMBUS_I2C_BLOCK_DATA
, &raw_id
);
2039 id
->manufacturer_id
= (raw_id
.block
[1] << 4) | (raw_id
.block
[2] >> 4);
2040 id
->part_id
= ((raw_id
.block
[2] & 0xf) << 5) | (raw_id
.block
[3] >> 3);
2041 id
->die_revision
= raw_id
.block
[3] & 0x7;
2044 EXPORT_SYMBOL_GPL(i2c_get_device_id
);
2046 /* ----------------------------------------------------
2047 * the i2c address scanning function
2048 * Will not work for 10-bit addresses!
2049 * ----------------------------------------------------
2053 * Legacy default probe function, mostly relevant for SMBus. The default
2054 * probe method is a quick write, but it is known to corrupt the 24RF08
2055 * EEPROMs due to a state machine bug, and could also irreversibly
2056 * write-protect some EEPROMs, so for address ranges 0x30-0x37 and 0x50-0x5f,
2057 * we use a short byte read instead. Also, some bus drivers don't implement
2058 * quick write, so we fallback to a byte read in that case too.
2059 * On x86, there is another special case for FSC hardware monitoring chips,
2060 * which want regular byte reads (address 0x73.) Fortunately, these are the
2061 * only known chips using this I2C address on PC hardware.
2062 * Returns 1 if probe succeeded, 0 if not.
2064 static int i2c_default_probe(struct i2c_adapter
*adap
, unsigned short addr
)
2067 union i2c_smbus_data dummy
;
2070 if (addr
== 0x73 && (adap
->class & I2C_CLASS_HWMON
)
2071 && i2c_check_functionality(adap
, I2C_FUNC_SMBUS_READ_BYTE_DATA
))
2072 err
= i2c_smbus_xfer(adap
, addr
, 0, I2C_SMBUS_READ
, 0,
2073 I2C_SMBUS_BYTE_DATA
, &dummy
);
2076 if (!((addr
& ~0x07) == 0x30 || (addr
& ~0x0f) == 0x50)
2077 && i2c_check_functionality(adap
, I2C_FUNC_SMBUS_QUICK
))
2078 err
= i2c_smbus_xfer(adap
, addr
, 0, I2C_SMBUS_WRITE
, 0,
2079 I2C_SMBUS_QUICK
, NULL
);
2080 else if (i2c_check_functionality(adap
, I2C_FUNC_SMBUS_READ_BYTE
))
2081 err
= i2c_smbus_xfer(adap
, addr
, 0, I2C_SMBUS_READ
, 0,
2082 I2C_SMBUS_BYTE
, &dummy
);
2084 dev_warn(&adap
->dev
, "No suitable probing method supported for address 0x%02X\n",
2092 static int i2c_detect_address(struct i2c_client
*temp_client
,
2093 struct i2c_driver
*driver
)
2095 struct i2c_board_info info
;
2096 struct i2c_adapter
*adapter
= temp_client
->adapter
;
2097 int addr
= temp_client
->addr
;
2100 /* Make sure the address is valid */
2101 err
= i2c_check_7bit_addr_validity_strict(addr
);
2103 dev_warn(&adapter
->dev
, "Invalid probe address 0x%02x\n",
2108 /* Skip if already in use (7 bit, no need to encode flags) */
2109 if (i2c_check_addr_busy(adapter
, addr
))
2112 /* Make sure there is something at this address */
2113 if (!i2c_default_probe(adapter
, addr
))
2116 /* Finally call the custom detection function */
2117 memset(&info
, 0, sizeof(struct i2c_board_info
));
2119 err
= driver
->detect(temp_client
, &info
);
2121 /* -ENODEV is returned if the detection fails. We catch it
2122 here as this isn't an error. */
2123 return err
== -ENODEV
? 0 : err
;
2126 /* Consistency check */
2127 if (info
.type
[0] == '\0') {
2128 dev_err(&adapter
->dev
,
2129 "%s detection function provided no name for 0x%x\n",
2130 driver
->driver
.name
, addr
);
2132 struct i2c_client
*client
;
2134 /* Detection succeeded, instantiate the device */
2135 if (adapter
->class & I2C_CLASS_DEPRECATED
)
2136 dev_warn(&adapter
->dev
,
2137 "This adapter will soon drop class based instantiation of devices. "
2138 "Please make sure client 0x%02x gets instantiated by other means. "
2139 "Check 'Documentation/i2c/instantiating-devices' for details.\n",
2142 dev_dbg(&adapter
->dev
, "Creating %s at 0x%02x\n",
2143 info
.type
, info
.addr
);
2144 client
= i2c_new_device(adapter
, &info
);
2146 list_add_tail(&client
->detected
, &driver
->clients
);
2148 dev_err(&adapter
->dev
, "Failed creating %s at 0x%02x\n",
2149 info
.type
, info
.addr
);
2154 static int i2c_detect(struct i2c_adapter
*adapter
, struct i2c_driver
*driver
)
2156 const unsigned short *address_list
;
2157 struct i2c_client
*temp_client
;
2159 int adap_id
= i2c_adapter_id(adapter
);
2161 address_list
= driver
->address_list
;
2162 if (!driver
->detect
|| !address_list
)
2165 /* Warn that the adapter lost class based instantiation */
2166 if (adapter
->class == I2C_CLASS_DEPRECATED
) {
2167 dev_dbg(&adapter
->dev
,
2168 "This adapter dropped support for I2C classes and won't auto-detect %s devices anymore. "
2169 "If you need it, check 'Documentation/i2c/instantiating-devices' for alternatives.\n",
2170 driver
->driver
.name
);
2174 /* Stop here if the classes do not match */
2175 if (!(adapter
->class & driver
->class))
2178 /* Set up a temporary client to help detect callback */
2179 temp_client
= kzalloc(sizeof(struct i2c_client
), GFP_KERNEL
);
2182 temp_client
->adapter
= adapter
;
2184 for (i
= 0; address_list
[i
] != I2C_CLIENT_END
; i
+= 1) {
2185 dev_dbg(&adapter
->dev
,
2186 "found normal entry for adapter %d, addr 0x%02x\n",
2187 adap_id
, address_list
[i
]);
2188 temp_client
->addr
= address_list
[i
];
2189 err
= i2c_detect_address(temp_client
, driver
);
2198 int i2c_probe_func_quick_read(struct i2c_adapter
*adap
, unsigned short addr
)
2200 return i2c_smbus_xfer(adap
, addr
, 0, I2C_SMBUS_READ
, 0,
2201 I2C_SMBUS_QUICK
, NULL
) >= 0;
2203 EXPORT_SYMBOL_GPL(i2c_probe_func_quick_read
);
2206 i2c_new_probed_device(struct i2c_adapter
*adap
,
2207 struct i2c_board_info
*info
,
2208 unsigned short const *addr_list
,
2209 int (*probe
)(struct i2c_adapter
*, unsigned short addr
))
2214 probe
= i2c_default_probe
;
2216 for (i
= 0; addr_list
[i
] != I2C_CLIENT_END
; i
++) {
2217 /* Check address validity */
2218 if (i2c_check_7bit_addr_validity_strict(addr_list
[i
]) < 0) {
2219 dev_warn(&adap
->dev
, "Invalid 7-bit address 0x%02x\n",
2224 /* Check address availability (7 bit, no need to encode flags) */
2225 if (i2c_check_addr_busy(adap
, addr_list
[i
])) {
2227 "Address 0x%02x already in use, not probing\n",
2232 /* Test address responsiveness */
2233 if (probe(adap
, addr_list
[i
]))
2237 if (addr_list
[i
] == I2C_CLIENT_END
) {
2238 dev_dbg(&adap
->dev
, "Probing failed, no device found\n");
2242 info
->addr
= addr_list
[i
];
2243 return i2c_new_device(adap
, info
);
2245 EXPORT_SYMBOL_GPL(i2c_new_probed_device
);
2247 struct i2c_adapter
*i2c_get_adapter(int nr
)
2249 struct i2c_adapter
*adapter
;
2251 mutex_lock(&core_lock
);
2252 adapter
= idr_find(&i2c_adapter_idr
, nr
);
2256 if (try_module_get(adapter
->owner
))
2257 get_device(&adapter
->dev
);
2262 mutex_unlock(&core_lock
);
2265 EXPORT_SYMBOL(i2c_get_adapter
);
2267 void i2c_put_adapter(struct i2c_adapter
*adap
)
2272 put_device(&adap
->dev
);
2273 module_put(adap
->owner
);
2275 EXPORT_SYMBOL(i2c_put_adapter
);
2278 * i2c_get_dma_safe_msg_buf() - get a DMA safe buffer for the given i2c_msg
2279 * @msg: the message to be checked
2280 * @threshold: the minimum number of bytes for which using DMA makes sense
2282 * Return: NULL if a DMA safe buffer was not obtained. Use msg->buf with PIO.
2283 * Or a valid pointer to be used with DMA. After use, release it by
2284 * calling i2c_put_dma_safe_msg_buf().
2286 * This function must only be called from process context!
2288 u8
*i2c_get_dma_safe_msg_buf(struct i2c_msg
*msg
, unsigned int threshold
)
2290 if (msg
->len
< threshold
)
2293 if (msg
->flags
& I2C_M_DMA_SAFE
)
2296 pr_debug("using bounce buffer for addr=0x%02x, len=%d\n",
2297 msg
->addr
, msg
->len
);
2299 if (msg
->flags
& I2C_M_RD
)
2300 return kzalloc(msg
->len
, GFP_KERNEL
);
2302 return kmemdup(msg
->buf
, msg
->len
, GFP_KERNEL
);
2304 EXPORT_SYMBOL_GPL(i2c_get_dma_safe_msg_buf
);
2307 * i2c_put_dma_safe_msg_buf - release DMA safe buffer and sync with i2c_msg
2308 * @buf: the buffer obtained from i2c_get_dma_safe_msg_buf(). May be NULL.
2309 * @msg: the message which the buffer corresponds to
2310 * @xferred: bool saying if the message was transferred
2312 void i2c_put_dma_safe_msg_buf(u8
*buf
, struct i2c_msg
*msg
, bool xferred
)
2314 if (!buf
|| buf
== msg
->buf
)
2317 if (xferred
&& msg
->flags
& I2C_M_RD
)
2318 memcpy(msg
->buf
, buf
, msg
->len
);
2322 EXPORT_SYMBOL_GPL(i2c_put_dma_safe_msg_buf
);
2324 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
2325 MODULE_DESCRIPTION("I2C-Bus main module");
2326 MODULE_LICENSE("GPL");