exception.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * (C) Copyright 2007 Michal Simek
  3. *
  4. * Michal SIMEK <monstr@monstr.eu>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #include <common.h>
  9. #include <asm/asm.h>
  10. void _hw_exception_handler (void)
  11. {
  12. int address = 0;
  13. int state = 0;
  14. /* loading address of exception EAR */
  15. MFS(address, rear);
  16. /* loading excetpion state register ESR */
  17. MFS(state, resr);
  18. printf("Hardware exception at 0x%x address\n", address);
  19. R17(address);
  20. printf("Return address from exception 0x%x\n", address);
  21. switch (state & 0x1f) { /* mask on exception cause */
  22. case 0x1:
  23. puts("Unaligned data access exception\n");
  24. break;
  25. case 0x2:
  26. puts("Illegal op-code exception\n");
  27. break;
  28. case 0x3:
  29. puts("Instruction bus error exception\n");
  30. break;
  31. case 0x4:
  32. puts("Data bus error exception\n");
  33. break;
  34. case 0x5:
  35. puts("Divide by zero exception\n");
  36. break;
  37. #ifdef MICROBLAZE_V5
  38. case 0x7:
  39. puts("Priviledged or stack protection violation exception\n");
  40. break;
  41. case 0x1000:
  42. puts("Exception in delay slot\n");
  43. break;
  44. #endif
  45. default:
  46. puts("Undefined cause\n");
  47. break;
  48. }
  49. printf("Unaligned %sword access\n", ((state & 0x800) ? "" : "half"));
  50. printf("Unaligned %s access\n", ((state & 0x400) ? "store" : "load"));
  51. printf("Register R%x\n", (state & 0x3E) >> 5);
  52. hang();
  53. }
  54. #ifdef CONFIG_SYS_USR_EXCEP
  55. void _exception_handler (void)
  56. {
  57. puts("User vector_exception\n");
  58. hang();
  59. }
  60. #endif