Skip to main content

Module iomem

Module iomem 

Source
Expand description

I/O memory resource region enumeration.

Enumerates I/O memory resource regions from the iomem_resource kernel structure. Shows system memory layout, ACPI regions, PCI MMIO, firmware areas. Useful for understanding hardware layout and detecting suspicious memory-mapped regions. Equivalent to /proc/iomem from memory.

The kernel maintains a tree of struct resource rooted at iomem_resource. Each resource has start, end, name, flags, and pointers to child and sibling forming a tree of nested memory regions.

Re-exports§

pub use crate::heuristics::classify_iomem;

Structs§

IoMemRegion
Information about a single I/O memory resource region.

Functions§

walk_iomem_regions
Walk I/O memory resource regions from the iomem_resource kernel structure.