entry-macro-gic.S 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * arch/arm/include/asm/hardware/entry-macro-gic.S
  3. *
  4. * Low-level IRQ helper macros for GIC
  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/gic.h>
  11. #ifndef HAVE_GET_IRQNR_PREAMBLE
  12. .macro get_irqnr_preamble, base, tmp
  13. ldr \base, =gic_cpu_base_addr
  14. ldr \base, [\base]
  15. .endm
  16. #endif
  17. /*
  18. * The interrupt numbering scheme is defined in the
  19. * interrupt controller spec. To wit:
  20. *
  21. * Interrupts 0-15 are IPI
  22. * 16-31 are local. We allow 30 to be used for the watchdog.
  23. * 32-1020 are global
  24. * 1021-1022 are reserved
  25. * 1023 is "spurious" (no interrupt)
  26. *
  27. * A simple read from the controller will tell us the number of the highest
  28. * priority enabled interrupt. We then just need to check whether it is in the
  29. * valid range for an IRQ (30-1020 inclusive).
  30. */
  31. .macro get_irqnr_and_base, irqnr, irqstat, base, tmp
  32. ldr \irqstat, [\base, #GIC_CPU_INTACK]
  33. /* bits 12-10 = src CPU, 9-0 = int # */
  34. ldr \tmp, =1021
  35. bic \irqnr, \irqstat, #0x1c00
  36. cmp \irqnr, #15
  37. cmpcc \irqnr, \irqnr
  38. cmpne \irqnr, \tmp
  39. cmpcs \irqnr, \irqnr
  40. .endm
  41. /* We assume that irqstat (the raw value of the IRQ acknowledge
  42. * register) is preserved from the macro above.
  43. * If there is an IPI, we immediately signal end of interrupt on the
  44. * controller, since this requires the original irqstat value which
  45. * we won't easily be able to recreate later.
  46. */
  47. .macro test_for_ipi, irqnr, irqstat, base, tmp
  48. bic \irqnr, \irqstat, #0x1c00
  49. cmp \irqnr, #16
  50. strcc \irqstat, [\base, #GIC_CPU_EOI]
  51. cmpcs \irqnr, \irqnr
  52. .endm