2 * linux/arch/ppc/kernel/traps.c
4 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6 * Modified by Cort Dougan (cort@cs.nmt.edu)
7 * and Paul Mackerras (paulus@cs.anu.edu.au)
10 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
12 * See file CREDITS for list of people who contributed to this
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * This file handles the architecture-dependent parts of hardware exceptions
36 #include <asm/processor.h>
38 /* Returns 0 if exception not found and fixup otherwise. */
39 extern unsigned long search_exception_table(unsigned long);
41 /* THIS NEEDS CHANGING to use the board info structure.
43 #define END_OF_MEM 0x00400000
46 * Trap & Exception support
50 print_backtrace(unsigned long *sp
)
55 printf("Call backtrace: ");
57 if ((uint
)sp
> END_OF_MEM
)
65 sp
= (unsigned long *)*sp
;
70 void show_regs(struct pt_regs
* regs
)
74 printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
75 regs
->nip
, regs
->xer
, regs
->link
, regs
, regs
->trap
, regs
->dar
);
76 printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
77 regs
->msr
, regs
->msr
&MSR_EE
? 1 : 0, regs
->msr
&MSR_PR
? 1 : 0,
78 regs
->msr
& MSR_FP
? 1 : 0,regs
->msr
&MSR_ME
? 1 : 0,
79 regs
->msr
&MSR_IR
? 1 : 0,
80 regs
->msr
&MSR_DR
? 1 : 0);
83 for (i
= 0; i
< 32; i
++) {
86 printf("GPR%02d: ", i
);
89 printf("%08lX ", regs
->gpr
[i
]);
99 _exception(int signr
, struct pt_regs
*regs
)
102 print_backtrace((unsigned long *)regs
->gpr
[1]);
103 panic("Exception in kernel pc %lx signal %d",regs
->nip
,signr
);
107 MachineCheckException(struct pt_regs
*regs
)
111 /* Probing PCI using config cycles cause this exception
112 * when a device is not present. Catch it and return to
113 * the PCI exception handler.
115 if ((fixup
= search_exception_table(regs
->nip
)) != 0) {
120 printf("Machine check in kernel mode.\n");
121 printf("Caused by (from msr): ");
122 printf("regs %p ",regs
);
123 switch( regs
->msr
& 0x000F0000) {
124 case (0x80000000>>12):
125 printf("Machine check signal - probably due to mm fault\n"
128 case (0x80000000>>13):
129 printf("Transfer error ack signal\n");
131 case (0x80000000>>14):
132 printf("Data parity signal\n");
134 case (0x80000000>>15):
135 printf("Address parity signal\n");
138 printf("Unknown values in msr\n");
141 print_backtrace((unsigned long *)regs
->gpr
[1]);
142 panic("machine check");
146 AlignmentException(struct pt_regs
*regs
)
149 print_backtrace((unsigned long *)regs
->gpr
[1]);
150 panic("Alignment Exception");
154 ProgramCheckException(struct pt_regs
*regs
)
157 print_backtrace((unsigned long *)regs
->gpr
[1]);
158 panic("Program Check Exception");
162 SoftEmuException(struct pt_regs
*regs
)
165 print_backtrace((unsigned long *)regs
->gpr
[1]);
166 panic("Software Emulation Exception");
171 UnknownException(struct pt_regs
*regs
)
173 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
174 regs
->nip
, regs
->msr
, regs
->trap
);
178 #if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
179 extern void do_bedbug_breakpoint(struct pt_regs
*);
183 DebugException(struct pt_regs
*regs
)
186 printf("Debugger trap at @ %lx\n", regs
->nip
);
188 #if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
189 do_bedbug_breakpoint( regs
);
193 /* Probe an address by reading. If not present, return -1, otherwise
197 addr_probe(uint
*addr
)
202 __asm__
__volatile__( \
203 "1: lwz %0,0(%1)\n" \
207 ".section .fixup,\"ax\"\n" \
210 ".section __ex_table,\"a\"\n" \
214 : "=r" (retval
) : "r"(addr
));