blob: 3ee0ec859cf84e94beceb8963007575d7d88cdbd [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jon Loeliger5c8aa972006-04-26 17:58:56 -05002/*
Jon Loeliger5c8aa972006-04-26 17:58:56 -05003 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 *
5 * Modified by Cort Dougan (cort@cs.nmt.edu)
6 * and Paul Mackerras (paulus@cs.anu.edu.au)
7 *
8 * (C) Copyright 2000
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Jon Loeliger5c8aa972006-04-26 17:58:56 -050010 */
11
12/*
13 * This file handles the architecture-dependent parts of hardware exceptions
14 */
15
16#include <common.h>
Simon Glass6b9f0102020-05-10 11:40:06 -060017#include <asm/ptrace.h>
Jon Loeliger5c8aa972006-04-26 17:58:56 -050018#include <command.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070019#include <init.h>
Mike Frysinger629d88b2010-02-08 15:30:16 -050020#include <kgdb.h>
Jon Loeliger5c8aa972006-04-26 17:58:56 -050021#include <asm/processor.h>
22
Wolfgang Denkd112a2c2007-09-15 20:48:41 +020023DECLARE_GLOBAL_DATA_PTR;
24
Jon Loeliger5c8aa972006-04-26 17:58:56 -050025/* Returns 0 if exception not found and fixup otherwise. */
26extern unsigned long search_exception_table(unsigned long);
27
Becky Bruce6b3fbe42008-05-14 13:09:58 -050028/*
29 * End of addressable memory. This may be less than the actual
30 * amount of memory on the system if we're unable to keep all
31 * the memory mapped in.
32 */
Stefan Roesea13a2aa2020-08-12 13:16:36 +020033#define END_OF_MEM (gd->ram_base + get_effective_memsize())
Jon Loeliger5c8aa972006-04-26 17:58:56 -050034
35/*
36 * Trap & Exception support
37 */
38
Kim Phillipse16737f2012-10-29 13:34:29 +000039static void print_backtrace(unsigned long *sp)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050040{
Jon Loeliger5c8aa972006-04-26 17:58:56 -050041 int cnt = 0;
42 unsigned long i;
43
44 printf("Call backtrace: ");
45 while (sp) {
Jon Loeligera1295442006-08-22 12:06:18 -050046 if ((uint) sp > END_OF_MEM)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050047 break;
48
49 i = sp[1];
50 if (cnt++ % 7 == 0)
51 printf("\n");
52 printf("%08lX ", i);
Jon Loeligera1295442006-08-22 12:06:18 -050053 if (cnt > 32)
54 break;
Jon Loeliger5c8aa972006-04-26 17:58:56 -050055 sp = (unsigned long *)*sp;
56 }
57 printf("\n");
58}
59
Kim Phillipse16737f2012-10-29 13:34:29 +000060void show_regs(struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050061{
62 int i;
63
64 printf("NIP: %08lX XER: %08lX LR: %08lX REGS:"
65 " %p TRAP: %04lx DAR: %08lX\n",
66 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
67 printf("MSR: %08lx EE: %01x PR: %01x FP:"
68 " %01x ME: %01x IR/DR: %01x%01x\n",
Jon Loeligera1295442006-08-22 12:06:18 -050069 regs->msr, regs->msr & MSR_EE ? 1 : 0,
70 regs->msr & MSR_PR ? 1 : 0, regs->msr & MSR_FP ? 1 : 0,
71 regs->msr & MSR_ME ? 1 : 0, regs->msr & MSR_IR ? 1 : 0,
72 regs->msr & MSR_DR ? 1 : 0);
Jon Loeliger5c8aa972006-04-26 17:58:56 -050073
74 printf("\n");
Jon Loeligera1295442006-08-22 12:06:18 -050075 for (i = 0; i < 32; i++) {
76 if ((i % 8) == 0) {
Jon Loeliger5c8aa972006-04-26 17:58:56 -050077 printf("GPR%02d: ", i);
78 }
79
80 printf("%08lX ", regs->gpr[i]);
Jon Loeligera1295442006-08-22 12:06:18 -050081 if ((i % 8) == 7) {
Jon Loeliger5c8aa972006-04-26 17:58:56 -050082 printf("\n");
83 }
84 }
85}
86
87
Kim Phillipse16737f2012-10-29 13:34:29 +000088static void _exception(int signr, struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050089{
90 show_regs(regs);
91 print_backtrace((unsigned long *)regs->gpr[1]);
Jon Loeligera1295442006-08-22 12:06:18 -050092 panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
Jon Loeliger5c8aa972006-04-26 17:58:56 -050093}
94
Kim Phillipse16737f2012-10-29 13:34:29 +000095void MachineCheckException(struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050096{
97 unsigned long fixup;
98
99 /* Probing PCI using config cycles cause this exception
100 * when a device is not present. Catch it and return to
101 * the PCI exception handler.
102 */
103 if ((fixup = search_exception_table(regs->nip)) != 0) {
104 regs->nip = fixup;
105 return;
106 }
107
Jon Loeliger07d53492007-06-13 13:23:15 -0500108#if defined(CONFIG_CMD_KGDB)
Jon Loeligera1295442006-08-22 12:06:18 -0500109 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500110 return;
111#endif
112
113 printf("Machine check in kernel mode.\n");
114 printf("Caused by (from msr): ");
Jon Loeligera1295442006-08-22 12:06:18 -0500115 printf("regs %p ", regs);
Jon Loeliger11c99582007-08-02 14:42:20 -0500116 switch ( regs->msr & 0x001F0000) {
117 case (0x80000000>>11):
118 printf("MSS error. MSSSR0: %08x\n", mfspr(SPRN_MSSSR0));
119 break;
120 case (0x80000000>>12):
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500121 printf("Machine check signal - probably due to mm fault\n"
Jon Loeligera1295442006-08-22 12:06:18 -0500122 "with mmu off\n");
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500123 break;
Jon Loeligera1295442006-08-22 12:06:18 -0500124 case (0x80000000 >> 13):
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500125 printf("Transfer error ack signal\n");
126 break;
Jon Loeligera1295442006-08-22 12:06:18 -0500127 case (0x80000000 >> 14):
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500128 printf("Data parity signal\n");
129 break;
Jon Loeligera1295442006-08-22 12:06:18 -0500130 case (0x80000000 >> 15):
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500131 printf("Address parity signal\n");
132 break;
133 default:
134 printf("Unknown values in msr\n");
135 }
136 show_regs(regs);
137 print_backtrace((unsigned long *)regs->gpr[1]);
138 panic("machine check");
139}
140
Kim Phillipse16737f2012-10-29 13:34:29 +0000141void AlignmentException(struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500142{
Jon Loeliger07d53492007-06-13 13:23:15 -0500143#if defined(CONFIG_CMD_KGDB)
Jon Loeligera1295442006-08-22 12:06:18 -0500144 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500145 return;
146#endif
147 show_regs(regs);
148 print_backtrace((unsigned long *)regs->gpr[1]);
149 panic("Alignment Exception");
150}
151
Kim Phillipse16737f2012-10-29 13:34:29 +0000152void ProgramCheckException(struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500153{
154 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
155 int i, j;
156
Jon Loeliger07d53492007-06-13 13:23:15 -0500157#if defined(CONFIG_CMD_KGDB)
Jon Loeligera1295442006-08-22 12:06:18 -0500158 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500159 return;
160#endif
161 show_regs(regs);
162
Jon Loeligera1295442006-08-22 12:06:18 -0500163 p = (unsigned char *)((unsigned long)p & 0xFFFFFFE0);
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500164 p -= 32;
Jon Loeligera1295442006-08-22 12:06:18 -0500165 for (i = 0; i < 256; i += 16) {
166 printf("%08x: ", (unsigned int)p + i);
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500167 for (j = 0; j < 16; j++) {
Jon Loeligera1295442006-08-22 12:06:18 -0500168 printf("%02x ", p[i + j]);
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500169 }
170 printf("\n");
171 }
172
173 print_backtrace((unsigned long *)regs->gpr[1]);
174 panic("Program Check Exception");
175}
176
Kim Phillipse16737f2012-10-29 13:34:29 +0000177void SoftEmuException(struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500178{
Jon Loeliger07d53492007-06-13 13:23:15 -0500179#if defined(CONFIG_CMD_KGDB)
Jon Loeligera1295442006-08-22 12:06:18 -0500180 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500181 return;
182#endif
183 show_regs(regs);
184 print_backtrace((unsigned long *)regs->gpr[1]);
185 panic("Software Emulation Exception");
186}
187
Kim Phillipse16737f2012-10-29 13:34:29 +0000188void UnknownException(struct pt_regs *regs)
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500189{
Jon Loeliger07d53492007-06-13 13:23:15 -0500190#if defined(CONFIG_CMD_KGDB)
Jon Loeligera1295442006-08-22 12:06:18 -0500191 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500192 return;
193#endif
Wolfgang Denk12cec0a2008-07-11 01:16:00 +0200194 printf("UnknownException regs@%lx\n", (ulong)regs);
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500195 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
196 regs->nip, regs->msr, regs->trap);
197 _exception(0, regs);
198}