gsi_emulation.h 5.7 KB

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