From 3c6fcfcf10c989284480051075eda24edd46b688 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Fri, 26 Feb 2021 00:20:50 +0200 Subject: [PATCH] [wip] memory map initialization --- nucleus/src/arch/aarch64/memory/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nucleus/src/arch/aarch64/memory/mod.rs b/nucleus/src/arch/aarch64/memory/mod.rs index 8a0e3ce..3e8759a 100644 --- a/nucleus/src/arch/aarch64/memory/mod.rs +++ b/nucleus/src/arch/aarch64/memory/mod.rs @@ -18,6 +18,7 @@ mod phys_frame; mod virt_page; pub mod mmu2; + pub use mmu2::*; // mod area_frame_allocator; @@ -166,6 +167,8 @@ pub use kernel_mem_range::*; /// Contains only special ranges, aka anything that is _not_ normal cacheable /// DRAM. static KERNEL_VIRTUAL_LAYOUT: [Descriptor; 6] = [ + // These are part of a static linked image and used for proper kernel-space initialization. + // i.e. these data are subtracted from the dtb-provided memory map. Descriptor { name: "Kernel stack", virtual_range: || {