ip27-berr.c 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. * Copyright (C) 2002 Maciej W. Rozycki
  9. */
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <linux/signal.h> /* for SIGBUS */
  13. #include <linux/sched.h> /* schow_regs(), force_sig() */
  14. #include <linux/sched/debug.h>
  15. #include <linux/sched/signal.h>
  16. #include <asm/ptrace.h>
  17. #include <asm/sn/addrs.h>
  18. #include <asm/sn/agent.h>
  19. #include <asm/sn/arch.h>
  20. #include <asm/tlbdebug.h>
  21. #include <asm/traps.h>
  22. #include <linux/uaccess.h>
  23. #include "ip27-common.h"
  24. static void dump_hub_information(unsigned long errst0, unsigned long errst1)
  25. {
  26. static char *err_type[2][8] = {
  27. { NULL, "Uncached Partial Read PRERR", "DERR", "Read Timeout",
  28. NULL, NULL, NULL, NULL },
  29. { "WERR", "Uncached Partial Write", "PWERR", "Write Timeout",
  30. NULL, NULL, NULL, NULL }
  31. };
  32. union pi_err_stat0 st0;
  33. union pi_err_stat1 st1;
  34. st0.pi_stat0_word = errst0;
  35. st1.pi_stat1_word = errst1;
  36. if (!st0.pi_stat0_fmt.s0_valid) {
  37. pr_info("Hub does not contain valid error information\n");
  38. return;
  39. }
  40. pr_info("Hub has valid error information:\n");
  41. if (st0.pi_stat0_fmt.s0_ovr_run)
  42. pr_info("Overrun is set. Error stack may contain additional "
  43. "information.\n");
  44. pr_info("Hub error address is %08lx\n",
  45. (unsigned long)st0.pi_stat0_fmt.s0_addr);
  46. pr_info("Incoming message command 0x%lx\n",
  47. (unsigned long)st0.pi_stat0_fmt.s0_cmd);
  48. pr_info("Supplemental field of incoming message is 0x%lx\n",
  49. (unsigned long)st0.pi_stat0_fmt.s0_supl);
  50. pr_info("T5 Rn (for RRB only) is 0x%lx\n",
  51. (unsigned long)st0.pi_stat0_fmt.s0_t5_req);
  52. pr_info("Error type is %s\n", err_type[st1.pi_stat1_fmt.s1_rw_rb]
  53. [st0.pi_stat0_fmt.s0_err_type] ? : "invalid");
  54. }
  55. static int ip27_be_handler(struct pt_regs *regs, int is_fixup)
  56. {
  57. unsigned long errst0, errst1;
  58. int data = regs->cp0_cause & 4;
  59. int cpu = LOCAL_HUB_L(PI_CPU_NUM);
  60. if (is_fixup)
  61. return MIPS_BE_FIXUP;
  62. printk("Slice %c got %cbe at 0x%lx\n", 'A' + cpu, data ? 'd' : 'i',
  63. regs->cp0_epc);
  64. printk("Hub information:\n");
  65. printk("ERR_INT_PEND = 0x%06llx\n", LOCAL_HUB_L(PI_ERR_INT_PEND));
  66. errst0 = LOCAL_HUB_L(cpu ? PI_ERR_STATUS0_B : PI_ERR_STATUS0_A);
  67. errst1 = LOCAL_HUB_L(cpu ? PI_ERR_STATUS1_B : PI_ERR_STATUS1_A);
  68. dump_hub_information(errst0, errst1);
  69. show_regs(regs);
  70. dump_tlb_all();
  71. while(1);
  72. force_sig(SIGBUS);
  73. }
  74. void __init ip27_be_init(void)
  75. {
  76. /* XXX Initialize all the Hub & Bridge error handling here. */
  77. int cpu = LOCAL_HUB_L(PI_CPU_NUM);
  78. int cpuoff = cpu << 8;
  79. mips_set_be_handler(ip27_be_handler);
  80. LOCAL_HUB_S(PI_ERR_INT_PEND,
  81. cpu ? PI_ERR_CLEAR_ALL_B : PI_ERR_CLEAR_ALL_A);
  82. LOCAL_HUB_S(PI_ERR_INT_MASK_A + cpuoff, 0);
  83. LOCAL_HUB_S(PI_ERR_STACK_ADDR_A + cpuoff, 0);
  84. LOCAL_HUB_S(PI_ERR_STACK_SIZE, 0); /* Disable error stack */
  85. LOCAL_HUB_S(PI_SYSAD_ERRCHK_EN, PI_SYSAD_CHECK_ALL);
  86. }