mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
57bbf44de6
If an exception occurs in a loaded image and the relocation offset is unknown, it is helpful to know the instructions pointed to by the program counter. This patch adds the missing output. A possible output is: Code: 910c4021 aa1303e0 f9400662 d63f0040 (e7f7defb) The parentheses indicate the instruction causing the exception. The output can be disassembled using scripts/decodecode: echo 'Code: 90000360 9100b800 94002782 17ffff8f (e7f7defb)' | \ ARCH=arm64 scripts/decodecode Code: 90000360 9100b800 94002782 17ffff8f (e7f7defb) All code ======== 0: 90000360 adrp x0, 0x6c000 4: 9100b800 add x0, x0, #0x2e 8: 94002782 bl 0x9e10 c: 17ffff8f b 0xfffffffffffffe48 10:* e7f7defb .inst 0xe7f7defb ; undefined <-- trapping instruction Code starting with the faulting instruction =========================================== 0: e7f7defb .inst 0xe7f7defb ; undefined We already have implemented the same for armv7. For testing command 'exception undefined' can be used. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
158 lines
3.4 KiB
C
158 lines
3.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2013
|
|
* David Feng <fenghua@phytium.com.cn>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <linux/compiler.h>
|
|
#include <efi_loader.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
int interrupt_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void enable_interrupts(void)
|
|
{
|
|
return;
|
|
}
|
|
|
|
int disable_interrupts(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static void show_efi_loaded_images(struct pt_regs *regs)
|
|
{
|
|
efi_print_image_infos((void *)regs->elr);
|
|
}
|
|
|
|
static void dump_instr(struct pt_regs *regs)
|
|
{
|
|
u32 *addr = (u32 *)(regs->elr & ~3UL);
|
|
int i;
|
|
|
|
printf("Code: ");
|
|
for (i = -4; i < 1; i++)
|
|
printf(i == 0 ? "(%08x) " : "%08x ", addr[i]);
|
|
printf("\n");
|
|
}
|
|
|
|
void show_regs(struct pt_regs *regs)
|
|
{
|
|
int i;
|
|
|
|
if (gd->flags & GD_FLG_RELOC)
|
|
printf("elr: %016lx lr : %016lx (reloc)\n",
|
|
regs->elr - gd->reloc_off,
|
|
regs->regs[30] - gd->reloc_off);
|
|
printf("elr: %016lx lr : %016lx\n", regs->elr, regs->regs[30]);
|
|
|
|
for (i = 0; i < 29; i += 2)
|
|
printf("x%-2d: %016lx x%-2d: %016lx\n",
|
|
i, regs->regs[i], i+1, regs->regs[i+1]);
|
|
printf("\n");
|
|
dump_instr(regs);
|
|
}
|
|
|
|
/*
|
|
* do_bad_sync handles the impossible case in the Synchronous Abort vector.
|
|
*/
|
|
void do_bad_sync(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("Bad mode in \"Synchronous Abort\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_bad_irq handles the impossible case in the Irq vector.
|
|
*/
|
|
void do_bad_irq(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("Bad mode in \"Irq\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_bad_fiq handles the impossible case in the Fiq vector.
|
|
*/
|
|
void do_bad_fiq(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("Bad mode in \"Fiq\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_bad_error handles the impossible case in the Error vector.
|
|
*/
|
|
void do_bad_error(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("Bad mode in \"Error\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_sync handles the Synchronous Abort exception.
|
|
*/
|
|
void do_sync(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("\"Synchronous Abort\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_irq handles the Irq exception.
|
|
*/
|
|
void do_irq(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("\"Irq\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_fiq handles the Fiq exception.
|
|
*/
|
|
void do_fiq(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("\"Fiq\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|
|
|
|
/*
|
|
* do_error handles the Error exception.
|
|
* Errors are more likely to be processor specific,
|
|
* it is defined with weak attribute and can be redefined
|
|
* in processor specific code.
|
|
*/
|
|
void __weak do_error(struct pt_regs *pt_regs, unsigned int esr)
|
|
{
|
|
efi_restore_gd();
|
|
printf("\"Error\" handler, esr 0x%08x\n", esr);
|
|
show_regs(pt_regs);
|
|
show_efi_loaded_images(pt_regs);
|
|
panic("Resetting CPU ...\n");
|
|
}
|