drivers/iio/industrialio-sw-device.c
Source file repositories/reference/linux-study-clean/drivers/iio/industrialio-sw-device.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/iio/industrialio-sw-device.c- Extension
.c- Size
- 4172 bytes
- Lines
- 180
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/module.hlinux/init.hlinux/kmod.hlinux/list.hlinux/slab.hlinux/iio/sw_device.hlinux/iio/configfs.hlinux/configfs.h
Detected Declarations
function list_for_each_entryfunction iio_register_sw_device_typefunction iio_unregister_sw_device_typefunction iio_sw_device_destroyfunction device_drop_groupfunction iio_sw_device_initfunction iio_sw_device_exitmodule init iio_sw_device_initexport iio_register_sw_device_typeexport iio_unregister_sw_device_typeexport iio_sw_device_createexport iio_sw_device_destroy
Annotated Snippet
module_init(iio_sw_device_init);
static void __exit iio_sw_device_exit(void)
{
configfs_unregister_default_group(iio_devices_group);
}
module_exit(iio_sw_device_exit);
MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com>");
MODULE_DESCRIPTION("Industrial I/O software devices support");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/module.h`, `linux/init.h`, `linux/kmod.h`, `linux/list.h`, `linux/slab.h`, `linux/iio/sw_device.h`, `linux/iio/configfs.h`, `linux/configfs.h`.
- Detected declarations: `function list_for_each_entry`, `function iio_register_sw_device_type`, `function iio_unregister_sw_device_type`, `function iio_sw_device_destroy`, `function device_drop_group`, `function iio_sw_device_init`, `function iio_sw_device_exit`, `module init iio_sw_device_init`, `export iio_register_sw_device_type`, `export iio_unregister_sw_device_type`.
- Atlas domain: Driver Families / drivers/iio.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.