We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf950a4 + bf104bd commit 96f58f2Copy full SHA for 96f58f2
common/src/legacy_memory_region.rs
@@ -132,11 +132,17 @@ where
132
///
133
/// Useful for creating a mapping for all physical memory.
134
pub fn max_phys_addr(&self) -> PhysAddr {
135
- self.original
+ let max = self
136
+ .original
137
.clone()
138
.map(|r| r.start() + r.len())
139
.max()
- .unwrap()
140
+ .unwrap();
141
+
142
+ // Always cover at least the first 4 GiB of physical memory. That area
143
+ // contains useful MMIO regions (local APIC, I/O APIC, PCI bars) that
144
+ // we want to make accessible to the kernel even if no DRAM exists >4GiB.
145
+ cmp::max(max, PhysAddr::new(0x1_0000_0000))
146
}
147
148
/// Calculate the maximum number of regions produced by [Self::construct_memory_map]
0 commit comments