blob: 786f4a5a7e59d90c66f4c261bda3f4915ebf3c8a [file] [log] [blame]
Rafal Jaworowski8993e542007-07-27 14:43:59 +02001/*
2 * (C) Copyright 2000 - 2007
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 *
22 * Derived from the MPC83xx code.
23 */
24
25/*
26 * This file handles the architecture-dependent parts of hardware
27 * exceptions
28 */
29
30#include <common.h>
Mike Frysingere39bf1e2010-02-08 15:30:16 -050031#include <kgdb.h>
Rafal Jaworowski8993e542007-07-27 14:43:59 +020032#include <asm/processor.h>
33
34DECLARE_GLOBAL_DATA_PTR;
35
36extern unsigned long search_exception_table(unsigned long);
37
Becky Bruce9b124a62008-05-14 13:09:51 -050038/*
39 * End of addressable memory. This may be less than the actual
40 * amount of memory on the system if we're unable to keep all
41 * the memory mapped in.
42 */
43extern ulong get_effective_memsize(void);
44#define END_OF_MEM (gd->bd->bi_memstart + get_effective_memsize())
Rafal Jaworowski8993e542007-07-27 14:43:59 +020045
46/*
47 * Trap & Exception support
48 */
49
50void
51print_backtrace (unsigned long *sp)
52{
53 int cnt = 0;
54 unsigned long i;
55
56 puts ("Call backtrace: ");
57 while (sp) {
58 if ((uint)sp > END_OF_MEM)
59 break;
60
61 i = sp[1];
62 if (cnt++ % 7 == 0)
63 putc ('\n');
64 printf ("%08lX ", i);
65 if (cnt > 32) break;
66 sp = (unsigned long *) *sp;
67 }
68 putc ('\n');
69}
70
71void show_regs (struct pt_regs * regs)
72{
73 int i;
74
75 printf ("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
76 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
77 printf ("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
78 regs->msr, regs->msr & MSR_EE ? 1 : 0, regs->msr & MSR_PR ? 1 : 0,
79 regs->msr & MSR_FP ? 1 : 0,regs->msr & MSR_ME ? 1 : 0,
80 regs->msr & MSR_IR ? 1 : 0,
81 regs->msr & MSR_DR ? 1 : 0);
82
83 putc ('\n');
84 for (i = 0; i < 32; i++) {
85 if ((i % 8) == 0) {
86 printf ("GPR%02d: ", i);
87 }
88
89 printf ("%08lX ", regs->gpr[i]);
90 if ((i % 8) == 7) {
91 putc ('\n');
92 }
93 }
94}
95
96
97void
98_exception (int signr, struct pt_regs *regs)
99{
100 show_regs (regs);
101 print_backtrace ((unsigned long *)regs->gpr[1]);
102 panic ("Exception at pc %lx signal %d", regs->nip,signr);
103}
104
105
106void
107MachineCheckException (struct pt_regs *regs)
108{
109 unsigned long fixup;
110
111 if ((fixup = search_exception_table (regs->nip)) != 0) {
112 regs->nip = fixup;
113 return;
114 }
115
Wolfgang Denkafaac862007-08-12 14:27:39 +0200116#ifdef CONFIG_CMD_KGDB
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200117 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
118 return;
119#endif
120
121 puts ("Machine check.\nCaused by (from msr): ");
122 printf ("regs %p ",regs);
123 switch (regs->msr & 0x00FF0000) {
124 case (0x80000000 >> 10):
125 puts ("Instruction cache parity signal\n");
126 break;
127 case (0x80000000 >> 11):
128 puts ("Data cache parity signal\n");
129 break;
130 case (0x80000000 >> 12):
131 puts ("Machine check signal\n");
132 break;
133 case (0x80000000 >> 13):
134 puts ("Transfer error ack signal\n");
135 break;
136 case (0x80000000 >> 14):
137 puts ("Data parity signal\n");
138 break;
139 case (0x80000000 >> 15):
140 puts ("Address parity signal\n");
141 break;
142 default:
143 puts ("Unknown values in msr\n");
144 }
145 show_regs (regs);
146 print_backtrace ((unsigned long *)regs->gpr[1]);
147
148 panic ("machine check");
149}
150
151void
152AlignmentException (struct pt_regs *regs)
153{
Wolfgang Denkafaac862007-08-12 14:27:39 +0200154#ifdef CONFIG_CMD_KGDB
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200155 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
156 return;
157#endif
158 show_regs (regs);
159 print_backtrace ((unsigned long *)regs->gpr[1]);
160 panic ("Alignment Exception");
161}
162
163void
164ProgramCheckException (struct pt_regs *regs)
165{
Wolfgang Denkafaac862007-08-12 14:27:39 +0200166#ifdef CONFIG_CMD_KGDB
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200167 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
168 return;
169#endif
170 show_regs (regs);
171 print_backtrace ((unsigned long *)regs->gpr[1]);
172 panic ("Program Check Exception");
173}
174
175void
176SoftEmuException (struct pt_regs *regs)
177{
Wolfgang Denkafaac862007-08-12 14:27:39 +0200178#ifdef CONFIG_CMD_KGDB
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200179 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
180 return;
181#endif
182 show_regs (regs);
183 print_backtrace ((unsigned long *)regs->gpr[1]);
184 panic ("Software Emulation Exception");
185}
186
187
188void
189UnknownException (struct pt_regs *regs)
190{
Wolfgang Denkafaac862007-08-12 14:27:39 +0200191#ifdef CONFIG_CMD_KGDB
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200192 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
193 return;
194#endif
195 printf ("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
196 regs->nip, regs->msr, regs->trap);
197 _exception (0, regs);
198}
199
Wolfgang Denkafaac862007-08-12 14:27:39 +0200200#ifdef CONFIG_CMD_BEDBUG
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200201extern void do_bedbug_breakpoint (struct pt_regs *);
202#endif
203
204void
205DebugException (struct pt_regs *regs)
206{
207 printf ("Debugger trap at @ %lx\n", regs->nip );
208 show_regs (regs);
Wolfgang Denkafaac862007-08-12 14:27:39 +0200209#ifdef CONFIG_CMD_BEDBUG
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200210 do_bedbug_breakpoint (regs);
211#endif
212}