1 #define pr_fmt(fmt) "Hyper-V: " fmt
3 #include <linux/hyperv.h>
4 #include <linux/log2.h>
5 #include <linux/slab.h>
6 #include <linux/types.h>
8 #include <asm/fpu/api.h>
9 #include <asm/mshyperv.h>
11 #include <asm/tlbflush.h>
14 #define CREATE_TRACE_POINTS
15 #include <asm/trace/hyperv.h>
17 /* Each gva in gva_list encodes up to 4096 pages to flush */
18 #define HV_TLB_FLUSH_UNIT (4096 * PAGE_SIZE)
20 static u64 hyperv_flush_tlb_others_ex(const struct cpumask *cpus,
21 const struct flush_tlb_info *info);
24 * Fills in gva_list starting from offset. Returns the number of items added.
26 static inline int fill_gva_list(u64 gva_list[], int offset,
27 unsigned long start, unsigned long end)
30 unsigned long cur = start, diff;
33 diff = end > cur ? end - cur : 0;
35 gva_list[gva_n] = cur & PAGE_MASK;
37 * Lower 12 bits encode the number of additional
38 * pages to flush (in addition to the 'cur' page).
40 if (diff >= HV_TLB_FLUSH_UNIT) {
41 gva_list[gva_n] |= ~PAGE_MASK;
42 cur += HV_TLB_FLUSH_UNIT;
44 gva_list[gva_n] |= (diff - 1) >> PAGE_SHIFT;
52 return gva_n - offset;
55 static void hyperv_flush_tlb_multi(const struct cpumask *cpus,
56 const struct flush_tlb_info *info)
58 int cpu, vcpu, gva_n, max_gvas;
59 struct hv_tlb_flush **flush_pcpu;
60 struct hv_tlb_flush *flush;
64 trace_hyperv_mmu_flush_tlb_multi(cpus, info);
69 local_irq_save(flags);
71 flush_pcpu = (struct hv_tlb_flush **)
72 this_cpu_ptr(hyperv_pcpu_input_arg);
76 if (unlikely(!flush)) {
77 local_irq_restore(flags);
83 * AddressSpace argument must match the CR3 with PCID bits
86 flush->address_space = virt_to_phys(info->mm->pgd);
87 flush->address_space &= CR3_ADDR_MASK;
90 flush->address_space = 0;
91 flush->flags = HV_FLUSH_ALL_VIRTUAL_ADDRESS_SPACES;
94 flush->processor_mask = 0;
95 if (cpumask_equal(cpus, cpu_present_mask)) {
96 flush->flags |= HV_FLUSH_ALL_PROCESSORS;
99 * From the supplied CPU set we need to figure out if we can get
100 * away with cheaper HVCALL_FLUSH_VIRTUAL_ADDRESS_{LIST,SPACE}
101 * hypercalls. This is possible when the highest VP number in
102 * the set is < 64. As VP numbers are usually in ascending order
103 * and match Linux CPU ids, here is an optimization: we check
104 * the VP number for the highest bit in the supplied set first
105 * so we can quickly find out if using *_EX hypercalls is a
106 * must. We will also check all VP numbers when walking the
107 * supplied CPU set to remain correct in all cases.
109 cpu = cpumask_last(cpus);
111 if (cpu < nr_cpumask_bits && hv_cpu_number_to_vp_number(cpu) >= 64)
112 goto do_ex_hypercall;
114 for_each_cpu(cpu, cpus) {
115 vcpu = hv_cpu_number_to_vp_number(cpu);
116 if (vcpu == VP_INVAL) {
117 local_irq_restore(flags);
122 goto do_ex_hypercall;
124 __set_bit(vcpu, (unsigned long *)
125 &flush->processor_mask);
128 /* nothing to flush if 'processor_mask' ends up being empty */
129 if (!flush->processor_mask) {
130 local_irq_restore(flags);
136 * We can flush not more than max_gvas with one hypercall. Flush the
137 * whole address space if we were asked to do more.
139 max_gvas = (PAGE_SIZE - sizeof(*flush)) / sizeof(flush->gva_list[0]);
141 if (info->end == TLB_FLUSH_ALL) {
142 flush->flags |= HV_FLUSH_NON_GLOBAL_MAPPINGS_ONLY;
143 status = hv_do_hypercall(HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE,
145 } else if (info->end &&
146 ((info->end - info->start)/HV_TLB_FLUSH_UNIT) > max_gvas) {
147 status = hv_do_hypercall(HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE,
150 gva_n = fill_gva_list(flush->gva_list, 0,
151 info->start, info->end);
152 status = hv_do_rep_hypercall(HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST,
153 gva_n, 0, flush, NULL);
158 status = hyperv_flush_tlb_others_ex(cpus, info);
161 local_irq_restore(flags);
163 if (hv_result_success(status))
166 native_flush_tlb_multi(cpus, info);
169 static u64 hyperv_flush_tlb_others_ex(const struct cpumask *cpus,
170 const struct flush_tlb_info *info)
172 int nr_bank = 0, max_gvas, gva_n;
173 struct hv_tlb_flush_ex **flush_pcpu;
174 struct hv_tlb_flush_ex *flush;
177 if (!(ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED))
178 return HV_STATUS_INVALID_PARAMETER;
180 flush_pcpu = (struct hv_tlb_flush_ex **)
181 this_cpu_ptr(hyperv_pcpu_input_arg);
187 * AddressSpace argument must match the CR3 with PCID bits
190 flush->address_space = virt_to_phys(info->mm->pgd);
191 flush->address_space &= CR3_ADDR_MASK;
194 flush->address_space = 0;
195 flush->flags = HV_FLUSH_ALL_VIRTUAL_ADDRESS_SPACES;
198 flush->hv_vp_set.valid_bank_mask = 0;
200 flush->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K;
201 nr_bank = cpumask_to_vpset(&(flush->hv_vp_set), cpus);
203 return HV_STATUS_INVALID_PARAMETER;
206 * We can flush not more than max_gvas with one hypercall. Flush the
207 * whole address space if we were asked to do more.
210 (PAGE_SIZE - sizeof(*flush) - nr_bank *
211 sizeof(flush->hv_vp_set.bank_contents[0])) /
212 sizeof(flush->gva_list[0]);
214 if (info->end == TLB_FLUSH_ALL) {
215 flush->flags |= HV_FLUSH_NON_GLOBAL_MAPPINGS_ONLY;
216 status = hv_do_rep_hypercall(
217 HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE_EX,
218 0, nr_bank, flush, NULL);
219 } else if (info->end &&
220 ((info->end - info->start)/HV_TLB_FLUSH_UNIT) > max_gvas) {
221 status = hv_do_rep_hypercall(
222 HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE_EX,
223 0, nr_bank, flush, NULL);
225 gva_n = fill_gva_list(flush->gva_list, nr_bank,
226 info->start, info->end);
227 status = hv_do_rep_hypercall(
228 HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST_EX,
229 gva_n, nr_bank, flush, NULL);
235 void hyperv_setup_mmu_ops(void)
237 if (!(ms_hyperv.hints & HV_X64_REMOTE_TLB_FLUSH_RECOMMENDED))
240 pr_info("Using hypercall for remote TLB flush\n");
241 pv_ops.mmu.flush_tlb_multi = hyperv_flush_tlb_multi;
242 pv_ops.mmu.tlb_remove_table = tlb_remove_table;