drivers/iio/adc/industrialio-adc.c
Source file repositories/reference/linux-study-clean/drivers/iio/adc/industrialio-adc.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/iio/adc/industrialio-adc.c- Extension
.c- Size
- 2311 bytes
- Lines
- 83
- Domain
- Driver Families
- Bucket
- drivers/iio
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/device.hlinux/errno.hlinux/export.hlinux/module.hlinux/property.hlinux/types.hlinux/iio/adc-helpers.hlinux/iio/iio.h
Detected Declarations
function Copyrightfunction device_for_each_named_child_node_scoped
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* Helpers for parsing common ADC information from a firmware node.
*
* Copyright (c) 2025 Matti Vaittinen <mazziesaccount@gmail.com>
*/
#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>
/**
* devm_iio_adc_device_alloc_chaninfo_se - allocate and fill iio_chan_spec for ADC
*
* Scan the device node for single-ended ADC channel information. Channel ID is
* expected to be found from the "reg" property. Allocate and populate the
* iio_chan_spec structure corresponding to channels that are found. The memory
* for iio_chan_spec structure will be freed upon device detach.
*
* @dev: Pointer to the ADC device.
* @template: Template iio_chan_spec from which the fields of all
* found and allocated channels are initialized.
* @max_chan_id: Maximum value of a channel ID. Use negative value if no
* checking is required.
* @cs: Location where pointer to allocated iio_chan_spec
* should be stored.
*
* Return: Number of found channels on success. Negative value to indicate
* failure. Specifically, -ENOENT if no channel nodes were found.
*/
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");
Annotation
- Immediate include surface: `linux/device.h`, `linux/errno.h`, `linux/export.h`, `linux/module.h`, `linux/property.h`, `linux/types.h`, `linux/iio/adc-helpers.h`, `linux/iio/iio.h`.
- Detected declarations: `function Copyright`, `function device_for_each_named_child_node_scoped`.
- Atlas domain: Driver Families / drivers/iio.
- Implementation status: integration implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.