traps.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:51k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: traps.c,v 1.82 2001/11/18 00:12:56 davem Exp $
  2.  * arch/sparc64/kernel/traps.c
  3.  *
  4.  * Copyright (C) 1995,1997 David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1997,1999,2000 Jakub Jelinek (jakub@redhat.com)
  6.  */
  7. /*
  8.  * I like traps on v9, :))))
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/sched.h>  /* for jiffies */
  12. #include <linux/kernel.h>
  13. #include <linux/signal.h>
  14. #include <linux/smp.h>
  15. #include <linux/smp_lock.h>
  16. #include <linux/mm.h>
  17. #include <asm/delay.h>
  18. #include <asm/system.h>
  19. #include <asm/ptrace.h>
  20. #include <asm/oplib.h>
  21. #include <asm/page.h>
  22. #include <asm/pgtable.h>
  23. #include <asm/unistd.h>
  24. #include <asm/uaccess.h>
  25. #include <asm/fpumacro.h>
  26. #include <asm/lsu.h>
  27. #include <asm/dcu.h>
  28. #include <asm/estate.h>
  29. #include <asm/chafsr.h>
  30. #include <asm/psrcompat.h>
  31. #include <asm/processor.h>
  32. #ifdef CONFIG_KMOD
  33. #include <linux/kmod.h>
  34. #endif
  35. /* When an irrecoverable trap occurs at tl > 0, the trap entry
  36.  * code logs the trap state registers at every level in the trap
  37.  * stack.  It is found at (pt_regs + sizeof(pt_regs)) and the layout
  38.  * is as follows:
  39.  */
  40. struct tl1_traplog {
  41. struct {
  42. unsigned long tstate;
  43. unsigned long tpc;
  44. unsigned long tnpc;
  45. unsigned long tt;
  46. } trapstack[4];
  47. unsigned long tl;
  48. };
  49. static void dump_tl1_traplog(struct tl1_traplog *p)
  50. {
  51. int i;
  52. printk("TRAPLOG: Error at trap level 0x%lx, dumping track stack.n",
  53.        p->tl);
  54. for (i = 0; i < 4; i++) {
  55. printk(KERN_CRIT
  56.        "TRAPLOG: Trap level %d TSTATE[%016lx] TPC[%016lx] "
  57.        "TNPC[%016lx] TT[%lx]n",
  58.        i + 1,
  59.        p->trapstack[i].tstate, p->trapstack[i].tpc,
  60.        p->trapstack[i].tnpc, p->trapstack[i].tt);
  61. }
  62. }
  63. void bad_trap (struct pt_regs *regs, long lvl)
  64. {
  65. char buffer[32];
  66. siginfo_t info;
  67. if (lvl < 0x100) {
  68. sprintf(buffer, "Bad hw trap %lx at tl0n", lvl);
  69. die_if_kernel(buffer, regs);
  70. }
  71. lvl -= 0x100;
  72. if (regs->tstate & TSTATE_PRIV) {
  73. sprintf(buffer, "Kernel bad sw trap %lx", lvl);
  74. die_if_kernel (buffer, regs);
  75. }
  76. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  77. regs->tpc &= 0xffffffff;
  78. regs->tnpc &= 0xffffffff;
  79. }
  80. info.si_signo = SIGILL;
  81. info.si_errno = 0;
  82. info.si_code = ILL_ILLTRP;
  83. info.si_addr = (void *)regs->tpc;
  84. info.si_trapno = lvl;
  85. force_sig_info(SIGILL, &info, current);
  86. }
  87. void bad_trap_tl1 (struct pt_regs *regs, long lvl)
  88. {
  89. char buffer[32];
  90. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  91. sprintf (buffer, "Bad trap %lx at tl>0", lvl);
  92. die_if_kernel (buffer, regs);
  93. }
  94. #ifdef CONFIG_DEBUG_BUGVERBOSE
  95. void do_BUG(const char *file, int line)
  96. {
  97. bust_spinlocks(1);
  98. printk("kernel BUG at %s:%d!n", file, line);
  99. }
  100. #endif
  101. void instruction_access_exception(struct pt_regs *regs,
  102.   unsigned long sfsr, unsigned long sfar)
  103. {
  104. siginfo_t info;
  105. if (regs->tstate & TSTATE_PRIV) {
  106. printk("instruction_access_exception: SFSR[%016lx] SFAR[%016lx], going.n",
  107.        sfsr, sfar);
  108. die_if_kernel("Iax", regs);
  109. }
  110. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  111. regs->tpc &= 0xffffffff;
  112. regs->tnpc &= 0xffffffff;
  113. }
  114. info.si_signo = SIGSEGV;
  115. info.si_errno = 0;
  116. info.si_code = SEGV_MAPERR;
  117. info.si_addr = (void *)regs->tpc;
  118. info.si_trapno = 0;
  119. force_sig_info(SIGSEGV, &info, current);
  120. }
  121. void instruction_access_exception_tl1(struct pt_regs *regs,
  122.       unsigned long sfsr, unsigned long sfar)
  123. {
  124. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  125. instruction_access_exception(regs, sfsr, sfar);
  126. }
  127. void data_access_exception (struct pt_regs *regs,
  128.     unsigned long sfsr, unsigned long sfar)
  129. {
  130. siginfo_t info;
  131. if (regs->tstate & TSTATE_PRIV) {
  132. /* Test if this comes from uaccess places. */
  133. unsigned long fixup, g2;
  134. g2 = regs->u_regs[UREG_G2];
  135. if ((fixup = search_exception_table (regs->tpc, &g2))) {
  136. /* Ouch, somebody is trying ugly VM hole tricks on us... */
  137. #ifdef DEBUG_EXCEPTIONS
  138. printk("Exception: PC<%016lx> faddr<UNKNOWN>n", regs->tpc);
  139. printk("EX_TABLE: insn<%016lx> fixup<%016lx> "
  140.        "g2<%016lx>n", regs->tpc, fixup, g2);
  141. #endif
  142. regs->tpc = fixup;
  143. regs->tnpc = regs->tpc + 4;
  144. regs->u_regs[UREG_G2] = g2;
  145. return;
  146. }
  147. /* Shit... */
  148. printk("data_access_exception: SFSR[%016lx] SFAR[%016lx], going.n",
  149.        sfsr, sfar);
  150. die_if_kernel("Dax", regs);
  151. }
  152. info.si_signo = SIGSEGV;
  153. info.si_errno = 0;
  154. info.si_code = SEGV_MAPERR;
  155. info.si_addr = (void *)sfar;
  156. info.si_trapno = 0;
  157. force_sig_info(SIGSEGV, &info, current);
  158. }
  159. #ifdef CONFIG_PCI
  160. /* This is really pathetic... */
  161. extern volatile int pci_poke_in_progress;
  162. extern volatile int pci_poke_cpu;
  163. extern volatile int pci_poke_faulted;
  164. #endif
  165. /* When access exceptions happen, we must do this. */
  166. static void spitfire_clean_and_reenable_l1_caches(void)
  167. {
  168. unsigned long va;
  169. if (tlb_type != spitfire)
  170. BUG();
  171. /* Clean 'em. */
  172. for (va =  0; va < (PAGE_SIZE << 1); va += 32) {
  173. spitfire_put_icache_tag(va, 0x0);
  174. spitfire_put_dcache_tag(va, 0x0);
  175. }
  176. /* Re-enable in LSU. */
  177. __asm__ __volatile__("flush %%g6nt"
  178.      "membar #Syncnt"
  179.      "stxa %0, [%%g0] %1nt"
  180.      "membar #Sync"
  181.      : /* no outputs */
  182.      : "r" (LSU_CONTROL_IC | LSU_CONTROL_DC |
  183.     LSU_CONTROL_IM | LSU_CONTROL_DM),
  184.      "i" (ASI_LSU_CONTROL)
  185.      : "memory");
  186. }
  187. void do_iae(struct pt_regs *regs)
  188. {
  189. siginfo_t info;
  190. spitfire_clean_and_reenable_l1_caches();
  191. info.si_signo = SIGBUS;
  192. info.si_errno = 0;
  193. info.si_code = BUS_OBJERR;
  194. info.si_addr = (void *)0;
  195. info.si_trapno = 0;
  196. force_sig_info(SIGBUS, &info, current);
  197. }
  198. void do_dae(struct pt_regs *regs)
  199. {
  200. #ifdef CONFIG_PCI
  201. if (pci_poke_in_progress && pci_poke_cpu == smp_processor_id()) {
  202. spitfire_clean_and_reenable_l1_caches();
  203. pci_poke_faulted = 1;
  204. /* Why the fuck did they have to change this? */
  205. if (tlb_type == cheetah || tlb_type == cheetah_plus)
  206. regs->tpc += 4;
  207. regs->tnpc = regs->tpc + 4;
  208. return;
  209. }
  210. #endif
  211. do_iae(regs);
  212. }
  213. static char ecc_syndrome_table[] = {
  214. 0x4c, 0x40, 0x41, 0x48, 0x42, 0x48, 0x48, 0x49,
  215. 0x43, 0x48, 0x48, 0x49, 0x48, 0x49, 0x49, 0x4a,
  216. 0x44, 0x48, 0x48, 0x20, 0x48, 0x39, 0x4b, 0x48,
  217. 0x48, 0x25, 0x31, 0x48, 0x28, 0x48, 0x48, 0x2c,
  218. 0x45, 0x48, 0x48, 0x21, 0x48, 0x3d, 0x04, 0x48,
  219. 0x48, 0x4b, 0x35, 0x48, 0x2d, 0x48, 0x48, 0x29,
  220. 0x48, 0x00, 0x01, 0x48, 0x0a, 0x48, 0x48, 0x4b,
  221. 0x0f, 0x48, 0x48, 0x4b, 0x48, 0x49, 0x49, 0x48,
  222. 0x46, 0x48, 0x48, 0x2a, 0x48, 0x3b, 0x27, 0x48,
  223. 0x48, 0x4b, 0x33, 0x48, 0x22, 0x48, 0x48, 0x2e,
  224. 0x48, 0x19, 0x1d, 0x48, 0x1b, 0x4a, 0x48, 0x4b,
  225. 0x1f, 0x48, 0x4a, 0x4b, 0x48, 0x4b, 0x4b, 0x48,
  226. 0x48, 0x4b, 0x24, 0x48, 0x07, 0x48, 0x48, 0x36,
  227. 0x4b, 0x48, 0x48, 0x3e, 0x48, 0x30, 0x38, 0x48,
  228. 0x49, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x16, 0x48,
  229. 0x48, 0x12, 0x4b, 0x48, 0x49, 0x48, 0x48, 0x4b,
  230. 0x47, 0x48, 0x48, 0x2f, 0x48, 0x3f, 0x4b, 0x48,
  231. 0x48, 0x06, 0x37, 0x48, 0x23, 0x48, 0x48, 0x2b,
  232. 0x48, 0x05, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x32,
  233. 0x26, 0x48, 0x48, 0x3a, 0x48, 0x34, 0x3c, 0x48,
  234. 0x48, 0x11, 0x15, 0x48, 0x13, 0x4a, 0x48, 0x4b,
  235. 0x17, 0x48, 0x4a, 0x4b, 0x48, 0x4b, 0x4b, 0x48,
  236. 0x49, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x1e, 0x48,
  237. 0x48, 0x1a, 0x4b, 0x48, 0x49, 0x48, 0x48, 0x4b,
  238. 0x48, 0x08, 0x0d, 0x48, 0x02, 0x48, 0x48, 0x49,
  239. 0x03, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x4b, 0x48,
  240. 0x49, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x10, 0x48,
  241. 0x48, 0x14, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x4b,
  242. 0x49, 0x48, 0x48, 0x49, 0x48, 0x4b, 0x18, 0x48,
  243. 0x48, 0x1c, 0x4b, 0x48, 0x4b, 0x48, 0x48, 0x4b,
  244. 0x4a, 0x0c, 0x09, 0x48, 0x0e, 0x48, 0x48, 0x4b,
  245. 0x0b, 0x48, 0x48, 0x4b, 0x48, 0x4b, 0x4b, 0x4a
  246. };
  247. /* cee_trap in entry.S encodes AFSR/UDBH/UDBL error status
  248.  * in the following format.  The AFAR is left as is, with
  249.  * reserved bits cleared, and is a raw 40-bit physical
  250.  * address.
  251.  */
  252. #define CE_STATUS_UDBH_UE (1UL << (43 + 9))
  253. #define CE_STATUS_UDBH_CE (1UL << (43 + 8))
  254. #define CE_STATUS_UDBH_ESYNDR (0xffUL << 43)
  255. #define CE_STATUS_UDBH_SHIFT 43
  256. #define CE_STATUS_UDBL_UE (1UL << (33 + 9))
  257. #define CE_STATUS_UDBL_CE (1UL << (33 + 8))
  258. #define CE_STATUS_UDBL_ESYNDR (0xffUL << 33)
  259. #define CE_STATUS_UDBL_SHIFT 33
  260. #define CE_STATUS_AFSR_MASK (0x1ffffffffUL)
  261. #define CE_STATUS_AFSR_ME (1UL << 32)
  262. #define CE_STATUS_AFSR_PRIV (1UL << 31)
  263. #define CE_STATUS_AFSR_ISAP (1UL << 30)
  264. #define CE_STATUS_AFSR_ETP (1UL << 29)
  265. #define CE_STATUS_AFSR_IVUE (1UL << 28)
  266. #define CE_STATUS_AFSR_TO (1UL << 27)
  267. #define CE_STATUS_AFSR_BERR (1UL << 26)
  268. #define CE_STATUS_AFSR_LDP (1UL << 25)
  269. #define CE_STATUS_AFSR_CP (1UL << 24)
  270. #define CE_STATUS_AFSR_WP (1UL << 23)
  271. #define CE_STATUS_AFSR_EDP (1UL << 22)
  272. #define CE_STATUS_AFSR_UE (1UL << 21)
  273. #define CE_STATUS_AFSR_CE (1UL << 20)
  274. #define CE_STATUS_AFSR_ETS (0xfUL << 16)
  275. #define CE_STATUS_AFSR_ETS_SHIFT 16
  276. #define CE_STATUS_AFSR_PSYND (0xffffUL << 0)
  277. #define CE_STATUS_AFSR_PSYND_SHIFT 0
  278. /* Layout of Ecache TAG Parity Syndrome of AFSR */
  279. #define AFSR_ETSYNDROME_7_0 0x1UL /* E$-tag bus bits  <7:0> */
  280. #define AFSR_ETSYNDROME_15_8 0x2UL /* E$-tag bus bits <15:8> */
  281. #define AFSR_ETSYNDROME_21_16 0x4UL /* E$-tag bus bits <21:16> */
  282. #define AFSR_ETSYNDROME_24_22 0x8UL /* E$-tag bus bits <24:22> */
  283. static char *syndrome_unknown = "<Unknown>";
  284. asmlinkage void cee_log(unsigned long ce_status,
  285. unsigned long afar,
  286. struct pt_regs *regs)
  287. {
  288. char memmod_str[64];
  289. char *p;
  290. unsigned short scode, udb_reg;
  291. printk(KERN_WARNING "CPU[%d]: Correctable ECC Error "
  292.        "AFSR[%lx] AFAR[%016lx] UDBL[%lx] UDBH[%lx]n",
  293.        smp_processor_id(),
  294.        (ce_status & CE_STATUS_AFSR_MASK),
  295.        afar,
  296.        ((ce_status >> CE_STATUS_UDBL_SHIFT) & 0x3ffUL),
  297.        ((ce_status >> CE_STATUS_UDBH_SHIFT) & 0x3ffUL));
  298. udb_reg = ((ce_status >> CE_STATUS_UDBL_SHIFT) & 0x3ffUL);
  299. if (udb_reg & (1 << 8)) {
  300. scode = ecc_syndrome_table[udb_reg & 0xff];
  301. if (prom_getunumber(scode, afar,
  302.     memmod_str, sizeof(memmod_str)) == -1)
  303. p = syndrome_unknown;
  304. else
  305. p = memmod_str;
  306. printk(KERN_WARNING "CPU[%d]: UDBL Syndrome[%x] "
  307.        "Memory Module "%s"n",
  308.        smp_processor_id(), scode, p);
  309. }
  310. udb_reg = ((ce_status >> CE_STATUS_UDBH_SHIFT) & 0x3ffUL);
  311. if (udb_reg & (1 << 8)) {
  312. scode = ecc_syndrome_table[udb_reg & 0xff];
  313. if (prom_getunumber(scode, afar,
  314.     memmod_str, sizeof(memmod_str)) == -1)
  315. p = syndrome_unknown;
  316. else
  317. p = memmod_str;
  318. printk(KERN_WARNING "CPU[%d]: UDBH Syndrome[%x] "
  319.        "Memory Module "%s"n",
  320.        smp_processor_id(), scode, p);
  321. }
  322. }
  323. /* Cheetah error trap handling. */
  324. static unsigned long ecache_flush_physbase;
  325. static unsigned long ecache_flush_linesize;
  326. static unsigned long ecache_flush_size;
  327. /* WARNING: The error trap handlers in assembly know the precise
  328.  *     layout of the following structure.
  329.  *
  330.  * C-level handlers below use this information to log the error
  331.  * and then determine how to recover (if possible).
  332.  */
  333. struct cheetah_err_info {
  334. /*0x00*/u64 afsr;
  335. /*0x08*/u64 afar;
  336. /* D-cache state */
  337. /*0x10*/u64 dcache_data[4]; /* The actual data */
  338. /*0x30*/u64 dcache_index; /* D-cache index */
  339. /*0x38*/u64 dcache_tag; /* D-cache tag/valid */
  340. /*0x40*/u64 dcache_utag; /* D-cache microtag */
  341. /*0x48*/u64 dcache_stag; /* D-cache snooptag */
  342. /* I-cache state */
  343. /*0x50*/u64 icache_data[8]; /* The actual insns + predecode */
  344. /*0x90*/u64 icache_index; /* I-cache index */
  345. /*0x98*/u64 icache_tag; /* I-cache phys tag */
  346. /*0xa0*/u64 icache_utag; /* I-cache microtag */
  347. /*0xa8*/u64 icache_stag; /* I-cache snooptag */
  348. /*0xb0*/u64 icache_upper; /* I-cache upper-tag */
  349. /*0xb8*/u64 icache_lower; /* I-cache lower-tag */
  350. /* E-cache state */
  351. /*0xc0*/u64 ecache_data[4]; /* 32 bytes from staging registers */
  352. /*0xe0*/u64 ecache_index; /* E-cache index */
  353. /*0xe8*/u64 ecache_tag; /* E-cache tag/state */
  354. /*0xf0*/u64 __pad[32 - 30];
  355. };
  356. #define CHAFSR_INVALID ((u64)-1L)
  357. /* This is allocated at boot time based upon the largest hardware
  358.  * cpu ID in the system.  We allocate two entries per cpu, one for
  359.  * TL==0 logging and one for TL >= 1 logging.
  360.  */
  361. struct cheetah_err_info *cheetah_error_log;
  362. static __inline__ struct cheetah_err_info *cheetah_get_error_log(unsigned long afsr)
  363. {
  364. struct cheetah_err_info *p;
  365. int cpu = smp_processor_id();
  366. if (!cheetah_error_log)
  367. return NULL;
  368. p = cheetah_error_log + (cpu * 2);
  369. if ((afsr & CHAFSR_TL1) != 0UL)
  370. p++;
  371. return p;
  372. }
  373. extern unsigned int tl0_icpe[], tl1_icpe[];
  374. extern unsigned int tl0_dcpe[], tl1_dcpe[];
  375. extern unsigned int tl0_fecc[], tl1_fecc[];
  376. extern unsigned int tl0_cee[], tl1_cee[];
  377. extern unsigned int tl0_iae[], tl1_iae[];
  378. extern unsigned int tl0_dae[], tl1_dae[];
  379. extern unsigned int cheetah_plus_icpe_trap_vector[], cheetah_plus_icpe_trap_vector_tl1[];
  380. extern unsigned int cheetah_plus_dcpe_trap_vector[], cheetah_plus_dcpe_trap_vector_tl1[];
  381. extern unsigned int cheetah_fecc_trap_vector[], cheetah_fecc_trap_vector_tl1[];
  382. extern unsigned int cheetah_cee_trap_vector[], cheetah_cee_trap_vector_tl1[];
  383. extern unsigned int cheetah_deferred_trap_vector[], cheetah_deferred_trap_vector_tl1[];
  384. void cheetah_ecache_flush_init(void)
  385. {
  386. unsigned long largest_size, smallest_linesize, order;
  387. char type[16];
  388. int node, highest_cpu, i;
  389. /* Scan all cpu device tree nodes, note two values:
  390.  * 1) largest E-cache size
  391.  * 2) smallest E-cache line size
  392.  */
  393. largest_size = 0UL;
  394. smallest_linesize = ~0UL;
  395. node = prom_getchild(prom_root_node);
  396. while ((node = prom_getsibling(node)) != 0) {
  397. prom_getstring(node, "device_type", type, sizeof(type));
  398. if (!strcmp(type, "cpu")) {
  399. unsigned long val;
  400. val = prom_getintdefault(node, "ecache-size",
  401.  (2 * 1024 * 1024));
  402. if (val > largest_size)
  403. largest_size = val;
  404. val = prom_getintdefault(node, "ecache-line-size", 64);
  405. if (val < smallest_linesize)
  406. smallest_linesize = val;
  407. }
  408. }
  409. if (largest_size == 0UL || smallest_linesize == ~0UL) {
  410. prom_printf("cheetah_ecache_flush_init: Cannot probe cpu E-cache "
  411.     "parameters.n");
  412. prom_halt();
  413. }
  414. ecache_flush_size = (2 * largest_size);
  415. ecache_flush_linesize = smallest_linesize;
  416. /* Discover a physically contiguous chunk of physical
  417.  * memory in 'sp_banks' of size ecache_flush_size calculated
  418.  * above.  Store the physical base of this area at
  419.  * ecache_flush_physbase.
  420.  */
  421. for (node = 0; ; node++) {
  422. if (sp_banks[node].num_bytes == 0)
  423. break;
  424. if (sp_banks[node].num_bytes >= ecache_flush_size) {
  425. ecache_flush_physbase = sp_banks[node].base_addr;
  426. break;
  427. }
  428. }
  429. /* Note: Zero would be a valid value of ecache_flush_physbase so
  430.  * don't use that as the success test. :-)
  431.  */
  432. if (sp_banks[node].num_bytes == 0) {
  433. prom_printf("cheetah_ecache_flush_init: Cannot find %d byte "
  434.     "contiguous physical memory.n", ecache_flush_size);
  435. prom_halt();
  436. }
  437. /* Now allocate error trap reporting scoreboard. */
  438. highest_cpu = 0;
  439. #ifdef CONFIG_SMP
  440. for (i = 0; i < NR_CPUS; i++) {
  441. if ((1UL << i) & cpu_present_map)
  442. highest_cpu = i;
  443. }
  444. #endif
  445. highest_cpu++;
  446. node = highest_cpu * (2 * sizeof(struct cheetah_err_info));
  447. for (order = 0; order < MAX_ORDER; order++) {
  448. if ((PAGE_SIZE << order) >= node)
  449. break;
  450. }
  451. cheetah_error_log = (struct cheetah_err_info *)
  452. __get_free_pages(GFP_KERNEL, order);
  453. if (!cheetah_error_log) {
  454. prom_printf("cheetah_ecache_flush_init: Failed to allocate "
  455.     "error logging scoreboard (%d bytes).n", node);
  456. prom_halt();
  457. }
  458. memset(cheetah_error_log, 0, PAGE_SIZE << order);
  459. /* Mark all AFSRs as invalid so that the trap handler will
  460.  * log new new information there.
  461.  */
  462. for (i = 0; i < 2 * highest_cpu; i++)
  463. cheetah_error_log[i].afsr = CHAFSR_INVALID;
  464. /* Now patch trap tables. */
  465. memcpy(tl0_fecc, cheetah_fecc_trap_vector, (8 * 4));
  466. memcpy(tl1_fecc, cheetah_fecc_trap_vector_tl1, (8 * 4));
  467. memcpy(tl0_cee, cheetah_cee_trap_vector, (8 * 4));
  468. memcpy(tl1_cee, cheetah_cee_trap_vector_tl1, (8 * 4));
  469. memcpy(tl0_iae, cheetah_deferred_trap_vector, (8 * 4));
  470. memcpy(tl1_iae, cheetah_deferred_trap_vector_tl1, (8 * 4));
  471. memcpy(tl0_dae, cheetah_deferred_trap_vector, (8 * 4));
  472. memcpy(tl1_dae, cheetah_deferred_trap_vector_tl1, (8 * 4));
  473. if (tlb_type == cheetah_plus) {
  474. memcpy(tl0_dcpe, cheetah_plus_dcpe_trap_vector, (8 * 4));
  475. memcpy(tl1_dcpe, cheetah_plus_dcpe_trap_vector_tl1, (8 * 4));
  476. memcpy(tl0_icpe, cheetah_plus_icpe_trap_vector, (8 * 4));
  477. memcpy(tl1_icpe, cheetah_plus_icpe_trap_vector_tl1, (8 * 4));
  478. }
  479. flushi(PAGE_OFFSET);
  480. }
  481. static void cheetah_flush_ecache(void)
  482. {
  483. unsigned long flush_base = ecache_flush_physbase;
  484. unsigned long flush_linesize = ecache_flush_linesize;
  485. unsigned long flush_size = ecache_flush_size;
  486. __asm__ __volatile__("1: subcc %0, %4, %0nt"
  487.      "   bne,pt %%xcc, 1bnt"
  488.      "    ldxa [%2 + %0] %3, %%g0nt"
  489.      : "=&r" (flush_size)
  490.      : "0" (flush_size), "r" (flush_base),
  491.        "i" (ASI_PHYS_USE_EC), "r" (flush_linesize));
  492. }
  493. static void cheetah_flush_ecache_line(unsigned long physaddr)
  494. {
  495. unsigned long alias;
  496. physaddr &= ~(8UL - 1UL);
  497. physaddr = (ecache_flush_physbase +
  498.     (physaddr & ((ecache_flush_size>>1UL) - 1UL)));
  499. alias = physaddr + (ecache_flush_size >> 1UL);
  500. __asm__ __volatile__("ldxa [%0] %2, %%g0nt"
  501.      "ldxa [%1] %2, %%g0nt"
  502.      "membar #Sync"
  503.      : /* no outputs */
  504.      : "r" (physaddr), "r" (alias),
  505.        "i" (ASI_PHYS_USE_EC));
  506. }
  507. /* Unfortunately, the diagnostic access to the I-cache tags we need to
  508.  * use to clear the thing interferes with I-cache coherency transactions.
  509.  *
  510.  * So we must only flush the I-cache when it is disabled.
  511.  */
  512. static void __cheetah_flush_icache(void)
  513. {
  514. unsigned long i;
  515. /* Clear the valid bits in all the tags. */
  516. for (i = 0; i < (1 << 15); i += (1 << 5)) {
  517. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  518.      "membar #Sync"
  519.      : /* no outputs */
  520.      : "r" (i | (2 << 3)), "i" (ASI_IC_TAG));
  521. }
  522. }
  523. static void cheetah_flush_icache(void)
  524. {
  525. unsigned long dcu_save;
  526. /* Save current DCU, disable I-cache. */
  527. __asm__ __volatile__("ldxa [%%g0] %1, %0nt"
  528.      "or %0, %2, %%g1nt"
  529.      "stxa %%g1, [%%g0] %1nt"
  530.      "membar #Sync"
  531.      : "=r" (dcu_save)
  532.      : "i" (ASI_DCU_CONTROL_REG), "i" (DCU_IC)
  533.      : "g1");
  534. __cheetah_flush_icache();
  535. /* Restore DCU register */
  536. __asm__ __volatile__("stxa %0, [%%g0] %1nt"
  537.      "membar #Sync"
  538.      : /* no outputs */
  539.      : "r" (dcu_save), "i" (ASI_DCU_CONTROL_REG));
  540. }
  541. static void cheetah_flush_dcache(void)
  542. {
  543. unsigned long i;
  544. for (i = 0; i < (1 << 16); i += (1 << 5)) {
  545. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  546.      "membar #Sync"
  547.      : /* no outputs */
  548.      : "r" (i), "i" (ASI_DCACHE_TAG));
  549. }
  550. }
  551. /* In order to make the even parity correct we must do two things.
  552.  * First, we clear DC_data_parity and set DC_utag to an appropriate value.
  553.  * Next, we clear out all 32-bytes of data for that line.  Data of
  554.  * all-zero + tag parity value of zero == correct parity.
  555.  */
  556. static void cheetah_plus_zap_dcache_parity(void)
  557. {
  558. unsigned long i;
  559. for (i = 0; i < (1 << 16); i += (1 << 5)) {
  560. unsigned long tag = (i >> 14);
  561. unsigned long j;
  562. __asm__ __volatile__("membar #Syncnt"
  563.      "stxa %0, [%1] %2nt"
  564.      "membar #Sync"
  565.      : /* no outputs */
  566.      : "r" (tag), "r" (i),
  567.        "i" (ASI_DCACHE_UTAG));
  568. for (j = i; j < i + (1 << 5); j += (1 << 3))
  569. __asm__ __volatile__("membar #Syncnt"
  570.      "stxa %%g0, [%0] %1nt"
  571.      "membar #Sync"
  572.      : /* no outputs */
  573.      : "r" (j), "i" (ASI_DCACHE_DATA));
  574. }
  575. }
  576. /* Conversion tables used to frob Cheetah AFSR syndrome values into
  577.  * something palatable to the memory controller driver get_unumber
  578.  * routine.
  579.  */
  580. #define MT0 137
  581. #define MT1 138
  582. #define MT2 139
  583. #define NONE 254
  584. #define MTC0 140
  585. #define MTC1 141
  586. #define MTC2 142
  587. #define MTC3 143
  588. #define C0 128
  589. #define C1 129
  590. #define C2 130
  591. #define C3 131
  592. #define C4 132
  593. #define C5 133
  594. #define C6 134
  595. #define C7 135
  596. #define C8 136
  597. #define M2 144
  598. #define M3 145
  599. #define M4 146
  600. #define M 147
  601. static unsigned char cheetah_ecc_syntab[] = {
  602. /*00*/NONE, C0, C1, M2, C2, M2, M3, 47, C3, M2, M2, 53, M2, 41, 29, M,
  603. /*01*/C4, M, M, 50, M2, 38, 25, M2, M2, 33, 24, M2, 11, M, M2, 16,
  604. /*02*/C5, M, M, 46, M2, 37, 19, M2, M, 31, 32, M, 7, M2, M2, 10,
  605. /*03*/M2, 40, 13, M2, 59, M, M2, 66, M, M2, M2, 0, M2, 67, 71, M,
  606. /*04*/C6, M, M, 43, M, 36, 18, M, M2, 49, 15, M, 63, M2, M2, 6,
  607. /*05*/M2, 44, 28, M2, M, M2, M2, 52, 68, M2, M2, 62, M2, M3, M3, M4,
  608. /*06*/M2, 26, 106, M2, 64, M, M2, 2, 120, M, M2, M3, M, M3, M3, M4,
  609. /*07*/116, M2, M2, M3, M2, M3, M, M4, M2, 58, 54, M2, M, M4, M4, M3,
  610. /*08*/C7, M2, M, 42, M, 35, 17, M2, M, 45, 14, M2, 21, M2, M2, 5,
  611. /*09*/M, 27, M, M, 99, M, M, 3, 114, M2, M2, 20, M2, M3, M3, M,
  612. /*0a*/M2, 23, 113, M2, 112, M2, M, 51, 95, M, M2, M3, M2, M3, M3, M2,
  613. /*0b*/103, M, M2, M3, M2, M3, M3, M4, M2, 48, M, M, 73, M2, M, M3,
  614. /*0c*/M2, 22, 110, M2, 109, M2, M, 9, 108, M2, M, M3, M2, M3, M3, M,
  615. /*0d*/102, M2, M, M, M2, M3, M3, M, M2, M3, M3, M2, M, M4, M, M3,
  616. /*0e*/98, M, M2, M3, M2, M, M3, M4, M2, M3, M3, M4, M3, M, M, M,
  617. /*0f*/M2, M3, M3, M, M3, M, M, M, 56, M4, M, M3, M4, M, M, M,
  618. /*10*/C8, M, M2, 39, M, 34, 105, M2, M, 30, 104, M, 101, M, M, 4,
  619. /*11*/M, M, 100, M, 83, M, M2, 12, 87, M, M, 57, M2, M, M3, M,
  620. /*12*/M2, 97, 82, M2, 78, M2, M2, 1, 96, M, M, M, M, M, M3, M2,
  621. /*13*/94, M, M2, M3, M2, M, M3, M, M2, M, 79, M, 69, M, M4, M,
  622. /*14*/M2, 93, 92, M, 91, M, M2, 8, 90, M2, M2, M, M, M, M, M4,
  623. /*15*/89, M, M, M3, M2, M3, M3, M, M, M, M3, M2, M3, M2, M, M3,
  624. /*16*/86, M, M2, M3, M2, M, M3, M, M2, M, M3, M, M3, M, M, M3,
  625. /*17*/M, M, M3, M2, M3, M2, M4, M, 60, M, M2, M3, M4, M, M, M2,
  626. /*18*/M2, 88, 85, M2, 84, M, M2, 55, 81, M2, M2, M3, M2, M3, M3, M4,
  627. /*19*/77, M, M, M, M2, M3, M, M, M2, M3, M3, M4, M3, M2, M, M,
  628. /*1a*/74, M, M2, M3, M, M, M3, M, M, M, M3, M, M3, M, M4, M3,
  629. /*1b*/M2, 70, 107, M4, 65, M2, M2, M, 127, M, M, M, M2, M3, M3, M,
  630. /*1c*/80, M2, M2, 72, M, 119, 118, M, M2, 126, 76, M, 125, M, M4, M3,
  631. /*1d*/M2, 115, 124, M, 75, M, M, M3, 61, M, M4, M, M4, M, M, M,
  632. /*1e*/M, 123, 122, M4, 121, M4, M, M3, 117, M2, M2, M3, M4, M3, M, M,
  633. /*1f*/111, M, M, M, M4, M3, M3, M, M, M, M3, M, M3, M2, M, M
  634. };
  635. static unsigned char cheetah_mtag_syntab[] = {
  636.        NONE, MTC0,
  637.        MTC1, NONE,
  638.        MTC2, NONE,
  639.        NONE, MT0,
  640.        MTC3, NONE,
  641.        NONE, MT1,
  642.        NONE, MT2,
  643.        NONE, NONE
  644. };
  645. /* This table is ordered in priority of errors and matches the
  646.  * AFAR overwrite policy as well.
  647.  */
  648. static struct {
  649. unsigned long mask;
  650. char *name;
  651. } cheetah_error_table[] = {
  652. { CHAFSR_PERR, "System interface protocol error" },
  653. { CHAFSR_IERR, "Internal processor error" },
  654. { CHAFSR_ISAP, "System request parity error on incoming addresss" },
  655. { CHAFSR_UCU, "Uncorrectable E-cache ECC error for ifetch/data" },
  656. { CHAFSR_UCC, "SW Correctable E-cache ECC error for ifetch/data" },
  657. { CHAFSR_UE, "Uncorrectable system bus data ECC error for read" },
  658. { CHAFSR_EDU, "Uncorrectable E-cache ECC error for stmerge/blkld" },
  659. { CHAFSR_EMU, "Uncorrectable system bus MTAG error" },
  660. { CHAFSR_WDU, "Uncorrectable E-cache ECC error for writeback" },
  661. { CHAFSR_CPU, "Uncorrectable ECC error for copyout" },
  662. { CHAFSR_CE, "HW corrected system bus data ECC error for read" },
  663. { CHAFSR_EDC, "HW corrected E-cache ECC error for stmerge/blkld" },
  664. { CHAFSR_EMC, "HW corrected system bus MTAG ECC error" },
  665. { CHAFSR_WDC, "HW corrected E-cache ECC error for writeback" },
  666. { CHAFSR_CPC, "HW corrected ECC error for copyout" },
  667. { CHAFSR_TO, "Unmapped error from system bus" },
  668. { CHAFSR_BERR, "Bus error response from system bus" },
  669. /* These two do not update the AFAR. */
  670. { CHAFSR_IVC, "HW corrected system bus data ECC error for ivec read" },
  671. { CHAFSR_IVU, "Uncorrectable system bus data ECC error for ivec read" },
  672. { 0, NULL }
  673. };
  674. /* Return the highest priority error conditon mentioned. */
  675. static __inline__ unsigned long cheetah_get_hipri(unsigned long afsr)
  676. {
  677. unsigned long tmp = 0;
  678. int i;
  679. for (i = 0; cheetah_error_table[i].mask; i++) {
  680. if ((tmp = (afsr & cheetah_error_table[i].mask)) != 0UL)
  681. return tmp;
  682. }
  683. return tmp;
  684. }
  685. static char *cheetah_get_string(unsigned long bit)
  686. {
  687. int i;
  688. for (i = 0; cheetah_error_table[i].mask; i++) {
  689. if ((bit & cheetah_error_table[i].mask) != 0UL)
  690. return cheetah_error_table[i].name;
  691. }
  692. return "???";
  693. }
  694. extern int chmc_getunumber(int, unsigned long, char *, int);
  695. static void cheetah_log_errors(struct pt_regs *regs, struct cheetah_err_info *info,
  696.        unsigned long afsr, unsigned long afar, int recoverable)
  697. {
  698. unsigned long hipri;
  699. char unum[256];
  700. printk("%s" "ERROR(%d): Cheetah error trap taken afsr[%016lx] afar[%016lx] TL1(%d)n",
  701.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  702.        afsr, afar,
  703.        (afsr & CHAFSR_TL1) ? 1 : 0);
  704. printk("%s" "ERROR(%d): TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]n",
  705.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  706.        regs->tpc, regs->tnpc, regs->tstate);
  707. printk("%s" "ERROR(%d): M_SYND(%lx),  E_SYND(%lx)%s%sn",
  708.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  709.        (afsr & CHAFSR_M_SYNDROME) >> CHAFSR_M_SYNDROME_SHIFT,
  710.        (afsr & CHAFSR_E_SYNDROME) >> CHAFSR_E_SYNDROME_SHIFT,
  711.        (afsr & CHAFSR_ME) ? ", Multiple Errors" : "",
  712.        (afsr & CHAFSR_PRIV) ? ", Privileged" : "");
  713. hipri = cheetah_get_hipri(afsr);
  714. printk("%s" "ERROR(%d): Highest priority error (%016lx) "%s"n",
  715.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  716.        hipri, cheetah_get_string(hipri));
  717. /* Try to get unumber if relevant. */
  718. #define ESYND_ERRORS (CHAFSR_IVC | CHAFSR_IVU | 
  719.  CHAFSR_CPC | CHAFSR_CPU | 
  720.  CHAFSR_UE  | CHAFSR_CE  | 
  721.  CHAFSR_EDC | CHAFSR_EDU  | 
  722.  CHAFSR_UCC | CHAFSR_UCU  | 
  723.  CHAFSR_WDU | CHAFSR_WDC)
  724. #define MSYND_ERRORS (CHAFSR_EMC | CHAFSR_EMU)
  725. if (afsr & ESYND_ERRORS) {
  726. int syndrome;
  727. int ret;
  728. syndrome = (afsr & CHAFSR_E_SYNDROME) >> CHAFSR_E_SYNDROME_SHIFT;
  729. syndrome = cheetah_ecc_syntab[syndrome];
  730. ret = chmc_getunumber(syndrome, afar, unum, sizeof(unum));
  731. if (ret != -1)
  732. printk("%s" "ERROR(%d): AFAR E-syndrome [%s]n",
  733.        (recoverable ? KERN_WARNING : KERN_CRIT),
  734.        smp_processor_id(), unum);
  735. } else if (afsr & MSYND_ERRORS) {
  736. int syndrome;
  737. int ret;
  738. syndrome = (afsr & CHAFSR_M_SYNDROME) >> CHAFSR_M_SYNDROME_SHIFT;
  739. syndrome = cheetah_mtag_syntab[syndrome];
  740. ret = chmc_getunumber(syndrome, afar, unum, sizeof(unum));
  741. if (ret != -1)
  742. printk("%s" "ERROR(%d): AFAR M-syndrome [%s]n",
  743.        (recoverable ? KERN_WARNING : KERN_CRIT),
  744.        smp_processor_id(), unum);
  745. }
  746. /* Now dump the cache snapshots. */
  747. printk("%s" "ERROR(%d): D-cache idx[%x] tag[%016lx] utag[%016lx] stag[%016lx]n",
  748.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  749.        (int) info->dcache_index,
  750.        info->dcache_tag,
  751.        info->dcache_utag,
  752.        info->dcache_stag);
  753. printk("%s" "ERROR(%d): D-cache data0[%016lx] data1[%016lx] data2[%016lx] data3[%016lx]n",
  754.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  755.        info->dcache_data[0],
  756.        info->dcache_data[1],
  757.        info->dcache_data[2],
  758.        info->dcache_data[3]);
  759. printk("%s" "ERROR(%d): I-cache idx[%x] tag[%016lx] utag[%016lx] stag[%016lx] "
  760.        "u[%016lx] l[%016lx]n",
  761.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  762.        (int) info->icache_index,
  763.        info->icache_tag,
  764.        info->icache_utag,
  765.        info->icache_stag,
  766.        info->icache_upper,
  767.        info->icache_lower);
  768. printk("%s" "ERROR(%d): I-cache INSN0[%016lx] INSN1[%016lx] INSN2[%016lx] INSN3[%016lx]n",
  769.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  770.        info->icache_data[0],
  771.        info->icache_data[1],
  772.        info->icache_data[2],
  773.        info->icache_data[3]);
  774. printk("%s" "ERROR(%d): I-cache INSN4[%016lx] INSN5[%016lx] INSN6[%016lx] INSN7[%016lx]n",
  775.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  776.        info->icache_data[4],
  777.        info->icache_data[5],
  778.        info->icache_data[6],
  779.        info->icache_data[7]);
  780. printk("%s" "ERROR(%d): E-cache idx[%x] tag[%016lx]n",
  781.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  782.        (int) info->ecache_index, info->ecache_tag);
  783. printk("%s" "ERROR(%d): E-cache data0[%016lx] data1[%016lx] data2[%016lx] data3[%016lx]n",
  784.        (recoverable ? KERN_WARNING : KERN_CRIT), smp_processor_id(),
  785.        info->ecache_data[0],
  786.        info->ecache_data[1],
  787.        info->ecache_data[2],
  788.        info->ecache_data[3]);
  789. afsr = (afsr & ~hipri) & CHAFSR_ERRORS;
  790. while (afsr != 0UL) {
  791. unsigned long bit = cheetah_get_hipri(afsr);
  792. printk("%s" "ERROR: Multiple-error (%016lx) "%s"n",
  793.        (recoverable ? KERN_WARNING : KERN_CRIT),
  794.        bit, cheetah_get_string(bit));
  795. afsr &= ~bit;
  796. }
  797. if (!recoverable)
  798. printk(KERN_CRIT "ERROR: This condition is not recoverable.n");
  799. }
  800. static int cheetah_recheck_errors(struct cheetah_err_info *logp)
  801. {
  802. unsigned long afsr, afar;
  803. int ret = 0;
  804. __asm__ __volatile__("ldxa [%%g0] %1, %0nt"
  805.      : "=r" (afsr)
  806.      : "i" (ASI_AFSR));
  807. if ((afsr & CHAFSR_ERRORS) != 0) {
  808. if (logp != NULL) {
  809. __asm__ __volatile__("ldxa [%%g0] %1, %0nt"
  810.      : "=r" (afar)
  811.      : "i" (ASI_AFAR));
  812. logp->afsr = afsr;
  813. logp->afar = afar;
  814. }
  815. ret = 1;
  816. }
  817. __asm__ __volatile__("stxa %0, [%%g0] %1nt"
  818.      "membar #Syncnt"
  819.      : : "r" (afsr), "i" (ASI_AFSR));
  820. return ret;
  821. }
  822. void cheetah_fecc_handler(struct pt_regs *regs, unsigned long afsr, unsigned long afar)
  823. {
  824. struct cheetah_err_info local_snapshot, *p;
  825. int recoverable;
  826. /* Flush E-cache */
  827. cheetah_flush_ecache();
  828. p = cheetah_get_error_log(afsr);
  829. if (!p) {
  830. prom_printf("ERROR: Early Fast-ECC error afsr[%016lx] afar[%016lx]n",
  831.     afsr, afar);
  832. prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]n",
  833.     smp_processor_id(), regs->tpc, regs->tnpc, regs->tstate);
  834. prom_halt();
  835. }
  836. /* Grab snapshot of logged error. */
  837. memcpy(&local_snapshot, p, sizeof(local_snapshot));
  838. /* If the current trap snapshot does not match what the
  839.  * trap handler passed along into our args, big trouble.
  840.  * In such a case, mark the local copy as invalid.
  841.  *
  842.  * Else, it matches and we mark the afsr in the non-local
  843.  * copy as invalid so we may log new error traps there.
  844.  */
  845. if (p->afsr != afsr || p->afar != afar)
  846. local_snapshot.afsr = CHAFSR_INVALID;
  847. else
  848. p->afsr = CHAFSR_INVALID;
  849. cheetah_flush_icache();
  850. cheetah_flush_dcache();
  851. /* Re-enable I-cache/D-cache */
  852. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  853.      "or %%g1, %1, %%g1nt"
  854.      "stxa %%g1, [%%g0] %0nt"
  855.      "membar #Sync"
  856.      : /* no outputs */
  857.      : "i" (ASI_DCU_CONTROL_REG),
  858.        "i" (DCU_DC | DCU_IC)
  859.      : "g1");
  860. /* Re-enable error reporting */
  861. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  862.      "or %%g1, %1, %%g1nt"
  863.      "stxa %%g1, [%%g0] %0nt"
  864.      "membar #Sync"
  865.      : /* no outputs */
  866.      : "i" (ASI_ESTATE_ERROR_EN),
  867.        "i" (ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN)
  868.      : "g1");
  869. /* Decide if we can continue after handling this trap and
  870.  * logging the error.
  871.  */
  872. recoverable = 1;
  873. if (afsr & (CHAFSR_PERR | CHAFSR_IERR | CHAFSR_ISAP))
  874. recoverable = 0;
  875. /* Re-check AFSR/AFAR.  What we are looking for here is whether a new
  876.  * error was logged while we had error reporting traps disabled.
  877.  */
  878. if (cheetah_recheck_errors(&local_snapshot)) {
  879. unsigned long new_afsr = local_snapshot.afsr;
  880. /* If we got a new asynchronous error, die... */
  881. if (new_afsr & (CHAFSR_EMU | CHAFSR_EDU |
  882. CHAFSR_WDU | CHAFSR_CPU |
  883. CHAFSR_IVU | CHAFSR_UE |
  884. CHAFSR_BERR | CHAFSR_TO))
  885. recoverable = 0;
  886. }
  887. /* Log errors. */
  888. cheetah_log_errors(regs, &local_snapshot, afsr, afar, recoverable);
  889. if (!recoverable)
  890. panic("Irrecoverable Fast-ECC error trap.n");
  891. /* Flush E-cache to kick the error trap handlers out. */
  892. cheetah_flush_ecache();
  893. }
  894. /* Try to fix a correctable error by pushing the line out from
  895.  * the E-cache.  Recheck error reporting registers to see if the
  896.  * problem is intermittent.
  897.  */
  898. static int cheetah_fix_ce(unsigned long physaddr)
  899. {
  900. unsigned long orig_estate;
  901. unsigned long alias1, alias2;
  902. int ret;
  903. /* Make sure correctable error traps are disabled. */
  904. __asm__ __volatile__("ldxa [%%g0] %2, %0nt"
  905.      "andn %0, %1, %%g1nt"
  906.      "stxa %%g1, [%%g0] %2nt"
  907.      "membar #Sync"
  908.      : "=&r" (orig_estate)
  909.      : "i" (ESTATE_ERROR_CEEN),
  910.        "i" (ASI_ESTATE_ERROR_EN)
  911.      : "g1");
  912. /* We calculate alias addresses that will force the
  913.  * cache line in question out of the E-cache.  Then
  914.  * we bring it back in with an atomic instruction so
  915.  * that we get it in some modified/exclusive state,
  916.  * then we displace it again to try and get proper ECC
  917.  * pushed back into the system.
  918.  */
  919. physaddr &= ~(8UL - 1UL);
  920. alias1 = (ecache_flush_physbase +
  921.   (physaddr & ((ecache_flush_size >> 1) - 1)));
  922. alias2 = alias1 + (ecache_flush_size >> 1);
  923. __asm__ __volatile__("ldxa [%0] %3, %%g0nt"
  924.      "ldxa [%1] %3, %%g0nt"
  925.      "casxa [%2] %3, %%g0, %%g0nt"
  926.      "membar #StoreLoad | #StoreStorent"
  927.      "ldxa [%0] %3, %%g0nt"
  928.      "ldxa [%1] %3, %%g0nt"
  929.      "membar #Sync"
  930.      : /* no outputs */
  931.      : "r" (alias1), "r" (alias2),
  932.        "r" (physaddr), "i" (ASI_PHYS_USE_EC));
  933. /* Did that trigger another error? */
  934. if (cheetah_recheck_errors(NULL)) {
  935. /* Try one more time. */
  936. __asm__ __volatile__("ldxa [%0] %1, %%g0nt"
  937.      "membar #Sync"
  938.      : : "r" (physaddr), "i" (ASI_PHYS_USE_EC));
  939. if (cheetah_recheck_errors(NULL))
  940. ret = 2;
  941. else
  942. ret = 1;
  943. } else {
  944. /* No new error, intermittent problem. */
  945. ret = 0;
  946. }
  947. /* Restore error enables. */
  948. __asm__ __volatile__("stxa %0, [%%g0] %1nt"
  949.      "membar #Sync"
  950.      : : "r" (orig_estate), "i" (ASI_ESTATE_ERROR_EN));
  951. return ret;
  952. }
  953. /* Return non-zero if PADDR is a valid physical memory address. */
  954. static int cheetah_check_main_memory(unsigned long paddr)
  955. {
  956. int i;
  957. for (i = 0; ; i++) {
  958. if (sp_banks[i].num_bytes == 0)
  959. break;
  960. if (paddr >= sp_banks[i].base_addr &&
  961.     paddr < (sp_banks[i].base_addr + sp_banks[i].num_bytes))
  962. return 1;
  963. }
  964. return 0;
  965. }
  966. void cheetah_cee_handler(struct pt_regs *regs, unsigned long afsr, unsigned long afar)
  967. {
  968. struct cheetah_err_info local_snapshot, *p;
  969. int recoverable, is_memory;
  970. p = cheetah_get_error_log(afsr);
  971. if (!p) {
  972. prom_printf("ERROR: Early CEE error afsr[%016lx] afar[%016lx]n",
  973.     afsr, afar);
  974. prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]n",
  975.     smp_processor_id(), regs->tpc, regs->tnpc, regs->tstate);
  976. prom_halt();
  977. }
  978. /* Grab snapshot of logged error. */
  979. memcpy(&local_snapshot, p, sizeof(local_snapshot));
  980. /* If the current trap snapshot does not match what the
  981.  * trap handler passed along into our args, big trouble.
  982.  * In such a case, mark the local copy as invalid.
  983.  *
  984.  * Else, it matches and we mark the afsr in the non-local
  985.  * copy as invalid so we may log new error traps there.
  986.  */
  987. if (p->afsr != afsr || p->afar != afar)
  988. local_snapshot.afsr = CHAFSR_INVALID;
  989. else
  990. p->afsr = CHAFSR_INVALID;
  991. is_memory = cheetah_check_main_memory(afar);
  992. if (is_memory && (afsr & CHAFSR_CE) != 0UL) {
  993. /* XXX Might want to log the results of this operation
  994.  * XXX somewhere... -DaveM
  995.  */
  996. cheetah_fix_ce(afar);
  997. }
  998. {
  999. int flush_all, flush_line;
  1000. flush_all = flush_line = 0;
  1001. if ((afsr & CHAFSR_EDC) != 0UL) {
  1002. if ((afsr & CHAFSR_ERRORS) == CHAFSR_EDC)
  1003. flush_line = 1;
  1004. else
  1005. flush_all = 1;
  1006. } else if ((afsr & CHAFSR_CPC) != 0UL) {
  1007. if ((afsr & CHAFSR_ERRORS) == CHAFSR_CPC)
  1008. flush_line = 1;
  1009. else
  1010. flush_all = 1;
  1011. }
  1012. /* Trap handler only disabled I-cache, flush it. */
  1013. cheetah_flush_icache();
  1014. /* Re-enable I-cache */
  1015. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1016.      "or %%g1, %1, %%g1nt"
  1017.      "stxa %%g1, [%%g0] %0nt"
  1018.      "membar #Sync"
  1019.      : /* no outputs */
  1020.      : "i" (ASI_DCU_CONTROL_REG),
  1021.      "i" (DCU_IC)
  1022.      : "g1");
  1023. if (flush_all)
  1024. cheetah_flush_ecache();
  1025. else if (flush_line)
  1026. cheetah_flush_ecache_line(afar);
  1027. }
  1028. /* Re-enable error reporting */
  1029. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1030.      "or %%g1, %1, %%g1nt"
  1031.      "stxa %%g1, [%%g0] %0nt"
  1032.      "membar #Sync"
  1033.      : /* no outputs */
  1034.      : "i" (ASI_ESTATE_ERROR_EN),
  1035.        "i" (ESTATE_ERROR_CEEN)
  1036.      : "g1");
  1037. /* Decide if we can continue after handling this trap and
  1038.  * logging the error.
  1039.  */
  1040. recoverable = 1;
  1041. if (afsr & (CHAFSR_PERR | CHAFSR_IERR | CHAFSR_ISAP))
  1042. recoverable = 0;
  1043. /* Re-check AFSR/AFAR */
  1044. (void) cheetah_recheck_errors(&local_snapshot);
  1045. /* Log errors. */
  1046. cheetah_log_errors(regs, &local_snapshot, afsr, afar, recoverable);
  1047. if (!recoverable)
  1048. panic("Irrecoverable Correctable-ECC error trap.n");
  1049. }
  1050. void cheetah_deferred_handler(struct pt_regs *regs, unsigned long afsr, unsigned long afar)
  1051. {
  1052. struct cheetah_err_info local_snapshot, *p;
  1053. int recoverable, is_memory;
  1054. #ifdef CONFIG_PCI
  1055. /* Check for the special PCI poke sequence. */
  1056. if (pci_poke_in_progress && pci_poke_cpu == smp_processor_id()) {
  1057. cheetah_flush_icache();
  1058. cheetah_flush_dcache();
  1059. /* Re-enable I-cache/D-cache */
  1060. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1061.      "or %%g1, %1, %%g1nt"
  1062.      "stxa %%g1, [%%g0] %0nt"
  1063.      "membar #Sync"
  1064.      : /* no outputs */
  1065.      : "i" (ASI_DCU_CONTROL_REG),
  1066.        "i" (DCU_DC | DCU_IC)
  1067.      : "g1");
  1068. /* Re-enable error reporting */
  1069. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1070.      "or %%g1, %1, %%g1nt"
  1071.      "stxa %%g1, [%%g0] %0nt"
  1072.      "membar #Sync"
  1073.      : /* no outputs */
  1074.      : "i" (ASI_ESTATE_ERROR_EN),
  1075.        "i" (ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN)
  1076.      : "g1");
  1077. (void) cheetah_recheck_errors(NULL);
  1078. pci_poke_faulted = 1;
  1079. regs->tpc += 4;
  1080. regs->tnpc = regs->tpc + 4;
  1081. return;
  1082. }
  1083. #endif
  1084. p = cheetah_get_error_log(afsr);
  1085. if (!p) {
  1086. prom_printf("ERROR: Early deferred error afsr[%016lx] afar[%016lx]n",
  1087.     afsr, afar);
  1088. prom_printf("ERROR: CPU(%d) TPC[%016lx] TNPC[%016lx] TSTATE[%016lx]n",
  1089.     smp_processor_id(), regs->tpc, regs->tnpc, regs->tstate);
  1090. prom_halt();
  1091. }
  1092. /* Grab snapshot of logged error. */
  1093. memcpy(&local_snapshot, p, sizeof(local_snapshot));
  1094. /* If the current trap snapshot does not match what the
  1095.  * trap handler passed along into our args, big trouble.
  1096.  * In such a case, mark the local copy as invalid.
  1097.  *
  1098.  * Else, it matches and we mark the afsr in the non-local
  1099.  * copy as invalid so we may log new error traps there.
  1100.  */
  1101. if (p->afsr != afsr || p->afar != afar)
  1102. local_snapshot.afsr = CHAFSR_INVALID;
  1103. else
  1104. p->afsr = CHAFSR_INVALID;
  1105. is_memory = cheetah_check_main_memory(afar);
  1106. {
  1107. int flush_all, flush_line;
  1108. flush_all = flush_line = 0;
  1109. if ((afsr & CHAFSR_EDU) != 0UL) {
  1110. if ((afsr & CHAFSR_ERRORS) == CHAFSR_EDU)
  1111. flush_line = 1;
  1112. else
  1113. flush_all = 1;
  1114. } else if ((afsr & CHAFSR_BERR) != 0UL) {
  1115. if ((afsr & CHAFSR_ERRORS) == CHAFSR_BERR)
  1116. flush_line = 1;
  1117. else
  1118. flush_all = 1;
  1119. }
  1120. cheetah_flush_icache();
  1121. cheetah_flush_dcache();
  1122. /* Re-enable I/D caches */
  1123. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1124.      "or %%g1, %1, %%g1nt"
  1125.      "stxa %%g1, [%%g0] %0nt"
  1126.      "membar #Sync"
  1127.      : /* no outputs */
  1128.      : "i" (ASI_DCU_CONTROL_REG),
  1129.      "i" (DCU_IC | DCU_DC)
  1130.      : "g1");
  1131. if (flush_all)
  1132. cheetah_flush_ecache();
  1133. else if (flush_line)
  1134. cheetah_flush_ecache_line(afar);
  1135. }
  1136. /* Re-enable error reporting */
  1137. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1138.      "or %%g1, %1, %%g1nt"
  1139.      "stxa %%g1, [%%g0] %0nt"
  1140.      "membar #Sync"
  1141.      : /* no outputs */
  1142.      : "i" (ASI_ESTATE_ERROR_EN),
  1143.      "i" (ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN)
  1144.      : "g1");
  1145. /* Decide if we can continue after handling this trap and
  1146.  * logging the error.
  1147.  */
  1148. recoverable = 1;
  1149. if (afsr & (CHAFSR_PERR | CHAFSR_IERR | CHAFSR_ISAP))
  1150. recoverable = 0;
  1151. /* Re-check AFSR/AFAR.  What we are looking for here is whether a new
  1152.  * error was logged while we had error reporting traps disabled.
  1153.  */
  1154. if (cheetah_recheck_errors(&local_snapshot)) {
  1155. unsigned long new_afsr = local_snapshot.afsr;
  1156. /* If we got a new asynchronous error, die... */
  1157. if (new_afsr & (CHAFSR_EMU | CHAFSR_EDU |
  1158. CHAFSR_WDU | CHAFSR_CPU |
  1159. CHAFSR_IVU | CHAFSR_UE |
  1160. CHAFSR_BERR | CHAFSR_TO))
  1161. recoverable = 0;
  1162. }
  1163. /* Log errors. */
  1164. cheetah_log_errors(regs, &local_snapshot, afsr, afar, recoverable);
  1165. /* "Recoverable" here means we try to yank the page from ever
  1166.  * being newly used again.  This depends upon a few things:
  1167.  * 1) Must be main memory, and AFAR must be valid.
  1168.  * 2) If we trapped from use, OK.
  1169.  * 3) Else, if we trapped from kernel we must find exception
  1170.  *    table entry (ie. we have to have been accessing user
  1171.  *    space).
  1172.  *
  1173.  * If AFAR is not in main memory, or we trapped from kernel
  1174.  * and cannot find an exception table entry, it is unacceptable
  1175.  * to try and continue.
  1176.  */
  1177. if (recoverable && is_memory) {
  1178. if ((regs->tstate & TSTATE_PRIV) == 0UL) {
  1179. /* OK, usermode access. */
  1180. recoverable = 1;
  1181. } else {
  1182. unsigned long g2 = regs->u_regs[UREG_G2];
  1183. unsigned long fixup = search_exception_table(regs->tpc, &g2);
  1184. if (fixup != 0UL) {
  1185. /* OK, kernel access to userspace. */
  1186. recoverable = 1;
  1187. } else {
  1188. /* BAD, privileged state is corrupted. */
  1189. recoverable = 0;
  1190. }
  1191. if (recoverable) {
  1192. struct page *page = virt_to_page(__va(afar));
  1193. if (VALID_PAGE(page))
  1194. get_page(page);
  1195. else
  1196. recoverable = 0;
  1197. /* Only perform fixup if we still have a
  1198.  * recoverable condition.
  1199.  */
  1200. if (fixup != 0UL && recoverable) {
  1201. regs->tpc = fixup;
  1202. regs->tnpc = regs->tpc + 4;
  1203. regs->u_regs[UREG_G2] = g2;
  1204. }
  1205. }
  1206. }
  1207. } else {
  1208. recoverable = 0;
  1209. }
  1210. if (!recoverable)
  1211. panic("Irrecoverable deferred error trap.n");
  1212. }
  1213. /* Handle a D/I cache parity error trap.  TYPE is encoded as:
  1214.  *
  1215.  * Bit0: 0=dcache,1=icache
  1216.  * Bit1: 0=recoverable,1=unrecoverable
  1217.  *
  1218.  * The hardware has disabled both the I-cache and D-cache in
  1219.  * the %dcr register.  
  1220.  */
  1221. void cheetah_plus_parity_error(int type, struct pt_regs *regs)
  1222. {
  1223. if (type & 0x1)
  1224. __cheetah_flush_icache();
  1225. else
  1226. cheetah_plus_zap_dcache_parity();
  1227. cheetah_flush_dcache();
  1228. /* Re-enable I-cache/D-cache */
  1229. __asm__ __volatile__("ldxa [%%g0] %0, %%g1nt"
  1230.      "or %%g1, %1, %%g1nt"
  1231.      "stxa %%g1, [%%g0] %0nt"
  1232.      "membar #Sync"
  1233.      : /* no outputs */
  1234.      : "i" (ASI_DCU_CONTROL_REG),
  1235.        "i" (DCU_DC | DCU_IC)
  1236.      : "g1");
  1237. if (type & 0x2) {
  1238. printk(KERN_EMERG "CPU[%d]: Cheetah+ %c-cache parity error at TPC[%016lx]n",
  1239.        smp_processor_id(),
  1240.        (type & 0x1) ? 'I' : 'D',
  1241.        regs->tpc);
  1242. panic("Irrecoverable Cheetah+ parity error.");
  1243. }
  1244. printk(KERN_WARNING "CPU[%d]: Cheetah+ %c-cache parity error at TPC[%016lx]n",
  1245.        smp_processor_id(),
  1246.        (type & 0x1) ? 'I' : 'D',
  1247.        regs->tpc);
  1248. }
  1249. void do_fpe_common(struct pt_regs *regs)
  1250. {
  1251. if(regs->tstate & TSTATE_PRIV) {
  1252. regs->tpc = regs->tnpc;
  1253. regs->tnpc += 4;
  1254. } else {
  1255. unsigned long fsr = current->thread.xfsr[0];
  1256. siginfo_t info;
  1257. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  1258. regs->tpc &= 0xffffffff;
  1259. regs->tnpc &= 0xffffffff;
  1260. }
  1261. info.si_signo = SIGFPE;
  1262. info.si_errno = 0;
  1263. info.si_addr = (void *)regs->tpc;
  1264. info.si_trapno = 0;
  1265. info.si_code = __SI_FAULT;
  1266. if ((fsr & 0x1c000) == (1 << 14)) {
  1267. if (fsr & 0x10)
  1268. info.si_code = FPE_FLTINV;
  1269. else if (fsr & 0x08)
  1270. info.si_code = FPE_FLTOVF;
  1271. else if (fsr & 0x04)
  1272. info.si_code = FPE_FLTUND;
  1273. else if (fsr & 0x02)
  1274. info.si_code = FPE_FLTDIV;
  1275. else if (fsr & 0x01)
  1276. info.si_code = FPE_FLTRES;
  1277. }
  1278. force_sig_info(SIGFPE, &info, current);
  1279. }
  1280. }
  1281. void do_fpieee(struct pt_regs *regs)
  1282. {
  1283. do_fpe_common(regs);
  1284. }
  1285. extern int do_mathemu(struct pt_regs *, struct fpustate *);
  1286. void do_fpother(struct pt_regs *regs)
  1287. {
  1288. struct fpustate *f = FPUSTATE;
  1289. int ret = 0;
  1290. switch ((current->thread.xfsr[0] & 0x1c000)) {
  1291. case (2 << 14): /* unfinished_FPop */
  1292. case (3 << 14): /* unimplemented_FPop */
  1293. ret = do_mathemu(regs, f);
  1294. break;
  1295. }
  1296. if (ret)
  1297. return;
  1298. do_fpe_common(regs);
  1299. }
  1300. void do_tof(struct pt_regs *regs)
  1301. {
  1302. siginfo_t info;
  1303. if(regs->tstate & TSTATE_PRIV)
  1304. die_if_kernel("Penguin overflow trap from kernel mode", regs);
  1305. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  1306. regs->tpc &= 0xffffffff;
  1307. regs->tnpc &= 0xffffffff;
  1308. }
  1309. info.si_signo = SIGEMT;
  1310. info.si_errno = 0;
  1311. info.si_code = EMT_TAGOVF;
  1312. info.si_addr = (void *)regs->tpc;
  1313. info.si_trapno = 0;
  1314. force_sig_info(SIGEMT, &info, current);
  1315. }
  1316. void do_div0(struct pt_regs *regs)
  1317. {
  1318. siginfo_t info;
  1319. if (regs->tstate & TSTATE_PRIV)
  1320. die_if_kernel("TL0: Kernel divide by zero.", regs);
  1321. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  1322. regs->tpc &= 0xffffffff;
  1323. regs->tnpc &= 0xffffffff;
  1324. }
  1325. info.si_signo = SIGFPE;
  1326. info.si_errno = 0;
  1327. info.si_code = FPE_INTDIV;
  1328. info.si_addr = (void *)regs->tpc;
  1329. info.si_trapno = 0;
  1330. force_sig_info(SIGFPE, &info, current);
  1331. }
  1332. void instruction_dump (unsigned int *pc)
  1333. {
  1334. int i;
  1335. if((((unsigned long) pc) & 3))
  1336. return;
  1337. printk("Instruction DUMP:");
  1338. for(i = -3; i < 6; i++)
  1339. printk("%c%08x%c",i?' ':'<',pc[i],i?' ':'>');
  1340. printk("n");
  1341. }
  1342. void user_instruction_dump (unsigned int *pc)
  1343. {
  1344. int i;
  1345. unsigned int buf[9];
  1346. if((((unsigned long) pc) & 3))
  1347. return;
  1348. if(copy_from_user(buf, pc - 3, sizeof(buf)))
  1349. return;
  1350. printk("Instruction DUMP:");
  1351. for(i = 0; i < 9; i++)
  1352. printk("%c%08x%c",i==3?' ':'<',buf[i],i==3?' ':'>');
  1353. printk("n");
  1354. }
  1355. void show_trace_raw(struct task_struct *tsk, unsigned long ksp)
  1356. {
  1357. unsigned long pc, fp;
  1358. unsigned long task_base = (unsigned long)tsk;
  1359. struct reg_window *rw;
  1360. int count = 0;
  1361. fp = ksp + STACK_BIAS;
  1362. do {
  1363. /* Bogus frame pointer? */
  1364. if (fp < (task_base + sizeof(struct task_struct)) ||
  1365.     fp >= (task_base + THREAD_SIZE))
  1366. break;
  1367. rw = (struct reg_window *)fp;
  1368. pc = rw->ins[7];
  1369. printk("[%016lx] ", pc);
  1370. fp = rw->ins[6] + STACK_BIAS;
  1371. } while (++count < 16);
  1372. printk("n");
  1373. }
  1374. void show_trace_task(struct task_struct *tsk)
  1375. {
  1376. if (tsk)
  1377. show_trace_raw(tsk, tsk->thread.ksp);
  1378. }
  1379. void die_if_kernel(char *str, struct pt_regs *regs)
  1380. {
  1381. extern void __show_regs(struct pt_regs * regs);
  1382. extern void smp_report_regs(void);
  1383. int count = 0;
  1384. struct reg_window *lastrw;
  1385. /* Amuse the user. */
  1386. printk(
  1387. "              \|/ ____ \|/n"
  1388. "              "@'/ .. \`@"n"
  1389. "              /_| \__/ |_\n"
  1390. "                 \__U_/n");
  1391. printk("%s(%d): %sn", current->comm, current->pid, str);
  1392. __asm__ __volatile__("flushw");
  1393. __show_regs(regs);
  1394. if(regs->tstate & TSTATE_PRIV) {
  1395. struct reg_window *rw = (struct reg_window *)
  1396. (regs->u_regs[UREG_FP] + STACK_BIAS);
  1397. /* Stop the back trace when we hit userland or we
  1398.  * find some badly aligned kernel stack.
  1399.  */
  1400. lastrw = (struct reg_window *)current;
  1401. while(rw &&
  1402.       count++ < 30 &&
  1403.       rw >= lastrw &&
  1404.       (char *) rw < ((char *) current)
  1405.         + sizeof (union task_union)  &&
  1406.       !(((unsigned long) rw) & 0x7)) {
  1407. printk("Caller[%016lx]n", rw->ins[7]);
  1408. lastrw = rw;
  1409. rw = (struct reg_window *)
  1410. (rw->ins[6] + STACK_BIAS);
  1411. }
  1412. instruction_dump ((unsigned int *) regs->tpc);
  1413. } else {
  1414. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  1415. regs->tpc &= 0xffffffff;
  1416. regs->tnpc &= 0xffffffff;
  1417. }
  1418. user_instruction_dump ((unsigned int *) regs->tpc);
  1419. }
  1420. #ifdef CONFIG_SMP
  1421. smp_report_regs();
  1422. #endif
  1423.                                                 
  1424. if(regs->tstate & TSTATE_PRIV)
  1425. do_exit(SIGKILL);
  1426. do_exit(SIGSEGV);
  1427. }
  1428. extern int handle_popc(u32 insn, struct pt_regs *regs);
  1429. extern int handle_ldf_stq(u32 insn, struct pt_regs *regs);
  1430. void do_illegal_instruction(struct pt_regs *regs)
  1431. {
  1432. unsigned long pc = regs->tpc;
  1433. unsigned long tstate = regs->tstate;
  1434. u32 insn;
  1435. siginfo_t info;
  1436. if(tstate & TSTATE_PRIV)
  1437. die_if_kernel("Kernel illegal instruction", regs);
  1438. if(current->thread.flags & SPARC_FLAG_32BIT)
  1439. pc = (u32)pc;
  1440. if (get_user(insn, (u32 *)pc) != -EFAULT) {
  1441. if ((insn & 0xc1ffc000) == 0x81700000) /* POPC */ {
  1442. if (handle_popc(insn, regs))
  1443. return;
  1444. } else if ((insn & 0xc1580000) == 0xc1100000) /* LDQ/STQ */ {
  1445. if (handle_ldf_stq(insn, regs))
  1446. return;
  1447. }
  1448. }
  1449. info.si_signo = SIGILL;
  1450. info.si_errno = 0;
  1451. info.si_code = ILL_ILLOPC;
  1452. info.si_addr = (void *)pc;
  1453. info.si_trapno = 0;
  1454. force_sig_info(SIGILL, &info, current);
  1455. }
  1456. void mem_address_unaligned(struct pt_regs *regs, unsigned long sfar, unsigned long sfsr)
  1457. {
  1458. siginfo_t info;
  1459. if(regs->tstate & TSTATE_PRIV) {
  1460. extern void kernel_unaligned_trap(struct pt_regs *regs,
  1461.   unsigned int insn, 
  1462.   unsigned long sfar, unsigned long sfsr);
  1463. return kernel_unaligned_trap(regs, *((unsigned int *)regs->tpc), sfar, sfsr);
  1464. }
  1465. info.si_signo = SIGBUS;
  1466. info.si_errno = 0;
  1467. info.si_code = BUS_ADRALN;
  1468. info.si_addr = (void *)sfar;
  1469. info.si_trapno = 0;
  1470. force_sig_info(SIGBUS, &info, current);
  1471. }
  1472. void do_privop(struct pt_regs *regs)
  1473. {
  1474. siginfo_t info;
  1475. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  1476. regs->tpc &= 0xffffffff;
  1477. regs->tnpc &= 0xffffffff;
  1478. }
  1479. info.si_signo = SIGILL;
  1480. info.si_errno = 0;
  1481. info.si_code = ILL_PRVOPC;
  1482. info.si_addr = (void *)regs->tpc;
  1483. info.si_trapno = 0;
  1484. force_sig_info(SIGILL, &info, current);
  1485. }
  1486. void do_privact(struct pt_regs *regs)
  1487. {
  1488. do_privop(regs);
  1489. }
  1490. /* Trap level 1 stuff or other traps we should never see... */
  1491. void do_cee(struct pt_regs *regs)
  1492. {
  1493. die_if_kernel("TL0: Cache Error Exception", regs);
  1494. }
  1495. void do_cee_tl1(struct pt_regs *regs)
  1496. {
  1497. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1498. die_if_kernel("TL1: Cache Error Exception", regs);
  1499. }
  1500. void do_dae_tl1(struct pt_regs *regs)
  1501. {
  1502. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1503. die_if_kernel("TL1: Data Access Exception", regs);
  1504. }
  1505. void do_iae_tl1(struct pt_regs *regs)
  1506. {
  1507. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1508. die_if_kernel("TL1: Instruction Access Exception", regs);
  1509. }
  1510. void do_div0_tl1(struct pt_regs *regs)
  1511. {
  1512. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1513. die_if_kernel("TL1: DIV0 Exception", regs);
  1514. }
  1515. void do_fpdis_tl1(struct pt_regs *regs)
  1516. {
  1517. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1518. die_if_kernel("TL1: FPU Disabled", regs);
  1519. }
  1520. void do_fpieee_tl1(struct pt_regs *regs)
  1521. {
  1522. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1523. die_if_kernel("TL1: FPU IEEE Exception", regs);
  1524. }
  1525. void do_fpother_tl1(struct pt_regs *regs)
  1526. {
  1527. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1528. die_if_kernel("TL1: FPU Other Exception", regs);
  1529. }
  1530. void do_ill_tl1(struct pt_regs *regs)
  1531. {
  1532. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1533. die_if_kernel("TL1: Illegal Instruction Exception", regs);
  1534. }
  1535. void do_irq_tl1(struct pt_regs *regs)
  1536. {
  1537. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1538. die_if_kernel("TL1: IRQ Exception", regs);
  1539. }
  1540. void do_lddfmna_tl1(struct pt_regs *regs)
  1541. {
  1542. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1543. die_if_kernel("TL1: LDDF Exception", regs);
  1544. }
  1545. void do_stdfmna_tl1(struct pt_regs *regs)
  1546. {
  1547. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1548. die_if_kernel("TL1: STDF Exception", regs);
  1549. }
  1550. void do_paw(struct pt_regs *regs)
  1551. {
  1552. die_if_kernel("TL0: Phys Watchpoint Exception", regs);
  1553. }
  1554. void do_paw_tl1(struct pt_regs *regs)
  1555. {
  1556. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1557. die_if_kernel("TL1: Phys Watchpoint Exception", regs);
  1558. }
  1559. void do_vaw(struct pt_regs *regs)
  1560. {
  1561. die_if_kernel("TL0: Virt Watchpoint Exception", regs);
  1562. }
  1563. void do_vaw_tl1(struct pt_regs *regs)
  1564. {
  1565. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1566. die_if_kernel("TL1: Virt Watchpoint Exception", regs);
  1567. }
  1568. void do_tof_tl1(struct pt_regs *regs)
  1569. {
  1570. dump_tl1_traplog((struct tl1_traplog *)(regs + 1));
  1571. die_if_kernel("TL1: Tag Overflow Exception", regs);
  1572. }
  1573. void do_getpsr(struct pt_regs *regs)
  1574. {
  1575. regs->u_regs[UREG_I0] = tstate_to_psr(regs->tstate);
  1576. regs->tpc   = regs->tnpc;
  1577. regs->tnpc += 4;
  1578. if ((current->thread.flags & SPARC_FLAG_32BIT) != 0) {
  1579. regs->tpc &= 0xffffffff;
  1580. regs->tnpc &= 0xffffffff;
  1581. }
  1582. }
  1583. void trap_init(void)
  1584. {
  1585. /* Attach to the address space of init_task. */
  1586. atomic_inc(&init_mm.mm_count);
  1587. current->active_mm = &init_mm;
  1588. /* NOTE: Other cpus have this done as they are started
  1589.  *       up on SMP.
  1590.  */
  1591. }