mirror of
https://xff.cz/git/u-boot/
synced 2025-09-19 17:42:12 +02:00
riscv: complete the list of exception codes
Only the first four exception codes are defined. Add the missing exception codes from the definition in RISC-V Privileged Architecture Version 1.10. Signed-off-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Rick Chen <rick@andestech.com>
This commit is contained in:
@@ -67,7 +67,18 @@ static void _exit_trap(ulong code, ulong epc, struct pt_regs *regs)
|
|||||||
"Instruction access fault",
|
"Instruction access fault",
|
||||||
"Illegal instruction",
|
"Illegal instruction",
|
||||||
"Breakpoint",
|
"Breakpoint",
|
||||||
"Load address misaligned"
|
"Load address misaligned",
|
||||||
|
"Load access fault",
|
||||||
|
"Store/AMO address misaligned",
|
||||||
|
"Store/AMO access fault",
|
||||||
|
"Environment call from U-mode",
|
||||||
|
"Environment call from S-mode",
|
||||||
|
"Reserved",
|
||||||
|
"Environment call from M-mode",
|
||||||
|
"Instruction page fault",
|
||||||
|
"Load page fault",
|
||||||
|
"Reserved",
|
||||||
|
"Store/AMO page fault",
|
||||||
};
|
};
|
||||||
|
|
||||||
printf("exception code: %ld , %s , epc %lx , ra %lx\n",
|
printf("exception code: %ld , %s , epc %lx , ra %lx\n",
|
||||||
|
Reference in New Issue
Block a user