kvm_asm.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (C) 2012,2013 - ARM Ltd
  3. * Author: Marc Zyngier <marc.zyngier@arm.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, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __ARM_KVM_ASM_H__
  18. #define __ARM_KVM_ASM_H__
  19. #include <asm/virt.h>
  20. #define ARM_EXIT_WITH_SERROR_BIT 31
  21. #define ARM_EXCEPTION_CODE(x) ((x) & ~(1U << ARM_EXIT_WITH_SERROR_BIT))
  22. #define ARM_SERROR_PENDING(x) !!((x) & (1U << ARM_EXIT_WITH_SERROR_BIT))
  23. #define ARM_EXCEPTION_IRQ 0
  24. #define ARM_EXCEPTION_EL1_SERROR 1
  25. #define ARM_EXCEPTION_TRAP 2
  26. /* The hyp-stub will return this for any kvm_call_hyp() call */
  27. #define ARM_EXCEPTION_HYP_GONE 3
  28. #define KVM_ARM64_DEBUG_DIRTY_SHIFT 0
  29. #define KVM_ARM64_DEBUG_DIRTY (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT)
  30. #define kvm_ksym_ref(sym) \
  31. ({ \
  32. void *val = &sym; \
  33. if (!is_kernel_in_hyp_mode()) \
  34. val = phys_to_virt((u64)&sym - kimage_voffset); \
  35. val; \
  36. })
  37. #ifndef __ASSEMBLY__
  38. struct kvm;
  39. struct kvm_vcpu;
  40. extern char __kvm_hyp_init[];
  41. extern char __kvm_hyp_init_end[];
  42. extern char __kvm_hyp_reset[];
  43. extern char __kvm_hyp_vector[];
  44. extern void __kvm_flush_vm_context(void);
  45. extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
  46. extern void __kvm_tlb_flush_vmid(struct kvm *kvm);
  47. extern int __kvm_vcpu_run(struct kvm_vcpu *vcpu);
  48. extern u64 __vgic_v3_get_ich_vtr_el2(void);
  49. extern void __vgic_v3_init_lrs(void);
  50. extern u32 __kvm_get_mdcr_el2(void);
  51. extern u32 __init_stage2_translation(void);
  52. #endif
  53. #endif /* __ARM_KVM_ASM_H__ */