blob: 406403e51277170dd08b88a6bcc9597c2d2e15d0 [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>
Mike Frysingere39bf1e2010-02-08 15:30:16 -050035#include <kgdb.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050036#include <asm/processor.h>
37
Wolfgang Denk1218abf2007-09-15 20:48:41 +020038DECLARE_GLOBAL_DATA_PTR;
39
Jon Loeligerdebb7352006-04-26 17:58:56 -050040/* Returns 0 if exception not found and fixup otherwise. */
41extern unsigned long search_exception_table(unsigned long);
42
Becky Bruce279726b2008-05-14 13:09:58 -050043/*
44 * End of addressable memory. This may be less than the actual
45 * amount of memory on the system if we're unable to keep all
46 * the memory mapped in.
47 */
48extern ulong get_effective_memsize(void);
49#define END_OF_MEM (gd->bd->bi_memstart + get_effective_memsize())
Jon Loeligerdebb7352006-04-26 17:58:56 -050050
51/*
52 * Trap & Exception support
53 */
54
55void
56print_backtrace(unsigned long *sp)
57{
Jon Loeligerdebb7352006-04-26 17:58:56 -050058 int cnt = 0;
59 unsigned long i;
60
61 printf("Call backtrace: ");
62 while (sp) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -050063 if ((uint) sp > END_OF_MEM)
Jon Loeligerdebb7352006-04-26 17:58:56 -050064 break;
65
66 i = sp[1];
67 if (cnt++ % 7 == 0)
68 printf("\n");
69 printf("%08lX ", i);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050070 if (cnt > 32)
71 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050072 sp = (unsigned long *)*sp;
73 }
74 printf("\n");
75}
76
77void
Jon Loeligerffff3ae2006-08-22 12:06:18 -050078show_regs(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -050079{
80 int i;
81
82 printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
83 " %p TRAP: %04lx DAR: %08lX\n",
84 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
85 printf("MSR: %08lx EE: %01x PR: %01x FP:"
86 " %01x ME: %01x IR/DR: %01x%01x\n",
Jon Loeligerffff3ae2006-08-22 12:06:18 -050087 regs->msr, regs->msr & MSR_EE ? 1 : 0,
88 regs->msr & MSR_PR ? 1 : 0, regs->msr & MSR_FP ? 1 : 0,
89 regs->msr & MSR_ME ? 1 : 0, regs->msr & MSR_IR ? 1 : 0,
90 regs->msr & MSR_DR ? 1 : 0);
Jon Loeligerdebb7352006-04-26 17:58:56 -050091
92 printf("\n");
Jon Loeligerffff3ae2006-08-22 12:06:18 -050093 for (i = 0; i < 32; i++) {
94 if ((i % 8) == 0) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050095 printf("GPR%02d: ", i);
96 }
97
98 printf("%08lX ", regs->gpr[i]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050099 if ((i % 8) == 7) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500100 printf("\n");
101 }
102 }
103}
104
105
106void
107_exception(int signr, struct pt_regs *regs)
108{
109 show_regs(regs);
110 print_backtrace((unsigned long *)regs->gpr[1]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500111 panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500112}
113
114void
115MachineCheckException(struct pt_regs *regs)
116{
117 unsigned long fixup;
118
119 /* Probing PCI using config cycles cause this exception
120 * when a device is not present. Catch it and return to
121 * the PCI exception handler.
122 */
123 if ((fixup = search_exception_table(regs->nip)) != 0) {
124 regs->nip = fixup;
125 return;
126 }
127
Jon Loeligerb24629f2007-06-13 13:23:15 -0500128#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500129 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500130 return;
131#endif
132
133 printf("Machine check in kernel mode.\n");
134 printf("Caused by (from msr): ");
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500135 printf("regs %p ", regs);
Jon Loeligercfc7a7f2007-08-02 14:42:20 -0500136 switch ( regs->msr & 0x001F0000) {
137 case (0x80000000>>11):
138 printf("MSS error. MSSSR0: %08x\n", mfspr(SPRN_MSSSR0));
139 break;
140 case (0x80000000>>12):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500141 printf("Machine check signal - probably due to mm fault\n"
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500142 "with mmu off\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500143 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500144 case (0x80000000 >> 13):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500145 printf("Transfer error ack signal\n");
146 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500147 case (0x80000000 >> 14):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500148 printf("Data parity signal\n");
149 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500150 case (0x80000000 >> 15):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500151 printf("Address parity signal\n");
152 break;
153 default:
154 printf("Unknown values in msr\n");
155 }
156 show_regs(regs);
157 print_backtrace((unsigned long *)regs->gpr[1]);
158 panic("machine check");
159}
160
161void
162AlignmentException(struct pt_regs *regs)
163{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500164#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500165 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500166 return;
167#endif
168 show_regs(regs);
169 print_backtrace((unsigned long *)regs->gpr[1]);
170 panic("Alignment Exception");
171}
172
173void
174ProgramCheckException(struct pt_regs *regs)
175{
176 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
177 int i, j;
178
Jon Loeligerb24629f2007-06-13 13:23:15 -0500179#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500180 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500181 return;
182#endif
183 show_regs(regs);
184
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500185 p = (unsigned char *)((unsigned long)p & 0xFFFFFFE0);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500186 p -= 32;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500187 for (i = 0; i < 256; i += 16) {
188 printf("%08x: ", (unsigned int)p + i);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500189 for (j = 0; j < 16; j++) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500190 printf("%02x ", p[i + j]);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500191 }
192 printf("\n");
193 }
194
195 print_backtrace((unsigned long *)regs->gpr[1]);
196 panic("Program Check Exception");
197}
198
199void
200SoftEmuException(struct pt_regs *regs)
201{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500202#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500203 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500204 return;
205#endif
206 show_regs(regs);
207 print_backtrace((unsigned long *)regs->gpr[1]);
208 panic("Software Emulation Exception");
209}
210
Jon Loeligerdebb7352006-04-26 17:58:56 -0500211void
212UnknownException(struct pt_regs *regs)
213{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500214#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500215 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500216 return;
217#endif
Wolfgang Denk9b55a252008-07-11 01:16:00 +0200218 printf("UnknownException regs@%lx\n", (ulong)regs);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500219 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
220 regs->nip, regs->msr, regs->trap);
221 _exception(0, regs);
222}
223
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500224/*
225 * Probe an address by reading.
226 * If not present, return -1,
227 * otherwise return 0.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500228 */
229int
230addr_probe(uint *addr)
231{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500232 return 0;
233}