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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/kernel/traps.c
  3.  *
  4.  *  Copyright (C) 1993, 1994 by Hamish Macdonald
  5.  *
  6.  *  68040 fixes by Michael Rausch
  7.  *  68040 fixes by Martin Apel
  8.  *  68040 fixes and writeback by Richard Zidlicky
  9.  *  68060 fixes by Roman Hodek
  10.  *  68060 fixes by Jesper Skov
  11.  *
  12.  * This file is subject to the terms and conditions of the GNU General Public
  13.  * License.  See the file COPYING in the main directory of this archive
  14.  * for more details.
  15.  */
  16. /*
  17.  * Sets up all exception vectors
  18.  */
  19. #include <linux/config.h>
  20. #include <linux/sched.h>
  21. #include <linux/signal.h>
  22. #include <linux/kernel.h>
  23. #include <linux/mm.h>
  24. #include <linux/module.h>
  25. #include <linux/a.out.h>
  26. #include <linux/user.h>
  27. #include <linux/string.h>
  28. #include <linux/linkage.h>
  29. #include <linux/init.h>
  30. #include <asm/setup.h>
  31. #include <asm/fpu.h>
  32. #include <asm/system.h>
  33. #include <asm/uaccess.h>
  34. #include <asm/traps.h>
  35. #include <asm/pgalloc.h>
  36. #include <asm/machdep.h>
  37. #include <asm/siginfo.h>
  38. /* assembler routines */
  39. asmlinkage void system_call(void);
  40. asmlinkage void buserr(void);
  41. asmlinkage void trap(void);
  42. asmlinkage void inthandler(void);
  43. asmlinkage void nmihandler(void);
  44. #ifdef CONFIG_M68KFPU_EMU
  45. asmlinkage void fpu_emu(void);
  46. #endif
  47. e_vector vectors[256] = {
  48. 0, 0, buserr, trap, trap, trap, trap, trap,
  49. trap, trap, trap, trap, trap, trap, trap, trap,
  50. trap, trap, trap, trap, trap, trap, trap, trap,
  51. inthandler, inthandler, inthandler, inthandler,
  52. inthandler, inthandler, inthandler, inthandler,
  53. /* TRAP #0-15 */
  54. system_call, trap, trap, trap, trap, trap, trap, trap,
  55. trap, trap, trap, trap, trap, trap, trap, trap,
  56. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  57. };
  58. /* nmi handler for the Amiga */
  59. asm(".textn"
  60.     __ALIGN_STR "n"
  61.     SYMBOL_NAME_STR(nmihandler) ": rte");
  62. /*
  63.  * this must be called very early as the kernel might
  64.  * use some instruction that are emulated on the 060
  65.  */
  66. void __init base_trap_init(void)
  67. {
  68. if(MACH_IS_SUN3X) {
  69. extern e_vector *sun3x_prom_vbr;
  70. __asm__ volatile ("movec %%vbr, %0" : "=r" ((void*)sun3x_prom_vbr));
  71. }
  72. /* setup the exception vector table */
  73. __asm__ volatile ("movec %0,%%vbr" : : "r" ((void*)vectors));
  74. if (CPU_IS_060) {
  75. /* set up ISP entry points */
  76. asmlinkage void unimp_vec(void) asm ("_060_isp_unimp");
  77. vectors[VEC_UNIMPII] = unimp_vec;
  78. }
  79. }
  80. void __init trap_init (void)
  81. {
  82. int i;
  83. for (i = 48; i < 64; i++)
  84. if (!vectors[i])
  85. vectors[i] = trap;
  86. for (i = 64; i < 256; i++)
  87. vectors[i] = inthandler;
  88. #ifdef CONFIG_M68KFPU_EMU
  89. if (FPU_IS_EMU)
  90. vectors[VEC_LINE11] = fpu_emu;
  91. #endif
  92. if (CPU_IS_040 && !FPU_IS_EMU) {
  93. /* set up FPSP entry points */
  94. asmlinkage void dz_vec(void) asm ("dz");
  95. asmlinkage void inex_vec(void) asm ("inex");
  96. asmlinkage void ovfl_vec(void) asm ("ovfl");
  97. asmlinkage void unfl_vec(void) asm ("unfl");
  98. asmlinkage void snan_vec(void) asm ("snan");
  99. asmlinkage void operr_vec(void) asm ("operr");
  100. asmlinkage void bsun_vec(void) asm ("bsun");
  101. asmlinkage void fline_vec(void) asm ("fline");
  102. asmlinkage void unsupp_vec(void) asm ("unsupp");
  103. vectors[VEC_FPDIVZ] = dz_vec;
  104. vectors[VEC_FPIR] = inex_vec;
  105. vectors[VEC_FPOVER] = ovfl_vec;
  106. vectors[VEC_FPUNDER] = unfl_vec;
  107. vectors[VEC_FPNAN] = snan_vec;
  108. vectors[VEC_FPOE] = operr_vec;
  109. vectors[VEC_FPBRUC] = bsun_vec;
  110. vectors[VEC_LINE11] = fline_vec;
  111. vectors[VEC_FPUNSUP] = unsupp_vec;
  112. }
  113. if (CPU_IS_060 && !FPU_IS_EMU) {
  114. /* set up IFPSP entry points */
  115. asmlinkage void snan_vec(void) asm ("_060_fpsp_snan");
  116. asmlinkage void operr_vec(void) asm ("_060_fpsp_operr");
  117. asmlinkage void ovfl_vec(void) asm ("_060_fpsp_ovfl");
  118. asmlinkage void unfl_vec(void) asm ("_060_fpsp_unfl");
  119. asmlinkage void dz_vec(void) asm ("_060_fpsp_dz");
  120. asmlinkage void inex_vec(void) asm ("_060_fpsp_inex");
  121. asmlinkage void fline_vec(void) asm ("_060_fpsp_fline");
  122. asmlinkage void unsupp_vec(void) asm ("_060_fpsp_unsupp");
  123. asmlinkage void effadd_vec(void) asm ("_060_fpsp_effadd");
  124. vectors[VEC_FPNAN] = snan_vec;
  125. vectors[VEC_FPOE] = operr_vec;
  126. vectors[VEC_FPOVER] = ovfl_vec;
  127. vectors[VEC_FPUNDER] = unfl_vec;
  128. vectors[VEC_FPDIVZ] = dz_vec;
  129. vectors[VEC_FPIR] = inex_vec;
  130. vectors[VEC_LINE11] = fline_vec;
  131. vectors[VEC_FPUNSUP] = unsupp_vec;
  132. vectors[VEC_UNIMPEA] = effadd_vec;
  133. }
  134.         /* if running on an amiga, make the NMI interrupt do nothing */
  135. if (MACH_IS_AMIGA) {
  136. vectors[VEC_INT7] = nmihandler;
  137. }
  138. }
  139. static char *vec_names[] = {
  140. "RESET SP", "RESET PC", "BUS ERROR", "ADDRESS ERROR",
  141. "ILLEGAL INSTRUCTION", "ZERO DIVIDE", "CHK", "TRAPcc",
  142. "PRIVILEGE VIOLATION", "TRACE", "LINE 1010", "LINE 1111",
  143. "UNASSIGNED RESERVED 12", "COPROCESSOR PROTOCOL VIOLATION",
  144. "FORMAT ERROR", "UNINITIALIZED INTERRUPT",
  145. "UNASSIGNED RESERVED 16", "UNASSIGNED RESERVED 17",
  146. "UNASSIGNED RESERVED 18", "UNASSIGNED RESERVED 19",
  147. "UNASSIGNED RESERVED 20", "UNASSIGNED RESERVED 21",
  148. "UNASSIGNED RESERVED 22", "UNASSIGNED RESERVED 23",
  149. "SPURIOUS INTERRUPT", "LEVEL 1 INT", "LEVEL 2 INT", "LEVEL 3 INT",
  150. "LEVEL 4 INT", "LEVEL 5 INT", "LEVEL 6 INT", "LEVEL 7 INT",
  151. "SYSCALL", "TRAP #1", "TRAP #2", "TRAP #3",
  152. "TRAP #4", "TRAP #5", "TRAP #6", "TRAP #7",
  153. "TRAP #8", "TRAP #9", "TRAP #10", "TRAP #11",
  154. "TRAP #12", "TRAP #13", "TRAP #14", "TRAP #15",
  155. "FPCP BSUN", "FPCP INEXACT", "FPCP DIV BY 0", "FPCP UNDERFLOW",
  156. "FPCP OPERAND ERROR", "FPCP OVERFLOW", "FPCP SNAN",
  157. "FPCP UNSUPPORTED OPERATION",
  158. "MMU CONFIGURATION ERROR"
  159. };
  160. #ifndef CONFIG_SUN3
  161. static char *space_names[] = {
  162. "Space 0", "User Data", "User Program", "Space 3",
  163. "Space 4", "Super Data", "Super Program", "CPU"
  164. };
  165. #else
  166. static char *space_names[] = {
  167. "Space 0", "User Data", "User Program", "Control",
  168. "Space 4", "Super Data", "Super Program", "CPU"
  169. };
  170. #endif
  171. void die_if_kernel(char *,struct pt_regs *,int);
  172. asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address,
  173.                              unsigned long error_code);
  174. int send_fault_sig(struct pt_regs *regs);
  175. asmlinkage void trap_c(struct frame *fp);
  176. #if defined (CONFIG_M68060)
  177. static inline void access_error060 (struct frame *fp)
  178. {
  179. unsigned long fslw = fp->un.fmt4.pc; /* is really FSLW for access error */
  180. #ifdef DEBUG
  181. printk("fslw=%#lx, fa=%#lxn", fslw, fp->un.fmt4.effaddr);
  182. #endif
  183. if (fslw & MMU060_BPE) {
  184. /* branch prediction error -> clear branch cache */
  185. __asm__ __volatile__ ("movec %/cacr,%/d0nt"
  186.       "orl   #0x00400000,%/d0nt"
  187.       "movec %/d0,%/cacr"
  188.       : : : "d0" );
  189. /* return if there's no other error */
  190. if (!(fslw & MMU060_ERR_BITS) && !(fslw & MMU060_SEE))
  191. return;
  192. }
  193. if (fslw & (MMU060_DESC_ERR | MMU060_WP | MMU060_SP)) {
  194. unsigned long errorcode;
  195. unsigned long addr = fp->un.fmt4.effaddr;
  196. if (fslw & MMU060_MA)
  197. addr = (addr + PAGE_SIZE - 1) & PAGE_MASK;
  198. errorcode = 1;
  199. if (fslw & MMU060_DESC_ERR) {
  200. __flush_tlb040_one(addr);
  201. errorcode = 0;
  202. }
  203. if (fslw & MMU060_W)
  204. errorcode |= 2;
  205. #ifdef DEBUG
  206. printk("errorcode = %dn", errorcode );
  207. #endif
  208. do_page_fault(&fp->ptregs, addr, errorcode);
  209. } else if (fslw & (MMU060_SEE)){
  210. /* Software Emulation Error.
  211.  * fault during mem_read/mem_write in ifpsp060/os.S
  212.  */
  213. send_fault_sig(&fp->ptregs);
  214. } else {
  215. printk("pc=%#lx, fa=%#lxn", fp->ptregs.pc, fp->un.fmt4.effaddr);
  216. printk( "68060 access error, fslw=%lxn", fslw );
  217. trap_c( fp );
  218. }
  219. }
  220. #endif /* CONFIG_M68060 */
  221. #if defined (CONFIG_M68040)
  222. static inline unsigned long probe040(int iswrite, unsigned long addr, int wbs)
  223. {
  224. unsigned long mmusr;
  225. mm_segment_t old_fs = get_fs();
  226. set_fs(MAKE_MM_SEG(wbs));
  227. if (iswrite)
  228.                 asm volatile (".chip 68040; ptestw (%0); .chip 68k" : : "a" (addr));
  229. else
  230.                 asm volatile (".chip 68040; ptestr (%0); .chip 68k" : : "a" (addr));
  231.         asm volatile (".chip 68040; movec %%mmusr,%0; .chip 68k" : "=r" (mmusr));
  232. set_fs(old_fs); 
  233. return mmusr;
  234. }
  235. static inline int do_040writeback1(unsigned short wbs, unsigned long wba,
  236.    unsigned long wbd)
  237. {
  238. int res = 0;
  239. mm_segment_t old_fs = get_fs();
  240. /* set_fs can not be moved, otherwise put_user() may oops */
  241. set_fs(MAKE_MM_SEG(wbs));
  242. switch (wbs & WBSIZ_040) {
  243. case BA_SIZE_BYTE:
  244. res = put_user(wbd & 0xff, (char *)wba);
  245. break;
  246. case BA_SIZE_WORD:
  247. res = put_user(wbd & 0xffff, (short *)wba);
  248. break;
  249. case BA_SIZE_LONG:
  250. res = put_user(wbd, (int *)wba);
  251. break;
  252. }
  253. /* set_fs can not be moved, otherwise put_user() may oops */
  254. set_fs(old_fs); 
  255. #ifdef DEBUG
  256. printk("do_040writeback1, res=%dn",res);
  257. #endif
  258. return res;
  259. }
  260. /* after an exception in a writeback the stack frame coresponding
  261.  * to that exception is discarded, set a few bits in the old frame 
  262.  * to simulate what it should look like
  263.  */
  264. static inline void fix_xframe040(struct frame *fp, unsigned long wba, unsigned short wbs)
  265. {
  266. fp->un.fmt7.faddr = wba;
  267. fp->un.fmt7.ssw = wbs & 0xff;
  268. if (wba != current->thread.faddr)
  269.     fp->un.fmt7.ssw |= MA_040;
  270. }
  271. static inline void do_040writebacks(struct frame *fp)
  272. {
  273. int res = 0;
  274. #if 0
  275. if (fp->un.fmt7.wb1s & WBV_040)
  276. printk("access_error040: cannot handle 1st writeback. oops.n");
  277. #endif
  278. if ((fp->un.fmt7.wb2s & WBV_040) &&
  279.     !(fp->un.fmt7.wb2s & WBTT_040)) {
  280. res = do_040writeback1(fp->un.fmt7.wb2s, fp->un.fmt7.wb2a,
  281.        fp->un.fmt7.wb2d);
  282. if (res)
  283. fix_xframe040(fp, fp->un.fmt7.wb2a, fp->un.fmt7.wb2s);
  284. else 
  285. fp->un.fmt7.wb2s = 0;
  286. }
  287. /* do the 2nd wb only if the first one was succesful (except for a kernel wb) */
  288. if (fp->un.fmt7.wb3s & WBV_040 && (!res || fp->un.fmt7.wb3s & 4)) {
  289. res = do_040writeback1(fp->un.fmt7.wb3s, fp->un.fmt7.wb3a,
  290.        fp->un.fmt7.wb3d);
  291. if (res)
  292.     {
  293. fix_xframe040(fp, fp->un.fmt7.wb3a, fp->un.fmt7.wb3s);
  294. fp->un.fmt7.wb2s = fp->un.fmt7.wb3s;
  295. fp->un.fmt7.wb3s &= (~WBV_040);
  296. fp->un.fmt7.wb2a = fp->un.fmt7.wb3a;
  297. fp->un.fmt7.wb2d = fp->un.fmt7.wb3d;
  298.     }
  299. else
  300. fp->un.fmt7.wb3s = 0;
  301. }
  302. if (res)
  303. send_fault_sig(&fp->ptregs);
  304. }
  305. /*
  306.  * called from sigreturn(), must ensure userspace code didn't
  307.  * manipulate exception frame to circumvent protection, then complete
  308.  * pending writebacks
  309.  * we just clear TM2 to turn it into an userspace access
  310.  */
  311. asmlinkage void berr_040cleanup(struct frame *fp)
  312. {
  313. fp->un.fmt7.wb2s &= ~4;
  314. fp->un.fmt7.wb3s &= ~4;
  315. do_040writebacks(fp);
  316. }
  317. static inline void access_error040(struct frame *fp)
  318. {
  319. unsigned short ssw = fp->un.fmt7.ssw;
  320. unsigned long mmusr;
  321. #ifdef DEBUG
  322. printk("ssw=%#x, fa=%#lxn", ssw, fp->un.fmt7.faddr);
  323.         printk("wb1s=%#x, wb2s=%#x, wb3s=%#xn", fp->un.fmt7.wb1s,  
  324. fp->un.fmt7.wb2s, fp->un.fmt7.wb3s);
  325. printk ("wb2a=%lx, wb3a=%lx, wb2d=%lx, wb3d=%lxn", 
  326. fp->un.fmt7.wb2a, fp->un.fmt7.wb3a,
  327. fp->un.fmt7.wb2d, fp->un.fmt7.wb3d);
  328. #endif
  329. if (ssw & ATC_040) {
  330. unsigned long addr = fp->un.fmt7.faddr;
  331. unsigned long errorcode;
  332. /*
  333.  * The MMU status has to be determined AFTER the address
  334.  * has been corrected if there was a misaligned access (MA).
  335.  */
  336. if (ssw & MA_040)
  337. addr = (addr + 7) & -8;
  338. /* MMU error, get the MMUSR info for this access */
  339. mmusr = probe040(!(ssw & RW_040), addr, ssw);
  340. #ifdef DEBUG
  341. printk("mmusr = %lxn", mmusr);
  342. #endif
  343. errorcode = 1;
  344. if (!(mmusr & MMU_R_040)) {
  345. /* clear the invalid atc entry */
  346. __flush_tlb040_one(addr);
  347. errorcode = 0;
  348. }
  349. /* despite what documentation seems to say, RMW 
  350.  * accesses have always both the LK and RW bits set */
  351. if (!(ssw & RW_040) || (ssw & LK_040))
  352. errorcode |= 2;
  353. if (do_page_fault(&fp->ptregs, addr, errorcode)) {
  354. #ifdef DEBUG
  355.         printk("do_page_fault() !=0 n");
  356. #endif
  357. if (user_mode(&fp->ptregs)){
  358. /* delay writebacks after signal delivery */
  359. #ifdef DEBUG
  360.         printk(".. was usermode - returnn");
  361. #endif
  362. return;
  363. }
  364. /* disable writeback into user space from kernel
  365.  * (if do_page_fault didn't fix the mapping,
  366.                          * the writeback won't do good)
  367.  */
  368. #ifdef DEBUG
  369. printk(".. disabling wb2n");
  370. #endif
  371. if (fp->un.fmt7.wb2a == fp->un.fmt7.faddr)
  372. fp->un.fmt7.wb2s &= ~WBV_040;
  373. }
  374. } else {
  375. printk("68040 access error, ssw=%xn", ssw);
  376. trap_c(fp);
  377. }
  378. do_040writebacks(fp);
  379. }
  380. #endif /* CONFIG_M68040 */
  381. #if defined(CONFIG_SUN3)
  382. #include <asm/sun3mmu.h>
  383. extern int mmu_emu_handle_fault (unsigned long, int, int);
  384. /* sun3 version of bus_error030 */
  385. extern inline void bus_error030 (struct frame *fp)
  386. {
  387. unsigned char buserr_type = sun3_get_buserr ();
  388. unsigned long addr, errorcode;
  389. unsigned short ssw = fp->un.fmtb.ssw;
  390. #if DEBUG
  391. if (ssw & (FC | FB))
  392. printk ("Instruction fault at %#010lxn",
  393. ssw & FC ?
  394. fp->ptregs.format == 0xa ? fp->ptregs.pc + 2 : fp->un.fmtb.baddr - 2
  395. :
  396. fp->ptregs.format == 0xa ? fp->ptregs.pc + 4 : fp->un.fmtb.baddr);
  397. if (ssw & DF) 
  398. printk ("Data %s fault at %#010lx in %s (pc=%#lx)n",
  399. ssw & RW ? "read" : "write",
  400. fp->un.fmtb.daddr,
  401. space_names[ssw & DFC], fp->ptregs.pc);
  402. #endif
  403. /*
  404.  * Check if this page should be demand-mapped. This needs to go before
  405.  * the testing for a bad kernel-space access (demand-mapping applies
  406.  * to kernel accesses too).
  407.  */
  408. if ((ssw & DF)
  409.     && (buserr_type & (SUN3_BUSERR_PROTERR | SUN3_BUSERR_INVALID))) {
  410. if (mmu_emu_handle_fault (fp->un.fmtb.daddr, ssw & RW, 0))
  411. return;
  412. }
  413. /* Check for kernel-space pagefault (BAD). */
  414. if (fp->ptregs.sr & PS_S) {
  415. /* kernel fault must be a data fault to user space */
  416. if (! ((ssw & DF) && ((ssw & DFC) == USER_DATA))) {
  417.      // try checking the kernel mappings before surrender
  418.      if (mmu_emu_handle_fault (fp->un.fmtb.daddr, ssw & RW, 1))
  419.   return;
  420. /* instruction fault or kernel data fault! */
  421. if (ssw & (FC | FB))
  422. printk ("Instruction fault at %#010lxn",
  423. fp->ptregs.pc);
  424. if (ssw & DF) {
  425. printk ("Data %s fault at %#010lx in %s (pc=%#lx)n",
  426. ssw & RW ? "read" : "write",
  427. fp->un.fmtb.daddr,
  428. space_names[ssw & DFC], fp->ptregs.pc);
  429. }
  430. printk ("BAD KERNEL BUSERRn");
  431. die_if_kernel("Oops", &fp->ptregs,0);
  432. force_sig(SIGKILL, current);
  433. return;
  434. }
  435. } else {
  436. /* user fault */
  437. if (!(ssw & (FC | FB)) && !(ssw & DF))
  438. /* not an instruction fault or data fault! BAD */
  439. panic ("USER BUSERR w/o instruction or data fault");
  440. }
  441. /* First handle the data fault, if any.  */
  442. if (ssw & DF) {
  443. addr = fp->un.fmtb.daddr;
  444. // errorcode bit 0: 0 -> no page 1 -> protection fault
  445. // errorcode bit 1: 0 -> read fault 1 -> write fault
  446. // (buserr_type & SUN3_BUSERR_PROTERR) -> protection fault
  447. // (buserr_type & SUN3_BUSERR_INVALID) -> invalid page fault
  448. if (buserr_type & SUN3_BUSERR_PROTERR)
  449. errorcode = 0x01;
  450. else if (buserr_type & SUN3_BUSERR_INVALID)
  451. errorcode = 0x00;
  452. else {
  453. #ifdef DEBUG
  454. printk ("*** unexpected busfault type=%#04xn", buserr_type);
  455. printk ("invalid %s access at %#lx from pc %#lxn",
  456. !(ssw & RW) ? "write" : "read", addr,
  457. fp->ptregs.pc);
  458. #endif
  459. die_if_kernel ("Oops", &fp->ptregs, buserr_type);
  460. force_sig (SIGBUS, current);
  461. return;
  462. }
  463. //todo: wtf is RM bit? --m
  464. if (!(ssw & RW) || ssw & RM)
  465. errorcode |= 0x02;
  466. /* Handle page fault. */
  467. do_page_fault (&fp->ptregs, addr, errorcode);
  468. /* Retry the data fault now. */
  469. return;
  470. }
  471. /* Now handle the instruction fault. */
  472. /* Get the fault address. */
  473. if (fp->ptregs.format == 0xA)
  474. addr = fp->ptregs.pc + 4;
  475. else
  476. addr = fp->un.fmtb.baddr;
  477. if (ssw & FC)
  478. addr -= 2;
  479. if (buserr_type & SUN3_BUSERR_INVALID) {
  480. if (!mmu_emu_handle_fault (fp->un.fmtb.daddr, 1, 0))
  481. do_page_fault (&fp->ptregs, addr, 0);
  482.        } else {
  483. #ifdef DEBUG
  484. printk ("protection fault on insn access (segv).n");
  485. #endif
  486. force_sig (SIGSEGV, current);
  487.        }
  488. }
  489. #else
  490. #if defined(CPU_M68020_OR_M68030)
  491. static inline void bus_error030 (struct frame *fp)
  492. {
  493. volatile unsigned short temp;
  494. unsigned short mmusr;
  495. unsigned long addr, errorcode;
  496. unsigned short ssw = fp->un.fmtb.ssw;
  497. int user_space_fault = 1;
  498. #if DEBUG
  499. unsigned long desc;
  500. #endif
  501. #if DEBUG
  502. printk ("pid = %x  ", current->pid);
  503. printk ("SSW=%#06x  ", ssw);
  504. if (ssw & (FC | FB))
  505. printk ("Instruction fault at %#010lxn",
  506. ssw & FC ?
  507. fp->ptregs.format == 0xa ? fp->ptregs.pc + 2 : fp->un.fmtb.baddr - 2
  508. :
  509. fp->ptregs.format == 0xa ? fp->ptregs.pc + 4 : fp->un.fmtb.baddr);
  510. if (ssw & DF)
  511. printk ("Data %s fault at %#010lx in %s (pc=%#lx)n",
  512. ssw & RW ? "read" : "write",
  513. fp->un.fmtb.daddr,
  514. space_names[ssw & DFC], fp->ptregs.pc);
  515. #endif
  516. if (fp->ptregs.sr & PS_S) {
  517. /* kernel fault must be a data fault to user space */
  518. if (! ((ssw & DF) && ((ssw & DFC) == USER_DATA))) {
  519. /* instruction fault or kernel data fault! */
  520. if (ssw & (FC | FB))
  521. printk ("Instruction fault at %#010lxn",
  522. fp->ptregs.pc);
  523. if (ssw & DF) {
  524. printk ("Data %s fault at %#010lx in %s (pc=%#lx)n",
  525. ssw & RW ? "read" : "write",
  526. fp->un.fmtb.daddr,
  527. space_names[ssw & DFC], fp->ptregs.pc);
  528. }
  529. printk ("BAD KERNEL BUSERRn");
  530. die_if_kernel("Oops",&fp->ptregs,0);
  531. force_sig(SIGKILL, current);
  532. return;
  533. }
  534. } else {
  535. /* user fault */
  536. if (!(ssw & (FC | FB)) && !(ssw & DF))
  537. /* not an instruction fault or data fault! BAD */
  538. panic ("USER BUSERR w/o instruction or data fault");
  539. user_space_fault = 1;
  540. #if DEBUG
  541. printk("User space bus-errorn");
  542. #endif
  543. }
  544. /* ++andreas: If a data fault and an instruction fault happen
  545.    at the same time map in both pages.  */
  546. /* First handle the data fault, if any.  */
  547. if (ssw & DF)
  548.   {
  549.     addr = fp->un.fmtb.daddr;
  550.     mmusr = MMU_I;
  551.     if (user_space_fault) {
  552. #if DEBUG
  553.     asm volatile ("ptestr #1,%2@,#7,%0nt"
  554.   "pmove %/psr,%1@"
  555.   : "=a&" (desc)
  556.   : "a" (&temp), "a" (addr));
  557. #else
  558.     asm volatile ("ptestr #1,%1@,#7nt"
  559.   "pmove %/psr,%0@"
  560.   : : "a" (&temp), "a" (addr));
  561. #endif
  562.     mmusr = temp;
  563.     }
  564.       
  565. #if DEBUG
  566.     printk ("mmusr is %#x for addr %#lx in task %pn",
  567.     mmusr, addr, current);
  568.     printk ("descriptor address is %#lx, contents %#lxn",
  569.     __va(desc), *(unsigned long *)__va(desc));
  570. #endif
  571.     errorcode = (mmusr & MMU_I) ? 0 : 1;
  572.     if (!(ssw & RW) || (ssw & RM))
  573.     errorcode |= 2;
  574.     if (mmusr & (MMU_I | MMU_WP)) {
  575. /* Don't try to do anything further if an exception was
  576.    handled. */
  577. if (do_page_fault (&fp->ptregs, addr, errorcode) < 0)
  578. return;
  579.     } else if (mmusr & (MMU_B|MMU_L|MMU_S)) {
  580.     printk ("invalid %s access at %#lx from pc %#lxn",
  581.     !(ssw & RW) ? "write" : "read", addr,
  582.     fp->ptregs.pc);
  583.     die_if_kernel("Oops",&fp->ptregs,mmusr);
  584.     force_sig(SIGSEGV, current);
  585.     return;
  586.     } else {
  587. #if 0
  588.     static volatile long tlong;
  589. #endif
  590.     printk ("weird %s access at %#lx from pc %#lx (ssw is %#x)n",
  591.     !(ssw & RW) ? "write" : "read", addr,
  592.     fp->ptregs.pc, ssw);
  593.     asm volatile ("ptestr #1,%1@,#0nt"
  594.   "pmove %/psr,%0@"
  595.   : /* no outputs */
  596.   : "a" (&temp), "a" (addr));
  597.     mmusr = temp;
  598.     printk ("level 0 mmusr is %#xn", mmusr);
  599. #if 0
  600.     asm volatile ("pmove %/tt0,%0@"
  601.   : /* no outputs */
  602.   : "a" (&tlong));
  603.     printk ("tt0 is %#lx, ", tlong);
  604.     asm volatile ("pmove %/tt1,%0@"
  605.   : /* no outputs */
  606.   : "a" (&tlong));
  607.     printk ("tt1 is %#lxn", tlong);
  608. #endif
  609. #if DEBUG
  610.     printk("Unknown SIGSEGV - 1n");
  611. #endif
  612.     die_if_kernel("Oops",&fp->ptregs,mmusr);
  613.     force_sig(SIGSEGV, current);
  614.     return;
  615.     }
  616.     /* setup an ATC entry for the access about to be retried */
  617.     if (!(ssw & RW))
  618.     asm volatile ("ploadw %1,%0@" : /* no outputs */
  619.   : "a" (addr), "d" (ssw));
  620.     else
  621.     asm volatile ("ploadr %1,%0@" : /* no outputs */
  622.   : "a" (addr), "d" (ssw));
  623.   }
  624. /* Now handle the instruction fault. */
  625. if (!(ssw & (FC|FB)))
  626. return;
  627. /* get the fault address */
  628. if (fp->ptregs.format == 10)
  629. addr = fp->ptregs.pc + 4;
  630. else
  631. addr = fp->un.fmtb.baddr;
  632. if (ssw & FC)
  633. addr -= 2;
  634. if ((ssw & DF) && ((addr ^ fp->un.fmtb.daddr) & PAGE_MASK) == 0)
  635. /* Insn fault on same page as data fault.  But we
  636.    should still create the ATC entry.  */
  637. goto create_atc_entry;
  638. mmusr = MMU_I;
  639. if (user_space_fault) {
  640. #if DEBUG
  641. asm volatile ("ptestr #1,%2@,#7,%0nt"
  642.       "pmove %/psr,%1@"
  643.       : "=a&" (desc)
  644.       : "a" (&temp), "a" (addr));
  645. #else
  646. asm volatile ("ptestr #1,%1@,#7nt"
  647.       "pmove %/psr,%0@"
  648.       : : "a" (&temp), "a" (addr));
  649. #endif
  650. mmusr = temp;
  651. }
  652.       
  653. #ifdef DEBUG
  654. printk ("mmusr is %#x for addr %#lx in task %pn",
  655. mmusr, addr, current);
  656. printk ("descriptor address is %#lx, contents %#lxn",
  657. __va(desc), *(unsigned long *)__va(desc));
  658. #endif
  659. if (mmusr & MMU_I)
  660. do_page_fault (&fp->ptregs, addr, 0);
  661. else if (mmusr & (MMU_B|MMU_L|MMU_S)) {
  662. printk ("invalid insn access at %#lx from pc %#lxn",
  663. addr, fp->ptregs.pc);
  664. #if DEBUG
  665. printk("Unknown SIGSEGV - 2n");
  666. #endif
  667. die_if_kernel("Oops",&fp->ptregs,mmusr);
  668. force_sig(SIGSEGV, current);
  669. return;
  670. }
  671. create_atc_entry:
  672. /* setup an ATC entry for the access about to be retried */
  673. asm volatile ("ploadr #2,%0@" : /* no outputs */
  674.       : "a" (addr));
  675. }
  676. #endif /* CPU_M68020_OR_M68030 */
  677. #endif /* !CONFIG_SUN3 */
  678. asmlinkage void buserr_c(struct frame *fp)
  679. {
  680. /* Only set esp0 if coming from user mode */
  681. if (user_mode(&fp->ptregs))
  682. current->thread.esp0 = (unsigned long) fp;
  683. #if DEBUG
  684. printk ("*** Bus Error *** Format is %xn", fp->ptregs.format);
  685. #endif
  686. switch (fp->ptregs.format) {
  687. #if defined (CONFIG_M68060)
  688. case 4: /* 68060 access error */
  689.   access_error060 (fp);
  690.   break;
  691. #endif
  692. #if defined (CONFIG_M68040)
  693. case 0x7: /* 68040 access error */
  694.   access_error040 (fp);
  695.   break;
  696. #endif
  697. #if defined (CPU_M68020_OR_M68030)
  698. case 0xa:
  699. case 0xb:
  700.   bus_error030 (fp);
  701.   break;
  702. #endif
  703. default:
  704.   die_if_kernel("bad frame format",&fp->ptregs,0);
  705. #if DEBUG
  706.   printk("Unknown SIGSEGV - 4n");
  707. #endif
  708.   force_sig(SIGSEGV, current);
  709. }
  710. }
  711. int kstack_depth_to_print = 48;
  712. extern struct module kernel_module;
  713. static inline int kernel_text_address(unsigned long addr)
  714. {
  715. #ifdef CONFIG_MODULES
  716. struct module *mod;
  717. #endif
  718. extern char _stext, _etext;
  719. if (addr >= (unsigned long) &_stext &&
  720.     addr <= (unsigned long) &_etext)
  721. return 1;
  722. #ifdef CONFIG_MODULES
  723. for (mod = module_list; mod != &kernel_module; mod = mod->next) {
  724. /* mod_bound tests for addr being inside the vmalloc'ed
  725.  * module area. Of course it'd be better to test only
  726.  * for the .text subset... */
  727. if (mod_bound(addr, 0, mod))
  728. return 1;
  729. }
  730. #endif
  731. return 0;
  732. }
  733. void show_trace(unsigned long *stack)
  734. {
  735. unsigned long *endstack;
  736. unsigned long addr;
  737. int i;
  738. printk("Call Trace:");
  739. addr = (unsigned long)stack + THREAD_SIZE - 1;
  740. endstack = (unsigned long *)(addr & -THREAD_SIZE);
  741. i = 0;
  742. while (stack + 1 <= endstack) {
  743. addr = *stack++;
  744. /*
  745.  * If the address is either in the text segment of the
  746.  * kernel, or in the region which contains vmalloc'ed
  747.  * memory, it *may* be the address of a calling
  748.  * routine; if so, print it so that someone tracing
  749.  * down the cause of the crash will be able to figure
  750.  * out the call path that was taken.
  751.  */
  752. if (kernel_text_address(addr)) {
  753. if (i % 4 == 0)
  754. printk("n       ");
  755. printk(" [<%08lx>]", addr);
  756. i++;
  757. }
  758. }
  759. printk("n");
  760. }
  761. void show_trace_task(struct task_struct *tsk)
  762. {
  763. show_trace((unsigned long *)tsk->thread.esp0);
  764. }
  765. static void show_stack(struct frame *fp)
  766. {
  767. unsigned long *stack, *endstack, addr;
  768. int i;
  769. if (fp == NULL)
  770.     fp = (struct frame *)&fp;
  771. addr = (unsigned long)&fp->un;
  772. printk("Frame format=%X ", fp->ptregs.format);
  773. switch (fp->ptregs.format) {
  774. case 0x2:
  775.     printk("instr addr=%08lxn", fp->un.fmt2.iaddr);
  776.     addr += sizeof(fp->un.fmt2);
  777.     break;
  778. case 0x3:
  779.     printk("eff addr=%08lxn", fp->un.fmt3.effaddr);
  780.     addr += sizeof(fp->un.fmt3);
  781.     break;
  782. case 0x4:
  783.     printk((CPU_IS_060 ? "fault addr=%08lx fslw=%08lxn"
  784.     : "eff addr=%08lx pc=%08lxn"),
  785.    fp->un.fmt4.effaddr, fp->un.fmt4.pc);
  786.     addr += sizeof(fp->un.fmt4);
  787.     break;
  788. case 0x7:
  789.     printk("eff addr=%08lx ssw=%04x faddr=%08lxn",
  790.    fp->un.fmt7.effaddr, fp->un.fmt7.ssw, fp->un.fmt7.faddr);
  791.     printk("wb 1 stat/addr/data: %04x %08lx %08lxn",
  792.    fp->un.fmt7.wb1s, fp->un.fmt7.wb1a, fp->un.fmt7.wb1dpd0);
  793.     printk("wb 2 stat/addr/data: %04x %08lx %08lxn",
  794.    fp->un.fmt7.wb2s, fp->un.fmt7.wb2a, fp->un.fmt7.wb2d);
  795.     printk("wb 3 stat/addr/data: %04x %08lx %08lxn",
  796.    fp->un.fmt7.wb3s, fp->un.fmt7.wb3a, fp->un.fmt7.wb3d);
  797.     printk("push data: %08lx %08lx %08lx %08lxn",
  798.    fp->un.fmt7.wb1dpd0, fp->un.fmt7.pd1, fp->un.fmt7.pd2,
  799.    fp->un.fmt7.pd3);
  800.     addr += sizeof(fp->un.fmt7);
  801.     break;
  802. case 0x9:
  803.     printk("instr addr=%08lxn", fp->un.fmt9.iaddr);
  804.     addr += sizeof(fp->un.fmt9);
  805.     break;
  806. case 0xa:
  807.     printk("ssw=%04x isc=%04x isb=%04x daddr=%08lx dobuf=%08lxn",
  808.    fp->un.fmta.ssw, fp->un.fmta.isc, fp->un.fmta.isb,
  809.    fp->un.fmta.daddr, fp->un.fmta.dobuf);
  810.     addr += sizeof(fp->un.fmta);
  811.     break;
  812. case 0xb:
  813.     printk("ssw=%04x isc=%04x isb=%04x daddr=%08lx dobuf=%08lxn",
  814.    fp->un.fmtb.ssw, fp->un.fmtb.isc, fp->un.fmtb.isb,
  815.    fp->un.fmtb.daddr, fp->un.fmtb.dobuf);
  816.     printk("baddr=%08lx dibuf=%08lx ver=%xn",
  817.    fp->un.fmtb.baddr, fp->un.fmtb.dibuf, fp->un.fmtb.ver);
  818.     addr += sizeof(fp->un.fmtb);
  819.     break;
  820. default:
  821.     printk("n");
  822. }
  823. stack = (unsigned long *)addr;
  824. endstack = (unsigned long *)((addr + THREAD_SIZE - 1) & -THREAD_SIZE);
  825. printk("Stack from %08lx:", (unsigned long)stack);
  826. for (i = 0; i < kstack_depth_to_print; i++) {
  827. if (stack + 1 > endstack)
  828. break;
  829. if (i % 8 == 0)
  830. printk("n       ");
  831. printk(" %08lx", *stack++);
  832. }
  833. printk("n");
  834. show_trace((unsigned long *)addr);
  835. printk("Code: ");
  836. for (i = 0; i < 10; i++)
  837. printk("%04x ", 0xffff & ((short *) fp->ptregs.pc)[i]);
  838. printk ("n");
  839. }
  840. /*
  841.  * The architecture-independent backtrace generator
  842.  */
  843. void dump_stack(void)
  844. {
  845. show_stack(0);
  846. }
  847. void bad_super_trap (struct frame *fp)
  848. {
  849. console_verbose();
  850. if (fp->ptregs.vector < 4*sizeof(vec_names)/sizeof(vec_names[0]))
  851. printk ("*** %s ***   FORMAT=%Xn",
  852. vec_names[(fp->ptregs.vector) >> 2],
  853. fp->ptregs.format);
  854. else
  855. printk ("*** Exception %d ***   FORMAT=%Xn",
  856. (fp->ptregs.vector) >> 2, 
  857. fp->ptregs.format);
  858. if (fp->ptregs.vector >> 2 == VEC_ADDRERR && CPU_IS_020_OR_030) {
  859. unsigned short ssw = fp->un.fmtb.ssw;
  860. printk ("SSW=%#06x  ", ssw);
  861. if (ssw & RC)
  862. printk ("Pipe stage C instruction fault at %#010lxn",
  863. (fp->ptregs.format) == 0xA ?
  864. fp->ptregs.pc + 2 : fp->un.fmtb.baddr - 2);
  865. if (ssw & RB)
  866. printk ("Pipe stage B instruction fault at %#010lxn",
  867. (fp->ptregs.format) == 0xA ?
  868. fp->ptregs.pc + 4 : fp->un.fmtb.baddr);
  869. if (ssw & DF)
  870. printk ("Data %s fault at %#010lx in %s (pc=%#lx)n",
  871. ssw & RW ? "read" : "write",
  872. fp->un.fmtb.daddr, space_names[ssw & DFC],
  873. fp->ptregs.pc);
  874. }
  875. printk ("Current process id is %dn", current->pid);
  876. die_if_kernel("BAD KERNEL TRAP", &fp->ptregs, 0);
  877. }
  878. asmlinkage void trap_c(struct frame *fp)
  879. {
  880. int sig;
  881. siginfo_t info;
  882. if (fp->ptregs.sr & PS_S) {
  883. if ((fp->ptregs.vector >> 2) == VEC_TRACE) {
  884. /* traced a trapping instruction */
  885. current->ptrace |= PT_DTRACE;
  886. } else
  887. bad_super_trap(fp);
  888. return;
  889. }
  890. /* send the appropriate signal to the user program */
  891. switch ((fp->ptregs.vector) >> 2) {
  892.     case VEC_ADDRERR:
  893. info.si_code = BUS_ADRALN;
  894. sig = SIGBUS;
  895. break;
  896.     case VEC_ILLEGAL:
  897.     case VEC_LINE10:
  898.     case VEC_LINE11:
  899. info.si_code = ILL_ILLOPC;
  900. sig = SIGILL;
  901. break;
  902.     case VEC_PRIV:
  903. info.si_code = ILL_PRVOPC;
  904. sig = SIGILL;
  905. break;
  906.     case VEC_COPROC:
  907. info.si_code = ILL_COPROC;
  908. sig = SIGILL;
  909. break;
  910.     case VEC_TRAP1:
  911.     case VEC_TRAP2:
  912.     case VEC_TRAP3:
  913.     case VEC_TRAP4:
  914.     case VEC_TRAP5:
  915.     case VEC_TRAP6:
  916.     case VEC_TRAP7:
  917.     case VEC_TRAP8:
  918.     case VEC_TRAP9:
  919.     case VEC_TRAP10:
  920.     case VEC_TRAP11:
  921.     case VEC_TRAP12:
  922.     case VEC_TRAP13:
  923.     case VEC_TRAP14:
  924. info.si_code = ILL_ILLTRP;
  925. sig = SIGILL;
  926. break;
  927.     case VEC_FPBRUC:
  928.     case VEC_FPOE:
  929.     case VEC_FPNAN:
  930. info.si_code = FPE_FLTINV;
  931. sig = SIGFPE;
  932. break;
  933.     case VEC_FPIR:
  934. info.si_code = FPE_FLTRES;
  935. sig = SIGFPE;
  936. break;
  937.     case VEC_FPDIVZ:
  938. info.si_code = FPE_FLTDIV;
  939. sig = SIGFPE;
  940. break;
  941.     case VEC_FPUNDER:
  942. info.si_code = FPE_FLTUND;
  943. sig = SIGFPE;
  944. break;
  945.     case VEC_FPOVER:
  946. info.si_code = FPE_FLTOVF;
  947. sig = SIGFPE;
  948. break;
  949.     case VEC_ZERODIV:
  950. info.si_code = FPE_INTDIV;
  951. sig = SIGFPE;
  952. break;
  953.     case VEC_CHK:
  954.     case VEC_TRAP:
  955. info.si_code = FPE_INTOVF;
  956. sig = SIGFPE;
  957. break;
  958.     case VEC_TRACE: /* ptrace single step */
  959. info.si_code = TRAP_TRACE;
  960. sig = SIGTRAP;
  961. break;
  962.     case VEC_TRAP15: /* breakpoint */
  963. info.si_code = TRAP_BRKPT;
  964. sig = SIGTRAP;
  965. break;
  966.     default:
  967. info.si_code = ILL_ILLOPC;
  968. sig = SIGILL;
  969. break;
  970. }
  971. info.si_signo = sig;
  972. info.si_errno = 0;
  973. switch (fp->ptregs.format) {
  974.     default:
  975. info.si_addr = (void *) fp->ptregs.pc;
  976. break;
  977.     case 2:
  978. info.si_addr = (void *) fp->un.fmt2.iaddr;
  979. break;
  980.     case 7:
  981. info.si_addr = (void *) fp->un.fmt7.effaddr;
  982. break;
  983.     case 9:
  984. info.si_addr = (void *) fp->un.fmt9.iaddr;
  985. break;
  986.     case 10:
  987. info.si_addr = (void *) fp->un.fmta.daddr;
  988. break;
  989.     case 11:
  990. info.si_addr = (void *) fp->un.fmtb.daddr;
  991. break;
  992. }
  993. force_sig_info (sig, &info, current);
  994. }
  995. void die_if_kernel (char *str, struct pt_regs *fp, int nr)
  996. {
  997. if (!(fp->sr & PS_S))
  998. return;
  999. console_verbose();
  1000. printk("%s: %08xn",str,nr);
  1001. printk("PC: [<%08lx>]nSR: %04x  SP: %p  a2: %08lxn",
  1002.        fp->pc, fp->sr, fp, fp->a2);
  1003. printk("d0: %08lx    d1: %08lx    d2: %08lx    d3: %08lxn",
  1004.        fp->d0, fp->d1, fp->d2, fp->d3);
  1005. printk("d4: %08lx    d5: %08lx    a0: %08lx    a1: %08lxn",
  1006.        fp->d4, fp->d5, fp->a0, fp->a1);
  1007. printk("Process %s (pid: %d, stackpage=%08lx)n",
  1008. current->comm, current->pid, PAGE_SIZE+(unsigned long)current);
  1009. show_stack((struct frame *)fp);
  1010. do_exit(SIGSEGV);
  1011. }
  1012. /*
  1013.  * This function is called if an error occur while accessing
  1014.  * user-space from the fpsp040 code.
  1015.  */
  1016. asmlinkage void fpsp040_die(void)
  1017. {
  1018. do_exit(SIGSEGV);
  1019. }
  1020. #ifdef CONFIG_M68KFPU_EMU
  1021. asmlinkage void fpemu_signal(int signal, int code, void *addr)
  1022. {
  1023. siginfo_t info;
  1024. info.si_signo = signal;
  1025. info.si_errno = 0;
  1026. info.si_code = code;
  1027. info.si_addr = addr;
  1028. force_sig_info(signal, &info, current);
  1029. }
  1030. #endif