MCPcopy Create free account
hub / github.com/coreboot/coreboot / exception_data_abort

Function exception_data_abort

src/arch/arm/armv7/exception.c:82–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82void exception_data_abort(uint32_t *regs)
83{
84 printk(BIOS_ERR, "exception _data_abort\n");
85 regs[15] -= 8;
86 print_regs(regs);
87 printk(BIOS_ERR, "DFAR = %#.8x\n", read_dfar());
88 printk(BIOS_ERR, "DFSR = %#.8x\n", read_dfsr());
89 printk(BIOS_ERR, "ADFSR = %#.8x\n", read_adfsr());
90 dump_stack(regs[13], 512);
91 die("exception");
92}
93
94void exception_not_used(uint32_t *regs)
95{

Callers

nothing calls this directly

Calls 7

print_regsFunction · 0.70
dump_stackFunction · 0.70
printkFunction · 0.50
read_dfarFunction · 0.50
read_dfsrFunction · 0.50
read_adfsrFunction · 0.50
dieFunction · 0.50

Tested by

no test coverage detected