arch_gicv3.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * arch/arm64/include/asm/arch_gicv3.h
  4. *
  5. * Copyright (C) 2015 ARM Ltd.
  6. */
  7. #ifndef __ASM_ARCH_GICV3_H
  8. #define __ASM_ARCH_GICV3_H
  9. #include <asm/sysreg.h>
  10. #ifndef __ASSEMBLY__
  11. #include <linux/irqchip/arm-gic-common.h>
  12. #include <linux/stringify.h>
  13. #include <asm/barrier.h>
  14. #include <asm/cacheflush.h>
  15. #define read_gicreg(r) read_sysreg_s(SYS_ ## r)
  16. #define write_gicreg(v, r) write_sysreg_s(v, SYS_ ## r)
  17. /*
  18. * Low-level accessors
  19. *
  20. * These system registers are 32 bits, but we make sure that the compiler
  21. * sets the GP register's most significant bits to 0 with an explicit cast.
  22. */
  23. static __always_inline void gic_write_dir(u32 irq)
  24. {
  25. write_sysreg_s(irq, SYS_ICC_DIR_EL1);
  26. isb();
  27. }
  28. static inline u64 gic_read_iar_common(void)
  29. {
  30. u64 irqstat;
  31. irqstat = read_sysreg_s(SYS_ICC_IAR1_EL1);
  32. dsb(sy);
  33. return irqstat;
  34. }
  35. /*
  36. * Cavium ThunderX erratum 23154
  37. *
  38. * The gicv3 of ThunderX requires a modified version for reading the
  39. * IAR status to ensure data synchronization (access to icc_iar1_el1
  40. * is not sync'ed before and after).
  41. *
  42. * Erratum 38545
  43. *
  44. * When a IAR register read races with a GIC interrupt RELEASE event,
  45. * GIC-CPU interface could wrongly return a valid INTID to the CPU
  46. * for an interrupt that is already released(non activated) instead of 0x3ff.
  47. *
  48. * To workaround this, return a valid interrupt ID only if there is a change
  49. * in the active priority list after the IAR read.
  50. *
  51. * Common function used for both the workarounds since,
  52. * 1. On Thunderx 88xx 1.x both erratas are applicable.
  53. * 2. Having extra nops doesn't add any side effects for Silicons where
  54. * erratum 23154 is not applicable.
  55. */
  56. static inline u64 gic_read_iar_cavium_thunderx(void)
  57. {
  58. u64 irqstat, apr;
  59. apr = read_sysreg_s(SYS_ICC_AP1R0_EL1);
  60. nops(8);
  61. irqstat = read_sysreg_s(SYS_ICC_IAR1_EL1);
  62. nops(4);
  63. mb();
  64. /* Max priority groups implemented is only 32 */
  65. if (likely(apr != read_sysreg_s(SYS_ICC_AP1R0_EL1)))
  66. return irqstat;
  67. return 0x3ff;
  68. }
  69. static inline void gic_write_ctlr(u32 val)
  70. {
  71. write_sysreg_s(val, SYS_ICC_CTLR_EL1);
  72. isb();
  73. }
  74. static inline u32 gic_read_ctlr(void)
  75. {
  76. return read_sysreg_s(SYS_ICC_CTLR_EL1);
  77. }
  78. static inline void gic_write_grpen1(u32 val)
  79. {
  80. write_sysreg_s(val, SYS_ICC_IGRPEN1_EL1);
  81. isb();
  82. }
  83. static inline void gic_write_sgi1r(u64 val)
  84. {
  85. write_sysreg_s(val, SYS_ICC_SGI1R_EL1);
  86. }
  87. static inline u32 gic_read_sre(void)
  88. {
  89. return read_sysreg_s(SYS_ICC_SRE_EL1);
  90. }
  91. static inline void gic_write_sre(u32 val)
  92. {
  93. write_sysreg_s(val, SYS_ICC_SRE_EL1);
  94. isb();
  95. }
  96. static inline void gic_write_bpr1(u32 val)
  97. {
  98. write_sysreg_s(val, SYS_ICC_BPR1_EL1);
  99. }
  100. static inline u32 gic_read_pmr(void)
  101. {
  102. return read_sysreg_s(SYS_ICC_PMR_EL1);
  103. }
  104. static __always_inline void gic_write_pmr(u32 val)
  105. {
  106. write_sysreg_s(val, SYS_ICC_PMR_EL1);
  107. }
  108. static inline u32 gic_read_rpr(void)
  109. {
  110. return read_sysreg_s(SYS_ICC_RPR_EL1);
  111. }
  112. #define gic_read_typer(c) readq_relaxed(c)
  113. #define gic_write_irouter(v, c) writeq_relaxed(v, c)
  114. #define gic_read_lpir(c) readq_relaxed(c)
  115. #define gic_write_lpir(v, c) writeq_relaxed(v, c)
  116. #define gic_flush_dcache_to_poc(a,l) \
  117. dcache_clean_inval_poc((unsigned long)(a), (unsigned long)(a)+(l))
  118. #define gits_read_baser(c) readq_relaxed(c)
  119. #define gits_write_baser(v, c) writeq_relaxed(v, c)
  120. #define gits_read_cbaser(c) readq_relaxed(c)
  121. #define gits_write_cbaser(v, c) writeq_relaxed(v, c)
  122. #define gits_write_cwriter(v, c) writeq_relaxed(v, c)
  123. #define gicr_read_propbaser(c) readq_relaxed(c)
  124. #define gicr_write_propbaser(v, c) writeq_relaxed(v, c)
  125. #define gicr_write_pendbaser(v, c) writeq_relaxed(v, c)
  126. #define gicr_read_pendbaser(c) readq_relaxed(c)
  127. #define gicr_write_vpropbaser(v, c) writeq_relaxed(v, c)
  128. #define gicr_read_vpropbaser(c) readq_relaxed(c)
  129. #define gicr_write_vpendbaser(v, c) writeq_relaxed(v, c)
  130. #define gicr_read_vpendbaser(c) readq_relaxed(c)
  131. static inline bool gic_prio_masking_enabled(void)
  132. {
  133. return system_uses_irq_prio_masking();
  134. }
  135. static inline void gic_pmr_mask_irqs(void)
  136. {
  137. BUILD_BUG_ON(GICD_INT_DEF_PRI < (__GIC_PRIO_IRQOFF |
  138. GIC_PRIO_PSR_I_SET));
  139. BUILD_BUG_ON(GICD_INT_DEF_PRI >= GIC_PRIO_IRQON);
  140. /*
  141. * Need to make sure IRQON allows IRQs when SCR_EL3.FIQ is cleared
  142. * and non-secure PMR accesses are not subject to the shifts that
  143. * are applied to IRQ priorities
  144. */
  145. BUILD_BUG_ON((0x80 | (GICD_INT_DEF_PRI >> 1)) >= GIC_PRIO_IRQON);
  146. /*
  147. * Same situation as above, but now we make sure that we can mask
  148. * regular interrupts.
  149. */
  150. BUILD_BUG_ON((0x80 | (GICD_INT_DEF_PRI >> 1)) < (__GIC_PRIO_IRQOFF_NS |
  151. GIC_PRIO_PSR_I_SET));
  152. gic_write_pmr(GIC_PRIO_IRQOFF);
  153. }
  154. static inline void gic_arch_enable_irqs(void)
  155. {
  156. asm volatile ("msr daifclr, #3" : : : "memory");
  157. }
  158. #endif /* __ASSEMBLY__ */
  159. #endif /* __ASM_ARCH_GICV3_H */