blob: 7ae81eb7f32e35b875c3b4fa8e900b12036b5867 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
Stefan Roesea47a12b2010-04-15 16:07:28 +02002 * linux/arch/powerpc/kernel/traps.c
wdenkaffae2b2002-08-17 09:36:01 +00003 *
4 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
5 *
6 * Modified by Cort Dougan (cort@cs.nmt.edu)
7 * and Paul Mackerras (paulus@cs.anu.edu.au)
8 *
9 * (C) Copyright 2000
10 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
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.
19 *
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.
24 *
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,
28 * MA 02111-1307 USA
29 */
30
31/*
32 * This file handles the architecture-dependent parts of hardware exceptions
33 */
34
35#include <common.h>
36#include <command.h>
Mike Frysingere39bf1e2010-02-08 15:30:16 -050037#include <kgdb.h>
wdenkaffae2b2002-08-17 09:36:01 +000038#include <asm/processor.h>
39
wdenkaffae2b2002-08-17 09:36:01 +000040/* Returns 0 if exception not found and fixup otherwise. */
41extern unsigned long search_exception_table(unsigned long);
42
43/* THIS NEEDS CHANGING to use the board info structure.
44*/
45#define END_OF_MEM 0x02000000
46
47/*
48 * Trap & Exception support
49 */
50
51void
52print_backtrace(unsigned long *sp)
53{
54 int cnt = 0;
55 unsigned long i;
56
57 printf("Call backtrace: ");
58 while (sp) {
59 if ((uint)sp > END_OF_MEM)
60 break;
61
62 i = sp[1];
63 if (cnt++ % 7 == 0)
64 printf("\n");
65 printf("%08lX ", i);
66 if (cnt > 32) break;
67 sp = (unsigned long *)*sp;
68 }
69 printf("\n");
70}
71
72void
73show_regs(struct pt_regs * regs)
74{
75 int i;
76
77 printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
78 " %p TRAP: %04lx DAR: %08lX\n",
79 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
80 printf("MSR: %08lx EE: %01x PR: %01x FP:"
81 " %01x ME: %01x IR/DR: %01x%01x\n",
82 regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
83 regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
84 regs->msr&MSR_IR ? 1 : 0,
85 regs->msr&MSR_DR ? 1 : 0);
86
87 printf("\n");
88 for (i = 0; i < 32; i++) {
89 if ((i % 8) == 0)
90 {
91 printf("GPR%02d: ", i);
92 }
93
94 printf("%08lX ", regs->gpr[i]);
95 if ((i % 8) == 7)
96 {
97 printf("\n");
98 }
99 }
100}
101
102
103void
104_exception(int signr, struct pt_regs *regs)
105{
106 show_regs(regs);
107 print_backtrace((unsigned long *)regs->gpr[1]);
108 panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
109}
110
111void
112MachineCheckException(struct pt_regs *regs)
113{
114 unsigned long fixup;
115
116 /* Probing PCI using config cycles cause this exception
117 * when a device is not present. Catch it and return to
118 * the PCI exception handler.
119 */
120 if ((fixup = search_exception_table(regs->nip)) != 0) {
121 regs->nip = fixup;
122 return;
123 }
124
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500125#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000126 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
127 return;
128#endif
129
130 printf("Machine check in kernel mode.\n");
131 printf("Caused by (from msr): ");
132 printf("regs %p ",regs);
wdenk63e73c92004-02-23 22:22:28 +0000133 switch( regs->msr & 0x000F0000) {
134 case (0x80000000>>12):
wdenkaffae2b2002-08-17 09:36:01 +0000135 printf("Machine check signal - probably due to mm fault\n"
136 "with mmu off\n");
137 break;
wdenk63e73c92004-02-23 22:22:28 +0000138 case (0x80000000>>13):
wdenkaffae2b2002-08-17 09:36:01 +0000139 printf("Transfer error ack signal\n");
140 break;
wdenk63e73c92004-02-23 22:22:28 +0000141 case (0x80000000>>14):
wdenkaffae2b2002-08-17 09:36:01 +0000142 printf("Data parity signal\n");
143 break;
wdenk63e73c92004-02-23 22:22:28 +0000144 case (0x80000000>>15):
wdenkaffae2b2002-08-17 09:36:01 +0000145 printf("Address parity signal\n");
146 break;
147 default:
148 printf("Unknown values in msr\n");
149 }
150 show_regs(regs);
151 print_backtrace((unsigned long *)regs->gpr[1]);
152 panic("machine check");
153}
154
155void
156AlignmentException(struct pt_regs *regs)
157{
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500158#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000159 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
160 return;
161#endif
162 show_regs(regs);
163 print_backtrace((unsigned long *)regs->gpr[1]);
164 panic("Alignment Exception");
165}
166
167void
168ProgramCheckException(struct pt_regs *regs)
169{
wdenkc7de8292002-11-19 11:04:11 +0000170 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
171 int i, j;
172
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500173#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000174 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
175 return;
176#endif
177 show_regs(regs);
wdenkc7de8292002-11-19 11:04:11 +0000178
179 p = (unsigned char *) ((unsigned long)p & 0xFFFFFFE0);
180 p -= 32;
181 for (i = 0; i < 256; i+=16) {
182 printf("%08x: ", (unsigned int)p+i);
183 for (j = 0; j < 16; j++) {
184 printf("%02x ", p[i+j]);
185 }
186 printf("\n");
187 }
188
wdenkaffae2b2002-08-17 09:36:01 +0000189 print_backtrace((unsigned long *)regs->gpr[1]);
190 panic("Program Check Exception");
191}
192
193void
194SoftEmuException(struct pt_regs *regs)
195{
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500196#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000197 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
198 return;
199#endif
200 show_regs(regs);
201 print_backtrace((unsigned long *)regs->gpr[1]);
202 panic("Software Emulation Exception");
203}
204
205
206void
207UnknownException(struct pt_regs *regs)
208{
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500209#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000210 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
211 return;
212#endif
213 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
214 regs->nip, regs->msr, regs->trap);
215 _exception(0, regs);
216}
217
218/* Probe an address by reading. If not present, return -1, otherwise
219 * return 0.
220 */
221int
222addr_probe(uint *addr)
223{
224#if 0
225 int retval;
226
227 __asm__ __volatile__( \
228 "1: lwz %0,0(%1)\n" \
229 " eieio\n" \
230 " li %0,0\n" \
231 "2:\n" \
232 ".section .fixup,\"ax\"\n" \
233 "3: li %0,-1\n" \
234 " b 2b\n" \
235 ".section __ex_table,\"a\"\n" \
236 " .align 2\n" \
237 " .long 1b,3b\n" \
238 ".text" \
239 : "=r" (retval) : "r"(addr));
240
241 return (retval);
242#endif
243 return 0;
244}