kvm_arm.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /*
  2. * Copyright (C) 2012 - Virtual Open Systems and Columbia University
  3. * Author: Christoffer Dall <c.dall@virtualopensystems.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License, version 2, as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. */
  18. #ifndef __ARM_KVM_ARM_H__
  19. #define __ARM_KVM_ARM_H__
  20. #include <linux/types.h>
  21. /* Hyp Configuration Register (HCR) bits */
  22. #define HCR_TGE (1 << 27)
  23. #define HCR_TVM (1 << 26)
  24. #define HCR_TTLB (1 << 25)
  25. #define HCR_TPU (1 << 24)
  26. #define HCR_TPC (1 << 23)
  27. #define HCR_TSW (1 << 22)
  28. #define HCR_TAC (1 << 21)
  29. #define HCR_TIDCP (1 << 20)
  30. #define HCR_TSC (1 << 19)
  31. #define HCR_TID3 (1 << 18)
  32. #define HCR_TID2 (1 << 17)
  33. #define HCR_TID1 (1 << 16)
  34. #define HCR_TID0 (1 << 15)
  35. #define HCR_TWE (1 << 14)
  36. #define HCR_TWI (1 << 13)
  37. #define HCR_DC (1 << 12)
  38. #define HCR_BSU (3 << 10)
  39. #define HCR_BSU_IS (1 << 10)
  40. #define HCR_FB (1 << 9)
  41. #define HCR_VA (1 << 8)
  42. #define HCR_VI (1 << 7)
  43. #define HCR_VF (1 << 6)
  44. #define HCR_AMO (1 << 5)
  45. #define HCR_IMO (1 << 4)
  46. #define HCR_FMO (1 << 3)
  47. #define HCR_PTW (1 << 2)
  48. #define HCR_SWIO (1 << 1)
  49. #define HCR_VM 1
  50. /*
  51. * The bits we set in HCR:
  52. * TAC: Trap ACTLR
  53. * TSC: Trap SMC
  54. * TSW: Trap cache operations by set/way
  55. * TWI: Trap WFI
  56. * TIDCP: Trap L2CTLR/L2ECTLR
  57. * BSU_IS: Upgrade barriers to the inner shareable domain
  58. * FB: Force broadcast of all maintainance operations
  59. * AMO: Override CPSR.A and enable signaling with VA
  60. * IMO: Override CPSR.I and enable signaling with VI
  61. * FMO: Override CPSR.F and enable signaling with VF
  62. * SWIO: Turn set/way invalidates into set/way clean+invalidate
  63. */
  64. #define HCR_GUEST_MASK (HCR_TSC | HCR_TSW | HCR_TWI | HCR_VM | HCR_BSU_IS | \
  65. HCR_FB | HCR_TAC | HCR_AMO | HCR_IMO | HCR_FMO | \
  66. HCR_SWIO | HCR_TIDCP)
  67. #define HCR_VIRT_EXCP_MASK (HCR_VA | HCR_VI | HCR_VF)
  68. /* System Control Register (SCTLR) bits */
  69. #define SCTLR_TE (1 << 30)
  70. #define SCTLR_EE (1 << 25)
  71. #define SCTLR_V (1 << 13)
  72. /* Hyp System Control Register (HSCTLR) bits */
  73. #define HSCTLR_TE (1 << 30)
  74. #define HSCTLR_EE (1 << 25)
  75. #define HSCTLR_FI (1 << 21)
  76. #define HSCTLR_WXN (1 << 19)
  77. #define HSCTLR_I (1 << 12)
  78. #define HSCTLR_C (1 << 2)
  79. #define HSCTLR_A (1 << 1)
  80. #define HSCTLR_M 1
  81. #define HSCTLR_MASK (HSCTLR_M | HSCTLR_A | HSCTLR_C | HSCTLR_I | \
  82. HSCTLR_WXN | HSCTLR_FI | HSCTLR_EE | HSCTLR_TE)
  83. /* TTBCR and HTCR Registers bits */
  84. #define TTBCR_EAE (1 << 31)
  85. #define TTBCR_IMP (1 << 30)
  86. #define TTBCR_SH1 (3 << 28)
  87. #define TTBCR_ORGN1 (3 << 26)
  88. #define TTBCR_IRGN1 (3 << 24)
  89. #define TTBCR_EPD1 (1 << 23)
  90. #define TTBCR_A1 (1 << 22)
  91. #define TTBCR_T1SZ (3 << 16)
  92. #define TTBCR_SH0 (3 << 12)
  93. #define TTBCR_ORGN0 (3 << 10)
  94. #define TTBCR_IRGN0 (3 << 8)
  95. #define TTBCR_EPD0 (1 << 7)
  96. #define TTBCR_T0SZ 3
  97. #define HTCR_MASK (TTBCR_T0SZ | TTBCR_IRGN0 | TTBCR_ORGN0 | TTBCR_SH0)
  98. /* Hyp System Trap Register */
  99. #define HSTR_T(x) (1 << x)
  100. #define HSTR_TTEE (1 << 16)
  101. #define HSTR_TJDBX (1 << 17)
  102. /* Hyp Coprocessor Trap Register */
  103. #define HCPTR_TCP(x) (1 << x)
  104. #define HCPTR_TCP_MASK (0x3fff)
  105. #define HCPTR_TASE (1 << 15)
  106. #define HCPTR_TTA (1 << 20)
  107. #define HCPTR_TCPAC (1 << 31)
  108. /* Hyp Debug Configuration Register bits */
  109. #define HDCR_TDRA (1 << 11)
  110. #define HDCR_TDOSA (1 << 10)
  111. #define HDCR_TDA (1 << 9)
  112. #define HDCR_TDE (1 << 8)
  113. #define HDCR_HPME (1 << 7)
  114. #define HDCR_TPM (1 << 6)
  115. #define HDCR_TPMCR (1 << 5)
  116. #define HDCR_HPMN_MASK (0x1F)
  117. /*
  118. * The architecture supports 40-bit IPA as input to the 2nd stage translations
  119. * and PTRS_PER_S2_PGD becomes 1024, because each entry covers 1GB of address
  120. * space.
  121. */
  122. #define KVM_PHYS_SHIFT (40)
  123. #define KVM_PHYS_SIZE (1ULL << KVM_PHYS_SHIFT)
  124. #define KVM_PHYS_MASK (KVM_PHYS_SIZE - 1ULL)
  125. #define PTRS_PER_S2_PGD (1ULL << (KVM_PHYS_SHIFT - 30))
  126. #define S2_PGD_ORDER get_order(PTRS_PER_S2_PGD * sizeof(pgd_t))
  127. #define S2_PGD_SIZE (1 << S2_PGD_ORDER)
  128. /* Virtualization Translation Control Register (VTCR) bits */
  129. #define VTCR_SH0 (3 << 12)
  130. #define VTCR_ORGN0 (3 << 10)
  131. #define VTCR_IRGN0 (3 << 8)
  132. #define VTCR_SL0 (3 << 6)
  133. #define VTCR_S (1 << 4)
  134. #define VTCR_T0SZ (0xf)
  135. #define VTCR_MASK (VTCR_SH0 | VTCR_ORGN0 | VTCR_IRGN0 | VTCR_SL0 | \
  136. VTCR_S | VTCR_T0SZ)
  137. #define VTCR_HTCR_SH (VTCR_SH0 | VTCR_ORGN0 | VTCR_IRGN0)
  138. #define VTCR_SL_L2 (0 << 6) /* Starting-level: 2 */
  139. #define VTCR_SL_L1 (1 << 6) /* Starting-level: 1 */
  140. #define KVM_VTCR_SL0 VTCR_SL_L1
  141. /* stage-2 input address range defined as 2^(32-T0SZ) */
  142. #define KVM_T0SZ (32 - KVM_PHYS_SHIFT)
  143. #define KVM_VTCR_T0SZ (KVM_T0SZ & VTCR_T0SZ)
  144. #define KVM_VTCR_S ((KVM_VTCR_T0SZ << 1) & VTCR_S)
  145. /* Virtualization Translation Table Base Register (VTTBR) bits */
  146. #if KVM_VTCR_SL0 == VTCR_SL_L2 /* see ARM DDI 0406C: B4-1720 */
  147. #define VTTBR_X (14 - KVM_T0SZ)
  148. #else
  149. #define VTTBR_X (5 - KVM_T0SZ)
  150. #endif
  151. #define VTTBR_BADDR_SHIFT (VTTBR_X - 1)
  152. #define VTTBR_BADDR_MASK (((1LLU << (40 - VTTBR_X)) - 1) << VTTBR_BADDR_SHIFT)
  153. #define VTTBR_VMID_SHIFT (48LLU)
  154. #define VTTBR_VMID_MASK (0xffLLU << VTTBR_VMID_SHIFT)
  155. /* Hyp Syndrome Register (HSR) bits */
  156. #define HSR_EC_SHIFT (26)
  157. #define HSR_EC (0x3fU << HSR_EC_SHIFT)
  158. #define HSR_IL (1U << 25)
  159. #define HSR_ISS (HSR_IL - 1)
  160. #define HSR_ISV_SHIFT (24)
  161. #define HSR_ISV (1U << HSR_ISV_SHIFT)
  162. #define HSR_SRT_SHIFT (16)
  163. #define HSR_SRT_MASK (0xf << HSR_SRT_SHIFT)
  164. #define HSR_FSC (0x3f)
  165. #define HSR_FSC_TYPE (0x3c)
  166. #define HSR_SSE (1 << 21)
  167. #define HSR_WNR (1 << 6)
  168. #define HSR_CV_SHIFT (24)
  169. #define HSR_CV (1U << HSR_CV_SHIFT)
  170. #define HSR_COND_SHIFT (20)
  171. #define HSR_COND (0xfU << HSR_COND_SHIFT)
  172. #define FSC_FAULT (0x04)
  173. #define FSC_PERM (0x0c)
  174. /* Hyp Prefetch Fault Address Register (HPFAR/HDFAR) */
  175. #define HPFAR_MASK (~0xf)
  176. #define HSR_EC_UNKNOWN (0x00)
  177. #define HSR_EC_WFI (0x01)
  178. #define HSR_EC_CP15_32 (0x03)
  179. #define HSR_EC_CP15_64 (0x04)
  180. #define HSR_EC_CP14_MR (0x05)
  181. #define HSR_EC_CP14_LS (0x06)
  182. #define HSR_EC_CP_0_13 (0x07)
  183. #define HSR_EC_CP10_ID (0x08)
  184. #define HSR_EC_JAZELLE (0x09)
  185. #define HSR_EC_BXJ (0x0A)
  186. #define HSR_EC_CP14_64 (0x0C)
  187. #define HSR_EC_SVC_HYP (0x11)
  188. #define HSR_EC_HVC (0x12)
  189. #define HSR_EC_SMC (0x13)
  190. #define HSR_EC_IABT (0x20)
  191. #define HSR_EC_IABT_HYP (0x21)
  192. #define HSR_EC_DABT (0x24)
  193. #define HSR_EC_DABT_HYP (0x25)
  194. #define HSR_HVC_IMM_MASK ((1UL << 16) - 1)
  195. #endif /* __ARM_KVM_ARM_H__ */