@@ -10,6 +10,7 @@ use bootloader::{
10
10
} ;
11
11
use core:: {
12
12
arch:: { asm, global_asm} ,
13
+ cmp,
13
14
panic:: PanicInfo ,
14
15
slice,
15
16
} ;
@@ -78,16 +79,23 @@ fn bootloader_main(
78
79
use bootloader:: binary:: {
79
80
bios:: memory_descriptor:: E820MemoryRegion , legacy_memory_region:: LegacyFrameAllocator ,
80
81
} ;
82
+ const GIGABYTE : u64 = 4096 * 512 * 512 ;
81
83
82
84
let e820_memory_map = {
83
85
let ptr = usize_from ( memory_map_addr. as_u64 ( ) ) as * const E820MemoryRegion ;
84
86
unsafe { slice:: from_raw_parts ( ptr, usize_from ( memory_map_entry_count) ) }
85
87
} ;
86
- let max_phys_addr = e820_memory_map
87
- . iter ( )
88
- . map ( |r| r. start_addr + r. len )
89
- . max ( )
90
- . expect ( "no physical memory regions found" ) ;
88
+ let max_phys_addr = {
89
+ let max = e820_memory_map
90
+ . iter ( )
91
+ . map ( |r| r. start_addr + r. len )
92
+ . max ( )
93
+ . expect ( "no physical memory regions found" ) ;
94
+ // Don't consider addresses > 4GiB when determining the maximum physical
95
+ // address for the bootloader, as we are in protected mode and cannot
96
+ // address more than 4 GiB of memory anyway.
97
+ cmp:: min ( max, 4 * GIGABYTE )
98
+ } ;
91
99
92
100
let mut frame_allocator = {
93
101
let kernel_end = PhysFrame :: containing_address ( kernel_start + kernel_size - 1u64 ) ;
@@ -106,7 +114,7 @@ fn bootloader_main(
106
114
// identity-map remaining physical memory (first gigabyte is already identity-mapped)
107
115
{
108
116
let start_frame: PhysFrame < Size2MiB > =
109
- PhysFrame :: containing_address ( PhysAddr :: new ( 4096 * 512 * 512 ) ) ;
117
+ PhysFrame :: containing_address ( PhysAddr :: new ( GIGABYTE ) ) ;
110
118
let end_frame = PhysFrame :: containing_address ( PhysAddr :: new ( max_phys_addr - 1 ) ) ;
111
119
for frame in PhysFrame :: range_inclusive ( start_frame, end_frame) {
112
120
unsafe {
0 commit comments