blob: 71644da6cad16e4b3a5dc6285282a5e0b11e4891 [file] [log] [blame]
David S. Millerd979f172007-10-27 00:13:04 -07001/* arch/sparc64/kernel/traps.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller4fe3ebe2008-07-17 22:11:32 -07003 * Copyright (C) 1995,1997,2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1997,1999,2000 Jakub Jelinek (jakub@redhat.com)
5 */
6
7/*
8 * I like traps on v9, :))))
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
David S. Millera2c1e062006-11-29 21:16:21 -080012#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/signal.h>
15#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mm.h>
17#include <linux/init.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070018#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Fernando Luis Vazquez Cao2f4dfe22007-05-09 02:33:25 -070020#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/delay.h>
22#include <asm/system.h>
23#include <asm/ptrace.h>
24#include <asm/oplib.h>
25#include <asm/page.h>
26#include <asm/pgtable.h>
27#include <asm/unistd.h>
28#include <asm/uaccess.h>
29#include <asm/fpumacro.h>
30#include <asm/lsu.h>
31#include <asm/dcu.h>
32#include <asm/estate.h>
33#include <asm/chafsr.h>
David S. Miller6c52a962005-08-29 12:45:11 -070034#include <asm/sfafsr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/psrcompat.h>
36#include <asm/processor.h>
37#include <asm/timer.h>
David S. Miller92704a12006-02-26 23:27:19 -080038#include <asm/head.h>
David S. Miller07f8e5f2006-06-21 23:34:02 -070039#include <asm/prom.h>
David S. Miller881d0212008-08-24 22:08:34 -070040#include <asm/memctrl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
David S. Miller99cd2202008-03-26 00:19:43 -070042#include "entry.h"
David S. Miller4f70f7a2008-08-12 18:33:56 -070043#include "kstack.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* When an irrecoverable trap occurs at tl > 0, the trap entry
46 * code logs the trap state registers at every level in the trap
47 * stack. It is found at (pt_regs + sizeof(pt_regs)) and the layout
48 * is as follows:
49 */
50struct tl1_traplog {
51 struct {
52 unsigned long tstate;
53 unsigned long tpc;
54 unsigned long tnpc;
55 unsigned long tt;
56 } trapstack[4];
57 unsigned long tl;
58};
59
60static void dump_tl1_traplog(struct tl1_traplog *p)
61{
David S. Miller3d6395c2006-02-16 01:41:41 -080062 int i, limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
David S. Miller04d74752006-02-18 17:06:28 -080064 printk(KERN_EMERG "TRAPLOG: Error at trap level 0x%lx, "
65 "dumping track stack.\n", p->tl);
David S. Miller3d6395c2006-02-16 01:41:41 -080066
67 limit = (tlb_type == hypervisor) ? 2 : 4;
David S. Miller39334a42006-02-20 00:54:09 -080068 for (i = 0; i < limit; i++) {
David S. Miller04d74752006-02-18 17:06:28 -080069 printk(KERN_EMERG
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 "TRAPLOG: Trap level %d TSTATE[%016lx] TPC[%016lx] "
71 "TNPC[%016lx] TT[%lx]\n",
72 i + 1,
73 p->trapstack[i].tstate, p->trapstack[i].tpc,
74 p->trapstack[i].tnpc, p->trapstack[i].tt);
David S. Miller4fe3ebe2008-07-17 22:11:32 -070075 printk("TRAPLOG: TPC<%pS>\n", (void *) p->trapstack[i].tpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079void bad_trap(struct pt_regs *regs, long lvl)
80{
81 char buffer[32];
82 siginfo_t info;
83
84 if (notify_die(DIE_TRAP, "bad trap", regs,
85 0, lvl, SIGTRAP) == NOTIFY_STOP)
86 return;
87
88 if (lvl < 0x100) {
89 sprintf(buffer, "Bad hw trap %lx at tl0\n", lvl);
90 die_if_kernel(buffer, regs);
91 }
92
93 lvl -= 0x100;
94 if (regs->tstate & TSTATE_PRIV) {
95 sprintf(buffer, "Kernel bad sw trap %lx", lvl);
96 die_if_kernel(buffer, regs);
97 }
98 if (test_thread_flag(TIF_32BIT)) {
99 regs->tpc &= 0xffffffff;
100 regs->tnpc &= 0xffffffff;
101 }
102 info.si_signo = SIGILL;
103 info.si_errno = 0;
104 info.si_code = ILL_ILLTRP;
105 info.si_addr = (void __user *)regs->tpc;
106 info.si_trapno = lvl;
107 force_sig_info(SIGILL, &info, current);
108}
109
110void bad_trap_tl1(struct pt_regs *regs, long lvl)
111{
112 char buffer[32];
113
114 if (notify_die(DIE_TRAP_TL1, "bad trap tl1", regs,
115 0, lvl, SIGTRAP) == NOTIFY_STOP)
116 return;
117
118 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
119
120 sprintf (buffer, "Bad trap %lx at tl>0", lvl);
121 die_if_kernel (buffer, regs);
122}
123
124#ifdef CONFIG_DEBUG_BUGVERBOSE
125void do_BUG(const char *file, int line)
126{
127 bust_spinlocks(1);
128 printk("kernel BUG at %s:%d!\n", file, line);
129}
130#endif
131
David S. Miller881d0212008-08-24 22:08:34 -0700132static DEFINE_SPINLOCK(dimm_handler_lock);
133static dimm_printer_t dimm_handler;
134
135static int sprintf_dimm(int synd_code, unsigned long paddr, char *buf, int buflen)
136{
137 unsigned long flags;
138 int ret = -ENODEV;
139
140 spin_lock_irqsave(&dimm_handler_lock, flags);
141 if (dimm_handler) {
142 ret = dimm_handler(synd_code, paddr, buf, buflen);
143 } else if (tlb_type == spitfire) {
144 if (prom_getunumber(synd_code, paddr, buf, buflen) == -1)
145 ret = -EINVAL;
146 else
147 ret = 0;
148 } else
149 ret = -ENODEV;
150 spin_unlock_irqrestore(&dimm_handler_lock, flags);
151
152 return ret;
153}
154
155int register_dimm_printer(dimm_printer_t func)
156{
157 unsigned long flags;
158 int ret = 0;
159
160 spin_lock_irqsave(&dimm_handler_lock, flags);
161 if (!dimm_handler)
162 dimm_handler = func;
163 else
164 ret = -EEXIST;
165 spin_unlock_irqrestore(&dimm_handler_lock, flags);
166
167 return ret;
168}
David S. Miller41660e92008-08-24 22:17:29 -0700169EXPORT_SYMBOL_GPL(register_dimm_printer);
David S. Miller881d0212008-08-24 22:08:34 -0700170
171void unregister_dimm_printer(dimm_printer_t func)
172{
173 unsigned long flags;
174
175 spin_lock_irqsave(&dimm_handler_lock, flags);
176 if (dimm_handler == func)
177 dimm_handler = NULL;
178 spin_unlock_irqrestore(&dimm_handler_lock, flags);
179}
David S. Miller41660e92008-08-24 22:17:29 -0700180EXPORT_SYMBOL_GPL(unregister_dimm_printer);
David S. Miller881d0212008-08-24 22:08:34 -0700181
David S. Miller6c52a962005-08-29 12:45:11 -0700182void spitfire_insn_access_exception(struct pt_regs *regs, unsigned long sfsr, unsigned long sfar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 siginfo_t info;
185
186 if (notify_die(DIE_TRAP, "instruction access exception", regs,
187 0, 0x8, SIGTRAP) == NOTIFY_STOP)
188 return;
189
190 if (regs->tstate & TSTATE_PRIV) {
David S. Miller6c52a962005-08-29 12:45:11 -0700191 printk("spitfire_insn_access_exception: SFSR[%016lx] "
192 "SFAR[%016lx], going.\n", sfsr, sfar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 die_if_kernel("Iax", regs);
194 }
195 if (test_thread_flag(TIF_32BIT)) {
196 regs->tpc &= 0xffffffff;
197 regs->tnpc &= 0xffffffff;
198 }
199 info.si_signo = SIGSEGV;
200 info.si_errno = 0;
201 info.si_code = SEGV_MAPERR;
202 info.si_addr = (void __user *)regs->tpc;
203 info.si_trapno = 0;
204 force_sig_info(SIGSEGV, &info, current);
205}
206
David S. Miller6c52a962005-08-29 12:45:11 -0700207void spitfire_insn_access_exception_tl1(struct pt_regs *regs, unsigned long sfsr, unsigned long sfar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 if (notify_die(DIE_TRAP_TL1, "instruction access exception tl1", regs,
210 0, 0x8, SIGTRAP) == NOTIFY_STOP)
211 return;
212
213 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
David S. Miller6c52a962005-08-29 12:45:11 -0700214 spitfire_insn_access_exception(regs, sfsr, sfar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
David S. Millered6b0b42006-02-09 20:20:34 -0800217void sun4v_insn_access_exception(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx)
218{
219 unsigned short type = (type_ctx >> 16);
220 unsigned short ctx = (type_ctx & 0xffff);
221 siginfo_t info;
222
223 if (notify_die(DIE_TRAP, "instruction access exception", regs,
224 0, 0x8, SIGTRAP) == NOTIFY_STOP)
225 return;
226
227 if (regs->tstate & TSTATE_PRIV) {
228 printk("sun4v_insn_access_exception: ADDR[%016lx] "
229 "CTX[%04x] TYPE[%04x], going.\n",
230 addr, ctx, type);
231 die_if_kernel("Iax", regs);
232 }
233
234 if (test_thread_flag(TIF_32BIT)) {
235 regs->tpc &= 0xffffffff;
236 regs->tnpc &= 0xffffffff;
237 }
238 info.si_signo = SIGSEGV;
239 info.si_errno = 0;
240 info.si_code = SEGV_MAPERR;
241 info.si_addr = (void __user *) addr;
242 info.si_trapno = 0;
243 force_sig_info(SIGSEGV, &info, current);
244}
245
246void sun4v_insn_access_exception_tl1(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx)
247{
248 if (notify_die(DIE_TRAP_TL1, "instruction access exception tl1", regs,
249 0, 0x8, SIGTRAP) == NOTIFY_STOP)
250 return;
251
252 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
253 sun4v_insn_access_exception(regs, addr, type_ctx);
254}
255
David S. Miller6c52a962005-08-29 12:45:11 -0700256void spitfire_data_access_exception(struct pt_regs *regs, unsigned long sfsr, unsigned long sfar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 siginfo_t info;
259
260 if (notify_die(DIE_TRAP, "data access exception", regs,
261 0, 0x30, SIGTRAP) == NOTIFY_STOP)
262 return;
263
264 if (regs->tstate & TSTATE_PRIV) {
265 /* Test if this comes from uaccess places. */
David S. Miller8cf14af2005-09-28 20:21:11 -0700266 const struct exception_table_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David S. Miller8cf14af2005-09-28 20:21:11 -0700268 entry = search_exception_tables(regs->tpc);
269 if (entry) {
270 /* Ouch, somebody is trying VM hole tricks on us... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#ifdef DEBUG_EXCEPTIONS
272 printk("Exception: PC<%016lx> faddr<UNKNOWN>\n", regs->tpc);
David S. Miller8cf14af2005-09-28 20:21:11 -0700273 printk("EX_TABLE: insn<%016lx> fixup<%016lx>\n",
274 regs->tpc, entry->fixup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif
David S. Miller8cf14af2005-09-28 20:21:11 -0700276 regs->tpc = entry->fixup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 regs->tnpc = regs->tpc + 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return;
279 }
280 /* Shit... */
David S. Miller6c52a962005-08-29 12:45:11 -0700281 printk("spitfire_data_access_exception: SFSR[%016lx] "
282 "SFAR[%016lx], going.\n", sfsr, sfar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 die_if_kernel("Dax", regs);
284 }
285
286 info.si_signo = SIGSEGV;
287 info.si_errno = 0;
288 info.si_code = SEGV_MAPERR;
289 info.si_addr = (void __user *)sfar;
290 info.si_trapno = 0;
291 force_sig_info(SIGSEGV, &info, current);
292}
293
David S. Miller6c52a962005-08-29 12:45:11 -0700294void spitfire_data_access_exception_tl1(struct pt_regs *regs, unsigned long sfsr, unsigned long sfar)
David S. Millerbde4e4e2005-08-29 12:44:57 -0700295{
296 if (notify_die(DIE_TRAP_TL1, "data access exception tl1", regs,
297 0, 0x30, SIGTRAP) == NOTIFY_STOP)
298 return;
299
300 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
David S. Miller6c52a962005-08-29 12:45:11 -0700301 spitfire_data_access_exception(regs, sfsr, sfar);
David S. Millerbde4e4e2005-08-29 12:44:57 -0700302}
303
David S. Millered6b0b42006-02-09 20:20:34 -0800304void sun4v_data_access_exception(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx)
305{
306 unsigned short type = (type_ctx >> 16);
307 unsigned short ctx = (type_ctx & 0xffff);
308 siginfo_t info;
309
310 if (notify_die(DIE_TRAP, "data access exception", regs,
311 0, 0x8, SIGTRAP) == NOTIFY_STOP)
312 return;
313
314 if (regs->tstate & TSTATE_PRIV) {
315 printk("sun4v_data_access_exception: ADDR[%016lx] "
316 "CTX[%04x] TYPE[%04x], going.\n",
317 addr, ctx, type);
David S. Miller55555632006-02-20 01:50:09 -0800318 die_if_kernel("Dax", regs);
David S. Millered6b0b42006-02-09 20:20:34 -0800319 }
320
321 if (test_thread_flag(TIF_32BIT)) {
322 regs->tpc &= 0xffffffff;
323 regs->tnpc &= 0xffffffff;
324 }
325 info.si_signo = SIGSEGV;
326 info.si_errno = 0;
327 info.si_code = SEGV_MAPERR;
328 info.si_addr = (void __user *) addr;
329 info.si_trapno = 0;
330 force_sig_info(SIGSEGV, &info, current);
331}
332
333void sun4v_data_access_exception_tl1(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx)
334{
335 if (notify_die(DIE_TRAP_TL1, "data access exception tl1", regs,
336 0, 0x8, SIGTRAP) == NOTIFY_STOP)
337 return;
338
339 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
340 sun4v_data_access_exception(regs, addr, type_ctx);
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#ifdef CONFIG_PCI
344/* This is really pathetic... */
345extern volatile int pci_poke_in_progress;
346extern volatile int pci_poke_cpu;
347extern volatile int pci_poke_faulted;
348#endif
349
350/* When access exceptions happen, we must do this. */
351static void spitfire_clean_and_reenable_l1_caches(void)
352{
353 unsigned long va;
354
355 if (tlb_type != spitfire)
356 BUG();
357
358 /* Clean 'em. */
359 for (va = 0; va < (PAGE_SIZE << 1); va += 32) {
360 spitfire_put_icache_tag(va, 0x0);
361 spitfire_put_dcache_tag(va, 0x0);
362 }
363
364 /* Re-enable in LSU. */
365 __asm__ __volatile__("flush %%g6\n\t"
366 "membar #Sync\n\t"
367 "stxa %0, [%%g0] %1\n\t"
368 "membar #Sync"
369 : /* no outputs */
370 : "r" (LSU_CONTROL_IC | LSU_CONTROL_DC |
371 LSU_CONTROL_IM | LSU_CONTROL_DM),
372 "i" (ASI_LSU_CONTROL)
373 : "memory");
374}
375
David S. Miller6c52a962005-08-29 12:45:11 -0700376static void spitfire_enable_estate_errors(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
David S. Miller6c52a962005-08-29 12:45:11 -0700378 __asm__ __volatile__("stxa %0, [%%g0] %1\n\t"
379 "membar #Sync"
380 : /* no outputs */
381 : "r" (ESTATE_ERR_ALL),
382 "i" (ASI_ESTATE_ERROR_EN));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385static char ecc_syndrome_table[] = {
386 0x4c, 0x40, 0x41, 0x48, 0x42, 0x48, 0x48, 0x49,
387 0x43, 0x48, 0x48, 0x49, 0x48, 0x49, 0x49, 0x4a,
388 0x44, 0x48, 0x48, 0x20, 0x48, 0x39, 0x4b, 0x48,
389 0x48, 0x25, 0x31, 0x48, 0x28, 0x48, 0x48, 0x2c,
390 0x45, 0x48, 0x48, 0x21, 0x48, 0x3d, 0x04, 0x48,
391 0x48, 0x4b, 0x35, 0x48, 0x2d, 0x48, 0x48, 0x29,
392 0x48, 0x00, 0x01, 0x48, 0x0a, 0x48, 0x48, 0x4b,
393 0x0f, 0x48, 0x48, 0x4b, 0x48, 0x49, 0x49, 0x48,
394 0x46, 0x48, 0x48, 0x2a, 0x48, 0x3b, 0x27, 0x48,
395 0x48, 0x4b, 0x33, 0x48, 0x22, 0x48, 0x48, 0x2e,
396 0x48, 0x19, 0x1d, 0x48, 0x1b, 0x4a, 0x48, 0x4b,
397 0x1f, 0x48, 0x4a, 0x4b, 0x48, 0x4b, 0x4b, 0x48,
398 0x48, 0x4b, 0x24, 0x48, 0x07, 0x48, 0x48, 0x36,
399 0x4b, 0x48, 0x48, 0x3e, 0x48, 0x30, 0x38, 0x48,
400 0x49, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x16, 0x48,
401 0x48, 0x12, 0x4b, 0x48, 0x49, 0x48, 0x48, 0x4b,
402 0x47, 0x48, 0x48, 0x2f, 0x48, 0x3f, 0x4b, 0x48,
403 0x48, 0x06, 0x37, 0x48, 0x23, 0x48, 0x48, 0x2b,
404 0x48, 0x05, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x32,
405 0x26, 0x48, 0x48, 0x3a, 0x48, 0x34, 0x3c, 0x48,
406 0x48, 0x11, 0x15, 0x48, 0x13, 0x4a, 0x48, 0x4b,
407 0x17, 0x48, 0x4a, 0x4b, 0x48, 0x4b, 0x4b, 0x48,
408 0x49, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x1e, 0x48,
409 0x48, 0x1a, 0x4b, 0x48, 0x49, 0x48, 0x48, 0x4b,
410 0x48, 0x08, 0x0d, 0x48, 0x02, 0x48, 0x48, 0x49,
411 0x03, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x4b, 0x48,
412 0x49, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x10, 0x48,
413 0x48, 0x14, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x4b,
414 0x49, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x18, 0x48,
415 0x48, 0x1c, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x4b,
416 0x4a, 0x0c, 0x09, 0x48, 0x0e, 0x48, 0x48, 0x4b,
417 0x0b, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x4b, 0x4a
418};
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static char *syndrome_unknown = "<Unknown>";
421
David S. Miller6c52a962005-08-29 12:45:11 -0700422static void spitfire_log_udb_syndrome(unsigned long afar, unsigned long udbh, unsigned long udbl, unsigned long bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
David S. Miller6c52a962005-08-29 12:45:11 -0700424 unsigned short scode;
425 char memmod_str[64], *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
David S. Miller6c52a962005-08-29 12:45:11 -0700427 if (udbl & bit) {
428 scode = ecc_syndrome_table[udbl & 0xff];
David S. Miller881d0212008-08-24 22:08:34 -0700429 if (sprintf_dimm(scode, afar, memmod_str, sizeof(memmod_str)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 p = syndrome_unknown;
431 else
432 p = memmod_str;
433 printk(KERN_WARNING "CPU[%d]: UDBL Syndrome[%x] "
434 "Memory Module \"%s\"\n",
435 smp_processor_id(), scode, p);
436 }
437
David S. Miller6c52a962005-08-29 12:45:11 -0700438 if (udbh & bit) {
439 scode = ecc_syndrome_table[udbh & 0xff];
David S. Miller881d0212008-08-24 22:08:34 -0700440 if (sprintf_dimm(scode, afar, memmod_str, sizeof(memmod_str)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 p = syndrome_unknown;
442 else
443 p = memmod_str;
444 printk(KERN_WARNING "CPU[%d]: UDBH Syndrome[%x] "
445 "Memory Module \"%s\"\n",
446 smp_processor_id(), scode, p);
447 }
David S. Miller6c52a962005-08-29 12:45:11 -0700448
449}
450
451static void spitfire_cee_log(unsigned long afsr, unsigned long afar, unsigned long udbh, unsigned long udbl, int tl1, struct pt_regs *regs)
452{
453
454 printk(KERN_WARNING "CPU[%d]: Correctable ECC Error "
455 "AFSR[%lx] AFAR[%016lx] UDBL[%lx] UDBH[%lx] TL>1[%d]\n",
456 smp_processor_id(), afsr, afar, udbl, udbh, tl1);
457
458 spitfire_log_udb_syndrome(afar, udbh, udbl, UDBE_CE);
459
460 /* We always log it, even if someone is listening for this
461 * trap.
462 */
463 notify_die(DIE_TRAP, "Correctable ECC Error", regs,
464 0, TRAP_TYPE_CEE, SIGTRAP);
465
466 /* The Correctable ECC Error trap does not disable I/D caches. So
467 * we only have to restore the ESTATE Error Enable register.
468 */
469 spitfire_enable_estate_errors();
470}
471
472static void spitfire_ue_log(unsigned long afsr, unsigned long afar, unsigned long udbh, unsigned long udbl, unsigned long tt, int tl1, struct pt_regs *regs)
473{
474 siginfo_t info;
475
476 printk(KERN_WARNING "CPU[%d]: Uncorrectable Error AFSR[%lx] "
477 "AFAR[%lx] UDBL[%lx] UDBH[%ld] TT[%lx] TL>1[%d]\n",
478 smp_processor_id(), afsr, afar, udbl, udbh, tt, tl1);
479
480 /* XXX add more human friendly logging of the error status
481 * XXX as is implemented for cheetah
482 */
483
484 spitfire_log_udb_syndrome(afar, udbh, udbl, UDBE_UE);
485
486 /* We always log it, even if someone is listening for this
487 * trap.
488 */
489 notify_die(DIE_TRAP, "Uncorrectable Error", regs,
490 0, tt, SIGTRAP);
491
492 if (regs->tstate & TSTATE_PRIV) {
493 if (tl1)
494 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
495 die_if_kernel("UE", regs);
496 }
497
498 /* XXX need more intelligent processing here, such as is implemented
499 * XXX for cheetah errors, in fact if the E-cache still holds the
500 * XXX line with bad parity this will loop
501 */
502
503 spitfire_clean_and_reenable_l1_caches();
504 spitfire_enable_estate_errors();
505
506 if (test_thread_flag(TIF_32BIT)) {
507 regs->tpc &= 0xffffffff;
508 regs->tnpc &= 0xffffffff;
509 }
510 info.si_signo = SIGBUS;
511 info.si_errno = 0;
512 info.si_code = BUS_OBJERR;
513 info.si_addr = (void *)0;
514 info.si_trapno = 0;
515 force_sig_info(SIGBUS, &info, current);
516}
517
518void spitfire_access_error(struct pt_regs *regs, unsigned long status_encoded, unsigned long afar)
519{
520 unsigned long afsr, tt, udbh, udbl;
521 int tl1;
522
523 afsr = (status_encoded & SFSTAT_AFSR_MASK) >> SFSTAT_AFSR_SHIFT;
524 tt = (status_encoded & SFSTAT_TRAP_TYPE) >> SFSTAT_TRAP_TYPE_SHIFT;
525 tl1 = (status_encoded & SFSTAT_TL_GT_ONE) ? 1 : 0;
526 udbl = (status_encoded & SFSTAT_UDBL_MASK) >> SFSTAT_UDBL_SHIFT;
527 udbh = (status_encoded & SFSTAT_UDBH_MASK) >> SFSTAT_UDBH_SHIFT;
528
529#ifdef CONFIG_PCI
530 if (tt == TRAP_TYPE_DAE &&
531 pci_poke_in_progress && pci_poke_cpu == smp_processor_id()) {
532 spitfire_clean_and_reenable_l1_caches();
533 spitfire_enable_estate_errors();
534
535 pci_poke_faulted = 1;
536 regs->tnpc = regs->tpc + 4;
537 return;
538 }
539#endif
540
541 if (afsr & SFAFSR_UE)
542 spitfire_ue_log(afsr, afar, udbh, udbl, tt, tl1, regs);
543
544 if (tt == TRAP_TYPE_CEE) {
545 /* Handle the case where we took a CEE trap, but ACK'd
546 * only the UE state in the UDB error registers.
547 */
548 if (afsr & SFAFSR_UE) {
549 if (udbh & UDBE_CE) {
550 __asm__ __volatile__(
551 "stxa %0, [%1] %2\n\t"
552 "membar #Sync"
553 : /* no outputs */
554 : "r" (udbh & UDBE_CE),
555 "r" (0x0), "i" (ASI_UDB_ERROR_W));
556 }
557 if (udbl & UDBE_CE) {
558 __asm__ __volatile__(
559 "stxa %0, [%1] %2\n\t"
560 "membar #Sync"
561 : /* no outputs */
562 : "r" (udbl & UDBE_CE),
563 "r" (0x18), "i" (ASI_UDB_ERROR_W));
564 }
565 }
566
567 spitfire_cee_log(afsr, afar, udbh, udbl, tl1, regs);
568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
David S. Miller816242d2005-05-23 15:52:08 -0700571int cheetah_pcache_forced_on;
572
573void cheetah_enable_pcache(void)
574{
575 unsigned long dcr;
576
577 printk("CHEETAH: Enabling P-Cache on cpu %d.\n",
578 smp_processor_id());
579
580 __asm__ __volatile__("ldxa [%%g0] %1, %0"
581 : "=r" (dcr)
582 : "i" (ASI_DCU_CONTROL_REG));
583 dcr |= (DCU_PE | DCU_HPE | DCU_SPE | DCU_SL);
584 __asm__ __volatile__("stxa %0, [%%g0] %1\n\t"
585 "membar #Sync"
586 : /* no outputs */
587 : "r" (dcr), "i" (ASI_DCU_CONTROL_REG));
588}
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590/* Cheetah error trap handling. */
591static unsigned long ecache_flush_physbase;
592static unsigned long ecache_flush_linesize;
593static unsigned long ecache_flush_size;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595/* This table is ordered in priority of errors and matches the
596 * AFAR overwrite policy as well.
597 */
598
599struct afsr_error_table {
600 unsigned long mask;
601 const char *name;
602};
603
604static const char CHAFSR_PERR_msg[] =
605 "System interface protocol error";
606static const char CHAFSR_IERR_msg[] =
607 "Internal processor error";
608static const char CHAFSR_ISAP_msg[] =
609 "System request parity error on incoming addresss";
610static const char CHAFSR_UCU_msg[] =
611 "Uncorrectable E-cache ECC error for ifetch/data";
612static const char CHAFSR_UCC_msg[] =
613 "SW Correctable E-cache ECC error for ifetch/data";
614static const char CHAFSR_UE_msg[] =
615 "Uncorrectable system bus data ECC error for read";
616static const char CHAFSR_EDU_msg[] =
617 "Uncorrectable E-cache ECC error for stmerge/blkld";
618static const char CHAFSR_EMU_msg[] =
619 "Uncorrectable system bus MTAG error";
620static const char CHAFSR_WDU_msg[] =
621 "Uncorrectable E-cache ECC error for writeback";
622static const char CHAFSR_CPU_msg[] =
623 "Uncorrectable ECC error for copyout";
624static const char CHAFSR_CE_msg[] =
625 "HW corrected system bus data ECC error for read";
626static const char CHAFSR_EDC_msg[] =
627 "HW corrected E-cache ECC error for stmerge/blkld";
628static const char CHAFSR_EMC_msg[] =
629 "HW corrected system bus MTAG ECC error";
630static const char CHAFSR_WDC_msg[] =
631 "HW corrected E-cache ECC error for writeback";
632static const char CHAFSR_CPC_msg[] =
633 "HW corrected ECC error for copyout";
634static const char CHAFSR_TO_msg[] =
635 "Unmapped error from system bus";
636static const char CHAFSR_BERR_msg[] =
637 "Bus error response from system bus";
638static const char CHAFSR_IVC_msg[] =
639 "HW corrected system bus data ECC error for ivec read";
640static const char CHAFSR_IVU_msg[] =
641 "Uncorrectable system bus data ECC error for ivec read";
642static struct afsr_error_table __cheetah_error_table[] = {
643 { CHAFSR_PERR, CHAFSR_PERR_msg },
644 { CHAFSR_IERR, CHAFSR_IERR_msg },
645 { CHAFSR_ISAP, CHAFSR_ISAP_msg },
646 { CHAFSR_UCU, CHAFSR_UCU_msg },
647 { CHAFSR_UCC, CHAFSR_UCC_msg },
648 { CHAFSR_UE, CHAFSR_UE_msg },
649 { CHAFSR_EDU, CHAFSR_EDU_msg },
650 { CHAFSR_EMU, CHAFSR_EMU_msg },
651 { CHAFSR_WDU, CHAFSR_WDU_msg },
652 { CHAFSR_CPU, CHAFSR_CPU_msg },
653 { CHAFSR_CE, CHAFSR_CE_msg },
654 { CHAFSR_EDC, CHAFSR_EDC_msg },
655 { CHAFSR_EMC, CHAFSR_EMC_msg },
656 { CHAFSR_WDC, CHAFSR_WDC_msg },
657 { CHAFSR_CPC, CHAFSR_CPC_msg },
658 { CHAFSR_TO, CHAFSR_TO_msg },
659 { CHAFSR_BERR, CHAFSR_BERR_msg },
660 /* These two do not update the AFAR. */
661 { CHAFSR_IVC, CHAFSR_IVC_msg },
662 { CHAFSR_IVU, CHAFSR_IVU_msg },
663 { 0, NULL },
664};
665static const char CHPAFSR_DTO_msg[] =
666 "System bus unmapped error for prefetch/storequeue-read";
667static const char CHPAFSR_DBERR_msg[] =
668 "System bus error for prefetch/storequeue-read";
669static const char CHPAFSR_THCE_msg[] =
670 "Hardware corrected E-cache Tag ECC error";
671static const char CHPAFSR_TSCE_msg[] =
672 "SW handled correctable E-cache Tag ECC error";
673static const char CHPAFSR_TUE_msg[] =
674 "Uncorrectable E-cache Tag ECC error";
675static const char CHPAFSR_DUE_msg[] =
676 "System bus uncorrectable data ECC error due to prefetch/store-fill";
677static struct afsr_error_table __cheetah_plus_error_table[] = {
678 { CHAFSR_PERR, CHAFSR_PERR_msg },
679 { CHAFSR_IERR, CHAFSR_IERR_msg },
680 { CHAFSR_ISAP, CHAFSR_ISAP_msg },
681 { CHAFSR_UCU, CHAFSR_UCU_msg },
682 { CHAFSR_UCC, CHAFSR_UCC_msg },
683 { CHAFSR_UE, CHAFSR_UE_msg },
684 { CHAFSR_EDU, CHAFSR_EDU_msg },
685 { CHAFSR_EMU, CHAFSR_EMU_msg },
686 { CHAFSR_WDU, CHAFSR_WDU_msg },
687 { CHAFSR_CPU, CHAFSR_CPU_msg },
688 { CHAFSR_CE, CHAFSR_CE_msg },
689 { CHAFSR_EDC, CHAFSR_EDC_msg },
690 { CHAFSR_EMC, CHAFSR_EMC_msg },
691 { CHAFSR_WDC, CHAFSR_WDC_msg },
692 { CHAFSR_CPC, CHAFSR_CPC_msg },
693 { CHAFSR_TO, CHAFSR_TO_msg },
694 { CHAFSR_BERR, CHAFSR_BERR_msg },
695 { CHPAFSR_DTO, CHPAFSR_DTO_msg },
696 { CHPAFSR_DBERR, CHPAFSR_DBERR_msg },
697 { CHPAFSR_THCE, CHPAFSR_THCE_msg },
698 { CHPAFSR_TSCE, CHPAFSR_TSCE_msg },
699 { CHPAFSR_TUE, CHPAFSR_TUE_msg },
700 { CHPAFSR_DUE, CHPAFSR_DUE_msg },
701 /* These two do not update the AFAR. */
702 { CHAFSR_IVC, CHAFSR_IVC_msg },
703 { CHAFSR_IVU, CHAFSR_IVU_msg },
704 { 0, NULL },
705};
706static const char JPAFSR_JETO_msg[] =
707 "System interface protocol error, hw timeout caused";
708static const char JPAFSR_SCE_msg[] =
709 "Parity error on system snoop results";
710static const char JPAFSR_JEIC_msg[] =
711 "System interface protocol error, illegal command detected";
712static const char JPAFSR_JEIT_msg[] =
713 "System interface protocol error, illegal ADTYPE detected";
714static const char JPAFSR_OM_msg[] =
715 "Out of range memory error has occurred";
716static const char JPAFSR_ETP_msg[] =
717 "Parity error on L2 cache tag SRAM";
718static const char JPAFSR_UMS_msg[] =
719 "Error due to unsupported store";
720static const char JPAFSR_RUE_msg[] =
721 "Uncorrectable ECC error from remote cache/memory";
722static const char JPAFSR_RCE_msg[] =
723 "Correctable ECC error from remote cache/memory";
724static const char JPAFSR_BP_msg[] =
725 "JBUS parity error on returned read data";
726static const char JPAFSR_WBP_msg[] =
727 "JBUS parity error on data for writeback or block store";
728static const char JPAFSR_FRC_msg[] =
729 "Foreign read to DRAM incurring correctable ECC error";
730static const char JPAFSR_FRU_msg[] =
731 "Foreign read to DRAM incurring uncorrectable ECC error";
732static struct afsr_error_table __jalapeno_error_table[] = {
733 { JPAFSR_JETO, JPAFSR_JETO_msg },
734 { JPAFSR_SCE, JPAFSR_SCE_msg },
735 { JPAFSR_JEIC, JPAFSR_JEIC_msg },
736 { JPAFSR_JEIT, JPAFSR_JEIT_msg },
737 { CHAFSR_PERR, CHAFSR_PERR_msg },
738 { CHAFSR_IERR, CHAFSR_IERR_msg },
739 { CHAFSR_ISAP, CHAFSR_ISAP_msg },
740 { CHAFSR_UCU, CHAFSR_UCU_msg },
741 { CHAFSR_UCC, CHAFSR_UCC_msg },
742 { CHAFSR_UE, CHAFSR_UE_msg },
743 { CHAFSR_EDU, CHAFSR_EDU_msg },
744 { JPAFSR_OM, JPAFSR_OM_msg },
745 { CHAFSR_WDU, CHAFSR_WDU_msg },
746 { CHAFSR_CPU, CHAFSR_CPU_msg },
747 { CHAFSR_CE, CHAFSR_CE_msg },
748 { CHAFSR_EDC, CHAFSR_EDC_msg },
749 { JPAFSR_ETP, JPAFSR_ETP_msg },
750 { CHAFSR_WDC, CHAFSR_WDC_msg },
751 { CHAFSR_CPC, CHAFSR_CPC_msg },
752 { CHAFSR_TO, CHAFSR_TO_msg },
753 { CHAFSR_BERR, CHAFSR_BERR_msg },
754 { JPAFSR_UMS, JPAFSR_UMS_msg },
755 { JPAFSR_RUE, JPAFSR_RUE_msg },
756 { JPAFSR_RCE, JPAFSR_RCE_msg },
757 { JPAFSR_BP, JPAFSR_BP_msg },
758 { JPAFSR_WBP, JPAFSR_WBP_msg },
759 { JPAFSR_FRC, JPAFSR_FRC_msg },
760 { JPAFSR_FRU, JPAFSR_FRU_msg },
761 /* These two do not update the AFAR. */
762 { CHAFSR_IVU, CHAFSR_IVU_msg },
763 { 0, NULL },
764};
765static struct afsr_error_table *cheetah_error_table;
766static unsigned long cheetah_afsr_errors;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768struct cheetah_err_info *cheetah_error_log;
769
David S. Millerd979f172007-10-27 00:13:04 -0700770static inline struct cheetah_err_info *cheetah_get_error_log(unsigned long afsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 struct cheetah_err_info *p;
773 int cpu = smp_processor_id();
774
775 if (!cheetah_error_log)
776 return NULL;
777
778 p = cheetah_error_log + (cpu * 2);
779 if ((afsr & CHAFSR_TL1) != 0UL)
780 p++;
781
782 return p;
783}
784
785extern unsigned int tl0_icpe[], tl1_icpe[];
786extern unsigned int tl0_dcpe[], tl1_dcpe[];
787extern unsigned int tl0_fecc[], tl1_fecc[];
788extern unsigned int tl0_cee[], tl1_cee[];
789extern unsigned int tl0_iae[], tl1_iae[];
790extern unsigned int tl0_dae[], tl1_dae[];
791extern unsigned int cheetah_plus_icpe_trap_vector[], cheetah_plus_icpe_trap_vector_tl1[];
792extern unsigned int cheetah_plus_dcpe_trap_vector[], cheetah_plus_dcpe_trap_vector_tl1[];
793extern unsigned int cheetah_fecc_trap_vector[], cheetah_fecc_trap_vector_tl1[];
794extern unsigned int cheetah_cee_trap_vector[], cheetah_cee_trap_vector_tl1[];
795extern unsigned int cheetah_deferred_trap_vector[], cheetah_deferred_trap_vector_tl1[];
796
797void __init cheetah_ecache_flush_init(void)
798{
799 unsigned long largest_size, smallest_linesize, order, ver;
David S. Miller5cbc3072007-05-25 15:49:59 -0700800 int i, sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 /* Scan all cpu device tree nodes, note two values:
803 * 1) largest E-cache size
804 * 2) smallest E-cache line size
805 */
806 largest_size = 0UL;
807 smallest_linesize = ~0UL;
808
David S. Miller5cbc3072007-05-25 15:49:59 -0700809 for (i = 0; i < NR_CPUS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 unsigned long val;
811
David S. Miller5cbc3072007-05-25 15:49:59 -0700812 val = cpu_data(i).ecache_size;
813 if (!val)
814 continue;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (val > largest_size)
817 largest_size = val;
David S. Miller5cbc3072007-05-25 15:49:59 -0700818
819 val = cpu_data(i).ecache_line_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (val < smallest_linesize)
821 smallest_linesize = val;
David S. Miller5cbc3072007-05-25 15:49:59 -0700822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
825 if (largest_size == 0UL || smallest_linesize == ~0UL) {
826 prom_printf("cheetah_ecache_flush_init: Cannot probe cpu E-cache "
827 "parameters.\n");
828 prom_halt();
829 }
830
831 ecache_flush_size = (2 * largest_size);
832 ecache_flush_linesize = smallest_linesize;
833
David S. Miller10147572005-09-28 21:46:43 -0700834 ecache_flush_physbase = find_ecache_flush_span(ecache_flush_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
David S. Miller10147572005-09-28 21:46:43 -0700836 if (ecache_flush_physbase == ~0UL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 prom_printf("cheetah_ecache_flush_init: Cannot find %d byte "
David S. Miller10147572005-09-28 21:46:43 -0700838 "contiguous physical memory.\n",
839 ecache_flush_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 prom_halt();
841 }
842
843 /* Now allocate error trap reporting scoreboard. */
David S. Miller07f8e5f2006-06-21 23:34:02 -0700844 sz = NR_CPUS * (2 * sizeof(struct cheetah_err_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 for (order = 0; order < MAX_ORDER; order++) {
David S. Miller07f8e5f2006-06-21 23:34:02 -0700846 if ((PAGE_SIZE << order) >= sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 break;
848 }
849 cheetah_error_log = (struct cheetah_err_info *)
850 __get_free_pages(GFP_KERNEL, order);
851 if (!cheetah_error_log) {
852 prom_printf("cheetah_ecache_flush_init: Failed to allocate "
David S. Miller07f8e5f2006-06-21 23:34:02 -0700853 "error logging scoreboard (%d bytes).\n", sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 prom_halt();
855 }
856 memset(cheetah_error_log, 0, PAGE_SIZE << order);
857
858 /* Mark all AFSRs as invalid so that the trap handler will
859 * log new new information there.
860 */
861 for (i = 0; i < 2 * NR_CPUS; i++)
862 cheetah_error_log[i].afsr = CHAFSR_INVALID;
863
864 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
David S. Miller92704a12006-02-26 23:27:19 -0800865 if ((ver >> 32) == __JALAPENO_ID ||
866 (ver >> 32) == __SERRANO_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 cheetah_error_table = &__jalapeno_error_table[0];
868 cheetah_afsr_errors = JPAFSR_ERRORS;
869 } else if ((ver >> 32) == 0x003e0015) {
870 cheetah_error_table = &__cheetah_plus_error_table[0];
871 cheetah_afsr_errors = CHPAFSR_ERRORS;
872 } else {
873 cheetah_error_table = &__cheetah_error_table[0];
874 cheetah_afsr_errors = CHAFSR_ERRORS;
875 }
876
877 /* Now patch trap tables. */
878 memcpy(tl0_fecc, cheetah_fecc_trap_vector, (8 * 4));
879 memcpy(tl1_fecc, cheetah_fecc_trap_vector_tl1, (8 * 4));
880 memcpy(tl0_cee, cheetah_cee_trap_vector, (8 * 4));
881 memcpy(tl1_cee, cheetah_cee_trap_vector_tl1, (8 * 4));
882 memcpy(tl0_iae, cheetah_deferred_trap_vector, (8 * 4));
883 memcpy(tl1_iae, cheetah_deferred_trap_vector_tl1, (8 * 4));
884 memcpy(tl0_dae, cheetah_deferred_trap_vector, (8 * 4));
885 memcpy(tl1_dae, cheetah_deferred_trap_vector_tl1, (8 * 4));
886 if (tlb_type == cheetah_plus) {
887 memcpy(tl0_dcpe, cheetah_plus_dcpe_trap_vector, (8 * 4));
888 memcpy(tl1_dcpe, cheetah_plus_dcpe_trap_vector_tl1, (8 * 4));
889 memcpy(tl0_icpe, cheetah_plus_icpe_trap_vector, (8 * 4));
890 memcpy(tl1_icpe, cheetah_plus_icpe_trap_vector_tl1, (8 * 4));
891 }
892 flushi(PAGE_OFFSET);
893}
894
895static void cheetah_flush_ecache(void)
896{
897 unsigned long flush_base = ecache_flush_physbase;
898 unsigned long flush_linesize = ecache_flush_linesize;
899 unsigned long flush_size = ecache_flush_size;
900
901 __asm__ __volatile__("1: subcc %0, %4, %0\n\t"
902 " bne,pt %%xcc, 1b\n\t"
903 " ldxa [%2 + %0] %3, %%g0\n\t"
904 : "=&r" (flush_size)
905 : "0" (flush_size), "r" (flush_base),
906 "i" (ASI_PHYS_USE_EC), "r" (flush_linesize));
907}
908
909static void cheetah_flush_ecache_line(unsigned long physaddr)
910{
911 unsigned long alias;
912
913 physaddr &= ~(8UL - 1UL);
914 physaddr = (ecache_flush_physbase +
915 (physaddr & ((ecache_flush_size>>1UL) - 1UL)));
916 alias = physaddr + (ecache_flush_size >> 1UL);
917 __asm__ __volatile__("ldxa [%0] %2, %%g0\n\t"
918 "ldxa [%1] %2, %%g0\n\t"
919 "membar #Sync"
920 : /* no outputs */
921 : "r" (physaddr), "r" (alias),
922 "i" (ASI_PHYS_USE_EC));
923}
924
925/* Unfortunately, the diagnostic access to the I-cache tags we need to
926 * use to clear the thing interferes with I-cache coherency transactions.
927 *
928 * So we must only flush the I-cache when it is disabled.
929 */
930static void __cheetah_flush_icache(void)
931{
David S. Miller80dc0d62005-09-26 00:32:17 -0700932 unsigned int icache_size, icache_line_size;
933 unsigned long addr;
934
935 icache_size = local_cpu_data().icache_size;
936 icache_line_size = local_cpu_data().icache_line_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 /* Clear the valid bits in all the tags. */
David S. Miller80dc0d62005-09-26 00:32:17 -0700939 for (addr = 0; addr < icache_size; addr += icache_line_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
941 "membar #Sync"
942 : /* no outputs */
David S. Miller80dc0d62005-09-26 00:32:17 -0700943 : "r" (addr | (2 << 3)),
944 "i" (ASI_IC_TAG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946}
947
948static void cheetah_flush_icache(void)
949{
950 unsigned long dcu_save;
951
952 /* Save current DCU, disable I-cache. */
953 __asm__ __volatile__("ldxa [%%g0] %1, %0\n\t"
954 "or %0, %2, %%g1\n\t"
955 "stxa %%g1, [%%g0] %1\n\t"
956 "membar #Sync"
957 : "=r" (dcu_save)
958 : "i" (ASI_DCU_CONTROL_REG), "i" (DCU_IC)
959 : "g1");
960
961 __cheetah_flush_icache();
962
963 /* Restore DCU register */
964 __asm__ __volatile__("stxa %0, [%%g0] %1\n\t"
965 "membar #Sync"
966 : /* no outputs */
967 : "r" (dcu_save), "i" (ASI_DCU_CONTROL_REG));
968}
969
970static void cheetah_flush_dcache(void)
971{
David S. Miller80dc0d62005-09-26 00:32:17 -0700972 unsigned int dcache_size, dcache_line_size;
973 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
David S. Miller80dc0d62005-09-26 00:32:17 -0700975 dcache_size = local_cpu_data().dcache_size;
976 dcache_line_size = local_cpu_data().dcache_line_size;
977
978 for (addr = 0; addr < dcache_size; addr += dcache_line_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
980 "membar #Sync"
981 : /* no outputs */
David S. Miller80dc0d62005-09-26 00:32:17 -0700982 : "r" (addr), "i" (ASI_DCACHE_TAG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984}
985
986/* In order to make the even parity correct we must do two things.
987 * First, we clear DC_data_parity and set DC_utag to an appropriate value.
988 * Next, we clear out all 32-bytes of data for that line. Data of
989 * all-zero + tag parity value of zero == correct parity.
990 */
991static void cheetah_plus_zap_dcache_parity(void)
992{
David S. Miller80dc0d62005-09-26 00:32:17 -0700993 unsigned int dcache_size, dcache_line_size;
994 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
David S. Miller80dc0d62005-09-26 00:32:17 -0700996 dcache_size = local_cpu_data().dcache_size;
997 dcache_line_size = local_cpu_data().dcache_line_size;
998
999 for (addr = 0; addr < dcache_size; addr += dcache_line_size) {
1000 unsigned long tag = (addr >> 14);
1001 unsigned long line;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 __asm__ __volatile__("membar #Sync\n\t"
1004 "stxa %0, [%1] %2\n\t"
1005 "membar #Sync"
1006 : /* no outputs */
David S. Miller80dc0d62005-09-26 00:32:17 -07001007 : "r" (tag), "r" (addr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 "i" (ASI_DCACHE_UTAG));
David S. Miller80dc0d62005-09-26 00:32:17 -07001009 for (line = addr; line < addr + dcache_line_size; line += 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 __asm__ __volatile__("membar #Sync\n\t"
1011 "stxa %%g0, [%0] %1\n\t"
1012 "membar #Sync"
1013 : /* no outputs */
David S. Miller80dc0d62005-09-26 00:32:17 -07001014 : "r" (line),
1015 "i" (ASI_DCACHE_DATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017}
1018
1019/* Conversion tables used to frob Cheetah AFSR syndrome values into
1020 * something palatable to the memory controller driver get_unumber
1021 * routine.
1022 */
1023#define MT0 137
1024#define MT1 138
1025#define MT2 139
1026#define NONE 254
1027#define MTC0 140
1028#define MTC1 141
1029#define MTC2 142
1030#define MTC3 143
1031#define C0 128
1032#define C1 129
1033#define C2 130
1034#define C3 131
1035#define C4 132
1036#define C5 133
1037#define C6 134
1038#define C7 135
1039#define C8 136
1040#define M2 144
1041#define M3 145
1042#define M4 146
1043#define M 147
1044static unsigned char cheetah_ecc_syntab[] = {
1045/*00*/NONE, C0, C1, M2, C2, M2, M3, 47, C3, M2, M2, 53, M2, 41, 29, M,
1046/*01*/C4, M, M, 50, M2, 38, 25, M2, M2, 33, 24, M2, 11, M, M2, 16,
1047/*02*/C5, M, M, 46, M2, 37, 19, M2, M, 31, 32, M, 7, M2, M2, 10,
1048/*03*/M2, 40, 13, M2, 59, M, M2, 66, M, M2, M2, 0, M2, 67, 71, M,
1049/*04*/C6, M, M, 43, M, 36, 18, M, M2, 49, 15, M, 63, M2, M2, 6,
1050/*05*/M2, 44, 28, M2, M, M2, M2, 52, 68, M2, M2, 62, M2, M3, M3, M4,
1051/*06*/M2, 26, 106, M2, 64, M, M2, 2, 120, M, M2, M3, M, M3, M3, M4,
1052/*07*/116, M2, M2, M3, M2, M3, M, M4, M2, 58, 54, M2, M, M4, M4, M3,
1053/*08*/C7, M2, M, 42, M, 35, 17, M2, M, 45, 14, M2, 21, M2, M2, 5,
1054/*09*/M, 27, M, M, 99, M, M, 3, 114, M2, M2, 20, M2, M3, M3, M,
1055/*0a*/M2, 23, 113, M2, 112, M2, M, 51, 95, M, M2, M3, M2, M3, M3, M2,
1056/*0b*/103, M, M2, M3, M2, M3, M3, M4, M2, 48, M, M, 73, M2, M, M3,
1057/*0c*/M2, 22, 110, M2, 109, M2, M, 9, 108, M2, M, M3, M2, M3, M3, M,
1058/*0d*/102, M2, M, M, M2, M3, M3, M, M2, M3, M3, M2, M, M4, M, M3,
1059/*0e*/98, M, M2, M3, M2, M, M3, M4, M2, M3, M3, M4, M3, M, M, M,
1060/*0f*/M2, M3, M3, M, M3, M, M, M, 56, M4, M, M3, M4, M, M, M,
1061/*10*/C8, M, M2, 39, M, 34, 105, M2, M, 30, 104, M, 101, M, M, 4,
1062/*11*/M, M, 100, M, 83, M, M2, 12, 87, M, M, 57, M2, M, M3, M,
1063/*12*/M2, 97, 82, M2, 78, M2, M2, 1, 96, M, M, M, M, M, M3, M2,
1064/*13*/94, M, M2, M3, M2, M, M3, M, M2, M, 79, M, 69, M, M4, M,
1065/*14*/M2, 93, 92, M, 91, M, M2, 8, 90, M2, M2, M, M, M, M, M4,
1066/*15*/89, M, M, M3, M2, M3, M3, M, M, M, M3, M2, M3, M2, M, M3,
1067/*16*/86, M, M2, M3, M2, M, M3, M, M2, M, M3, M, M3, M, M, M3,
1068/*17*/M, M, M3, M2, M3, M2, M4, M, 60, M, M2, M3, M4, M, M, M2,
1069/*18*/M2, 88, 85, M2, 84, M, M2, 55, 81, M2, M2, M3, M2, M3, M3, M4,
1070/*19*/77, M, M, M, M2, M3, M, M, M2, M3, M3, M4, M3, M2, M, M,
1071/*1a*/74, M, M2, M3, M, M, M3, M, M, M, M3, M, M3, M, M4, M3,
1072/*1b*/M2, 70, 107, M4, 65, M2, M2, M, 127, M, M, M, M2, M3, M3, M,
1073/*1c*/80, M2, M2, 72, M, 119, 118, M, M2, 126, 76, M, 125, M, M4, M3,
1074/*1d*/M2, 115, 124, M, 75, M, M, M3, 61, M, M4, M, M4, M, M, M,
1075/*1e*/M, 123, 122, M4, 121, M4, M, M3, 117, M2, M2, M3, M4, M3, M, M,
1076/*1f*/111, M, M, M, M4, M3, M3, M, M, M, M3, M, M3, M2, M, M
1077};
1078static unsigned char cheetah_mtag_syntab[] = {
1079 NONE, MTC0,
1080 MTC1, NONE,
1081 MTC2, NONE,
1082 NONE, MT0,
1083 MTC3, NONE,
1084 NONE, MT1,
1085 NONE, MT2,
1086 NONE, NONE
1087};
1088
1089/* Return the highest priority error conditon mentioned. */
David S. Millerd979f172007-10-27 00:13:04 -07001090static inline unsigned long cheetah_get_hipri(unsigned long afsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 unsigned long tmp = 0;
1093 int i;
1094
1095 for (i = 0; cheetah_error_table[i].mask; i++) {
1096 if ((tmp = (afsr & cheetah_error_table[i].mask)) != 0UL)
1097 return tmp;
1098 }
1099 return tmp;
1100}
1101
1102static const char *cheetah_get_string(unsigned long bit)
1103{
1104 int i;
1105
1106 for (i = 0; cheetah_error_table[i].mask; i++) {
1107 if ((bit & cheetah_error_table[i].mask) != 0UL)
1108 return cheetah_error_table[i].name;
1109 }
1110 return "???";
1111}
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113static void cheetah_log_errors(struct pt_regs *regs, struct cheetah_err_info *info,
1114 unsigned long afsr, unsigned long afar, int recoverable)
1115{
1116 unsigned long hipri;
1117 char unum[256];
1118
1119 printk("%s" "ERROR(%d): Cheetah error trap taken afsr[%016lx] afar[%016lx] TL1(%d)\n",
1120 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1121 afsr, afar,
1122 (afsr & CHAFSR_TL1) ? 1 : 0);
David S. Miller955c0542006-04-01 23:29:56 -08001123 printk("%s" "ERROR(%d): TPC[%lx] TNPC[%lx] O7[%lx] TSTATE[%lx]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
David S. Miller955c0542006-04-01 23:29:56 -08001125 regs->tpc, regs->tnpc, regs->u_regs[UREG_I7], regs->tstate);
David S. Miller5af47db2006-10-30 01:10:20 -08001126 printk("%s" "ERROR(%d): ",
1127 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id());
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001128 printk("TPC<%pS>\n", (void *) regs->tpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 printk("%s" "ERROR(%d): M_SYND(%lx), E_SYND(%lx)%s%s\n",
1130 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1131 (afsr & CHAFSR_M_SYNDROME) >> CHAFSR_M_SYNDROME_SHIFT,
1132 (afsr & CHAFSR_E_SYNDROME) >> CHAFSR_E_SYNDROME_SHIFT,
1133 (afsr & CHAFSR_ME) ? ", Multiple Errors" : "",
1134 (afsr & CHAFSR_PRIV) ? ", Privileged" : "");
1135 hipri = cheetah_get_hipri(afsr);
1136 printk("%s" "ERROR(%d): Highest priority error (%016lx) \"%s\"\n",
1137 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1138 hipri, cheetah_get_string(hipri));
1139
1140 /* Try to get unumber if relevant. */
1141#define ESYND_ERRORS (CHAFSR_IVC | CHAFSR_IVU | \
1142 CHAFSR_CPC | CHAFSR_CPU | \
1143 CHAFSR_UE | CHAFSR_CE | \
1144 CHAFSR_EDC | CHAFSR_EDU | \
1145 CHAFSR_UCC | CHAFSR_UCU | \
1146 CHAFSR_WDU | CHAFSR_WDC)
1147#define MSYND_ERRORS (CHAFSR_EMC | CHAFSR_EMU)
1148 if (afsr & ESYND_ERRORS) {
1149 int syndrome;
1150 int ret;
1151
1152 syndrome = (afsr & CHAFSR_E_SYNDROME) >> CHAFSR_E_SYNDROME_SHIFT;
1153 syndrome = cheetah_ecc_syntab[syndrome];
David S. Miller881d0212008-08-24 22:08:34 -07001154 ret = sprintf_dimm(syndrome, afar, unum, sizeof(unum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (ret != -1)
1156 printk("%s" "ERROR(%d): AFAR E-syndrome [%s]\n",
1157 (recoverable ? KERN_WARNING : KERN_CRIT),
1158 smp_processor_id(), unum);
1159 } else if (afsr & MSYND_ERRORS) {
1160 int syndrome;
1161 int ret;
1162
1163 syndrome = (afsr & CHAFSR_M_SYNDROME) >> CHAFSR_M_SYNDROME_SHIFT;
1164 syndrome = cheetah_mtag_syntab[syndrome];
David S. Miller881d0212008-08-24 22:08:34 -07001165 ret = sprintf_dimm(syndrome, afar, unum, sizeof(unum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (ret != -1)
1167 printk("%s" "ERROR(%d): AFAR M-syndrome [%s]\n",
1168 (recoverable ? KERN_WARNING : KERN_CRIT),
1169 smp_processor_id(), unum);
1170 }
1171
1172 /* Now dump the cache snapshots. */
1173 printk("%s" "ERROR(%d): D-cache idx[%x] tag[%016lx] utag[%016lx] stag[%016lx]\n",
1174 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1175 (int) info->dcache_index,
1176 info->dcache_tag,
1177 info->dcache_utag,
1178 info->dcache_stag);
1179 printk("%s" "ERROR(%d): D-cache data0[%016lx] data1[%016lx] data2[%016lx] data3[%016lx]\n",
1180 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1181 info->dcache_data[0],
1182 info->dcache_data[1],
1183 info->dcache_data[2],
1184 info->dcache_data[3]);
1185 printk("%s" "ERROR(%d): I-cache idx[%x] tag[%016lx] utag[%016lx] stag[%016lx] "
1186 "u[%016lx] l[%016lx]\n",
1187 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1188 (int) info->icache_index,
1189 info->icache_tag,
1190 info->icache_utag,
1191 info->icache_stag,
1192 info->icache_upper,
1193 info->icache_lower);
1194 printk("%s" "ERROR(%d): I-cache INSN0[%016lx] INSN1[%016lx] INSN2[%016lx] INSN3[%016lx]\n",
1195 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1196 info->icache_data[0],
1197 info->icache_data[1],
1198 info->icache_data[2],
1199 info->icache_data[3]);
1200 printk("%s" "ERROR(%d): I-cache INSN4[%016lx] INSN5[%016lx] INSN6[%016lx] INSN7[%016lx]\n",
1201 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1202 info->icache_data[4],
1203 info->icache_data[5],
1204 info->icache_data[6],
1205 info->icache_data[7]);
1206 printk("%s" "ERROR(%d): E-cache idx[%x] tag[%016lx]\n",
1207 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1208 (int) info->ecache_index, info->ecache_tag);
1209 printk("%s" "ERROR(%d): E-cache data0[%016lx] data1[%016lx] data2[%016lx] data3[%016lx]\n",
1210 (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
1211 info->ecache_data[0],
1212 info->ecache_data[1],
1213 info->ecache_data[2],
1214 info->ecache_data[3]);
1215
1216 afsr = (afsr & ~hipri) & cheetah_afsr_errors;
1217 while (afsr != 0UL) {
1218 unsigned long bit = cheetah_get_hipri(afsr);
1219
1220 printk("%s" "ERROR: Multiple-error (%016lx) \"%s\"\n",
1221 (recoverable ? KERN_WARNING : KERN_CRIT),
1222 bit, cheetah_get_string(bit));
1223
1224 afsr &= ~bit;
1225 }
1226
1227 if (!recoverable)
1228 printk(KERN_CRIT "ERROR: This condition is not recoverable.\n");
1229}
1230
1231static int cheetah_recheck_errors(struct cheetah_err_info *logp)
1232{
1233 unsigned long afsr, afar;
1234 int ret = 0;
1235
1236 __asm__ __volatile__("ldxa [%%g0] %1, %0\n\t"
1237 : "=r" (afsr)
1238 : "i" (ASI_AFSR));
1239 if ((afsr & cheetah_afsr_errors) != 0) {
1240 if (logp != NULL) {
1241 __asm__ __volatile__("ldxa [%%g0] %1, %0\n\t"
1242 : "=r" (afar)
1243 : "i" (ASI_AFAR));
1244 logp->afsr = afsr;
1245 logp->afar = afar;
1246 }
1247 ret = 1;
1248 }
1249 __asm__ __volatile__("stxa %0, [%%g0] %1\n\t"
1250 "membar #Sync\n\t"
1251 : : "r" (afsr), "i" (ASI_AFSR));
1252
1253 return ret;
1254}
1255
1256void cheetah_fecc_handler(struct pt_regs *regs, unsigned long afsr, unsigned long afar)
1257{
1258 struct cheetah_err_info local_snapshot, *p;
1259 int recoverable;
1260
1261 /* Flush E-cache */
1262 cheetah_flush_ecache();
1263
1264 p = cheetah_get_error_log(afsr);
1265 if (!p) {
1266 prom_printf("ERROR: Early Fast-ECC error afsr[%016lx] afar[%016lx]\n",
1267 afsr, afar);
1268 prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
1269 smp_processor_id(), regs->tpc, regs->tnpc, regs->tstate);
1270 prom_halt();
1271 }
1272
1273 /* Grab snapshot of logged error. */
1274 memcpy(&local_snapshot, p, sizeof(local_snapshot));
1275
1276 /* If the current trap snapshot does not match what the
1277 * trap handler passed along into our args, big trouble.
1278 * In such a case, mark the local copy as invalid.
1279 *
1280 * Else, it matches and we mark the afsr in the non-local
1281 * copy as invalid so we may log new error traps there.
1282 */
1283 if (p->afsr != afsr || p->afar != afar)
1284 local_snapshot.afsr = CHAFSR_INVALID;
1285 else
1286 p->afsr = CHAFSR_INVALID;
1287
1288 cheetah_flush_icache();
1289 cheetah_flush_dcache();
1290
1291 /* Re-enable I-cache/D-cache */
1292 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1293 "or %%g1, %1, %%g1\n\t"
1294 "stxa %%g1, [%%g0] %0\n\t"
1295 "membar #Sync"
1296 : /* no outputs */
1297 : "i" (ASI_DCU_CONTROL_REG),
1298 "i" (DCU_DC | DCU_IC)
1299 : "g1");
1300
1301 /* Re-enable error reporting */
1302 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1303 "or %%g1, %1, %%g1\n\t"
1304 "stxa %%g1, [%%g0] %0\n\t"
1305 "membar #Sync"
1306 : /* no outputs */
1307 : "i" (ASI_ESTATE_ERROR_EN),
1308 "i" (ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN)
1309 : "g1");
1310
1311 /* Decide if we can continue after handling this trap and
1312 * logging the error.
1313 */
1314 recoverable = 1;
1315 if (afsr & (CHAFSR_PERR | CHAFSR_IERR | CHAFSR_ISAP))
1316 recoverable = 0;
1317
1318 /* Re-check AFSR/AFAR. What we are looking for here is whether a new
1319 * error was logged while we had error reporting traps disabled.
1320 */
1321 if (cheetah_recheck_errors(&local_snapshot)) {
1322 unsigned long new_afsr = local_snapshot.afsr;
1323
1324 /* If we got a new asynchronous error, die... */
1325 if (new_afsr & (CHAFSR_EMU | CHAFSR_EDU |
1326 CHAFSR_WDU | CHAFSR_CPU |
1327 CHAFSR_IVU | CHAFSR_UE |
1328 CHAFSR_BERR | CHAFSR_TO))
1329 recoverable = 0;
1330 }
1331
1332 /* Log errors. */
1333 cheetah_log_errors(regs, &local_snapshot, afsr, afar, recoverable);
1334
1335 if (!recoverable)
1336 panic("Irrecoverable Fast-ECC error trap.\n");
1337
1338 /* Flush E-cache to kick the error trap handlers out. */
1339 cheetah_flush_ecache();
1340}
1341
1342/* Try to fix a correctable error by pushing the line out from
1343 * the E-cache. Recheck error reporting registers to see if the
1344 * problem is intermittent.
1345 */
1346static int cheetah_fix_ce(unsigned long physaddr)
1347{
1348 unsigned long orig_estate;
1349 unsigned long alias1, alias2;
1350 int ret;
1351
1352 /* Make sure correctable error traps are disabled. */
1353 __asm__ __volatile__("ldxa [%%g0] %2, %0\n\t"
1354 "andn %0, %1, %%g1\n\t"
1355 "stxa %%g1, [%%g0] %2\n\t"
1356 "membar #Sync"
1357 : "=&r" (orig_estate)
1358 : "i" (ESTATE_ERROR_CEEN),
1359 "i" (ASI_ESTATE_ERROR_EN)
1360 : "g1");
1361
1362 /* We calculate alias addresses that will force the
1363 * cache line in question out of the E-cache. Then
1364 * we bring it back in with an atomic instruction so
1365 * that we get it in some modified/exclusive state,
1366 * then we displace it again to try and get proper ECC
1367 * pushed back into the system.
1368 */
1369 physaddr &= ~(8UL - 1UL);
1370 alias1 = (ecache_flush_physbase +
1371 (physaddr & ((ecache_flush_size >> 1) - 1)));
1372 alias2 = alias1 + (ecache_flush_size >> 1);
1373 __asm__ __volatile__("ldxa [%0] %3, %%g0\n\t"
1374 "ldxa [%1] %3, %%g0\n\t"
1375 "casxa [%2] %3, %%g0, %%g0\n\t"
1376 "membar #StoreLoad | #StoreStore\n\t"
1377 "ldxa [%0] %3, %%g0\n\t"
1378 "ldxa [%1] %3, %%g0\n\t"
1379 "membar #Sync"
1380 : /* no outputs */
1381 : "r" (alias1), "r" (alias2),
1382 "r" (physaddr), "i" (ASI_PHYS_USE_EC));
1383
1384 /* Did that trigger another error? */
1385 if (cheetah_recheck_errors(NULL)) {
1386 /* Try one more time. */
1387 __asm__ __volatile__("ldxa [%0] %1, %%g0\n\t"
1388 "membar #Sync"
1389 : : "r" (physaddr), "i" (ASI_PHYS_USE_EC));
1390 if (cheetah_recheck_errors(NULL))
1391 ret = 2;
1392 else
1393 ret = 1;
1394 } else {
1395 /* No new error, intermittent problem. */
1396 ret = 0;
1397 }
1398
1399 /* Restore error enables. */
1400 __asm__ __volatile__("stxa %0, [%%g0] %1\n\t"
1401 "membar #Sync"
1402 : : "r" (orig_estate), "i" (ASI_ESTATE_ERROR_EN));
1403
1404 return ret;
1405}
1406
1407/* Return non-zero if PADDR is a valid physical memory address. */
1408static int cheetah_check_main_memory(unsigned long paddr)
1409{
David S. Miller10147572005-09-28 21:46:43 -07001410 unsigned long vaddr = PAGE_OFFSET + paddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
David S. Miller13edad72005-09-29 17:58:26 -07001412 if (vaddr > (unsigned long) high_memory)
David S. Millered3ffaf2005-09-28 21:48:25 -07001413 return 0;
1414
David S. Miller10147572005-09-28 21:46:43 -07001415 return kern_addr_valid(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
1418void cheetah_cee_handler(struct pt_regs *regs, unsigned long afsr, unsigned long afar)
1419{
1420 struct cheetah_err_info local_snapshot, *p;
1421 int recoverable, is_memory;
1422
1423 p = cheetah_get_error_log(afsr);
1424 if (!p) {
1425 prom_printf("ERROR: Early CEE error afsr[%016lx] afar[%016lx]\n",
1426 afsr, afar);
1427 prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
1428 smp_processor_id(), regs->tpc, regs->tnpc, regs->tstate);
1429 prom_halt();
1430 }
1431
1432 /* Grab snapshot of logged error. */
1433 memcpy(&local_snapshot, p, sizeof(local_snapshot));
1434
1435 /* If the current trap snapshot does not match what the
1436 * trap handler passed along into our args, big trouble.
1437 * In such a case, mark the local copy as invalid.
1438 *
1439 * Else, it matches and we mark the afsr in the non-local
1440 * copy as invalid so we may log new error traps there.
1441 */
1442 if (p->afsr != afsr || p->afar != afar)
1443 local_snapshot.afsr = CHAFSR_INVALID;
1444 else
1445 p->afsr = CHAFSR_INVALID;
1446
1447 is_memory = cheetah_check_main_memory(afar);
1448
1449 if (is_memory && (afsr & CHAFSR_CE) != 0UL) {
1450 /* XXX Might want to log the results of this operation
1451 * XXX somewhere... -DaveM
1452 */
1453 cheetah_fix_ce(afar);
1454 }
1455
1456 {
1457 int flush_all, flush_line;
1458
1459 flush_all = flush_line = 0;
1460 if ((afsr & CHAFSR_EDC) != 0UL) {
1461 if ((afsr & cheetah_afsr_errors) == CHAFSR_EDC)
1462 flush_line = 1;
1463 else
1464 flush_all = 1;
1465 } else if ((afsr & CHAFSR_CPC) != 0UL) {
1466 if ((afsr & cheetah_afsr_errors) == CHAFSR_CPC)
1467 flush_line = 1;
1468 else
1469 flush_all = 1;
1470 }
1471
1472 /* Trap handler only disabled I-cache, flush it. */
1473 cheetah_flush_icache();
1474
1475 /* Re-enable I-cache */
1476 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1477 "or %%g1, %1, %%g1\n\t"
1478 "stxa %%g1, [%%g0] %0\n\t"
1479 "membar #Sync"
1480 : /* no outputs */
1481 : "i" (ASI_DCU_CONTROL_REG),
1482 "i" (DCU_IC)
1483 : "g1");
1484
1485 if (flush_all)
1486 cheetah_flush_ecache();
1487 else if (flush_line)
1488 cheetah_flush_ecache_line(afar);
1489 }
1490
1491 /* Re-enable error reporting */
1492 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1493 "or %%g1, %1, %%g1\n\t"
1494 "stxa %%g1, [%%g0] %0\n\t"
1495 "membar #Sync"
1496 : /* no outputs */
1497 : "i" (ASI_ESTATE_ERROR_EN),
1498 "i" (ESTATE_ERROR_CEEN)
1499 : "g1");
1500
1501 /* Decide if we can continue after handling this trap and
1502 * logging the error.
1503 */
1504 recoverable = 1;
1505 if (afsr & (CHAFSR_PERR | CHAFSR_IERR | CHAFSR_ISAP))
1506 recoverable = 0;
1507
1508 /* Re-check AFSR/AFAR */
1509 (void) cheetah_recheck_errors(&local_snapshot);
1510
1511 /* Log errors. */
1512 cheetah_log_errors(regs, &local_snapshot, afsr, afar, recoverable);
1513
1514 if (!recoverable)
1515 panic("Irrecoverable Correctable-ECC error trap.\n");
1516}
1517
1518void cheetah_deferred_handler(struct pt_regs *regs, unsigned long afsr, unsigned long afar)
1519{
1520 struct cheetah_err_info local_snapshot, *p;
1521 int recoverable, is_memory;
1522
1523#ifdef CONFIG_PCI
1524 /* Check for the special PCI poke sequence. */
1525 if (pci_poke_in_progress && pci_poke_cpu == smp_processor_id()) {
1526 cheetah_flush_icache();
1527 cheetah_flush_dcache();
1528
1529 /* Re-enable I-cache/D-cache */
1530 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1531 "or %%g1, %1, %%g1\n\t"
1532 "stxa %%g1, [%%g0] %0\n\t"
1533 "membar #Sync"
1534 : /* no outputs */
1535 : "i" (ASI_DCU_CONTROL_REG),
1536 "i" (DCU_DC | DCU_IC)
1537 : "g1");
1538
1539 /* Re-enable error reporting */
1540 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1541 "or %%g1, %1, %%g1\n\t"
1542 "stxa %%g1, [%%g0] %0\n\t"
1543 "membar #Sync"
1544 : /* no outputs */
1545 : "i" (ASI_ESTATE_ERROR_EN),
1546 "i" (ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN)
1547 : "g1");
1548
1549 (void) cheetah_recheck_errors(NULL);
1550
1551 pci_poke_faulted = 1;
1552 regs->tpc += 4;
1553 regs->tnpc = regs->tpc + 4;
1554 return;
1555 }
1556#endif
1557
1558 p = cheetah_get_error_log(afsr);
1559 if (!p) {
1560 prom_printf("ERROR: Early deferred error afsr[%016lx] afar[%016lx]\n",
1561 afsr, afar);
1562 prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
1563 smp_processor_id(), regs->tpc, regs->tnpc, regs->tstate);
1564 prom_halt();
1565 }
1566
1567 /* Grab snapshot of logged error. */
1568 memcpy(&local_snapshot, p, sizeof(local_snapshot));
1569
1570 /* If the current trap snapshot does not match what the
1571 * trap handler passed along into our args, big trouble.
1572 * In such a case, mark the local copy as invalid.
1573 *
1574 * Else, it matches and we mark the afsr in the non-local
1575 * copy as invalid so we may log new error traps there.
1576 */
1577 if (p->afsr != afsr || p->afar != afar)
1578 local_snapshot.afsr = CHAFSR_INVALID;
1579 else
1580 p->afsr = CHAFSR_INVALID;
1581
1582 is_memory = cheetah_check_main_memory(afar);
1583
1584 {
1585 int flush_all, flush_line;
1586
1587 flush_all = flush_line = 0;
1588 if ((afsr & CHAFSR_EDU) != 0UL) {
1589 if ((afsr & cheetah_afsr_errors) == CHAFSR_EDU)
1590 flush_line = 1;
1591 else
1592 flush_all = 1;
1593 } else if ((afsr & CHAFSR_BERR) != 0UL) {
1594 if ((afsr & cheetah_afsr_errors) == CHAFSR_BERR)
1595 flush_line = 1;
1596 else
1597 flush_all = 1;
1598 }
1599
1600 cheetah_flush_icache();
1601 cheetah_flush_dcache();
1602
1603 /* Re-enable I/D caches */
1604 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1605 "or %%g1, %1, %%g1\n\t"
1606 "stxa %%g1, [%%g0] %0\n\t"
1607 "membar #Sync"
1608 : /* no outputs */
1609 : "i" (ASI_DCU_CONTROL_REG),
1610 "i" (DCU_IC | DCU_DC)
1611 : "g1");
1612
1613 if (flush_all)
1614 cheetah_flush_ecache();
1615 else if (flush_line)
1616 cheetah_flush_ecache_line(afar);
1617 }
1618
1619 /* Re-enable error reporting */
1620 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1621 "or %%g1, %1, %%g1\n\t"
1622 "stxa %%g1, [%%g0] %0\n\t"
1623 "membar #Sync"
1624 : /* no outputs */
1625 : "i" (ASI_ESTATE_ERROR_EN),
1626 "i" (ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN)
1627 : "g1");
1628
1629 /* Decide if we can continue after handling this trap and
1630 * logging the error.
1631 */
1632 recoverable = 1;
1633 if (afsr & (CHAFSR_PERR | CHAFSR_IERR | CHAFSR_ISAP))
1634 recoverable = 0;
1635
1636 /* Re-check AFSR/AFAR. What we are looking for here is whether a new
1637 * error was logged while we had error reporting traps disabled.
1638 */
1639 if (cheetah_recheck_errors(&local_snapshot)) {
1640 unsigned long new_afsr = local_snapshot.afsr;
1641
1642 /* If we got a new asynchronous error, die... */
1643 if (new_afsr & (CHAFSR_EMU | CHAFSR_EDU |
1644 CHAFSR_WDU | CHAFSR_CPU |
1645 CHAFSR_IVU | CHAFSR_UE |
1646 CHAFSR_BERR | CHAFSR_TO))
1647 recoverable = 0;
1648 }
1649
1650 /* Log errors. */
1651 cheetah_log_errors(regs, &local_snapshot, afsr, afar, recoverable);
1652
1653 /* "Recoverable" here means we try to yank the page from ever
1654 * being newly used again. This depends upon a few things:
1655 * 1) Must be main memory, and AFAR must be valid.
1656 * 2) If we trapped from user, OK.
1657 * 3) Else, if we trapped from kernel we must find exception
1658 * table entry (ie. we have to have been accessing user
1659 * space).
1660 *
1661 * If AFAR is not in main memory, or we trapped from kernel
1662 * and cannot find an exception table entry, it is unacceptable
1663 * to try and continue.
1664 */
1665 if (recoverable && is_memory) {
1666 if ((regs->tstate & TSTATE_PRIV) == 0UL) {
1667 /* OK, usermode access. */
1668 recoverable = 1;
1669 } else {
David S. Miller8cf14af2005-09-28 20:21:11 -07001670 const struct exception_table_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
David S. Miller8cf14af2005-09-28 20:21:11 -07001672 entry = search_exception_tables(regs->tpc);
1673 if (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 /* OK, kernel access to userspace. */
1675 recoverable = 1;
1676
1677 } else {
1678 /* BAD, privileged state is corrupted. */
1679 recoverable = 0;
1680 }
1681
1682 if (recoverable) {
1683 if (pfn_valid(afar >> PAGE_SHIFT))
1684 get_page(pfn_to_page(afar >> PAGE_SHIFT));
1685 else
1686 recoverable = 0;
1687
1688 /* Only perform fixup if we still have a
1689 * recoverable condition.
1690 */
1691 if (recoverable) {
David S. Miller8cf14af2005-09-28 20:21:11 -07001692 regs->tpc = entry->fixup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 regs->tnpc = regs->tpc + 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
1695 }
1696 }
1697 } else {
1698 recoverable = 0;
1699 }
1700
1701 if (!recoverable)
1702 panic("Irrecoverable deferred error trap.\n");
1703}
1704
1705/* Handle a D/I cache parity error trap. TYPE is encoded as:
1706 *
1707 * Bit0: 0=dcache,1=icache
1708 * Bit1: 0=recoverable,1=unrecoverable
1709 *
1710 * The hardware has disabled both the I-cache and D-cache in
1711 * the %dcr register.
1712 */
1713void cheetah_plus_parity_error(int type, struct pt_regs *regs)
1714{
1715 if (type & 0x1)
1716 __cheetah_flush_icache();
1717 else
1718 cheetah_plus_zap_dcache_parity();
1719 cheetah_flush_dcache();
1720
1721 /* Re-enable I-cache/D-cache */
1722 __asm__ __volatile__("ldxa [%%g0] %0, %%g1\n\t"
1723 "or %%g1, %1, %%g1\n\t"
1724 "stxa %%g1, [%%g0] %0\n\t"
1725 "membar #Sync"
1726 : /* no outputs */
1727 : "i" (ASI_DCU_CONTROL_REG),
1728 "i" (DCU_DC | DCU_IC)
1729 : "g1");
1730
1731 if (type & 0x2) {
1732 printk(KERN_EMERG "CPU[%d]: Cheetah+ %c-cache parity error at TPC[%016lx]\n",
1733 smp_processor_id(),
1734 (type & 0x1) ? 'I' : 'D',
1735 regs->tpc);
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001736 printk(KERN_EMERG "TPC<%pS>\n", (void *) regs->tpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 panic("Irrecoverable Cheetah+ parity error.");
1738 }
1739
1740 printk(KERN_WARNING "CPU[%d]: Cheetah+ %c-cache parity error at TPC[%016lx]\n",
1741 smp_processor_id(),
1742 (type & 0x1) ? 'I' : 'D',
1743 regs->tpc);
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001744 printk(KERN_WARNING "TPC<%pS>\n", (void *) regs->tpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
David S. Miller5b0c05722006-02-08 02:53:50 -08001747struct sun4v_error_entry {
1748 u64 err_handle;
1749 u64 err_stick;
1750
1751 u32 err_type;
1752#define SUN4V_ERR_TYPE_UNDEFINED 0
1753#define SUN4V_ERR_TYPE_UNCORRECTED_RES 1
1754#define SUN4V_ERR_TYPE_PRECISE_NONRES 2
1755#define SUN4V_ERR_TYPE_DEFERRED_NONRES 3
1756#define SUN4V_ERR_TYPE_WARNING_RES 4
1757
1758 u32 err_attrs;
1759#define SUN4V_ERR_ATTRS_PROCESSOR 0x00000001
1760#define SUN4V_ERR_ATTRS_MEMORY 0x00000002
1761#define SUN4V_ERR_ATTRS_PIO 0x00000004
1762#define SUN4V_ERR_ATTRS_INT_REGISTERS 0x00000008
1763#define SUN4V_ERR_ATTRS_FPU_REGISTERS 0x00000010
1764#define SUN4V_ERR_ATTRS_USER_MODE 0x01000000
1765#define SUN4V_ERR_ATTRS_PRIV_MODE 0x02000000
1766#define SUN4V_ERR_ATTRS_RES_QUEUE_FULL 0x80000000
1767
1768 u64 err_raddr;
1769 u32 err_size;
1770 u16 err_cpu;
1771 u16 err_pad;
1772};
1773
1774static atomic_t sun4v_resum_oflow_cnt = ATOMIC_INIT(0);
1775static atomic_t sun4v_nonresum_oflow_cnt = ATOMIC_INIT(0);
1776
1777static const char *sun4v_err_type_to_str(u32 type)
1778{
1779 switch (type) {
1780 case SUN4V_ERR_TYPE_UNDEFINED:
1781 return "undefined";
1782 case SUN4V_ERR_TYPE_UNCORRECTED_RES:
1783 return "uncorrected resumable";
1784 case SUN4V_ERR_TYPE_PRECISE_NONRES:
1785 return "precise nonresumable";
1786 case SUN4V_ERR_TYPE_DEFERRED_NONRES:
1787 return "deferred nonresumable";
1788 case SUN4V_ERR_TYPE_WARNING_RES:
1789 return "warning resumable";
1790 default:
1791 return "unknown";
1792 };
1793}
1794
David S. Miller5224e6c2006-06-06 17:37:41 -07001795static void sun4v_log_error(struct pt_regs *regs, struct sun4v_error_entry *ent, int cpu, const char *pfx, atomic_t *ocnt)
David S. Miller5b0c05722006-02-08 02:53:50 -08001796{
1797 int cnt;
1798
1799 printk("%s: Reporting on cpu %d\n", pfx, cpu);
1800 printk("%s: err_handle[%lx] err_stick[%lx] err_type[%08x:%s]\n",
1801 pfx,
1802 ent->err_handle, ent->err_stick,
1803 ent->err_type,
1804 sun4v_err_type_to_str(ent->err_type));
1805 printk("%s: err_attrs[%08x:%s %s %s %s %s %s %s %s]\n",
1806 pfx,
1807 ent->err_attrs,
1808 ((ent->err_attrs & SUN4V_ERR_ATTRS_PROCESSOR) ?
1809 "processor" : ""),
1810 ((ent->err_attrs & SUN4V_ERR_ATTRS_MEMORY) ?
1811 "memory" : ""),
1812 ((ent->err_attrs & SUN4V_ERR_ATTRS_PIO) ?
1813 "pio" : ""),
1814 ((ent->err_attrs & SUN4V_ERR_ATTRS_INT_REGISTERS) ?
1815 "integer-regs" : ""),
1816 ((ent->err_attrs & SUN4V_ERR_ATTRS_FPU_REGISTERS) ?
1817 "fpu-regs" : ""),
1818 ((ent->err_attrs & SUN4V_ERR_ATTRS_USER_MODE) ?
1819 "user" : ""),
1820 ((ent->err_attrs & SUN4V_ERR_ATTRS_PRIV_MODE) ?
1821 "privileged" : ""),
1822 ((ent->err_attrs & SUN4V_ERR_ATTRS_RES_QUEUE_FULL) ?
1823 "queue-full" : ""));
1824 printk("%s: err_raddr[%016lx] err_size[%u] err_cpu[%u]\n",
1825 pfx,
1826 ent->err_raddr, ent->err_size, ent->err_cpu);
1827
David S. Millerdbf3e952008-07-31 20:33:43 -07001828 show_regs(regs);
David S. Miller5224e6c2006-06-06 17:37:41 -07001829
David S. Miller5b0c05722006-02-08 02:53:50 -08001830 if ((cnt = atomic_read(ocnt)) != 0) {
1831 atomic_set(ocnt, 0);
1832 wmb();
1833 printk("%s: Queue overflowed %d times.\n",
1834 pfx, cnt);
1835 }
1836}
1837
1838/* We run with %pil set to 15 and PSTATE_IE enabled in %pstate.
1839 * Log the event and clear the first word of the entry.
1840 */
1841void sun4v_resum_error(struct pt_regs *regs, unsigned long offset)
1842{
1843 struct sun4v_error_entry *ent, local_copy;
1844 struct trap_per_cpu *tb;
1845 unsigned long paddr;
1846 int cpu;
1847
1848 cpu = get_cpu();
1849
1850 tb = &trap_block[cpu];
1851 paddr = tb->resum_kernel_buf_pa + offset;
1852 ent = __va(paddr);
1853
1854 memcpy(&local_copy, ent, sizeof(struct sun4v_error_entry));
1855
1856 /* We have a local copy now, so release the entry. */
1857 ent->err_handle = 0;
1858 wmb();
1859
1860 put_cpu();
1861
David S. Millera2c1e062006-11-29 21:16:21 -08001862 if (ent->err_type == SUN4V_ERR_TYPE_WARNING_RES) {
1863 /* If err_type is 0x4, it's a powerdown request. Do
1864 * not do the usual resumable error log because that
1865 * makes it look like some abnormal error.
1866 */
1867 printk(KERN_INFO "Power down request...\n");
1868 kill_cad_pid(SIGINT, 1);
1869 return;
1870 }
1871
David S. Miller5224e6c2006-06-06 17:37:41 -07001872 sun4v_log_error(regs, &local_copy, cpu,
David S. Miller5b0c05722006-02-08 02:53:50 -08001873 KERN_ERR "RESUMABLE ERROR",
1874 &sun4v_resum_oflow_cnt);
1875}
1876
1877/* If we try to printk() we'll probably make matters worse, by trying
1878 * to retake locks this cpu already holds or causing more errors. So
1879 * just bump a counter, and we'll report these counter bumps above.
1880 */
1881void sun4v_resum_overflow(struct pt_regs *regs)
1882{
1883 atomic_inc(&sun4v_resum_oflow_cnt);
1884}
1885
1886/* We run with %pil set to 15 and PSTATE_IE enabled in %pstate.
1887 * Log the event, clear the first word of the entry, and die.
1888 */
1889void sun4v_nonresum_error(struct pt_regs *regs, unsigned long offset)
1890{
1891 struct sun4v_error_entry *ent, local_copy;
1892 struct trap_per_cpu *tb;
1893 unsigned long paddr;
1894 int cpu;
1895
1896 cpu = get_cpu();
1897
1898 tb = &trap_block[cpu];
1899 paddr = tb->nonresum_kernel_buf_pa + offset;
1900 ent = __va(paddr);
1901
1902 memcpy(&local_copy, ent, sizeof(struct sun4v_error_entry));
1903
1904 /* We have a local copy now, so release the entry. */
1905 ent->err_handle = 0;
1906 wmb();
1907
1908 put_cpu();
1909
1910#ifdef CONFIG_PCI
1911 /* Check for the special PCI poke sequence. */
1912 if (pci_poke_in_progress && pci_poke_cpu == cpu) {
1913 pci_poke_faulted = 1;
1914 regs->tpc += 4;
1915 regs->tnpc = regs->tpc + 4;
1916 return;
1917 }
1918#endif
1919
David S. Miller5224e6c2006-06-06 17:37:41 -07001920 sun4v_log_error(regs, &local_copy, cpu,
David S. Miller5b0c05722006-02-08 02:53:50 -08001921 KERN_EMERG "NON-RESUMABLE ERROR",
1922 &sun4v_nonresum_oflow_cnt);
1923
1924 panic("Non-resumable error.");
1925}
1926
1927/* If we try to printk() we'll probably make matters worse, by trying
1928 * to retake locks this cpu already holds or causing more errors. So
1929 * just bump a counter, and we'll report these counter bumps above.
1930 */
1931void sun4v_nonresum_overflow(struct pt_regs *regs)
1932{
1933 /* XXX Actually even this can make not that much sense. Perhaps
1934 * XXX we should just pull the plug and panic directly from here?
1935 */
1936 atomic_inc(&sun4v_nonresum_oflow_cnt);
1937}
1938
David S. Miller6c8927c2006-02-17 14:58:02 -08001939unsigned long sun4v_err_itlb_vaddr;
1940unsigned long sun4v_err_itlb_ctx;
1941unsigned long sun4v_err_itlb_pte;
1942unsigned long sun4v_err_itlb_error;
1943
1944void sun4v_itlb_error_report(struct pt_regs *regs, int tl)
1945{
1946 if (tl > 1)
1947 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
1948
David S. Miller04d74752006-02-18 17:06:28 -08001949 printk(KERN_EMERG "SUN4V-ITLB: Error at TPC[%lx], tl %d\n",
1950 regs->tpc, tl);
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001951 printk(KERN_EMERG "SUN4V-ITLB: TPC<%pS>\n", (void *) regs->tpc);
David S. Miller6320bce2008-01-17 01:32:09 -08001952 printk(KERN_EMERG "SUN4V-ITLB: O7[%lx]\n", regs->u_regs[UREG_I7]);
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001953 printk(KERN_EMERG "SUN4V-ITLB: O7<%pS>\n",
1954 (void *) regs->u_regs[UREG_I7]);
David S. Miller04d74752006-02-18 17:06:28 -08001955 printk(KERN_EMERG "SUN4V-ITLB: vaddr[%lx] ctx[%lx] "
1956 "pte[%lx] error[%lx]\n",
David S. Miller6c8927c2006-02-17 14:58:02 -08001957 sun4v_err_itlb_vaddr, sun4v_err_itlb_ctx,
1958 sun4v_err_itlb_pte, sun4v_err_itlb_error);
David S. Miller04d74752006-02-18 17:06:28 -08001959
David S. Miller6c8927c2006-02-17 14:58:02 -08001960 prom_halt();
1961}
1962
1963unsigned long sun4v_err_dtlb_vaddr;
1964unsigned long sun4v_err_dtlb_ctx;
1965unsigned long sun4v_err_dtlb_pte;
1966unsigned long sun4v_err_dtlb_error;
1967
1968void sun4v_dtlb_error_report(struct pt_regs *regs, int tl)
1969{
1970 if (tl > 1)
1971 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
1972
David S. Miller04d74752006-02-18 17:06:28 -08001973 printk(KERN_EMERG "SUN4V-DTLB: Error at TPC[%lx], tl %d\n",
1974 regs->tpc, tl);
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001975 printk(KERN_EMERG "SUN4V-DTLB: TPC<%pS>\n", (void *) regs->tpc);
David S. Miller6320bce2008-01-17 01:32:09 -08001976 printk(KERN_EMERG "SUN4V-DTLB: O7[%lx]\n", regs->u_regs[UREG_I7]);
David S. Miller4fe3ebe2008-07-17 22:11:32 -07001977 printk(KERN_EMERG "SUN4V-DTLB: O7<%pS>\n",
1978 (void *) regs->u_regs[UREG_I7]);
David S. Miller04d74752006-02-18 17:06:28 -08001979 printk(KERN_EMERG "SUN4V-DTLB: vaddr[%lx] ctx[%lx] "
1980 "pte[%lx] error[%lx]\n",
David S. Miller6c8927c2006-02-17 14:58:02 -08001981 sun4v_err_dtlb_vaddr, sun4v_err_dtlb_ctx,
1982 sun4v_err_dtlb_pte, sun4v_err_dtlb_error);
David S. Miller04d74752006-02-18 17:06:28 -08001983
David S. Miller6c8927c2006-02-17 14:58:02 -08001984 prom_halt();
1985}
1986
David S. Miller2a3a5f52006-02-26 19:31:49 -08001987void hypervisor_tlbop_error(unsigned long err, unsigned long op)
1988{
1989 printk(KERN_CRIT "SUN4V: TLB hv call error %lu for op %lu\n",
1990 err, op);
1991}
1992
1993void hypervisor_tlbop_error_xcall(unsigned long err, unsigned long op)
1994{
1995 printk(KERN_CRIT "SUN4V: XCALL TLB hv call error %lu for op %lu\n",
1996 err, op);
1997}
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999void do_fpe_common(struct pt_regs *regs)
2000{
2001 if (regs->tstate & TSTATE_PRIV) {
2002 regs->tpc = regs->tnpc;
2003 regs->tnpc += 4;
2004 } else {
2005 unsigned long fsr = current_thread_info()->xfsr[0];
2006 siginfo_t info;
2007
2008 if (test_thread_flag(TIF_32BIT)) {
2009 regs->tpc &= 0xffffffff;
2010 regs->tnpc &= 0xffffffff;
2011 }
2012 info.si_signo = SIGFPE;
2013 info.si_errno = 0;
2014 info.si_addr = (void __user *)regs->tpc;
2015 info.si_trapno = 0;
2016 info.si_code = __SI_FAULT;
2017 if ((fsr & 0x1c000) == (1 << 14)) {
2018 if (fsr & 0x10)
2019 info.si_code = FPE_FLTINV;
2020 else if (fsr & 0x08)
2021 info.si_code = FPE_FLTOVF;
2022 else if (fsr & 0x04)
2023 info.si_code = FPE_FLTUND;
2024 else if (fsr & 0x02)
2025 info.si_code = FPE_FLTDIV;
2026 else if (fsr & 0x01)
2027 info.si_code = FPE_FLTRES;
2028 }
2029 force_sig_info(SIGFPE, &info, current);
2030 }
2031}
2032
2033void do_fpieee(struct pt_regs *regs)
2034{
2035 if (notify_die(DIE_TRAP, "fpu exception ieee", regs,
2036 0, 0x24, SIGFPE) == NOTIFY_STOP)
2037 return;
2038
2039 do_fpe_common(regs);
2040}
2041
2042extern int do_mathemu(struct pt_regs *, struct fpustate *);
2043
2044void do_fpother(struct pt_regs *regs)
2045{
2046 struct fpustate *f = FPUSTATE;
2047 int ret = 0;
2048
2049 if (notify_die(DIE_TRAP, "fpu exception other", regs,
2050 0, 0x25, SIGFPE) == NOTIFY_STOP)
2051 return;
2052
2053 switch ((current_thread_info()->xfsr[0] & 0x1c000)) {
2054 case (2 << 14): /* unfinished_FPop */
2055 case (3 << 14): /* unimplemented_FPop */
2056 ret = do_mathemu(regs, f);
2057 break;
2058 }
2059 if (ret)
2060 return;
2061 do_fpe_common(regs);
2062}
2063
2064void do_tof(struct pt_regs *regs)
2065{
2066 siginfo_t info;
2067
2068 if (notify_die(DIE_TRAP, "tagged arithmetic overflow", regs,
2069 0, 0x26, SIGEMT) == NOTIFY_STOP)
2070 return;
2071
2072 if (regs->tstate & TSTATE_PRIV)
2073 die_if_kernel("Penguin overflow trap from kernel mode", regs);
2074 if (test_thread_flag(TIF_32BIT)) {
2075 regs->tpc &= 0xffffffff;
2076 regs->tnpc &= 0xffffffff;
2077 }
2078 info.si_signo = SIGEMT;
2079 info.si_errno = 0;
2080 info.si_code = EMT_TAGOVF;
2081 info.si_addr = (void __user *)regs->tpc;
2082 info.si_trapno = 0;
2083 force_sig_info(SIGEMT, &info, current);
2084}
2085
2086void do_div0(struct pt_regs *regs)
2087{
2088 siginfo_t info;
2089
2090 if (notify_die(DIE_TRAP, "integer division by zero", regs,
2091 0, 0x28, SIGFPE) == NOTIFY_STOP)
2092 return;
2093
2094 if (regs->tstate & TSTATE_PRIV)
2095 die_if_kernel("TL0: Kernel divide by zero.", regs);
2096 if (test_thread_flag(TIF_32BIT)) {
2097 regs->tpc &= 0xffffffff;
2098 regs->tnpc &= 0xffffffff;
2099 }
2100 info.si_signo = SIGFPE;
2101 info.si_errno = 0;
2102 info.si_code = FPE_INTDIV;
2103 info.si_addr = (void __user *)regs->tpc;
2104 info.si_trapno = 0;
2105 force_sig_info(SIGFPE, &info, current);
2106}
2107
David S. Miller99cd2202008-03-26 00:19:43 -07002108static void instruction_dump(unsigned int *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 int i;
2111
2112 if ((((unsigned long) pc) & 3))
2113 return;
2114
2115 printk("Instruction DUMP:");
2116 for (i = -3; i < 6; i++)
2117 printk("%c%08x%c",i?' ':'<',pc[i],i?' ':'>');
2118 printk("\n");
2119}
2120
David S. Miller99cd2202008-03-26 00:19:43 -07002121static void user_instruction_dump(unsigned int __user *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 int i;
2124 unsigned int buf[9];
2125
2126 if ((((unsigned long) pc) & 3))
2127 return;
2128
2129 if (copy_from_user(buf, pc - 3, sizeof(buf)))
2130 return;
2131
2132 printk("Instruction DUMP:");
2133 for (i = 0; i < 9; i++)
2134 printk("%c%08x%c",i==3?' ':'<',buf[i],i==3?' ':'>');
2135 printk("\n");
2136}
2137
2138void show_stack(struct task_struct *tsk, unsigned long *_ksp)
2139{
David S. Miller77c664f2008-04-24 03:28:52 -07002140 unsigned long fp, thread_base, ksp;
David S. Millerc1f193a2007-07-30 00:17:12 -07002141 struct thread_info *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 int count = 0;
2143
2144 ksp = (unsigned long) _ksp;
David S. Millerc1f193a2007-07-30 00:17:12 -07002145 if (!tsk)
2146 tsk = current;
2147 tp = task_thread_info(tsk);
2148 if (ksp == 0UL) {
2149 if (tsk == current)
2150 asm("mov %%fp, %0" : "=r" (ksp));
2151 else
2152 ksp = tp->ksp;
2153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (tp == current_thread_info())
2155 flushw_all();
2156
2157 fp = ksp + STACK_BIAS;
2158 thread_base = (unsigned long) tp;
2159
David S. Miller4fe3ebe2008-07-17 22:11:32 -07002160 printk("Call Trace:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 do {
David S. Miller14d2c682008-05-21 18:15:53 -07002162 struct sparc_stackf *sf;
David S. Miller77c664f2008-04-24 03:28:52 -07002163 struct pt_regs *regs;
2164 unsigned long pc;
2165
David S. Miller4f70f7a2008-08-12 18:33:56 -07002166 if (!kstack_valid(tp, fp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 break;
David S. Miller14d2c682008-05-21 18:15:53 -07002168 sf = (struct sparc_stackf *) fp;
2169 regs = (struct pt_regs *) (sf + 1);
David S. Miller77c664f2008-04-24 03:28:52 -07002170
David S. Miller4f70f7a2008-08-12 18:33:56 -07002171 if (kstack_is_trap_frame(tp, regs)) {
David S. Miller14d2c682008-05-21 18:15:53 -07002172 if (!(regs->tstate & TSTATE_PRIV))
2173 break;
David S. Miller77c664f2008-04-24 03:28:52 -07002174 pc = regs->tpc;
2175 fp = regs->u_regs[UREG_I6] + STACK_BIAS;
2176 } else {
David S. Miller14d2c682008-05-21 18:15:53 -07002177 pc = sf->callers_pc;
2178 fp = (unsigned long)sf->fp + STACK_BIAS;
David S. Miller77c664f2008-04-24 03:28:52 -07002179 }
2180
David S. Miller4fe3ebe2008-07-17 22:11:32 -07002181 printk(" [%016lx] %pS\n", pc, (void *) pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 } while (++count < 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
2184
2185void dump_stack(void)
2186{
David S. Millerc1f193a2007-07-30 00:17:12 -07002187 show_stack(current, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188}
2189
2190EXPORT_SYMBOL(dump_stack);
2191
2192static inline int is_kernel_stack(struct task_struct *task,
2193 struct reg_window *rw)
2194{
2195 unsigned long rw_addr = (unsigned long) rw;
2196 unsigned long thread_base, thread_end;
2197
2198 if (rw_addr < PAGE_OFFSET) {
2199 if (task != &init_task)
2200 return 0;
2201 }
2202
Al Viroee3eea12006-01-12 01:05:43 -08002203 thread_base = (unsigned long) task_stack_page(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 thread_end = thread_base + sizeof(union thread_union);
2205 if (rw_addr >= thread_base &&
2206 rw_addr < thread_end &&
2207 !(rw_addr & 0x7UL))
2208 return 1;
2209
2210 return 0;
2211}
2212
2213static inline struct reg_window *kernel_stack_up(struct reg_window *rw)
2214{
2215 unsigned long fp = rw->ins[6];
2216
2217 if (!fp)
2218 return NULL;
2219
2220 return (struct reg_window *) (fp + STACK_BIAS);
2221}
2222
2223void die_if_kernel(char *str, struct pt_regs *regs)
2224{
2225 static int die_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 int count = 0;
2227
2228 /* Amuse the user. */
2229 printk(
2230" \\|/ ____ \\|/\n"
2231" \"@'/ .. \\`@\"\n"
2232" /_| \\__/ |_\\\n"
2233" \\__U_/\n");
2234
Alexey Dobriyan19c58702007-10-18 23:40:41 -07002235 printk("%s(%d): %s [#%d]\n", current->comm, task_pid_nr(current), str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 notify_die(DIE_OOPS, str, regs, 0, 255, SIGSEGV);
2237 __asm__ __volatile__("flushw");
David S. Millerdbf3e952008-07-31 20:33:43 -07002238 show_regs(regs);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -07002239 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (regs->tstate & TSTATE_PRIV) {
2241 struct reg_window *rw = (struct reg_window *)
2242 (regs->u_regs[UREG_FP] + STACK_BIAS);
2243
2244 /* Stop the back trace when we hit userland or we
2245 * find some badly aligned kernel stack.
2246 */
2247 while (rw &&
2248 count++ < 30&&
2249 is_kernel_stack(current, rw)) {
David S. Miller4fe3ebe2008-07-17 22:11:32 -07002250 printk("Caller[%016lx]: %pS\n", rw->ins[7],
2251 (void *) rw->ins[7]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 rw = kernel_stack_up(rw);
2254 }
2255 instruction_dump ((unsigned int *) regs->tpc);
2256 } else {
2257 if (test_thread_flag(TIF_32BIT)) {
2258 regs->tpc &= 0xffffffff;
2259 regs->tnpc &= 0xffffffff;
2260 }
2261 user_instruction_dump ((unsigned int __user *) regs->tpc);
2262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (regs->tstate & TSTATE_PRIV)
2264 do_exit(SIGKILL);
2265 do_exit(SIGSEGV);
2266}
2267
David S. Miller6e7726e2006-11-19 14:38:25 -08002268#define VIS_OPCODE_MASK ((0x3 << 30) | (0x3f << 19))
2269#define VIS_OPCODE_VAL ((0x2 << 30) | (0x36 << 19))
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271extern int handle_popc(u32 insn, struct pt_regs *regs);
2272extern int handle_ldf_stq(u32 insn, struct pt_regs *regs);
David S. Miller6e7726e2006-11-19 14:38:25 -08002273extern int vis_emul(struct pt_regs *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275void do_illegal_instruction(struct pt_regs *regs)
2276{
2277 unsigned long pc = regs->tpc;
2278 unsigned long tstate = regs->tstate;
2279 u32 insn;
2280 siginfo_t info;
2281
2282 if (notify_die(DIE_TRAP, "illegal instruction", regs,
2283 0, 0x10, SIGILL) == NOTIFY_STOP)
2284 return;
2285
2286 if (tstate & TSTATE_PRIV)
2287 die_if_kernel("Kernel illegal instruction", regs);
2288 if (test_thread_flag(TIF_32BIT))
2289 pc = (u32)pc;
2290 if (get_user(insn, (u32 __user *) pc) != -EFAULT) {
2291 if ((insn & 0xc1ffc000) == 0x81700000) /* POPC */ {
2292 if (handle_popc(insn, regs))
2293 return;
2294 } else if ((insn & 0xc1580000) == 0xc1100000) /* LDQ/STQ */ {
2295 if (handle_ldf_stq(insn, regs))
2296 return;
David S. Miller0c51ed92006-03-13 01:27:34 -08002297 } else if (tlb_type == hypervisor) {
David S. Miller6e7726e2006-11-19 14:38:25 -08002298 if ((insn & VIS_OPCODE_MASK) == VIS_OPCODE_VAL) {
2299 if (!vis_emul(regs, insn))
2300 return;
2301 } else {
2302 struct fpustate *f = FPUSTATE;
David S. Miller0c51ed92006-03-13 01:27:34 -08002303
David S. Miller6e7726e2006-11-19 14:38:25 -08002304 /* XXX maybe verify XFSR bits like
2305 * XXX do_fpother() does?
2306 */
2307 if (do_mathemu(regs, f))
2308 return;
2309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 }
2312 info.si_signo = SIGILL;
2313 info.si_errno = 0;
2314 info.si_code = ILL_ILLOPC;
2315 info.si_addr = (void __user *)pc;
2316 info.si_trapno = 0;
2317 force_sig_info(SIGILL, &info, current);
2318}
2319
David S. Millered6b0b42006-02-09 20:20:34 -08002320extern void kernel_unaligned_trap(struct pt_regs *regs, unsigned int insn);
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322void mem_address_unaligned(struct pt_regs *regs, unsigned long sfar, unsigned long sfsr)
2323{
2324 siginfo_t info;
2325
2326 if (notify_die(DIE_TRAP, "memory address unaligned", regs,
2327 0, 0x34, SIGSEGV) == NOTIFY_STOP)
2328 return;
2329
2330 if (regs->tstate & TSTATE_PRIV) {
David S. Millered6b0b42006-02-09 20:20:34 -08002331 kernel_unaligned_trap(regs, *((unsigned int *)regs->tpc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return;
2333 }
2334 info.si_signo = SIGBUS;
2335 info.si_errno = 0;
2336 info.si_code = BUS_ADRALN;
2337 info.si_addr = (void __user *)sfar;
2338 info.si_trapno = 0;
2339 force_sig_info(SIGBUS, &info, current);
2340}
2341
David S. Miller9f8a5b82006-02-14 16:39:22 -08002342void sun4v_do_mna(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx)
David S. Millered6b0b42006-02-09 20:20:34 -08002343{
2344 siginfo_t info;
2345
2346 if (notify_die(DIE_TRAP, "memory address unaligned", regs,
2347 0, 0x34, SIGSEGV) == NOTIFY_STOP)
2348 return;
2349
2350 if (regs->tstate & TSTATE_PRIV) {
2351 kernel_unaligned_trap(regs, *((unsigned int *)regs->tpc));
2352 return;
2353 }
2354 info.si_signo = SIGBUS;
2355 info.si_errno = 0;
2356 info.si_code = BUS_ADRALN;
2357 info.si_addr = (void __user *) addr;
2358 info.si_trapno = 0;
2359 force_sig_info(SIGBUS, &info, current);
2360}
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362void do_privop(struct pt_regs *regs)
2363{
2364 siginfo_t info;
2365
2366 if (notify_die(DIE_TRAP, "privileged operation", regs,
2367 0, 0x11, SIGILL) == NOTIFY_STOP)
2368 return;
2369
2370 if (test_thread_flag(TIF_32BIT)) {
2371 regs->tpc &= 0xffffffff;
2372 regs->tnpc &= 0xffffffff;
2373 }
2374 info.si_signo = SIGILL;
2375 info.si_errno = 0;
2376 info.si_code = ILL_PRVOPC;
2377 info.si_addr = (void __user *)regs->tpc;
2378 info.si_trapno = 0;
2379 force_sig_info(SIGILL, &info, current);
2380}
2381
2382void do_privact(struct pt_regs *regs)
2383{
2384 do_privop(regs);
2385}
2386
2387/* Trap level 1 stuff or other traps we should never see... */
2388void do_cee(struct pt_regs *regs)
2389{
2390 die_if_kernel("TL0: Cache Error Exception", regs);
2391}
2392
2393void do_cee_tl1(struct pt_regs *regs)
2394{
2395 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2396 die_if_kernel("TL1: Cache Error Exception", regs);
2397}
2398
2399void do_dae_tl1(struct pt_regs *regs)
2400{
2401 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2402 die_if_kernel("TL1: Data Access Exception", regs);
2403}
2404
2405void do_iae_tl1(struct pt_regs *regs)
2406{
2407 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2408 die_if_kernel("TL1: Instruction Access Exception", regs);
2409}
2410
2411void do_div0_tl1(struct pt_regs *regs)
2412{
2413 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2414 die_if_kernel("TL1: DIV0 Exception", regs);
2415}
2416
2417void do_fpdis_tl1(struct pt_regs *regs)
2418{
2419 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2420 die_if_kernel("TL1: FPU Disabled", regs);
2421}
2422
2423void do_fpieee_tl1(struct pt_regs *regs)
2424{
2425 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2426 die_if_kernel("TL1: FPU IEEE Exception", regs);
2427}
2428
2429void do_fpother_tl1(struct pt_regs *regs)
2430{
2431 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2432 die_if_kernel("TL1: FPU Other Exception", regs);
2433}
2434
2435void do_ill_tl1(struct pt_regs *regs)
2436{
2437 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2438 die_if_kernel("TL1: Illegal Instruction Exception", regs);
2439}
2440
2441void do_irq_tl1(struct pt_regs *regs)
2442{
2443 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2444 die_if_kernel("TL1: IRQ Exception", regs);
2445}
2446
2447void do_lddfmna_tl1(struct pt_regs *regs)
2448{
2449 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2450 die_if_kernel("TL1: LDDF Exception", regs);
2451}
2452
2453void do_stdfmna_tl1(struct pt_regs *regs)
2454{
2455 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2456 die_if_kernel("TL1: STDF Exception", regs);
2457}
2458
2459void do_paw(struct pt_regs *regs)
2460{
2461 die_if_kernel("TL0: Phys Watchpoint Exception", regs);
2462}
2463
2464void do_paw_tl1(struct pt_regs *regs)
2465{
2466 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2467 die_if_kernel("TL1: Phys Watchpoint Exception", regs);
2468}
2469
2470void do_vaw(struct pt_regs *regs)
2471{
2472 die_if_kernel("TL0: Virt Watchpoint Exception", regs);
2473}
2474
2475void do_vaw_tl1(struct pt_regs *regs)
2476{
2477 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2478 die_if_kernel("TL1: Virt Watchpoint Exception", regs);
2479}
2480
2481void do_tof_tl1(struct pt_regs *regs)
2482{
2483 dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
2484 die_if_kernel("TL1: Tag Overflow Exception", regs);
2485}
2486
2487void do_getpsr(struct pt_regs *regs)
2488{
2489 regs->u_regs[UREG_I0] = tstate_to_psr(regs->tstate);
2490 regs->tpc = regs->tnpc;
2491 regs->tnpc += 4;
2492 if (test_thread_flag(TIF_32BIT)) {
2493 regs->tpc &= 0xffffffff;
2494 regs->tnpc &= 0xffffffff;
2495 }
2496}
2497
David S. Miller56fb4df2006-02-26 23:24:22 -08002498struct trap_per_cpu trap_block[NR_CPUS];
2499
2500/* This can get invoked before sched_init() so play it super safe
2501 * and use hard_smp_processor_id().
2502 */
David S. Miller72aff532006-02-17 01:29:17 -08002503void init_cur_cpu_trap(struct thread_info *t)
David S. Miller56fb4df2006-02-26 23:24:22 -08002504{
2505 int cpu = hard_smp_processor_id();
2506 struct trap_per_cpu *p = &trap_block[cpu];
2507
David S. Miller72aff532006-02-17 01:29:17 -08002508 p->thread = t;
David S. Miller56fb4df2006-02-26 23:24:22 -08002509 p->pgd_paddr = 0;
2510}
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512extern void thread_info_offsets_are_bolixed_dave(void);
David S. Miller56fb4df2006-02-26 23:24:22 -08002513extern void trap_per_cpu_offsets_are_bolixed_dave(void);
David S. Millerdcc1e8d2006-03-22 00:49:59 -08002514extern void tsb_config_offsets_are_bolixed_dave(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516/* Only invoked on boot processor. */
2517void __init trap_init(void)
2518{
2519 /* Compile time sanity check. */
2520 if (TI_TASK != offsetof(struct thread_info, task) ||
2521 TI_FLAGS != offsetof(struct thread_info, flags) ||
2522 TI_CPU != offsetof(struct thread_info, cpu) ||
2523 TI_FPSAVED != offsetof(struct thread_info, fpsaved) ||
2524 TI_KSP != offsetof(struct thread_info, ksp) ||
2525 TI_FAULT_ADDR != offsetof(struct thread_info, fault_address) ||
2526 TI_KREGS != offsetof(struct thread_info, kregs) ||
2527 TI_UTRAPS != offsetof(struct thread_info, utraps) ||
2528 TI_EXEC_DOMAIN != offsetof(struct thread_info, exec_domain) ||
2529 TI_REG_WINDOW != offsetof(struct thread_info, reg_window) ||
2530 TI_RWIN_SPTRS != offsetof(struct thread_info, rwbuf_stkptrs) ||
2531 TI_GSR != offsetof(struct thread_info, gsr) ||
2532 TI_XFSR != offsetof(struct thread_info, xfsr) ||
2533 TI_USER_CNTD0 != offsetof(struct thread_info, user_cntd0) ||
2534 TI_USER_CNTD1 != offsetof(struct thread_info, user_cntd1) ||
2535 TI_KERN_CNTD0 != offsetof(struct thread_info, kernel_cntd0) ||
2536 TI_KERN_CNTD1 != offsetof(struct thread_info, kernel_cntd1) ||
2537 TI_PCR != offsetof(struct thread_info, pcr_reg) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 TI_PRE_COUNT != offsetof(struct thread_info, preempt_count) ||
David S. Millerdb7d9a42005-07-24 19:36:26 -07002539 TI_NEW_CHILD != offsetof(struct thread_info, new_child) ||
2540 TI_SYS_NOERROR != offsetof(struct thread_info, syscall_noerror) ||
David S. Millera3f99852005-08-19 15:55:33 -07002541 TI_RESTART_BLOCK != offsetof(struct thread_info, restart_block) ||
2542 TI_KUNA_REGS != offsetof(struct thread_info, kern_una_regs) ||
2543 TI_KUNA_INSN != offsetof(struct thread_info, kern_una_insn) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 TI_FPREGS != offsetof(struct thread_info, fpregs) ||
2545 (TI_FPREGS & (64 - 1)))
2546 thread_info_offsets_are_bolixed_dave();
2547
David S. Miller56fb4df2006-02-26 23:24:22 -08002548 if (TRAP_PER_CPU_THREAD != offsetof(struct trap_per_cpu, thread) ||
David S. Millere088ad72006-02-07 23:51:49 -08002549 (TRAP_PER_CPU_PGD_PADDR !=
2550 offsetof(struct trap_per_cpu, pgd_paddr)) ||
2551 (TRAP_PER_CPU_CPU_MONDO_PA !=
2552 offsetof(struct trap_per_cpu, cpu_mondo_pa)) ||
2553 (TRAP_PER_CPU_DEV_MONDO_PA !=
2554 offsetof(struct trap_per_cpu, dev_mondo_pa)) ||
2555 (TRAP_PER_CPU_RESUM_MONDO_PA !=
2556 offsetof(struct trap_per_cpu, resum_mondo_pa)) ||
David S. Miller5b0c05722006-02-08 02:53:50 -08002557 (TRAP_PER_CPU_RESUM_KBUF_PA !=
2558 offsetof(struct trap_per_cpu, resum_kernel_buf_pa)) ||
David S. Millere088ad72006-02-07 23:51:49 -08002559 (TRAP_PER_CPU_NONRESUM_MONDO_PA !=
2560 offsetof(struct trap_per_cpu, nonresum_mondo_pa)) ||
David S. Miller5b0c05722006-02-08 02:53:50 -08002561 (TRAP_PER_CPU_NONRESUM_KBUF_PA !=
2562 offsetof(struct trap_per_cpu, nonresum_kernel_buf_pa)) ||
David S. Millere088ad72006-02-07 23:51:49 -08002563 (TRAP_PER_CPU_FAULT_INFO !=
David S. Miller1d2f1f92006-02-08 16:41:20 -08002564 offsetof(struct trap_per_cpu, fault_info)) ||
2565 (TRAP_PER_CPU_CPU_MONDO_BLOCK_PA !=
2566 offsetof(struct trap_per_cpu, cpu_mondo_block_pa)) ||
2567 (TRAP_PER_CPU_CPU_LIST_PA !=
David S. Millerdcc1e8d2006-03-22 00:49:59 -08002568 offsetof(struct trap_per_cpu, cpu_list_pa)) ||
2569 (TRAP_PER_CPU_TSB_HUGE !=
2570 offsetof(struct trap_per_cpu, tsb_huge)) ||
2571 (TRAP_PER_CPU_TSB_HUGE_TEMP !=
David S. Millerfd0504c32006-06-20 01:20:00 -07002572 offsetof(struct trap_per_cpu, tsb_huge_temp)) ||
David S. Millereb2d8d62007-10-13 21:42:46 -07002573 (TRAP_PER_CPU_IRQ_WORKLIST_PA !=
2574 offsetof(struct trap_per_cpu, irq_worklist_pa)) ||
David S. Miller5cbc3072007-05-25 15:49:59 -07002575 (TRAP_PER_CPU_CPU_MONDO_QMASK !=
2576 offsetof(struct trap_per_cpu, cpu_mondo_qmask)) ||
2577 (TRAP_PER_CPU_DEV_MONDO_QMASK !=
2578 offsetof(struct trap_per_cpu, dev_mondo_qmask)) ||
2579 (TRAP_PER_CPU_RESUM_QMASK !=
2580 offsetof(struct trap_per_cpu, resum_qmask)) ||
2581 (TRAP_PER_CPU_NONRESUM_QMASK !=
2582 offsetof(struct trap_per_cpu, nonresum_qmask)))
David S. Miller56fb4df2006-02-26 23:24:22 -08002583 trap_per_cpu_offsets_are_bolixed_dave();
2584
David S. Millerdcc1e8d2006-03-22 00:49:59 -08002585 if ((TSB_CONFIG_TSB !=
2586 offsetof(struct tsb_config, tsb)) ||
2587 (TSB_CONFIG_RSS_LIMIT !=
2588 offsetof(struct tsb_config, tsb_rss_limit)) ||
2589 (TSB_CONFIG_NENTRIES !=
2590 offsetof(struct tsb_config, tsb_nentries)) ||
2591 (TSB_CONFIG_REG_VAL !=
2592 offsetof(struct tsb_config, tsb_reg_val)) ||
2593 (TSB_CONFIG_MAP_VADDR !=
2594 offsetof(struct tsb_config, tsb_map_vaddr)) ||
2595 (TSB_CONFIG_MAP_PTE !=
2596 offsetof(struct tsb_config, tsb_map_pte)))
2597 tsb_config_offsets_are_bolixed_dave();
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 /* Attach to the address space of init_task. On SMP we
2600 * do this in smp.c:smp_callin for other cpus.
2601 */
2602 atomic_inc(&init_mm.mm_count);
2603 current->active_mm = &init_mm;
2604}