3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * This file handles the architecture-dependent parts of hardware
30 #include <asm/processor.h>
31 #include <asm/mpc8349_pci.h>
33 DECLARE_GLOBAL_DATA_PTR;
35 /* Returns 0 if exception not found and fixup otherwise. */
36 extern unsigned long search_exception_table(unsigned long);
38 #define END_OF_MEM (gd->bd->bi_memstart + gd->bd->bi_memsize)
41 * Trap & Exception support
45 print_backtrace(unsigned long *sp)
50 puts ("Call backtrace: ");
52 if ((uint)sp > END_OF_MEM)
60 sp = (unsigned long *)*sp;
65 void show_regs(struct pt_regs * regs)
69 printf("NIP: %08lX XER: %08lX LR: %08lX REGS: %p TRAP: %04lx DAR: %08lX\n",
70 regs->nip, regs->xer, regs->link, regs, regs->trap, regs->dar);
71 printf("MSR: %08lx EE: %01x PR: %01x FP: %01x ME: %01x IR/DR: %01x%01x\n",
72 regs->msr, regs->msr&MSR_EE ? 1 : 0, regs->msr&MSR_PR ? 1 : 0,
73 regs->msr & MSR_FP ? 1 : 0,regs->msr&MSR_ME ? 1 : 0,
74 regs->msr&MSR_IR ? 1 : 0,
75 regs->msr&MSR_DR ? 1 : 0);
78 for (i = 0; i < 32; i++) {
80 printf("GPR%02d: ", i);
83 printf("%08lX ", regs->gpr[i]);
92 _exception(int signr, struct pt_regs *regs)
95 print_backtrace((unsigned long *)regs->gpr[1]);
96 panic("Exception in kernel pc %lx signal %d",regs->nip,signr);
103 volatile immap_t *immap = (immap_t *) CFG_IMMR;
104 printf ("PCI: err status %x err mask %x err ctrl %x\n",
105 le32_to_cpu (immap->im_pci.pci_esr),
106 le32_to_cpu (immap->im_pci.pci_emr),
107 le32_to_cpu (immap->im_pci.pci_ecr));
108 printf (" error address %x error data %x ctrl %x\n",
109 le32_to_cpu (immap->im_pci.pci_eacr),
110 le32_to_cpu (immap->im_pci.pci_edcr),
111 le32_to_cpu (immap->im_pci.pci_eccr));
117 MachineCheckException(struct pt_regs *regs)
121 /* Probing PCI using config cycles cause this exception
122 * when a device is not present. Catch it and return to
123 * the PCI exception handler.
127 volatile immap_t *immap = (immap_t *)CFG_IMMR;
131 /* clear the error in the error status register */
132 if(immap->im_pci.pci_esr & cpu_to_le32(PCI_ERROR_PCI_NO_RSP)) {
133 immap->im_pci.pci_esr = cpu_to_le32(PCI_ERROR_PCI_NO_RSP);
137 #endif /* CONFIG_PCI */
138 if ((fixup = search_exception_table(regs->nip)) != 0) {
143 #if defined(CONFIG_CMD_KGDB)
144 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
148 puts ("Machine check in kernel mode.\n"
149 "Caused by (from msr): ");
150 printf("regs %p ",regs);
151 switch( regs->msr & 0x000F0000) {
152 case (0x80000000>>12):
153 puts ("Machine check signal - probably due to mm fault\n"
156 case (0x80000000>>13):
157 puts ("Transfer error ack signal\n");
159 case (0x80000000>>14):
160 puts ("Data parity signal\n");
162 case (0x80000000>>15):
163 puts ("Address parity signal\n");
166 puts ("Unknown values in msr\n");
169 print_backtrace((unsigned long *)regs->gpr[1]);
173 panic("machine check");
177 AlignmentException(struct pt_regs *regs)
179 #if defined(CONFIG_CMD_KGDB)
180 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
184 print_backtrace((unsigned long *)regs->gpr[1]);
185 panic("Alignment Exception");
189 ProgramCheckException(struct pt_regs *regs)
191 #if defined(CONFIG_CMD_KGDB)
192 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
196 print_backtrace((unsigned long *)regs->gpr[1]);
197 panic("Program Check Exception");
201 SoftEmuException(struct pt_regs *regs)
203 #if defined(CONFIG_CMD_KGDB)
204 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
208 print_backtrace((unsigned long *)regs->gpr[1]);
209 panic("Software Emulation Exception");
214 UnknownException(struct pt_regs *regs)
216 #if defined(CONFIG_CMD_KGDB)
217 if (debugger_exception_handler && (*debugger_exception_handler)(regs))
220 printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
221 regs->nip, regs->msr, regs->trap);
225 #if defined(CONFIG_CMD_BEDBUG)
226 extern void do_bedbug_breakpoint(struct pt_regs *);
230 DebugException(struct pt_regs *regs)
232 printf("Debugger trap at @ %lx\n", regs->nip );
234 #if defined(CONFIG_CMD_BEDBUG)
235 do_bedbug_breakpoint( regs );
239 /* Probe an address by reading. If not present, return -1, otherwise
243 addr_probe(uint *addr)
248 __asm__ __volatile__( \
249 "1: lwz %0,0(%1)\n" \
253 ".section .fixup,\"ax\"\n" \
256 ".section __ex_table,\"a\"\n" \
260 : "=r" (retval) : "r"(addr));