exception.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright (C) 2005-2006 Atmel Corporation
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <asm/sysreg.h>
  24. #include <asm/ptrace.h>
  25. DECLARE_GLOBAL_DATA_PTR;
  26. static const char * const cpu_modes[8] = {
  27. "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1",
  28. "Interrupt level 2", "Interrupt level 3", "Exception", "NMI"
  29. };
  30. static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
  31. {
  32. unsigned long p;
  33. int i;
  34. printf("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
  35. for (p = bottom & ~31; p < top; ) {
  36. printf("%04lx: ", p & 0xffff);
  37. for (i = 0; i < 8; i++, p += 4) {
  38. unsigned int val;
  39. if (p < bottom || p >= top)
  40. printf(" ");
  41. else {
  42. val = *(unsigned long *)p;
  43. printf("%08x ", val);
  44. }
  45. }
  46. printf("\n");
  47. }
  48. }
  49. void do_unknown_exception(unsigned int ecr, struct pt_regs *regs)
  50. {
  51. unsigned int mode;
  52. printf("\n *** Unhandled exception %u at PC=0x%08lx\n", ecr, regs->pc);
  53. switch (ecr) {
  54. case ECR_BUS_ERROR_WRITE:
  55. case ECR_BUS_ERROR_READ:
  56. printf("Bus error at address 0x%08lx\n",
  57. sysreg_read(BEAR));
  58. break;
  59. case ECR_TLB_MULTIPLE:
  60. case ECR_ADDR_ALIGN_X:
  61. case ECR_PROTECTION_X:
  62. case ECR_ADDR_ALIGN_R:
  63. case ECR_ADDR_ALIGN_W:
  64. case ECR_PROTECTION_R:
  65. case ECR_PROTECTION_W:
  66. case ECR_DTLB_MODIFIED:
  67. case ECR_TLB_MISS_X:
  68. case ECR_TLB_MISS_R:
  69. case ECR_TLB_MISS_W:
  70. printf("MMU exception at address 0x%08lx\n",
  71. sysreg_read(TLBEAR));
  72. break;
  73. }
  74. printf(" pc: %08lx lr: %08lx sp: %08lx r12: %08lx\n",
  75. regs->pc, regs->lr, regs->sp, regs->r12);
  76. printf(" r11: %08lx r10: %08lx r9: %08lx r8: %08lx\n",
  77. regs->r11, regs->r10, regs->r9, regs->r8);
  78. printf(" r7: %08lx r6: %08lx r5: %08lx r4: %08lx\n",
  79. regs->r7, regs->r6, regs->r5, regs->r4);
  80. printf(" r3: %08lx r2: %08lx r1: %08lx r0: %08lx\n",
  81. regs->r3, regs->r2, regs->r1, regs->r0);
  82. printf("Flags: %c%c%c%c%c\n",
  83. regs->sr & SR_Q ? 'Q' : 'q',
  84. regs->sr & SR_V ? 'V' : 'v',
  85. regs->sr & SR_N ? 'N' : 'n',
  86. regs->sr & SR_Z ? 'Z' : 'z',
  87. regs->sr & SR_C ? 'C' : 'c');
  88. printf("Mode bits: %c%c%c%c%c%c%c%c%c\n",
  89. regs->sr & SR_H ? 'H' : 'h',
  90. regs->sr & SR_R ? 'R' : 'r',
  91. regs->sr & SR_J ? 'J' : 'j',
  92. regs->sr & SR_EM ? 'E' : 'e',
  93. regs->sr & SR_I3M ? '3' : '.',
  94. regs->sr & SR_I2M ? '2' : '.',
  95. regs->sr & SR_I1M ? '1' : '.',
  96. regs->sr & SR_I0M ? '0' : '.',
  97. regs->sr & SR_GM ? 'G' : 'g');
  98. mode = (regs->sr >> SYSREG_M0_OFFSET) & 7;
  99. printf("CPU Mode: %s\n", cpu_modes[mode]);
  100. /* Avoid exception loops */
  101. if (regs->sp < (gd->stack_end - CONFIG_STACKSIZE)
  102. || regs->sp >= gd->stack_end)
  103. printf("\nStack pointer seems bogus, won't do stack dump\n");
  104. else
  105. dump_mem("\nStack: ", regs->sp, gd->stack_end);
  106. panic("Unhandled exception\n");
  107. }