blob: 6b15a9ea28ebaf8f947b3ba8d1b6d4a85f32a66c [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
2 * linux/arch/ppc/kernel/traps.c
3 *
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>
37#include <asm/processor.h>
38
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +020039DECLARE_GLOBAL_DATA_PTR;
40
wdenkaffae2b2002-08-17 09:36:01 +000041#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
42int (*debugger_exception_handler)(struct pt_regs *) = 0;
43#endif
44
45/* Returns 0 if exception not found and fixup otherwise. */
46extern unsigned long search_exception_table(unsigned long);
47
48/* THIS NEEDS CHANGING to use the board info structure.
49 */
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +020050#define END_OF_MEM (gd->bd->bi_memstart + gd->bd->bi_memsize)
wdenkaffae2b2002-08-17 09:36:01 +000051
52static __inline__ void set_tsr(unsigned long val)
53{
54#if defined(CONFIG_440)
55 asm volatile("mtspr 0x150, %0" : : "r" (val));
56#else
57 asm volatile("mttsr %0" : : "r" (val));
58#endif
59}
60
61static __inline__ unsigned long get_esr(void)
62{
63 unsigned long val;
64
65#if defined(CONFIG_440)
66 asm volatile("mfspr %0, 0x03e" : "=r" (val) :);
67#else
68 asm volatile("mfesr %0" : "=r" (val) :);
69#endif
70 return val;
71}
72
73#define ESR_MCI 0x80000000
74#define ESR_PIL 0x08000000
75#define ESR_PPR 0x04000000
76#define ESR_PTR 0x02000000
77#define ESR_DST 0x00800000
78#define ESR_DIZ 0x00400000
79#define ESR_U0F 0x00008000
80
81#if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
82extern void do_bedbug_breakpoint(struct pt_regs *);
83#endif
84
85/*
86 * Trap & Exception support
87 */
88
89void
90print_backtrace(unsigned long *sp)
91{
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020092 int cnt = 0;
93 unsigned long i;
wdenkaffae2b2002-08-17 09:36:01 +000094
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020095 printf("Call backtrace: ");
96 while (sp) {
97 if ((uint)sp > END_OF_MEM)
98 break;
wdenkaffae2b2002-08-17 09:36:01 +000099
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200100 i = sp[1];
101 if (cnt++ % 7 == 0)
102 printf("\n");
103 printf("%08lX ", i);
104 if (cnt > 32) break;
105 sp = (unsigned long *)*sp;
106 }
107 printf("\n");
wdenkaffae2b2002-08-17 09:36:01 +0000108}
109
110void show_regs(struct pt_regs * regs)
111{
112 int i;
113
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200114 printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DEAR: %08lX\n",
wdenkaffae2b2002-08-17 09:36:01 +0000115 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
116 printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
117 regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
118 regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
119 regs->msr&MSR_IR ? 1 : 0,
120 regs->msr&MSR_DR ? 1 : 0);
121
122 printf("\n");
123 for (i = 0; i < 32; i++) {
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200124 if ((i % 8) == 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000125 printf("GPR%02d: ", i);
126 }
127
128 printf("%08lX ", regs->gpr[i]);
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200129 if ((i % 8) == 7) {
wdenkaffae2b2002-08-17 09:36:01 +0000130 printf("\n");
131 }
132 }
133}
134
135
136void
137_exception(int signr, struct pt_regs *regs)
138{
139 show_regs(regs);
140 print_backtrace((unsigned long *)regs->gpr[1]);
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200141 panic("Exception");
wdenkaffae2b2002-08-17 09:36:01 +0000142}
143
144void
145MachineCheckException(struct pt_regs *regs)
146{
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200147 unsigned long fixup, val;
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200148#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
149 u32 value2;
Stefan Roese27a528f2007-07-30 11:04:57 +0200150 int corr_ecc = 0;
151 int uncorr_ecc = 0;
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200152#endif
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200153
Grzegorz Bernackic9240982007-07-31 18:51:48 +0200154 /* Probing PCI(E) using config cycles may cause this exception
155 * when a device is not present. To gracefully recover in such
156 * scenarios config read/write routines need to be instrumented in
157 * order to return via fixup handler. For examples refer to
158 * pcie_in_8(), pcie_in_le16() and pcie_in_le32()
wdenkaffae2b2002-08-17 09:36:01 +0000159 */
160 if ((fixup = search_exception_table(regs->nip)) != 0) {
161 regs->nip = fixup;
Grzegorz Bernackic9240982007-07-31 18:51:48 +0200162 val = mfspr(MCSR);
163 /* Clear MCSR */
164 mtspr(SPRN_MCSR, val);
wdenkaffae2b2002-08-17 09:36:01 +0000165 return;
166 }
167
168#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
169 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
170 return;
171#endif
172
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200173 printf("Machine Check Exception.\n");
wdenkaffae2b2002-08-17 09:36:01 +0000174 printf("Caused by (from msr): ");
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200175 printf("regs %p ", regs);
176
177 val = get_esr();
178
179#if !defined(CONFIG_440)
180 if (val& ESR_IMCP) {
181 printf("Instruction");
182 mtspr(ESR, val & ~ESR_IMCP);
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200183 } else {
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200184 printf("Data");
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200185 }
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200186 printf(" machine check.\n");
187
188#elif defined(CONFIG_440)
189 if (val& ESR_IMCP){
190 printf("Instruction Synchronous Machine Check exception\n");
191 mtspr(SPRN_ESR, val & ~ESR_IMCP);
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200192 } else {
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200193 val = mfspr(MCSR);
194 if (val & MCSR_IB)
195 printf("Instruction Read PLB Error\n");
196 if (val & MCSR_DRB)
197 printf("Data Read PLB Error\n");
198 if (val & MCSR_DWB)
199 printf("Data Write PLB Error\n");
200 if (val & MCSR_TLBP)
201 printf("TLB Parity Error\n");
202 if (val & MCSR_ICP){
203 /*flush_instruction_cache(); */
204 printf("I-Cache Parity Error\n");
205 }
206 if (val & MCSR_DCSP)
207 printf("D-Cache Search Parity Error\n");
208 if (val & MCSR_DCFP)
209 printf("D-Cache Flush Parity Error\n");
210 if (val & MCSR_IMPE)
211 printf("Machine Check exception is imprecise\n");
212
213 /* Clear MCSR */
214 mtspr(SPRN_MCSR, val);
215 }
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200216#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
217 mfsdram(DDR0_00, val) ;
218 printf("DDR0: DDR0_00 %p\n", val);
219 val = (val >> 16) & 0xff;
220 if (val & 0x80)
221 printf("DDR0: At least one interrupt active\n");
222 if (val & 0x40)
223 printf("DDR0: DRAM initialization complete.\n");
Stefan Roese27a528f2007-07-30 11:04:57 +0200224 if (val & 0x20) {
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200225 printf("DDR0: Multiple uncorrectable ECC events.\n");
Stefan Roese27a528f2007-07-30 11:04:57 +0200226 uncorr_ecc = 1;
227 }
228 if (val & 0x10) {
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200229 printf("DDR0: Single uncorrectable ECC event.\n");
Stefan Roese27a528f2007-07-30 11:04:57 +0200230 uncorr_ecc = 1;
231 }
232 if (val & 0x08) {
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200233 printf("DDR0: Multiple correctable ECC events.\n");
Stefan Roese27a528f2007-07-30 11:04:57 +0200234 corr_ecc = 1;
235 }
236 if (val & 0x04) {
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200237 printf("DDR0: Single correctable ECC event.\n");
Stefan Roese27a528f2007-07-30 11:04:57 +0200238 corr_ecc = 1;
239 }
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200240 if (val & 0x02)
241 printf("Multiple accesses outside the defined"
242 " physical memory space detected\n");
243 if (val & 0x01)
244 printf("DDR0: Single access outside the defined"
245 " physical memory space detected.\n");
246
247 mfsdram(DDR0_01, val);
248 val = (val >> 8) & 0x7;
249 switch (val ) {
250 case 0:
251 printf("DDR0: Write Out-of-Range command\n");
252 break;
253 case 1:
254 printf("DDR0: Read Out-of-Range command\n");
255 break;
256 case 2:
257 printf("DDR0: Masked write Out-of-Range command\n");
258 break;
259 case 4:
260 printf("DDR0: Wrap write Out-of-Range command\n");
261 break;
262 case 5:
263 printf("DDR0: Wrap read Out-of-Range command\n");
264 break;
265 default:
266 mfsdram(DDR0_01, value2);
267 printf("DDR0: No DDR0 error know 0x%x %p\n", val, value2);
268 }
269 mfsdram(DDR0_23, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200270 if (((val >> 16) & 0xff) && corr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200271 printf("DDR0: Syndrome for correctable ECC event 0x%x\n",
272 (val >> 16) & 0xff);
273 mfsdram(DDR0_23, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200274 if (((val >> 8) & 0xff) && uncorr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200275 printf("DDR0: Syndrome for uncorrectable ECC event 0x%x\n",
276 (val >> 8) & 0xff);
277 mfsdram(DDR0_33, val);
278 if (val)
279 printf("DDR0: Address of command that caused an "
280 "Out-of-Range interrupt %p\n", val);
281 mfsdram(DDR0_34, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200282 if (val && uncorr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200283 printf("DDR0: Address of uncorrectable ECC event %p\n", val);
284 mfsdram(DDR0_35, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200285 if (val && uncorr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200286 printf("DDR0: Address of uncorrectable ECC event %p\n", val);
287 mfsdram(DDR0_36, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200288 if (val && uncorr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200289 printf("DDR0: Data of uncorrectable ECC event 0x%08x\n", val);
290 mfsdram(DDR0_37, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200291 if (val && uncorr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200292 printf("DDR0: Data of uncorrectable ECC event 0x%08x\n", val);
293 mfsdram(DDR0_38, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200294 if (val && corr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200295 printf("DDR0: Address of correctable ECC event %p\n", val);
296 mfsdram(DDR0_39, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200297 if (val && corr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200298 printf("DDR0: Address of correctable ECC event %p\n", val);
299 mfsdram(DDR0_40, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200300 if (val && corr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200301 printf("DDR0: Data of correctable ECC event 0x%08x\n", val);
302 mfsdram(DDR0_41, val);
Stefan Roese27a528f2007-07-30 11:04:57 +0200303 if (val && corr_ecc)
Niklaus Gigera1bd6202007-06-25 17:03:13 +0200304 printf("DDR0: Data of correctable ECC event 0x%08x\n", val);
305#endif /* CONFIG_440EPX */
306#endif /* CONFIG_440 */
wdenkaffae2b2002-08-17 09:36:01 +0000307 show_regs(regs);
308 print_backtrace((unsigned long *)regs->gpr[1]);
309 panic("machine check");
310}
311
312void
313AlignmentException(struct pt_regs *regs)
314{
315#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
316 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
317 return;
318#endif
319
320 show_regs(regs);
321 print_backtrace((unsigned long *)regs->gpr[1]);
322 panic("Alignment Exception");
323}
324
325void
326ProgramCheckException(struct pt_regs *regs)
327{
wdenk8bde7f72003-06-27 21:31:46 +0000328 long esr_val;
wdenkaffae2b2002-08-17 09:36:01 +0000329
330#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
331 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
332 return;
333#endif
334
335 show_regs(regs);
336
wdenk8bde7f72003-06-27 21:31:46 +0000337 esr_val = get_esr();
338 if( esr_val & ESR_PIL )
wdenkaffae2b2002-08-17 09:36:01 +0000339 printf( "** Illegal Instruction **\n" );
wdenk8bde7f72003-06-27 21:31:46 +0000340 else if( esr_val & ESR_PPR )
wdenkaffae2b2002-08-17 09:36:01 +0000341 printf( "** Privileged Instruction **\n" );
wdenk8bde7f72003-06-27 21:31:46 +0000342 else if( esr_val & ESR_PTR )
wdenkaffae2b2002-08-17 09:36:01 +0000343 printf( "** Trap Instruction **\n" );
344
345 print_backtrace((unsigned long *)regs->gpr[1]);
346 panic("Program Check Exception");
347}
348
349void
Grzegorz Bernackiefa35cf2007-06-15 11:19:28 +0200350DecrementerPITException(struct pt_regs *regs)
wdenkaffae2b2002-08-17 09:36:01 +0000351{
wdenk8bde7f72003-06-27 21:31:46 +0000352 /*
353 * Reset PIT interrupt
354 */
355 set_tsr(0x08000000);
wdenkaffae2b2002-08-17 09:36:01 +0000356
wdenk8bde7f72003-06-27 21:31:46 +0000357 /*
358 * Call timer_interrupt routine in interrupts.c
359 */
360 timer_interrupt(NULL);
wdenkaffae2b2002-08-17 09:36:01 +0000361}
362
363
364void
365UnknownException(struct pt_regs *regs)
366{
367#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
368 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
369 return;
370#endif
371
372 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
373 regs->nip, regs->msr, regs->trap);
374 _exception(0, regs);
375}
376
377void
378DebugException(struct pt_regs *regs)
379{
380 printf("Debugger trap at @ %lx\n", regs->nip );
381 show_regs(regs);
382#if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
383 do_bedbug_breakpoint( regs );
384#endif
385}
386
387/* Probe an address by reading. If not present, return -1, otherwise
388 * return 0.
389 */
390int
391addr_probe(uint *addr)
392{
393#if 0
394 int retval;
395
396 __asm__ __volatile__( \
397 "1: lwz %0,0(%1)\n" \
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +0200398 " eieio\n" \
399 " li %0,0\n" \
400 "2:\n" \
401 ".section .fixup,\"ax\"\n" \
402 "3: li %0,-1\n" \
403 " b 2b\n" \
404 ".section __ex_table,\"a\"\n" \
405 " .align 2\n" \
406 " .long 1b,3b\n" \
407 ".text" \
408 : "=r" (retval) : "r"(addr));
wdenkaffae2b2002-08-17 09:36:01 +0000409
410 return (retval);
411#endif
412 return 0;
413}