2020-06-25 04:23:05 +08:00
|
|
|
use libregister::RegisterR;
|
2020-06-25 07:27:23 +08:00
|
|
|
use libcortex_a9::regs::{DFSR, MPIDR};
|
2020-01-24 05:45:05 +08:00
|
|
|
use libboard_zynq::{println, slcr, stdio};
|
2019-11-11 09:37:06 +08:00
|
|
|
|
2020-07-06 21:02:46 +08:00
|
|
|
#[link_section = ".text.boot"]
|
2019-11-11 09:37:06 +08:00
|
|
|
#[no_mangle]
|
2020-07-06 21:02:46 +08:00
|
|
|
#[naked]
|
|
|
|
pub unsafe extern "C" fn UndefinedInstruction() {
|
2020-01-24 05:34:37 +08:00
|
|
|
stdio::drop_uart();
|
2020-07-06 21:02:46 +08:00
|
|
|
println!("UndefinedInstruction");
|
|
|
|
loop {}
|
|
|
|
}
|
2020-01-24 05:34:37 +08:00
|
|
|
|
2020-07-06 21:02:46 +08:00
|
|
|
#[link_section = ".text.boot"]
|
|
|
|
#[no_mangle]
|
|
|
|
#[naked]
|
|
|
|
pub unsafe extern "C" fn SoftwareInterrupt() {
|
|
|
|
stdio::drop_uart();
|
|
|
|
println!("SoftwareInterrupt");
|
|
|
|
loop {}
|
|
|
|
}
|
2020-01-24 05:45:05 +08:00
|
|
|
|
2020-07-06 21:02:46 +08:00
|
|
|
#[link_section = ".text.boot"]
|
|
|
|
#[no_mangle]
|
|
|
|
#[naked]
|
|
|
|
pub unsafe extern "C" fn PrefetchAbort() {
|
|
|
|
stdio::drop_uart();
|
|
|
|
println!("PrefetchAbort");
|
2019-11-11 09:37:06 +08:00
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
2020-07-06 21:02:46 +08:00
|
|
|
#[link_section = ".text.boot"]
|
2019-11-11 09:37:06 +08:00
|
|
|
#[no_mangle]
|
2020-07-06 21:02:46 +08:00
|
|
|
#[naked]
|
2019-11-11 09:37:06 +08:00
|
|
|
pub unsafe extern "C" fn DataAbort() {
|
2020-01-24 05:34:37 +08:00
|
|
|
stdio::drop_uart();
|
|
|
|
|
2020-06-25 07:27:23 +08:00
|
|
|
const CORE_MASK: u32 = 0x3;
|
2020-06-25 04:23:05 +08:00
|
|
|
println!("DataAbort on core {}", MPIDR.read() & CORE_MASK);
|
|
|
|
println!("DFSR: {:03X}", DFSR.read());
|
2020-01-24 05:45:05 +08:00
|
|
|
|
2019-11-11 09:37:06 +08:00
|
|
|
loop {}
|
|
|
|
}
|
2020-07-06 21:02:46 +08:00
|
|
|
|
|
|
|
#[link_section = ".text.boot"]
|
|
|
|
#[no_mangle]
|
|
|
|
#[naked]
|
|
|
|
pub unsafe extern "C" fn ReservedException() {
|
|
|
|
stdio::drop_uart();
|
|
|
|
println!("ReservedException");
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[link_section = ".text.boot"]
|
|
|
|
#[no_mangle]
|
|
|
|
#[naked]
|
|
|
|
pub unsafe extern "C" fn IRQ() {
|
|
|
|
stdio::drop_uart();
|
|
|
|
println!("IRQ");
|
|
|
|
loop {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[link_section = ".text.boot"]
|
|
|
|
#[no_mangle]
|
|
|
|
#[naked]
|
|
|
|
pub unsafe extern "C" fn FIQ() {
|
|
|
|
stdio::drop_uart();
|
|
|
|
println!("FIQ");
|
|
|
|
loop {}
|
|
|
|
}
|