]> git.sur5r.net Git - u-boot/blob - cpu/mpc86xx/traps.c
Initial support for MPC8641 HPCN board.
[u-boot] / cpu / mpc86xx / traps.c
1 /*
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
39 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
40 int (*debugger_exception_handler)(struct pt_regs *) = 0;
41 #endif
42
43 /* Returns 0 if exception not found and fixup otherwise.  */
44 extern unsigned long search_exception_table(unsigned long);
45
46 #define END_OF_MEM (gd->bd->bi_memstart + gd->bd->bi_memsize)
47
48 /*
49  * Trap & Exception support
50  */
51
52 void
53 print_backtrace(unsigned long *sp)
54 {
55         DECLARE_GLOBAL_DATA_PTR;
56
57         int cnt = 0;
58         unsigned long i;
59
60         printf("Call backtrace: ");
61         while (sp) {
62                 if ((uint)sp > END_OF_MEM)
63                         break;
64
65                 i = sp[1];
66                 if (cnt++ % 7 == 0)
67                         printf("\n");
68                 printf("%08lX ", i);
69                 if (cnt > 32) break;
70                 sp = (unsigned long *)*sp;
71         }
72         printf("\n");
73 }
74
75 void
76 show_regs(struct pt_regs * regs)
77 {
78         int i;
79
80         printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
81                " %p TRAP: %04lx DAR: %08lX\n",
82                regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
83         printf("MSR: %08lx EE: %01x PR: %01x FP:"
84                " %01x ME: %01x IR/DR: %01x%01x\n",
85                regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
86                regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
87                regs->msr&MSR_IR ? 1 : 0,
88                regs->msr&MSR_DR ? 1 : 0);
89
90         printf("\n");
91         for (i = 0;  i < 32;  i++) {
92                 if ((i % 8) == 0)
93                 {
94                         printf("GPR%02d: ", i);
95                 }
96
97                 printf("%08lX ", regs->gpr[i]);
98                 if ((i % 8) == 7)
99                 {
100                         printf("\n");
101                 }
102         }
103 }
104
105
106 void
107 _exception(int signr, struct pt_regs *regs)
108 {
109         show_regs(regs);
110         print_backtrace((unsigned long *)regs->gpr[1]);
111         panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
112 }
113
114 void
115 MachineCheckException(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
128 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
129         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
130                 return;
131 #endif
132
133         printf("Machine check in kernel mode.\n");
134         printf("Caused by (from msr): ");
135         printf("regs %p ",regs);
136         switch( regs->msr & 0x000F0000) {
137         case (0x80000000>>12):
138                 printf("Machine check signal - probably due to mm fault\n"
139                         "with mmu off\n");
140                 break;
141         case (0x80000000>>13):
142                 printf("Transfer error ack signal\n");
143                 break;
144         case (0x80000000>>14):
145                 printf("Data parity signal\n");
146                 break;
147         case (0x80000000>>15):
148                 printf("Address parity signal\n");
149                 break;
150         default:
151                 printf("Unknown values in msr\n");
152         }
153         show_regs(regs);
154         print_backtrace((unsigned long *)regs->gpr[1]);
155         panic("machine check");
156 }
157
158 void
159 AlignmentException(struct pt_regs *regs)
160 {
161 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
162         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
163                 return;
164 #endif
165         show_regs(regs);
166         print_backtrace((unsigned long *)regs->gpr[1]);
167         panic("Alignment Exception");
168 }
169
170 void
171 ProgramCheckException(struct pt_regs *regs)
172 {
173         unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
174         int i, j;
175
176 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
177         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
178                 return;
179 #endif
180         show_regs(regs);
181
182         p = (unsigned char *) ((unsigned long)p & 0xFFFFFFE0);
183         p -= 32;
184         for (i = 0; i < 256; i+=16) {
185                 printf("%08x: ", (unsigned int)p+i);
186                 for (j = 0; j < 16; j++) {
187                         printf("%02x ", p[i+j]);
188                 }
189                 printf("\n");
190         }
191
192         print_backtrace((unsigned long *)regs->gpr[1]);
193         panic("Program Check Exception");
194 }
195
196 void
197 SoftEmuException(struct pt_regs *regs)
198 {
199 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
200         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
201                 return;
202 #endif
203         show_regs(regs);
204         print_backtrace((unsigned long *)regs->gpr[1]);
205         panic("Software Emulation Exception");
206 }
207
208
209 void
210 UnknownException(struct pt_regs *regs)
211 {
212 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
213         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
214                 return;
215 #endif
216         printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
217                regs->nip, regs->msr, regs->trap);
218         _exception(0, regs);
219 }
220
221 /* Probe an address by reading.  If not present, return -1, otherwise
222  * return 0.
223  */
224 int
225 addr_probe(uint *addr)
226 {
227 #if 0
228         int     retval;
229
230         __asm__ __volatile__(                   \
231                 "1:     lwz %0,0(%1)\n"         \
232                 "       eieio\n"                \
233                 "       li %0,0\n"              \
234                 "2:\n"                          \
235                 ".section .fixup,\"ax\"\n"      \
236                 "3:     li %0,-1\n"             \
237                 "       b 2b\n"                 \
238                 ".section __ex_table,\"a\"\n"   \
239                 "       .align 2\n"             \
240                 "       .long 1b,3b\n"          \
241                 ".text"                         \
242                 : "=r" (retval) : "r"(addr));
243
244         return (retval);
245 #endif
246         return 0;
247 }
248
249
250
251
252
253