wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 1 | /* |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 2 | * linux/arch/powerpc/kernel/traps.c |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) |
| 5 | * |
| 6 | * Modified by Cort Dougan (cort@cs.nmt.edu) |
| 7 | * and Paul Mackerras (paulus@cs.anu.edu.au) |
| 8 | * fixed Machine Check Reasons by Reinhard Meyer (r.meyer@emk-elektronik.de) |
| 9 | * |
| 10 | * (C) Copyright 2000-2003 |
| 11 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 12 | * |
| 13 | * See file CREDITS for list of people who contributed to this |
| 14 | * project. |
| 15 | * |
| 16 | * This program is free software; you can redistribute it and/or |
| 17 | * modify it under the terms of the GNU General Public License as |
| 18 | * published by the Free Software Foundation; either version 2 of |
| 19 | * the License, or (at your option) any later version. |
| 20 | * |
| 21 | * This program is distributed in the hope that it will be useful, |
| 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | * GNU General Public License for more details. |
| 25 | * |
| 26 | * You should have received a copy of the GNU General Public License |
| 27 | * along with this program; if not, write to the Free Software |
| 28 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 29 | * MA 02111-1307 USA |
| 30 | */ |
| 31 | |
| 32 | /* |
| 33 | * This file handles the architecture-dependent parts of hardware exceptions |
| 34 | */ |
| 35 | |
| 36 | #include <common.h> |
| 37 | #include <command.h> |
Mike Frysinger | e39bf1e | 2010-02-08 15:30:16 -0500 | [diff] [blame] | 38 | #include <kgdb.h> |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 39 | #include <asm/processor.h> |
| 40 | |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 41 | /* Returns 0 if exception not found and fixup otherwise. */ |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 42 | extern unsigned long search_exception_table(unsigned long); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 43 | |
| 44 | /* THIS NEEDS CHANGING to use the board info structure. |
| 45 | */ |
| 46 | #define END_OF_MEM 0x02000000 |
| 47 | |
| 48 | /* |
| 49 | * Trap & Exception support |
| 50 | */ |
| 51 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 52 | static void print_backtrace(unsigned long *sp) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 53 | { |
| 54 | int cnt = 0; |
| 55 | unsigned long i; |
| 56 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 57 | printf("Call backtrace: "); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 58 | while (sp) { |
| 59 | if ((uint) sp > END_OF_MEM) |
| 60 | break; |
| 61 | |
| 62 | i = sp[1]; |
| 63 | if (cnt++ % 7 == 0) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 64 | printf("\n"); |
| 65 | printf("%08lX ", i); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 66 | if (cnt > 32) |
| 67 | break; |
| 68 | sp = (unsigned long *) *sp; |
| 69 | } |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 70 | printf("\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 73 | void show_regs(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 74 | { |
| 75 | int i; |
| 76 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 77 | printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n", |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 78 | regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar); |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 79 | printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n", |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 80 | regs->msr, |
| 81 | regs->msr & MSR_EE ? 1 : 0, regs->msr & MSR_PR ? 1 : 0, |
| 82 | regs->msr & MSR_FP ? 1 : 0, regs->msr & MSR_ME ? 1 : 0, |
| 83 | regs->msr & MSR_IR ? 1 : 0, regs->msr & MSR_DR ? 1 : 0); |
| 84 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 85 | printf("\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 86 | for (i = 0; i < 32; i++) { |
| 87 | if ((i % 8) == 0) { |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 88 | printf("GPR%02d: ", i); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 91 | printf("%08lX ", regs->gpr[i]); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 92 | if ((i % 8) == 7) { |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 93 | printf("\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 94 | } |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 99 | static void _exception(int signr, struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 100 | { |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 101 | show_regs(regs); |
| 102 | print_backtrace((unsigned long *) regs->gpr[1]); |
| 103 | panic("Exception in kernel pc %lx signal %d", regs->nip, signr); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 106 | void MachineCheckException(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 107 | { |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 108 | unsigned long fixup = search_exception_table(regs->nip); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 109 | |
| 110 | /* Probing PCI using config cycles cause this exception |
| 111 | * when a device is not present. Catch it and return to |
| 112 | * the PCI exception handler. |
| 113 | */ |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 114 | if (fixup) { |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 115 | regs->nip = fixup; |
| 116 | return; |
| 117 | } |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 118 | #if defined(CONFIG_CMD_KGDB) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 119 | if (debugger_exception_handler && (*debugger_exception_handler)(regs)) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 120 | return; |
| 121 | #endif |
| 122 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 123 | printf("Machine check in kernel mode.\n"); |
| 124 | printf("Caused by (from msr): "); |
| 125 | printf("regs %p ", regs); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 126 | /* refer to 603e Manual (MPC603EUM/AD), chapter 4.5.2.1 */ |
| 127 | switch (regs->msr & 0x000F0000) { |
| 128 | case (0x80000000 >> 12): |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 129 | printf("Machine check signal - probably due to mm fault\n" |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 130 | "with mmu off\n"); |
| 131 | break; |
| 132 | case (0x80000000 >> 13): |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 133 | printf("Transfer error ack signal\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 134 | break; |
| 135 | case (0x80000000 >> 14): |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 136 | printf("Data parity signal\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 137 | break; |
| 138 | case (0x80000000 >> 15): |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 139 | printf("Address parity signal\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 140 | break; |
| 141 | default: |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 142 | printf("Unknown values in msr\n"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 143 | } |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 144 | show_regs(regs); |
| 145 | print_backtrace((unsigned long *) regs->gpr[1]); |
| 146 | panic("machine check"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 149 | void AlignmentException(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 150 | { |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 151 | #if defined(CONFIG_CMD_KGDB) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 152 | if (debugger_exception_handler && (*debugger_exception_handler)(regs)) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 153 | return; |
| 154 | #endif |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 155 | show_regs(regs); |
| 156 | print_backtrace((unsigned long *) regs->gpr[1]); |
| 157 | panic("Alignment Exception"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 160 | void ProgramCheckException(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 161 | { |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 162 | #if defined(CONFIG_CMD_KGDB) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 163 | if (debugger_exception_handler && (*debugger_exception_handler)(regs)) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 164 | return; |
| 165 | #endif |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 166 | show_regs(regs); |
| 167 | print_backtrace((unsigned long *) regs->gpr[1]); |
| 168 | panic("Program Check Exception"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 171 | void SoftEmuException(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 172 | { |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 173 | #if defined(CONFIG_CMD_KGDB) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 174 | if (debugger_exception_handler && (*debugger_exception_handler)(regs)) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 175 | return; |
| 176 | #endif |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 177 | show_regs(regs); |
| 178 | print_backtrace((unsigned long *) regs->gpr[1]); |
| 179 | panic("Software Emulation Exception"); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 183 | void UnknownException(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 184 | { |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 185 | #if defined(CONFIG_CMD_KGDB) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 186 | if (debugger_exception_handler && (*debugger_exception_handler)(regs)) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 187 | return; |
| 188 | #endif |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 189 | printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n", |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 190 | regs->nip, regs->msr, regs->trap); |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 191 | _exception(0, regs); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 194 | #if defined(CONFIG_CMD_BEDBUG) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 195 | extern void do_bedbug_breakpoint(struct pt_regs *); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 196 | #endif |
| 197 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 198 | void DebugException(struct pt_regs *regs) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 199 | { |
| 200 | |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 201 | printf("Debugger trap at @ %lx\n", regs->nip); |
| 202 | show_regs(regs); |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 203 | #if defined(CONFIG_CMD_BEDBUG) |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 204 | do_bedbug_breakpoint(regs); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 205 | #endif |
| 206 | } |
| 207 | |
| 208 | /* Probe an address by reading. If not present, return -1, otherwise |
| 209 | * return 0. |
| 210 | */ |
Kim Phillips | 20051f2 | 2012-10-29 13:34:29 +0000 | [diff] [blame] | 211 | int addr_probe(uint *addr) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 212 | { |
| 213 | #if 0 |
| 214 | int retval; |
| 215 | |
| 216 | __asm__ __volatile__ ("1: lwz %0,0(%1)\n" |
| 217 | " eieio\n" |
| 218 | " li %0,0\n" |
| 219 | "2:\n" |
| 220 | ".section .fixup,\"ax\"\n" |
| 221 | "3: li %0,-1\n" |
| 222 | " b 2b\n" |
| 223 | ".section __ex_table,\"a\"\n" |
| 224 | " .align 2\n" |
| 225 | " .long 1b,3b\n" |
| 226 | ".text":"=r" (retval):"r" (addr)); |
| 227 | |
| 228 | return (retval); |
| 229 | #endif |
| 230 | return 0; |
| 231 | } |