forked from M-Labs/zynq-rs
fix SP init
This commit is contained in:
parent
b754581452
commit
c88374eab1
15
src/main.rs
15
src/main.rs
|
@ -29,15 +29,12 @@ pub unsafe extern "C" fn _boot_cores() -> ! {
|
||||||
use cortex_a9::{asm, regs::*};
|
use cortex_a9::{asm, regs::*};
|
||||||
|
|
||||||
const CORE_MASK: u32 = 0x3;
|
const CORE_MASK: u32 = 0x3;
|
||||||
// End of OCM RAM
|
let stack_start = __end + 4096;
|
||||||
const STACK_START: u32 = 256 << 10;
|
|
||||||
|
|
||||||
match MPIDR.get() & CORE_MASK {
|
match MPIDR.get() & CORE_MASK {
|
||||||
0 => {
|
0 => {
|
||||||
SP.set(STACK_START);
|
SP.set(stack_start);
|
||||||
zero_bss(&mut __bss_start, &mut __bss_end);
|
boot_core0();
|
||||||
main();
|
|
||||||
panic!("return from main");
|
|
||||||
}
|
}
|
||||||
_ => loop {
|
_ => loop {
|
||||||
// if not core0, infinitely wait for events
|
// if not core0, infinitely wait for events
|
||||||
|
@ -46,6 +43,12 @@ pub unsafe extern "C" fn _boot_cores() -> ! {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsafe fn boot_core0() -> ! {
|
||||||
|
zero_bss(&mut __bss_start, &mut __bss_end);
|
||||||
|
main();
|
||||||
|
panic!("return from main");
|
||||||
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let mut uart = Uart::uart0();
|
let mut uart = Uart::uart0();
|
||||||
writeln!(uart, "Hello World\r").unwrap();
|
writeln!(uart, "Hello World\r").unwrap();
|
||||||
|
|
Loading…
Reference in New Issue