mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-17 04:32:27 +00:00
Compare commits
2 Commits
logger
...
4d6b30755d
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d6b30755d | |||
| 55f410e2bb |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@ kernel8.img
|
|||||||
sd.img
|
sd.img
|
||||||
settings.json
|
settings.json
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.venv
|
||||||
|
|||||||
25
.vscode/launch.json
vendored
25
.vscode/launch.json
vendored
@@ -33,6 +33,31 @@
|
|||||||
],
|
],
|
||||||
"preLaunchTask": "Run QEMU"
|
"preLaunchTask": "Run QEMU"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Attach to QEMU (AArch64) wo. window",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/target/aarch64-unknown-none/debug/nova",
|
||||||
|
"miDebuggerServerAddress": "localhost:1234",
|
||||||
|
"miDebuggerPath": "gdb",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"stopAtEntry": true,
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "Enable pretty-printing for gdb",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Show assembly on stop",
|
||||||
|
"text": "set disassemble-next-line on",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preLaunchTask": "Run QEMU wo window"
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Attach LLDB",
|
"name": "Attach LLDB",
|
||||||
|
|||||||
33
.vscode/tasks.json
vendored
33
.vscode/tasks.json
vendored
@@ -14,9 +14,38 @@
|
|||||||
{
|
{
|
||||||
"label": "Run QEMU",
|
"label": "Run QEMU",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "llvm-objcopy -O binary target/aarch64-unknown-none/debug/nova target/aarch64-unknown-none/debug/kernel8.img && qemu-system-aarch64 -M raspi3b -cpu cortex-a53 -serial stdio -sd sd.img -kernel ${workspaceFolder}/target/aarch64-unknown-none/debug/kernel8.img -S -s -m 1024",
|
"command": "llvm-objcopy -O binary target/aarch64-unknown-none/debug/nova target/aarch64-unknown-none/debug/kernel8.img && echo Starting QEMU&qemu-system-aarch64 -M raspi3b -cpu cortex-a53 -serial stdio -sd sd.img -kernel ${workspaceFolder}/target/aarch64-unknown-none/debug/kernel8.img -S -s -m 1024",
|
||||||
"isBackground": true,
|
"isBackground": true,
|
||||||
"dependsOn": ["Build"]
|
"dependsOn": ["Build"],
|
||||||
|
"problemMatcher": {
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(Starting QEMU)",
|
||||||
|
"line": 1,
|
||||||
|
},
|
||||||
|
"background": {
|
||||||
|
"activeOnStart": true,
|
||||||
|
"beginsPattern": "^(Starting QEMU)",
|
||||||
|
"endsPattern": "^(Starting QEMU)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Run QEMU wo window",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "llvm-objcopy -O binary target/aarch64-unknown-none/debug/nova target/aarch64-unknown-none/debug/kernel8.img && echo Starting QEMU&qemu-system-aarch64 -M raspi3b -cpu cortex-a53 -display none -serial stdio -sd sd.img -kernel ${workspaceFolder}/target/aarch64-unknown-none/debug/kernel8.img -S -s -m 1024",
|
||||||
|
"isBackground": true,
|
||||||
|
"dependsOn": ["Build"],
|
||||||
|
"problemMatcher": {
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(Starting QEMU)",
|
||||||
|
"line": 1,
|
||||||
|
},
|
||||||
|
"background": {
|
||||||
|
"activeOnStart": true,
|
||||||
|
"beginsPattern": "^(Starting QEMU)",
|
||||||
|
"endsPattern": "^(Starting QEMU)"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
7
Cargo.lock
generated
7
Cargo.lock
generated
@@ -47,12 +47,19 @@ dependencies = [
|
|||||||
"heap",
|
"heap",
|
||||||
"libm",
|
"libm",
|
||||||
"nova_error",
|
"nova_error",
|
||||||
|
"paste",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nova_error"
|
name = "nova_error"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "paste"
|
||||||
|
version = "1.0.15"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppv-lite86"
|
name = "ppv-lite86"
|
||||||
version = "0.2.21"
|
version = "0.2.21"
|
||||||
|
|||||||
10
Cargo.toml
10
Cargo.toml
@@ -14,11 +14,13 @@ panic = "abort"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libm = "0.2.15"
|
libm = "0.2.15"
|
||||||
heap = {path = "heap"}
|
heap = {path = "workspace/heap"}
|
||||||
nova_error = {path = "nova_error"}
|
nova_error = {path = "workspace/nova_error"}
|
||||||
|
paste = "1.0.15"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|
||||||
members = [ "nova_error",
|
members = [
|
||||||
"heap"
|
"workspace/nova_error",
|
||||||
|
"workspace/heap",
|
||||||
]
|
]
|
||||||
|
|||||||
23
link.ld
23
link.ld
@@ -10,7 +10,7 @@ SECTIONS {
|
|||||||
*(.rodata .rodata.*)
|
*(.rodata .rodata.*)
|
||||||
}
|
}
|
||||||
|
|
||||||
.data : {
|
.data ALIGN(2M) : {
|
||||||
_data = .;
|
_data = .;
|
||||||
*(.data .data.*)
|
*(.data .data.*)
|
||||||
}
|
}
|
||||||
@@ -27,28 +27,39 @@ SECTIONS {
|
|||||||
KEEP(*(.vector_table))
|
KEEP(*(.vector_table))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.translation_table_l1 ALIGN(4096) : {
|
||||||
|
__translation_table_l1_start = .;
|
||||||
|
. += 4096;
|
||||||
|
__translation_table_l1_end = .;
|
||||||
|
}
|
||||||
|
|
||||||
|
.translation_table_l2 ALIGN(4096) : {
|
||||||
|
__translation_table_l2_start = .;
|
||||||
|
. += 4096;
|
||||||
|
__translation_table_l2_end = .;
|
||||||
|
}
|
||||||
|
|
||||||
.heap : ALIGN(16)
|
.heap : ALIGN(16)
|
||||||
{
|
{
|
||||||
__heap_start = .;
|
__heap_start = .;
|
||||||
. += 0x10000; #10kB
|
. += 100K; #100kB
|
||||||
__heap_end = .;
|
__heap_end = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stack : ALIGN(16)
|
.stack : ALIGN(16)
|
||||||
{
|
{
|
||||||
__stack_start = .;
|
__stack_start = .;
|
||||||
. += 0x10000; #10kB stack
|
. += 10K; #10kB stack
|
||||||
__stack_end = .;
|
__stack_end = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stack_el0 : ALIGN(16)
|
.stack_el0 : ALIGN(2M)
|
||||||
{
|
{
|
||||||
__stack_start_el0 = .;
|
__stack_start_el0 = .;
|
||||||
. += 0x10000; #10kB stack
|
. += 10K; #10kB stack
|
||||||
__stack_end_el0 = .;
|
__stack_end_el0 = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
_end = .;
|
_end = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
67
src/aarch64/mmu.rs
Normal file
67
src/aarch64/mmu.rs
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
use core::ptr::write_volatile;
|
||||||
|
|
||||||
|
use crate::{println, PERIPHERAL_BASE};
|
||||||
|
|
||||||
|
unsafe extern "C" {
|
||||||
|
static mut __translation_table_l1_start: u64;
|
||||||
|
static mut __translation_table_l2_start: u64;
|
||||||
|
static __stack_start_el0: u64;
|
||||||
|
static _data: u64;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn init_translation_table() {
|
||||||
|
unsafe {
|
||||||
|
write_volatile(
|
||||||
|
&raw mut __translation_table_l1_start,
|
||||||
|
table_descriptor_entry(&raw mut __translation_table_l2_start as u64),
|
||||||
|
);
|
||||||
|
println!("{}", &raw mut __translation_table_l2_start as u64);
|
||||||
|
|
||||||
|
for i in 0..512 {
|
||||||
|
let addr = 0x0 + (i as u64 * 2 * 1024 * 1024);
|
||||||
|
|
||||||
|
let descriptor = if addr < &_data as *const _ as u64 {
|
||||||
|
block_descriptor_entry(addr, NORMAL_MEM, USER_AP | DISALLOW_KERNEL_AP)
|
||||||
|
} else if addr < PERIPHERAL_BASE as u64 {
|
||||||
|
block_descriptor_entry(addr, NORMAL_MEM, KERNEL_AP)
|
||||||
|
} else {
|
||||||
|
block_descriptor_entry(addr, DEVICE_MEM, USER_AP)
|
||||||
|
};
|
||||||
|
|
||||||
|
write_volatile(
|
||||||
|
(&raw mut __translation_table_l2_start).byte_add(8 * i),
|
||||||
|
descriptor,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const BLOCK: u64 = 0b01;
|
||||||
|
const TABLE: u64 = 0b11;
|
||||||
|
|
||||||
|
const USER_AP: u64 = 1 << 6;
|
||||||
|
const KERNEL_AP: u64 = 0 << 7;
|
||||||
|
const DISALLOW_KERNEL_AP: u64 = 1 << 7;
|
||||||
|
const ACCESS_FLAG: u64 = 1 << 10;
|
||||||
|
const INNER_SHAREABILITY: u64 = 0b11 << 8;
|
||||||
|
|
||||||
|
const NORMAL_MEM: u64 = 0 << 2;
|
||||||
|
const DEVICE_MEM: u64 = 1 << 2;
|
||||||
|
|
||||||
|
pub fn block_descriptor_entry(addr: u64, mair_index: u64, additional_flags: u64) -> u64 {
|
||||||
|
let pxn = 0 << 53; // allow EL1 execution
|
||||||
|
let uxn = 0 << 54; // allow EL0 execution
|
||||||
|
|
||||||
|
(addr & 0x0000_FFFF_FFE0_0000)
|
||||||
|
| BLOCK
|
||||||
|
| mair_index
|
||||||
|
| ACCESS_FLAG
|
||||||
|
| pxn
|
||||||
|
| uxn
|
||||||
|
| INNER_SHAREABILITY
|
||||||
|
| additional_flags
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn table_descriptor_entry(addr: u64) -> u64 {
|
||||||
|
0 | (addr & 0x0000_FFFF_FFFF_F000) | TABLE
|
||||||
|
}
|
||||||
2
src/aarch64/mod.rs
Normal file
2
src/aarch64/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
pub mod mmu;
|
||||||
|
pub mod registers;
|
||||||
59
src/aarch64/registers.rs
Normal file
59
src/aarch64/registers.rs
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
use core::arch::asm;
|
||||||
|
|
||||||
|
pub mod daif {
|
||||||
|
use core::arch::asm;
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn mask_all() {
|
||||||
|
unsafe { asm!("msr DAIFSet, #0xf", options(nomem, nostack)) }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn unmask_all() {
|
||||||
|
unsafe { asm!("msr DAIFClr, #0xf", options(nomem, nostack)) }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn mask_irq() {
|
||||||
|
unsafe { asm!("msr DAIFSet, #0x2", options(nomem, nostack)) }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
|
pub fn unmask_irq() {
|
||||||
|
unsafe { asm!("msr DAIFClr, #0x2", options(nomem, nostack)) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! psr {
|
||||||
|
($name:ident, $t:tt) => {
|
||||||
|
paste::item! {
|
||||||
|
pub fn [<read_ $name:lower>]() -> $t {
|
||||||
|
let buf: $t;
|
||||||
|
unsafe {
|
||||||
|
asm!(
|
||||||
|
concat!("mrs {0:x}, ", stringify!($name)),
|
||||||
|
out(reg) buf
|
||||||
|
);
|
||||||
|
}
|
||||||
|
buf
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
psr!(TCR_EL1, u64);
|
||||||
|
|
||||||
|
psr!(ID_AA64MMFR0_EL1, u64);
|
||||||
|
|
||||||
|
psr!(ESR_EL1, u32);
|
||||||
|
|
||||||
|
psr!(SPSR_EL1, u32);
|
||||||
|
|
||||||
|
psr!(ELR_EL1, u32);
|
||||||
|
|
||||||
|
psr!(SCTLR_EL1, u32);
|
||||||
|
|
||||||
|
pub fn read_exception_source_el() -> u32 {
|
||||||
|
read_spsr_el1() & 0b1111
|
||||||
|
}
|
||||||
@@ -1,16 +1,37 @@
|
|||||||
static SCTLR_EL1_MMU_DISABLED: u64 = 0; //M
|
const SCTLR_EL1_MMU_ENABLED: u64 = 1; //M
|
||||||
static SCTLR_EL1_DATA_CACHE_DISABLED: u64 = 0 << 2; //C
|
const SCTLR_EL1_DATA_CACHE_DISABLED: u64 = 0 << 2; //C
|
||||||
static SCTLR_EL1_INSTRUCTION_CACHE_DISABLED: u64 = 0 << 12; //I
|
const SCTLR_EL1_INSTRUCTION_CACHE_DISABLED: u64 = 0 << 12; //I
|
||||||
static SCTLR_EL1_LITTLE_ENDIAN_EL0: u64 = 0 << 24; //E0E
|
const SCTLR_EL1_LITTLE_ENDIAN_EL0: u64 = 0 << 24; //E0E
|
||||||
static SCTLR_EL1_LITTLE_ENDIAN_EL1: u64 = 0 << 25; //EE
|
const SCTLR_EL1_LITTLE_ENDIAN_EL1: u64 = 0 << 25; //EE
|
||||||
|
const SCTLR_EL1_SPAN: u64 = 1 << 23; //SPAN
|
||||||
|
|
||||||
#[allow(clippy::identity_op)]
|
#[allow(clippy::identity_op)]
|
||||||
static SCTLR_EL1_RES: u64 = (0 << 6) | (1 << 11) | (0 << 17) | (1 << 20) | (1 << 22); //Res0 & Res1
|
const SCTLR_EL1_RES: u64 = (0 << 6) | (1 << 11) | (0 << 17) | (1 << 20) | (1 << 22); //Res0 & Res1
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub static SCTLR_EL1_CONF: u64 = SCTLR_EL1_MMU_DISABLED
|
pub static SCTLR_EL1_CONF: u64 = SCTLR_EL1_MMU_ENABLED
|
||||||
| SCTLR_EL1_DATA_CACHE_DISABLED
|
| SCTLR_EL1_DATA_CACHE_DISABLED
|
||||||
| SCTLR_EL1_INSTRUCTION_CACHE_DISABLED
|
| SCTLR_EL1_INSTRUCTION_CACHE_DISABLED
|
||||||
| SCTLR_EL1_LITTLE_ENDIAN_EL0
|
| SCTLR_EL1_LITTLE_ENDIAN_EL0
|
||||||
| SCTLR_EL1_LITTLE_ENDIAN_EL1
|
| SCTLR_EL1_LITTLE_ENDIAN_EL1
|
||||||
| SCTLR_EL1_RES;
|
| SCTLR_EL1_RES
|
||||||
|
| SCTLR_EL1_SPAN;
|
||||||
|
|
||||||
|
// TODO: Document magic numbers
|
||||||
|
|
||||||
|
const TG0: u64 = 0b00 << 14;
|
||||||
|
const TG1: u64 = 0b10 << 30;
|
||||||
|
|
||||||
|
const T0SZ: u64 = 27;
|
||||||
|
const T1SZ: u64 = 27 << 16;
|
||||||
|
|
||||||
|
const SH0: u64 = 0b11 << 12;
|
||||||
|
const SH1: u64 = 0b11 << 28;
|
||||||
|
|
||||||
|
const IPS: u64 = 0b000 << 32;
|
||||||
|
const EPD1: u64 = 0b1 << 23;
|
||||||
|
|
||||||
|
const AS: u64 = 0b1 << 36;
|
||||||
|
const TBI0: u64 = 0b1 << 38;
|
||||||
|
#[no_mangle]
|
||||||
|
pub static TCR_EL1_CONF: u64 = IPS | TG0 | TG1 | T0SZ | T1SZ | SH0 | SH1 | EPD1 | AS | TBI0;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ mod bitmaps;
|
|||||||
use bitmaps::BASIC_LEGACY;
|
use bitmaps::BASIC_LEGACY;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
mailbox::{read_mailbox, write_mailbox},
|
pi3::mailbox::{read_mailbox, write_mailbox},
|
||||||
println,
|
println,
|
||||||
};
|
};
|
||||||
#[repr(align(16))]
|
#[repr(align(16))]
|
||||||
|
|||||||
@@ -3,8 +3,11 @@ use core::arch::asm;
|
|||||||
use alloc::vec::Vec;
|
use alloc::vec::Vec;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
|
aarch64::registers::{
|
||||||
|
daif::{mask_all, unmask_irq},
|
||||||
|
read_elr_el1, read_esr_el1, read_exception_source_el,
|
||||||
|
},
|
||||||
get_current_el,
|
get_current_el,
|
||||||
interrupt_handlers::daif::unmask_irq,
|
|
||||||
peripherals::{
|
peripherals::{
|
||||||
gpio::{read_gpio_event_detect_status, reset_gpio_event_detect_status},
|
gpio::{read_gpio_event_detect_status, reset_gpio_event_detect_status},
|
||||||
uart::clear_uart_interrupt_state,
|
uart::clear_uart_interrupt_state,
|
||||||
@@ -68,15 +71,15 @@ impl From<u32> for EsrElX {
|
|||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
unsafe extern "C" fn rust_irq_handler() {
|
unsafe extern "C" fn rust_irq_handler() {
|
||||||
daif::mask_all();
|
mask_all();
|
||||||
let pending_irqs = get_irq_pending_sources();
|
let pending_irqs = get_irq_pending_sources();
|
||||||
|
|
||||||
if pending_irqs & GPIO_PENDING_BIT_OFFSET != 0 {
|
if pending_irqs & GPIO_PENDING_BIT_OFFSET != 0 {
|
||||||
handle_gpio_interrupt();
|
handle_gpio_interrupt();
|
||||||
let source_el = get_exception_return_exception_level() >> 2;
|
let source_el = read_exception_source_el() >> 2;
|
||||||
println!("Source EL: {}", source_el);
|
println!("Source EL: {}", source_el);
|
||||||
println!("Current EL: {}", get_current_el());
|
println!("Current EL: {}", get_current_el());
|
||||||
println!("Return register address: {:#x}", get_elr_el1());
|
println!("Return register address: {:#x}", read_esr_el1());
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(handler_vec) = unsafe { INTERRUPT_HANDLERS.as_ref() } {
|
if let Some(handler_vec) = unsafe { INTERRUPT_HANDLERS.as_ref() } {
|
||||||
@@ -91,14 +94,14 @@ unsafe extern "C" fn rust_irq_handler() {
|
|||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
unsafe extern "C" fn rust_synchronous_interrupt_no_el_change() {
|
unsafe extern "C" fn rust_synchronous_interrupt_no_el_change() {
|
||||||
daif::mask_all();
|
mask_all();
|
||||||
|
|
||||||
let source_el = get_exception_return_exception_level() >> 2;
|
let source_el = read_exception_source_el() >> 2;
|
||||||
println!("--------Sync Exception in EL{}--------", source_el);
|
println!("--------Sync Exception in EL{}--------", source_el);
|
||||||
println!("No EL change");
|
println!("No EL change");
|
||||||
println!("Current EL: {}", get_current_el());
|
println!("Current EL: {}", get_current_el());
|
||||||
println!("{:?}", EsrElX::from(get_esr_el1()));
|
println!("{:?}", EsrElX::from(read_esr_el1()));
|
||||||
println!("Return register address: {:#x}", get_elr_el1());
|
println!("Return register address: {:#x}", read_esr_el1());
|
||||||
println!("-------------------------------------");
|
println!("-------------------------------------");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -109,21 +112,23 @@ unsafe extern "C" fn rust_synchronous_interrupt_no_el_change() {
|
|||||||
/// AArch64.
|
/// AArch64.
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
unsafe extern "C" fn rust_synchronous_interrupt_imm_lower_aarch64() {
|
unsafe extern "C" fn rust_synchronous_interrupt_imm_lower_aarch64() {
|
||||||
daif::mask_all();
|
mask_all();
|
||||||
|
|
||||||
let source_el = get_exception_return_exception_level() >> 2;
|
let source_el = read_exception_source_el() >> 2;
|
||||||
println!("--------Sync Exception in EL{}--------", source_el);
|
println!("--------Sync Exception in EL{}--------", source_el);
|
||||||
println!("Exception escalated to EL {}", get_current_el());
|
println!("Exception escalated to EL {}", get_current_el());
|
||||||
println!("Current EL: {}", get_current_el());
|
println!("Current EL: {}", get_current_el());
|
||||||
let esr = EsrElX::from(get_esr_el1());
|
let esr: EsrElX = EsrElX::from(read_esr_el1());
|
||||||
println!("{:?}", EsrElX::from(esr));
|
println!("{:?}", esr);
|
||||||
println!("Return register address: {:#x}", get_elr_el1());
|
println!("Return address: {:#x}", read_elr_el1());
|
||||||
|
|
||||||
match esr.ec {
|
match esr.ec {
|
||||||
0b100100 => {
|
0b100100 => {
|
||||||
println!("Cause: Data Abort from a lower Exception level");
|
println!("Cause: Data Abort from a lower Exception level");
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {
|
||||||
|
println!("Unknown Error Code: {:b}", esr.ec);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
println!("-------------------------------------");
|
println!("-------------------------------------");
|
||||||
|
|
||||||
@@ -133,7 +138,9 @@ unsafe extern "C" fn rust_synchronous_interrupt_imm_lower_aarch64() {
|
|||||||
fn clear_interrupt_for_source(source: IRQSource) {
|
fn clear_interrupt_for_source(source: IRQSource) {
|
||||||
match source {
|
match source {
|
||||||
IRQSource::UartInt => clear_uart_interrupt_state(),
|
IRQSource::UartInt => clear_uart_interrupt_state(),
|
||||||
_ => {}
|
_ => {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,42 +151,6 @@ fn set_return_to_kernel_main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_exception_return_exception_level() -> u32 {
|
|
||||||
let spsr: u32;
|
|
||||||
unsafe {
|
|
||||||
asm!("mrs {0:x}, SPSR_EL1", out(reg) spsr);
|
|
||||||
}
|
|
||||||
spsr & 0b1111
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Read the syndrome information that caused an exception
|
|
||||||
///
|
|
||||||
/// ESR = Exception Syndrome Register
|
|
||||||
fn get_esr_el1() -> u32 {
|
|
||||||
let esr: u32;
|
|
||||||
unsafe {
|
|
||||||
asm!(
|
|
||||||
"mrs {esr:x}, ESR_EL1",
|
|
||||||
esr = out(reg) esr
|
|
||||||
);
|
|
||||||
}
|
|
||||||
esr
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Read the return address
|
|
||||||
///
|
|
||||||
/// ELR = Exception Link Registers
|
|
||||||
fn get_elr_el1() -> u32 {
|
|
||||||
let elr: u32;
|
|
||||||
unsafe {
|
|
||||||
asm!(
|
|
||||||
"mrs {esr:x}, ELR_EL1",
|
|
||||||
esr = out(reg) elr
|
|
||||||
);
|
|
||||||
}
|
|
||||||
elr
|
|
||||||
}
|
|
||||||
|
|
||||||
fn handle_gpio_interrupt() {
|
fn handle_gpio_interrupt() {
|
||||||
println!("Interrupt");
|
println!("Interrupt");
|
||||||
for i in 0..=53u32 {
|
for i in 0..=53u32 {
|
||||||
@@ -245,30 +216,7 @@ pub fn get_irq_pending_sources() -> u64 {
|
|||||||
pending
|
pending
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod daif {
|
|
||||||
use core::arch::asm;
|
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn mask_all() {
|
|
||||||
unsafe { asm!("msr DAIFSet, #0xf", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn unmask_all() {
|
|
||||||
unsafe { asm!("msr DAIFClr, #0xf", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn mask_irq() {
|
|
||||||
unsafe { asm!("msr DAIFSet, #0x2", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn unmask_irq() {
|
|
||||||
unsafe { asm!("msr DAIFClr, #0x2", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn initialize_interrupt_handler() {
|
pub fn initialize_interrupt_handler() {
|
||||||
unsafe { INTERRUPT_HANDLERS = Some(Vec::new()) };
|
unsafe { INTERRUPT_HANDLERS = Some(Vec::new()) };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,227 +0,0 @@
|
|||||||
use core::arch::asm;
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
get_current_el,
|
|
||||||
irq_interrupt::daif::unmask_irq,
|
|
||||||
mmio_read, mmio_write,
|
|
||||||
peripherals::gpio::{read_gpio_event_detect_status, reset_gpio_event_detect_status},
|
|
||||||
};
|
|
||||||
|
|
||||||
const INTERRUPT_BASE: u32 = 0x3F00_B000;
|
|
||||||
const IRQ_PENDING_BASE: u32 = INTERRUPT_BASE + 0x204;
|
|
||||||
const ENABLE_IRQ_BASE: u32 = INTERRUPT_BASE + 0x210;
|
|
||||||
const DISABLE_IRQ_BASE: u32 = INTERRUPT_BASE + 0x21C;
|
|
||||||
|
|
||||||
#[repr(u32)]
|
|
||||||
pub enum IRQState {
|
|
||||||
AuxInt = 29,
|
|
||||||
I2cSpiSlvInt = 44,
|
|
||||||
Pwa0 = 45,
|
|
||||||
Pwa1 = 46,
|
|
||||||
Smi = 48,
|
|
||||||
GpioInt0 = 49,
|
|
||||||
GpioInt1 = 50,
|
|
||||||
GpioInt2 = 51,
|
|
||||||
GpioInt3 = 52,
|
|
||||||
I2cInt = 53,
|
|
||||||
SpiInt = 54,
|
|
||||||
PcmInt = 55,
|
|
||||||
UartInt = 57,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Representation of the ESR_ELx registers
|
|
||||||
///
|
|
||||||
/// Reference: D1.10.4
|
|
||||||
#[derive(Debug, Clone, Copy)]
|
|
||||||
#[allow(dead_code)]
|
|
||||||
struct EsrElX {
|
|
||||||
ec: u32,
|
|
||||||
il: u32,
|
|
||||||
iss: u32,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<u32> for EsrElX {
|
|
||||||
fn from(value: u32) -> Self {
|
|
||||||
Self {
|
|
||||||
ec: value >> 26,
|
|
||||||
il: (value >> 25) & 0b1,
|
|
||||||
iss: value & 0x1FFFFFF,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
unsafe extern "C" fn rust_irq_handler() {
|
|
||||||
daif::mask_all();
|
|
||||||
handle_gpio_interrupt();
|
|
||||||
let source_el = get_exception_return_exception_level() >> 2;
|
|
||||||
println!("Source EL: {}", source_el);
|
|
||||||
println!("Current EL: {}", get_current_el());
|
|
||||||
println!("Return register address: {:#x}", get_elr_el1());
|
|
||||||
}
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
unsafe extern "C" fn rust_synchronous_interrupt_no_el_change() {
|
|
||||||
daif::mask_all();
|
|
||||||
|
|
||||||
let source_el = get_exception_return_exception_level() >> 2;
|
|
||||||
println!("--------Sync Exception in EL{}--------", source_el);
|
|
||||||
println!("No EL change");
|
|
||||||
println!("Current EL: {}", get_current_el());
|
|
||||||
println!("{:?}", EsrElX::from(get_esr_el1()));
|
|
||||||
println!("Return register address: {:#x}", get_elr_el1());
|
|
||||||
println!("-------------------------------------");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Synchronous Exception Handler
|
|
||||||
///
|
|
||||||
/// Lower Exception level, where the implemented level
|
|
||||||
/// immediately lower than the target level is using
|
|
||||||
/// AArch64.
|
|
||||||
#[no_mangle]
|
|
||||||
unsafe extern "C" fn rust_synchronous_interrupt_imm_lower_aarch64() {
|
|
||||||
daif::mask_all();
|
|
||||||
|
|
||||||
let source_el = get_exception_return_exception_level() >> 2;
|
|
||||||
println!("--------Sync Exception in EL{}--------", source_el);
|
|
||||||
println!("Exception escalated to EL {}", get_current_el());
|
|
||||||
println!("Current EL: {}", get_current_el());
|
|
||||||
let esr = EsrElX::from(get_esr_el1());
|
|
||||||
println!("{:?}", EsrElX::from(esr));
|
|
||||||
println!("Return register address: {:#x}", get_elr_el1());
|
|
||||||
|
|
||||||
match esr.ec {
|
|
||||||
0b100100 => {
|
|
||||||
println!("Cause: Data Abort from a lower Exception level");
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
println!("-------------------------------------");
|
|
||||||
|
|
||||||
set_return_to_kernel_main();
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_return_to_kernel_main() {
|
|
||||||
unsafe {
|
|
||||||
asm!("ldr x0, =kernel_main", "msr ELR_EL1, x0");
|
|
||||||
asm!("mov x0, #(0b0101)", "msr SPSR_EL1, x0");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_exception_return_exception_level() -> u32 {
|
|
||||||
let spsr: u32;
|
|
||||||
unsafe {
|
|
||||||
asm!("mrs {0:x}, SPSR_EL1", out(reg) spsr);
|
|
||||||
}
|
|
||||||
spsr & 0b1111
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Read the syndrome information that caused an exception
|
|
||||||
///
|
|
||||||
/// ESR = Exception Syndrome Register
|
|
||||||
fn get_esr_el1() -> u32 {
|
|
||||||
let esr: u32;
|
|
||||||
unsafe {
|
|
||||||
asm!(
|
|
||||||
"mrs {esr:x}, ESR_EL1",
|
|
||||||
esr = out(reg) esr
|
|
||||||
);
|
|
||||||
}
|
|
||||||
esr
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Read the return address
|
|
||||||
///
|
|
||||||
/// ELR = Exception Link Registers
|
|
||||||
fn get_elr_el1() -> u32 {
|
|
||||||
let elr: u32;
|
|
||||||
unsafe {
|
|
||||||
asm!(
|
|
||||||
"mrs {esr:x}, ELR_EL1",
|
|
||||||
esr = out(reg) elr
|
|
||||||
);
|
|
||||||
}
|
|
||||||
elr
|
|
||||||
}
|
|
||||||
|
|
||||||
fn handle_gpio_interrupt() {
|
|
||||||
println!("Interrupt");
|
|
||||||
for i in 0..=53u32 {
|
|
||||||
let val = read_gpio_event_detect_status(i);
|
|
||||||
|
|
||||||
if val {
|
|
||||||
#[allow(clippy::single_match)]
|
|
||||||
match i {
|
|
||||||
26 => {
|
|
||||||
println!("Button Pressed");
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
// Reset GPIO Interrupt handler by writing a 1
|
|
||||||
reset_gpio_event_detect_status(i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
unmask_irq();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Enables IRQ Source
|
|
||||||
pub fn enable_irq_source(state: IRQState) {
|
|
||||||
let nr = state as u32;
|
|
||||||
let register = ENABLE_IRQ_BASE + 4 * (nr / 32);
|
|
||||||
let register_offset = nr % 32;
|
|
||||||
let current = mmio_read(register);
|
|
||||||
let mask = 0b1 << register_offset;
|
|
||||||
let new_val = current | mask;
|
|
||||||
mmio_write(register, new_val);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Disable IRQ Source
|
|
||||||
pub fn disable_irq_source(state: IRQState) {
|
|
||||||
let nr = state as u32;
|
|
||||||
let register = DISABLE_IRQ_BASE + 4 * (nr / 32);
|
|
||||||
let register_offset = nr % 32;
|
|
||||||
let current = mmio_read(register);
|
|
||||||
let mask = 0b1 << register_offset;
|
|
||||||
let new_val = current | mask;
|
|
||||||
mmio_write(register, new_val);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Read current IRQ Source status
|
|
||||||
pub fn read_irq_source_status(state: IRQState) -> u32 {
|
|
||||||
let nr = state as u32;
|
|
||||||
let register = ENABLE_IRQ_BASE + 4 * (nr / 32);
|
|
||||||
let register_offset = nr % 32;
|
|
||||||
(mmio_read(register) >> register_offset) & 0b1
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Status if a IRQ Source is enabled
|
|
||||||
pub fn read_irq_pending(state: IRQState) -> bool {
|
|
||||||
let nr = state as u32;
|
|
||||||
let register = IRQ_PENDING_BASE + 4 * (nr / 32);
|
|
||||||
let register_offset = nr % 32;
|
|
||||||
((mmio_read(register) >> register_offset) & 0b1) != 0
|
|
||||||
}
|
|
||||||
|
|
||||||
pub mod daif {
|
|
||||||
use core::arch::asm;
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn mask_all() {
|
|
||||||
unsafe { asm!("msr DAIFSet, #0xf", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn unmask_all() {
|
|
||||||
unsafe { asm!("msr DAIFClr, #0xf", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn mask_irq() {
|
|
||||||
unsafe { asm!("msr DAIFSet, #0x2", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
pub fn unmask_irq() {
|
|
||||||
unsafe { asm!("msr DAIFClr, #0x2", options(nomem, nostack)) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -41,14 +41,15 @@ fn panic(_panic: &PanicInfo) -> ! {
|
|||||||
|
|
||||||
pub mod peripherals;
|
pub mod peripherals;
|
||||||
|
|
||||||
|
pub mod aarch64;
|
||||||
pub mod configuration;
|
pub mod configuration;
|
||||||
pub mod framebuffer;
|
pub mod framebuffer;
|
||||||
pub mod interrupt_handlers;
|
pub mod interrupt_handlers;
|
||||||
pub mod logger;
|
pub mod logger;
|
||||||
pub mod mailbox;
|
|
||||||
pub mod power_management;
|
|
||||||
pub mod timer;
|
pub mod timer;
|
||||||
|
|
||||||
|
pub mod pi3;
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub unsafe fn read_address(address: u32) -> u32 {
|
pub unsafe fn read_address(address: u32) -> u32 {
|
||||||
unsafe { read_volatile(address as *const u32) }
|
unsafe { read_volatile(address as *const u32) }
|
||||||
|
|||||||
21
src/main.rs
21
src/main.rs
@@ -12,10 +12,14 @@ extern crate alloc;
|
|||||||
|
|
||||||
use alloc::boxed::Box;
|
use alloc::boxed::Box;
|
||||||
use nova::{
|
use nova::{
|
||||||
|
aarch64::{
|
||||||
|
mmu::init_translation_table,
|
||||||
|
registers::{daif, read_id_aa64mmfr0_el1},
|
||||||
|
},
|
||||||
framebuffer::{FrameBuffer, BLUE, GREEN, RED},
|
framebuffer::{FrameBuffer, BLUE, GREEN, RED},
|
||||||
get_current_el, init_heap,
|
get_current_el, init_heap,
|
||||||
interrupt_handlers::{daif, enable_irq_source, IRQSource},
|
interrupt_handlers::{enable_irq_source, IRQSource},
|
||||||
log, mailbox,
|
log,
|
||||||
peripherals::{
|
peripherals::{
|
||||||
gpio::{
|
gpio::{
|
||||||
blink_gpio, gpio_pull_up, set_falling_edge_detect, set_gpio_function, GPIOFunction,
|
blink_gpio, gpio_pull_up, set_falling_edge_detect, set_gpio_function, GPIOFunction,
|
||||||
@@ -23,6 +27,7 @@ use nova::{
|
|||||||
},
|
},
|
||||||
uart::uart_init,
|
uart::uart_init,
|
||||||
},
|
},
|
||||||
|
pi3::mailbox,
|
||||||
println,
|
println,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -31,6 +36,7 @@ global_asm!(include_str!("vector.S"));
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
fn el2_to_el1();
|
fn el2_to_el1();
|
||||||
fn el1_to_el0();
|
fn el1_to_el0();
|
||||||
|
fn configure_mmu_el1();
|
||||||
static mut __bss_start: u32;
|
static mut __bss_start: u32;
|
||||||
static mut __bss_end: u32;
|
static mut __bss_end: u32;
|
||||||
}
|
}
|
||||||
@@ -61,7 +67,14 @@ pub extern "C" fn main() -> ! {
|
|||||||
println!("Exception level: {}", get_current_el());
|
println!("Exception level: {}", get_current_el());
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
asm!("mrs x0, SCTLR_EL1",);
|
init_heap();
|
||||||
|
init_translation_table();
|
||||||
|
configure_mmu_el1();
|
||||||
|
};
|
||||||
|
|
||||||
|
println!("AA64 {:064b}", read_id_aa64mmfr0_el1());
|
||||||
|
|
||||||
|
unsafe {
|
||||||
el2_to_el1();
|
el2_to_el1();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,12 +93,10 @@ unsafe fn zero_bss() {
|
|||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub extern "C" fn kernel_main() -> ! {
|
pub extern "C" fn kernel_main() -> ! {
|
||||||
nova::initialize_kernel();
|
nova::initialize_kernel();
|
||||||
println!("Kernel Main");
|
|
||||||
println!("Exception Level: {}", get_current_el());
|
println!("Exception Level: {}", get_current_el());
|
||||||
daif::unmask_all();
|
daif::unmask_all();
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
init_heap();
|
|
||||||
el1_to_el0();
|
el1_to_el0();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ use core::{
|
|||||||
fmt::{self, Write},
|
fmt::{self, Write},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{println, read_address, write_address};
|
use crate::{read_address, write_address};
|
||||||
|
|
||||||
const BAUD: u32 = 115200;
|
const BAUD: u32 = 115200;
|
||||||
const UART_CLK: u32 = 48_000_000;
|
const UART_CLK: u32 = 48_000_000;
|
||||||
@@ -118,11 +118,13 @@ fn uart_fifo_enable(enable: bool) {
|
|||||||
unsafe { write_address(UART0_LCRH, lcrh) };
|
unsafe { write_address(UART0_LCRH, lcrh) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
fn uart_enable_rx_interrupt() {
|
fn uart_enable_rx_interrupt() {
|
||||||
unsafe { write_address(UART0_IMSC, UART0_IMSC_RXIM) };
|
unsafe { write_address(UART0_IMSC, UART0_IMSC_RXIM) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set UART word length and set FIFO status
|
/// Set UART word length and set FIFO status
|
||||||
|
#[inline(always)]
|
||||||
fn uart_set_lcrh(wlen: u32, enable_fifo: bool) {
|
fn uart_set_lcrh(wlen: u32, enable_fifo: bool) {
|
||||||
let mut value = (wlen & 0b11) << 5;
|
let mut value = (wlen & 0b11) << 5;
|
||||||
if enable_fifo {
|
if enable_fifo {
|
||||||
@@ -131,10 +133,12 @@ fn uart_set_lcrh(wlen: u32, enable_fifo: bool) {
|
|||||||
unsafe { write_address(UART0_LCRH, value) };
|
unsafe { write_address(UART0_LCRH, value) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
pub fn read_uart_data() -> char {
|
pub fn read_uart_data() -> char {
|
||||||
(unsafe { read_address(UART0_DR) } & 0xFF) as u8 as char
|
(unsafe { read_address(UART0_DR) } & 0xFF) as u8 as char
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline(always)]
|
||||||
pub fn clear_uart_interrupt_state() {
|
pub fn clear_uart_interrupt_state() {
|
||||||
unsafe {
|
unsafe {
|
||||||
write_address(UART0_ICR, 1 << 4);
|
write_address(UART0_ICR, 1 << 4);
|
||||||
|
|||||||
2
src/pi3/mod.rs
Normal file
2
src/pi3/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
pub mod mailbox;
|
||||||
|
pub mod power_management;
|
||||||
53
src/vector.S
53
src/vector.S
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
.global vector_table
|
.global v_table
|
||||||
.extern irq_handler
|
.extern irq_handler
|
||||||
|
|
||||||
.macro ventry label
|
.macro ventry label
|
||||||
@@ -21,12 +21,18 @@ vector_table:
|
|||||||
|
|
||||||
ventry synchronous_interrupt_imm_lower_aarch64
|
ventry synchronous_interrupt_imm_lower_aarch64
|
||||||
ventry irq_handler
|
ventry irq_handler
|
||||||
|
ventry .
|
||||||
|
ventry .
|
||||||
|
|
||||||
|
ventry .
|
||||||
|
ventry .
|
||||||
|
ventry .
|
||||||
|
ventry .
|
||||||
|
|
||||||
|
|
||||||
.align 4
|
.align 4
|
||||||
.global el2_to_el1
|
.global el2_to_el1
|
||||||
el2_to_el1:
|
el2_to_el1:
|
||||||
|
|
||||||
mov x0, #(1 << 31)
|
mov x0, #(1 << 31)
|
||||||
msr HCR_EL2, x0
|
msr HCR_EL2, x0
|
||||||
|
|
||||||
@@ -46,9 +52,13 @@ el2_to_el1:
|
|||||||
adr x0, vector_table
|
adr x0, vector_table
|
||||||
msr VBAR_EL1, x0
|
msr VBAR_EL1, x0
|
||||||
|
|
||||||
// Disable MMU
|
isb
|
||||||
ldr x0, =SCTLR_EL1_CONF
|
|
||||||
msr sctlr_el1, x0
|
adrp x0, SCTLR_EL1_CONF
|
||||||
|
ldr x1, [x0, :lo12:SCTLR_EL1_CONF]
|
||||||
|
msr SCTLR_EL1, x0
|
||||||
|
|
||||||
|
isb
|
||||||
|
|
||||||
// SIMD should not be trapped
|
// SIMD should not be trapped
|
||||||
mrs x0, CPACR_EL1
|
mrs x0, CPACR_EL1
|
||||||
@@ -56,9 +66,33 @@ el2_to_el1:
|
|||||||
orr x0,x0, x1
|
orr x0,x0, x1
|
||||||
msr CPACR_EL1,x0
|
msr CPACR_EL1,x0
|
||||||
|
|
||||||
|
isb
|
||||||
|
|
||||||
// Return to EL1
|
// Return to EL1
|
||||||
eret
|
eret
|
||||||
|
|
||||||
|
.align 4
|
||||||
|
.global configure_mmu_el1
|
||||||
|
configure_mmu_el1:
|
||||||
|
adrp x0, TCR_EL1_CONF
|
||||||
|
ldr x1, [x0, :lo12:TCR_EL1_CONF]
|
||||||
|
msr TCR_EL1, x0
|
||||||
|
isb
|
||||||
|
|
||||||
|
mov x0, #0x04FF
|
||||||
|
msr MAIR_EL1, x0
|
||||||
|
isb
|
||||||
|
|
||||||
|
ldr x0, =__translation_table_l1_start
|
||||||
|
msr TTBR0_EL1, x0
|
||||||
|
msr TTBR1_EL1, x0
|
||||||
|
|
||||||
|
tlbi vmalle1
|
||||||
|
dsb ish
|
||||||
|
isb
|
||||||
|
|
||||||
|
ret
|
||||||
|
|
||||||
.align 4
|
.align 4
|
||||||
.global el1_to_el0
|
.global el1_to_el0
|
||||||
el1_to_el0:
|
el1_to_el0:
|
||||||
@@ -75,6 +109,8 @@ el1_to_el0:
|
|||||||
ldr x0, =__stack_end_el0
|
ldr x0, =__stack_end_el0
|
||||||
msr SP_EL0, x0
|
msr SP_EL0, x0
|
||||||
|
|
||||||
|
isb
|
||||||
|
|
||||||
// Return to EL0
|
// Return to EL0
|
||||||
eret
|
eret
|
||||||
|
|
||||||
@@ -174,3 +210,10 @@ synchronous_interrupt_no_el_change:
|
|||||||
add sp, sp, #176
|
add sp, sp, #176
|
||||||
|
|
||||||
eret
|
eret
|
||||||
|
|
||||||
|
.align 4
|
||||||
|
.global pan
|
||||||
|
pan:
|
||||||
|
mov x0, #0
|
||||||
|
msr S3_0_C4_C2_3, x0
|
||||||
|
ret
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
set -e
|
||||||
|
|
||||||
cargo build --target aarch64-unknown-none --release
|
cargo build --target aarch64-unknown-none --release
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
set -e
|
||||||
|
|
||||||
cargo build --target aarch64-unknown-none
|
cargo build --target aarch64-unknown-none
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|||||||
Reference in New Issue
Block a user