blob: 24e28e212a4401952a48b5ac0b50f8bd9a70eadf [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
Wolfgang Denkd87080b2006-03-31 18:32:53 +020039#ifdef CONFIG_AMIGAONEG3SE
40DECLARE_GLOBAL_DATA_PTR;
41#endif
42
wdenkaffae2b2002-08-17 09:36:01 +000043/* Returns 0 if exception not found and fixup otherwise. */
44extern unsigned long search_exception_table(unsigned long);
45
46/* THIS NEEDS CHANGING to use the board info structure.
47*/
wdenkc7de8292002-11-19 11:04:11 +000048#ifdef CONFIG_AMIGAONEG3SE
49#define END_OF_MEM (gd->bd->bi_memstart + gd->bd->bi_memsize)
50#else
wdenkaffae2b2002-08-17 09:36:01 +000051#define END_OF_MEM 0x02000000
wdenkc7de8292002-11-19 11:04:11 +000052#endif
wdenkaffae2b2002-08-17 09:36:01 +000053
54/*
55 * Trap & Exception support
56 */
57
58void
59print_backtrace(unsigned long *sp)
60{
61 int cnt = 0;
62 unsigned long i;
63
64 printf("Call backtrace: ");
65 while (sp) {
66 if ((uint)sp > END_OF_MEM)
67 break;
68
69 i = sp[1];
70 if (cnt++ % 7 == 0)
71 printf("\n");
72 printf("%08lX ", i);
73 if (cnt > 32) break;
74 sp = (unsigned long *)*sp;
75 }
76 printf("\n");
77}
78
79void
80show_regs(struct pt_regs * regs)
81{
82 int i;
83
84 printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
85 " %p TRAP: %04lx DAR: %08lX\n",
86 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
87 printf("MSR: %08lx EE: %01x PR: %01x FP:"
88 " %01x ME: %01x IR/DR: %01x%01x\n",
89 regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
90 regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
91 regs->msr&MSR_IR ? 1 : 0,
92 regs->msr&MSR_DR ? 1 : 0);
93
94 printf("\n");
95 for (i = 0; i < 32; i++) {
96 if ((i % 8) == 0)
97 {
98 printf("GPR%02d: ", i);
99 }
100
101 printf("%08lX ", regs->gpr[i]);
102 if ((i % 8) == 7)
103 {
104 printf("\n");
105 }
106 }
107}
108
109
110void
111_exception(int signr, struct pt_regs *regs)
112{
113 show_regs(regs);
114 print_backtrace((unsigned long *)regs->gpr[1]);
115 panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
116}
117
118void
119MachineCheckException(struct pt_regs *regs)
120{
121 unsigned long fixup;
122
123 /* Probing PCI using config cycles cause this exception
124 * when a device is not present. Catch it and return to
125 * the PCI exception handler.
126 */
127 if ((fixup = search_exception_table(regs->nip)) != 0) {
128 regs->nip = fixup;
129 return;
130 }
131
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500132#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000133 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
134 return;
135#endif
136
137 printf("Machine check in kernel mode.\n");
138 printf("Caused by (from msr): ");
139 printf("regs %p ",regs);
wdenk63e73c92004-02-23 22:22:28 +0000140 switch( regs->msr & 0x000F0000) {
141 case (0x80000000>>12):
wdenkaffae2b2002-08-17 09:36:01 +0000142 printf("Machine check signal - probably due to mm fault\n"
143 "with mmu off\n");
144 break;
wdenk63e73c92004-02-23 22:22:28 +0000145 case (0x80000000>>13):
wdenkaffae2b2002-08-17 09:36:01 +0000146 printf("Transfer error ack signal\n");
147 break;
wdenk63e73c92004-02-23 22:22:28 +0000148 case (0x80000000>>14):
wdenkaffae2b2002-08-17 09:36:01 +0000149 printf("Data parity signal\n");
150 break;
wdenk63e73c92004-02-23 22:22:28 +0000151 case (0x80000000>>15):
wdenkaffae2b2002-08-17 09:36:01 +0000152 printf("Address parity signal\n");
153 break;
154 default:
155 printf("Unknown values in msr\n");
156 }
157 show_regs(regs);
158 print_backtrace((unsigned long *)regs->gpr[1]);
159 panic("machine check");
160}
161
162void
163AlignmentException(struct pt_regs *regs)
164{
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500165#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000166 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
167 return;
168#endif
169 show_regs(regs);
170 print_backtrace((unsigned long *)regs->gpr[1]);
171 panic("Alignment Exception");
172}
173
174void
175ProgramCheckException(struct pt_regs *regs)
176{
wdenkc7de8292002-11-19 11:04:11 +0000177 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
178 int i, j;
179
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500180#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000181 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
182 return;
183#endif
184 show_regs(regs);
wdenkc7de8292002-11-19 11:04:11 +0000185
186 p = (unsigned char *) ((unsigned long)p & 0xFFFFFFE0);
187 p -= 32;
188 for (i = 0; i < 256; i+=16) {
189 printf("%08x: ", (unsigned int)p+i);
190 for (j = 0; j < 16; j++) {
191 printf("%02x ", p[i+j]);
192 }
193 printf("\n");
194 }
195
wdenkaffae2b2002-08-17 09:36:01 +0000196 print_backtrace((unsigned long *)regs->gpr[1]);
197 panic("Program Check Exception");
198}
199
200void
201SoftEmuException(struct pt_regs *regs)
202{
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500203#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000204 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
205 return;
206#endif
207 show_regs(regs);
208 print_backtrace((unsigned long *)regs->gpr[1]);
209 panic("Software Emulation Exception");
210}
211
212
213void
214UnknownException(struct pt_regs *regs)
215{
Jon Loeliger3a1ed1e2007-07-09 18:57:22 -0500216#if defined(CONFIG_CMD_KGDB)
wdenkaffae2b2002-08-17 09:36:01 +0000217 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
218 return;
219#endif
220 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
221 regs->nip, regs->msr, regs->trap);
222 _exception(0, regs);
223}
224
225/* Probe an address by reading. If not present, return -1, otherwise
226 * return 0.
227 */
228int
229addr_probe(uint *addr)
230{
231#if 0
232 int retval;
233
234 __asm__ __volatile__( \
235 "1: lwz %0,0(%1)\n" \
236 " eieio\n" \
237 " li %0,0\n" \
238 "2:\n" \
239 ".section .fixup,\"ax\"\n" \
240 "3: li %0,-1\n" \
241 " b 2b\n" \
242 ".section __ex_table,\"a\"\n" \
243 " .align 2\n" \
244 " .long 1b,3b\n" \
245 ".text" \
246 : "=r" (retval) : "r"(addr));
247
248 return (retval);
249#endif
250 return 0;
251}