vgic.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /*
  2. * Copyright (C) 2015, 2016 ARM Ltd.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __KVM_ARM_VGIC_NEW_H__
  17. #define __KVM_ARM_VGIC_NEW_H__
  18. #include <linux/irqchip/arm-gic-common.h>
  19. #define PRODUCT_ID_KVM 0x4b /* ASCII code K */
  20. #define IMPLEMENTER_ARM 0x43b
  21. #define VGIC_ADDR_UNDEF (-1)
  22. #define IS_VGIC_ADDR_UNDEF(_x) ((_x) == VGIC_ADDR_UNDEF)
  23. #define INTERRUPT_ID_BITS_SPIS 10
  24. #define INTERRUPT_ID_BITS_ITS 16
  25. #define VGIC_PRI_BITS 5
  26. #define vgic_irq_is_sgi(intid) ((intid) < VGIC_NR_SGIS)
  27. #define VGIC_AFFINITY_0_SHIFT 0
  28. #define VGIC_AFFINITY_0_MASK (0xffUL << VGIC_AFFINITY_0_SHIFT)
  29. #define VGIC_AFFINITY_1_SHIFT 8
  30. #define VGIC_AFFINITY_1_MASK (0xffUL << VGIC_AFFINITY_1_SHIFT)
  31. #define VGIC_AFFINITY_2_SHIFT 16
  32. #define VGIC_AFFINITY_2_MASK (0xffUL << VGIC_AFFINITY_2_SHIFT)
  33. #define VGIC_AFFINITY_3_SHIFT 24
  34. #define VGIC_AFFINITY_3_MASK (0xffUL << VGIC_AFFINITY_3_SHIFT)
  35. #define VGIC_AFFINITY_LEVEL(reg, level) \
  36. ((((reg) & VGIC_AFFINITY_## level ##_MASK) \
  37. >> VGIC_AFFINITY_## level ##_SHIFT) << MPIDR_LEVEL_SHIFT(level))
  38. /*
  39. * The Userspace encodes the affinity differently from the MPIDR,
  40. * Below macro converts vgic userspace format to MPIDR reg format.
  41. */
  42. #define VGIC_TO_MPIDR(val) (VGIC_AFFINITY_LEVEL(val, 0) | \
  43. VGIC_AFFINITY_LEVEL(val, 1) | \
  44. VGIC_AFFINITY_LEVEL(val, 2) | \
  45. VGIC_AFFINITY_LEVEL(val, 3))
  46. /*
  47. * As per Documentation/virtual/kvm/devices/arm-vgic-v3.txt,
  48. * below macros are defined for CPUREG encoding.
  49. */
  50. #define KVM_REG_ARM_VGIC_SYSREG_OP0_MASK 0x000000000000c000
  51. #define KVM_REG_ARM_VGIC_SYSREG_OP0_SHIFT 14
  52. #define KVM_REG_ARM_VGIC_SYSREG_OP1_MASK 0x0000000000003800
  53. #define KVM_REG_ARM_VGIC_SYSREG_OP1_SHIFT 11
  54. #define KVM_REG_ARM_VGIC_SYSREG_CRN_MASK 0x0000000000000780
  55. #define KVM_REG_ARM_VGIC_SYSREG_CRN_SHIFT 7
  56. #define KVM_REG_ARM_VGIC_SYSREG_CRM_MASK 0x0000000000000078
  57. #define KVM_REG_ARM_VGIC_SYSREG_CRM_SHIFT 3
  58. #define KVM_REG_ARM_VGIC_SYSREG_OP2_MASK 0x0000000000000007
  59. #define KVM_REG_ARM_VGIC_SYSREG_OP2_SHIFT 0
  60. #define KVM_DEV_ARM_VGIC_SYSREG_MASK (KVM_REG_ARM_VGIC_SYSREG_OP0_MASK | \
  61. KVM_REG_ARM_VGIC_SYSREG_OP1_MASK | \
  62. KVM_REG_ARM_VGIC_SYSREG_CRN_MASK | \
  63. KVM_REG_ARM_VGIC_SYSREG_CRM_MASK | \
  64. KVM_REG_ARM_VGIC_SYSREG_OP2_MASK)
  65. /*
  66. * As per Documentation/virtual/kvm/devices/arm-vgic-its.txt,
  67. * below macros are defined for ITS table entry encoding.
  68. */
  69. #define KVM_ITS_CTE_VALID_SHIFT 63
  70. #define KVM_ITS_CTE_VALID_MASK BIT_ULL(63)
  71. #define KVM_ITS_CTE_RDBASE_SHIFT 16
  72. #define KVM_ITS_CTE_ICID_MASK GENMASK_ULL(15, 0)
  73. #define KVM_ITS_ITE_NEXT_SHIFT 48
  74. #define KVM_ITS_ITE_PINTID_SHIFT 16
  75. #define KVM_ITS_ITE_PINTID_MASK GENMASK_ULL(47, 16)
  76. #define KVM_ITS_ITE_ICID_MASK GENMASK_ULL(15, 0)
  77. #define KVM_ITS_DTE_VALID_SHIFT 63
  78. #define KVM_ITS_DTE_VALID_MASK BIT_ULL(63)
  79. #define KVM_ITS_DTE_NEXT_SHIFT 49
  80. #define KVM_ITS_DTE_NEXT_MASK GENMASK_ULL(62, 49)
  81. #define KVM_ITS_DTE_ITTADDR_SHIFT 5
  82. #define KVM_ITS_DTE_ITTADDR_MASK GENMASK_ULL(48, 5)
  83. #define KVM_ITS_DTE_SIZE_MASK GENMASK_ULL(4, 0)
  84. #define KVM_ITS_L1E_VALID_MASK BIT_ULL(63)
  85. /* we only support 64 kB translation table page size */
  86. #define KVM_ITS_L1E_ADDR_MASK GENMASK_ULL(51, 16)
  87. /* Requires the irq_lock to be held by the caller. */
  88. static inline bool irq_is_pending(struct vgic_irq *irq)
  89. {
  90. if (irq->config == VGIC_CONFIG_EDGE)
  91. return irq->pending_latch;
  92. else
  93. return irq->pending_latch || irq->line_level;
  94. }
  95. /*
  96. * This struct provides an intermediate representation of the fields contained
  97. * in the GICH_VMCR and ICH_VMCR registers, such that code exporting the GIC
  98. * state to userspace can generate either GICv2 or GICv3 CPU interface
  99. * registers regardless of the hardware backed GIC used.
  100. */
  101. struct vgic_vmcr {
  102. u32 grpen0;
  103. u32 grpen1;
  104. u32 ackctl;
  105. u32 fiqen;
  106. u32 cbpr;
  107. u32 eoim;
  108. u32 abpr;
  109. u32 bpr;
  110. u32 pmr; /* Priority mask field in the GICC_PMR and
  111. * ICC_PMR_EL1 priority field format */
  112. };
  113. struct vgic_reg_attr {
  114. struct kvm_vcpu *vcpu;
  115. gpa_t addr;
  116. };
  117. int vgic_v3_parse_attr(struct kvm_device *dev, struct kvm_device_attr *attr,
  118. struct vgic_reg_attr *reg_attr);
  119. int vgic_v2_parse_attr(struct kvm_device *dev, struct kvm_device_attr *attr,
  120. struct vgic_reg_attr *reg_attr);
  121. const struct vgic_register_region *
  122. vgic_get_mmio_region(struct kvm_vcpu *vcpu, struct vgic_io_device *iodev,
  123. gpa_t addr, int len);
  124. struct vgic_irq *vgic_get_irq(struct kvm *kvm, struct kvm_vcpu *vcpu,
  125. u32 intid);
  126. void vgic_put_irq(struct kvm *kvm, struct vgic_irq *irq);
  127. bool vgic_queue_irq_unlock(struct kvm *kvm, struct vgic_irq *irq);
  128. void vgic_kick_vcpus(struct kvm *kvm);
  129. int vgic_check_ioaddr(struct kvm *kvm, phys_addr_t *ioaddr,
  130. phys_addr_t addr, phys_addr_t alignment);
  131. void vgic_v2_fold_lr_state(struct kvm_vcpu *vcpu);
  132. void vgic_v2_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
  133. void vgic_v2_clear_lr(struct kvm_vcpu *vcpu, int lr);
  134. void vgic_v2_set_underflow(struct kvm_vcpu *vcpu);
  135. void vgic_v2_set_npie(struct kvm_vcpu *vcpu);
  136. int vgic_v2_has_attr_regs(struct kvm_device *dev, struct kvm_device_attr *attr);
  137. int vgic_v2_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
  138. int offset, u32 *val);
  139. int vgic_v2_cpuif_uaccess(struct kvm_vcpu *vcpu, bool is_write,
  140. int offset, u32 *val);
  141. void vgic_v2_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  142. void vgic_v2_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  143. void vgic_v2_enable(struct kvm_vcpu *vcpu);
  144. int vgic_v2_probe(const struct gic_kvm_info *info);
  145. int vgic_v2_map_resources(struct kvm *kvm);
  146. int vgic_register_dist_iodev(struct kvm *kvm, gpa_t dist_base_address,
  147. enum vgic_type);
  148. void vgic_v2_init_lrs(void);
  149. void vgic_v2_load(struct kvm_vcpu *vcpu);
  150. void vgic_v2_put(struct kvm_vcpu *vcpu);
  151. void vgic_v2_vmcr_sync(struct kvm_vcpu *vcpu);
  152. static inline void vgic_get_irq_kref(struct vgic_irq *irq)
  153. {
  154. if (irq->intid < VGIC_MIN_LPI)
  155. return;
  156. kref_get(&irq->refcount);
  157. }
  158. void vgic_v3_fold_lr_state(struct kvm_vcpu *vcpu);
  159. void vgic_v3_populate_lr(struct kvm_vcpu *vcpu, struct vgic_irq *irq, int lr);
  160. void vgic_v3_clear_lr(struct kvm_vcpu *vcpu, int lr);
  161. void vgic_v3_set_underflow(struct kvm_vcpu *vcpu);
  162. void vgic_v3_set_npie(struct kvm_vcpu *vcpu);
  163. void vgic_v3_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  164. void vgic_v3_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  165. void vgic_v3_enable(struct kvm_vcpu *vcpu);
  166. int vgic_v3_probe(const struct gic_kvm_info *info);
  167. int vgic_v3_map_resources(struct kvm *kvm);
  168. int vgic_v3_lpi_sync_pending_status(struct kvm *kvm, struct vgic_irq *irq);
  169. int vgic_v3_save_pending_tables(struct kvm *kvm);
  170. int vgic_v3_set_redist_base(struct kvm *kvm, u64 addr);
  171. int vgic_register_redist_iodev(struct kvm_vcpu *vcpu);
  172. bool vgic_v3_check_base(struct kvm *kvm);
  173. void vgic_v3_load(struct kvm_vcpu *vcpu);
  174. void vgic_v3_put(struct kvm_vcpu *vcpu);
  175. void vgic_v3_vmcr_sync(struct kvm_vcpu *vcpu);
  176. bool vgic_has_its(struct kvm *kvm);
  177. int kvm_vgic_register_its_device(void);
  178. void vgic_enable_lpis(struct kvm_vcpu *vcpu);
  179. int vgic_its_inject_msi(struct kvm *kvm, struct kvm_msi *msi);
  180. int vgic_v3_has_attr_regs(struct kvm_device *dev, struct kvm_device_attr *attr);
  181. int vgic_v3_dist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
  182. int offset, u32 *val);
  183. int vgic_v3_redist_uaccess(struct kvm_vcpu *vcpu, bool is_write,
  184. int offset, u32 *val);
  185. int vgic_v3_cpu_sysregs_uaccess(struct kvm_vcpu *vcpu, bool is_write,
  186. u64 id, u64 *val);
  187. int vgic_v3_has_cpu_sysregs_attr(struct kvm_vcpu *vcpu, bool is_write, u64 id,
  188. u64 *reg);
  189. int vgic_v3_line_level_info_uaccess(struct kvm_vcpu *vcpu, bool is_write,
  190. u32 intid, u64 *val);
  191. int kvm_register_vgic_device(unsigned long type);
  192. void vgic_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  193. void vgic_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  194. int vgic_lazy_init(struct kvm *kvm);
  195. int vgic_init(struct kvm *kvm);
  196. int vgic_debug_init(struct kvm *kvm);
  197. int vgic_debug_destroy(struct kvm *kvm);
  198. bool lock_all_vcpus(struct kvm *kvm);
  199. void unlock_all_vcpus(struct kvm *kvm);
  200. static inline int vgic_v3_max_apr_idx(struct kvm_vcpu *vcpu)
  201. {
  202. struct vgic_cpu *cpu_if = &vcpu->arch.vgic_cpu;
  203. /*
  204. * num_pri_bits are initialized with HW supported values.
  205. * We can rely safely on num_pri_bits even if VM has not
  206. * restored ICC_CTLR_EL1 before restoring APnR registers.
  207. */
  208. switch (cpu_if->num_pri_bits) {
  209. case 7: return 3;
  210. case 6: return 1;
  211. default: return 0;
  212. }
  213. }
  214. #endif