Low level access to Cortex-A processors
Example from https://github.com/andre-richter/rust-raspi3-tutorial
```rust extern crate cortex_a;
pub unsafe extern "C" fn bootcores() -> ! { use cortex_a::{asm, regs::*};
const CORE_MASK: u64 = 0x3;
const STACK_START: u64 = 0x80_000;
match MPIDR_EL1.get() & CORE_MASK {
0 => {
SP.set(STACK_START);
reset()
}
_ => loop {
// if not core0, infinitely wait for events
asm::wfe();
},
}
} ```
Descriptive comments in the source files are taken from the ARM Architecture Reference Manual ARMv8, for ARMv8-A architecture profile.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.