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

嵌入式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 <asm/uaccess.h>
  12. #include <asm/paccess.h>
  13. #include <asm/addrspace.h>
  14. #include <asm/ptrace.h>
  15. /* XXX I have no idea what this does --kmw */
  16. extern asmlinkage void handle_ibe(void);
  17. extern asmlinkage void handle_dbe(void);
  18. extern const struct exception_table_entry __start___dbe_table[];
  19. extern const struct exception_table_entry __stop___dbe_table[];
  20. static inline unsigned long
  21. search_one_table(const struct exception_table_entry *first,
  22.                  const struct exception_table_entry *last,
  23.                  unsigned long value)
  24. {
  25. while (first <= last) {
  26. const struct exception_table_entry *mid;
  27. long diff;
  28. mid = (last - first) / 2 + first;
  29. diff = mid->insn - value;
  30. if (diff == 0)
  31. return mid->nextinsn;
  32. else if (diff < 0)
  33. first = mid+1;
  34. else
  35. last = mid-1;
  36. }
  37. return 0;
  38. }
  39. static inline unsigned long
  40. search_dbe_table(unsigned long addr)
  41. {
  42. unsigned long ret;
  43. /* There is only the kernel to search.  */
  44. ret = search_one_table(__start___dbe_table, __stop___dbe_table-1, addr);
  45. if (ret) return ret;
  46. return 0;
  47. }
  48. void do_ibe(struct pt_regs *regs)
  49. {
  50. printk("Got ibe at 0x%lxn", regs->cp0_epc);
  51. show_regs(regs);
  52. dump_tlb_addr(regs->cp0_epc);
  53. force_sig(SIGBUS, current);
  54. while(1);
  55. }
  56. void do_dbe(struct pt_regs *regs)
  57. {
  58. unsigned long fixup;
  59. fixup = search_dbe_table(regs->cp0_epc);
  60. if (fixup) {
  61. long new_epc;
  62. new_epc = fixup_exception(dpf_reg, fixup, regs->cp0_epc);
  63. regs->cp0_epc = new_epc;
  64. return;
  65. }
  66. printk("Got dbe at 0x%lxn", regs->cp0_epc);
  67. show_regs(regs);
  68. dump_tlb_all();
  69. while(1);
  70. force_sig(SIGBUS, current);
  71. }
  72. void __init
  73. bus_error_init(void)
  74. {
  75. int dummy;
  76. set_except_vector(6, handle_ibe);
  77. set_except_vector(7, handle_dbe);
  78. /* At this time nothing uses the DBE protection mechanism on the
  79.    O2, so this here is needed to make the kernel link.  */
  80. get_dbe(dummy, (int *)KSEG0);
  81. }