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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/i386/traps.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  *
  6.  *  Pentium III FXSR, SSE support
  7.  * Gareth Hughes <gareth@valinux.com>, May 2000
  8.  */
  9. /*
  10.  * 'Traps.c' handles hardware traps and faults after we have saved some
  11.  * state in 'asm.s'.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/sched.h>
  15. #include <linux/kernel.h>
  16. #include <linux/string.h>
  17. #include <linux/errno.h>
  18. #include <linux/ptrace.h>
  19. #include <linux/timer.h>
  20. #include <linux/mm.h>
  21. #include <linux/init.h>
  22. #include <linux/delay.h>
  23. #include <linux/spinlock.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/highmem.h>
  26. #ifdef CONFIG_MCA
  27. #include <linux/mca.h>
  28. #include <asm/processor.h>
  29. #endif
  30. #include <asm/system.h>
  31. #include <asm/uaccess.h>
  32. #include <asm/io.h>
  33. #include <asm/atomic.h>
  34. #include <asm/debugreg.h>
  35. #include <asm/desc.h>
  36. #include <asm/i387.h>
  37. #include <asm/smp.h>
  38. #include <asm/pgalloc.h>
  39. #include <asm/fixmap.h>
  40. #ifdef CONFIG_X86_VISWS_APIC
  41. #include <asm/cobalt.h>
  42. #include <asm/lithium.h>
  43. #endif
  44. #include <linux/irq.h>
  45. #include <linux/module.h>
  46. asmlinkage int system_call(void);
  47. asmlinkage void lcall7(void);
  48. asmlinkage void lcall27(void);
  49. struct desc_struct default_ldt[] = { { 0, 0 }, { 0, 0 }, { 0, 0 },
  50. { 0, 0 }, { 0, 0 } };
  51. /*
  52.  * The IDT has to be page-aligned to simplify the Pentium
  53.  * F0 0F bug workaround.. We have a special link segment
  54.  * for this.
  55.  */
  56. struct desc_struct idt_table[256] __attribute__((__section__(".data.idt"))) = { {0, 0}, };
  57. asmlinkage void divide_error(void);
  58. asmlinkage void debug(void);
  59. asmlinkage void nmi(void);
  60. asmlinkage void int3(void);
  61. asmlinkage void overflow(void);
  62. asmlinkage void bounds(void);
  63. asmlinkage void invalid_op(void);
  64. asmlinkage void device_not_available(void);
  65. asmlinkage void double_fault(void);
  66. asmlinkage void coprocessor_segment_overrun(void);
  67. asmlinkage void invalid_TSS(void);
  68. asmlinkage void segment_not_present(void);
  69. asmlinkage void stack_segment(void);
  70. asmlinkage void general_protection(void);
  71. asmlinkage void page_fault(void);
  72. asmlinkage void coprocessor_error(void);
  73. asmlinkage void simd_coprocessor_error(void);
  74. asmlinkage void alignment_check(void);
  75. asmlinkage void spurious_interrupt_bug(void);
  76. asmlinkage void machine_check(void);
  77. int kstack_depth_to_print = 24;
  78. /*
  79.  * If the address is either in the .text section of the
  80.  * kernel, or in the vmalloc'ed module regions, it *may* 
  81.  * be the address of a calling routine
  82.  */
  83. #ifdef CONFIG_MODULES
  84. extern struct module *module_list;
  85. extern struct module kernel_module;
  86. static inline int kernel_text_address(unsigned long addr)
  87. {
  88. int retval = 0;
  89. struct module *mod;
  90. if (addr >= (unsigned long) &_stext &&
  91.     addr <= (unsigned long) &_etext)
  92. return 1;
  93. for (mod = module_list; mod != &kernel_module; mod = mod->next) {
  94. /* mod_bound tests for addr being inside the vmalloc'ed
  95.  * module area. Of course it'd be better to test only
  96.  * for the .text subset... */
  97. if (mod_bound(addr, 0, mod)) {
  98. retval = 1;
  99. break;
  100. }
  101. }
  102. return retval;
  103. }
  104. #else
  105. static inline int kernel_text_address(unsigned long addr)
  106. {
  107. return (addr >= (unsigned long) &_stext &&
  108. addr <= (unsigned long) &_etext);
  109. }
  110. #endif
  111. void show_trace(unsigned long * stack)
  112. {
  113. int i;
  114. unsigned long addr;
  115. if (!stack)
  116. stack = (unsigned long*)&stack;
  117. printk("Call Trace:   ");
  118. i = 1;
  119. while (((long) stack & (THREAD_SIZE-1)) != 0) {
  120. addr = *stack++;
  121. if (kernel_text_address(addr)) {
  122. if (i && ((i % 6) == 0))
  123. printk("n ");
  124. printk(" [<%08lx>]", addr);
  125. i++;
  126. }
  127. }
  128. printk("n");
  129. }
  130. void show_trace_task(struct task_struct *tsk)
  131. {
  132. unsigned long esp = tsk->thread.esp;
  133. /* User space on another CPU? */
  134. if ((esp ^ (unsigned long)tsk) & (PAGE_MASK<<1))
  135. return;
  136. show_trace((unsigned long *)esp);
  137. }
  138. void show_stack(unsigned long * esp)
  139. {
  140. unsigned long *stack;
  141. int i;
  142. // debugging aid: "show_stack(NULL);" prints the
  143. // back trace for this cpu.
  144. if(esp==NULL)
  145. esp=(unsigned long*)&esp;
  146. stack = esp;
  147. for(i=0; i < kstack_depth_to_print; i++) {
  148. if (((long) stack & (THREAD_SIZE-1)) == 0)
  149. break;
  150. if (i && ((i % 8) == 0))
  151. printk("n       ");
  152. printk("%08lx ", *stack++);
  153. }
  154. printk("n");
  155. show_trace(esp);
  156. }
  157. /*
  158.  * The architecture-independent backtrace generator
  159.  */
  160. void dump_stack(void)
  161. {
  162. show_stack(0);
  163. }
  164. void show_registers(struct pt_regs *regs)
  165. {
  166. int i;
  167. int in_kernel = 1;
  168. unsigned long esp;
  169. unsigned short ss;
  170. esp = (unsigned long) (&regs->esp);
  171. ss = __KERNEL_DS;
  172. if (regs->xcs & 3) {
  173. in_kernel = 0;
  174. esp = regs->esp;
  175. ss = regs->xss & 0xffff;
  176. }
  177. printk("CPU:    %dnEIP:    %04x:[<%08lx>]    %snEFLAGS: %08lxn",
  178. smp_processor_id(), 0xffff & regs->xcs, regs->eip, print_tainted(), regs->eflags);
  179. printk("eax: %08lx   ebx: %08lx   ecx: %08lx   edx: %08lxn",
  180. regs->eax, regs->ebx, regs->ecx, regs->edx);
  181. printk("esi: %08lx   edi: %08lx   ebp: %08lx   esp: %08lxn",
  182. regs->esi, regs->edi, regs->ebp, esp);
  183. printk("ds: %04x   es: %04x   ss: %04xn",
  184. regs->xds & 0xffff, regs->xes & 0xffff, ss);
  185. printk("Process %s (pid: %d, stackpage=%08lx)",
  186. current->comm, current->pid, 4096+(unsigned long)current);
  187. /*
  188.  * When in-kernel, we also print out the stack and code at the
  189.  * time of the fault..
  190.  */
  191. if (in_kernel) {
  192. printk("nStack: ");
  193. show_stack((unsigned long*)esp);
  194. printk("nCode: ");
  195. if(regs->eip < PAGE_OFFSET)
  196. goto bad;
  197. for(i=0;i<20;i++)
  198. {
  199. unsigned char c;
  200. if(__get_user(c, &((unsigned char*)regs->eip)[i])) {
  201. bad:
  202. printk(" Bad EIP value.");
  203. break;
  204. }
  205. printk("%02x ", c);
  206. }
  207. }
  208. printk("n");
  209. }
  210. static void handle_BUG(struct pt_regs *regs)
  211. {
  212. unsigned short ud2;
  213. unsigned short line;
  214. char *file;
  215. char c;
  216. unsigned long eip;
  217. if (regs->xcs & 3)
  218. goto no_bug; /* Not in kernel */
  219. eip = regs->eip;
  220. if (eip < PAGE_OFFSET)
  221. goto no_bug;
  222. if (__get_user(ud2, (unsigned short *)eip))
  223. goto no_bug;
  224. if (ud2 != 0x0b0f)
  225. goto no_bug;
  226. if (__get_user(line, (unsigned short *)(eip + 2)))
  227. goto bug;
  228. if (__get_user(file, (char **)(eip + 4)) ||
  229. (unsigned long)file < PAGE_OFFSET || __get_user(c, file))
  230. file = "<bad filename>";
  231. printk("kernel BUG at %s:%d!n", file, line);
  232. no_bug:
  233. return;
  234. /* Here we know it was a BUG but file-n-line is unavailable */
  235. bug:
  236. printk("Kernel BUGn");
  237. }
  238. spinlock_t die_lock = SPIN_LOCK_UNLOCKED;
  239. void die(const char * str, struct pt_regs * regs, long err)
  240. {
  241. console_verbose();
  242. spin_lock_irq(&die_lock);
  243. bust_spinlocks(1);
  244. handle_BUG(regs);
  245. printk("%s: %04lxn", str, err & 0xffff);
  246. show_registers(regs);
  247. bust_spinlocks(0);
  248. spin_unlock_irq(&die_lock);
  249. do_exit(SIGSEGV);
  250. }
  251. static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
  252. {
  253. if (!(regs->eflags & VM_MASK) && !(3 & regs->xcs))
  254. die(str, regs, err);
  255. }
  256. static inline unsigned long get_cr2(void)
  257. {
  258. unsigned long address;
  259. /* get the address */
  260. __asm__("movl %%cr2,%0":"=r" (address));
  261. return address;
  262. }
  263. static void inline do_trap(int trapnr, int signr, char *str, int vm86,
  264.    struct pt_regs * regs, long error_code, siginfo_t *info)
  265. {
  266. if (regs->eflags & VM_MASK) {
  267. if (vm86)
  268. goto vm86_trap;
  269. else
  270. goto trap_signal;
  271. }
  272. if (!(regs->xcs & 3))
  273. goto kernel_trap;
  274. trap_signal: {
  275. struct task_struct *tsk = current;
  276. tsk->thread.error_code = error_code;
  277. tsk->thread.trap_no = trapnr;
  278. if (info)
  279. force_sig_info(signr, info, tsk);
  280. else
  281. force_sig(signr, tsk);
  282. return;
  283. }
  284. kernel_trap: {
  285. unsigned long fixup = search_exception_table(regs->eip);
  286. if (fixup)
  287. regs->eip = fixup;
  288. else
  289. die(str, regs, error_code);
  290. return;
  291. }
  292. vm86_trap: {
  293. int ret = handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, trapnr);
  294. if (ret) goto trap_signal;
  295. return;
  296. }
  297. }
  298. #define DO_ERROR(trapnr, signr, str, name) 
  299. asmlinkage void do_##name(struct pt_regs * regs, long error_code) 
  300. do_trap(trapnr, signr, str, 0, regs, error_code, NULL); 
  301. }
  302. #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) 
  303. asmlinkage void do_##name(struct pt_regs * regs, long error_code) 
  304. siginfo_t info; 
  305. info.si_signo = signr; 
  306. info.si_errno = 0; 
  307. info.si_code = sicode; 
  308. info.si_addr = (void *)siaddr; 
  309. do_trap(trapnr, signr, str, 0, regs, error_code, &info); 
  310. }
  311. #define DO_VM86_ERROR(trapnr, signr, str, name) 
  312. asmlinkage void do_##name(struct pt_regs * regs, long error_code) 
  313. do_trap(trapnr, signr, str, 1, regs, error_code, NULL); 
  314. }
  315. #define DO_VM86_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) 
  316. asmlinkage void do_##name(struct pt_regs * regs, long error_code) 
  317. siginfo_t info; 
  318. info.si_signo = signr; 
  319. info.si_errno = 0; 
  320. info.si_code = sicode; 
  321. info.si_addr = (void *)siaddr; 
  322. do_trap(trapnr, signr, str, 1, regs, error_code, &info); 
  323. }
  324. DO_VM86_ERROR_INFO( 0, SIGFPE,  "divide error", divide_error, FPE_INTDIV, regs->eip)
  325. DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
  326. DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
  327. DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
  328. DO_ERROR_INFO( 6, SIGILL,  "invalid operand", invalid_op, ILL_ILLOPN, regs->eip)
  329. DO_VM86_ERROR( 7, SIGSEGV, "device not available", device_not_available)
  330. DO_ERROR( 8, SIGSEGV, "double fault", double_fault)
  331. DO_ERROR( 9, SIGFPE,  "coprocessor segment overrun", coprocessor_segment_overrun)
  332. DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
  333. DO_ERROR(11, SIGBUS,  "segment not present", segment_not_present)
  334. DO_ERROR(12, SIGBUS,  "stack segment", stack_segment)
  335. DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, get_cr2())
  336. asmlinkage void do_general_protection(struct pt_regs * regs, long error_code)
  337. {
  338. if (regs->eflags & VM_MASK)
  339. goto gp_in_vm86;
  340. if (!(regs->xcs & 3))
  341. goto gp_in_kernel;
  342. current->thread.error_code = error_code;
  343. current->thread.trap_no = 13;
  344. force_sig(SIGSEGV, current);
  345. return;
  346. gp_in_vm86:
  347. handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
  348. return;
  349. gp_in_kernel:
  350. {
  351. unsigned long fixup;
  352. fixup = search_exception_table(regs->eip);
  353. if (fixup) {
  354. regs->eip = fixup;
  355. return;
  356. }
  357. die("general protection fault", regs, error_code);
  358. }
  359. }
  360. static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
  361. {
  362. printk("Uhhuh. NMI received. Dazed and confused, but trying to continuen");
  363. printk("You probably have a hardware problem with your RAM chipsn");
  364. /* Clear and disable the memory parity error line. */
  365. reason = (reason & 0xf) | 4;
  366. outb(reason, 0x61);
  367. }
  368. static void io_check_error(unsigned char reason, struct pt_regs * regs)
  369. {
  370. unsigned long i;
  371. printk("NMI: IOCK error (debug interrupt?)n");
  372. show_registers(regs);
  373. /* Re-enable the IOCK line, wait for a few seconds */
  374. reason = (reason & 0xf) | 8;
  375. outb(reason, 0x61);
  376. i = 2000;
  377. while (--i) udelay(1000);
  378. reason &= ~8;
  379. outb(reason, 0x61);
  380. }
  381. static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
  382. {
  383. #ifdef CONFIG_MCA
  384. /* Might actually be able to figure out what the guilty party
  385. * is. */
  386. if( MCA_bus ) {
  387. mca_handle_nmi();
  388. return;
  389. }
  390. #endif
  391. printk("Uhhuh. NMI received for unknown reason %02x.n", reason);
  392. printk("Dazed and confused, but trying to continuen");
  393. printk("Do you have a strange power saving mode enabled?n");
  394. }
  395. asmlinkage void do_nmi(struct pt_regs * regs, long error_code)
  396. {
  397. unsigned char reason = inb(0x61);
  398. ++nmi_count(smp_processor_id());
  399. if (!(reason & 0xc0)) {
  400. #if CONFIG_X86_LOCAL_APIC
  401. /*
  402.  * Ok, so this is none of the documented NMI sources,
  403.  * so it must be the NMI watchdog.
  404.  */
  405. if (nmi_watchdog) {
  406. nmi_watchdog_tick(regs);
  407. return;
  408. }
  409. #endif
  410. unknown_nmi_error(reason, regs);
  411. return;
  412. }
  413. if (reason & 0x80)
  414. mem_parity_error(reason, regs);
  415. if (reason & 0x40)
  416. io_check_error(reason, regs);
  417. /*
  418.  * Reassert NMI in case it became active meanwhile
  419.  * as it's edge-triggered.
  420.  */
  421. outb(0x8f, 0x70);
  422. inb(0x71); /* dummy */
  423. outb(0x0f, 0x70);
  424. inb(0x71); /* dummy */
  425. }
  426. /*
  427.  * Our handling of the processor debug registers is non-trivial.
  428.  * We do not clear them on entry and exit from the kernel. Therefore
  429.  * it is possible to get a watchpoint trap here from inside the kernel.
  430.  * However, the code in ./ptrace.c has ensured that the user can
  431.  * only set watchpoints on userspace addresses. Therefore the in-kernel
  432.  * watchpoint trap can only occur in code which is reading/writing
  433.  * from user space. Such code must not hold kernel locks (since it
  434.  * can equally take a page fault), therefore it is safe to call
  435.  * force_sig_info even though that claims and releases locks.
  436.  * 
  437.  * Code in ./signal.c ensures that the debug control register
  438.  * is restored before we deliver any signal, and therefore that
  439.  * user code runs with the correct debug control register even though
  440.  * we clear it here.
  441.  *
  442.  * Being careful here means that we don't have to be as careful in a
  443.  * lot of more complicated places (task switching can be a bit lazy
  444.  * about restoring all the debug state, and ptrace doesn't have to
  445.  * find every occurrence of the TF bit that could be saved away even
  446.  * by user code)
  447.  */
  448. asmlinkage void do_debug(struct pt_regs * regs, long error_code)
  449. {
  450. unsigned int condition;
  451. struct task_struct *tsk = current;
  452. unsigned long eip = regs->eip;
  453. siginfo_t info;
  454. __asm__ __volatile__("movl %%db6,%0" : "=r" (condition));
  455. /* If the user set TF, it's simplest to clear it right away. */
  456. if ((eip >=PAGE_OFFSET) && (regs->eflags & TF_MASK))
  457. goto clear_TF;
  458. /* Mask out spurious debug traps due to lazy DR7 setting */
  459. if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
  460. if (!tsk->thread.debugreg[7])
  461. goto clear_dr7;
  462. }
  463. if (regs->eflags & VM_MASK)
  464. goto debug_vm86;
  465. /* Save debug status register where ptrace can see it */
  466. tsk->thread.debugreg[6] = condition;
  467. /* Mask out spurious TF errors due to lazy TF clearing */
  468. if (condition & DR_STEP) {
  469. /*
  470.  * The TF error should be masked out only if the current
  471.  * process is not traced and if the TRAP flag has been set
  472.  * previously by a tracing process (condition detected by
  473.  * the PT_DTRACE flag); remember that the i386 TRAP flag
  474.  * can be modified by the process itself in user mode,
  475.  * allowing programs to debug themselves without the ptrace()
  476.  * interface.
  477.  */
  478. if ((regs->xcs & 3) == 0)
  479. goto clear_TF;
  480. if ((tsk->ptrace & (PT_DTRACE|PT_PTRACED)) == PT_DTRACE)
  481. goto clear_TF;
  482. }
  483. /* Ok, finally something we can handle */
  484. tsk->thread.trap_no = 1;
  485. tsk->thread.error_code = error_code;
  486. info.si_signo = SIGTRAP;
  487. info.si_errno = 0;
  488. info.si_code = TRAP_BRKPT;
  489. /* If this is a kernel mode trap, save the user PC on entry to 
  490.  * the kernel, that's what the debugger can make sense of.
  491.  */
  492. info.si_addr = ((regs->xcs & 3) == 0) ? (void *)tsk->thread.eip : 
  493.                                         (void *)regs->eip;
  494. force_sig_info(SIGTRAP, &info, tsk);
  495. /* Disable additional traps. They'll be re-enabled when
  496.  * the signal is delivered.
  497.  */
  498. clear_dr7:
  499. __asm__("movl %0,%%db7"
  500. : /* no output */
  501. : "r" (0));
  502. return;
  503. debug_vm86:
  504. handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
  505. return;
  506. clear_TF:
  507. regs->eflags &= ~TF_MASK;
  508. return;
  509. }
  510. /*
  511.  * Note that we play around with the 'TS' bit in an attempt to get
  512.  * the correct behaviour even in the presence of the asynchronous
  513.  * IRQ13 behaviour
  514.  */
  515. void math_error(void *eip)
  516. {
  517. struct task_struct * task;
  518. siginfo_t info;
  519. unsigned short cwd, swd;
  520. /*
  521.  * Save the info for the exception handler and clear the error.
  522.  */
  523. task = current;
  524. save_init_fpu(task);
  525. task->thread.trap_no = 16;
  526. task->thread.error_code = 0;
  527. info.si_signo = SIGFPE;
  528. info.si_errno = 0;
  529. info.si_code = __SI_FAULT;
  530. info.si_addr = eip;
  531. /*
  532.  * (~cwd & swd) will mask out exceptions that are not set to unmasked
  533.  * status.  0x3f is the exception bits in these regs, 0x200 is the
  534.  * C1 reg you need in case of a stack fault, 0x040 is the stack
  535.  * fault bit.  We should only be taking one exception at a time,
  536.  * so if this combination doesn't produce any single exception,
  537.  * then we have a bad program that isn't syncronizing its FPU usage
  538.  * and it will suffer the consequences since we won't be able to
  539.  * fully reproduce the context of the exception
  540.  */
  541. cwd = get_fpu_cwd(task);
  542. swd = get_fpu_swd(task);
  543. switch (((~cwd) & swd & 0x3f) | (swd & 0x240)) {
  544. case 0x000:
  545. default:
  546. break;
  547. case 0x001: /* Invalid Op */
  548. case 0x041: /* Stack Fault */
  549. case 0x241: /* Stack Fault | Direction */
  550. info.si_code = FPE_FLTINV;
  551. /* Should we clear the SF or let user space do it ???? */
  552. break;
  553. case 0x002: /* Denormalize */
  554. case 0x010: /* Underflow */
  555. info.si_code = FPE_FLTUND;
  556. break;
  557. case 0x004: /* Zero Divide */
  558. info.si_code = FPE_FLTDIV;
  559. break;
  560. case 0x008: /* Overflow */
  561. info.si_code = FPE_FLTOVF;
  562. break;
  563. case 0x020: /* Precision */
  564. info.si_code = FPE_FLTRES;
  565. break;
  566. }
  567. force_sig_info(SIGFPE, &info, task);
  568. }
  569. asmlinkage void do_coprocessor_error(struct pt_regs * regs, long error_code)
  570. {
  571. ignore_irq13 = 1;
  572. math_error((void *)regs->eip);
  573. }
  574. void simd_math_error(void *eip)
  575. {
  576. struct task_struct * task;
  577. siginfo_t info;
  578. unsigned short mxcsr;
  579. /*
  580.  * Save the info for the exception handler and clear the error.
  581.  */
  582. task = current;
  583. save_init_fpu(task);
  584. task->thread.trap_no = 19;
  585. task->thread.error_code = 0;
  586. info.si_signo = SIGFPE;
  587. info.si_errno = 0;
  588. info.si_code = __SI_FAULT;
  589. info.si_addr = eip;
  590. /*
  591.  * The SIMD FPU exceptions are handled a little differently, as there
  592.  * is only a single status/control register.  Thus, to determine which
  593.  * unmasked exception was caught we must mask the exception mask bits
  594.  * at 0x1f80, and then use these to mask the exception bits at 0x3f.
  595.  */
  596. mxcsr = get_fpu_mxcsr(task);
  597. switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
  598. case 0x000:
  599. default:
  600. break;
  601. case 0x001: /* Invalid Op */
  602. info.si_code = FPE_FLTINV;
  603. break;
  604. case 0x002: /* Denormalize */
  605. case 0x010: /* Underflow */
  606. info.si_code = FPE_FLTUND;
  607. break;
  608. case 0x004: /* Zero Divide */
  609. info.si_code = FPE_FLTDIV;
  610. break;
  611. case 0x008: /* Overflow */
  612. info.si_code = FPE_FLTOVF;
  613. break;
  614. case 0x020: /* Precision */
  615. info.si_code = FPE_FLTRES;
  616. break;
  617. }
  618. force_sig_info(SIGFPE, &info, task);
  619. }
  620. asmlinkage void do_simd_coprocessor_error(struct pt_regs * regs,
  621.   long error_code)
  622. {
  623. if (cpu_has_xmm) {
  624. /* Handle SIMD FPU exceptions on PIII+ processors. */
  625. ignore_irq13 = 1;
  626. simd_math_error((void *)regs->eip);
  627. } else {
  628. /*
  629.  * Handle strange cache flush from user space exception
  630.  * in all other cases.  This is undocumented behaviour.
  631.  */
  632. if (regs->eflags & VM_MASK) {
  633. handle_vm86_fault((struct kernel_vm86_regs *)regs,
  634.   error_code);
  635. return;
  636. }
  637. die_if_kernel("cache flush denied", regs, error_code);
  638. current->thread.trap_no = 19;
  639. current->thread.error_code = error_code;
  640. force_sig(SIGSEGV, current);
  641. }
  642. }
  643. asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs,
  644.   long error_code)
  645. {
  646. #if 0
  647. /* No need to warn about this any longer. */
  648. printk("Ignoring P6 Local APIC Spurious Interrupt Bug...n");
  649. #endif
  650. }
  651. /*
  652.  *  'math_state_restore()' saves the current math information in the
  653.  * old math state array, and gets the new ones from the current task
  654.  *
  655.  * Careful.. There are problems with IBM-designed IRQ13 behaviour.
  656.  * Don't touch unless you *really* know how it works.
  657.  */
  658. asmlinkage void math_state_restore(struct pt_regs regs)
  659. {
  660. __asm__ __volatile__("clts"); /* Allow maths ops (or we recurse) */
  661. if (current->used_math) {
  662. restore_fpu(current);
  663. } else {
  664. init_fpu();
  665. }
  666. current->flags |= PF_USEDFPU; /* So we fnsave on switch_to() */
  667. }
  668. #ifndef CONFIG_MATH_EMULATION
  669. asmlinkage void math_emulate(long arg)
  670. {
  671. printk("math-emulation not enabled and no coprocessor found.n");
  672. printk("killing %s.n",current->comm);
  673. force_sig(SIGFPE,current);
  674. schedule();
  675. }
  676. #endif /* CONFIG_MATH_EMULATION */
  677. #ifndef CONFIG_X86_F00F_WORKS_OK
  678. void __init trap_init_f00f_bug(void)
  679. {
  680. /*
  681.  * "idt" is magic - it overlaps the idt_descr
  682.  * variable so that updating idt will automatically
  683.  * update the idt descriptor..
  684.  */
  685. __set_fixmap(FIX_F00F, __pa(&idt_table), PAGE_KERNEL_RO);
  686. idt = (struct desc_struct *)__fix_to_virt(FIX_F00F);
  687. __asm__ __volatile__("lidt %0": "=m" (idt_descr));
  688. }
  689. #endif
  690. #define _set_gate(gate_addr,type,dpl,addr) 
  691. do { 
  692.   int __d0, __d1; 
  693.   __asm__ __volatile__ ("movw %%dx,%%axnt" 
  694. "movw %4,%%dxnt" 
  695. "movl %%eax,%0nt" 
  696. "movl %%edx,%1" 
  697. :"=m" (*((long *) (gate_addr))), 
  698.  "=m" (*(1+(long *) (gate_addr))), "=&a" (__d0), "=&d" (__d1) 
  699. :"i" ((short) (0x8000+(dpl<<13)+(type<<8))), 
  700.  "3" ((char *) (addr)),"2" (__KERNEL_CS << 16)); 
  701. } while (0)
  702. /*
  703.  * This needs to use 'idt_table' rather than 'idt', and
  704.  * thus use the _nonmapped_ version of the IDT, as the
  705.  * Pentium F0 0F bugfix can have resulted in the mapped
  706.  * IDT being write-protected.
  707.  */
  708. void set_intr_gate(unsigned int n, void *addr)
  709. {
  710. _set_gate(idt_table+n,14,0,addr);
  711. }
  712. static void __init set_trap_gate(unsigned int n, void *addr)
  713. {
  714. _set_gate(idt_table+n,15,0,addr);
  715. }
  716. static void __init set_system_gate(unsigned int n, void *addr)
  717. {
  718. _set_gate(idt_table+n,15,3,addr);
  719. }
  720. static void __init set_call_gate(void *a, void *addr)
  721. {
  722. _set_gate(a,12,3,addr);
  723. }
  724. #define _set_seg_desc(gate_addr,type,dpl,base,limit) {
  725. *((gate_addr)+1) = ((base) & 0xff000000) | 
  726. (((base) & 0x00ff0000)>>16) | 
  727. ((limit) & 0xf0000) | 
  728. ((dpl)<<13) | 
  729. (0x00408000) | 
  730. ((type)<<8); 
  731. *(gate_addr) = (((base) & 0x0000ffff)<<16) | 
  732. ((limit) & 0x0ffff); }
  733. #define _set_tssldt_desc(n,addr,limit,type) 
  734. __asm__ __volatile__ ("movw %w3,0(%2)nt" 
  735. "movw %%ax,2(%2)nt" 
  736. "rorl $16,%%eaxnt" 
  737. "movb %%al,4(%2)nt" 
  738. "movb %4,5(%2)nt" 
  739. "movb $0,6(%2)nt" 
  740. "movb %%ah,7(%2)nt" 
  741. "rorl $16,%%eax" 
  742. : "=m"(*(n)) : "a" (addr), "r"(n), "ir"(limit), "i"(type))
  743. void set_tss_desc(unsigned int n, void *addr)
  744. {
  745. _set_tssldt_desc(gdt_table+__TSS(n), (int)addr, 235, 0x89);
  746. }
  747. void set_ldt_desc(unsigned int n, void *addr, unsigned int size)
  748. {
  749. _set_tssldt_desc(gdt_table+__LDT(n), (int)addr, ((size << 3)-1), 0x82);
  750. }
  751. #ifdef CONFIG_X86_VISWS_APIC
  752. /*
  753.  * On Rev 005 motherboards legacy device interrupt lines are wired directly
  754.  * to Lithium from the 307.  But the PROM leaves the interrupt type of each
  755.  * 307 logical device set appropriate for the 8259.  Later we'll actually use
  756.  * the 8259, but for now we have to flip the interrupt types to
  757.  * level triggered, active lo as required by Lithium.
  758.  */
  759. #define REG 0x2e /* The register to read/write */
  760. #define DEV 0x07 /* Register: Logical device select */
  761. #define VAL 0x2f /* The value to read/write */
  762. static void
  763. superio_outb(int dev, int reg, int val)
  764. {
  765. outb(DEV, REG);
  766. outb(dev, VAL);
  767. outb(reg, REG);
  768. outb(val, VAL);
  769. }
  770. static int __attribute__ ((unused))
  771. superio_inb(int dev, int reg)
  772. {
  773. outb(DEV, REG);
  774. outb(dev, VAL);
  775. outb(reg, REG);
  776. return inb(VAL);
  777. }
  778. #define FLOP 3 /* floppy logical device */
  779. #define PPORT 4 /* parallel logical device */
  780. #define UART5 5 /* uart2 logical device (not wired up) */
  781. #define UART6 6 /* uart1 logical device (THIS is the serial port!) */
  782. #define IDEST 0x70 /* int. destination (which 307 IRQ line) reg. */
  783. #define ITYPE 0x71 /* interrupt type register */
  784. /* interrupt type bits */
  785. #define LEVEL 0x01 /* bit 0, 0 == edge triggered */
  786. #define ACTHI 0x02 /* bit 1, 0 == active lo */
  787. static void
  788. superio_init(void)
  789. {
  790. if (visws_board_type == VISWS_320 && visws_board_rev == 5) {
  791. superio_outb(UART6, IDEST, 0); /* 0 means no intr propagated */
  792. printk("SGI 320 rev 5: disabling 307 uart1 interruptn");
  793. }
  794. }
  795. static void
  796. lithium_init(void)
  797. {
  798. set_fixmap(FIX_LI_PCIA, LI_PCI_A_PHYS);
  799. printk("Lithium PCI Bridge A, Bus Number: %dn",
  800. li_pcia_read16(LI_PCI_BUSNUM) & 0xff);
  801. set_fixmap(FIX_LI_PCIB, LI_PCI_B_PHYS);
  802. printk("Lithium PCI Bridge B (PIIX4), Bus Number: %dn",
  803. li_pcib_read16(LI_PCI_BUSNUM) & 0xff);
  804. /* XXX blindly enables all interrupts */
  805. li_pcia_write16(LI_PCI_INTEN, 0xffff);
  806. li_pcib_write16(LI_PCI_INTEN, 0xffff);
  807. }
  808. static void
  809. cobalt_init(void)
  810. {
  811. /*
  812.  * On normal SMP PC this is used only with SMP, but we have to
  813.  * use it and set it up here to start the Cobalt clock
  814.  */
  815. set_fixmap(FIX_APIC_BASE, APIC_DEFAULT_PHYS_BASE);
  816. printk("Local APIC ID %lxn", apic_read(APIC_ID));
  817. printk("Local APIC Version %lxn", apic_read(APIC_LVR));
  818. set_fixmap(FIX_CO_CPU, CO_CPU_PHYS);
  819. printk("Cobalt Revision %lxn", co_cpu_read(CO_CPU_REV));
  820. set_fixmap(FIX_CO_APIC, CO_APIC_PHYS);
  821. printk("Cobalt APIC ID %lxn", co_apic_read(CO_APIC_ID));
  822. /* Enable Cobalt APIC being careful to NOT change the ID! */
  823. co_apic_write(CO_APIC_ID, co_apic_read(CO_APIC_ID)|CO_APIC_ENABLE);
  824. printk("Cobalt APIC enabled: ID reg %lxn", co_apic_read(CO_APIC_ID));
  825. }
  826. #endif
  827. void __init trap_init(void)
  828. {
  829. #ifdef CONFIG_EISA
  830. if (isa_readl(0x0FFFD9) == 'E'+('I'<<8)+('S'<<16)+('A'<<24))
  831. EISA_bus = 1;
  832. #endif
  833. #ifdef CONFIG_X86_LOCAL_APIC
  834. init_apic_mappings();
  835. #endif
  836. set_trap_gate(0,&divide_error);
  837. set_trap_gate(1,&debug);
  838. set_intr_gate(2,&nmi);
  839. set_system_gate(3,&int3); /* int3-5 can be called from all */
  840. set_system_gate(4,&overflow);
  841. set_system_gate(5,&bounds);
  842. set_trap_gate(6,&invalid_op);
  843. set_trap_gate(7,&device_not_available);
  844. set_trap_gate(8,&double_fault);
  845. set_trap_gate(9,&coprocessor_segment_overrun);
  846. set_trap_gate(10,&invalid_TSS);
  847. set_trap_gate(11,&segment_not_present);
  848. set_trap_gate(12,&stack_segment);
  849. set_trap_gate(13,&general_protection);
  850. set_intr_gate(14,&page_fault);
  851. set_trap_gate(15,&spurious_interrupt_bug);
  852. set_trap_gate(16,&coprocessor_error);
  853. set_trap_gate(17,&alignment_check);
  854. set_trap_gate(18,&machine_check);
  855. set_trap_gate(19,&simd_coprocessor_error);
  856. set_system_gate(SYSCALL_VECTOR,&system_call);
  857. /*
  858.  * default LDT is a single-entry callgate to lcall7 for iBCS
  859.  * and a callgate to lcall27 for Solaris/x86 binaries
  860.  */
  861. set_call_gate(&default_ldt[0],lcall7);
  862. set_call_gate(&default_ldt[4],lcall27);
  863. /*
  864.  * Should be a barrier for any external CPU state.
  865.  */
  866. cpu_init();
  867. #ifdef CONFIG_X86_VISWS_APIC
  868. superio_init();
  869. lithium_init();
  870. cobalt_init();
  871. #endif
  872. }