Skip to content

Commit ae17796

Browse files
Freax13phil-opp
andcommitted
support higher half position independent kernels
Co-Authored-By: Philipp Oppermann <[email protected]>
1 parent 7520f2c commit ae17796

File tree

3 files changed

+256
-65
lines changed

3 files changed

+256
-65
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ rustflags = [
100100
"-C",
101101
"link-args=--image-base 0xFFFF800000000000",
102102
"-C",
103-
"relocation-model=static", # pic in higher half not supported yet
103+
"relocation-model=pic",
104104
"-C",
105105
"code-model=large",
106106
]

common/src/level_4_entries.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::{entropy, BootInfo, RawFrameBufferInfo};
1+
use crate::{entropy, load_kernel::VirtualAddressOffset, BootInfo, RawFrameBufferInfo};
22
use bootloader_api::{config, info::MemoryRegion, BootloaderConfig};
33
use core::{alloc::Layout, iter::Step};
44
use rand::{
@@ -126,11 +126,11 @@ impl UsedLevel4Entries {
126126
pub fn mark_segments<'a>(
127127
&mut self,
128128
segments: impl Iterator<Item = ProgramHeader<'a>>,
129-
virtual_address_offset: u64,
129+
virtual_address_offset: VirtualAddressOffset,
130130
) {
131131
for segment in segments.filter(|s| s.mem_size() > 0) {
132132
self.mark_range_as_used(
133-
segment.virtual_addr() + virtual_address_offset,
133+
virtual_address_offset + segment.virtual_addr(),
134134
segment.mem_size(),
135135
);
136136
}
@@ -158,7 +158,7 @@ impl UsedLevel4Entries {
158158
// Choose the first index.
159159
free_entries.next()
160160
};
161-
let idx = idx_opt.expect("no usable level 4 entries found");
161+
let Some(idx) = idx_opt else { panic!("no usable level 4 entries found ({num} entries requested)"); };
162162

163163
// Mark the entries as used.
164164
for i in 0..num.into_usize() {

0 commit comments

Comments
 (0)