]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/avr32/cpu/exception.c
patman: Allow use outside of u-boot tree
[karo-tx-uboot.git] / arch / avr32 / cpu / exception.c
1 /*
2  * Copyright (C) 2005-2006 Atmel Corporation
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
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.
11  *
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.
16  *
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,
20  * MA 02111-1307 USA
21  */
22 #include <common.h>
23
24 #include <asm/sysreg.h>
25 #include <asm/ptrace.h>
26
27 DECLARE_GLOBAL_DATA_PTR;
28
29 static const char * const cpu_modes[8] = {
30         "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1",
31         "Interrupt level 2", "Interrupt level 3", "Exception", "NMI"
32 };
33
34 static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
35 {
36         unsigned long p;
37         int i;
38
39         printf("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
40
41         for (p = bottom & ~31; p < top; ) {
42                 printf("%04lx: ", p & 0xffff);
43
44                 for (i = 0; i < 8; i++, p += 4) {
45                         unsigned int val;
46
47                         if (p < bottom || p >= top)
48                                 printf("         ");
49                         else {
50                                 val = *(unsigned long *)p;
51                                 printf("%08x ", val);
52                         }
53                 }
54                 printf("\n");
55         }
56 }
57
58 void do_unknown_exception(unsigned int ecr, struct pt_regs *regs)
59 {
60         unsigned int mode;
61
62         printf("\n *** Unhandled exception %u at PC=0x%08lx [%08lx]\n",
63                         ecr, regs->pc, regs->pc - gd->reloc_off);
64
65         switch (ecr) {
66         case ECR_BUS_ERROR_WRITE:
67         case ECR_BUS_ERROR_READ:
68                 printf("Bus error at address 0x%08lx\n",
69                        sysreg_read(BEAR));
70                 break;
71         case ECR_TLB_MULTIPLE:
72         case ECR_ADDR_ALIGN_X:
73         case ECR_PROTECTION_X:
74         case ECR_ADDR_ALIGN_R:
75         case ECR_ADDR_ALIGN_W:
76         case ECR_PROTECTION_R:
77         case ECR_PROTECTION_W:
78         case ECR_DTLB_MODIFIED:
79         case ECR_TLB_MISS_X:
80         case ECR_TLB_MISS_R:
81         case ECR_TLB_MISS_W:
82                 printf("MMU exception at address 0x%08lx\n",
83                        sysreg_read(TLBEAR));
84                 break;
85         }
86
87         printf("   pc: %08lx    lr: %08lx    sp: %08lx   r12: %08lx\n",
88                regs->pc, regs->lr, regs->sp, regs->r12);
89         printf("  r11: %08lx   r10: %08lx    r9: %08lx    r8: %08lx\n",
90                regs->r11, regs->r10, regs->r9, regs->r8);
91         printf("   r7: %08lx    r6: %08lx    r5: %08lx    r4: %08lx\n",
92                regs->r7, regs->r6, regs->r5, regs->r4);
93         printf("   r3: %08lx    r2: %08lx    r1: %08lx    r0: %08lx\n",
94                regs->r3, regs->r2, regs->r1, regs->r0);
95         printf("Flags: %c%c%c%c%c\n",
96                regs->sr & SR_Q ? 'Q' : 'q',
97                regs->sr & SR_V ? 'V' : 'v',
98                regs->sr & SR_N ? 'N' : 'n',
99                regs->sr & SR_Z ? 'Z' : 'z',
100                regs->sr & SR_C ? 'C' : 'c');
101         printf("Mode bits: %c%c%c%c%c%c%c%c%c\n",
102                regs->sr & SR_H ? 'H' : 'h',
103                regs->sr & SR_R ? 'R' : 'r',
104                regs->sr & SR_J ? 'J' : 'j',
105                regs->sr & SR_EM ? 'E' : 'e',
106                regs->sr & SR_I3M ? '3' : '.',
107                regs->sr & SR_I2M ? '2' : '.',
108                regs->sr & SR_I1M ? '1' : '.',
109                regs->sr & SR_I0M ? '0' : '.',
110                regs->sr & SR_GM ? 'G' : 'g');
111         mode = (regs->sr >> SYSREG_M0_OFFSET) & 7;
112         printf("CPU Mode: %s\n", cpu_modes[mode]);
113
114         /* Avoid exception loops */
115         if (regs->sp < (gd->stack_end - CONFIG_STACKSIZE)
116                         || regs->sp >= gd->stack_end)
117                 printf("\nStack pointer seems bogus, won't do stack dump\n");
118         else
119                 dump_mem("\nStack: ", regs->sp, gd->stack_end);
120
121         panic("Unhandled exception\n");
122 }