m1n1/src/exception.c

199 lines
5.3 KiB
C
Raw Normal View History

/* SPDX-License-Identifier: MIT */
#include "exception.h"
#include "cpu_regs.h"
#include "uart.h"
#include "utils.h"
extern char _vectors_start[0];
volatile enum exc_guard_t exc_guard = GUARD_OFF;
volatile int exc_count = 0;
static char *ec_table[] = {
[0x00] = "unknown",
[0x01] = "wf*",
[0x03] = "c15 mcr/mrc",
[0x04] = "c15 mcrr/mrrc",
[0x05] = "c14 mcr/mrc",
[0x06] = "ldc/stc",
[0x07] = "FP off",
[0x08] = "VMRS access",
[0x09] = "PAC off",
[0x0a] = "ld/st64b",
[0x0c] = "c14 mrrc",
[0x0d] = "branch target",
[0x0e] = "illegal state",
[0x11] = "svc in a32",
[0x12] = "hvc in a32",
[0x13] = "smc in a32",
[0x15] = "svc in a64",
[0x16] = "hvc in a64",
[0x17] = "smc in a64",
[0x18] = "other mcr/mrc/sys",
[0x19] = "SVE off",
[0x1a] = "eret",
[0x1c] = "PAC failure",
[0x20] = "instruction abort (lower)",
[0x21] = "instruction abort (current)",
[0x22] = "pc misaligned",
[0x24] = "data abort (lower)",
[0x25] = "data abort (current)",
[0x26] = "sp misaligned",
[0x28] = "FP exception (a32)",
[0x2c] = "FP exception (a64)",
[0x2f] = "SError",
[0x30] = "BP (lower)",
[0x31] = "BP (current)",
[0x32] = "step (lower)",
[0x33] = "step (current)",
[0x34] = "watchpoint (lower)",
[0x35] = "watchpoint (current)",
[0x38] = "bkpt (a32)",
[0x3a] = "vector catch (a32)",
[0x3c] = "brk (a64)",
};
void exception_initialize(void)
{
msr(vbar_el2, _vectors_start);
}
void print_regs(u64 *regs)
{
u64 sp = ((u64)(regs)) + 256;
printf("Running in EL%d\n", mrs(CurrentEL) >> 2);
printf("MPIDR: 0x%x\n", mrs(MPIDR_EL1));
printf("Registers: (@%p)\n", regs);
printf(" x0-x3: %016lx %016lx %016lx %016lx\n", regs[0], regs[1], regs[2], regs[3]);
printf(" x4-x7: %016lx %016lx %016lx %016lx\n", regs[4], regs[5], regs[6], regs[7]);
printf(" x8-x11: %016lx %016lx %016lx %016lx\n", regs[8], regs[9], regs[10], regs[11]);
printf("x12-x15: %016lx %016lx %016lx %016lx\n", regs[12], regs[13], regs[14], regs[15]);
printf("x16-x19: %016lx %016lx %016lx %016lx\n", regs[16], regs[17], regs[18], regs[19]);
printf("x20-x23: %016lx %016lx %016lx %016lx\n", regs[20], regs[21], regs[22], regs[23]);
printf("x24-x27: %016lx %016lx %016lx %016lx\n", regs[24], regs[25], regs[26], regs[27]);
printf("x28-x30: %016lx %016lx %016lx\n", regs[28], regs[29], regs[30]);
u64 elr = mrs(elr_el2);
printf("PC: 0x%lx (rel: 0x%lx)\n", elr, elr - (u64)_base);
printf("SPSEL: 0x%lx\n", mrs(SPSEL));
printf("SP: 0x%lx\n", sp);
printf("SPSR_EL2: 0x%x\n", mrs(SPSR_EL2));
const char *ec_desc = ec_table[(mrs(ESR_EL2) >> 26) & 0x3f];
printf("ESR_EL2: 0x%x (%s)\n", mrs(ESR_EL2), ec_desc ? ec_desc : "unknown");
u64 l2c_err_sts = mrs(SYS_L2C_ERR_STS);
printf("L2C_ERR_STS: 0x%lx\n", l2c_err_sts);
printf("L2C_ERR_ADR: 0x%lx\n", mrs(SYS_L2C_ERR_ADR));
printf("L2C_ERR_INF: 0x%lx\n", mrs(SYS_L2C_ERR_INF));
msr(SYS_L2C_ERR_STS, l2c_err_sts); // Clear the flag bits
if (is_ecore()) {
printf("SYS_E_LSU_ERR_STS: 0x%lx\n", mrs(SYS_E_LSU_ERR_STS));
printf("SYS_E_FED_ERR_STS: 0x%lx\n", mrs(SYS_E_FED_ERR_STS));
printf("SYS_E_MMU_ERR_STS: 0x%lx\n", mrs(SYS_E_MMU_ERR_STS));
} else {
printf("SYS_LSU_ERR_STS: 0x%lx\n", mrs(SYS_LSU_ERR_STS));
printf("SYS_FED_ERR_STS: 0x%lx\n", mrs(SYS_FED_ERR_STS));
printf("SYS_MMU_ERR_STS: 0x%lx\n", mrs(SYS_MMU_ERR_STS));
}
}
void exc_sync(u64 *regs)
{
u64 elr;
u32 insn;
uart_puts("Exception: SYNC");
sysop("isb");
sysop("dsb sy");
print_regs(regs);
switch (exc_guard) {
case GUARD_SKIP:
elr = mrs(ELR_EL2) + 4;
break;
case GUARD_MARK:
// Assuming this is a load or store, dest reg is in low bits
insn = read32(mrs(ELR_EL2));
regs[insn & 0x1f] = 0xacce5515abad1dea;
elr = mrs(ELR_EL2) + 4;
break;
case GUARD_RETURN:
regs[0] = 0xacce5515abad1dea;
elr = regs[30];
exc_guard = GUARD_OFF;
break;
case GUARD_OFF:
default:
reboot();
}
exc_count++;
printf("Recovering from exception (ELR=0x%lx)\n", elr);
msr(ELR_EL2, elr);
sysop("isb");
sysop("dsb sy");
}
void exc_irq(u64 *regs)
{
#ifdef DEBUG_UART_IRQS
u32 ucon, utrstat, uerstat, ufstat;
ucon = read32(0x235200004);
utrstat = read32(0x235200010);
uerstat = read32(0x235200014);
ufstat = read32(0x235200018);
#endif
uart_puts("Exception: IRQ");
u32 reason = read32(0x23b102004);
printf(" type: %d num: %d\n", reason >> 16, reason & 0xffff);
#ifdef DEBUG_UART_IRQS
printf(" UCON: 0x%x\n", ucon);
printf(" UTRSTAT: 0x%x\n", utrstat);
printf(" UERSTAT: 0x%x\n", uerstat);
printf(" UFSTAT: 0x%x\n", ufstat);
#endif
UNUSED(regs);
// print_regs(regs);
}
void exc_fiq(u64 *regs)
{
uart_puts("Exception: FIQ");
u32 timer_ctl = mrs(CNTP_CTL_EL0);
if (timer_ctl == 0x5) {
uart_puts(" timer IRQ, masking");
msr(CNTP_CTL_EL0, 7L);
}
UNUSED(regs);
// print_regs(regs);
}
void exc_serr(u64 *regs)
{
printf("Exception: SError\n");
sysop("isb");
sysop("dsb sy");
print_regs(regs);
reboot();
}