ivt.S 820 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. .section .ivt, "ax",@progbits
  7. .align 4
  8. _ivt:
  9. /* Critical system events */
  10. j _start /* 0 - 0x000 */
  11. j memory_error /* 1 - 0x008 */
  12. j instruction_error /* 2 - 0x010 */
  13. /* Device interrupts */
  14. .rept 29
  15. j interrupt_handler /* 3:31 - 0x018:0xF8 */
  16. .endr
  17. /* Exceptions */
  18. j EV_MachineCheck /* 0x100, Fatal Machine check (0x20) */
  19. j EV_TLBMissI /* 0x108, Intruction TLB miss (0x21) */
  20. j EV_TLBMissD /* 0x110, Data TLB miss (0x22) */
  21. j EV_TLBProtV /* 0x118, Protection Violation (0x23)
  22. or Misaligned Access */
  23. j EV_PrivilegeV /* 0x120, Privilege Violation (0x24) */
  24. j EV_Trap /* 0x128, Trap exception (0x25) */
  25. j EV_Extension /* 0x130, Extn Intruction Excp (0x26) */