irq-bcm2836.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Root interrupt controller for the BCM2836 (Raspberry Pi 2).
  4. *
  5. * Copyright 2015 Broadcom
  6. */
  7. #define LOCAL_CONTROL 0x000
  8. #define LOCAL_PRESCALER 0x008
  9. /*
  10. * The low 2 bits identify the CPU that the GPU IRQ goes to, and the
  11. * next 2 bits identify the CPU that the GPU FIQ goes to.
  12. */
  13. #define LOCAL_GPU_ROUTING 0x00c
  14. /* When setting bits 0-3, enables PMU interrupts on that CPU. */
  15. #define LOCAL_PM_ROUTING_SET 0x010
  16. /* When setting bits 0-3, disables PMU interrupts on that CPU. */
  17. #define LOCAL_PM_ROUTING_CLR 0x014
  18. /*
  19. * The low 4 bits of this are the CPU's timer IRQ enables, and the
  20. * next 4 bits are the CPU's timer FIQ enables (which override the IRQ
  21. * bits).
  22. */
  23. #define LOCAL_TIMER_INT_CONTROL0 0x040
  24. /*
  25. * The low 4 bits of this are the CPU's per-mailbox IRQ enables, and
  26. * the next 4 bits are the CPU's per-mailbox FIQ enables (which
  27. * override the IRQ bits).
  28. */
  29. #define LOCAL_MAILBOX_INT_CONTROL0 0x050
  30. /*
  31. * The CPU's interrupt status register. Bits are defined by the
  32. * LOCAL_IRQ_* bits below.
  33. */
  34. #define LOCAL_IRQ_PENDING0 0x060
  35. /* Same status bits as above, but for FIQ. */
  36. #define LOCAL_FIQ_PENDING0 0x070
  37. /*
  38. * Mailbox write-to-set bits. There are 16 mailboxes, 4 per CPU, and
  39. * these bits are organized by mailbox number and then CPU number. We
  40. * use mailbox 0 for IPIs. The mailbox's interrupt is raised while
  41. * any bit is set.
  42. */
  43. #define LOCAL_MAILBOX0_SET0 0x080
  44. #define LOCAL_MAILBOX3_SET0 0x08c
  45. /* Mailbox write-to-clear bits. */
  46. #define LOCAL_MAILBOX0_CLR0 0x0c0
  47. #define LOCAL_MAILBOX3_CLR0 0x0cc
  48. #define LOCAL_IRQ_CNTPSIRQ 0
  49. #define LOCAL_IRQ_CNTPNSIRQ 1
  50. #define LOCAL_IRQ_CNTHPIRQ 2
  51. #define LOCAL_IRQ_CNTVIRQ 3
  52. #define LOCAL_IRQ_MAILBOX0 4
  53. #define LOCAL_IRQ_MAILBOX1 5
  54. #define LOCAL_IRQ_MAILBOX2 6
  55. #define LOCAL_IRQ_MAILBOX3 7
  56. #define LOCAL_IRQ_GPU_FAST 8
  57. #define LOCAL_IRQ_PMU_FAST 9
  58. #define LAST_IRQ LOCAL_IRQ_PMU_FAST