traps.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright (C) 2003, Axis Communications AB.
  3. */
  4. #include <linux/config.h>
  5. #include <linux/ptrace.h>
  6. #include <asm/uaccess.h>
  7. #include <asm/arch/hwregs/supp_reg.h>
  8. extern void reset_watchdog(void);
  9. extern void stop_watchdog(void);
  10. extern int raw_printk(const char *fmt, ...);
  11. void
  12. show_registers(struct pt_regs *regs)
  13. {
  14. /*
  15. * It's possible to use either the USP register or current->thread.usp.
  16. * USP might not correspond to the current proccess for all cases this
  17. * function is called, and current->thread.usp isn't up to date for the
  18. * current proccess. Experience shows that using USP is the way to go.
  19. */
  20. unsigned long usp;
  21. unsigned long d_mmu_cause;
  22. unsigned long i_mmu_cause;
  23. usp = rdusp();
  24. raw_printk("CPU: %d\n", smp_processor_id());
  25. raw_printk("ERP: %08lx SRP: %08lx CCS: %08lx USP: %08lx MOF: %08lx\n",
  26. regs->erp, regs->srp, regs->ccs, usp, regs->mof);
  27. raw_printk(" r0: %08lx r1: %08lx r2: %08lx r3: %08lx\n",
  28. regs->r0, regs->r1, regs->r2, regs->r3);
  29. raw_printk(" r4: %08lx r5: %08lx r6: %08lx r7: %08lx\n",
  30. regs->r4, regs->r5, regs->r6, regs->r7);
  31. raw_printk(" r8: %08lx r9: %08lx r10: %08lx r11: %08lx\n",
  32. regs->r8, regs->r9, regs->r10, regs->r11);
  33. raw_printk("r12: %08lx r13: %08lx oR10: %08lx acr: %08lx\n",
  34. regs->r12, regs->r13, regs->orig_r10, regs->acr);
  35. raw_printk("sp: %08lx\n", regs);
  36. SUPP_BANK_SEL(BANK_IM);
  37. SUPP_REG_RD(RW_MM_CAUSE, i_mmu_cause);
  38. SUPP_BANK_SEL(BANK_DM);
  39. SUPP_REG_RD(RW_MM_CAUSE, d_mmu_cause);
  40. raw_printk(" Data MMU Cause: %08lx\n", d_mmu_cause);
  41. raw_printk("Instruction MMU Cause: %08lx\n", i_mmu_cause);
  42. raw_printk("Process %s (pid: %d, stackpage: %08lx)\n",
  43. current->comm, current->pid, (unsigned long) current);
  44. /* Show additional info if in kernel-mode. */
  45. if (!user_mode(regs)) {
  46. int i;
  47. unsigned char c;
  48. show_stack(NULL, (unsigned long *) usp);
  49. /*
  50. * If the previous stack-dump wasn't a kernel one, dump the
  51. * kernel stack now.
  52. */
  53. if (usp != 0)
  54. show_stack(NULL, NULL);
  55. raw_printk("\nCode: ");
  56. if (regs->erp < PAGE_OFFSET)
  57. goto bad_value;
  58. /*
  59. * Quite often the value at regs->erp doesn't point to the
  60. * interesting instruction, which often is the previous
  61. * instruction. So dump at an offset large enough that the
  62. * instruction decoding should be in sync at the interesting
  63. * point, but small enough to fit on a row. The regs->erp
  64. * location is pointed out in a ksymoops-friendly way by
  65. * wrapping the byte for that address in parenthesis.
  66. */
  67. for (i = -12; i < 12; i++) {
  68. if (__get_user(c, &((unsigned char *) regs->erp)[i])) {
  69. bad_value:
  70. raw_printk(" Bad IP value.");
  71. break;
  72. }
  73. if (i == 0)
  74. raw_printk("(%02x) ", c);
  75. else
  76. raw_printk("%02x ", c);
  77. }
  78. raw_printk("\n");
  79. }
  80. }
  81. /*
  82. * This gets called from entry.S when the watchdog has bitten. Show something
  83. * similiar to an Oops dump, and if the kernel if configured to be a nice doggy;
  84. * halt instead of reboot.
  85. */
  86. void
  87. watchdog_bite_hook(struct pt_regs *regs)
  88. {
  89. #ifdef CONFIG_ETRAX_WATCHDOG_NICE_DOGGY
  90. local_irq_disable();
  91. stop_watchdog();
  92. show_registers(regs);
  93. while (1)
  94. ; /* Do nothing. */
  95. #else
  96. show_registers(regs);
  97. #endif
  98. }
  99. /* This is normally the Oops function. */
  100. void
  101. die_if_kernel(const char *str, struct pt_regs *regs, long err)
  102. {
  103. if (user_mode(regs))
  104. return;
  105. #ifdef CONFIG_ETRAX_WATCHDOG_NICE_DOGGY
  106. /*
  107. * This printout might take too long and could trigger
  108. * the watchdog normally. If NICE_DOGGY is set, simply
  109. * stop the watchdog during the printout.
  110. */
  111. stop_watchdog();
  112. #endif
  113. raw_printk("%s: %04lx\n", str, err & 0xffff);
  114. show_registers(regs);
  115. #ifdef CONFIG_ETRAX_WATCHDOG_NICE_DOGGY
  116. reset_watchdog();
  117. #endif
  118. do_exit(SIGSEGV);
  119. }
  120. void arch_enable_nmi(void)
  121. {
  122. unsigned long flags;
  123. local_save_flags(flags);
  124. flags |= (1<<30); /* NMI M flag is at bit 30 */
  125. local_irq_restore(flags);
  126. }