blob: 97ed24a6eb4db946cc13cea2f2bf8a8927477011 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk42d1f032003-10-15 23:53:47 +00002/*
Stefan Roesea47a12b2010-04-15 16:07:28 +02003 * linux/arch/powerpc/kernel/traps.c
wdenk42d1f032003-10-15 23:53:47 +00004 *
Andy Fleming61a21e92007-08-14 01:34:21 -05005 * Copyright 2007 Freescale Semiconductor.
wdenk42d1f032003-10-15 23:53:47 +00006 * Copyright (C) 2003 Motorola
7 * Modified by Xianghua Xiao(x.xiao@motorola.com)
8 *
9 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
10 *
11 * Modified by Cort Dougan (cort@cs.nmt.edu)
12 * and Paul Mackerras (paulus@cs.anu.edu.au)
13 *
14 * (C) Copyright 2000
15 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk42d1f032003-10-15 23:53:47 +000016 */
17
18/*
19 * This file handles the architecture-dependent parts of hardware exceptions
20 */
21
22#include <common.h>
Simon Glass401d1c42020-10-30 21:38:53 -060023#include <asm/global_data.h>
Simon Glass25a58182020-05-10 11:40:06 -060024#include <asm/ptrace.h>
wdenk42d1f032003-10-15 23:53:47 +000025#include <command.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070026#include <init.h>
Simon Glassc30b7ad2019-11-14 12:57:41 -070027#include <irq_func.h>
Mike Frysingere39bf1e2010-02-08 15:30:16 -050028#include <kgdb.h>
wdenk42d1f032003-10-15 23:53:47 +000029#include <asm/processor.h>
30
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
32
wdenk42d1f032003-10-15 23:53:47 +000033/* Returns 0 if exception not found and fixup otherwise. */
34extern unsigned long search_exception_table(unsigned long);
35
wdenk9aea9532004-08-01 23:02:45 +000036/*
Becky Bruce3b9519f2008-05-14 13:10:04 -050037 * End of addressable memory. This may be less than the actual
38 * amount of memory on the system if we're unable to keep all
39 * the memory mapped in.
wdenk42d1f032003-10-15 23:53:47 +000040 */
Stefan Roesee207f222020-08-12 13:16:36 +020041#define END_OF_MEM (gd->ram_base + get_effective_memsize())
wdenk42d1f032003-10-15 23:53:47 +000042
43static __inline__ void set_tsr(unsigned long val)
44{
45 asm volatile("mtspr 0x150, %0" : : "r" (val));
46}
47
48static __inline__ unsigned long get_esr(void)
49{
50 unsigned long val;
51 asm volatile("mfspr %0, 0x03e" : "=r" (val) :);
52 return val;
53}
54
55#define ESR_MCI 0x80000000
56#define ESR_PIL 0x08000000
57#define ESR_PPR 0x04000000
58#define ESR_PTR 0x02000000
59#define ESR_DST 0x00800000
60#define ESR_DIZ 0x00400000
61#define ESR_U0F 0x00008000
62
wdenk42d1f032003-10-15 23:53:47 +000063/*
64 * Trap & Exception support
65 */
66
Kim Phillips20051f22012-10-29 13:34:29 +000067static void print_backtrace(unsigned long *sp)
wdenk42d1f032003-10-15 23:53:47 +000068{
69 int cnt = 0;
70 unsigned long i;
71
72 printf("Call backtrace: ");
73 while (sp) {
74 if ((uint)sp > END_OF_MEM)
75 break;
76
77 i = sp[1];
78 if (cnt++ % 7 == 0)
79 printf("\n");
80 printf("%08lX ", i);
81 if (cnt > 32) break;
82 sp = (unsigned long *)*sp;
83 }
84 printf("\n");
85}
86
Kim Phillips20051f22012-10-29 13:34:29 +000087void show_regs(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +000088{
89 int i;
90
91 printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
92 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
93 printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
94 regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
95 regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
96 regs->msr&MSR_IR ? 1 : 0,
97 regs->msr&MSR_DR ? 1 : 0);
98
99 printf("\n");
100 for (i = 0; i < 32; i++) {
101 if ((i % 8) == 0)
102 {
103 printf("GPR%02d: ", i);
104 }
105
106 printf("%08lX ", regs->gpr[i]);
107 if ((i % 8) == 7)
108 {
109 printf("\n");
110 }
111 }
112}
113
114
Kim Phillips20051f22012-10-29 13:34:29 +0000115static void _exception(int signr, struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000116{
117 show_regs(regs);
118 print_backtrace((unsigned long *)regs->gpr[1]);
119 panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
120}
121
Kim Phillips20051f22012-10-29 13:34:29 +0000122void CritcalInputException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000123{
124 panic("Critical Input Exception");
125}
126
Andy Fleming61a21e92007-08-14 01:34:21 -0500127int machinecheck_count = 0;
128int machinecheck_error = 0;
Kim Phillips20051f22012-10-29 13:34:29 +0000129void MachineCheckException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000130{
131 unsigned long fixup;
Andy Fleming61a21e92007-08-14 01:34:21 -0500132 unsigned int mcsr, mcsrr0, mcsrr1, mcar;
wdenk42d1f032003-10-15 23:53:47 +0000133
134 /* Probing PCI using config cycles cause this exception
135 * when a device is not present. Catch it and return to
136 * the PCI exception handler.
137 */
138 if ((fixup = search_exception_table(regs->nip)) != 0) {
139 regs->nip = fixup;
140 return;
141 }
142
Andy Fleming61a21e92007-08-14 01:34:21 -0500143 mcsrr0 = mfspr(SPRN_MCSRR0);
144 mcsrr1 = mfspr(SPRN_MCSRR1);
145 mcsr = mfspr(SPRN_MCSR);
146 mcar = mfspr(SPRN_MCAR);
147
148 machinecheck_count++;
149 machinecheck_error=1;
150
Jon Loeliger44312832007-07-09 19:06:00 -0500151#if defined(CONFIG_CMD_KGDB)
wdenk42d1f032003-10-15 23:53:47 +0000152 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
153 return;
154#endif
155
156 printf("Machine check in kernel mode.\n");
Andy Fleming61a21e92007-08-14 01:34:21 -0500157 printf("Caused by (from mcsr): ");
158 printf("mcsr = 0x%08x\n", mcsr);
159 if (mcsr & 0x80000000)
160 printf("Machine check input pin\n");
161 if (mcsr & 0x40000000)
162 printf("Instruction cache parity error\n");
163 if (mcsr & 0x20000000)
164 printf("Data cache push parity error\n");
165 if (mcsr & 0x10000000)
166 printf("Data cache parity error\n");
167 if (mcsr & 0x00000080)
168 printf("Bus instruction address error\n");
169 if (mcsr & 0x00000040)
170 printf("Bus Read address error\n");
171 if (mcsr & 0x00000020)
172 printf("Bus Write address error\n");
173 if (mcsr & 0x00000010)
174 printf("Bus Instruction data bus error\n");
175 if (mcsr & 0x00000008)
176 printf("Bus Read data bus error\n");
177 if (mcsr & 0x00000004)
178 printf("Bus Write bus error\n");
179 if (mcsr & 0x00000002)
180 printf("Bus Instruction parity error\n");
181 if (mcsr & 0x00000001)
182 printf("Bus Read parity error\n");
183
wdenk42d1f032003-10-15 23:53:47 +0000184 show_regs(regs);
Andy Fleming61a21e92007-08-14 01:34:21 -0500185 printf("MCSR=0x%08x \tMCSRR0=0x%08x \nMCSRR1=0x%08x \tMCAR=0x%08x\n",
186 mcsr, mcsrr0, mcsrr1, mcar);
wdenk42d1f032003-10-15 23:53:47 +0000187 print_backtrace((unsigned long *)regs->gpr[1]);
Andy Fleming61a21e92007-08-14 01:34:21 -0500188 if (machinecheck_count > 10) {
189 panic("machine check count too high\n");
190 }
191
192 if (machinecheck_count > 1) {
193 regs->nip += 4; /* skip offending instruction */
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700194 printf("Skipping current instr, Returning to 0x%08lx\n",
Andy Fleming61a21e92007-08-14 01:34:21 -0500195 regs->nip);
196 } else {
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700197 printf("Returning back to 0x%08lx\n",regs->nip);
Andy Fleming61a21e92007-08-14 01:34:21 -0500198 }
wdenk42d1f032003-10-15 23:53:47 +0000199}
200
Kim Phillips20051f22012-10-29 13:34:29 +0000201void AlignmentException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000202{
Jon Loeliger44312832007-07-09 19:06:00 -0500203#if defined(CONFIG_CMD_KGDB)
wdenk42d1f032003-10-15 23:53:47 +0000204 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
205 return;
206#endif
207
208 show_regs(regs);
209 print_backtrace((unsigned long *)regs->gpr[1]);
210 panic("Alignment Exception");
211}
212
Kim Phillips20051f22012-10-29 13:34:29 +0000213void ProgramCheckException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000214{
215 long esr_val;
216
Jon Loeliger44312832007-07-09 19:06:00 -0500217#if defined(CONFIG_CMD_KGDB)
wdenk42d1f032003-10-15 23:53:47 +0000218 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
219 return;
220#endif
221
222 show_regs(regs);
223
224 esr_val = get_esr();
225 if( esr_val & ESR_PIL )
226 printf( "** Illegal Instruction **\n" );
227 else if( esr_val & ESR_PPR )
228 printf( "** Privileged Instruction **\n" );
229 else if( esr_val & ESR_PTR )
230 printf( "** Trap Instruction **\n" );
231
232 print_backtrace((unsigned long *)regs->gpr[1]);
233 panic("Program Check Exception");
234}
235
Kim Phillips20051f22012-10-29 13:34:29 +0000236void PITException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000237{
238 /*
239 * Reset PIT interrupt
240 */
241 set_tsr(0x0c000000);
242
243 /*
244 * Call timer_interrupt routine in interrupts.c
245 */
246 timer_interrupt(NULL);
247}
248
Kim Phillips20051f22012-10-29 13:34:29 +0000249void UnknownException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000250{
Jon Loeliger44312832007-07-09 19:06:00 -0500251#if defined(CONFIG_CMD_KGDB)
wdenk42d1f032003-10-15 23:53:47 +0000252 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
253 return;
254#endif
255
256 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
257 regs->nip, regs->msr, regs->trap);
258 _exception(0, regs);
259}
Scott Wood3e3c9c12009-08-20 17:45:00 -0500260
Kim Phillips20051f22012-10-29 13:34:29 +0000261void ExtIntException(struct pt_regs *regs)
Andy Fleming61a21e92007-08-14 01:34:21 -0500262{
Kim Phillips680c6132010-08-09 18:39:57 -0500263 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala04db4002007-11-29 02:10:09 -0600264
Andy Fleming61a21e92007-08-14 01:34:21 -0500265 uint vect;
266
267#if defined(CONFIG_CMD_KGDB)
268 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
269 return;
270#endif
271
272 printf("External Interrupt Exception at PC: %lx, SR: %lx, vector=%lx",
273 regs->nip, regs->msr, regs->trap);
274 vect = pic->iack0;
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700275 printf(" irq IACK0@%05x=%d\n",(int)&pic->iack0,vect);
Andy Fleming61a21e92007-08-14 01:34:21 -0500276 show_regs(regs);
277 print_backtrace((unsigned long *)regs->gpr[1]);
Andy Fleming61a21e92007-08-14 01:34:21 -0500278}
wdenk42d1f032003-10-15 23:53:47 +0000279
Kim Phillips20051f22012-10-29 13:34:29 +0000280void DebugException(struct pt_regs *regs)
wdenk42d1f032003-10-15 23:53:47 +0000281{
282 printf("Debugger trap at @ %lx\n", regs->nip );
283 show_regs(regs);
wdenk42d1f032003-10-15 23:53:47 +0000284}