entry-macro.S 896 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * include/asm-arm/arch-imx/entry-macro.S
  3. *
  4. * Low-level IRQ helper macros for iMX-based platforms
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #include <asm/hardware.h>
  11. .macro disable_fiq
  12. .endm
  13. #define AITC_NIVECSR 0x40
  14. .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
  15. ldr \irqstat, =IO_ADDRESS(IMX_AITC_BASE)
  16. @ Load offset & priority of the highest priority
  17. @ interrupt pending.
  18. ldr \irqnr, [\irqstat, #AITC_NIVECSR]
  19. @ Shift off the priority leaving the offset or
  20. @ "interrupt number"
  21. mov \irqnr, \irqnr, lsr #16
  22. ldr \irqstat, =1 @ dummy compare
  23. ldr \base, =0xFFFF // invalid interrupt
  24. cmp \irqnr, \base
  25. bne 1001f
  26. ldr \irqstat, =0
  27. 1001:
  28. tst \irqstat, #1 @ to make the condition code = TRUE
  29. .endm