forked from M-Labs/zynq-rs
62 lines
1.5 KiB
Rust
62 lines
1.5 KiB
Rust
|
use r0::zero_bss;
|
||
|
use crate::regs::{RegisterR, RegisterW};
|
||
|
use crate::cortex_a9::{asm, regs::*, mmu};
|
||
|
|
||
|
extern "C" {
|
||
|
static mut __bss_start: u32;
|
||
|
static mut __bss_end: u32;
|
||
|
static mut __stack_start: u32;
|
||
|
}
|
||
|
|
||
|
#[link_section = ".text.boot"]
|
||
|
#[no_mangle]
|
||
|
#[naked]
|
||
|
pub unsafe extern "C" fn _boot_cores() -> ! {
|
||
|
const CORE_MASK: u32 = 0x3;
|
||
|
|
||
|
match MPIDR.read() & CORE_MASK {
|
||
|
0 => {
|
||
|
SP.write(&mut __stack_start as *mut _ as u32);
|
||
|
boot_core0();
|
||
|
}
|
||
|
_ => loop {
|
||
|
// if not core0, infinitely wait for events
|
||
|
asm::wfe();
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[naked]
|
||
|
#[inline(never)]
|
||
|
unsafe fn boot_core0() -> ! {
|
||
|
l1_cache_init();
|
||
|
zero_bss(&mut __bss_start, &mut __bss_end);
|
||
|
|
||
|
let mmu_table = mmu::L1Table::get()
|
||
|
.setup_flat_layout();
|
||
|
mmu::with_mmu(mmu_table, || {
|
||
|
crate::main();
|
||
|
panic!("return from main");
|
||
|
});
|
||
|
}
|
||
|
|
||
|
fn l1_cache_init() {
|
||
|
use crate::cortex_a9::cache::*;
|
||
|
|
||
|
// Invalidate TLBs
|
||
|
tlbiall();
|
||
|
// Invalidate I-Cache
|
||
|
iciallu();
|
||
|
// Invalidate Branch Predictor Array
|
||
|
bpiall();
|
||
|
// Invalidate D-Cache
|
||
|
//
|
||
|
// NOTE: It is both faster and correct to only invalidate instead
|
||
|
// of also flush the cache (as was done before with
|
||
|
// `dccisw()`) and it is correct to perform this operation
|
||
|
// for all of the L1 data cache rather than a (previously
|
||
|
// unspecified) combination of one cache set and one cache
|
||
|
// way.
|
||
|
dciall();
|
||
|
}
|