2 * linux/arch/ppc/kernel/traps.c
10 * (C) Copyright 2000-2003
13 * See file CREDITS for list of people who contributed to this
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 * This file handles the architecture-dependent parts of hardware exceptions
38 #include <asm/processor.h>
40 #if defined(CONFIG_CMD_KGDB)
41 int (*debugger_exception_handler) (struct pt_regs *) = 0;
44 /* Returns 0 if exception not found and fixup otherwise. */
45 extern unsigned long search_exception_table (unsigned long);
47 /* THIS NEEDS CHANGING to use the board info structure.
49 #define END_OF_MEM 0x02000000
52 * Trap & Exception support
55 void print_backtrace (unsigned long *sp)
60 printf ("Call backtrace: ");
62 if ((uint) sp > END_OF_MEM)
71 sp = (unsigned long *) *sp;
76 void show_regs (struct pt_regs *regs)
80 printf ("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
81 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
82 printf ("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
84 regs->msr & MSR_EE ? 1 : 0, regs->msr & MSR_PR ? 1 : 0,
85 regs->msr & MSR_FP ? 1 : 0, regs->msr & MSR_ME ? 1 : 0,
86 regs->msr & MSR_IR ? 1 : 0, regs->msr & MSR_DR ? 1 : 0);
89 for (i = 0; i < 32; i++) {
91 printf ("GPR%02d: ", i);
94 printf ("%08lX ", regs->gpr[i]);
102 void _exception (int signr, struct pt_regs *regs)
105 print_backtrace ((unsigned long *) regs->gpr[1]);
106 panic ("Exception in kernel pc %lx signal %d", regs->nip, signr);
109 void MachineCheckException (struct pt_regs *regs)
113 /* Probing PCI using config cycles cause this exception
114 * when a device is not present. Catch it and return to
115 * the PCI exception handler.
117 if ((fixup = search_exception_table (regs->nip)) != 0) {
121 #if defined(CONFIG_CMD_KGDB)
122 if (debugger_exception_handler
123 && (*debugger_exception_handler) (regs))
127 printf ("Machine check in kernel mode.\n");
128 printf ("Caused by (from msr): ");
129 printf ("regs %p ", regs);
130 /* refer to 603e Manual (MPC603EUM/AD), chapter 4.5.2.1 */
131 switch (regs->msr & 0x000F0000) {
132 case (0x80000000 >> 12):
133 printf ("Machine check signal - probably due to mm fault\n"
136 case (0x80000000 >> 13):
137 printf ("Transfer error ack signal\n");
139 case (0x80000000 >> 14):
140 printf ("Data parity signal\n");
142 case (0x80000000 >> 15):
143 printf ("Address parity signal\n");
146 printf ("Unknown values in msr\n");
149 print_backtrace ((unsigned long *) regs->gpr[1]);
150 panic ("machine check");
153 void AlignmentException (struct pt_regs *regs)
155 #if defined(CONFIG_CMD_KGDB)
156 if (debugger_exception_handler
157 && (*debugger_exception_handler) (regs))
161 print_backtrace ((unsigned long *) regs->gpr[1]);
162 panic ("Alignment Exception");
165 void ProgramCheckException (struct pt_regs *regs)
167 #if defined(CONFIG_CMD_KGDB)
168 if (debugger_exception_handler
169 && (*debugger_exception_handler) (regs))
173 print_backtrace ((unsigned long *) regs->gpr[1]);
174 panic ("Program Check Exception");
177 void SoftEmuException (struct pt_regs *regs)
179 #if defined(CONFIG_CMD_KGDB)
180 if (debugger_exception_handler
181 && (*debugger_exception_handler) (regs))
185 print_backtrace ((unsigned long *) regs->gpr[1]);
186 panic ("Software Emulation Exception");
190 void UnknownException (struct pt_regs *regs)
192 #if defined(CONFIG_CMD_KGDB)
193 if (debugger_exception_handler
194 && (*debugger_exception_handler) (regs))
197 printf ("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
198 regs->nip, regs->msr, regs->trap);
199 _exception (0, regs);
202 #if defined(CONFIG_CMD_BEDBUG)
203 extern void do_bedbug_breakpoint (struct pt_regs *);
206 void DebugException (struct pt_regs *regs)
209 printf ("Debugger trap at @ %lx\n", regs->nip);
211 #if defined(CONFIG_CMD_BEDBUG)
212 do_bedbug_breakpoint (regs);
216 /* Probe an address by reading. If not present, return -1, otherwise
219 int addr_probe (uint * addr)
224 __asm__ __volatile__ ("1: lwz %0,0(%1)\n"
228 ".section .fixup,\"ax\"\n"
231 ".section __ex_table,\"a\"\n"
234 ".text":"=r" (retval):"r" (addr));