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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 1995, 1996, 1999, 2000 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 by Silicon Graphics
  8.  */
  9. #include <linux/init.h>
  10. #include <linux/kernel.h>
  11. #include <linux/module.h>
  12. #include <asm/module.h>
  13. #include <asm/uaccess.h>
  14. #include <asm/paccess.h>
  15. #include <asm/addrspace.h>
  16. #include <asm/ptrace.h>
  17. extern asmlinkage void handle_ibe(void);
  18. extern asmlinkage void handle_dbe(void);
  19. extern const struct exception_table_entry __start___dbe_table[];
  20. extern const struct exception_table_entry __stop___dbe_table[];
  21. static inline unsigned long
  22. search_one_table(const struct exception_table_entry *first,
  23.                  const struct exception_table_entry *last,
  24.                  unsigned long value)
  25. {
  26. while (first <= last) {
  27. const struct exception_table_entry *mid;
  28. long diff;
  29. mid = (last - first) / 2 + first;
  30. diff = mid->insn - value;
  31. if (diff == 0)
  32. return mid->nextinsn;
  33. else if (diff < 0)
  34. first = mid+1;
  35. else
  36. last = mid-1;
  37. }
  38. return 0;
  39. }
  40. extern spinlock_t modlist_lock;
  41. static inline unsigned long
  42. search_dbe_table(unsigned long addr)
  43. {
  44. unsigned long ret = 0;
  45. #ifndef CONFIG_MODULES
  46. /* There is only the kernel to search.  */
  47. ret = search_one_table(__start___dbe_table, __stop___dbe_table-1, addr);
  48. return ret;
  49. #else
  50. unsigned long flags;
  51. /* The kernel is the last "module" -- no need to treat it special.  */
  52. struct module *mp;
  53. struct archdata *ap;
  54. spin_lock_irqsave(&modlist_lock, flags);
  55. for (mp = module_list; mp != NULL; mp = mp->next) {
  56. if (!mod_member_present(mp, archdata_end) ||
  57.              !mod_archdata_member_present(mp, struct archdata,
  58.  dbe_table_end))
  59. continue;
  60. ap = (struct archdata *)(mod->archdata_start);
  61. if (ap->dbe_table_start == NULL ||
  62.     !(mp->flags & (MOD_RUNNING | MOD_INITIALIZING)))
  63. continue;
  64. ret = search_one_table(ap->dbe_table_start,
  65.        ap->dbe_table_end - 1, addr);
  66. if (ret)
  67. break;
  68. }
  69. spin_unlock_irqrestore(&modlist_lock, flags);
  70. return ret;
  71. #endif
  72. }
  73. void do_ibe(struct pt_regs *regs)
  74. {
  75. printk("Got ibe at 0x%lxn", regs->cp0_epc);
  76. show_regs(regs);
  77. dump_tlb_addr(regs->cp0_epc);
  78. force_sig(SIGBUS, current);
  79. while(1);
  80. }
  81. void do_dbe(struct pt_regs *regs)
  82. {
  83. unsigned long fixup;
  84. fixup = search_dbe_table(regs->cp0_epc);
  85. if (fixup) {
  86. long new_epc;
  87. new_epc = fixup_exception(dpf_reg, fixup, regs->cp0_epc);
  88. regs->cp0_epc = new_epc;
  89. return;
  90. }
  91. printk("Got dbe at 0x%lxn", regs->cp0_epc);
  92. show_regs(regs);
  93. dump_tlb_all();
  94. while(1);
  95. force_sig(SIGBUS, current);
  96. }
  97. void __init
  98. bus_error_init(void)
  99. {
  100. int dummy;
  101. set_except_vector(6, handle_ibe);
  102. set_except_vector(7, handle_dbe);
  103. /* At this time nothing uses the DBE protection mechanism on the
  104.    Indy, so this here is needed to make the kernel link.  */
  105. get_dbe(dummy, (int *)KSEG0);
  106. }