drivers/edac/a72_edac.c
Source file repositories/reference/linux-study-clean/drivers/edac/a72_edac.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/edac/a72_edac.c- Extension
.c- Size
- 5314 bytes
- Lines
- 226
- Domain
- Driver Families
- Bucket
- drivers/edac
- 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/module.hlinux/of.hlinux/bitfield.hasm/smp_plat.hedac_module.h
Detected Declarations
struct mem_err_synd_regfunction report_errorsfunction read_errorsfunction a72_edac_checkfunction a72_edac_probefunction a72_edac_removefunction a72_edac_driver_initfunction for_each_possible_cpufunction a72_edac_driver_exitmodule init a72_edac_driver_init
Annotated Snippet
module_init(a72_edac_driver_init);
module_exit(a72_edac_driver_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
MODULE_DESCRIPTION("Cortex A72 L1 and L2 cache EDAC driver");
Annotation
- Immediate include surface: `linux/module.h`, `linux/of.h`, `linux/bitfield.h`, `asm/smp_plat.h`, `edac_module.h`.
- Detected declarations: `struct mem_err_synd_reg`, `function report_errors`, `function read_errors`, `function a72_edac_check`, `function a72_edac_probe`, `function a72_edac_remove`, `function a72_edac_driver_init`, `function for_each_possible_cpu`, `function a72_edac_driver_exit`, `module init a72_edac_driver_init`.
- Atlas domain: Driver Families / drivers/edac.
- 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.