blob: ad005c3afe663972205a95856f23651da0c8cb54 [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 Loeligerdebb7352006-04-26 17:58:56 -050039/* Returns 0 if exception not found and fixup otherwise. */
40extern unsigned long search_exception_table(unsigned long);
41
Becky Bruce279726b2008-05-14 13:09:58 -050042/*
43 * End of addressable memory. This may be less than the actual
44 * amount of memory on the system if we're unable to keep all
45 * the memory mapped in.
46 */
47extern ulong get_effective_memsize(void);
48#define END_OF_MEM (gd->bd->bi_memstart + get_effective_memsize())
Jon Loeligerdebb7352006-04-26 17:58:56 -050049
50/*
51 * Trap & Exception support
52 */
53
54void
55print_backtrace(unsigned long *sp)
56{
Jon Loeligerdebb7352006-04-26 17:58:56 -050057 int cnt = 0;
58 unsigned long i;
59
60 printf("Call backtrace: ");
61 while (sp) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -050062 if ((uint) sp > END_OF_MEM)
Jon Loeligerdebb7352006-04-26 17:58:56 -050063 break;
64
65 i = sp[1];
66 if (cnt++ % 7 == 0)
67 printf("\n");
68 printf("%08lX ", i);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050069 if (cnt > 32)
70 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050071 sp = (unsigned long *)*sp;
72 }
73 printf("\n");
74}
75
76void
Jon Loeligerffff3ae2006-08-22 12:06:18 -050077show_regs(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -050078{
79 int i;
80
81 printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
82 " %p TRAP: %04lx DAR: %08lX\n",
83 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
84 printf("MSR: %08lx EE: %01x PR: %01x FP:"
85 " %01x ME: %01x IR/DR: %01x%01x\n",
Jon Loeligerffff3ae2006-08-22 12:06:18 -050086 regs->msr, regs->msr & MSR_EE ? 1 : 0,
87 regs->msr & MSR_PR ? 1 : 0, regs->msr & MSR_FP ? 1 : 0,
88 regs->msr & MSR_ME ? 1 : 0, regs->msr & MSR_IR ? 1 : 0,
89 regs->msr & MSR_DR ? 1 : 0);
Jon Loeligerdebb7352006-04-26 17:58:56 -050090
91 printf("\n");
Jon Loeligerffff3ae2006-08-22 12:06:18 -050092 for (i = 0; i < 32; i++) {
93 if ((i % 8) == 0) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050094 printf("GPR%02d: ", i);
95 }
96
97 printf("%08lX ", regs->gpr[i]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050098 if ((i % 8) == 7) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050099 printf("\n");
100 }
101 }
102}
103
104
105void
106_exception(int signr, struct pt_regs *regs)
107{
108 show_regs(regs);
109 print_backtrace((unsigned long *)regs->gpr[1]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500110 panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500111}
112
113void
114MachineCheckException(struct pt_regs *regs)
115{
116 unsigned long fixup;
117
118 /* Probing PCI using config cycles cause this exception
119 * when a device is not present. Catch it and return to
120 * the PCI exception handler.
121 */
122 if ((fixup = search_exception_table(regs->nip)) != 0) {
123 regs->nip = fixup;
124 return;
125 }
126
Jon Loeligerb24629f2007-06-13 13:23:15 -0500127#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500128 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500129 return;
130#endif
131
132 printf("Machine check in kernel mode.\n");
133 printf("Caused by (from msr): ");
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500134 printf("regs %p ", regs);
Jon Loeligercfc7a7f2007-08-02 14:42:20 -0500135 switch ( regs->msr & 0x001F0000) {
136 case (0x80000000>>11):
137 printf("MSS error. MSSSR0: %08x\n", mfspr(SPRN_MSSSR0));
138 break;
139 case (0x80000000>>12):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500140 printf("Machine check signal - probably due to mm fault\n"
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500141 "with mmu off\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500142 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500143 case (0x80000000 >> 13):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500144 printf("Transfer error ack signal\n");
145 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500146 case (0x80000000 >> 14):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500147 printf("Data parity signal\n");
148 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500149 case (0x80000000 >> 15):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500150 printf("Address parity signal\n");
151 break;
152 default:
153 printf("Unknown values in msr\n");
154 }
155 show_regs(regs);
156 print_backtrace((unsigned long *)regs->gpr[1]);
157 panic("machine check");
158}
159
160void
161AlignmentException(struct pt_regs *regs)
162{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500163#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500164 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500165 return;
166#endif
167 show_regs(regs);
168 print_backtrace((unsigned long *)regs->gpr[1]);
169 panic("Alignment Exception");
170}
171
172void
173ProgramCheckException(struct pt_regs *regs)
174{
175 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
176 int i, j;
177
Jon Loeligerb24629f2007-06-13 13:23:15 -0500178#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500179 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500180 return;
181#endif
182 show_regs(regs);
183
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500184 p = (unsigned char *)((unsigned long)p & 0xFFFFFFE0);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500185 p -= 32;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500186 for (i = 0; i < 256; i += 16) {
187 printf("%08x: ", (unsigned int)p + i);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500188 for (j = 0; j < 16; j++) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500189 printf("%02x ", p[i + j]);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500190 }
191 printf("\n");
192 }
193
194 print_backtrace((unsigned long *)regs->gpr[1]);
195 panic("Program Check Exception");
196}
197
198void
199SoftEmuException(struct pt_regs *regs)
200{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500201#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500202 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500203 return;
204#endif
205 show_regs(regs);
206 print_backtrace((unsigned long *)regs->gpr[1]);
207 panic("Software Emulation Exception");
208}
209
Jon Loeligerdebb7352006-04-26 17:58:56 -0500210void
211UnknownException(struct pt_regs *regs)
212{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500213#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500214 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500215 return;
216#endif
Wolfgang Denk9b55a252008-07-11 01:16:00 +0200217 printf("UnknownException regs@%lx\n", (ulong)regs);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500218 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
219 regs->nip, regs->msr, regs->trap);
220 _exception(0, regs);
221}
222
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500223/*
224 * Probe an address by reading.
225 * If not present, return -1,
226 * otherwise return 0.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500227 */
228int
229addr_probe(uint *addr)
230{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500231 return 0;
232}