entry-macro.S 586 B

123456789101112131415161718192021222324252627
  1. /*
  2. * arch/arm/mach-w90x900/include/mach/entry-macro.S
  3. *
  4. * Low-level IRQ helper macros for W90P910-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. */
  11. #include <mach/hardware.h>
  12. #include <mach/regs-irq.h>
  13. .macro get_irqnr_preamble, base, tmp
  14. .endm
  15. .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
  16. mov \base, #AIC_BA
  17. ldr \irqnr, [\base, #AIC_IPER]
  18. ldr \irqnr, [\base, #AIC_ISNR]
  19. cmp \irqnr, #0
  20. .endm