diff --git a/src/arch/aarch64/memory/area_frame_allocator.rs b/src/arch/aarch64/memory/area_frame_allocator.rs index 5b236ee..24e8909 100644 --- a/src/arch/aarch64/memory/area_frame_allocator.rs +++ b/src/arch/aarch64/memory/area_frame_allocator.rs @@ -1,4 +1,4 @@ -use memory::{Frame, FrameAllocator}; +use super::{Frame, FrameAllocator}; use multiboot2::{MemoryArea, MemoryAreaIter}; // replace with DTB? pub struct AreaFrameAllocator { diff --git a/src/arch/aarch64/memory/mod.rs b/src/arch/aarch64/memory/mod.rs index f306448..d56b669 100644 --- a/src/arch/aarch64/memory/mod.rs +++ b/src/arch/aarch64/memory/mod.rs @@ -1,10 +1,14 @@ -pub use self::area_frame_allocator::AreaFrameAllocator; -use self::paging::PhysicalAddress; +// mod arch::aarch64::memory mod area_frame_allocator; mod paging; -pub const PAGE_SIZE: usize = 4096; +pub use self::area_frame_allocator::AreaFrameAllocator; + +pub type PhysicalAddress = usize; +pub type VirtualAddress = usize; + +use self::paging::PAGE_SIZE; #[derive(Debug, PartialEq, Eq, PartialOrd, Ord)] pub struct Frame { diff --git a/src/arch/aarch64/memory/paging/entry.rs b/src/arch/aarch64/memory/paging/entry.rs index 84d5f54..bd08fb3 100644 --- a/src/arch/aarch64/memory/paging/entry.rs +++ b/src/arch/aarch64/memory/paging/entry.rs @@ -1,4 +1,4 @@ -use memory::Frame; +use super::super::Frame; pub struct Entry(u64); diff --git a/src/arch/aarch64/memory/paging/mod.rs b/src/arch/aarch64/memory/paging/mod.rs index 339f992..40321f1 100644 --- a/src/arch/aarch64/memory/paging/mod.rs +++ b/src/arch/aarch64/memory/paging/mod.rs @@ -1,3 +1,5 @@ +// mod arch::aarch64::memory::paging + //! Some code was borrowed from [Phil Opp's Blog](https://os.phil-opp.com/page-tables/) //! Paging is mostly based on https://os.phil-opp.com/page-tables/ and ARM ARM @@ -28,16 +30,15 @@ pub use self::entry::*; use core::ptr::Unique; -use memory::{Frame, PAGE_SIZE}; use self::table::{Level0, Table}; +use super::{Frame, FrameAllocator, PhysicalAddress, VirtualAddress}; mod entry; mod table; -const ENTRY_COUNT: usize = 512; +pub const PAGE_SIZE: usize = 4096; -pub type PhysicalAddress = usize; -pub type VirtualAddress = usize; +pub const ENTRY_COUNT: usize = 512; pub struct Page { number: usize, diff --git a/src/arch/aarch64/memory/paging/table.rs b/src/arch/aarch64/memory/paging/table.rs index 5ef323a..08c2ab7 100644 --- a/src/arch/aarch64/memory/paging/table.rs +++ b/src/arch/aarch64/memory/paging/table.rs @@ -1,6 +1,8 @@ use core::marker::PhantomData; -use memory::paging::entry::*; -use memory::paging::ENTRY_COUNT; +use core::ops::{Index, IndexMut}; +use super::super::FrameAllocator; +use super::ENTRY_COUNT; +use arch::aarch64::memory::paging::entry::*; pub const L0: *mut Table = 0xffff_ffff_ffff_f000 as *mut _; diff --git a/src/arch/mod.rs b/src/arch/mod.rs index 813ee20..f41abf3 100644 --- a/src/arch/mod.rs +++ b/src/arch/mod.rs @@ -1,3 +1,5 @@ +// mod arch + #[cfg(target_arch = "aarch64")] #[macro_use] pub mod aarch64;