traps.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863
  1. /*
  2. * linux/arch/parisc/traps.c
  3. *
  4. * Copyright (C) 1991, 1992 Linus Torvalds
  5. * Copyright (C) 1999, 2000 Philipp Rumpf <prumpf@tux.org>
  6. */
  7. /*
  8. * 'Traps.c' handles hardware traps and faults after we have saved some
  9. * state in 'asm.s'.
  10. */
  11. #include <linux/sched.h>
  12. #include <linux/kernel.h>
  13. #include <linux/string.h>
  14. #include <linux/errno.h>
  15. #include <linux/ptrace.h>
  16. #include <linux/timer.h>
  17. #include <linux/delay.h>
  18. #include <linux/mm.h>
  19. #include <linux/module.h>
  20. #include <linux/smp.h>
  21. #include <linux/smp_lock.h>
  22. #include <linux/spinlock.h>
  23. #include <linux/init.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/console.h>
  26. #include <linux/kallsyms.h>
  27. #include <asm/assembly.h>
  28. #include <asm/system.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/io.h>
  31. #include <asm/irq.h>
  32. #include <asm/traps.h>
  33. #include <asm/unaligned.h>
  34. #include <asm/atomic.h>
  35. #include <asm/smp.h>
  36. #include <asm/pdc.h>
  37. #include <asm/pdc_chassis.h>
  38. #include <asm/unwind.h>
  39. #include "../math-emu/math-emu.h" /* for handle_fpe() */
  40. #define PRINT_USER_FAULTS /* (turn this on if you want user faults to be */
  41. /* dumped to the console via printk) */
  42. #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
  43. DEFINE_SPINLOCK(pa_dbit_lock);
  44. #endif
  45. int printbinary(char *buf, unsigned long x, int nbits)
  46. {
  47. unsigned long mask = 1UL << (nbits - 1);
  48. while (mask != 0) {
  49. *buf++ = (mask & x ? '1' : '0');
  50. mask >>= 1;
  51. }
  52. *buf = '\0';
  53. return nbits;
  54. }
  55. #ifdef __LP64__
  56. #define RFMT "%016lx"
  57. #else
  58. #define RFMT "%08lx"
  59. #endif
  60. #define FFMT "%016llx" /* fpregs are 64-bit always */
  61. #define PRINTREGS(lvl,r,f,fmt,x) \
  62. printk("%s%s%02d-%02d " fmt " " fmt " " fmt " " fmt "\n", \
  63. lvl, f, (x), (x+3), (r)[(x)+0], (r)[(x)+1], \
  64. (r)[(x)+2], (r)[(x)+3])
  65. static void print_gr(char *level, struct pt_regs *regs)
  66. {
  67. int i;
  68. char buf[64];
  69. printk("%s\n", level);
  70. printk("%s YZrvWESTHLNXBCVMcbcbcbcbOGFRQPDI\n", level);
  71. printbinary(buf, regs->gr[0], 32);
  72. printk("%sPSW: %s %s\n", level, buf, print_tainted());
  73. for (i = 0; i < 32; i += 4)
  74. PRINTREGS(level, regs->gr, "r", RFMT, i);
  75. }
  76. static void print_fr(char *level, struct pt_regs *regs)
  77. {
  78. int i;
  79. char buf[64];
  80. struct { u32 sw[2]; } s;
  81. /* FR are 64bit everywhere. Need to use asm to get the content
  82. * of fpsr/fper1, and we assume that we won't have a FP Identify
  83. * in our way, otherwise we're screwed.
  84. * The fldd is used to restore the T-bit if there was one, as the
  85. * store clears it anyway.
  86. * PA2.0 book says "thou shall not use fstw on FPSR/FPERs" - T-Bone */
  87. asm volatile ("fstd %%fr0,0(%1) \n\t"
  88. "fldd 0(%1),%%fr0 \n\t"
  89. : "=m" (s) : "r" (&s) : "r0");
  90. printk("%s\n", level);
  91. printk("%s VZOUICununcqcqcqcqcqcrmunTDVZOUI\n", level);
  92. printbinary(buf, s.sw[0], 32);
  93. printk("%sFPSR: %s\n", level, buf);
  94. printk("%sFPER1: %08x\n", level, s.sw[1]);
  95. /* here we'll print fr0 again, tho it'll be meaningless */
  96. for (i = 0; i < 32; i += 4)
  97. PRINTREGS(level, regs->fr, "fr", FFMT, i);
  98. }
  99. void show_regs(struct pt_regs *regs)
  100. {
  101. int i;
  102. char *level;
  103. unsigned long cr30, cr31;
  104. level = user_mode(regs) ? KERN_DEBUG : KERN_CRIT;
  105. print_gr(level, regs);
  106. for (i = 0; i < 8; i += 4)
  107. PRINTREGS(level, regs->sr, "sr", RFMT, i);
  108. if (user_mode(regs))
  109. print_fr(level, regs);
  110. cr30 = mfctl(30);
  111. cr31 = mfctl(31);
  112. printk("%s\n", level);
  113. printk("%sIASQ: " RFMT " " RFMT " IAOQ: " RFMT " " RFMT "\n",
  114. level, regs->iasq[0], regs->iasq[1], regs->iaoq[0], regs->iaoq[1]);
  115. printk("%s IIR: %08lx ISR: " RFMT " IOR: " RFMT "\n",
  116. level, regs->iir, regs->isr, regs->ior);
  117. printk("%s CPU: %8d CR30: " RFMT " CR31: " RFMT "\n",
  118. level, current_thread_info()->cpu, cr30, cr31);
  119. printk("%s ORIG_R28: " RFMT "\n", level, regs->orig_r28);
  120. printk(level);
  121. print_symbol(" IAOQ[0]: %s\n", regs->iaoq[0]);
  122. printk(level);
  123. print_symbol(" IAOQ[1]: %s\n", regs->iaoq[1]);
  124. printk(level);
  125. print_symbol(" RP(r2): %s\n", regs->gr[2]);
  126. }
  127. void dump_stack(void)
  128. {
  129. show_stack(NULL, NULL);
  130. }
  131. EXPORT_SYMBOL(dump_stack);
  132. static void do_show_stack(struct unwind_frame_info *info)
  133. {
  134. int i = 1;
  135. printk("Backtrace:\n");
  136. while (i <= 16) {
  137. if (unwind_once(info) < 0 || info->ip == 0)
  138. break;
  139. if (__kernel_text_address(info->ip)) {
  140. printk(" [<" RFMT ">] ", info->ip);
  141. #ifdef CONFIG_KALLSYMS
  142. print_symbol("%s\n", info->ip);
  143. #else
  144. if ((i & 0x03) == 0)
  145. printk("\n");
  146. #endif
  147. i++;
  148. }
  149. }
  150. printk("\n");
  151. }
  152. void show_stack(struct task_struct *task, unsigned long *s)
  153. {
  154. struct unwind_frame_info info;
  155. if (!task) {
  156. unsigned long sp;
  157. struct pt_regs *r;
  158. HERE:
  159. asm volatile ("copy %%r30, %0" : "=r"(sp));
  160. r = kzalloc(sizeof(struct pt_regs), GFP_KERNEL);
  161. if (!r)
  162. return;
  163. r->iaoq[0] = (unsigned long)&&HERE;
  164. r->gr[2] = (unsigned long)__builtin_return_address(0);
  165. r->gr[30] = sp;
  166. unwind_frame_init(&info, current, r);
  167. kfree(r);
  168. } else {
  169. unwind_frame_init_from_blocked_task(&info, task);
  170. }
  171. do_show_stack(&info);
  172. }
  173. void die_if_kernel(char *str, struct pt_regs *regs, long err)
  174. {
  175. if (user_mode(regs)) {
  176. if (err == 0)
  177. return; /* STFU */
  178. printk(KERN_CRIT "%s (pid %d): %s (code %ld) at " RFMT "\n",
  179. current->comm, current->pid, str, err, regs->iaoq[0]);
  180. #ifdef PRINT_USER_FAULTS
  181. /* XXX for debugging only */
  182. show_regs(regs);
  183. #endif
  184. return;
  185. }
  186. oops_in_progress = 1;
  187. /* Amuse the user in a SPARC fashion */
  188. printk(
  189. " _______________________________ \n"
  190. " < Your System ate a SPARC! Gah! >\n"
  191. " ------------------------------- \n"
  192. " \\ ^__^\n"
  193. " \\ (xx)\\_______\n"
  194. " (__)\\ )\\/\\\n"
  195. " U ||----w |\n"
  196. " || ||\n");
  197. /* unlock the pdc lock if necessary */
  198. pdc_emergency_unlock();
  199. /* maybe the kernel hasn't booted very far yet and hasn't been able
  200. * to initialize the serial or STI console. In that case we should
  201. * re-enable the pdc console, so that the user will be able to
  202. * identify the problem. */
  203. if (!console_drivers)
  204. pdc_console_restart();
  205. printk(KERN_CRIT "%s (pid %d): %s (code %ld)\n",
  206. current->comm, current->pid, str, err);
  207. show_regs(regs);
  208. if (in_interrupt())
  209. panic("Fatal exception in interrupt");
  210. if (panic_on_oops) {
  211. printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
  212. ssleep(5);
  213. panic("Fatal exception");
  214. }
  215. /* Wot's wrong wif bein' racy? */
  216. if (current->thread.flags & PARISC_KERNEL_DEATH) {
  217. printk(KERN_CRIT "%s() recursion detected.\n", __FUNCTION__);
  218. local_irq_enable();
  219. while (1);
  220. }
  221. current->thread.flags |= PARISC_KERNEL_DEATH;
  222. do_exit(SIGSEGV);
  223. }
  224. int syscall_ipi(int (*syscall) (struct pt_regs *), struct pt_regs *regs)
  225. {
  226. return syscall(regs);
  227. }
  228. /* gdb uses break 4,8 */
  229. #define GDB_BREAK_INSN 0x10004
  230. void handle_gdb_break(struct pt_regs *regs, int wot)
  231. {
  232. struct siginfo si;
  233. si.si_code = wot;
  234. si.si_addr = (void __user *) (regs->iaoq[0] & ~3);
  235. si.si_signo = SIGTRAP;
  236. si.si_errno = 0;
  237. force_sig_info(SIGTRAP, &si, current);
  238. }
  239. void handle_break(unsigned iir, struct pt_regs *regs)
  240. {
  241. struct siginfo si;
  242. switch(iir) {
  243. case 0x00:
  244. #ifdef PRINT_USER_FAULTS
  245. printk(KERN_DEBUG "break 0,0: pid=%d command='%s'\n",
  246. current->pid, current->comm);
  247. #endif
  248. die_if_kernel("Breakpoint", regs, 0);
  249. #ifdef PRINT_USER_FAULTS
  250. show_regs(regs);
  251. #endif
  252. si.si_code = TRAP_BRKPT;
  253. si.si_addr = (void __user *) (regs->iaoq[0] & ~3);
  254. si.si_signo = SIGTRAP;
  255. force_sig_info(SIGTRAP, &si, current);
  256. break;
  257. case GDB_BREAK_INSN:
  258. die_if_kernel("Breakpoint", regs, 0);
  259. handle_gdb_break(regs, TRAP_BRKPT);
  260. break;
  261. default:
  262. #ifdef PRINT_USER_FAULTS
  263. printk(KERN_DEBUG "break %#08x: pid=%d command='%s'\n",
  264. iir, current->pid, current->comm);
  265. show_regs(regs);
  266. #endif
  267. si.si_signo = SIGTRAP;
  268. si.si_code = TRAP_BRKPT;
  269. si.si_addr = (void __user *) (regs->iaoq[0] & ~3);
  270. force_sig_info(SIGTRAP, &si, current);
  271. return;
  272. }
  273. }
  274. int handle_toc(void)
  275. {
  276. printk(KERN_CRIT "TOC call.\n");
  277. return 0;
  278. }
  279. static void default_trap(int code, struct pt_regs *regs)
  280. {
  281. printk(KERN_ERR "Trap %d on CPU %d\n", code, smp_processor_id());
  282. show_regs(regs);
  283. }
  284. void (*cpu_lpmc) (int code, struct pt_regs *regs) = default_trap;
  285. void transfer_pim_to_trap_frame(struct pt_regs *regs)
  286. {
  287. register int i;
  288. extern unsigned int hpmc_pim_data[];
  289. struct pdc_hpmc_pim_11 *pim_narrow;
  290. struct pdc_hpmc_pim_20 *pim_wide;
  291. if (boot_cpu_data.cpu_type >= pcxu) {
  292. pim_wide = (struct pdc_hpmc_pim_20 *)hpmc_pim_data;
  293. /*
  294. * Note: The following code will probably generate a
  295. * bunch of truncation error warnings from the compiler.
  296. * Could be handled with an ifdef, but perhaps there
  297. * is a better way.
  298. */
  299. regs->gr[0] = pim_wide->cr[22];
  300. for (i = 1; i < 32; i++)
  301. regs->gr[i] = pim_wide->gr[i];
  302. for (i = 0; i < 32; i++)
  303. regs->fr[i] = pim_wide->fr[i];
  304. for (i = 0; i < 8; i++)
  305. regs->sr[i] = pim_wide->sr[i];
  306. regs->iasq[0] = pim_wide->cr[17];
  307. regs->iasq[1] = pim_wide->iasq_back;
  308. regs->iaoq[0] = pim_wide->cr[18];
  309. regs->iaoq[1] = pim_wide->iaoq_back;
  310. regs->sar = pim_wide->cr[11];
  311. regs->iir = pim_wide->cr[19];
  312. regs->isr = pim_wide->cr[20];
  313. regs->ior = pim_wide->cr[21];
  314. }
  315. else {
  316. pim_narrow = (struct pdc_hpmc_pim_11 *)hpmc_pim_data;
  317. regs->gr[0] = pim_narrow->cr[22];
  318. for (i = 1; i < 32; i++)
  319. regs->gr[i] = pim_narrow->gr[i];
  320. for (i = 0; i < 32; i++)
  321. regs->fr[i] = pim_narrow->fr[i];
  322. for (i = 0; i < 8; i++)
  323. regs->sr[i] = pim_narrow->sr[i];
  324. regs->iasq[0] = pim_narrow->cr[17];
  325. regs->iasq[1] = pim_narrow->iasq_back;
  326. regs->iaoq[0] = pim_narrow->cr[18];
  327. regs->iaoq[1] = pim_narrow->iaoq_back;
  328. regs->sar = pim_narrow->cr[11];
  329. regs->iir = pim_narrow->cr[19];
  330. regs->isr = pim_narrow->cr[20];
  331. regs->ior = pim_narrow->cr[21];
  332. }
  333. /*
  334. * The following fields only have meaning if we came through
  335. * another path. So just zero them here.
  336. */
  337. regs->ksp = 0;
  338. regs->kpc = 0;
  339. regs->orig_r28 = 0;
  340. }
  341. /*
  342. * This routine is called as a last resort when everything else
  343. * has gone clearly wrong. We get called for faults in kernel space,
  344. * and HPMC's.
  345. */
  346. void parisc_terminate(char *msg, struct pt_regs *regs, int code, unsigned long offset)
  347. {
  348. static DEFINE_SPINLOCK(terminate_lock);
  349. oops_in_progress = 1;
  350. set_eiem(0);
  351. local_irq_disable();
  352. spin_lock(&terminate_lock);
  353. /* unlock the pdc lock if necessary */
  354. pdc_emergency_unlock();
  355. /* restart pdc console if necessary */
  356. if (!console_drivers)
  357. pdc_console_restart();
  358. /* Not all paths will gutter the processor... */
  359. switch(code){
  360. case 1:
  361. transfer_pim_to_trap_frame(regs);
  362. break;
  363. default:
  364. /* Fall through */
  365. break;
  366. }
  367. {
  368. /* show_stack(NULL, (unsigned long *)regs->gr[30]); */
  369. struct unwind_frame_info info;
  370. unwind_frame_init(&info, current, regs);
  371. do_show_stack(&info);
  372. }
  373. printk("\n");
  374. printk(KERN_CRIT "%s: Code=%d regs=%p (Addr=" RFMT ")\n",
  375. msg, code, regs, offset);
  376. show_regs(regs);
  377. spin_unlock(&terminate_lock);
  378. /* put soft power button back under hardware control;
  379. * if the user had pressed it once at any time, the
  380. * system will shut down immediately right here. */
  381. pdc_soft_power_button(0);
  382. /* Call kernel panic() so reboot timeouts work properly
  383. * FIXME: This function should be on the list of
  384. * panic notifiers, and we should call panic
  385. * directly from the location that we wish.
  386. * e.g. We should not call panic from
  387. * parisc_terminate, but rather the oter way around.
  388. * This hack works, prints the panic message twice,
  389. * and it enables reboot timers!
  390. */
  391. panic(msg);
  392. }
  393. void handle_interruption(int code, struct pt_regs *regs)
  394. {
  395. unsigned long fault_address = 0;
  396. unsigned long fault_space = 0;
  397. struct siginfo si;
  398. if (code == 1)
  399. pdc_console_restart(); /* switch back to pdc if HPMC */
  400. else
  401. local_irq_enable();
  402. /* Security check:
  403. * If the priority level is still user, and the
  404. * faulting space is not equal to the active space
  405. * then the user is attempting something in a space
  406. * that does not belong to them. Kill the process.
  407. *
  408. * This is normally the situation when the user
  409. * attempts to jump into the kernel space at the
  410. * wrong offset, be it at the gateway page or a
  411. * random location.
  412. *
  413. * We cannot normally signal the process because it
  414. * could *be* on the gateway page, and processes
  415. * executing on the gateway page can't have signals
  416. * delivered.
  417. *
  418. * We merely readjust the address into the users
  419. * space, at a destination address of zero, and
  420. * allow processing to continue.
  421. */
  422. if (((unsigned long)regs->iaoq[0] & 3) &&
  423. ((unsigned long)regs->iasq[0] != (unsigned long)regs->sr[7])) {
  424. /* Kill the user process later */
  425. regs->iaoq[0] = 0 | 3;
  426. regs->iaoq[1] = regs->iaoq[0] + 4;
  427. regs->iasq[0] = regs->iasq[0] = regs->sr[7];
  428. regs->gr[0] &= ~PSW_B;
  429. return;
  430. }
  431. #if 0
  432. printk(KERN_CRIT "Interruption # %d\n", code);
  433. #endif
  434. switch(code) {
  435. case 1:
  436. /* High-priority machine check (HPMC) */
  437. /* set up a new led state on systems shipped with a LED State panel */
  438. pdc_chassis_send_status(PDC_CHASSIS_DIRECT_HPMC);
  439. parisc_terminate("High Priority Machine Check (HPMC)",
  440. regs, code, 0);
  441. /* NOT REACHED */
  442. case 2:
  443. /* Power failure interrupt */
  444. printk(KERN_CRIT "Power failure interrupt !\n");
  445. return;
  446. case 3:
  447. /* Recovery counter trap */
  448. regs->gr[0] &= ~PSW_R;
  449. if (user_space(regs))
  450. handle_gdb_break(regs, TRAP_TRACE);
  451. /* else this must be the start of a syscall - just let it run */
  452. return;
  453. case 5:
  454. /* Low-priority machine check */
  455. pdc_chassis_send_status(PDC_CHASSIS_DIRECT_LPMC);
  456. flush_all_caches();
  457. cpu_lpmc(5, regs);
  458. return;
  459. case 6:
  460. /* Instruction TLB miss fault/Instruction page fault */
  461. fault_address = regs->iaoq[0];
  462. fault_space = regs->iasq[0];
  463. break;
  464. case 8:
  465. /* Illegal instruction trap */
  466. die_if_kernel("Illegal instruction", regs, code);
  467. si.si_code = ILL_ILLOPC;
  468. goto give_sigill;
  469. case 9:
  470. /* Break instruction trap */
  471. handle_break(regs->iir,regs);
  472. return;
  473. case 10:
  474. /* Privileged operation trap */
  475. die_if_kernel("Privileged operation", regs, code);
  476. si.si_code = ILL_PRVOPC;
  477. goto give_sigill;
  478. case 11:
  479. /* Privileged register trap */
  480. if ((regs->iir & 0xffdfffe0) == 0x034008a0) {
  481. /* This is a MFCTL cr26/cr27 to gr instruction.
  482. * PCXS traps on this, so we need to emulate it.
  483. */
  484. if (regs->iir & 0x00200000)
  485. regs->gr[regs->iir & 0x1f] = mfctl(27);
  486. else
  487. regs->gr[regs->iir & 0x1f] = mfctl(26);
  488. regs->iaoq[0] = regs->iaoq[1];
  489. regs->iaoq[1] += 4;
  490. regs->iasq[0] = regs->iasq[1];
  491. return;
  492. }
  493. die_if_kernel("Privileged register usage", regs, code);
  494. si.si_code = ILL_PRVREG;
  495. give_sigill:
  496. si.si_signo = SIGILL;
  497. si.si_errno = 0;
  498. si.si_addr = (void __user *) regs->iaoq[0];
  499. force_sig_info(SIGILL, &si, current);
  500. return;
  501. case 12:
  502. /* Overflow Trap, let the userland signal handler do the cleanup */
  503. si.si_signo = SIGFPE;
  504. si.si_code = FPE_INTOVF;
  505. si.si_addr = (void __user *) regs->iaoq[0];
  506. force_sig_info(SIGFPE, &si, current);
  507. return;
  508. case 13:
  509. /* Conditional Trap
  510. The condition succees in an instruction which traps
  511. on condition */
  512. if(user_mode(regs)){
  513. si.si_signo = SIGFPE;
  514. /* Set to zero, and let the userspace app figure it out from
  515. the insn pointed to by si_addr */
  516. si.si_code = 0;
  517. si.si_addr = (void __user *) regs->iaoq[0];
  518. force_sig_info(SIGFPE, &si, current);
  519. return;
  520. }
  521. /* The kernel doesn't want to handle condition codes */
  522. break;
  523. case 14:
  524. /* Assist Exception Trap, i.e. floating point exception. */
  525. die_if_kernel("Floating point exception", regs, 0); /* quiet */
  526. handle_fpe(regs);
  527. return;
  528. case 15:
  529. /* Data TLB miss fault/Data page fault */
  530. /* Fall through */
  531. case 16:
  532. /* Non-access instruction TLB miss fault */
  533. /* The instruction TLB entry needed for the target address of the FIC
  534. is absent, and hardware can't find it, so we get to cleanup */
  535. /* Fall through */
  536. case 17:
  537. /* Non-access data TLB miss fault/Non-access data page fault */
  538. /* FIXME:
  539. Still need to add slow path emulation code here!
  540. If the insn used a non-shadow register, then the tlb
  541. handlers could not have their side-effect (e.g. probe
  542. writing to a target register) emulated since rfir would
  543. erase the changes to said register. Instead we have to
  544. setup everything, call this function we are in, and emulate
  545. by hand. Technically we need to emulate:
  546. fdc,fdce,pdc,"fic,4f",prober,probeir,probew, probeiw
  547. */
  548. fault_address = regs->ior;
  549. fault_space = regs->isr;
  550. break;
  551. case 18:
  552. /* PCXS only -- later cpu's split this into types 26,27 & 28 */
  553. /* Check for unaligned access */
  554. if (check_unaligned(regs)) {
  555. handle_unaligned(regs);
  556. return;
  557. }
  558. /* Fall Through */
  559. case 26:
  560. /* PCXL: Data memory access rights trap */
  561. fault_address = regs->ior;
  562. fault_space = regs->isr;
  563. break;
  564. case 19:
  565. /* Data memory break trap */
  566. regs->gr[0] |= PSW_X; /* So we can single-step over the trap */
  567. /* fall thru */
  568. case 21:
  569. /* Page reference trap */
  570. handle_gdb_break(regs, TRAP_HWBKPT);
  571. return;
  572. case 25:
  573. /* Taken branch trap */
  574. regs->gr[0] &= ~PSW_T;
  575. if (user_space(regs))
  576. handle_gdb_break(regs, TRAP_BRANCH);
  577. /* else this must be the start of a syscall - just let it
  578. * run.
  579. */
  580. return;
  581. case 7:
  582. /* Instruction access rights */
  583. /* PCXL: Instruction memory protection trap */
  584. /*
  585. * This could be caused by either: 1) a process attempting
  586. * to execute within a vma that does not have execute
  587. * permission, or 2) an access rights violation caused by a
  588. * flush only translation set up by ptep_get_and_clear().
  589. * So we check the vma permissions to differentiate the two.
  590. * If the vma indicates we have execute permission, then
  591. * the cause is the latter one. In this case, we need to
  592. * call do_page_fault() to fix the problem.
  593. */
  594. if (user_mode(regs)) {
  595. struct vm_area_struct *vma;
  596. down_read(&current->mm->mmap_sem);
  597. vma = find_vma(current->mm,regs->iaoq[0]);
  598. if (vma && (regs->iaoq[0] >= vma->vm_start)
  599. && (vma->vm_flags & VM_EXEC)) {
  600. fault_address = regs->iaoq[0];
  601. fault_space = regs->iasq[0];
  602. up_read(&current->mm->mmap_sem);
  603. break; /* call do_page_fault() */
  604. }
  605. up_read(&current->mm->mmap_sem);
  606. }
  607. /* Fall Through */
  608. case 27:
  609. /* Data memory protection ID trap */
  610. die_if_kernel("Protection id trap", regs, code);
  611. si.si_code = SEGV_MAPERR;
  612. si.si_signo = SIGSEGV;
  613. si.si_errno = 0;
  614. if (code == 7)
  615. si.si_addr = (void __user *) regs->iaoq[0];
  616. else
  617. si.si_addr = (void __user *) regs->ior;
  618. force_sig_info(SIGSEGV, &si, current);
  619. return;
  620. case 28:
  621. /* Unaligned data reference trap */
  622. handle_unaligned(regs);
  623. return;
  624. default:
  625. if (user_mode(regs)) {
  626. #ifdef PRINT_USER_FAULTS
  627. printk(KERN_DEBUG "\nhandle_interruption() pid=%d command='%s'\n",
  628. current->pid, current->comm);
  629. show_regs(regs);
  630. #endif
  631. /* SIGBUS, for lack of a better one. */
  632. si.si_signo = SIGBUS;
  633. si.si_code = BUS_OBJERR;
  634. si.si_errno = 0;
  635. si.si_addr = (void __user *) regs->ior;
  636. force_sig_info(SIGBUS, &si, current);
  637. return;
  638. }
  639. pdc_chassis_send_status(PDC_CHASSIS_DIRECT_PANIC);
  640. parisc_terminate("Unexpected interruption", regs, code, 0);
  641. /* NOT REACHED */
  642. }
  643. if (user_mode(regs)) {
  644. if ((fault_space >> SPACEID_SHIFT) != (regs->sr[7] >> SPACEID_SHIFT)) {
  645. #ifdef PRINT_USER_FAULTS
  646. if (fault_space == 0)
  647. printk(KERN_DEBUG "User Fault on Kernel Space ");
  648. else
  649. printk(KERN_DEBUG "User Fault (long pointer) (fault %d) ",
  650. code);
  651. printk("pid=%d command='%s'\n", current->pid, current->comm);
  652. show_regs(regs);
  653. #endif
  654. si.si_signo = SIGSEGV;
  655. si.si_errno = 0;
  656. si.si_code = SEGV_MAPERR;
  657. si.si_addr = (void __user *) regs->ior;
  658. force_sig_info(SIGSEGV, &si, current);
  659. return;
  660. }
  661. }
  662. else {
  663. /*
  664. * The kernel should never fault on its own address space.
  665. */
  666. if (fault_space == 0)
  667. {
  668. pdc_chassis_send_status(PDC_CHASSIS_DIRECT_PANIC);
  669. parisc_terminate("Kernel Fault", regs, code, fault_address);
  670. }
  671. }
  672. do_page_fault(regs, code, fault_address);
  673. }
  674. int __init check_ivt(void *iva)
  675. {
  676. int i;
  677. u32 check = 0;
  678. u32 *ivap;
  679. u32 *hpmcp;
  680. u32 length;
  681. extern void os_hpmc(void);
  682. extern void os_hpmc_end(void);
  683. if (strcmp((char *)iva, "cows can fly"))
  684. return -1;
  685. ivap = (u32 *)iva;
  686. for (i = 0; i < 8; i++)
  687. *ivap++ = 0;
  688. /* Compute Checksum for HPMC handler */
  689. length = (u32)((unsigned long)os_hpmc_end - (unsigned long)os_hpmc);
  690. ivap[7] = length;
  691. hpmcp = (u32 *)os_hpmc;
  692. for (i=0; i<length/4; i++)
  693. check += *hpmcp++;
  694. for (i=0; i<8; i++)
  695. check += ivap[i];
  696. ivap[5] = -check;
  697. return 0;
  698. }
  699. #ifndef __LP64__
  700. extern const void fault_vector_11;
  701. #endif
  702. extern const void fault_vector_20;
  703. void __init trap_init(void)
  704. {
  705. void *iva;
  706. if (boot_cpu_data.cpu_type >= pcxu)
  707. iva = (void *) &fault_vector_20;
  708. else
  709. #ifdef __LP64__
  710. panic("Can't boot 64-bit OS on PA1.1 processor!");
  711. #else
  712. iva = (void *) &fault_vector_11;
  713. #endif
  714. if (check_ivt(iva))
  715. panic("IVT invalid");
  716. }