drivers/acpi/arm64/mpam.c
Source file repositories/reference/linux-study-clean/drivers/acpi/arm64/mpam.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/acpi/arm64/mpam.c- Extension
.c- Size
- 11407 bytes
- Lines
- 412
- Domain
- Driver Families
- Bucket
- drivers/acpi
- 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/acpi.hlinux/arm_mpam.hlinux/bits.hlinux/cpu.hlinux/cpumask.hlinux/platform_device.hacpi/processor.h
Detected Declarations
function _is_ppi_partitionfunction acpi_mpam_register_irqfunction acpi_mpam_parse_irqsfunction acpi_mpam_parse_resourcefunction acpi_mpam_parse_resourcesfunction parse_msc_pm_linkfunction decode_interface_typefunction acpi_mpam_parse_mscfunction acpi_mpam_parsefunction acpi_mpam_count_mscfunction acpi_mpam_count_msc
Annotated Snippet
* called from subsys_initcall(). PCC requires the mailbox driver, which is
* initialised from postcore_initcall().
*/
subsys_initcall_sync(acpi_mpam_parse);
Annotation
- Immediate include surface: `linux/acpi.h`, `linux/arm_mpam.h`, `linux/bits.h`, `linux/cpu.h`, `linux/cpumask.h`, `linux/platform_device.h`, `acpi/processor.h`.
- Detected declarations: `function _is_ppi_partition`, `function acpi_mpam_register_irq`, `function acpi_mpam_parse_irqs`, `function acpi_mpam_parse_resource`, `function acpi_mpam_parse_resources`, `function parse_msc_pm_link`, `function decode_interface_type`, `function acpi_mpam_parse_msc`, `function acpi_mpam_parse`, `function acpi_mpam_count_msc`.
- Atlas domain: Driver Families / drivers/acpi.
- 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.