]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/mpc85xx/traps.c
* Patches by Xianghua Xiao, 15 Oct 2003:
[karo-tx-uboot.git] / cpu / mpc85xx / traps.c
1 /*
2  * linux/arch/ppc/kernel/traps.c
3  *
4  * Copyright (C) 2003 Motorola
5  * Modified by Xianghua Xiao(x.xiao@motorola.com)
6  *
7  * Copyright (C) 1995-1996  Gary Thomas (gdt@linuxppc.org)
8  *
9  * Modified by Cort Dougan (cort@cs.nmt.edu)
10  * and Paul Mackerras (paulus@cs.anu.edu.au)
11  *
12  * (C) Copyright 2000
13  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
14  *
15  * See file CREDITS for list of people who contributed to this
16  * project.
17  *
18  * This program is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU General Public License as
20  * published by the Free Software Foundation; either version 2 of
21  * the License, or (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31  * MA 02111-1307 USA
32  */
33
34 /*
35  * This file handles the architecture-dependent parts of hardware exceptions
36  */
37
38 #include <common.h>
39 #include <command.h>
40 #include <asm/processor.h>
41
42 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
43 int (*debugger_exception_handler)(struct pt_regs *) = 0;
44 #endif
45
46 /* Returns 0 if exception not found and fixup otherwise.  */
47 extern unsigned long search_exception_table(unsigned long);
48
49 /* THIS NEEDS CHANGING to use the board info structure.
50  */
51 #define END_OF_MEM      (CFG_SDRAM_SIZE * 1024 * 1024)
52
53
54 static __inline__ void set_tsr(unsigned long val)
55 {
56         asm volatile("mtspr 0x150, %0" : : "r" (val));
57 }
58
59 static __inline__ unsigned long get_esr(void)
60 {
61         unsigned long val;
62         asm volatile("mfspr %0, 0x03e" : "=r" (val) :);
63         return val;
64 }
65
66 #define ESR_MCI 0x80000000
67 #define ESR_PIL 0x08000000
68 #define ESR_PPR 0x04000000
69 #define ESR_PTR 0x02000000
70 #define ESR_DST 0x00800000
71 #define ESR_DIZ 0x00400000
72 #define ESR_U0F 0x00008000
73
74 #if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
75 extern void do_bedbug_breakpoint(struct pt_regs *);
76 #endif
77
78 /*
79  * Trap & Exception support
80  */
81
82 void
83 print_backtrace(unsigned long *sp)
84 {
85         int cnt = 0;
86         unsigned long i;
87
88         printf("Call backtrace: ");
89         while (sp) {
90                 if ((uint)sp > END_OF_MEM)
91                         break;
92
93                 i = sp[1];
94                 if (cnt++ % 7 == 0)
95                         printf("\n");
96                 printf("%08lX ", i);
97                 if (cnt > 32) break;
98                 sp = (unsigned long *)*sp;
99         }
100         printf("\n");
101 }
102
103 void show_regs(struct pt_regs * regs)
104 {
105         int i;
106
107         printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
108                regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
109         printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
110                regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
111                regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
112                regs->msr&MSR_IR ? 1 : 0,
113                regs->msr&MSR_DR ? 1 : 0);
114
115         printf("\n");
116         for (i = 0;  i < 32;  i++) {
117                 if ((i % 8) == 0)
118                 {
119                         printf("GPR%02d: ", i);
120                 }
121
122                 printf("%08lX ", regs->gpr[i]);
123                 if ((i % 8) == 7)
124                 {
125                         printf("\n");
126                 }
127         }
128 }
129
130
131 void
132 _exception(int signr, struct pt_regs *regs)
133 {
134         show_regs(regs);
135         print_backtrace((unsigned long *)regs->gpr[1]);
136         panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
137 }
138
139 void
140 CritcalInputException(struct pt_regs *regs)
141 {
142         panic("Critical Input Exception");
143 }
144
145 void
146 MachineCheckException(struct pt_regs *regs)
147 {
148         unsigned long fixup;
149
150         /* Probing PCI using config cycles cause this exception
151          * when a device is not present.  Catch it and return to
152          * the PCI exception handler.
153          */
154         if ((fixup = search_exception_table(regs->nip)) != 0) {
155                 regs->nip = fixup;
156                 return;
157         }
158
159 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
160         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
161                 return;
162 #endif
163
164         printf("Machine check in kernel mode.\n");
165         printf("Caused by (from msr): ");
166         printf("regs %p ",regs);
167         switch( regs->msr & 0x0000F000)
168         {
169         case (1<<12) :
170                 printf("Machine check signal - probably due to mm fault\n"
171                        "with mmu off\n");
172                 break;
173         case (1<<13) :
174                 printf("Transfer error ack signal\n");
175                 break;
176         case (1<<14) :
177                 printf("Data parity signal\n");
178                 break;
179         case (1<<15) :
180                 printf("Address parity signal\n");
181                 break;
182         default:
183                 printf("Unknown values in msr\n");
184         }
185         show_regs(regs);
186         print_backtrace((unsigned long *)regs->gpr[1]);
187         panic("machine check");
188 }
189
190 void
191 AlignmentException(struct pt_regs *regs)
192 {
193 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
194         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
195                 return;
196 #endif
197
198         show_regs(regs);
199         print_backtrace((unsigned long *)regs->gpr[1]);
200         panic("Alignment Exception");
201 }
202
203 void
204 ProgramCheckException(struct pt_regs *regs)
205 {
206         long esr_val;
207
208 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
209         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
210                 return;
211 #endif
212
213         show_regs(regs);
214
215         esr_val = get_esr();
216         if( esr_val & ESR_PIL )
217                 printf( "** Illegal Instruction **\n" );
218         else if( esr_val & ESR_PPR )
219                 printf( "** Privileged Instruction **\n" );
220         else if( esr_val & ESR_PTR )
221                 printf( "** Trap Instruction **\n" );
222
223         print_backtrace((unsigned long *)regs->gpr[1]);
224         panic("Program Check Exception");
225 }
226
227 void
228 PITException(struct pt_regs *regs)
229 {
230         /*
231          * Reset PIT interrupt
232          */
233         set_tsr(0x0c000000);
234
235         /*
236          * Call timer_interrupt routine in interrupts.c
237          */
238         timer_interrupt(NULL);
239 }
240
241
242 void
243 UnknownException(struct pt_regs *regs)
244 {
245 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
246         if (debugger_exception_handler && (*debugger_exception_handler)(regs))
247                 return;
248 #endif
249
250         printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
251                regs->nip, regs->msr, regs->trap);
252         _exception(0, regs);
253 }
254
255 void
256 DebugException(struct pt_regs *regs)
257 {
258         printf("Debugger trap at @ %lx\n", regs->nip );
259         show_regs(regs);
260 #if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
261         do_bedbug_breakpoint( regs );
262 #endif
263 }
264
265 /* Probe an address by reading.  If not present, return -1, otherwise
266  * return 0.
267  */
268 int
269 addr_probe(uint *addr)
270 {
271         return 0;
272 }