traps.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.traps.c 1.22 10/11/01 10:33:09 paulus
  3.  */
  4. /*
  5.  *  linux/arch/ppc/kernel/traps.c
  6.  *
  7.  *  Copyright (C) 1995-1996  Gary Thomas (gdt@linuxppc.org)
  8.  *
  9.  *  This program is free software; you can redistribute it and/or
  10.  *  modify it under the terms of the GNU General Public License
  11.  *  as published by the Free Software Foundation; either version
  12.  *  2 of the License, or (at your option) any later version.
  13.  *
  14.  *  Modified by Cort Dougan (cort@cs.nmt.edu)
  15.  *  and Paul Mackerras (paulus@cs.anu.edu.au)
  16.  */
  17. /*
  18.  * This file handles the architecture-dependent parts of hardware exceptions
  19.  */
  20. #include <linux/errno.h>
  21. #include <linux/sched.h>
  22. #include <linux/kernel.h>
  23. #include <linux/mm.h>
  24. #include <linux/stddef.h>
  25. #include <linux/unistd.h>
  26. #include <linux/ptrace.h>
  27. #include <linux/slab.h>
  28. #include <linux/user.h>
  29. #include <linux/a.out.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/config.h>
  32. #include <linux/init.h>
  33. #include <asm/pgtable.h>
  34. #include <asm/uaccess.h>
  35. #include <asm/system.h>
  36. #include <asm/io.h>
  37. #include <asm/processor.h>
  38. extern int fix_alignment(struct pt_regs *);
  39. extern void bad_page_fault(struct pt_regs *, unsigned long, int sig);
  40. #ifdef CONFIG_XMON
  41. extern void xmon(struct pt_regs *regs);
  42. extern int xmon_bpt(struct pt_regs *regs);
  43. extern int xmon_sstep(struct pt_regs *regs);
  44. extern int xmon_iabr_match(struct pt_regs *regs);
  45. extern int xmon_dabr_match(struct pt_regs *regs);
  46. extern void (*xmon_fault_handler)(struct pt_regs *regs);
  47. #endif
  48. #ifdef CONFIG_XMON
  49. void (*debugger)(struct pt_regs *regs) = xmon;
  50. int (*debugger_bpt)(struct pt_regs *regs) = xmon_bpt;
  51. int (*debugger_sstep)(struct pt_regs *regs) = xmon_sstep;
  52. int (*debugger_iabr_match)(struct pt_regs *regs) = xmon_iabr_match;
  53. int (*debugger_dabr_match)(struct pt_regs *regs) = xmon_dabr_match;
  54. void (*debugger_fault_handler)(struct pt_regs *regs);
  55. #else
  56. #ifdef CONFIG_KGDB
  57. void (*debugger)(struct pt_regs *regs);
  58. int (*debugger_bpt)(struct pt_regs *regs);
  59. int (*debugger_sstep)(struct pt_regs *regs);
  60. int (*debugger_iabr_match)(struct pt_regs *regs);
  61. int (*debugger_dabr_match)(struct pt_regs *regs);
  62. void (*debugger_fault_handler)(struct pt_regs *regs);
  63. #endif
  64. #endif
  65. /*
  66.  * Trap & Exception support
  67.  */
  68. spinlock_t oops_lock = SPIN_LOCK_UNLOCKED;
  69. void die(const char * str, struct pt_regs * fp, long err)
  70. {
  71. console_verbose();
  72. spin_lock_irq(&oops_lock);
  73. printk("Oops: %s, sig: %ldn", str, err);
  74. show_regs(fp);
  75. spin_unlock_irq(&oops_lock);
  76. /* do_exit() should take care of panic'ing from an interrupt
  77.  * context so we don't handle it here
  78.  */
  79. do_exit(err);
  80. }
  81. void
  82. _exception(int signr, struct pt_regs *regs)
  83. {
  84. if (!user_mode(regs))
  85. {
  86. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  87. debugger(regs);
  88. #endif
  89. die("Exception in kernel mode", regs, signr);
  90. }
  91. force_sig(signr, current);
  92. }
  93. void
  94. MachineCheckException(struct pt_regs *regs)
  95. {
  96. #ifdef CONFIG_ALL_PPC
  97. unsigned long fixup;
  98. #endif /* CONFIG_ALL_PPC */
  99. unsigned long msr = regs->msr;
  100. if (user_mode(regs)) {
  101. _exception(SIGSEGV, regs);
  102. return;
  103. }
  104. #if defined(CONFIG_8xx) && defined(CONFIG_PCI)
  105. /* the qspan pci read routines can cause machine checks -- Cort */
  106. bad_page_fault(regs, regs->dar, SIGBUS);
  107. return;
  108. #endif
  109. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  110. if (debugger_fault_handler) {
  111. debugger_fault_handler(regs);
  112. return;
  113. }
  114. #endif
  115. #ifdef CONFIG_ALL_PPC
  116. /*
  117.  * I/O accesses can cause machine checks on powermacs.
  118.  * Check if the NIP corresponds to the address of a sync
  119.  * instruction for which there is an entry in the exception
  120.  * table.
  121.  * Note that the 601 only takes a machine check on TEA
  122.  * (transfer error ack) signal assertion, and does not
  123.  * set of the top 16 bits of SRR1.
  124.  *  -- paulus.
  125.  */
  126. if (((msr & 0xffff0000) == 0 || (msr & (0x80000 | 0x40000)))
  127.     && (fixup = search_exception_table(regs->nip)) != 0) {
  128. /*
  129.  * Check that it's a sync instruction, or somewhere
  130.  * in the twi; isync; nop sequence that inb/inw/inl uses.
  131.  * As the address is in the exception table
  132.  * we should be able to read the instr there.
  133.  * For the debug message, we look at the preceding
  134.  * load or store.
  135.  */
  136. unsigned int *nip = (unsigned int *)regs->nip;
  137. if (*nip == 0x60000000) /* nop */
  138. nip -= 2;
  139. else if (*nip == 0x4c00012c) /* isync */
  140. --nip;
  141. if (*nip == 0x7c0004ac || (*nip >> 26) == 3) {
  142. /* sync or twi */
  143. unsigned int rb;
  144. --nip;
  145. rb = (*nip >> 11) & 0x1f;
  146. printk(KERN_DEBUG "%s bad port %lx at %pn",
  147.        (*nip & 0x100)? "OUT to": "IN from",
  148.        regs->gpr[rb] - _IO_BASE, nip);
  149. regs->nip = fixup;
  150. return;
  151. }
  152. }
  153. #endif /* CONFIG_ALL_PPC */
  154. printk("Machine check in kernel mode.n");
  155. printk("Caused by (from SRR1=%lx): ", msr);
  156. switch (msr & 0xF0000) {
  157. case 0x80000:
  158. printk("Machine check signaln");
  159. break;
  160. case 0: /* for 601 */
  161. case 0x40000:
  162. printk("Transfer error ack signaln");
  163. break;
  164. case 0x20000:
  165. printk("Data parity error signaln");
  166. break;
  167. case 0x10000:
  168. printk("Address parity error signaln");
  169. break;
  170. default:
  171. printk("Unknown values in msrn");
  172. }
  173. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  174. debugger(regs);
  175. #endif
  176. die("machine check", regs, SIGBUS);
  177. }
  178. void
  179. SMIException(struct pt_regs *regs)
  180. {
  181. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  182. {
  183. debugger(regs);
  184. return;
  185. }
  186. #endif
  187. show_regs(regs);
  188. panic("System Management Interrupt");
  189. }
  190. void
  191. UnknownException(struct pt_regs *regs)
  192. {
  193. printk("Bad trap at PC: %lx, SR: %lx, vector=%lx    %sn",
  194.        regs->nip, regs->msr, regs->trap, print_tainted());
  195. _exception(SIGTRAP, regs);
  196. }
  197. void
  198. InstructionBreakpoint(struct pt_regs *regs)
  199. {
  200. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  201. if (debugger_iabr_match(regs))
  202. return;
  203. #endif
  204. _exception(SIGTRAP, regs);
  205. }
  206. void
  207. RunModeException(struct pt_regs *regs)
  208. {
  209. _exception(SIGTRAP, regs);
  210. }
  211. /* Illegal instruction emulation support.  Originally written to
  212.  * provide the PVR to user applications using the mfspr rd, PVR.
  213.  * Return non-zero if we can't emulate, or EFAULT if the associated
  214.  * memory access caused an access fault.  Return zero on success.
  215.  *
  216.  * There are a couple of ways to do this, either "decode" the instruction
  217.  * or directly match lots of bits.  In this case, matching lots of
  218.  * bits is faster and easier.
  219.  *
  220.  */
  221. #define INST_MFSPR_PVR 0x7c1f42a6
  222. #define INST_MFSPR_PVR_MASK 0xfc1fffff
  223. static int
  224. emulate_instruction(struct pt_regs *regs)
  225. {
  226. uint    instword;
  227. uint    rd;
  228. uint    retval;
  229. retval = EINVAL;
  230. if (!user_mode(regs))
  231. return retval;
  232. if (get_user(instword, (uint *)(regs->nip)))
  233. return -EFAULT;
  234. /* Emulate the mfspr rD, PVR.
  235.  */
  236. if ((instword & INST_MFSPR_PVR_MASK) == INST_MFSPR_PVR) {
  237. rd = (instword >> 21) & 0x1f;
  238. regs->gpr[rd] = mfspr(PVR);
  239. retval = 0;
  240. }
  241. if (retval == 0)
  242. regs->nip += 4;
  243. return(retval);
  244. }
  245. void
  246. ProgramCheckException(struct pt_regs *regs)
  247. {
  248. #if defined(CONFIG_4xx)
  249. unsigned int esr = mfspr(SPRN_ESR);
  250. if (esr & ESR_PTR) {
  251. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  252. if (debugger_bpt(regs))
  253. return;
  254. #endif
  255. _exception(SIGTRAP, regs);
  256. } else {
  257. _exception(SIGILL, regs);
  258. }
  259. #else
  260. if (regs->msr & 0x100000) {
  261. /* IEEE FP exception */
  262. _exception(SIGFPE, regs);
  263. } else if (regs->msr & 0x20000) {
  264. /* trap exception */
  265. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  266. if (debugger_bpt(regs))
  267. return;
  268. #endif
  269. _exception(SIGTRAP, regs);
  270. } else {
  271. /* Try to emulate it if we should. */
  272. int errcode;
  273. if ((errcode = emulate_instruction(regs))) {
  274. if (errcode == -EFAULT)
  275. _exception(SIGBUS, regs);
  276. else
  277. _exception(SIGILL, regs);
  278. }
  279. }
  280. #endif
  281. }
  282. void
  283. SingleStepException(struct pt_regs *regs)
  284. {
  285. regs->msr &= ~MSR_SE;  /* Turn off 'trace' bit */
  286. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  287. if (debugger_sstep(regs))
  288. return;
  289. #endif
  290. _exception(SIGTRAP, regs);
  291. }
  292. void
  293. AlignmentException(struct pt_regs *regs)
  294. {
  295. int fixed;
  296. fixed = fix_alignment(regs);
  297. if (fixed == 1) {
  298. regs->nip += 4; /* skip over emulated instruction */
  299. return;
  300. }
  301. if (fixed == -EFAULT) {
  302. /* fixed == -EFAULT means the operand address was bad */
  303. if (user_mode(regs))
  304. force_sig(SIGSEGV, current);
  305. else
  306. bad_page_fault(regs, regs->dar, SIGSEGV);
  307. return;
  308. }
  309. _exception(SIGBUS, regs);
  310. }
  311. void
  312. StackOverflow(struct pt_regs *regs)
  313. {
  314. printk(KERN_CRIT "Kernel stack overflow in process %p, r1=%lxn",
  315.        current, regs->gpr[1]);
  316. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  317. debugger(regs);
  318. #endif
  319. show_regs(regs);
  320. panic("kernel stack overflow");
  321. }
  322. void
  323. trace_syscall(struct pt_regs *regs)
  324. {
  325. printk("Task: %p(%d), PC: %08lX/%08lX, Syscall: %3ld, Result: %s%ld    %sn",
  326.        current, current->pid, regs->nip, regs->link, regs->gpr[0],
  327.        regs->ccr&0x10000000?"Error=":"", regs->gpr[3], print_tainted());
  328. }
  329. #ifdef CONFIG_8xx
  330. void
  331. SoftwareEmulation(struct pt_regs *regs)
  332. {
  333. extern int do_mathemu(struct pt_regs *);
  334. int errcode;
  335. if (!user_mode(regs)) {
  336. #if defined(CONFIG_XMON) || defined(CONFIG_KGDB)
  337. debugger(regs);
  338. #endif
  339. die("Kernel Mode Software FPU Emulation", regs, SIGFPE);
  340. }
  341. #ifdef CONFIG_MATH_EMULATION
  342. if ((errcode = do_mathemu(regs))) {
  343. #else
  344. if ((errcode = Soft_emulate_8xx(regs))) {
  345. #endif
  346. if (errcode > 0)
  347. _exception(SIGFPE, regs);
  348. else if (errcode == -EFAULT)
  349. _exception(SIGSEGV, regs);
  350. else
  351. _exception(SIGILL, regs);
  352. }
  353. }
  354. #endif
  355. #if !defined(CONFIG_TAU_INT)
  356. void
  357. TAUException(struct pt_regs *regs)
  358. {
  359. printk("TAU trap at PC: %lx, SR: %lx, vector=%lx    %sn",
  360.        regs->nip, regs->msr, regs->trap, print_tainted());
  361. }
  362. #endif /* CONFIG_INT_TAU */
  363. void __init trap_init(void)
  364. {
  365. }