entry-macro.S 959 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * arch/arm/mach-at91/include/mach/entry-macro.S
  3. *
  4. * Copyright (C) 2003-2005 SAN People
  5. *
  6. * Low-level IRQ helper macros for AT91RM9200 platforms
  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/at91_aic.h>
  14. .macro get_irqnr_preamble, base, tmp
  15. ldr \base, =at91_aic_base @ base virtual address of AIC peripheral
  16. ldr \base, [\base]
  17. .endm
  18. .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
  19. ldr \irqnr, [\base, #AT91_AIC_IVR] @ read IRQ vector register: de-asserts nIRQ to processor (and clears interrupt)
  20. ldr \irqstat, [\base, #AT91_AIC_ISR] @ read interrupt source number
  21. teq \irqstat, #0 @ ISR is 0 when no current interrupt, or spurious interrupt
  22. streq \tmp, [\base, #AT91_AIC_EOICR] @ not going to be handled further, then ACK it now.
  23. .endm