blob: 13f386ddc847e7145957d0ba73f142f4bb99cbdf [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Jon Loeligerdebb7352006-04-26 17:58:56 -05002 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
3 *
4 * Modified by Cort Dougan (cort@cs.nmt.edu)
5 * and Paul Mackerras (paulus@cs.anu.edu.au)
6 *
7 * (C) Copyright 2000
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29/*
30 * This file handles the architecture-dependent parts of hardware exceptions
31 */
32
33#include <common.h>
34#include <command.h>
35#include <asm/processor.h>
36
Wolfgang Denk1218abf2007-09-15 20:48:41 +020037DECLARE_GLOBAL_DATA_PTR;
38
Jon Loeligerb24629f2007-06-13 13:23:15 -050039#if defined(CONFIG_CMD_KGDB)
Jon Loeligerdebb7352006-04-26 17:58:56 -050040int (*debugger_exception_handler)(struct pt_regs *) = 0;
41#endif
42
43/* Returns 0 if exception not found and fixup otherwise. */
44extern unsigned long search_exception_table(unsigned long);
45
Becky Bruce279726b2008-05-14 13:09:58 -050046/*
47 * End of addressable memory. This may be less than the actual
48 * amount of memory on the system if we're unable to keep all
49 * the memory mapped in.
50 */
51extern ulong get_effective_memsize(void);
52#define END_OF_MEM (gd->bd->bi_memstart + get_effective_memsize())
Jon Loeligerdebb7352006-04-26 17:58:56 -050053
54/*
55 * Trap & Exception support
56 */
57
58void
59print_backtrace(unsigned long *sp)
60{
Jon Loeligerdebb7352006-04-26 17:58:56 -050061 int cnt = 0;
62 unsigned long i;
63
64 printf("Call backtrace: ");
65 while (sp) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -050066 if ((uint) sp > END_OF_MEM)
Jon Loeligerdebb7352006-04-26 17:58:56 -050067 break;
68
69 i = sp[1];
70 if (cnt++ % 7 == 0)
71 printf("\n");
72 printf("%08lX ", i);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050073 if (cnt > 32)
74 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050075 sp = (unsigned long *)*sp;
76 }
77 printf("\n");
78}
79
80void
Jon Loeligerffff3ae2006-08-22 12:06:18 -050081show_regs(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -050082{
83 int i;
84
85 printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
86 " %p TRAP: %04lx DAR: %08lX\n",
87 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
88 printf("MSR: %08lx EE: %01x PR: %01x FP:"
89 " %01x ME: %01x IR/DR: %01x%01x\n",
Jon Loeligerffff3ae2006-08-22 12:06:18 -050090 regs->msr, regs->msr & MSR_EE ? 1 : 0,
91 regs->msr & MSR_PR ? 1 : 0, regs->msr & MSR_FP ? 1 : 0,
92 regs->msr & MSR_ME ? 1 : 0, regs->msr & MSR_IR ? 1 : 0,
93 regs->msr & MSR_DR ? 1 : 0);
Jon Loeligerdebb7352006-04-26 17:58:56 -050094
95 printf("\n");
Jon Loeligerffff3ae2006-08-22 12:06:18 -050096 for (i = 0; i < 32; i++) {
97 if ((i % 8) == 0) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050098 printf("GPR%02d: ", i);
99 }
100
101 printf("%08lX ", regs->gpr[i]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500102 if ((i % 8) == 7) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500103 printf("\n");
104 }
105 }
106}
107
108
109void
110_exception(int signr, struct pt_regs *regs)
111{
112 show_regs(regs);
113 print_backtrace((unsigned long *)regs->gpr[1]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500114 panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500115}
116
117void
118MachineCheckException(struct pt_regs *regs)
119{
120 unsigned long fixup;
121
122 /* Probing PCI using config cycles cause this exception
123 * when a device is not present. Catch it and return to
124 * the PCI exception handler.
125 */
126 if ((fixup = search_exception_table(regs->nip)) != 0) {
127 regs->nip = fixup;
128 return;
129 }
130
Jon Loeligerb24629f2007-06-13 13:23:15 -0500131#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500132 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500133 return;
134#endif
135
136 printf("Machine check in kernel mode.\n");
137 printf("Caused by (from msr): ");
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500138 printf("regs %p ", regs);
Jon Loeligercfc7a7f2007-08-02 14:42:20 -0500139 switch ( regs->msr & 0x001F0000) {
140 case (0x80000000>>11):
141 printf("MSS error. MSSSR0: %08x\n", mfspr(SPRN_MSSSR0));
142 break;
143 case (0x80000000>>12):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500144 printf("Machine check signal - probably due to mm fault\n"
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500145 "with mmu off\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500146 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500147 case (0x80000000 >> 13):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500148 printf("Transfer error ack signal\n");
149 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500150 case (0x80000000 >> 14):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500151 printf("Data parity signal\n");
152 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500153 case (0x80000000 >> 15):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500154 printf("Address parity signal\n");
155 break;
156 default:
157 printf("Unknown values in msr\n");
158 }
159 show_regs(regs);
160 print_backtrace((unsigned long *)regs->gpr[1]);
161 panic("machine check");
162}
163
164void
165AlignmentException(struct pt_regs *regs)
166{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500167#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500168 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500169 return;
170#endif
171 show_regs(regs);
172 print_backtrace((unsigned long *)regs->gpr[1]);
173 panic("Alignment Exception");
174}
175
176void
177ProgramCheckException(struct pt_regs *regs)
178{
179 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
180 int i, j;
181
Jon Loeligerb24629f2007-06-13 13:23:15 -0500182#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500183 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500184 return;
185#endif
186 show_regs(regs);
187
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500188 p = (unsigned char *)((unsigned long)p & 0xFFFFFFE0);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500189 p -= 32;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500190 for (i = 0; i < 256; i += 16) {
191 printf("%08x: ", (unsigned int)p + i);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500192 for (j = 0; j < 16; j++) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500193 printf("%02x ", p[i + j]);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500194 }
195 printf("\n");
196 }
197
198 print_backtrace((unsigned long *)regs->gpr[1]);
199 panic("Program Check Exception");
200}
201
202void
203SoftEmuException(struct pt_regs *regs)
204{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500205#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500206 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500207 return;
208#endif
209 show_regs(regs);
210 print_backtrace((unsigned long *)regs->gpr[1]);
211 panic("Software Emulation Exception");
212}
213
Jon Loeligerdebb7352006-04-26 17:58:56 -0500214void
215UnknownException(struct pt_regs *regs)
216{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500217#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500218 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500219 return;
220#endif
Wolfgang Denk9b55a252008-07-11 01:16:00 +0200221 printf("UnknownException regs@%lx\n", (ulong)regs);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500222 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
223 regs->nip, regs->msr, regs->trap);
224 _exception(0, regs);
225}
226
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500227/*
228 * Probe an address by reading.
229 * If not present, return -1,
230 * otherwise return 0.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500231 */
232int
233addr_probe(uint *addr)
234{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500235 return 0;
236}