#include <linux/device.h>
#include <linux/errno.h>
#include <linux/export.h>
#include <linux/module.h>
#include <linux/property.h>
#include <linux/types.h>
#include <linux/iio/adc-helpers.h>
#include <linux/iio/iio.h>
int devm_iio_adc_device_alloc_chaninfo_se(struct device *dev,
const struct iio_chan_spec *template,
int max_chan_id,
struct iio_chan_spec **cs)
{
struct iio_chan_spec *chan_array, *chan;
int num_chan, ret;
num_chan = iio_adc_device_num_channels(dev);
if (num_chan < 0)
return num_chan;
if (!num_chan)
return -ENOENT;
chan_array = devm_kcalloc(dev, num_chan, sizeof(*chan_array),
GFP_KERNEL);
if (!chan_array)
return -ENOMEM;
chan = &chan_array[0];
device_for_each_named_child_node_scoped(dev, child, "channel") {
u32 ch;
ret = fwnode_property_read_u32(child, "reg", &ch);
if (ret)
return ret;
if (max_chan_id >= 0 && ch > max_chan_id)
return -ERANGE;
*chan = *template;
chan->channel = ch;
chan++;
}
*cs = chan_array;
return num_chan;
}
EXPORT_SYMBOL_NS_GPL(devm_iio_adc_device_alloc_chaninfo_se, "IIO_DRIVER");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Matti Vaittinen <mazziesaccount@gmail.com>");
MODULE_DESCRIPTION("IIO ADC fwnode parsing helpers");