blob: 0b7ea3b184de0db93e0c8a9abe99783cd2d71e3c [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Jon Loeligerdebb7352006-04-26 17:58:56 -05002 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
3 *
4 * Modified by Cort Dougan (cort@cs.nmt.edu)
5 * and Paul Mackerras (paulus@cs.anu.edu.au)
6 *
7 * (C) Copyright 2000
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Jon Loeligerdebb7352006-04-26 17:58:56 -050011 */
12
13/*
14 * This file handles the architecture-dependent parts of hardware exceptions
15 */
16
17#include <common.h>
18#include <command.h>
Mike Frysingere39bf1e2010-02-08 15:30:16 -050019#include <kgdb.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050020#include <asm/processor.h>
21
Wolfgang Denk1218abf2007-09-15 20:48:41 +020022DECLARE_GLOBAL_DATA_PTR;
23
Jon Loeligerdebb7352006-04-26 17:58:56 -050024/* Returns 0 if exception not found and fixup otherwise. */
25extern unsigned long search_exception_table(unsigned long);
26
Becky Bruce279726b2008-05-14 13:09:58 -050027/*
28 * End of addressable memory. This may be less than the actual
29 * amount of memory on the system if we're unable to keep all
30 * the memory mapped in.
31 */
32extern ulong get_effective_memsize(void);
33#define END_OF_MEM (gd->bd->bi_memstart + get_effective_memsize())
Jon Loeligerdebb7352006-04-26 17:58:56 -050034
35/*
36 * Trap & Exception support
37 */
38
Kim Phillips20051f22012-10-29 13:34:29 +000039static void print_backtrace(unsigned long *sp)
Jon Loeligerdebb7352006-04-26 17:58:56 -050040{
Jon Loeligerdebb7352006-04-26 17:58:56 -050041 int cnt = 0;
42 unsigned long i;
43
44 printf("Call backtrace: ");
45 while (sp) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -050046 if ((uint) sp > END_OF_MEM)
Jon Loeligerdebb7352006-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 Loeligerffff3ae2006-08-22 12:06:18 -050053 if (cnt > 32)
54 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050055 sp = (unsigned long *)*sp;
56 }
57 printf("\n");
58}
59
Kim Phillips20051f22012-10-29 13:34:29 +000060void show_regs(struct pt_regs *regs)
Jon Loeligerdebb7352006-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 Loeligerffff3ae2006-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 Loeligerdebb7352006-04-26 17:58:56 -050073
74 printf("\n");
Jon Loeligerffff3ae2006-08-22 12:06:18 -050075 for (i = 0; i < 32; i++) {
76 if ((i % 8) == 0) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050077 printf("GPR%02d: ", i);
78 }
79
80 printf("%08lX ", regs->gpr[i]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050081 if ((i % 8) == 7) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050082 printf("\n");
83 }
84 }
85}
86
87
Kim Phillips20051f22012-10-29 13:34:29 +000088static void _exception(int signr, struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -050089{
90 show_regs(regs);
91 print_backtrace((unsigned long *)regs->gpr[1]);
Jon Loeligerffff3ae2006-08-22 12:06:18 -050092 panic("Exception in kernel pc %lx signal %d", regs->nip, signr);
Jon Loeligerdebb7352006-04-26 17:58:56 -050093}
94
Kim Phillips20051f22012-10-29 13:34:29 +000095void MachineCheckException(struct pt_regs *regs)
Jon Loeligerdebb7352006-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 Loeligerb24629f2007-06-13 13:23:15 -0500108#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500109 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-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 Loeligerffff3ae2006-08-22 12:06:18 -0500115 printf("regs %p ", regs);
Jon Loeligercfc7a7f2007-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 Loeligerdebb7352006-04-26 17:58:56 -0500121 printf("Machine check signal - probably due to mm fault\n"
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500122 "with mmu off\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500123 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500124 case (0x80000000 >> 13):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500125 printf("Transfer error ack signal\n");
126 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500127 case (0x80000000 >> 14):
Jon Loeligerdebb7352006-04-26 17:58:56 -0500128 printf("Data parity signal\n");
129 break;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500130 case (0x80000000 >> 15):
Jon Loeligerdebb7352006-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 Phillips20051f22012-10-29 13:34:29 +0000141void AlignmentException(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500142{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500143#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500144 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-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 Phillips20051f22012-10-29 13:34:29 +0000152void ProgramCheckException(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500153{
154 unsigned char *p = regs ? (unsigned char *)(regs->nip) : NULL;
155 int i, j;
156
Jon Loeligerb24629f2007-06-13 13:23:15 -0500157#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500158 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500159 return;
160#endif
161 show_regs(regs);
162
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500163 p = (unsigned char *)((unsigned long)p & 0xFFFFFFE0);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500164 p -= 32;
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500165 for (i = 0; i < 256; i += 16) {
166 printf("%08x: ", (unsigned int)p + i);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500167 for (j = 0; j < 16; j++) {
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500168 printf("%02x ", p[i + j]);
Jon Loeligerdebb7352006-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 Phillips20051f22012-10-29 13:34:29 +0000177void SoftEmuException(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500178{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500179#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500180 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-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 Phillips20051f22012-10-29 13:34:29 +0000188void UnknownException(struct pt_regs *regs)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500189{
Jon Loeligerb24629f2007-06-13 13:23:15 -0500190#if defined(CONFIG_CMD_KGDB)
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500191 if (debugger_exception_handler && (*debugger_exception_handler) (regs))
Jon Loeligerdebb7352006-04-26 17:58:56 -0500192 return;
193#endif
Wolfgang Denk9b55a252008-07-11 01:16:00 +0200194 printf("UnknownException regs@%lx\n", (ulong)regs);
Jon Loeligerdebb7352006-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}
199
Jon Loeligerffff3ae2006-08-22 12:06:18 -0500200/*
201 * Probe an address by reading.
202 * If not present, return -1,
203 * otherwise return 0.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500204 */
Kim Phillips20051f22012-10-29 13:34:29 +0000205int addr_probe(uint *addr)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500206{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500207 return 0;
208}