blob: 7e7c74ce4736bf8707a0f463cf3bb63d0ae60bad [file] [log] [blame]
Mike Frysinger9171fc82008-03-30 15:46:13 -04001/*
2 * U-boot - traps.c Routines related to interrupts and exceptions
3 *
4 * Copyright (c) 2005-2008 Analog Devices Inc.
5 *
6 * This file is based on
7 * No original Copyright holder listed,
8 * Probabily original (C) Roman Zippel (assigned DJD, 1999)
9 *
10 * Copyright 2003 Metrowerks - for Blackfin
11 * Copyright 2000-2001 Lineo, Inc. D. Jeff Dionne <jeff@lineo.ca>
12 * Copyright 1999-2000 D. Jeff Dionne, <jeff@uclinux.org>
13 *
14 * (C) Copyright 2000-2004
15 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16 *
17 * Licensed under the GPL-2 or later.
18 */
19
20#include <common.h>
21#include <linux/types.h>
22#include <asm/traps.h>
23#include <asm/cplb.h>
24#include <asm/io.h>
25#include <asm/mach-common/bits/core.h>
26#include <asm/mach-common/bits/mpu.h>
27#include <asm/mach-common/bits/trace.h>
28#include "cpu.h"
29
30#define trace_buffer_save(x) \
31 do { \
32 (x) = bfin_read_TBUFCTL(); \
33 bfin_write_TBUFCTL((x) & ~TBUFEN); \
34 } while (0)
35
36#define trace_buffer_restore(x) \
37 bfin_write_TBUFCTL((x))
38
39/* The purpose of this map is to provide a mapping of address<->cplb settings
40 * rather than an exact map of what is actually addressable on the part. This
41 * map covers all current Blackfin parts. If you try to access an address that
42 * is in this map but not actually on the part, you won't get an exception and
43 * reboot, you'll get an external hardware addressing error and reboot. Since
44 * only the ends matter (you did something wrong and the board reset), the means
45 * are largely irrelevant.
46 */
47struct memory_map {
48 uint32_t start, end;
49 uint32_t data_flags, inst_flags;
50};
51const struct memory_map const bfin_memory_map[] = {
52 { /* external memory */
53 .start = 0x00000000,
54 .end = 0x20000000,
55 .data_flags = SDRAM_DGENERIC,
56 .inst_flags = SDRAM_IGENERIC,
57 },
58 { /* async banks */
59 .start = 0x20000000,
60 .end = 0x30000000,
61 .data_flags = SDRAM_EBIU,
62 .inst_flags = SDRAM_INON_CHBL,
63 },
64 { /* everything on chip */
65 .start = 0xE0000000,
66 .end = 0xFFFFFFFF,
67 .data_flags = L1_DMEMORY,
68 .inst_flags = L1_IMEMORY,
69 }
70};
71
72void trap_c(struct pt_regs *regs)
73{
74 uint32_t trapnr = (regs->seqstat & EXCAUSE);
75 bool data = false;
76
77 switch (trapnr) {
78 /* 0x26 - Data CPLB Miss */
79 case VEC_CPLB_M:
80
81 if (ANOMALY_05000261) {
82 static uint32_t last_cplb_fault_retx;
83 /*
84 * Work around an anomaly: if we see a new DCPLB fault,
85 * return without doing anything. Then,
86 * if we get the same fault again, handle it.
87 */
88 if (last_cplb_fault_retx != regs->retx) {
89 last_cplb_fault_retx = regs->retx;
90 return;
91 }
92 }
93
94 data = true;
95 /* fall through */
96
97 /* 0x27 - Instruction CPLB Miss */
98 case VEC_CPLB_I_M: {
99 volatile uint32_t *CPLB_ADDR_BASE, *CPLB_DATA_BASE, *CPLB_ADDR, *CPLB_DATA;
100 uint32_t new_cplb_addr = 0, new_cplb_data = 0;
101 static size_t last_evicted;
102 size_t i;
103
104 new_cplb_addr = (data ? bfin_read_DCPLB_FAULT_ADDR() : bfin_read_ICPLB_FAULT_ADDR()) & ~(4 * 1024 * 1024 - 1);
105
106 for (i = 0; i < ARRAY_SIZE(bfin_memory_map); ++i) {
107 /* if the exception is inside this range, lets use it */
108 if (new_cplb_addr >= bfin_memory_map[i].start &&
109 new_cplb_addr < bfin_memory_map[i].end)
110 break;
111 }
112 if (i == ARRAY_SIZE(bfin_memory_map)) {
113 printf("%cCPLB exception outside of memory map at 0x%p\n",
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400114 (data ? 'D' : 'I'), (void *)new_cplb_addr);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400115 bfin_panic(regs);
116 } else
117 debug("CPLB addr %p matches map 0x%p - 0x%p\n", new_cplb_addr, bfin_memory_map[i].start, bfin_memory_map[i].end);
118 new_cplb_data = (data ? bfin_memory_map[i].data_flags : bfin_memory_map[i].inst_flags);
119
Mike Frysinger9171fc82008-03-30 15:46:13 -0400120 if (data) {
121 CPLB_ADDR_BASE = (uint32_t *)DCPLB_ADDR0;
122 CPLB_DATA_BASE = (uint32_t *)DCPLB_DATA0;
123 } else {
124 CPLB_ADDR_BASE = (uint32_t *)ICPLB_ADDR0;
125 CPLB_DATA_BASE = (uint32_t *)ICPLB_DATA0;
126 }
127
128 /* find the next unlocked entry and evict it */
129 i = last_evicted & 0xF;
130 debug("last evicted = %i\n", i);
131 CPLB_DATA = CPLB_DATA_BASE + i;
132 while (*CPLB_DATA & CPLB_LOCK) {
133 debug("skipping %i %p - %08X\n", i, CPLB_DATA, *CPLB_DATA);
134 i = (i + 1) & 0xF; /* wrap around */
135 CPLB_DATA = CPLB_DATA_BASE + i;
136 }
137 CPLB_ADDR = CPLB_ADDR_BASE + i;
138
139 debug("evicting entry %i: 0x%p 0x%08X\n", i, *CPLB_ADDR, *CPLB_DATA);
140 last_evicted = i + 1;
Mike Frysinger0332e4d2008-08-07 18:39:27 -0400141
142 /* need to turn off cplbs whenever we muck with the cplb table */
143#if ENDCPLB != ENICPLB
144# error cplb enable bit violates my sanity
145#endif
146 uint32_t mem_control = (data ? DMEM_CONTROL : IMEM_CONTROL);
147 bfin_write32(mem_control, bfin_read32(mem_control) & ~ENDCPLB);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400148 *CPLB_ADDR = new_cplb_addr;
149 *CPLB_DATA = new_cplb_data;
Mike Frysinger0332e4d2008-08-07 18:39:27 -0400150 bfin_write32(mem_control, bfin_read32(mem_control) | ENDCPLB);
151 SSYNC();
Mike Frysinger9171fc82008-03-30 15:46:13 -0400152
153 /* dump current table for debugging purposes */
154 CPLB_ADDR = CPLB_ADDR_BASE;
155 CPLB_DATA = CPLB_DATA_BASE;
156 for (i = 0; i < 16; ++i)
157 debug("%2i 0x%p 0x%08X\n", i, *CPLB_ADDR++, *CPLB_DATA++);
158
Mike Frysinger9171fc82008-03-30 15:46:13 -0400159 break;
160 }
161
162 default:
163 /* All traps come here */
164 bfin_panic(regs);
165 }
166}
167
168#ifdef CONFIG_DEBUG_DUMP
169# define ENABLE_DUMP 1
170#else
171# define ENABLE_DUMP 0
172#endif
173
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400174#ifndef CONFIG_KALLSYMS
175const char *symbol_lookup(unsigned long addr, unsigned long *caddr)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400176{
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400177 *caddr = addr;
178 return "N/A";
Mike Frysinger9171fc82008-03-30 15:46:13 -0400179}
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400180#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400181
182static void decode_address(char *buf, unsigned long address)
183{
184 unsigned long sym_addr;
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400185 void *paddr = (void *)address;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400186 const char *sym = symbol_lookup(address, &sym_addr);
187
188 if (sym) {
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400189 sprintf(buf, "<0x%p> { %s + 0x%lx }", paddr, sym, address - sym_addr);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400190 return;
191 }
192
193 if (!address)
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400194 sprintf(buf, "<0x%p> /* Maybe null pointer? */", paddr);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195 else if (address >= CONFIG_SYS_MONITOR_BASE &&
196 address < CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400197 sprintf(buf, "<0x%p> /* somewhere in u-boot */", paddr);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400198 else
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400199 sprintf(buf, "<0x%p> /* unknown address */", paddr);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400200}
201
Mike Frysinger0ba1da12008-10-06 04:21:41 -0400202static char *strhwerrcause(uint16_t hwerrcause)
203{
204 switch (hwerrcause) {
205 case 0x02: return "system mmr error";
206 case 0x03: return "external memory addressing error";
207 case 0x12: return "performance monitor overflow";
208 case 0x18: return "raise 5 instruction";
209 default: return "undef";
210 }
211}
212
213static char *strexcause(uint16_t excause)
214{
215 switch (excause) {
216 case 0x00 ... 0xf: return "custom exception";
217 case 0x10: return "single step";
218 case 0x11: return "trace buffer full";
219 case 0x21: return "undef inst";
220 case 0x22: return "illegal inst";
221 case 0x23: return "dcplb prot violation";
222 case 0x24: return "misaligned data";
223 case 0x25: return "unrecoverable event";
224 case 0x26: return "dcplb miss";
225 case 0x27: return "multiple dcplb hit";
226 case 0x28: return "emulation watchpoint";
227 case 0x2a: return "misaligned inst";
228 case 0x2b: return "icplb prot violation";
229 case 0x2c: return "icplb miss";
230 case 0x2d: return "multiple icplb hit";
231 case 0x2e: return "illegal use of supervisor resource";
232 default: return "undef";
233 }
234}
235
Mike Frysinger9171fc82008-03-30 15:46:13 -0400236void dump(struct pt_regs *fp)
237{
238 char buf[150];
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400239 int i;
Mike Frysinger0ba1da12008-10-06 04:21:41 -0400240 uint16_t hwerrcause, excause;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400241
242 if (!ENABLE_DUMP)
243 return;
244
Mike Frysinger2de95bb2008-10-06 04:20:54 -0400245 /* fp->ipend is garbage, so load it ourself */
246 fp->ipend = bfin_read_IPEND();
247
Mike Frysinger0ba1da12008-10-06 04:21:41 -0400248 hwerrcause = (fp->seqstat & HWERRCAUSE) >> HWERRCAUSE_P;
249 excause = (fp->seqstat & EXCAUSE) >> EXCAUSE_P;
250
Mike Frysinger9171fc82008-03-30 15:46:13 -0400251 printf("SEQUENCER STATUS:\n");
252 printf(" SEQSTAT: %08lx IPEND: %04lx SYSCFG: %04lx\n",
253 fp->seqstat, fp->ipend, fp->syscfg);
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400254 printf(" HWERRCAUSE: 0x%x: %s\n", hwerrcause, strhwerrcause(hwerrcause));
255 printf(" EXCAUSE : 0x%x: %s\n", excause, strexcause(excause));
Mike Frysinger9171fc82008-03-30 15:46:13 -0400256 for (i = 6; i <= 15; ++i) {
257 if (fp->ipend & (1 << i)) {
258 decode_address(buf, bfin_read32(EVT0 + 4*i));
259 printf(" physical IVG%i asserted : %s\n", i, buf);
260 }
261 }
262 decode_address(buf, fp->rete);
263 printf(" RETE: %s\n", buf);
264 decode_address(buf, fp->retn);
265 printf(" RETN: %s\n", buf);
266 decode_address(buf, fp->retx);
267 printf(" RETX: %s\n", buf);
268 decode_address(buf, fp->rets);
269 printf(" RETS: %s\n", buf);
Mike Frysinger2de95bb2008-10-06 04:20:54 -0400270 /* we lie and store RETI in "pc" */
Mike Frysinger9171fc82008-03-30 15:46:13 -0400271 decode_address(buf, fp->pc);
Mike Frysinger2de95bb2008-10-06 04:20:54 -0400272 printf(" RETI: %s\n", buf);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400273
274 if (fp->seqstat & EXCAUSE) {
275 decode_address(buf, bfin_read_DCPLB_FAULT_ADDR());
276 printf("DCPLB_FAULT_ADDR: %s\n", buf);
277 decode_address(buf, bfin_read_ICPLB_FAULT_ADDR());
278 printf("ICPLB_FAULT_ADDR: %s\n", buf);
279 }
280
281 printf("\nPROCESSOR STATE:\n");
282 printf(" R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n",
283 fp->r0, fp->r1, fp->r2, fp->r3);
284 printf(" R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n",
285 fp->r4, fp->r5, fp->r6, fp->r7);
286 printf(" P0 : %08lx P1 : %08lx P2 : %08lx P3 : %08lx\n",
287 fp->p0, fp->p1, fp->p2, fp->p3);
288 printf(" P4 : %08lx P5 : %08lx FP : %08lx SP : %08lx\n",
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400289 fp->p4, fp->p5, fp->fp, (unsigned long)fp);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400290 printf(" LB0: %08lx LT0: %08lx LC0: %08lx\n",
291 fp->lb0, fp->lt0, fp->lc0);
292 printf(" LB1: %08lx LT1: %08lx LC1: %08lx\n",
293 fp->lb1, fp->lt1, fp->lc1);
294 printf(" B0 : %08lx L0 : %08lx M0 : %08lx I0 : %08lx\n",
295 fp->b0, fp->l0, fp->m0, fp->i0);
296 printf(" B1 : %08lx L1 : %08lx M1 : %08lx I1 : %08lx\n",
297 fp->b1, fp->l1, fp->m1, fp->i1);
298 printf(" B2 : %08lx L2 : %08lx M2 : %08lx I2 : %08lx\n",
299 fp->b2, fp->l2, fp->m2, fp->i2);
300 printf(" B3 : %08lx L3 : %08lx M3 : %08lx I3 : %08lx\n",
301 fp->b3, fp->l3, fp->m3, fp->i3);
302 printf("A0.w: %08lx A0.x: %08lx A1.w: %08lx A1.x: %08lx\n",
303 fp->a0w, fp->a0x, fp->a1w, fp->a1x);
304
305 printf("USP : %08lx ASTAT: %08lx\n",
306 fp->usp, fp->astat);
307
308 printf("\n");
309}
310
311void dump_bfin_trace_buffer(void)
312{
313 char buf[150];
314 unsigned long tflags;
Mike Frysingerfe033ad2008-10-12 06:02:55 -0400315 int i = 0;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400316
317 if (!ENABLE_DUMP)
318 return;
319
320 trace_buffer_save(tflags);
321
322 printf("Hardware Trace:\n");
323
324 if (bfin_read_TBUFSTAT() & TBUFCNT) {
325 for (; bfin_read_TBUFSTAT() & TBUFCNT; i++) {
326 decode_address(buf, bfin_read_TBUF());
327 printf("%4i Target : %s\n", i, buf);
328 decode_address(buf, bfin_read_TBUF());
329 printf(" Source : %s\n", buf);
330 }
331 }
332
333 trace_buffer_restore(tflags);
334}
335
336void bfin_panic(struct pt_regs *regs)
337{
338 if (ENABLE_DUMP) {
339 unsigned long tflags;
340 trace_buffer_save(tflags);
341 }
342
343 puts(
344 "\n"
345 "\n"
346 "\n"
347 "Ack! Something bad happened to the Blackfin!\n"
348 "\n"
349 );
350 dump(regs);
351 dump_bfin_trace_buffer();
Mike Frysinger71339992008-10-06 04:19:34 -0400352 puts("\n");
Mike Frysinger9171fc82008-03-30 15:46:13 -0400353 bfin_reset_or_hang();
354}