vgic.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Copyright (C) 2012-2014 ARM Ltd.
  3. * Author: Marc Zyngier <marc.zyngier@arm.com>
  4. *
  5. * Derived from virt/kvm/arm/vgic.c
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __KVM_VGIC_H__
  20. #define __KVM_VGIC_H__
  21. #include <kvm/iodev.h>
  22. #define VGIC_ADDR_UNDEF (-1)
  23. #define IS_VGIC_ADDR_UNDEF(_x) ((_x) == VGIC_ADDR_UNDEF)
  24. #define PRODUCT_ID_KVM 0x4b /* ASCII code K */
  25. #define IMPLEMENTER_ARM 0x43b
  26. #define ACCESS_READ_VALUE (1 << 0)
  27. #define ACCESS_READ_RAZ (0 << 0)
  28. #define ACCESS_READ_MASK(x) ((x) & (1 << 0))
  29. #define ACCESS_WRITE_IGNORED (0 << 1)
  30. #define ACCESS_WRITE_SETBIT (1 << 1)
  31. #define ACCESS_WRITE_CLEARBIT (2 << 1)
  32. #define ACCESS_WRITE_VALUE (3 << 1)
  33. #define ACCESS_WRITE_MASK(x) ((x) & (3 << 1))
  34. #define VCPU_NOT_ALLOCATED ((u8)-1)
  35. unsigned long *vgic_bitmap_get_shared_map(struct vgic_bitmap *x);
  36. void vgic_update_state(struct kvm *kvm);
  37. int vgic_init_common_maps(struct kvm *kvm);
  38. u32 *vgic_bitmap_get_reg(struct vgic_bitmap *x, int cpuid, u32 offset);
  39. u32 *vgic_bytemap_get_reg(struct vgic_bytemap *x, int cpuid, u32 offset);
  40. void vgic_dist_irq_set_pending(struct kvm_vcpu *vcpu, int irq);
  41. void vgic_dist_irq_clear_pending(struct kvm_vcpu *vcpu, int irq);
  42. void vgic_cpu_irq_clear(struct kvm_vcpu *vcpu, int irq);
  43. void vgic_bitmap_set_irq_val(struct vgic_bitmap *x, int cpuid,
  44. int irq, int val);
  45. void vgic_get_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  46. void vgic_set_vmcr(struct kvm_vcpu *vcpu, struct vgic_vmcr *vmcr);
  47. bool vgic_queue_irq(struct kvm_vcpu *vcpu, u8 sgi_source_id, int irq);
  48. void vgic_unqueue_irqs(struct kvm_vcpu *vcpu);
  49. struct kvm_exit_mmio {
  50. phys_addr_t phys_addr;
  51. void *data;
  52. u32 len;
  53. bool is_write;
  54. void *private;
  55. };
  56. void vgic_reg_access(struct kvm_exit_mmio *mmio, u32 *reg,
  57. phys_addr_t offset, int mode);
  58. bool handle_mmio_raz_wi(struct kvm_vcpu *vcpu, struct kvm_exit_mmio *mmio,
  59. phys_addr_t offset);
  60. static inline
  61. u32 mmio_data_read(struct kvm_exit_mmio *mmio, u32 mask)
  62. {
  63. return le32_to_cpu(*((u32 *)mmio->data)) & mask;
  64. }
  65. static inline
  66. void mmio_data_write(struct kvm_exit_mmio *mmio, u32 mask, u32 value)
  67. {
  68. *((u32 *)mmio->data) = cpu_to_le32(value) & mask;
  69. }
  70. struct vgic_io_range {
  71. phys_addr_t base;
  72. unsigned long len;
  73. int bits_per_irq;
  74. bool (*handle_mmio)(struct kvm_vcpu *vcpu, struct kvm_exit_mmio *mmio,
  75. phys_addr_t offset);
  76. };
  77. int vgic_register_kvm_io_dev(struct kvm *kvm, gpa_t base, int len,
  78. const struct vgic_io_range *ranges,
  79. int redist_id,
  80. struct vgic_io_device *iodev);
  81. static inline bool is_in_range(phys_addr_t addr, unsigned long len,
  82. phys_addr_t baseaddr, unsigned long size)
  83. {
  84. return (addr >= baseaddr) && (addr + len <= baseaddr + size);
  85. }
  86. const
  87. struct vgic_io_range *vgic_find_range(const struct vgic_io_range *ranges,
  88. int len, gpa_t offset);
  89. bool vgic_handle_enable_reg(struct kvm *kvm, struct kvm_exit_mmio *mmio,
  90. phys_addr_t offset, int vcpu_id, int access);
  91. bool vgic_handle_set_pending_reg(struct kvm *kvm, struct kvm_exit_mmio *mmio,
  92. phys_addr_t offset, int vcpu_id);
  93. bool vgic_handle_clear_pending_reg(struct kvm *kvm, struct kvm_exit_mmio *mmio,
  94. phys_addr_t offset, int vcpu_id);
  95. bool vgic_handle_set_active_reg(struct kvm *kvm,
  96. struct kvm_exit_mmio *mmio,
  97. phys_addr_t offset, int vcpu_id);
  98. bool vgic_handle_clear_active_reg(struct kvm *kvm,
  99. struct kvm_exit_mmio *mmio,
  100. phys_addr_t offset, int vcpu_id);
  101. bool vgic_handle_cfg_reg(u32 *reg, struct kvm_exit_mmio *mmio,
  102. phys_addr_t offset);
  103. void vgic_kick_vcpus(struct kvm *kvm);
  104. int vgic_has_attr_regs(const struct vgic_io_range *ranges, phys_addr_t offset);
  105. int vgic_set_common_attr(struct kvm_device *dev, struct kvm_device_attr *attr);
  106. int vgic_get_common_attr(struct kvm_device *dev, struct kvm_device_attr *attr);
  107. int vgic_init(struct kvm *kvm);
  108. void vgic_v2_init_emulation(struct kvm *kvm);
  109. void vgic_v3_init_emulation(struct kvm *kvm);
  110. #endif