diff --git a/src/arch/aarch64/mmu.rs b/src/arch/aarch64/mmu.rs index 7bd4e5d..7174c78 100644 --- a/src/arch/aarch64/mmu.rs +++ b/src/arch/aarch64/mmu.rs @@ -147,16 +147,16 @@ pub unsafe fn init() { // For educational purposes and fun, let the start of the second 2 MiB block // point to the 2 MiB aperture which contains the UART's base address. - // let uart_phys_base: u64 = (uart::UART_PHYS_BASE >> 21).into(); - // LVL2_TABLE.entries[1] = (STAGE1_DESCRIPTOR::VALID::True - // + STAGE1_DESCRIPTOR::TYPE::Block - // + STAGE1_DESCRIPTOR::AttrIndx.val(mair::DEVICE) - // + STAGE1_DESCRIPTOR::AP::RW_EL1 - // + STAGE1_DESCRIPTOR::SH::OuterShareable - // + STAGE1_DESCRIPTOR::AF::True - // + STAGE1_DESCRIPTOR::LVL2_OUTPUT_ADDR_4KiB.val(uart_phys_base) - // + STAGE1_DESCRIPTOR::XN::True) - // .value; + let uart_phys_base: u64 = (crate::platform::uart::UART1_BASE >> 21).into(); + LVL2_TABLE.entries[1] = (STAGE1_DESCRIPTOR::VALID::True + + STAGE1_DESCRIPTOR::TYPE::Block + + STAGE1_DESCRIPTOR::AttrIndx.val(mair::DEVICE) + + STAGE1_DESCRIPTOR::AP::RW_EL1 + + STAGE1_DESCRIPTOR::SH::OuterShareable + + STAGE1_DESCRIPTOR::AF::True + + STAGE1_DESCRIPTOR::LVL2_OUTPUT_ADDR_4KiB.val(uart_phys_base) + + STAGE1_DESCRIPTOR::XN::True) + .value; // Fill the rest of the LVL2 (2MiB) entries as block // descriptors. Differentiate between normal and device mem. diff --git a/src/platform/uart.rs b/src/platform/uart.rs index 7812e6c..60b4be8 100644 --- a/src/platform/uart.rs +++ b/src/platform/uart.rs @@ -27,7 +27,7 @@ const UART0_ITOP: u32 = UART0_BASE + 0x88; const UART0_TDR: u32 = UART0_BASE + 0x8C; // Mini UART -const UART1_BASE: u32 = PERIPHERAL_BASE + 0x21_5000; +pub const UART1_BASE: u32 = PERIPHERAL_BASE + 0x21_5000; #[allow(non_snake_case)] #[repr(C)]