include/linux/acpi_iort.h
Source file repositories/reference/linux-study-clean/include/linux/acpi_iort.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/acpi_iort.h- Extension
.h- Size
- 3251 bytes
- Lines
- 80
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/acpi.hlinux/fwnode.hlinux/irqdomain.h
Detected Declarations
function iort_msi_map_idfunction iort_msi_xlatefunction iort_its_translate_pafunction iort_pmsi_get_msi_infofunction acpi_configure_pmsi_domainfunction iort_iommu_configure_idfunction iort_iommu_get_resv_regions
Annotated Snippet
static inline void acpi_configure_pmsi_domain(struct device *dev) { }
static inline
void iort_get_rmr_sids(struct fwnode_handle *iommu_fwnode, struct list_head *head) { }
static inline
void iort_put_rmr_sids(struct fwnode_handle *iommu_fwnode, struct list_head *head) { }
/* IOMMU interface */
static inline int iort_dma_get_ranges(struct device *dev, u64 *limit)
{ return -ENODEV; }
static inline int iort_iommu_configure_id(struct device *dev, const u32 *id_in)
{ return -ENODEV; }
static inline
void iort_iommu_get_resv_regions(struct device *dev, struct list_head *head)
{ }
static inline phys_addr_t acpi_iort_dma_get_max_cpu_address(void)
{ return PHYS_ADDR_MAX; }
#endif
#endif /* __ACPI_IORT_H__ */
Annotation
- Immediate include surface: `linux/acpi.h`, `linux/fwnode.h`, `linux/irqdomain.h`.
- Detected declarations: `function iort_msi_map_id`, `function iort_msi_xlate`, `function iort_its_translate_pa`, `function iort_pmsi_get_msi_info`, `function acpi_configure_pmsi_domain`, `function iort_iommu_configure_id`, `function iort_iommu_get_resv_regions`.
- Atlas domain: Core OS / Core Kernel Interface.
- Implementation status: source 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.