sound/soc/ti/omap-abe-twl6040.c
Source file repositories/reference/linux-study-clean/sound/soc/ti/omap-abe-twl6040.c
File Facts
- System
- Linux kernel
- Corpus path
sound/soc/ti/omap-abe-twl6040.c- Extension
.c- Size
- 9516 bytes
- Lines
- 355
- Domain
- Driver Families
- Bucket
- sound/soc
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/clk.hlinux/platform_device.hlinux/mfd/twl6040.hlinux/module.hlinux/of.hsound/core.hsound/pcm.hsound/soc.hsound/jack.homap-dmic.homap-mcpdm.h../codecs/twl6040.h
Detected Declarations
struct abe_twl6040function omap_abe_hw_paramsfunction omap_abe_dmic_hw_paramsfunction omap_abe_twl6040_initfunction omap_abe_dmic_initfunction omap_abe_probefunction omap_abe_initfunction omap_abe_exitmodule init omap_abe_init
Annotated Snippet
module_init(omap_abe_init);
static void __exit omap_abe_exit(void)
{
platform_driver_unregister(&omap_abe_driver);
platform_device_unregister(dmic_codec_dev);
}
module_exit(omap_abe_exit);
MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
MODULE_DESCRIPTION("ALSA SoC for OMAP boards with ABE and twl6040 codec");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:omap-abe-twl6040");
Annotation
- Immediate include surface: `linux/clk.h`, `linux/platform_device.h`, `linux/mfd/twl6040.h`, `linux/module.h`, `linux/of.h`, `sound/core.h`, `sound/pcm.h`, `sound/soc.h`.
- Detected declarations: `struct abe_twl6040`, `function omap_abe_hw_params`, `function omap_abe_dmic_hw_params`, `function omap_abe_twl6040_init`, `function omap_abe_dmic_init`, `function omap_abe_probe`, `function omap_abe_init`, `function omap_abe_exit`, `module init omap_abe_init`.
- Atlas domain: Driver Families / sound/soc.
- 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.