mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-18 08:32:04 -04:00
arch/powerpc/lib/board.c, *traps.c: sparse fixes
traps.c:*:1: warning: symbol 'print_backtrace' was not declared. Should it be static? traps.c:93:1: warning: symbol '_exception' was not declared. Should it be static? board.c:166:6: warning: symbol '__board_add_ram_info' was not declared. Should it be static? board.c:174:5: warning: symbol '__board_flash_wp_on' was not declared. Should it be static? board.c:187:6: warning: symbol '__cpu_secondary_init_r' was not declared. Should it be static? board.c:265:12: warning: symbol 'init_sequence' was not declared. Should it be static? board.c:348:5: warning: symbol '__fixup_cpu' was not declared. Should it be static? board.c:405:53: warning: Using plain integer as NULL pointer Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
This commit is contained in:
parent
fe44f452db
commit
20051f2ab2
@ -48,8 +48,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -69,8 +68,7 @@ print_backtrace(unsigned long *sp)
|
|||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void show_regs(struct pt_regs *regs)
|
||||||
show_regs(struct pt_regs * regs)
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -100,16 +98,14 @@ show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -152,8 +148,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -164,8 +159,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
|
unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
|
||||||
int i, j;
|
int i, j;
|
||||||
@ -190,8 +184,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -202,9 +195,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
panic("Software Emulation Exception");
|
panic("Software Emulation Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UnknownException(struct pt_regs *regs)
|
||||||
void
|
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -218,8 +209,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
int retval;
|
int retval;
|
||||||
|
@ -47,8 +47,7 @@ extern ulong get_effective_memsize(void);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace (unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -94,8 +93,7 @@ void show_regs (struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception (int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
@ -103,12 +101,11 @@ _exception (int signr, struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException (struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup = search_exception_table(regs->nip);
|
||||||
|
|
||||||
if ((fixup = search_exception_table (regs->nip)) != 0) {
|
if (fixup) {
|
||||||
regs->nip = fixup;
|
regs->nip = fixup;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -148,8 +145,7 @@ MachineCheckException (struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException (struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_CMD_KGDB
|
#ifdef CONFIG_CMD_KGDB
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -160,8 +156,7 @@ AlignmentException (struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException (struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_CMD_KGDB
|
#ifdef CONFIG_CMD_KGDB
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -172,8 +167,7 @@ ProgramCheckException (struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException (struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_CMD_KGDB
|
#ifdef CONFIG_CMD_KGDB
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -185,8 +179,7 @@ SoftEmuException (struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException (struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_CMD_KGDB
|
#ifdef CONFIG_CMD_KGDB
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -201,8 +194,7 @@ UnknownException (struct pt_regs *regs)
|
|||||||
extern void do_bedbug_breakpoint(struct pt_regs *);
|
extern void do_bedbug_breakpoint(struct pt_regs *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException (struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip);
|
printf("Debugger trap at @ %lx\n", regs->nip);
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
|
@ -52,7 +52,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
/*
|
/*
|
||||||
* Print stack backtrace
|
* Print stack backtrace
|
||||||
*/
|
*/
|
||||||
void print_backtrace(unsigned long *sp)
|
static void print_backtrace(unsigned long *sp)
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -105,7 +105,7 @@ void show_regs(struct pt_regs * regs)
|
|||||||
/*
|
/*
|
||||||
* General exception handler routine
|
* General exception handler routine
|
||||||
*/
|
*/
|
||||||
void _exception(int signr, struct pt_regs *regs)
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
|
@ -49,8 +49,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -98,16 +97,14 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -152,8 +149,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -164,8 +160,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -176,8 +171,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -189,8 +183,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -205,8 +198,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
extern void do_bedbug_breakpoint(struct pt_regs *);
|
extern void do_bedbug_breakpoint(struct pt_regs *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
@ -219,8 +211,7 @@ DebugException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
int retval;
|
int retval;
|
||||||
|
@ -49,7 +49,7 @@ extern unsigned long search_exception_table (unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void print_backtrace (unsigned long *sp)
|
static void print_backtrace(unsigned long *sp)
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -96,7 +96,7 @@ void show_regs (struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void _exception (int signr, struct pt_regs *regs)
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *) regs->gpr[1]);
|
print_backtrace((unsigned long *) regs->gpr[1]);
|
||||||
@ -105,19 +105,18 @@ void _exception (int signr, struct pt_regs *regs)
|
|||||||
|
|
||||||
void MachineCheckException(struct pt_regs *regs)
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup = search_exception_table(regs->nip);
|
||||||
|
|
||||||
/* Probing PCI using config cycles cause this exception
|
/* Probing PCI using config cycles cause this exception
|
||||||
* when a device is not present. Catch it and return to
|
* when a device is not present. Catch it and return to
|
||||||
* the PCI exception handler.
|
* the PCI exception handler.
|
||||||
*/
|
*/
|
||||||
if ((fixup = search_exception_table (regs->nip)) != 0) {
|
if (fixup) {
|
||||||
regs->nip = fixup;
|
regs->nip = fixup;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
&& (*debugger_exception_handler) (regs))
|
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -150,8 +149,7 @@ void MachineCheckException (struct pt_regs *regs)
|
|||||||
void AlignmentException(struct pt_regs *regs)
|
void AlignmentException(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
&& (*debugger_exception_handler) (regs))
|
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
@ -162,8 +160,7 @@ void AlignmentException (struct pt_regs *regs)
|
|||||||
void ProgramCheckException(struct pt_regs *regs)
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
&& (*debugger_exception_handler) (regs))
|
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
@ -174,8 +171,7 @@ void ProgramCheckException (struct pt_regs *regs)
|
|||||||
void SoftEmuException(struct pt_regs *regs)
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
&& (*debugger_exception_handler) (regs))
|
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
@ -187,8 +183,7 @@ void SoftEmuException (struct pt_regs *regs)
|
|||||||
void UnknownException(struct pt_regs *regs)
|
void UnknownException(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
&& (*debugger_exception_handler) (regs))
|
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
|
printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
|
||||||
|
@ -46,8 +46,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -95,16 +94,14 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -142,24 +139,21 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
@ -167,8 +161,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
|
printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
|
||||||
regs->nip, regs->msr, regs->trap);
|
regs->nip, regs->msr, regs->trap);
|
||||||
@ -179,8 +172,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
extern void do_bedbug_breakpoint(struct pt_regs *);
|
extern void do_bedbug_breakpoint(struct pt_regs *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
@ -193,8 +185,7 @@ DebugException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
int retval;
|
int retval;
|
||||||
|
@ -49,8 +49,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -96,8 +95,7 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
@ -122,8 +120,7 @@ void dump_pci (void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -180,8 +177,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -192,8 +188,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -204,8 +199,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -217,8 +211,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -233,8 +226,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
extern void do_bedbug_breakpoint(struct pt_regs *);
|
extern void do_bedbug_breakpoint(struct pt_regs *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
@ -247,8 +239,7 @@ DebugException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
int retval;
|
int retval;
|
||||||
|
@ -42,8 +42,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -89,8 +88,7 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
@ -114,8 +112,7 @@ void dump_pci (void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -174,8 +171,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -186,8 +182,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -198,8 +193,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -211,8 +205,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -227,8 +220,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
extern void do_bedbug_breakpoint(struct pt_regs *);
|
extern void do_bedbug_breakpoint(struct pt_regs *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
@ -240,8 +232,7 @@ DebugException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
int retval;
|
int retval;
|
||||||
|
@ -82,8 +82,7 @@ extern void do_bedbug_breakpoint(struct pt_regs *);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -131,24 +130,21 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void CritcalInputException(struct pt_regs *regs)
|
||||||
CritcalInputException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
panic("Critical Input Exception");
|
panic("Critical Input Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
int machinecheck_count = 0;
|
int machinecheck_count = 0;
|
||||||
int machinecheck_error = 0;
|
int machinecheck_error = 0;
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
unsigned int mcsr, mcsrr0, mcsrr1, mcar;
|
unsigned int mcsr, mcsrr0, mcsrr1, mcar;
|
||||||
@ -220,8 +216,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -233,8 +228,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
long esr_val;
|
long esr_val;
|
||||||
|
|
||||||
@ -257,8 +251,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void PITException(struct pt_regs *regs)
|
||||||
PITException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Reset PIT interrupt
|
* Reset PIT interrupt
|
||||||
@ -271,9 +264,7 @@ PITException(struct pt_regs *regs)
|
|||||||
timer_interrupt(NULL);
|
timer_interrupt(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UnknownException(struct pt_regs *regs)
|
||||||
void
|
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -285,8 +276,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
_exception(0, regs);
|
_exception(0, regs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ExtIntException(struct pt_regs *regs)
|
||||||
ExtIntException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
|
volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
|
||||||
|
|
||||||
@ -305,8 +295,7 @@ ExtIntException(struct pt_regs *regs)
|
|||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
@ -318,8 +307,7 @@ DebugException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -52,8 +52,7 @@ extern ulong get_effective_memsize(void);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -74,8 +73,7 @@ print_backtrace(unsigned long *sp)
|
|||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void show_regs(struct pt_regs *regs)
|
||||||
show_regs(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -103,16 +101,14 @@ show_regs(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
|
panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -158,8 +154,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler) (regs))
|
if (debugger_exception_handler && (*debugger_exception_handler) (regs))
|
||||||
@ -170,8 +165,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
|
unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
|
||||||
int i, j;
|
int i, j;
|
||||||
@ -196,8 +190,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler) (regs))
|
if (debugger_exception_handler && (*debugger_exception_handler) (regs))
|
||||||
@ -208,8 +201,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
panic("Software Emulation Exception");
|
panic("Software Emulation Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler) (regs))
|
if (debugger_exception_handler && (*debugger_exception_handler) (regs))
|
||||||
@ -226,8 +218,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
* If not present, return -1,
|
* If not present, return -1,
|
||||||
* otherwise return 0.
|
* otherwise return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -52,8 +52,7 @@ extern unsigned long search_exception_table(unsigned long);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -101,16 +100,14 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup;
|
unsigned long fixup;
|
||||||
|
|
||||||
@ -153,8 +150,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -165,8 +161,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -177,8 +172,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void SoftEmuException(struct pt_regs *regs)
|
||||||
SoftEmuException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -190,8 +184,7 @@ SoftEmuException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -202,8 +195,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
_exception(0, regs);
|
_exception(0, regs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
@ -215,8 +207,7 @@ DebugException(struct pt_regs *regs)
|
|||||||
/* Probe an address by reading. If not present, return -1, otherwise
|
/* Probe an address by reading. If not present, return -1, otherwise
|
||||||
* return 0.
|
* return 0.
|
||||||
*/
|
*/
|
||||||
int
|
int addr_probe(uint *addr)
|
||||||
addr_probe(uint *addr)
|
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
int retval;
|
int retval;
|
||||||
|
@ -74,8 +74,7 @@ extern void do_bedbug_breakpoint(struct pt_regs *);
|
|||||||
* Trap & Exception support
|
* Trap & Exception support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void print_backtrace(unsigned long *sp)
|
||||||
print_backtrace(unsigned long *sp)
|
|
||||||
{
|
{
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
unsigned long i;
|
unsigned long i;
|
||||||
@ -121,16 +120,14 @@ void show_regs(struct pt_regs * regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void _exception(int signr, struct pt_regs *regs)
|
||||||
_exception(int signr, struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
print_backtrace((unsigned long *)regs->gpr[1]);
|
print_backtrace((unsigned long *)regs->gpr[1]);
|
||||||
panic("Exception");
|
panic("Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void MachineCheckException(struct pt_regs *regs)
|
||||||
MachineCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
unsigned long fixup, val;
|
unsigned long fixup, val;
|
||||||
#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
|
#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
|
||||||
@ -312,8 +309,7 @@ MachineCheckException(struct pt_regs *regs)
|
|||||||
panic("machine check");
|
panic("machine check");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void AlignmentException(struct pt_regs *regs)
|
||||||
AlignmentException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -325,8 +321,7 @@ AlignmentException(struct pt_regs *regs)
|
|||||||
panic("Alignment Exception");
|
panic("Alignment Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void ProgramCheckException(struct pt_regs *regs)
|
||||||
ProgramCheckException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
long esr_val;
|
long esr_val;
|
||||||
|
|
||||||
@ -349,8 +344,7 @@ ProgramCheckException(struct pt_regs *regs)
|
|||||||
panic("Program Check Exception");
|
panic("Program Check Exception");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void DecrementerPITException(struct pt_regs *regs)
|
||||||
DecrementerPITException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Reset PIT interrupt
|
* Reset PIT interrupt
|
||||||
@ -364,8 +358,7 @@ DecrementerPITException(struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void UnknownException(struct pt_regs *regs)
|
||||||
UnknownException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_CMD_KGDB)
|
#if defined(CONFIG_CMD_KGDB)
|
||||||
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
||||||
@ -377,8 +370,7 @@ UnknownException(struct pt_regs *regs)
|
|||||||
_exception(0, regs);
|
_exception(0, regs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void DebugException(struct pt_regs *regs)
|
||||||
DebugException(struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
printf("Debugger trap at @ %lx\n", regs->nip );
|
printf("Debugger trap at @ %lx\n", regs->nip );
|
||||||
show_regs(regs);
|
show_regs(regs);
|
||||||
|
@ -163,7 +163,7 @@ static int init_baudrate(void)
|
|||||||
|
|
||||||
/***********************************************************************/
|
/***********************************************************************/
|
||||||
|
|
||||||
void __board_add_ram_info(int use_default)
|
static void __board_add_ram_info(int use_default)
|
||||||
{
|
{
|
||||||
/* please define platform specific board_add_ram_info() */
|
/* please define platform specific board_add_ram_info() */
|
||||||
}
|
}
|
||||||
@ -171,7 +171,7 @@ void __board_add_ram_info(int use_default)
|
|||||||
void board_add_ram_info(int)
|
void board_add_ram_info(int)
|
||||||
__attribute__ ((weak, alias("__board_add_ram_info")));
|
__attribute__ ((weak, alias("__board_add_ram_info")));
|
||||||
|
|
||||||
int __board_flash_wp_on(void)
|
static int __board_flash_wp_on(void)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Most flashes can't be detected when write protection is enabled,
|
* Most flashes can't be detected when write protection is enabled,
|
||||||
@ -184,7 +184,7 @@ int __board_flash_wp_on(void)
|
|||||||
int board_flash_wp_on(void)
|
int board_flash_wp_on(void)
|
||||||
__attribute__ ((weak, alias("__board_flash_wp_on")));
|
__attribute__ ((weak, alias("__board_flash_wp_on")));
|
||||||
|
|
||||||
void __cpu_secondary_init_r(void)
|
static void __cpu_secondary_init_r(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -262,7 +262,7 @@ static int init_func_watchdog_reset(void)
|
|||||||
* Initialization sequence
|
* Initialization sequence
|
||||||
*/
|
*/
|
||||||
|
|
||||||
init_fnc_t *init_sequence[] = {
|
static init_fnc_t *init_sequence[] = {
|
||||||
#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
||||||
probecpu,
|
probecpu,
|
||||||
#endif
|
#endif
|
||||||
@ -345,7 +345,7 @@ ulong get_effective_memsize(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int __fixup_cpu(void)
|
static int __fixup_cpu(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -402,7 +402,7 @@ void board_init_f(ulong bootflag)
|
|||||||
|
|
||||||
#ifdef CONFIG_POST
|
#ifdef CONFIG_POST
|
||||||
post_bootmode_init();
|
post_bootmode_init();
|
||||||
post_run(NULL, POST_ROM | post_bootmode_get(0));
|
post_run(NULL, POST_ROM | post_bootmode_get(NULL));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
WATCHDOG_RESET();
|
WATCHDOG_RESET();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user