entry-macro.S 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * arch/arm/mach-omap1/include/mach/entry-macro.S
  3. *
  4. * Low-level IRQ helper macros for OMAP-based platforms
  5. *
  6. * Copyright (C) 2009 Texas Instruments
  7. *
  8. * This file is licensed under the terms of the GNU General Public
  9. * License version 2. This program is licensed "as is" without any
  10. * warranty of any kind, whether express or implied.
  11. */
  12. #include <mach/hardware.h>
  13. #include <mach/io.h>
  14. #include <mach/irqs.h>
  15. #include <asm/hardware/gic.h>
  16. .macro disable_fiq
  17. .endm
  18. .macro get_irqnr_preamble, base, tmp
  19. .endm
  20. .macro arch_ret_to_user, tmp1, tmp2
  21. .endm
  22. .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
  23. ldr \base, =OMAP1_IO_ADDRESS(OMAP_IH1_BASE)
  24. ldr \irqnr, [\base, #IRQ_ITR_REG_OFFSET]
  25. ldr \tmp, [\base, #IRQ_MIR_REG_OFFSET]
  26. mov \irqstat, #0xffffffff
  27. bic \tmp, \irqstat, \tmp
  28. tst \irqnr, \tmp
  29. beq 1510f
  30. ldr \irqnr, [\base, #IRQ_SIR_FIQ_REG_OFFSET]
  31. ldr \tmp, =omap_irq_flags @ irq flags address
  32. ldr \tmp, [\tmp, #0] @ irq flags value
  33. cmp \irqnr, #0
  34. ldreq \irqnr, [\base, #IRQ_SIR_IRQ_REG_OFFSET]
  35. cmpeq \irqnr, \tmp
  36. ldreq \base, =OMAP1_IO_ADDRESS(OMAP_IH2_BASE)
  37. ldreq \irqnr, [\base, #IRQ_SIR_IRQ_REG_OFFSET]
  38. addeqs \irqnr, \irqnr, #32
  39. 1510:
  40. .endm