kvm_mmu.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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_MMU_H__
  19. #define __ARM_KVM_MMU_H__
  20. #include <asm/memory.h>
  21. #include <asm/page.h>
  22. /*
  23. * We directly use the kernel VA for the HYP, as we can directly share
  24. * the mapping (HTTBR "covers" TTBR1).
  25. */
  26. #define HYP_PAGE_OFFSET_MASK UL(~0)
  27. #define HYP_PAGE_OFFSET PAGE_OFFSET
  28. #define KERN_TO_HYP(kva) (kva)
  29. /*
  30. * Our virtual mapping for the boot-time MMU-enable code. Must be
  31. * shared across all the page-tables. Conveniently, we use the vectors
  32. * page, where no kernel data will ever be shared with HYP.
  33. */
  34. #define TRAMPOLINE_VA UL(CONFIG_VECTORS_BASE)
  35. #ifndef __ASSEMBLY__
  36. #include <asm/cacheflush.h>
  37. #include <asm/pgalloc.h>
  38. int create_hyp_mappings(void *from, void *to);
  39. int create_hyp_io_mappings(void *from, void *to, phys_addr_t);
  40. void free_boot_hyp_pgd(void);
  41. void free_hyp_pgds(void);
  42. int kvm_alloc_stage2_pgd(struct kvm *kvm);
  43. void kvm_free_stage2_pgd(struct kvm *kvm);
  44. int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
  45. phys_addr_t pa, unsigned long size);
  46. int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run);
  47. void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu);
  48. phys_addr_t kvm_mmu_get_httbr(void);
  49. phys_addr_t kvm_mmu_get_boot_httbr(void);
  50. phys_addr_t kvm_get_idmap_vector(void);
  51. int kvm_mmu_init(void);
  52. void kvm_clear_hyp_idmap(void);
  53. static inline void kvm_set_pte(pte_t *pte, pte_t new_pte)
  54. {
  55. pte_val(*pte) = new_pte;
  56. /*
  57. * flush_pmd_entry just takes a void pointer and cleans the necessary
  58. * cache entries, so we can reuse the function for ptes.
  59. */
  60. flush_pmd_entry(pte);
  61. }
  62. static inline bool kvm_is_write_fault(unsigned long hsr)
  63. {
  64. unsigned long hsr_ec = hsr >> HSR_EC_SHIFT;
  65. if (hsr_ec == HSR_EC_IABT)
  66. return false;
  67. else if ((hsr & HSR_ISV) && !(hsr & HSR_WNR))
  68. return false;
  69. else
  70. return true;
  71. }
  72. static inline void kvm_clean_pgd(pgd_t *pgd)
  73. {
  74. clean_dcache_area(pgd, PTRS_PER_S2_PGD * sizeof(pgd_t));
  75. }
  76. static inline void kvm_clean_pmd_entry(pmd_t *pmd)
  77. {
  78. clean_pmd_entry(pmd);
  79. }
  80. static inline void kvm_clean_pte(pte_t *pte)
  81. {
  82. clean_pte_table(pte);
  83. }
  84. static inline void kvm_set_s2pte_writable(pte_t *pte)
  85. {
  86. pte_val(*pte) |= L_PTE_S2_RDWR;
  87. }
  88. struct kvm;
  89. static inline void coherent_icache_guest_page(struct kvm *kvm, gfn_t gfn)
  90. {
  91. /*
  92. * If we are going to insert an instruction page and the icache is
  93. * either VIPT or PIPT, there is a potential problem where the host
  94. * (or another VM) may have used the same page as this guest, and we
  95. * read incorrect data from the icache. If we're using a PIPT cache,
  96. * we can invalidate just that page, but if we are using a VIPT cache
  97. * we need to invalidate the entire icache - damn shame - as written
  98. * in the ARM ARM (DDI 0406C.b - Page B3-1393).
  99. *
  100. * VIVT caches are tagged using both the ASID and the VMID and doesn't
  101. * need any kind of flushing (DDI 0406C.b - Page B3-1392).
  102. */
  103. if (icache_is_pipt()) {
  104. unsigned long hva = gfn_to_hva(kvm, gfn);
  105. __cpuc_coherent_user_range(hva, hva + PAGE_SIZE);
  106. } else if (!icache_is_vivt_asid_tagged()) {
  107. /* any kind of VIPT cache */
  108. __flush_icache_all();
  109. }
  110. }
  111. #define kvm_flush_dcache_to_poc(a,l) __cpuc_flush_dcache_area((a), (l))
  112. #endif /* !__ASSEMBLY__ */
  113. #endif /* __ARM_KVM_MMU_H__ */