drivers/iommu/arm/arm-smmu/arm-smmu.c

Source file repositories/reference/linux-study-clean/drivers/iommu/arm/arm-smmu/arm-smmu.c

File Facts

System
Linux kernel
Corpus path
drivers/iommu/arm/arm-smmu/arm-smmu.c
Extension
.c
Size
67881 bytes
Lines
2396
Domain
Driver Families
Bucket
drivers/iommu
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.

Dependency Surface

Detected Declarations

Annotated Snippet

module_init(arm_smmu_init);

static void __exit arm_smmu_exit(void)
{
	arm_smmu_impl_module_exit();
	platform_driver_unregister(&arm_smmu_driver);
}
module_exit(arm_smmu_exit);

MODULE_DESCRIPTION("IOMMU API for ARM architected SMMU implementations");
MODULE_AUTHOR("Will Deacon <will@kernel.org>");
MODULE_ALIAS("platform:arm-smmu");
MODULE_LICENSE("GPL v2");

Annotation

Implementation Notes