1 /* The industrial I/O core in kernel channel mapping
3 * Copyright (c) 2011 Jonathan Cameron
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
10 #include <linux/export.h>
11 #include <linux/slab.h>
12 #include <linux/mutex.h>
15 #include <linux/iio/iio.h>
17 #include <linux/iio/machine.h>
18 #include <linux/iio/driver.h>
19 #include <linux/iio/consumer.h>
21 struct iio_map_internal
{
22 struct iio_dev
*indio_dev
;
27 static LIST_HEAD(iio_map_list
);
28 static DEFINE_MUTEX(iio_map_list_lock
);
30 int iio_map_array_register(struct iio_dev
*indio_dev
, struct iio_map
*maps
)
33 struct iio_map_internal
*mapi
;
38 mutex_lock(&iio_map_list_lock
);
39 while (maps
[i
].consumer_dev_name
!= NULL
) {
40 mapi
= kzalloc(sizeof(*mapi
), GFP_KERNEL
);
46 mapi
->indio_dev
= indio_dev
;
47 list_add(&mapi
->l
, &iio_map_list
);
51 mutex_unlock(&iio_map_list_lock
);
55 EXPORT_SYMBOL_GPL(iio_map_array_register
);
59 * Remove all map entries associated with the given iio device
61 int iio_map_array_unregister(struct iio_dev
*indio_dev
)
64 struct iio_map_internal
*mapi
;
65 struct list_head
*pos
, *tmp
;
67 mutex_lock(&iio_map_list_lock
);
68 list_for_each_safe(pos
, tmp
, &iio_map_list
) {
69 mapi
= list_entry(pos
, struct iio_map_internal
, l
);
70 if (indio_dev
== mapi
->indio_dev
) {
76 mutex_unlock(&iio_map_list_lock
);
79 EXPORT_SYMBOL_GPL(iio_map_array_unregister
);
81 static const struct iio_chan_spec
82 *iio_chan_spec_from_name(const struct iio_dev
*indio_dev
, const char *name
)
85 const struct iio_chan_spec
*chan
= NULL
;
87 for (i
= 0; i
< indio_dev
->num_channels
; i
++)
88 if (indio_dev
->channels
[i
].datasheet_name
&&
89 strcmp(name
, indio_dev
->channels
[i
].datasheet_name
) == 0) {
90 chan
= &indio_dev
->channels
[i
];
98 static int iio_dev_node_match(struct device
*dev
, void *data
)
100 return dev
->of_node
== data
&& dev
->type
== &iio_device_type
;
104 * __of_iio_simple_xlate - translate iiospec to the IIO channel index
105 * @indio_dev: pointer to the iio_dev structure
106 * @iiospec: IIO specifier as found in the device tree
108 * This is simple translation function, suitable for the most 1:1 mapped
109 * channels in IIO chips. This function performs only one sanity check:
110 * whether IIO index is less than num_channels (that is specified in the
113 static int __of_iio_simple_xlate(struct iio_dev
*indio_dev
,
114 const struct of_phandle_args
*iiospec
)
116 if (!iiospec
->args_count
)
119 if (iiospec
->args
[0] >= indio_dev
->num_channels
) {
120 dev_err(&indio_dev
->dev
, "invalid channel index %u\n",
125 return iiospec
->args
[0];
128 static int __of_iio_channel_get(struct iio_channel
*channel
,
129 struct device_node
*np
, int index
)
132 struct iio_dev
*indio_dev
;
134 struct of_phandle_args iiospec
;
136 err
= of_parse_phandle_with_args(np
, "io-channels",
142 idev
= bus_find_device(&iio_bus_type
, NULL
, iiospec
.np
,
144 of_node_put(iiospec
.np
);
146 return -EPROBE_DEFER
;
148 indio_dev
= dev_to_iio_dev(idev
);
149 channel
->indio_dev
= indio_dev
;
150 if (indio_dev
->info
->of_xlate
)
151 index
= indio_dev
->info
->of_xlate(indio_dev
, &iiospec
);
153 index
= __of_iio_simple_xlate(indio_dev
, &iiospec
);
156 channel
->channel
= &indio_dev
->channels
[index
];
161 iio_device_put(indio_dev
);
165 static struct iio_channel
*of_iio_channel_get(struct device_node
*np
, int index
)
167 struct iio_channel
*channel
;
171 return ERR_PTR(-EINVAL
);
173 channel
= kzalloc(sizeof(*channel
), GFP_KERNEL
);
175 return ERR_PTR(-ENOMEM
);
177 err
= __of_iio_channel_get(channel
, np
, index
);
179 goto err_free_channel
;
188 static struct iio_channel
*of_iio_channel_get_by_name(struct device_node
*np
,
191 struct iio_channel
*chan
= NULL
;
193 /* Walk up the tree of devices looking for a matching iio channel */
198 * For named iio channels, first look up the name in the
199 * "io-channel-names" property. If it cannot be found, the
200 * index will be an error code, and of_iio_channel_get()
204 index
= of_property_match_string(np
, "io-channel-names",
206 chan
= of_iio_channel_get(np
, index
);
207 if (!IS_ERR(chan
) || PTR_ERR(chan
) == -EPROBE_DEFER
)
209 else if (name
&& index
>= 0) {
210 pr_err("ERROR: could not get IIO channel %s:%s(%i)\n",
211 np
->full_name
, name
? name
: "", index
);
216 * No matching IIO channel found on this node.
217 * If the parent node has a "io-channel-ranges" property,
218 * then we can try one of its channels.
221 if (np
&& !of_get_property(np
, "io-channel-ranges", NULL
))
228 static struct iio_channel
*of_iio_channel_get_all(struct device
*dev
)
230 struct iio_channel
*chans
;
231 int i
, mapind
, nummaps
= 0;
235 ret
= of_parse_phandle_with_args(dev
->of_node
,
243 if (nummaps
== 0) /* no error, return NULL to search map table */
246 /* NULL terminated array to save passing size */
247 chans
= kcalloc(nummaps
+ 1, sizeof(*chans
), GFP_KERNEL
);
249 return ERR_PTR(-ENOMEM
);
251 /* Search for OF matches */
252 for (mapind
= 0; mapind
< nummaps
; mapind
++) {
253 ret
= __of_iio_channel_get(&chans
[mapind
], dev
->of_node
,
256 goto error_free_chans
;
261 for (i
= 0; i
< mapind
; i
++)
262 iio_device_put(chans
[i
].indio_dev
);
267 #else /* CONFIG_OF */
269 static inline struct iio_channel
*
270 of_iio_channel_get_by_name(struct device_node
*np
, const char *name
)
275 static inline struct iio_channel
*of_iio_channel_get_all(struct device
*dev
)
280 #endif /* CONFIG_OF */
282 static struct iio_channel
*iio_channel_get_sys(const char *name
,
283 const char *channel_name
)
285 struct iio_map_internal
*c_i
= NULL
, *c
= NULL
;
286 struct iio_channel
*channel
;
289 if (name
== NULL
&& channel_name
== NULL
)
290 return ERR_PTR(-ENODEV
);
292 /* first find matching entry the channel map */
293 mutex_lock(&iio_map_list_lock
);
294 list_for_each_entry(c_i
, &iio_map_list
, l
) {
295 if ((name
&& strcmp(name
, c_i
->map
->consumer_dev_name
) != 0) ||
297 strcmp(channel_name
, c_i
->map
->consumer_channel
) != 0))
300 iio_device_get(c
->indio_dev
);
303 mutex_unlock(&iio_map_list_lock
);
305 return ERR_PTR(-ENODEV
);
307 channel
= kzalloc(sizeof(*channel
), GFP_KERNEL
);
308 if (channel
== NULL
) {
313 channel
->indio_dev
= c
->indio_dev
;
315 if (c
->map
->adc_channel_label
) {
317 iio_chan_spec_from_name(channel
->indio_dev
,
318 c
->map
->adc_channel_label
);
320 if (channel
->channel
== NULL
) {
331 iio_device_put(c
->indio_dev
);
335 struct iio_channel
*iio_channel_get(struct device
*dev
,
336 const char *channel_name
)
338 const char *name
= dev
? dev_name(dev
) : NULL
;
339 struct iio_channel
*channel
;
342 channel
= of_iio_channel_get_by_name(dev
->of_node
,
348 return iio_channel_get_sys(name
, channel_name
);
350 EXPORT_SYMBOL_GPL(iio_channel_get
);
352 void iio_channel_release(struct iio_channel
*channel
)
354 iio_device_put(channel
->indio_dev
);
357 EXPORT_SYMBOL_GPL(iio_channel_release
);
359 struct iio_channel
*iio_channel_get_all(struct device
*dev
)
362 struct iio_channel
*chans
;
363 struct iio_map_internal
*c
= NULL
;
369 return ERR_PTR(-EINVAL
);
371 chans
= of_iio_channel_get_all(dev
);
375 name
= dev_name(dev
);
377 mutex_lock(&iio_map_list_lock
);
378 /* first count the matching maps */
379 list_for_each_entry(c
, &iio_map_list
, l
)
380 if (name
&& strcmp(name
, c
->map
->consumer_dev_name
) != 0)
390 /* NULL terminated array to save passing size */
391 chans
= kzalloc(sizeof(*chans
)*(nummaps
+ 1), GFP_KERNEL
);
397 /* for each map fill in the chans element */
398 list_for_each_entry(c
, &iio_map_list
, l
) {
399 if (name
&& strcmp(name
, c
->map
->consumer_dev_name
) != 0)
401 chans
[mapind
].indio_dev
= c
->indio_dev
;
402 chans
[mapind
].data
= c
->map
->consumer_data
;
403 chans
[mapind
].channel
=
404 iio_chan_spec_from_name(chans
[mapind
].indio_dev
,
405 c
->map
->adc_channel_label
);
406 if (chans
[mapind
].channel
== NULL
) {
408 goto error_free_chans
;
410 iio_device_get(chans
[mapind
].indio_dev
);
415 goto error_free_chans
;
417 mutex_unlock(&iio_map_list_lock
);
422 for (i
= 0; i
< nummaps
; i
++)
423 iio_device_put(chans
[i
].indio_dev
);
426 mutex_unlock(&iio_map_list_lock
);
430 EXPORT_SYMBOL_GPL(iio_channel_get_all
);
432 void iio_channel_release_all(struct iio_channel
*channels
)
434 struct iio_channel
*chan
= &channels
[0];
436 while (chan
->indio_dev
) {
437 iio_device_put(chan
->indio_dev
);
442 EXPORT_SYMBOL_GPL(iio_channel_release_all
);
444 static int iio_channel_read(struct iio_channel
*chan
, int *val
, int *val2
,
445 enum iio_chan_info_enum info
)
448 int vals
[INDIO_MAX_RAW_ELEMENTS
];
455 if(!iio_channel_has_info(chan
->channel
, info
))
458 if (chan
->indio_dev
->info
->read_raw_multi
) {
459 ret
= chan
->indio_dev
->info
->read_raw_multi(chan
->indio_dev
,
460 chan
->channel
, INDIO_MAX_RAW_ELEMENTS
,
461 vals
, &val_len
, info
);
465 ret
= chan
->indio_dev
->info
->read_raw(chan
->indio_dev
,
466 chan
->channel
, val
, val2
, info
);
471 int iio_read_channel_raw(struct iio_channel
*chan
, int *val
)
475 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
476 if (chan
->indio_dev
->info
== NULL
) {
481 ret
= iio_channel_read(chan
, val
, NULL
, IIO_CHAN_INFO_RAW
);
483 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
487 EXPORT_SYMBOL_GPL(iio_read_channel_raw
);
489 int iio_read_channel_average_raw(struct iio_channel
*chan
, int *val
)
493 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
494 if (chan
->indio_dev
->info
== NULL
) {
499 ret
= iio_channel_read(chan
, val
, NULL
, IIO_CHAN_INFO_AVERAGE_RAW
);
501 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
505 EXPORT_SYMBOL_GPL(iio_read_channel_average_raw
);
507 static int iio_convert_raw_to_processed_unlocked(struct iio_channel
*chan
,
508 int raw
, int *processed
, unsigned int scale
)
510 int scale_type
, scale_val
, scale_val2
, offset
;
514 ret
= iio_channel_read(chan
, &offset
, NULL
, IIO_CHAN_INFO_OFFSET
);
518 scale_type
= iio_channel_read(chan
, &scale_val
, &scale_val2
,
519 IIO_CHAN_INFO_SCALE
);
523 switch (scale_type
) {
525 *processed
= raw64
* scale_val
;
527 case IIO_VAL_INT_PLUS_MICRO
:
529 *processed
= -raw64
* scale_val
;
531 *processed
= raw64
* scale_val
;
532 *processed
+= div_s64(raw64
* (s64
)scale_val2
* scale
,
535 case IIO_VAL_INT_PLUS_NANO
:
537 *processed
= -raw64
* scale_val
;
539 *processed
= raw64
* scale_val
;
540 *processed
+= div_s64(raw64
* (s64
)scale_val2
* scale
,
543 case IIO_VAL_FRACTIONAL
:
544 *processed
= div_s64(raw64
* (s64
)scale_val
* scale
,
547 case IIO_VAL_FRACTIONAL_LOG2
:
548 *processed
= (raw64
* (s64
)scale_val
* scale
) >> scale_val2
;
557 int iio_convert_raw_to_processed(struct iio_channel
*chan
, int raw
,
558 int *processed
, unsigned int scale
)
562 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
563 if (chan
->indio_dev
->info
== NULL
) {
568 ret
= iio_convert_raw_to_processed_unlocked(chan
, raw
, processed
,
571 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
575 EXPORT_SYMBOL_GPL(iio_convert_raw_to_processed
);
577 int iio_read_channel_processed(struct iio_channel
*chan
, int *val
)
581 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
582 if (chan
->indio_dev
->info
== NULL
) {
587 if (iio_channel_has_info(chan
->channel
, IIO_CHAN_INFO_PROCESSED
)) {
588 ret
= iio_channel_read(chan
, val
, NULL
,
589 IIO_CHAN_INFO_PROCESSED
);
591 ret
= iio_channel_read(chan
, val
, NULL
, IIO_CHAN_INFO_RAW
);
594 ret
= iio_convert_raw_to_processed_unlocked(chan
, *val
, val
, 1);
598 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
602 EXPORT_SYMBOL_GPL(iio_read_channel_processed
);
604 int iio_read_channel_scale(struct iio_channel
*chan
, int *val
, int *val2
)
608 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
609 if (chan
->indio_dev
->info
== NULL
) {
614 ret
= iio_channel_read(chan
, val
, val2
, IIO_CHAN_INFO_SCALE
);
616 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
620 EXPORT_SYMBOL_GPL(iio_read_channel_scale
);
622 int iio_get_channel_type(struct iio_channel
*chan
, enum iio_chan_type
*type
)
625 /* Need to verify underlying driver has not gone away */
627 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
628 if (chan
->indio_dev
->info
== NULL
) {
633 *type
= chan
->channel
->type
;
635 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
639 EXPORT_SYMBOL_GPL(iio_get_channel_type
);
641 static int iio_channel_write(struct iio_channel
*chan
, int val
, int val2
,
642 enum iio_chan_info_enum info
)
644 return chan
->indio_dev
->info
->write_raw(chan
->indio_dev
,
645 chan
->channel
, val
, val2
, info
);
648 int iio_write_channel_raw(struct iio_channel
*chan
, int val
)
652 mutex_lock(&chan
->indio_dev
->info_exist_lock
);
653 if (chan
->indio_dev
->info
== NULL
) {
658 ret
= iio_channel_write(chan
, val
, 0, IIO_CHAN_INFO_RAW
);
660 mutex_unlock(&chan
->indio_dev
->info_exist_lock
);
664 EXPORT_SYMBOL_GPL(iio_write_channel_raw
);