2 * linux/arch/powerpc/kernel/traps.c
4 * Copyright 2007 Freescale Semiconductor.
5 * Copyright (C) 2003 Motorola
6 * Modified by Xianghua Xiao(x.xiao@motorola.com)
8 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
10 * Modified by Cort Dougan (cort@cs.nmt.edu)
11 * and Paul Mackerras (paulus@cs.anu.edu.au)
14 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16 * SPDX-License-Identifier: GPL-2.0+
20 * This file handles the architecture-dependent parts of hardware exceptions
26 #include <asm/processor.h>
28 DECLARE_GLOBAL_DATA_PTR;
30 /* Returns 0 if exception not found and fixup otherwise. */
31 extern unsigned long search_exception_table(unsigned long);
34 * End of addressable memory. This may be less than the actual
35 * amount of memory on the system if we're unable to keep all
36 * the memory mapped in.
38 extern ulong get_effective_memsize(void);
39 #define END_OF_MEM (gd->bd->bi_memstart + get_effective_memsize())
41 static __inline__ void set_tsr(unsigned long val)
43 asm volatile("mtspr 0x150, %0" : : "r" (val));
46 static __inline__ unsigned long get_esr(void)
49 asm volatile("mfspr %0, 0x03e" : "=r" (val) :);
53 #define ESR_MCI 0x80000000
54 #define ESR_PIL 0x08000000
55 #define ESR_PPR 0x04000000
56 #define ESR_PTR 0x02000000
57 #define ESR_DST 0x00800000
58 #define ESR_DIZ 0x00400000
59 #define ESR_U0F 0x00008000
61 #if defined(CONFIG_CMD_BEDBUG)
62 extern void do_bedbug_breakpoint(struct pt_regs *);
66 * Trap & Exception support
69 static void print_backtrace(unsigned long *sp)
74 printf("Call backtrace: ");
76 if ((uint)sp > END_OF_MEM)
84 sp = (unsigned long *)*sp;
89 void show_regs(struct pt_regs *regs)
93 printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
94 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
95 printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
96 regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
97 regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
98 regs->msr&MSR_IR ? 1 : 0,
99 regs->msr&MSR_DR ? 1 : 0);
102 for (i = 0; i < 32; i++) {
105 printf("GPR%02d: ", i);
108 printf("%08lX ", regs->gpr[i]);
117 static void _exception(int signr, struct pt_regs *regs)
120 print_backtrace((unsigned long *)regs->gpr[1]);
121 panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
124 void CritcalInputException(struct pt_regs *regs)
126 panic("Critical Input Exception");
129 int machinecheck_count = 0;
130 int machinecheck_error = 0;
131 void MachineCheckException(struct pt_regs *regs)
134 unsigned int mcsr, mcsrr0, mcsrr1, mcar;
136 /* Probing PCI using config cycles cause this exception
137 * when a device is not present. Catch it and return to
138 * the PCI exception handler.
140 if ((fixup = search_exception_table(regs->nip)) != 0) {
145 mcsrr0 = mfspr(SPRN_MCSRR0);
146 mcsrr1 = mfspr(SPRN_MCSRR1);
147 mcsr = mfspr(SPRN_MCSR);
148 mcar = mfspr(SPRN_MCAR);
150 machinecheck_count++;
151 machinecheck_error=1;
153 #if defined(CONFIG_CMD_KGDB)
154 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
158 printf("Machine check in kernel mode.\n");
159 printf("Caused by (from mcsr): ");
160 printf("mcsr = 0x%08x\n", mcsr);
161 if (mcsr & 0x80000000)
162 printf("Machine check input pin\n");
163 if (mcsr & 0x40000000)
164 printf("Instruction cache parity error\n");
165 if (mcsr & 0x20000000)
166 printf("Data cache push parity error\n");
167 if (mcsr & 0x10000000)
168 printf("Data cache parity error\n");
169 if (mcsr & 0x00000080)
170 printf("Bus instruction address error\n");
171 if (mcsr & 0x00000040)
172 printf("Bus Read address error\n");
173 if (mcsr & 0x00000020)
174 printf("Bus Write address error\n");
175 if (mcsr & 0x00000010)
176 printf("Bus Instruction data bus error\n");
177 if (mcsr & 0x00000008)
178 printf("Bus Read data bus error\n");
179 if (mcsr & 0x00000004)
180 printf("Bus Write bus error\n");
181 if (mcsr & 0x00000002)
182 printf("Bus Instruction parity error\n");
183 if (mcsr & 0x00000001)
184 printf("Bus Read parity error\n");
187 printf("MCSR=0x%08x \tMCSRR0=0x%08x \nMCSRR1=0x%08x \tMCAR=0x%08x\n",
188 mcsr, mcsrr0, mcsrr1, mcar);
189 print_backtrace((unsigned long *)regs->gpr[1]);
190 if (machinecheck_count > 10) {
191 panic("machine check count too high\n");
194 if (machinecheck_count > 1) {
195 regs->nip += 4; /* skip offending instruction */
196 printf("Skipping current instr, Returning to 0x%08lx\n",
199 printf("Returning back to 0x%08lx\n",regs->nip);
203 void AlignmentException(struct pt_regs *regs)
205 #if defined(CONFIG_CMD_KGDB)
206 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
211 print_backtrace((unsigned long *)regs->gpr[1]);
212 panic("Alignment Exception");
215 void ProgramCheckException(struct pt_regs *regs)
219 #if defined(CONFIG_CMD_KGDB)
220 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
227 if( esr_val & ESR_PIL )
228 printf( "** Illegal Instruction **\n" );
229 else if( esr_val & ESR_PPR )
230 printf( "** Privileged Instruction **\n" );
231 else if( esr_val & ESR_PTR )
232 printf( "** Trap Instruction **\n" );
234 print_backtrace((unsigned long *)regs->gpr[1]);
235 panic("Program Check Exception");
238 void PITException(struct pt_regs *regs)
241 * Reset PIT interrupt
246 * Call timer_interrupt routine in interrupts.c
248 timer_interrupt(NULL);
251 void UnknownException(struct pt_regs *regs)
253 #if defined(CONFIG_CMD_KGDB)
254 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
258 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
259 regs->nip, regs->msr, regs->trap);
263 void ExtIntException(struct pt_regs *regs)
265 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
269 #if defined(CONFIG_CMD_KGDB)
270 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
274 printf("External Interrupt Exception at PC: %lx, SR: %lx, vector=%lx",
275 regs->nip, regs->msr, regs->trap);
277 printf(" irq IACK0@%05x=%d\n",(int)&pic->iack0,vect);
279 print_backtrace((unsigned long *)regs->gpr[1]);
282 void DebugException(struct pt_regs *regs)
284 printf("Debugger trap at @ %lx\n", regs->nip );
286 #if defined(CONFIG_CMD_BEDBUG)
287 do_bedbug_breakpoint( regs );
291 /* Probe an address by reading. If not present, return -1, otherwise
294 int addr_probe(uint *addr)