gsi_emulation.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #if !defined(_GSI_EMULATION_H_)
  6. # define _GSI_EMULATION_H_
  7. # include <linux/interrupt.h>
  8. # include "gsi.h"
  9. # include "gsi_reg.h"
  10. #if defined(CONFIG_IPA_EMULATION)
  11. # include "gsi_emulation_stubs.h"
  12. #endif
  13. # define gsi_emu_readl(c) (readl_relaxed(c))
  14. # define gsi_emu_writel(v, c) ({ __iowmb(); writel_relaxed((v), (c)); })
  15. # define CNTRLR_BASE 0
  16. /*
  17. * The following file contains definitions and declarations that are
  18. * germane only to the IPA emulation system, which is run from an X86
  19. * environment. Declaration's for non-X86 (ie. arm) are merely stubs
  20. * to facilitate compile and link.
  21. *
  22. * Interrupt controller registers.
  23. * Descriptions taken from the EMULATION interrupt controller SWI.
  24. * - There is only one Master Enable register
  25. * - Each group of 32 interrupt lines (range) is controlled by 8 registers,
  26. * which are consecutive in memory:
  27. * GE_INT_ENABLE_n
  28. * GE_INT_ENABLE_CLEAR_n
  29. * GE_INT_ENABLE_SET_n
  30. * GE_INT_TYPE_n
  31. * GE_IRQ_STATUS_n
  32. * GE_RAW_STATUS_n
  33. * GE_INT_CLEAR_n
  34. * GE_SOFT_INT_n
  35. * - After the above 8 registers, there are the registers of the next
  36. * group (range) of 32 interrupt lines, and so on.
  37. */
  38. /** @brief The interrupt controller version and interrupt count register.
  39. * Specifies interrupt controller version (upper 16 bits) and the
  40. * number of interrupt lines supported by HW (lower 16 bits).
  41. */
  42. # define GE_INT_CTL_VER_CNT \
  43. (CNTRLR_BASE + 0x0000)
  44. /** @brief Enable or disable physical IRQ output signal to the system,
  45. * not affecting any status registers.
  46. *
  47. * 0x0 : DISABLE IRQ output disabled
  48. * 0x1 : ENABLE IRQ output enabled
  49. */
  50. # define GE_INT_OUT_ENABLE \
  51. (CNTRLR_BASE + 0x0004)
  52. /** @brief The IRQ master enable register.
  53. * Bit #0: IRQ_ENABLE, set 0 to disable, 1 to enable.
  54. */
  55. # define GE_INT_MASTER_ENABLE \
  56. (CNTRLR_BASE + 0x0008)
  57. # define GE_INT_MASTER_STATUS \
  58. (CNTRLR_BASE + 0x000C)
  59. /** @brief Each bit disables (bit=0, default) or enables (bit=1) the
  60. * corresponding interrupt source
  61. */
  62. # define GE_INT_ENABLE_n(n) \
  63. (CNTRLR_BASE + 0x0010 + 0x20 * (n))
  64. /** @brief Write bit=1 to clear (to 0) the corresponding bit(s) in INT_ENABLE.
  65. * Does nothing for bit=0
  66. */
  67. # define GE_INT_ENABLE_CLEAR_n(n) \
  68. (CNTRLR_BASE + 0x0014 + 0x20 * (n))
  69. /** @brief Write bit=1 to set (to 1) the corresponding bit(s) in INT_ENABLE.
  70. * Does nothing for bit=0
  71. */
  72. # define GE_INT_ENABLE_SET_n(n) \
  73. (CNTRLR_BASE + 0x0018 + 0x20 * (n))
  74. /** @brief Select level (bit=0, default) or edge (bit=1) sensitive input
  75. * detection logic for each corresponding interrupt source
  76. */
  77. # define GE_INT_TYPE_n(n) \
  78. (CNTRLR_BASE + 0x001C + 0x20 * (n))
  79. /** @brief Shows the interrupt sources captured in RAW_STATUS that have been
  80. * steered to irq_n by INT_SELECT. Interrupts must also be enabled by
  81. * INT_ENABLE and MASTER_ENABLE. Read only register.
  82. * Bit values: 1=active, 0=inactive
  83. */
  84. # define GE_IRQ_STATUS_n(n) \
  85. (CNTRLR_BASE + 0x0020 + 0x20 * (n))
  86. /** @brief Shows the interrupt sources that have been latched by the input
  87. * logic of the Interrupt Controller. Read only register.
  88. * Bit values: 1=active, 0=inactive
  89. */
  90. # define GE_RAW_STATUS_n(n) \
  91. (CNTRLR_BASE + 0x0024 + 0x20 * (n))
  92. /** @brief Write bit=1 to clear the corresponding bit(s) in RAW_STATUS.
  93. * Does nothing for bit=0
  94. */
  95. # define GE_INT_CLEAR_n(n) \
  96. (CNTRLR_BASE + 0x0028 + 0x20 * (n))
  97. /** @brief Write bit=1 to set the corresponding bit(s) in RAW_STATUS.
  98. * Does nothing for bit=0.
  99. * @note Only functional for edge detected interrupts
  100. */
  101. # define GE_SOFT_INT_n(n) \
  102. (CNTRLR_BASE + 0x002C + 0x20 * (n))
  103. /** @brief Maximal number of ranges in SW. Each range supports 32 interrupt
  104. * lines. If HW is extended considerably, increase this value
  105. */
  106. # define DEO_IC_MAX_RANGE_CNT 8
  107. /** @brief Size of the registers of one range in memory, in bytes */
  108. # define DEO_IC_RANGE_MEM_SIZE 32 /* SWI: 8 registers, no gaps */
  109. /** @brief Minimal Interrupt controller HW version */
  110. # define DEO_IC_INT_CTL_VER_MIN 0x0102
  111. #if defined(CONFIG_IPA_EMULATION) /* declarations to follow */
  112. /*
  113. * *****************************************************************************
  114. * The following used to set up the EMULATION interrupt controller...
  115. * *****************************************************************************
  116. */
  117. int setup_emulator_cntrlr(
  118. void __iomem *intcntrlr_base,
  119. u32 intcntrlr_mem_size);
  120. /*
  121. * *****************************************************************************
  122. * The following for EMULATION hard irq...
  123. * *****************************************************************************
  124. */
  125. irqreturn_t emulator_hard_irq_isr(
  126. int irq,
  127. void *ctxt);
  128. /*
  129. * *****************************************************************************
  130. * The following for EMULATION soft irq...
  131. * *****************************************************************************
  132. */
  133. irqreturn_t emulator_soft_irq_isr(
  134. int irq,
  135. void *ctxt);
  136. # else /* #if !defined(CONFIG_IPA_EMULATION) then definitions to follow */
  137. static inline int setup_emulator_cntrlr(
  138. void __iomem *intcntrlr_base,
  139. u32 intcntrlr_mem_size)
  140. {
  141. return 0;
  142. }
  143. static inline irqreturn_t emulator_hard_irq_isr(
  144. int irq,
  145. void *ctxt)
  146. {
  147. return IRQ_NONE;
  148. }
  149. static inline irqreturn_t emulator_soft_irq_isr(
  150. int irq,
  151. void *ctxt)
  152. {
  153. return IRQ_HANDLED;
  154. }
  155. # endif /* #if defined(CONFIG_IPA_EMULATION) */
  156. #endif /* #if !defined(_GSI_EMULATION_H_) */