1 /* $Id: traps.c,v 1.85 2002/02/09 19:49:31 davem Exp $
2 * arch/sparc64/kernel/traps.c
4 * Copyright (C) 1995,1997 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1997,1999,2000 Jakub Jelinek (jakub@redhat.com)
9 * I like traps on v9, :))))
12 #include <linux/config.h>
13 #include <linux/module.h>
14 #include <linux/sched.h> /* for jiffies */
15 #include <linux/kernel.h>
16 #include <linux/kallsyms.h>
17 #include <linux/signal.h>
18 #include <linux/smp.h>
19 #include <linux/smp_lock.h>
21 #include <linux/init.h>
23 #include <asm/delay.h>
24 #include <asm/system.h>
25 #include <asm/ptrace.h>
26 #include <asm/oplib.h>
28 #include <asm/pgtable.h>
29 #include <asm/unistd.h>
30 #include <asm/uaccess.h>
31 #include <asm/fpumacro.h>
34 #include <asm/estate.h>
35 #include <asm/chafsr.h>
36 #include <asm/psrcompat.h>
37 #include <asm/processor.h>
38 #include <asm/timer.h>
39 #include <asm/kdebug.h>
41 #include <linux/kmod.h>
44 struct notifier_block
*sparc64die_chain
;
45 static DEFINE_SPINLOCK(die_notifier_lock
);
47 int register_die_notifier(struct notifier_block
*nb
)
51 spin_lock_irqsave(&die_notifier_lock
, flags
);
52 err
= notifier_chain_register(&sparc64die_chain
, nb
);
53 spin_unlock_irqrestore(&die_notifier_lock
, flags
);
57 /* When an irrecoverable trap occurs at tl > 0, the trap entry
58 * code logs the trap state registers at every level in the trap
59 * stack. It is found at (pt_regs + sizeof(pt_regs)) and the layout
72 static void dump_tl1_traplog(struct tl1_traplog
*p
)
76 printk("TRAPLOG: Error at trap level 0x%lx, dumping track stack.\n",
78 for (i
= 0; i
< 4; i
++) {
80 "TRAPLOG: Trap level %d TSTATE[%016lx] TPC[%016lx] "
81 "TNPC[%016lx] TT[%lx]\n",
83 p
->trapstack
[i
].tstate
, p
->trapstack
[i
].tpc
,
84 p
->trapstack
[i
].tnpc
, p
->trapstack
[i
].tt
);
88 void do_call_debug(struct pt_regs
*regs
)
90 notify_die(DIE_CALL
, "debug call", regs
, 0, 255, SIGINT
);
93 void bad_trap(struct pt_regs
*regs
, long lvl
)
98 if (notify_die(DIE_TRAP
, "bad trap", regs
,
99 0, lvl
, SIGTRAP
) == NOTIFY_STOP
)
103 sprintf(buffer
, "Bad hw trap %lx at tl0\n", lvl
);
104 die_if_kernel(buffer
, regs
);
108 if (regs
->tstate
& TSTATE_PRIV
) {
109 sprintf(buffer
, "Kernel bad sw trap %lx", lvl
);
110 die_if_kernel(buffer
, regs
);
112 if (test_thread_flag(TIF_32BIT
)) {
113 regs
->tpc
&= 0xffffffff;
114 regs
->tnpc
&= 0xffffffff;
116 info
.si_signo
= SIGILL
;
118 info
.si_code
= ILL_ILLTRP
;
119 info
.si_addr
= (void __user
*)regs
->tpc
;
120 info
.si_trapno
= lvl
;
121 force_sig_info(SIGILL
, &info
, current
);
124 void bad_trap_tl1(struct pt_regs
*regs
, long lvl
)
128 if (notify_die(DIE_TRAP_TL1
, "bad trap tl1", regs
,
129 0, lvl
, SIGTRAP
) == NOTIFY_STOP
)
132 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
134 sprintf (buffer
, "Bad trap %lx at tl>0", lvl
);
135 die_if_kernel (buffer
, regs
);
138 #ifdef CONFIG_DEBUG_BUGVERBOSE
139 void do_BUG(const char *file
, int line
)
142 printk("kernel BUG at %s:%d!\n", file
, line
);
146 void instruction_access_exception(struct pt_regs
*regs
,
147 unsigned long sfsr
, unsigned long sfar
)
151 if (notify_die(DIE_TRAP
, "instruction access exception", regs
,
152 0, 0x8, SIGTRAP
) == NOTIFY_STOP
)
155 if (regs
->tstate
& TSTATE_PRIV
) {
156 printk("instruction_access_exception: SFSR[%016lx] SFAR[%016lx], going.\n",
158 die_if_kernel("Iax", regs
);
160 if (test_thread_flag(TIF_32BIT
)) {
161 regs
->tpc
&= 0xffffffff;
162 regs
->tnpc
&= 0xffffffff;
164 info
.si_signo
= SIGSEGV
;
166 info
.si_code
= SEGV_MAPERR
;
167 info
.si_addr
= (void __user
*)regs
->tpc
;
169 force_sig_info(SIGSEGV
, &info
, current
);
172 void instruction_access_exception_tl1(struct pt_regs
*regs
,
173 unsigned long sfsr
, unsigned long sfar
)
175 if (notify_die(DIE_TRAP_TL1
, "instruction access exception tl1", regs
,
176 0, 0x8, SIGTRAP
) == NOTIFY_STOP
)
179 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
180 instruction_access_exception(regs
, sfsr
, sfar
);
183 void data_access_exception(struct pt_regs
*regs
,
184 unsigned long sfsr
, unsigned long sfar
)
188 if (notify_die(DIE_TRAP
, "data access exception", regs
,
189 0, 0x30, SIGTRAP
) == NOTIFY_STOP
)
192 if (regs
->tstate
& TSTATE_PRIV
) {
193 /* Test if this comes from uaccess places. */
195 unsigned long g2
= regs
->u_regs
[UREG_G2
];
197 if ((fixup
= search_extables_range(regs
->tpc
, &g2
))) {
198 /* Ouch, somebody is trying ugly VM hole tricks on us... */
199 #ifdef DEBUG_EXCEPTIONS
200 printk("Exception: PC<%016lx> faddr<UNKNOWN>\n", regs
->tpc
);
201 printk("EX_TABLE: insn<%016lx> fixup<%016lx> "
202 "g2<%016lx>\n", regs
->tpc
, fixup
, g2
);
205 regs
->tnpc
= regs
->tpc
+ 4;
206 regs
->u_regs
[UREG_G2
] = g2
;
210 printk("data_access_exception: SFSR[%016lx] SFAR[%016lx], going.\n",
212 die_if_kernel("Dax", regs
);
215 info
.si_signo
= SIGSEGV
;
217 info
.si_code
= SEGV_MAPERR
;
218 info
.si_addr
= (void __user
*)sfar
;
220 force_sig_info(SIGSEGV
, &info
, current
);
224 /* This is really pathetic... */
225 extern volatile int pci_poke_in_progress
;
226 extern volatile int pci_poke_cpu
;
227 extern volatile int pci_poke_faulted
;
230 /* When access exceptions happen, we must do this. */
231 static void spitfire_clean_and_reenable_l1_caches(void)
235 if (tlb_type
!= spitfire
)
239 for (va
= 0; va
< (PAGE_SIZE
<< 1); va
+= 32) {
240 spitfire_put_icache_tag(va
, 0x0);
241 spitfire_put_dcache_tag(va
, 0x0);
244 /* Re-enable in LSU. */
245 __asm__
__volatile__("flush %%g6\n\t"
247 "stxa %0, [%%g0] %1\n\t"
250 : "r" (LSU_CONTROL_IC
| LSU_CONTROL_DC
|
251 LSU_CONTROL_IM
| LSU_CONTROL_DM
),
252 "i" (ASI_LSU_CONTROL
)
256 void do_iae(struct pt_regs
*regs
)
260 spitfire_clean_and_reenable_l1_caches();
262 if (notify_die(DIE_TRAP
, "instruction access exception", regs
,
263 0, 0x8, SIGTRAP
) == NOTIFY_STOP
)
266 info
.si_signo
= SIGBUS
;
268 info
.si_code
= BUS_OBJERR
;
269 info
.si_addr
= (void *)0;
271 force_sig_info(SIGBUS
, &info
, current
);
274 void do_dae(struct pt_regs
*regs
)
279 if (pci_poke_in_progress
&& pci_poke_cpu
== smp_processor_id()) {
280 spitfire_clean_and_reenable_l1_caches();
282 pci_poke_faulted
= 1;
284 /* Why the fuck did they have to change this? */
285 if (tlb_type
== cheetah
|| tlb_type
== cheetah_plus
)
288 regs
->tnpc
= regs
->tpc
+ 4;
292 spitfire_clean_and_reenable_l1_caches();
294 if (notify_die(DIE_TRAP
, "data access exception", regs
,
295 0, 0x30, SIGTRAP
) == NOTIFY_STOP
)
298 info
.si_signo
= SIGBUS
;
300 info
.si_code
= BUS_OBJERR
;
301 info
.si_addr
= (void *)0;
303 force_sig_info(SIGBUS
, &info
, current
);
306 static char ecc_syndrome_table
[] = {
307 0x4c, 0x40, 0x41, 0x48, 0x42, 0x48, 0x48, 0x49,
308 0x43, 0x48, 0x48, 0x49, 0x48, 0x49, 0x49, 0x4a,
309 0x44, 0x48, 0x48, 0x20, 0x48, 0x39, 0x4b, 0x48,
310 0x48, 0x25, 0x31, 0x48, 0x28, 0x48, 0x48, 0x2c,
311 0x45, 0x48, 0x48, 0x21, 0x48, 0x3d, 0x04, 0x48,
312 0x48, 0x4b, 0x35, 0x48, 0x2d, 0x48, 0x48, 0x29,
313 0x48, 0x00, 0x01, 0x48, 0x0a, 0x48, 0x48, 0x4b,
314 0x0f, 0x48, 0x48, 0x4b, 0x48, 0x49, 0x49, 0x48,
315 0x46, 0x48, 0x48, 0x2a, 0x48, 0x3b, 0x27, 0x48,
316 0x48, 0x4b, 0x33, 0x48, 0x22, 0x48, 0x48, 0x2e,
317 0x48, 0x19, 0x1d, 0x48, 0x1b, 0x4a, 0x48, 0x4b,
318 0x1f, 0x48, 0x4a, 0x4b, 0x48, 0x4b, 0x4b, 0x48,
319 0x48, 0x4b, 0x24, 0x48, 0x07, 0x48, 0x48, 0x36,
320 0x4b, 0x48, 0x48, 0x3e, 0x48, 0x30, 0x38, 0x48,
321 0x49, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x16, 0x48,
322 0x48, 0x12, 0x4b, 0x48, 0x49, 0x48, 0x48, 0x4b,
323 0x47, 0x48, 0x48, 0x2f, 0x48, 0x3f, 0x4b, 0x48,
324 0x48, 0x06, 0x37, 0x48, 0x23, 0x48, 0x48, 0x2b,
325 0x48, 0x05, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x32,
326 0x26, 0x48, 0x48, 0x3a, 0x48, 0x34, 0x3c, 0x48,
327 0x48, 0x11, 0x15, 0x48, 0x13, 0x4a, 0x48, 0x4b,
328 0x17, 0x48, 0x4a, 0x4b, 0x48, 0x4b, 0x4b, 0x48,
329 0x49, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x1e, 0x48,
330 0x48, 0x1a, 0x4b, 0x48, 0x49, 0x48, 0x48, 0x4b,
331 0x48, 0x08, 0x0d, 0x48, 0x02, 0x48, 0x48, 0x49,
332 0x03, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x4b, 0x48,
333 0x49, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x10, 0x48,
334 0x48, 0x14, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x4b,
335 0x49, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x18, 0x48,
336 0x48, 0x1c, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x4b,
337 0x4a, 0x0c, 0x09, 0x48, 0x0e, 0x48, 0x48, 0x4b,
338 0x0b, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x4b, 0x4a
341 /* cee_trap in entry.S encodes AFSR/UDBH/UDBL error status
342 * in the following format. The AFAR is left as is, with
343 * reserved bits cleared, and is a raw 40-bit physical
346 #define CE_STATUS_UDBH_UE (1UL << (43 + 9))
347 #define CE_STATUS_UDBH_CE (1UL << (43 + 8))
348 #define CE_STATUS_UDBH_ESYNDR (0xffUL << 43)
349 #define CE_STATUS_UDBH_SHIFT 43
350 #define CE_STATUS_UDBL_UE (1UL << (33 + 9))
351 #define CE_STATUS_UDBL_CE (1UL << (33 + 8))
352 #define CE_STATUS_UDBL_ESYNDR (0xffUL << 33)
353 #define CE_STATUS_UDBL_SHIFT 33
354 #define CE_STATUS_AFSR_MASK (0x1ffffffffUL)
355 #define CE_STATUS_AFSR_ME (1UL << 32)
356 #define CE_STATUS_AFSR_PRIV (1UL << 31)
357 #define CE_STATUS_AFSR_ISAP (1UL << 30)
358 #define CE_STATUS_AFSR_ETP (1UL << 29)
359 #define CE_STATUS_AFSR_IVUE (1UL << 28)
360 #define CE_STATUS_AFSR_TO (1UL << 27)
361 #define CE_STATUS_AFSR_BERR (1UL << 26)
362 #define CE_STATUS_AFSR_LDP (1UL << 25)
363 #define CE_STATUS_AFSR_CP (1UL << 24)
364 #define CE_STATUS_AFSR_WP (1UL << 23)
365 #define CE_STATUS_AFSR_EDP (1UL << 22)
366 #define CE_STATUS_AFSR_UE (1UL << 21)
367 #define CE_STATUS_AFSR_CE (1UL << 20)
368 #define CE_STATUS_AFSR_ETS (0xfUL << 16)
369 #define CE_STATUS_AFSR_ETS_SHIFT 16
370 #define CE_STATUS_AFSR_PSYND (0xffffUL << 0)
371 #define CE_STATUS_AFSR_PSYND_SHIFT 0
373 /* Layout of Ecache TAG Parity Syndrome of AFSR */
374 #define AFSR_ETSYNDROME_7_0 0x1UL /* E$-tag bus bits <7:0> */
375 #define AFSR_ETSYNDROME_15_8 0x2UL /* E$-tag bus bits <15:8> */
376 #define AFSR_ETSYNDROME_21_16 0x4UL /* E$-tag bus bits <21:16> */
377 #define AFSR_ETSYNDROME_24_22 0x8UL /* E$-tag bus bits <24:22> */
379 static char *syndrome_unknown
= "<Unknown>";
381 asmlinkage
void cee_log(unsigned long ce_status
,
383 struct pt_regs
*regs
)
387 unsigned short scode
, udb_reg
;
389 printk(KERN_WARNING
"CPU[%d]: Correctable ECC Error "
390 "AFSR[%lx] AFAR[%016lx] UDBL[%lx] UDBH[%lx]\n",
392 (ce_status
& CE_STATUS_AFSR_MASK
),
394 ((ce_status
>> CE_STATUS_UDBL_SHIFT
) & 0x3ffUL
),
395 ((ce_status
>> CE_STATUS_UDBH_SHIFT
) & 0x3ffUL
));
397 udb_reg
= ((ce_status
>> CE_STATUS_UDBL_SHIFT
) & 0x3ffUL
);
398 if (udb_reg
& (1 << 8)) {
399 scode
= ecc_syndrome_table
[udb_reg
& 0xff];
400 if (prom_getunumber(scode
, afar
,
401 memmod_str
, sizeof(memmod_str
)) == -1)
402 p
= syndrome_unknown
;
405 printk(KERN_WARNING
"CPU[%d]: UDBL Syndrome[%x] "
406 "Memory Module \"%s\"\n",
407 smp_processor_id(), scode
, p
);
410 udb_reg
= ((ce_status
>> CE_STATUS_UDBH_SHIFT
) & 0x3ffUL
);
411 if (udb_reg
& (1 << 8)) {
412 scode
= ecc_syndrome_table
[udb_reg
& 0xff];
413 if (prom_getunumber(scode
, afar
,
414 memmod_str
, sizeof(memmod_str
)) == -1)
415 p
= syndrome_unknown
;
418 printk(KERN_WARNING
"CPU[%d]: UDBH Syndrome[%x] "
419 "Memory Module \"%s\"\n",
420 smp_processor_id(), scode
, p
);
424 /* Cheetah error trap handling. */
425 static unsigned long ecache_flush_physbase
;
426 static unsigned long ecache_flush_linesize
;
427 static unsigned long ecache_flush_size
;
429 /* WARNING: The error trap handlers in assembly know the precise
430 * layout of the following structure.
432 * C-level handlers below use this information to log the error
433 * and then determine how to recover (if possible).
435 struct cheetah_err_info
{
440 /*0x10*/u64 dcache_data
[4]; /* The actual data */
441 /*0x30*/u64 dcache_index
; /* D-cache index */
442 /*0x38*/u64 dcache_tag
; /* D-cache tag/valid */
443 /*0x40*/u64 dcache_utag
; /* D-cache microtag */
444 /*0x48*/u64 dcache_stag
; /* D-cache snooptag */
447 /*0x50*/u64 icache_data
[8]; /* The actual insns + predecode */
448 /*0x90*/u64 icache_index
; /* I-cache index */
449 /*0x98*/u64 icache_tag
; /* I-cache phys tag */
450 /*0xa0*/u64 icache_utag
; /* I-cache microtag */
451 /*0xa8*/u64 icache_stag
; /* I-cache snooptag */
452 /*0xb0*/u64 icache_upper
; /* I-cache upper-tag */
453 /*0xb8*/u64 icache_lower
; /* I-cache lower-tag */
456 /*0xc0*/u64 ecache_data
[4]; /* 32 bytes from staging registers */
457 /*0xe0*/u64 ecache_index
; /* E-cache index */
458 /*0xe8*/u64 ecache_tag
; /* E-cache tag/state */
460 /*0xf0*/u64 __pad
[32 - 30];
462 #define CHAFSR_INVALID ((u64)-1L)
464 /* This table is ordered in priority of errors and matches the
465 * AFAR overwrite policy as well.
468 struct afsr_error_table
{
473 static const char CHAFSR_PERR_msg
[] =
474 "System interface protocol error";
475 static const char CHAFSR_IERR_msg
[] =
476 "Internal processor error";
477 static const char CHAFSR_ISAP_msg
[] =
478 "System request parity error on incoming addresss";
479 static const char CHAFSR_UCU_msg
[] =
480 "Uncorrectable E-cache ECC error for ifetch/data";
481 static const char CHAFSR_UCC_msg
[] =
482 "SW Correctable E-cache ECC error for ifetch/data";
483 static const char CHAFSR_UE_msg
[] =
484 "Uncorrectable system bus data ECC error for read";
485 static const char CHAFSR_EDU_msg
[] =
486 "Uncorrectable E-cache ECC error for stmerge/blkld";
487 static const char CHAFSR_EMU_msg
[] =
488 "Uncorrectable system bus MTAG error";
489 static const char CHAFSR_WDU_msg
[] =
490 "Uncorrectable E-cache ECC error for writeback";
491 static const char CHAFSR_CPU_msg
[] =
492 "Uncorrectable ECC error for copyout";
493 static const char CHAFSR_CE_msg
[] =
494 "HW corrected system bus data ECC error for read";
495 static const char CHAFSR_EDC_msg
[] =
496 "HW corrected E-cache ECC error for stmerge/blkld";
497 static const char CHAFSR_EMC_msg
[] =
498 "HW corrected system bus MTAG ECC error";
499 static const char CHAFSR_WDC_msg
[] =
500 "HW corrected E-cache ECC error for writeback";
501 static const char CHAFSR_CPC_msg
[] =
502 "HW corrected ECC error for copyout";
503 static const char CHAFSR_TO_msg
[] =
504 "Unmapped error from system bus";
505 static const char CHAFSR_BERR_msg
[] =
506 "Bus error response from system bus";
507 static const char CHAFSR_IVC_msg
[] =
508 "HW corrected system bus data ECC error for ivec read";
509 static const char CHAFSR_IVU_msg
[] =
510 "Uncorrectable system bus data ECC error for ivec read";
511 static struct afsr_error_table __cheetah_error_table
[] = {
512 { CHAFSR_PERR
, CHAFSR_PERR_msg
},
513 { CHAFSR_IERR
, CHAFSR_IERR_msg
},
514 { CHAFSR_ISAP
, CHAFSR_ISAP_msg
},
515 { CHAFSR_UCU
, CHAFSR_UCU_msg
},
516 { CHAFSR_UCC
, CHAFSR_UCC_msg
},
517 { CHAFSR_UE
, CHAFSR_UE_msg
},
518 { CHAFSR_EDU
, CHAFSR_EDU_msg
},
519 { CHAFSR_EMU
, CHAFSR_EMU_msg
},
520 { CHAFSR_WDU
, CHAFSR_WDU_msg
},
521 { CHAFSR_CPU
, CHAFSR_CPU_msg
},
522 { CHAFSR_CE
, CHAFSR_CE_msg
},
523 { CHAFSR_EDC
, CHAFSR_EDC_msg
},
524 { CHAFSR_EMC
, CHAFSR_EMC_msg
},
525 { CHAFSR_WDC
, CHAFSR_WDC_msg
},
526 { CHAFSR_CPC
, CHAFSR_CPC_msg
},
527 { CHAFSR_TO
, CHAFSR_TO_msg
},
528 { CHAFSR_BERR
, CHAFSR_BERR_msg
},
529 /* These two do not update the AFAR. */
530 { CHAFSR_IVC
, CHAFSR_IVC_msg
},
531 { CHAFSR_IVU
, CHAFSR_IVU_msg
},
534 static const char CHPAFSR_DTO_msg
[] =
535 "System bus unmapped error for prefetch/storequeue-read";
536 static const char CHPAFSR_DBERR_msg
[] =
537 "System bus error for prefetch/storequeue-read";
538 static const char CHPAFSR_THCE_msg
[] =
539 "Hardware corrected E-cache Tag ECC error";
540 static const char CHPAFSR_TSCE_msg
[] =
541 "SW handled correctable E-cache Tag ECC error";
542 static const char CHPAFSR_TUE_msg
[] =
543 "Uncorrectable E-cache Tag ECC error";
544 static const char CHPAFSR_DUE_msg
[] =
545 "System bus uncorrectable data ECC error due to prefetch/store-fill";
546 static struct afsr_error_table __cheetah_plus_error_table
[] = {
547 { CHAFSR_PERR
, CHAFSR_PERR_msg
},
548 { CHAFSR_IERR
, CHAFSR_IERR_msg
},
549 { CHAFSR_ISAP
, CHAFSR_ISAP_msg
},
550 { CHAFSR_UCU
, CHAFSR_UCU_msg
},
551 { CHAFSR_UCC
, CHAFSR_UCC_msg
},
552 { CHAFSR_UE
, CHAFSR_UE_msg
},
553 { CHAFSR_EDU
, CHAFSR_EDU_msg
},
554 { CHAFSR_EMU
, CHAFSR_EMU_msg
},
555 { CHAFSR_WDU
, CHAFSR_WDU_msg
},
556 { CHAFSR_CPU
, CHAFSR_CPU_msg
},
557 { CHAFSR_CE
, CHAFSR_CE_msg
},
558 { CHAFSR_EDC
, CHAFSR_EDC_msg
},
559 { CHAFSR_EMC
, CHAFSR_EMC_msg
},
560 { CHAFSR_WDC
, CHAFSR_WDC_msg
},
561 { CHAFSR_CPC
, CHAFSR_CPC_msg
},
562 { CHAFSR_TO
, CHAFSR_TO_msg
},
563 { CHAFSR_BERR
, CHAFSR_BERR_msg
},
564 { CHPAFSR_DTO
, CHPAFSR_DTO_msg
},
565 { CHPAFSR_DBERR
, CHPAFSR_DBERR_msg
},
566 { CHPAFSR_THCE
, CHPAFSR_THCE_msg
},
567 { CHPAFSR_TSCE
, CHPAFSR_TSCE_msg
},
568 { CHPAFSR_TUE
, CHPAFSR_TUE_msg
},
569 { CHPAFSR_DUE
, CHPAFSR_DUE_msg
},
570 /* These two do not update the AFAR. */
571 { CHAFSR_IVC
, CHAFSR_IVC_msg
},
572 { CHAFSR_IVU
, CHAFSR_IVU_msg
},
575 static const char JPAFSR_JETO_msg
[] =
576 "System interface protocol error, hw timeout caused";
577 static const char JPAFSR_SCE_msg
[] =
578 "Parity error on system snoop results";
579 static const char JPAFSR_JEIC_msg
[] =
580 "System interface protocol error, illegal command detected";
581 static const char JPAFSR_JEIT_msg
[] =
582 "System interface protocol error, illegal ADTYPE detected";
583 static const char JPAFSR_OM_msg
[] =
584 "Out of range memory error has occurred";
585 static const char JPAFSR_ETP_msg
[] =
586 "Parity error on L2 cache tag SRAM";
587 static const char JPAFSR_UMS_msg
[] =
588 "Error due to unsupported store";
589 static const char JPAFSR_RUE_msg
[] =
590 "Uncorrectable ECC error from remote cache/memory";
591 static const char JPAFSR_RCE_msg
[] =
592 "Correctable ECC error from remote cache/memory";
593 static const char JPAFSR_BP_msg
[] =
594 "JBUS parity error on returned read data";
595 static const char JPAFSR_WBP_msg
[] =
596 "JBUS parity error on data for writeback or block store";
597 static const char JPAFSR_FRC_msg
[] =
598 "Foreign read to DRAM incurring correctable ECC error";
599 static const char JPAFSR_FRU_msg
[] =
600 "Foreign read to DRAM incurring uncorrectable ECC error";
601 static struct afsr_error_table __jalapeno_error_table
[] = {
602 { JPAFSR_JETO
, JPAFSR_JETO_msg
},
603 { JPAFSR_SCE
, JPAFSR_SCE_msg
},
604 { JPAFSR_JEIC
, JPAFSR_JEIC_msg
},
605 { JPAFSR_JEIT
, JPAFSR_JEIT_msg
},
606 { CHAFSR_PERR
, CHAFSR_PERR_msg
},
607 { CHAFSR_IERR
, CHAFSR_IERR_msg
},
608 { CHAFSR_ISAP
, CHAFSR_ISAP_msg
},
609 { CHAFSR_UCU
, CHAFSR_UCU_msg
},
610 { CHAFSR_UCC
, CHAFSR_UCC_msg
},
611 { CHAFSR_UE
, CHAFSR_UE_msg
},
612 { CHAFSR_EDU
, CHAFSR_EDU_msg
},
613 { JPAFSR_OM
, JPAFSR_OM_msg
},
614 { CHAFSR_WDU
, CHAFSR_WDU_msg
},
615 { CHAFSR_CPU
, CHAFSR_CPU_msg
},
616 { CHAFSR_CE
, CHAFSR_CE_msg
},
617 { CHAFSR_EDC
, CHAFSR_EDC_msg
},
618 { JPAFSR_ETP
, JPAFSR_ETP_msg
},
619 { CHAFSR_WDC
, CHAFSR_WDC_msg
},
620 { CHAFSR_CPC
, CHAFSR_CPC_msg
},
621 { CHAFSR_TO
, CHAFSR_TO_msg
},
622 { CHAFSR_BERR
, CHAFSR_BERR_msg
},
623 { JPAFSR_UMS
, JPAFSR_UMS_msg
},
624 { JPAFSR_RUE
, JPAFSR_RUE_msg
},
625 { JPAFSR_RCE
, JPAFSR_RCE_msg
},
626 { JPAFSR_BP
, JPAFSR_BP_msg
},
627 { JPAFSR_WBP
, JPAFSR_WBP_msg
},
628 { JPAFSR_FRC
, JPAFSR_FRC_msg
},
629 { JPAFSR_FRU
, JPAFSR_FRU_msg
},
630 /* These two do not update the AFAR. */
631 { CHAFSR_IVU
, CHAFSR_IVU_msg
},
634 static struct afsr_error_table
*cheetah_error_table
;
635 static unsigned long cheetah_afsr_errors
;
637 /* This is allocated at boot time based upon the largest hardware
638 * cpu ID in the system. We allocate two entries per cpu, one for
639 * TL==0 logging and one for TL >= 1 logging.
641 struct cheetah_err_info
*cheetah_error_log
;
643 static __inline__
struct cheetah_err_info
*cheetah_get_error_log(unsigned long afsr
)
645 struct cheetah_err_info
*p
;
646 int cpu
= smp_processor_id();
648 if (!cheetah_error_log
)
651 p
= cheetah_error_log
+ (cpu
* 2);
652 if ((afsr
& CHAFSR_TL1
) != 0UL)
658 extern unsigned int tl0_icpe
[], tl1_icpe
[];
659 extern unsigned int tl0_dcpe
[], tl1_dcpe
[];
660 extern unsigned int tl0_fecc
[], tl1_fecc
[];
661 extern unsigned int tl0_cee
[], tl1_cee
[];
662 extern unsigned int tl0_iae
[], tl1_iae
[];
663 extern unsigned int tl0_dae
[], tl1_dae
[];
664 extern unsigned int cheetah_plus_icpe_trap_vector
[], cheetah_plus_icpe_trap_vector_tl1
[];
665 extern unsigned int cheetah_plus_dcpe_trap_vector
[], cheetah_plus_dcpe_trap_vector_tl1
[];
666 extern unsigned int cheetah_fecc_trap_vector
[], cheetah_fecc_trap_vector_tl1
[];
667 extern unsigned int cheetah_cee_trap_vector
[], cheetah_cee_trap_vector_tl1
[];
668 extern unsigned int cheetah_deferred_trap_vector
[], cheetah_deferred_trap_vector_tl1
[];
670 void __init
cheetah_ecache_flush_init(void)
672 unsigned long largest_size
, smallest_linesize
, order
, ver
;
673 int node
, i
, instance
;
675 /* Scan all cpu device tree nodes, note two values:
676 * 1) largest E-cache size
677 * 2) smallest E-cache line size
680 smallest_linesize
= ~0UL;
683 while (!cpu_find_by_instance(instance
, &node
, NULL
)) {
686 val
= prom_getintdefault(node
, "ecache-size",
688 if (val
> largest_size
)
690 val
= prom_getintdefault(node
, "ecache-line-size", 64);
691 if (val
< smallest_linesize
)
692 smallest_linesize
= val
;
696 if (largest_size
== 0UL || smallest_linesize
== ~0UL) {
697 prom_printf("cheetah_ecache_flush_init: Cannot probe cpu E-cache "
702 ecache_flush_size
= (2 * largest_size
);
703 ecache_flush_linesize
= smallest_linesize
;
705 /* Discover a physically contiguous chunk of physical
706 * memory in 'sp_banks' of size ecache_flush_size calculated
707 * above. Store the physical base of this area at
708 * ecache_flush_physbase.
710 for (node
= 0; ; node
++) {
711 if (sp_banks
[node
].num_bytes
== 0)
713 if (sp_banks
[node
].num_bytes
>= ecache_flush_size
) {
714 ecache_flush_physbase
= sp_banks
[node
].base_addr
;
719 /* Note: Zero would be a valid value of ecache_flush_physbase so
720 * don't use that as the success test. :-)
722 if (sp_banks
[node
].num_bytes
== 0) {
723 prom_printf("cheetah_ecache_flush_init: Cannot find %d byte "
724 "contiguous physical memory.\n", ecache_flush_size
);
728 /* Now allocate error trap reporting scoreboard. */
729 node
= NR_CPUS
* (2 * sizeof(struct cheetah_err_info
));
730 for (order
= 0; order
< MAX_ORDER
; order
++) {
731 if ((PAGE_SIZE
<< order
) >= node
)
734 cheetah_error_log
= (struct cheetah_err_info
*)
735 __get_free_pages(GFP_KERNEL
, order
);
736 if (!cheetah_error_log
) {
737 prom_printf("cheetah_ecache_flush_init: Failed to allocate "
738 "error logging scoreboard (%d bytes).\n", node
);
741 memset(cheetah_error_log
, 0, PAGE_SIZE
<< order
);
743 /* Mark all AFSRs as invalid so that the trap handler will
744 * log new new information there.
746 for (i
= 0; i
< 2 * NR_CPUS
; i
++)
747 cheetah_error_log
[i
].afsr
= CHAFSR_INVALID
;
749 __asm__ ("rdpr %%ver, %0" : "=r" (ver
));
750 if ((ver
>> 32) == 0x003e0016) {
751 cheetah_error_table
= &__jalapeno_error_table
[0];
752 cheetah_afsr_errors
= JPAFSR_ERRORS
;
753 } else if ((ver
>> 32) == 0x003e0015) {
754 cheetah_error_table
= &__cheetah_plus_error_table
[0];
755 cheetah_afsr_errors
= CHPAFSR_ERRORS
;
757 cheetah_error_table
= &__cheetah_error_table
[0];
758 cheetah_afsr_errors
= CHAFSR_ERRORS
;
761 /* Now patch trap tables. */
762 memcpy(tl0_fecc
, cheetah_fecc_trap_vector
, (8 * 4));
763 memcpy(tl1_fecc
, cheetah_fecc_trap_vector_tl1
, (8 * 4));
764 memcpy(tl0_cee
, cheetah_cee_trap_vector
, (8 * 4));
765 memcpy(tl1_cee
, cheetah_cee_trap_vector_tl1
, (8 * 4));
766 memcpy(tl0_iae
, cheetah_deferred_trap_vector
, (8 * 4));
767 memcpy(tl1_iae
, cheetah_deferred_trap_vector_tl1
, (8 * 4));
768 memcpy(tl0_dae
, cheetah_deferred_trap_vector
, (8 * 4));
769 memcpy(tl1_dae
, cheetah_deferred_trap_vector_tl1
, (8 * 4));
770 if (tlb_type
== cheetah_plus
) {
771 memcpy(tl0_dcpe
, cheetah_plus_dcpe_trap_vector
, (8 * 4));
772 memcpy(tl1_dcpe
, cheetah_plus_dcpe_trap_vector_tl1
, (8 * 4));
773 memcpy(tl0_icpe
, cheetah_plus_icpe_trap_vector
, (8 * 4));
774 memcpy(tl1_icpe
, cheetah_plus_icpe_trap_vector_tl1
, (8 * 4));
779 static void cheetah_flush_ecache(void)
781 unsigned long flush_base
= ecache_flush_physbase
;
782 unsigned long flush_linesize
= ecache_flush_linesize
;
783 unsigned long flush_size
= ecache_flush_size
;
785 __asm__
__volatile__("1: subcc %0, %4, %0\n\t"
786 " bne,pt %%xcc, 1b\n\t"
787 " ldxa [%2 + %0] %3, %%g0\n\t"
789 : "0" (flush_size
), "r" (flush_base
),
790 "i" (ASI_PHYS_USE_EC
), "r" (flush_linesize
));
793 static void cheetah_flush_ecache_line(unsigned long physaddr
)
797 physaddr
&= ~(8UL - 1UL);
798 physaddr
= (ecache_flush_physbase
+
799 (physaddr
& ((ecache_flush_size
>>1UL) - 1UL)));
800 alias
= physaddr
+ (ecache_flush_size
>> 1UL);
801 __asm__
__volatile__("ldxa [%0] %2, %%g0\n\t"
802 "ldxa [%1] %2, %%g0\n\t"
805 : "r" (physaddr
), "r" (alias
),
806 "i" (ASI_PHYS_USE_EC
));
809 /* Unfortunately, the diagnostic access to the I-cache tags we need to
810 * use to clear the thing interferes with I-cache coherency transactions.
812 * So we must only flush the I-cache when it is disabled.
814 static void __cheetah_flush_icache(void)
818 /* Clear the valid bits in all the tags. */
819 for (i
= 0; i
< (1 << 15); i
+= (1 << 5)) {
820 __asm__
__volatile__("stxa %%g0, [%0] %1\n\t"
823 : "r" (i
| (2 << 3)), "i" (ASI_IC_TAG
));
827 static void cheetah_flush_icache(void)
829 unsigned long dcu_save
;
831 /* Save current DCU, disable I-cache. */
832 __asm__
__volatile__("ldxa [%%g0] %1, %0\n\t"
833 "or %0, %2, %%g1\n\t"
834 "stxa %%g1, [%%g0] %1\n\t"
837 : "i" (ASI_DCU_CONTROL_REG
), "i" (DCU_IC
)
840 __cheetah_flush_icache();
842 /* Restore DCU register */
843 __asm__
__volatile__("stxa %0, [%%g0] %1\n\t"
846 : "r" (dcu_save
), "i" (ASI_DCU_CONTROL_REG
));
849 static void cheetah_flush_dcache(void)
853 for (i
= 0; i
< (1 << 16); i
+= (1 << 5)) {
854 __asm__
__volatile__("stxa %%g0, [%0] %1\n\t"
857 : "r" (i
), "i" (ASI_DCACHE_TAG
));
861 /* In order to make the even parity correct we must do two things.
862 * First, we clear DC_data_parity and set DC_utag to an appropriate value.
863 * Next, we clear out all 32-bytes of data for that line. Data of
864 * all-zero + tag parity value of zero == correct parity.
866 static void cheetah_plus_zap_dcache_parity(void)
870 for (i
= 0; i
< (1 << 16); i
+= (1 << 5)) {
871 unsigned long tag
= (i
>> 14);
874 __asm__
__volatile__("membar #Sync\n\t"
875 "stxa %0, [%1] %2\n\t"
878 : "r" (tag
), "r" (i
),
879 "i" (ASI_DCACHE_UTAG
));
880 for (j
= i
; j
< i
+ (1 << 5); j
+= (1 << 3))
881 __asm__
__volatile__("membar #Sync\n\t"
882 "stxa %%g0, [%0] %1\n\t"
885 : "r" (j
), "i" (ASI_DCACHE_DATA
));
889 /* Conversion tables used to frob Cheetah AFSR syndrome values into
890 * something palatable to the memory controller driver get_unumber
914 static unsigned char cheetah_ecc_syntab
[] = {
915 /*00*/NONE
, C0
, C1
, M2
, C2
, M2
, M3
, 47, C3
, M2
, M2
, 53, M2
, 41, 29, M
,
916 /*01*/C4
, M
, M
, 50, M2
, 38, 25, M2
, M2
, 33, 24, M2
, 11, M
, M2
, 16,
917 /*02*/C5
, M
, M
, 46, M2
, 37, 19, M2
, M
, 31, 32, M
, 7, M2
, M2
, 10,
918 /*03*/M2
, 40, 13, M2
, 59, M
, M2
, 66, M
, M2
, M2
, 0, M2
, 67, 71, M
,
919 /*04*/C6
, M
, M
, 43, M
, 36, 18, M
, M2
, 49, 15, M
, 63, M2
, M2
, 6,
920 /*05*/M2
, 44, 28, M2
, M
, M2
, M2
, 52, 68, M2
, M2
, 62, M2
, M3
, M3
, M4
,
921 /*06*/M2
, 26, 106, M2
, 64, M
, M2
, 2, 120, M
, M2
, M3
, M
, M3
, M3
, M4
,
922 /*07*/116, M2
, M2
, M3
, M2
, M3
, M
, M4
, M2
, 58, 54, M2
, M
, M4
, M4
, M3
,
923 /*08*/C7
, M2
, M
, 42, M
, 35, 17, M2
, M
, 45, 14, M2
, 21, M2
, M2
, 5,
924 /*09*/M
, 27, M
, M
, 99, M
, M
, 3, 114, M2
, M2
, 20, M2
, M3
, M3
, M
,
925 /*0a*/M2
, 23, 113, M2
, 112, M2
, M
, 51, 95, M
, M2
, M3
, M2
, M3
, M3
, M2
,
926 /*0b*/103, M
, M2
, M3
, M2
, M3
, M3
, M4
, M2
, 48, M
, M
, 73, M2
, M
, M3
,
927 /*0c*/M2
, 22, 110, M2
, 109, M2
, M
, 9, 108, M2
, M
, M3
, M2
, M3
, M3
, M
,
928 /*0d*/102, M2
, M
, M
, M2
, M3
, M3
, M
, M2
, M3
, M3
, M2
, M
, M4
, M
, M3
,
929 /*0e*/98, M
, M2
, M3
, M2
, M
, M3
, M4
, M2
, M3
, M3
, M4
, M3
, M
, M
, M
,
930 /*0f*/M2
, M3
, M3
, M
, M3
, M
, M
, M
, 56, M4
, M
, M3
, M4
, M
, M
, M
,
931 /*10*/C8
, M
, M2
, 39, M
, 34, 105, M2
, M
, 30, 104, M
, 101, M
, M
, 4,
932 /*11*/M
, M
, 100, M
, 83, M
, M2
, 12, 87, M
, M
, 57, M2
, M
, M3
, M
,
933 /*12*/M2
, 97, 82, M2
, 78, M2
, M2
, 1, 96, M
, M
, M
, M
, M
, M3
, M2
,
934 /*13*/94, M
, M2
, M3
, M2
, M
, M3
, M
, M2
, M
, 79, M
, 69, M
, M4
, M
,
935 /*14*/M2
, 93, 92, M
, 91, M
, M2
, 8, 90, M2
, M2
, M
, M
, M
, M
, M4
,
936 /*15*/89, M
, M
, M3
, M2
, M3
, M3
, M
, M
, M
, M3
, M2
, M3
, M2
, M
, M3
,
937 /*16*/86, M
, M2
, M3
, M2
, M
, M3
, M
, M2
, M
, M3
, M
, M3
, M
, M
, M3
,
938 /*17*/M
, M
, M3
, M2
, M3
, M2
, M4
, M
, 60, M
, M2
, M3
, M4
, M
, M
, M2
,
939 /*18*/M2
, 88, 85, M2
, 84, M
, M2
, 55, 81, M2
, M2
, M3
, M2
, M3
, M3
, M4
,
940 /*19*/77, M
, M
, M
, M2
, M3
, M
, M
, M2
, M3
, M3
, M4
, M3
, M2
, M
, M
,
941 /*1a*/74, M
, M2
, M3
, M
, M
, M3
, M
, M
, M
, M3
, M
, M3
, M
, M4
, M3
,
942 /*1b*/M2
, 70, 107, M4
, 65, M2
, M2
, M
, 127, M
, M
, M
, M2
, M3
, M3
, M
,
943 /*1c*/80, M2
, M2
, 72, M
, 119, 118, M
, M2
, 126, 76, M
, 125, M
, M4
, M3
,
944 /*1d*/M2
, 115, 124, M
, 75, M
, M
, M3
, 61, M
, M4
, M
, M4
, M
, M
, M
,
945 /*1e*/M
, 123, 122, M4
, 121, M4
, M
, M3
, 117, M2
, M2
, M3
, M4
, M3
, M
, M
,
946 /*1f*/111, M
, M
, M
, M4
, M3
, M3
, M
, M
, M
, M3
, M
, M3
, M2
, M
, M
948 static unsigned char cheetah_mtag_syntab
[] = {
959 /* Return the highest priority error conditon mentioned. */
960 static __inline__
unsigned long cheetah_get_hipri(unsigned long afsr
)
962 unsigned long tmp
= 0;
965 for (i
= 0; cheetah_error_table
[i
].mask
; i
++) {
966 if ((tmp
= (afsr
& cheetah_error_table
[i
].mask
)) != 0UL)
972 static const char *cheetah_get_string(unsigned long bit
)
976 for (i
= 0; cheetah_error_table
[i
].mask
; i
++) {
977 if ((bit
& cheetah_error_table
[i
].mask
) != 0UL)
978 return cheetah_error_table
[i
].name
;
983 extern int chmc_getunumber(int, unsigned long, char *, int);
985 static void cheetah_log_errors(struct pt_regs
*regs
, struct cheetah_err_info
*info
,
986 unsigned long afsr
, unsigned long afar
, int recoverable
)
991 printk("%s" "ERROR(%d): Cheetah error trap taken afsr[%016lx] afar[%016lx] TL1(%d)\n",
992 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
994 (afsr
& CHAFSR_TL1
) ? 1 : 0);
995 printk("%s" "ERROR(%d): TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
996 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
997 regs
->tpc
, regs
->tnpc
, regs
->tstate
);
998 printk("%s" "ERROR(%d): M_SYND(%lx), E_SYND(%lx)%s%s\n",
999 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1000 (afsr
& CHAFSR_M_SYNDROME
) >> CHAFSR_M_SYNDROME_SHIFT
,
1001 (afsr
& CHAFSR_E_SYNDROME
) >> CHAFSR_E_SYNDROME_SHIFT
,
1002 (afsr
& CHAFSR_ME
) ? ", Multiple Errors" : "",
1003 (afsr
& CHAFSR_PRIV
) ? ", Privileged" : "");
1004 hipri
= cheetah_get_hipri(afsr
);
1005 printk("%s" "ERROR(%d): Highest priority error (%016lx) \"%s\"\n",
1006 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1007 hipri
, cheetah_get_string(hipri
));
1009 /* Try to get unumber if relevant. */
1010 #define ESYND_ERRORS (CHAFSR_IVC | CHAFSR_IVU | \
1011 CHAFSR_CPC | CHAFSR_CPU | \
1012 CHAFSR_UE | CHAFSR_CE | \
1013 CHAFSR_EDC | CHAFSR_EDU | \
1014 CHAFSR_UCC | CHAFSR_UCU | \
1015 CHAFSR_WDU | CHAFSR_WDC)
1016 #define MSYND_ERRORS (CHAFSR_EMC | CHAFSR_EMU)
1017 if (afsr
& ESYND_ERRORS
) {
1021 syndrome
= (afsr
& CHAFSR_E_SYNDROME
) >> CHAFSR_E_SYNDROME_SHIFT
;
1022 syndrome
= cheetah_ecc_syntab
[syndrome
];
1023 ret
= chmc_getunumber(syndrome
, afar
, unum
, sizeof(unum
));
1025 printk("%s" "ERROR(%d): AFAR E-syndrome [%s]\n",
1026 (recoverable
? KERN_WARNING
: KERN_CRIT
),
1027 smp_processor_id(), unum
);
1028 } else if (afsr
& MSYND_ERRORS
) {
1032 syndrome
= (afsr
& CHAFSR_M_SYNDROME
) >> CHAFSR_M_SYNDROME_SHIFT
;
1033 syndrome
= cheetah_mtag_syntab
[syndrome
];
1034 ret
= chmc_getunumber(syndrome
, afar
, unum
, sizeof(unum
));
1036 printk("%s" "ERROR(%d): AFAR M-syndrome [%s]\n",
1037 (recoverable
? KERN_WARNING
: KERN_CRIT
),
1038 smp_processor_id(), unum
);
1041 /* Now dump the cache snapshots. */
1042 printk("%s" "ERROR(%d): D-cache idx[%x] tag[%016lx] utag[%016lx] stag[%016lx]\n",
1043 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1044 (int) info
->dcache_index
,
1048 printk("%s" "ERROR(%d): D-cache data0[%016lx] data1[%016lx] data2[%016lx] data3[%016lx]\n",
1049 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1050 info
->dcache_data
[0],
1051 info
->dcache_data
[1],
1052 info
->dcache_data
[2],
1053 info
->dcache_data
[3]);
1054 printk("%s" "ERROR(%d): I-cache idx[%x] tag[%016lx] utag[%016lx] stag[%016lx] "
1055 "u[%016lx] l[%016lx]\n",
1056 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1057 (int) info
->icache_index
,
1062 info
->icache_lower
);
1063 printk("%s" "ERROR(%d): I-cache INSN0[%016lx] INSN1[%016lx] INSN2[%016lx] INSN3[%016lx]\n",
1064 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1065 info
->icache_data
[0],
1066 info
->icache_data
[1],
1067 info
->icache_data
[2],
1068 info
->icache_data
[3]);
1069 printk("%s" "ERROR(%d): I-cache INSN4[%016lx] INSN5[%016lx] INSN6[%016lx] INSN7[%016lx]\n",
1070 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1071 info
->icache_data
[4],
1072 info
->icache_data
[5],
1073 info
->icache_data
[6],
1074 info
->icache_data
[7]);
1075 printk("%s" "ERROR(%d): E-cache idx[%x] tag[%016lx]\n",
1076 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1077 (int) info
->ecache_index
, info
->ecache_tag
);
1078 printk("%s" "ERROR(%d): E-cache data0[%016lx] data1[%016lx] data2[%016lx] data3[%016lx]\n",
1079 (recoverable
? KERN_WARNING
: KERN_CRIT
), smp_processor_id(),
1080 info
->ecache_data
[0],
1081 info
->ecache_data
[1],
1082 info
->ecache_data
[2],
1083 info
->ecache_data
[3]);
1085 afsr
= (afsr
& ~hipri
) & cheetah_afsr_errors
;
1086 while (afsr
!= 0UL) {
1087 unsigned long bit
= cheetah_get_hipri(afsr
);
1089 printk("%s" "ERROR: Multiple-error (%016lx) \"%s\"\n",
1090 (recoverable
? KERN_WARNING
: KERN_CRIT
),
1091 bit
, cheetah_get_string(bit
));
1097 printk(KERN_CRIT
"ERROR: This condition is not recoverable.\n");
1100 static int cheetah_recheck_errors(struct cheetah_err_info
*logp
)
1102 unsigned long afsr
, afar
;
1105 __asm__
__volatile__("ldxa [%%g0] %1, %0\n\t"
1108 if ((afsr
& cheetah_afsr_errors
) != 0) {
1110 __asm__
__volatile__("ldxa [%%g0] %1, %0\n\t"
1118 __asm__
__volatile__("stxa %0, [%%g0] %1\n\t"
1120 : : "r" (afsr
), "i" (ASI_AFSR
));
1125 void cheetah_fecc_handler(struct pt_regs
*regs
, unsigned long afsr
, unsigned long afar
)
1127 struct cheetah_err_info local_snapshot
, *p
;
1131 cheetah_flush_ecache();
1133 p
= cheetah_get_error_log(afsr
);
1135 prom_printf("ERROR: Early Fast-ECC error afsr[%016lx] afar[%016lx]\n",
1137 prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
1138 smp_processor_id(), regs
->tpc
, regs
->tnpc
, regs
->tstate
);
1142 /* Grab snapshot of logged error. */
1143 memcpy(&local_snapshot
, p
, sizeof(local_snapshot
));
1145 /* If the current trap snapshot does not match what the
1146 * trap handler passed along into our args, big trouble.
1147 * In such a case, mark the local copy as invalid.
1149 * Else, it matches and we mark the afsr in the non-local
1150 * copy as invalid so we may log new error traps there.
1152 if (p
->afsr
!= afsr
|| p
->afar
!= afar
)
1153 local_snapshot
.afsr
= CHAFSR_INVALID
;
1155 p
->afsr
= CHAFSR_INVALID
;
1157 cheetah_flush_icache();
1158 cheetah_flush_dcache();
1160 /* Re-enable I-cache/D-cache */
1161 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1162 "or %%g1, %1, %%g1\n\t"
1163 "stxa %%g1, [%%g0] %0\n\t"
1166 : "i" (ASI_DCU_CONTROL_REG
),
1167 "i" (DCU_DC
| DCU_IC
)
1170 /* Re-enable error reporting */
1171 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1172 "or %%g1, %1, %%g1\n\t"
1173 "stxa %%g1, [%%g0] %0\n\t"
1176 : "i" (ASI_ESTATE_ERROR_EN
),
1177 "i" (ESTATE_ERROR_NCEEN
| ESTATE_ERROR_CEEN
)
1180 /* Decide if we can continue after handling this trap and
1181 * logging the error.
1184 if (afsr
& (CHAFSR_PERR
| CHAFSR_IERR
| CHAFSR_ISAP
))
1187 /* Re-check AFSR/AFAR. What we are looking for here is whether a new
1188 * error was logged while we had error reporting traps disabled.
1190 if (cheetah_recheck_errors(&local_snapshot
)) {
1191 unsigned long new_afsr
= local_snapshot
.afsr
;
1193 /* If we got a new asynchronous error, die... */
1194 if (new_afsr
& (CHAFSR_EMU
| CHAFSR_EDU
|
1195 CHAFSR_WDU
| CHAFSR_CPU
|
1196 CHAFSR_IVU
| CHAFSR_UE
|
1197 CHAFSR_BERR
| CHAFSR_TO
))
1202 cheetah_log_errors(regs
, &local_snapshot
, afsr
, afar
, recoverable
);
1205 panic("Irrecoverable Fast-ECC error trap.\n");
1207 /* Flush E-cache to kick the error trap handlers out. */
1208 cheetah_flush_ecache();
1211 /* Try to fix a correctable error by pushing the line out from
1212 * the E-cache. Recheck error reporting registers to see if the
1213 * problem is intermittent.
1215 static int cheetah_fix_ce(unsigned long physaddr
)
1217 unsigned long orig_estate
;
1218 unsigned long alias1
, alias2
;
1221 /* Make sure correctable error traps are disabled. */
1222 __asm__
__volatile__("ldxa [%%g0] %2, %0\n\t"
1223 "andn %0, %1, %%g1\n\t"
1224 "stxa %%g1, [%%g0] %2\n\t"
1226 : "=&r" (orig_estate
)
1227 : "i" (ESTATE_ERROR_CEEN
),
1228 "i" (ASI_ESTATE_ERROR_EN
)
1231 /* We calculate alias addresses that will force the
1232 * cache line in question out of the E-cache. Then
1233 * we bring it back in with an atomic instruction so
1234 * that we get it in some modified/exclusive state,
1235 * then we displace it again to try and get proper ECC
1236 * pushed back into the system.
1238 physaddr
&= ~(8UL - 1UL);
1239 alias1
= (ecache_flush_physbase
+
1240 (physaddr
& ((ecache_flush_size
>> 1) - 1)));
1241 alias2
= alias1
+ (ecache_flush_size
>> 1);
1242 __asm__
__volatile__("ldxa [%0] %3, %%g0\n\t"
1243 "ldxa [%1] %3, %%g0\n\t"
1244 "casxa [%2] %3, %%g0, %%g0\n\t"
1245 "membar #StoreLoad | #StoreStore\n\t"
1246 "ldxa [%0] %3, %%g0\n\t"
1247 "ldxa [%1] %3, %%g0\n\t"
1250 : "r" (alias1
), "r" (alias2
),
1251 "r" (physaddr
), "i" (ASI_PHYS_USE_EC
));
1253 /* Did that trigger another error? */
1254 if (cheetah_recheck_errors(NULL
)) {
1255 /* Try one more time. */
1256 __asm__
__volatile__("ldxa [%0] %1, %%g0\n\t"
1258 : : "r" (physaddr
), "i" (ASI_PHYS_USE_EC
));
1259 if (cheetah_recheck_errors(NULL
))
1264 /* No new error, intermittent problem. */
1268 /* Restore error enables. */
1269 __asm__
__volatile__("stxa %0, [%%g0] %1\n\t"
1271 : : "r" (orig_estate
), "i" (ASI_ESTATE_ERROR_EN
));
1276 /* Return non-zero if PADDR is a valid physical memory address. */
1277 static int cheetah_check_main_memory(unsigned long paddr
)
1281 for (i
= 0; ; i
++) {
1282 if (sp_banks
[i
].num_bytes
== 0)
1284 if (paddr
>= sp_banks
[i
].base_addr
&&
1285 paddr
< (sp_banks
[i
].base_addr
+ sp_banks
[i
].num_bytes
))
1291 void cheetah_cee_handler(struct pt_regs
*regs
, unsigned long afsr
, unsigned long afar
)
1293 struct cheetah_err_info local_snapshot
, *p
;
1294 int recoverable
, is_memory
;
1296 p
= cheetah_get_error_log(afsr
);
1298 prom_printf("ERROR: Early CEE error afsr[%016lx] afar[%016lx]\n",
1300 prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
1301 smp_processor_id(), regs
->tpc
, regs
->tnpc
, regs
->tstate
);
1305 /* Grab snapshot of logged error. */
1306 memcpy(&local_snapshot
, p
, sizeof(local_snapshot
));
1308 /* If the current trap snapshot does not match what the
1309 * trap handler passed along into our args, big trouble.
1310 * In such a case, mark the local copy as invalid.
1312 * Else, it matches and we mark the afsr in the non-local
1313 * copy as invalid so we may log new error traps there.
1315 if (p
->afsr
!= afsr
|| p
->afar
!= afar
)
1316 local_snapshot
.afsr
= CHAFSR_INVALID
;
1318 p
->afsr
= CHAFSR_INVALID
;
1320 is_memory
= cheetah_check_main_memory(afar
);
1322 if (is_memory
&& (afsr
& CHAFSR_CE
) != 0UL) {
1323 /* XXX Might want to log the results of this operation
1324 * XXX somewhere... -DaveM
1326 cheetah_fix_ce(afar
);
1330 int flush_all
, flush_line
;
1332 flush_all
= flush_line
= 0;
1333 if ((afsr
& CHAFSR_EDC
) != 0UL) {
1334 if ((afsr
& cheetah_afsr_errors
) == CHAFSR_EDC
)
1338 } else if ((afsr
& CHAFSR_CPC
) != 0UL) {
1339 if ((afsr
& cheetah_afsr_errors
) == CHAFSR_CPC
)
1345 /* Trap handler only disabled I-cache, flush it. */
1346 cheetah_flush_icache();
1348 /* Re-enable I-cache */
1349 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1350 "or %%g1, %1, %%g1\n\t"
1351 "stxa %%g1, [%%g0] %0\n\t"
1354 : "i" (ASI_DCU_CONTROL_REG
),
1359 cheetah_flush_ecache();
1360 else if (flush_line
)
1361 cheetah_flush_ecache_line(afar
);
1364 /* Re-enable error reporting */
1365 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1366 "or %%g1, %1, %%g1\n\t"
1367 "stxa %%g1, [%%g0] %0\n\t"
1370 : "i" (ASI_ESTATE_ERROR_EN
),
1371 "i" (ESTATE_ERROR_CEEN
)
1374 /* Decide if we can continue after handling this trap and
1375 * logging the error.
1378 if (afsr
& (CHAFSR_PERR
| CHAFSR_IERR
| CHAFSR_ISAP
))
1381 /* Re-check AFSR/AFAR */
1382 (void) cheetah_recheck_errors(&local_snapshot
);
1385 cheetah_log_errors(regs
, &local_snapshot
, afsr
, afar
, recoverable
);
1388 panic("Irrecoverable Correctable-ECC error trap.\n");
1391 void cheetah_deferred_handler(struct pt_regs
*regs
, unsigned long afsr
, unsigned long afar
)
1393 struct cheetah_err_info local_snapshot
, *p
;
1394 int recoverable
, is_memory
;
1397 /* Check for the special PCI poke sequence. */
1398 if (pci_poke_in_progress
&& pci_poke_cpu
== smp_processor_id()) {
1399 cheetah_flush_icache();
1400 cheetah_flush_dcache();
1402 /* Re-enable I-cache/D-cache */
1403 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1404 "or %%g1, %1, %%g1\n\t"
1405 "stxa %%g1, [%%g0] %0\n\t"
1408 : "i" (ASI_DCU_CONTROL_REG
),
1409 "i" (DCU_DC
| DCU_IC
)
1412 /* Re-enable error reporting */
1413 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1414 "or %%g1, %1, %%g1\n\t"
1415 "stxa %%g1, [%%g0] %0\n\t"
1418 : "i" (ASI_ESTATE_ERROR_EN
),
1419 "i" (ESTATE_ERROR_NCEEN
| ESTATE_ERROR_CEEN
)
1422 (void) cheetah_recheck_errors(NULL
);
1424 pci_poke_faulted
= 1;
1426 regs
->tnpc
= regs
->tpc
+ 4;
1431 p
= cheetah_get_error_log(afsr
);
1433 prom_printf("ERROR: Early deferred error afsr[%016lx] afar[%016lx]\n",
1435 prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]\n",
1436 smp_processor_id(), regs
->tpc
, regs
->tnpc
, regs
->tstate
);
1440 /* Grab snapshot of logged error. */
1441 memcpy(&local_snapshot
, p
, sizeof(local_snapshot
));
1443 /* If the current trap snapshot does not match what the
1444 * trap handler passed along into our args, big trouble.
1445 * In such a case, mark the local copy as invalid.
1447 * Else, it matches and we mark the afsr in the non-local
1448 * copy as invalid so we may log new error traps there.
1450 if (p
->afsr
!= afsr
|| p
->afar
!= afar
)
1451 local_snapshot
.afsr
= CHAFSR_INVALID
;
1453 p
->afsr
= CHAFSR_INVALID
;
1455 is_memory
= cheetah_check_main_memory(afar
);
1458 int flush_all
, flush_line
;
1460 flush_all
= flush_line
= 0;
1461 if ((afsr
& CHAFSR_EDU
) != 0UL) {
1462 if ((afsr
& cheetah_afsr_errors
) == CHAFSR_EDU
)
1466 } else if ((afsr
& CHAFSR_BERR
) != 0UL) {
1467 if ((afsr
& cheetah_afsr_errors
) == CHAFSR_BERR
)
1473 cheetah_flush_icache();
1474 cheetah_flush_dcache();
1476 /* Re-enable I/D caches */
1477 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1478 "or %%g1, %1, %%g1\n\t"
1479 "stxa %%g1, [%%g0] %0\n\t"
1482 : "i" (ASI_DCU_CONTROL_REG
),
1483 "i" (DCU_IC
| DCU_DC
)
1487 cheetah_flush_ecache();
1488 else if (flush_line
)
1489 cheetah_flush_ecache_line(afar
);
1492 /* Re-enable error reporting */
1493 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1494 "or %%g1, %1, %%g1\n\t"
1495 "stxa %%g1, [%%g0] %0\n\t"
1498 : "i" (ASI_ESTATE_ERROR_EN
),
1499 "i" (ESTATE_ERROR_NCEEN
| ESTATE_ERROR_CEEN
)
1502 /* Decide if we can continue after handling this trap and
1503 * logging the error.
1506 if (afsr
& (CHAFSR_PERR
| CHAFSR_IERR
| CHAFSR_ISAP
))
1509 /* Re-check AFSR/AFAR. What we are looking for here is whether a new
1510 * error was logged while we had error reporting traps disabled.
1512 if (cheetah_recheck_errors(&local_snapshot
)) {
1513 unsigned long new_afsr
= local_snapshot
.afsr
;
1515 /* If we got a new asynchronous error, die... */
1516 if (new_afsr
& (CHAFSR_EMU
| CHAFSR_EDU
|
1517 CHAFSR_WDU
| CHAFSR_CPU
|
1518 CHAFSR_IVU
| CHAFSR_UE
|
1519 CHAFSR_BERR
| CHAFSR_TO
))
1524 cheetah_log_errors(regs
, &local_snapshot
, afsr
, afar
, recoverable
);
1526 /* "Recoverable" here means we try to yank the page from ever
1527 * being newly used again. This depends upon a few things:
1528 * 1) Must be main memory, and AFAR must be valid.
1529 * 2) If we trapped from user, OK.
1530 * 3) Else, if we trapped from kernel we must find exception
1531 * table entry (ie. we have to have been accessing user
1534 * If AFAR is not in main memory, or we trapped from kernel
1535 * and cannot find an exception table entry, it is unacceptable
1536 * to try and continue.
1538 if (recoverable
&& is_memory
) {
1539 if ((regs
->tstate
& TSTATE_PRIV
) == 0UL) {
1540 /* OK, usermode access. */
1543 unsigned long g2
= regs
->u_regs
[UREG_G2
];
1544 unsigned long fixup
= search_extables_range(regs
->tpc
, &g2
);
1547 /* OK, kernel access to userspace. */
1551 /* BAD, privileged state is corrupted. */
1556 if (pfn_valid(afar
>> PAGE_SHIFT
))
1557 get_page(pfn_to_page(afar
>> PAGE_SHIFT
));
1561 /* Only perform fixup if we still have a
1562 * recoverable condition.
1566 regs
->tnpc
= regs
->tpc
+ 4;
1567 regs
->u_regs
[UREG_G2
] = g2
;
1576 panic("Irrecoverable deferred error trap.\n");
1579 /* Handle a D/I cache parity error trap. TYPE is encoded as:
1581 * Bit0: 0=dcache,1=icache
1582 * Bit1: 0=recoverable,1=unrecoverable
1584 * The hardware has disabled both the I-cache and D-cache in
1585 * the %dcr register.
1587 void cheetah_plus_parity_error(int type
, struct pt_regs
*regs
)
1590 __cheetah_flush_icache();
1592 cheetah_plus_zap_dcache_parity();
1593 cheetah_flush_dcache();
1595 /* Re-enable I-cache/D-cache */
1596 __asm__
__volatile__("ldxa [%%g0] %0, %%g1\n\t"
1597 "or %%g1, %1, %%g1\n\t"
1598 "stxa %%g1, [%%g0] %0\n\t"
1601 : "i" (ASI_DCU_CONTROL_REG
),
1602 "i" (DCU_DC
| DCU_IC
)
1606 printk(KERN_EMERG
"CPU[%d]: Cheetah+ %c-cache parity error at TPC[%016lx]\n",
1608 (type
& 0x1) ? 'I' : 'D',
1610 panic("Irrecoverable Cheetah+ parity error.");
1613 printk(KERN_WARNING
"CPU[%d]: Cheetah+ %c-cache parity error at TPC[%016lx]\n",
1615 (type
& 0x1) ? 'I' : 'D',
1619 void do_fpe_common(struct pt_regs
*regs
)
1621 if (regs
->tstate
& TSTATE_PRIV
) {
1622 regs
->tpc
= regs
->tnpc
;
1625 unsigned long fsr
= current_thread_info()->xfsr
[0];
1628 if (test_thread_flag(TIF_32BIT
)) {
1629 regs
->tpc
&= 0xffffffff;
1630 regs
->tnpc
&= 0xffffffff;
1632 info
.si_signo
= SIGFPE
;
1634 info
.si_addr
= (void __user
*)regs
->tpc
;
1636 info
.si_code
= __SI_FAULT
;
1637 if ((fsr
& 0x1c000) == (1 << 14)) {
1639 info
.si_code
= FPE_FLTINV
;
1640 else if (fsr
& 0x08)
1641 info
.si_code
= FPE_FLTOVF
;
1642 else if (fsr
& 0x04)
1643 info
.si_code
= FPE_FLTUND
;
1644 else if (fsr
& 0x02)
1645 info
.si_code
= FPE_FLTDIV
;
1646 else if (fsr
& 0x01)
1647 info
.si_code
= FPE_FLTRES
;
1649 force_sig_info(SIGFPE
, &info
, current
);
1653 void do_fpieee(struct pt_regs
*regs
)
1655 if (notify_die(DIE_TRAP
, "fpu exception ieee", regs
,
1656 0, 0x24, SIGFPE
) == NOTIFY_STOP
)
1659 do_fpe_common(regs
);
1662 extern int do_mathemu(struct pt_regs
*, struct fpustate
*);
1664 void do_fpother(struct pt_regs
*regs
)
1666 struct fpustate
*f
= FPUSTATE
;
1669 if (notify_die(DIE_TRAP
, "fpu exception other", regs
,
1670 0, 0x25, SIGFPE
) == NOTIFY_STOP
)
1673 switch ((current_thread_info()->xfsr
[0] & 0x1c000)) {
1674 case (2 << 14): /* unfinished_FPop */
1675 case (3 << 14): /* unimplemented_FPop */
1676 ret
= do_mathemu(regs
, f
);
1681 do_fpe_common(regs
);
1684 void do_tof(struct pt_regs
*regs
)
1688 if (notify_die(DIE_TRAP
, "tagged arithmetic overflow", regs
,
1689 0, 0x26, SIGEMT
) == NOTIFY_STOP
)
1692 if (regs
->tstate
& TSTATE_PRIV
)
1693 die_if_kernel("Penguin overflow trap from kernel mode", regs
);
1694 if (test_thread_flag(TIF_32BIT
)) {
1695 regs
->tpc
&= 0xffffffff;
1696 regs
->tnpc
&= 0xffffffff;
1698 info
.si_signo
= SIGEMT
;
1700 info
.si_code
= EMT_TAGOVF
;
1701 info
.si_addr
= (void __user
*)regs
->tpc
;
1703 force_sig_info(SIGEMT
, &info
, current
);
1706 void do_div0(struct pt_regs
*regs
)
1710 if (notify_die(DIE_TRAP
, "integer division by zero", regs
,
1711 0, 0x28, SIGFPE
) == NOTIFY_STOP
)
1714 if (regs
->tstate
& TSTATE_PRIV
)
1715 die_if_kernel("TL0: Kernel divide by zero.", regs
);
1716 if (test_thread_flag(TIF_32BIT
)) {
1717 regs
->tpc
&= 0xffffffff;
1718 regs
->tnpc
&= 0xffffffff;
1720 info
.si_signo
= SIGFPE
;
1722 info
.si_code
= FPE_INTDIV
;
1723 info
.si_addr
= (void __user
*)regs
->tpc
;
1725 force_sig_info(SIGFPE
, &info
, current
);
1728 void instruction_dump (unsigned int *pc
)
1732 if ((((unsigned long) pc
) & 3))
1735 printk("Instruction DUMP:");
1736 for (i
= -3; i
< 6; i
++)
1737 printk("%c%08x%c",i
?' ':'<',pc
[i
],i
?' ':'>');
1741 static void user_instruction_dump (unsigned int __user
*pc
)
1744 unsigned int buf
[9];
1746 if ((((unsigned long) pc
) & 3))
1749 if (copy_from_user(buf
, pc
- 3, sizeof(buf
)))
1752 printk("Instruction DUMP:");
1753 for (i
= 0; i
< 9; i
++)
1754 printk("%c%08x%c",i
==3?' ':'<',buf
[i
],i
==3?' ':'>');
1758 void show_stack(struct task_struct
*tsk
, unsigned long *_ksp
)
1760 unsigned long pc
, fp
, thread_base
, ksp
;
1761 struct thread_info
*tp
= tsk
->thread_info
;
1762 struct reg_window
*rw
;
1765 ksp
= (unsigned long) _ksp
;
1767 if (tp
== current_thread_info())
1770 fp
= ksp
+ STACK_BIAS
;
1771 thread_base
= (unsigned long) tp
;
1773 printk("Call Trace:");
1774 #ifdef CONFIG_KALLSYMS
1778 /* Bogus frame pointer? */
1779 if (fp
< (thread_base
+ sizeof(struct thread_info
)) ||
1780 fp
>= (thread_base
+ THREAD_SIZE
))
1782 rw
= (struct reg_window
*)fp
;
1784 printk(" [%016lx] ", pc
);
1785 print_symbol("%s\n", pc
);
1786 fp
= rw
->ins
[6] + STACK_BIAS
;
1787 } while (++count
< 16);
1788 #ifndef CONFIG_KALLSYMS
1793 void dump_stack(void)
1797 __asm__
__volatile__("mov %%fp, %0"
1799 show_stack(current
, ksp
);
1802 EXPORT_SYMBOL(dump_stack
);
1804 static inline int is_kernel_stack(struct task_struct
*task
,
1805 struct reg_window
*rw
)
1807 unsigned long rw_addr
= (unsigned long) rw
;
1808 unsigned long thread_base
, thread_end
;
1810 if (rw_addr
< PAGE_OFFSET
) {
1811 if (task
!= &init_task
)
1815 thread_base
= (unsigned long) task
->thread_info
;
1816 thread_end
= thread_base
+ sizeof(union thread_union
);
1817 if (rw_addr
>= thread_base
&&
1818 rw_addr
< thread_end
&&
1825 static inline struct reg_window
*kernel_stack_up(struct reg_window
*rw
)
1827 unsigned long fp
= rw
->ins
[6];
1832 return (struct reg_window
*) (fp
+ STACK_BIAS
);
1835 void die_if_kernel(char *str
, struct pt_regs
*regs
)
1837 static int die_counter
;
1838 extern void __show_regs(struct pt_regs
* regs
);
1839 extern void smp_report_regs(void);
1842 /* Amuse the user. */
1845 " \"@'/ .. \\`@\"\n"
1849 printk("%s(%d): %s [#%d]\n", current
->comm
, current
->pid
, str
, ++die_counter
);
1850 notify_die(DIE_OOPS
, str
, regs
, 0, 255, SIGSEGV
);
1851 __asm__
__volatile__("flushw");
1853 if (regs
->tstate
& TSTATE_PRIV
) {
1854 struct reg_window
*rw
= (struct reg_window
*)
1855 (regs
->u_regs
[UREG_FP
] + STACK_BIAS
);
1857 /* Stop the back trace when we hit userland or we
1858 * find some badly aligned kernel stack.
1862 is_kernel_stack(current
, rw
)) {
1863 printk("Caller[%016lx]", rw
->ins
[7]);
1864 print_symbol(": %s", rw
->ins
[7]);
1867 rw
= kernel_stack_up(rw
);
1869 instruction_dump ((unsigned int *) regs
->tpc
);
1871 if (test_thread_flag(TIF_32BIT
)) {
1872 regs
->tpc
&= 0xffffffff;
1873 regs
->tnpc
&= 0xffffffff;
1875 user_instruction_dump ((unsigned int __user
*) regs
->tpc
);
1881 if (regs
->tstate
& TSTATE_PRIV
)
1886 extern int handle_popc(u32 insn
, struct pt_regs
*regs
);
1887 extern int handle_ldf_stq(u32 insn
, struct pt_regs
*regs
);
1889 void do_illegal_instruction(struct pt_regs
*regs
)
1891 unsigned long pc
= regs
->tpc
;
1892 unsigned long tstate
= regs
->tstate
;
1896 if (notify_die(DIE_TRAP
, "illegal instruction", regs
,
1897 0, 0x10, SIGILL
) == NOTIFY_STOP
)
1900 if (tstate
& TSTATE_PRIV
)
1901 die_if_kernel("Kernel illegal instruction", regs
);
1902 if (test_thread_flag(TIF_32BIT
))
1904 if (get_user(insn
, (u32 __user
*) pc
) != -EFAULT
) {
1905 if ((insn
& 0xc1ffc000) == 0x81700000) /* POPC */ {
1906 if (handle_popc(insn
, regs
))
1908 } else if ((insn
& 0xc1580000) == 0xc1100000) /* LDQ/STQ */ {
1909 if (handle_ldf_stq(insn
, regs
))
1913 info
.si_signo
= SIGILL
;
1915 info
.si_code
= ILL_ILLOPC
;
1916 info
.si_addr
= (void __user
*)pc
;
1918 force_sig_info(SIGILL
, &info
, current
);
1921 void mem_address_unaligned(struct pt_regs
*regs
, unsigned long sfar
, unsigned long sfsr
)
1925 if (notify_die(DIE_TRAP
, "memory address unaligned", regs
,
1926 0, 0x34, SIGSEGV
) == NOTIFY_STOP
)
1929 if (regs
->tstate
& TSTATE_PRIV
) {
1930 extern void kernel_unaligned_trap(struct pt_regs
*regs
,
1933 unsigned long sfsr
);
1935 kernel_unaligned_trap(regs
, *((unsigned int *)regs
->tpc
),
1939 info
.si_signo
= SIGBUS
;
1941 info
.si_code
= BUS_ADRALN
;
1942 info
.si_addr
= (void __user
*)sfar
;
1944 force_sig_info(SIGBUS
, &info
, current
);
1947 void do_privop(struct pt_regs
*regs
)
1951 if (notify_die(DIE_TRAP
, "privileged operation", regs
,
1952 0, 0x11, SIGILL
) == NOTIFY_STOP
)
1955 if (test_thread_flag(TIF_32BIT
)) {
1956 regs
->tpc
&= 0xffffffff;
1957 regs
->tnpc
&= 0xffffffff;
1959 info
.si_signo
= SIGILL
;
1961 info
.si_code
= ILL_PRVOPC
;
1962 info
.si_addr
= (void __user
*)regs
->tpc
;
1964 force_sig_info(SIGILL
, &info
, current
);
1967 void do_privact(struct pt_regs
*regs
)
1972 /* Trap level 1 stuff or other traps we should never see... */
1973 void do_cee(struct pt_regs
*regs
)
1975 die_if_kernel("TL0: Cache Error Exception", regs
);
1978 void do_cee_tl1(struct pt_regs
*regs
)
1980 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
1981 die_if_kernel("TL1: Cache Error Exception", regs
);
1984 void do_dae_tl1(struct pt_regs
*regs
)
1986 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
1987 die_if_kernel("TL1: Data Access Exception", regs
);
1990 void do_iae_tl1(struct pt_regs
*regs
)
1992 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
1993 die_if_kernel("TL1: Instruction Access Exception", regs
);
1996 void do_div0_tl1(struct pt_regs
*regs
)
1998 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
1999 die_if_kernel("TL1: DIV0 Exception", regs
);
2002 void do_fpdis_tl1(struct pt_regs
*regs
)
2004 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2005 die_if_kernel("TL1: FPU Disabled", regs
);
2008 void do_fpieee_tl1(struct pt_regs
*regs
)
2010 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2011 die_if_kernel("TL1: FPU IEEE Exception", regs
);
2014 void do_fpother_tl1(struct pt_regs
*regs
)
2016 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2017 die_if_kernel("TL1: FPU Other Exception", regs
);
2020 void do_ill_tl1(struct pt_regs
*regs
)
2022 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2023 die_if_kernel("TL1: Illegal Instruction Exception", regs
);
2026 void do_irq_tl1(struct pt_regs
*regs
)
2028 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2029 die_if_kernel("TL1: IRQ Exception", regs
);
2032 void do_lddfmna_tl1(struct pt_regs
*regs
)
2034 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2035 die_if_kernel("TL1: LDDF Exception", regs
);
2038 void do_stdfmna_tl1(struct pt_regs
*regs
)
2040 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2041 die_if_kernel("TL1: STDF Exception", regs
);
2044 void do_paw(struct pt_regs
*regs
)
2046 die_if_kernel("TL0: Phys Watchpoint Exception", regs
);
2049 void do_paw_tl1(struct pt_regs
*regs
)
2051 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2052 die_if_kernel("TL1: Phys Watchpoint Exception", regs
);
2055 void do_vaw(struct pt_regs
*regs
)
2057 die_if_kernel("TL0: Virt Watchpoint Exception", regs
);
2060 void do_vaw_tl1(struct pt_regs
*regs
)
2062 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2063 die_if_kernel("TL1: Virt Watchpoint Exception", regs
);
2066 void do_tof_tl1(struct pt_regs
*regs
)
2068 dump_tl1_traplog((struct tl1_traplog
*)(regs
+ 1));
2069 die_if_kernel("TL1: Tag Overflow Exception", regs
);
2072 void do_getpsr(struct pt_regs
*regs
)
2074 regs
->u_regs
[UREG_I0
] = tstate_to_psr(regs
->tstate
);
2075 regs
->tpc
= regs
->tnpc
;
2077 if (test_thread_flag(TIF_32BIT
)) {
2078 regs
->tpc
&= 0xffffffff;
2079 regs
->tnpc
&= 0xffffffff;
2083 extern void thread_info_offsets_are_bolixed_dave(void);
2085 /* Only invoked on boot processor. */
2086 void __init
trap_init(void)
2088 /* Compile time sanity check. */
2089 if (TI_TASK
!= offsetof(struct thread_info
, task
) ||
2090 TI_FLAGS
!= offsetof(struct thread_info
, flags
) ||
2091 TI_CPU
!= offsetof(struct thread_info
, cpu
) ||
2092 TI_FPSAVED
!= offsetof(struct thread_info
, fpsaved
) ||
2093 TI_KSP
!= offsetof(struct thread_info
, ksp
) ||
2094 TI_FAULT_ADDR
!= offsetof(struct thread_info
, fault_address
) ||
2095 TI_KREGS
!= offsetof(struct thread_info
, kregs
) ||
2096 TI_UTRAPS
!= offsetof(struct thread_info
, utraps
) ||
2097 TI_EXEC_DOMAIN
!= offsetof(struct thread_info
, exec_domain
) ||
2098 TI_REG_WINDOW
!= offsetof(struct thread_info
, reg_window
) ||
2099 TI_RWIN_SPTRS
!= offsetof(struct thread_info
, rwbuf_stkptrs
) ||
2100 TI_GSR
!= offsetof(struct thread_info
, gsr
) ||
2101 TI_XFSR
!= offsetof(struct thread_info
, xfsr
) ||
2102 TI_USER_CNTD0
!= offsetof(struct thread_info
, user_cntd0
) ||
2103 TI_USER_CNTD1
!= offsetof(struct thread_info
, user_cntd1
) ||
2104 TI_KERN_CNTD0
!= offsetof(struct thread_info
, kernel_cntd0
) ||
2105 TI_KERN_CNTD1
!= offsetof(struct thread_info
, kernel_cntd1
) ||
2106 TI_PCR
!= offsetof(struct thread_info
, pcr_reg
) ||
2107 TI_CEE_STUFF
!= offsetof(struct thread_info
, cee_stuff
) ||
2108 TI_PRE_COUNT
!= offsetof(struct thread_info
, preempt_count
) ||
2109 TI_FPREGS
!= offsetof(struct thread_info
, fpregs
) ||
2110 (TI_FPREGS
& (64 - 1)))
2111 thread_info_offsets_are_bolixed_dave();
2113 /* Attach to the address space of init_task. On SMP we
2114 * do this in smp.c:smp_callin for other cpus.
2116 atomic_inc(&init_mm
.mm_count
);
2117 current
->active_mm
= &init_mm
;