2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * KVM/MIPS TLB handling, this file is part of the Linux host kernel so that
7 * TLB handlers run from KSEG0
9 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
10 * Authors: Sanjay Lal <sanjayl@kymasys.com>
13 #include <linux/sched.h>
14 #include <linux/smp.h>
16 #include <linux/delay.h>
17 #include <linux/export.h>
18 #include <linux/kvm_host.h>
19 #include <linux/srcu.h>
22 #include <asm/bootinfo.h>
23 #include <asm/mipsregs.h>
24 #include <asm/mmu_context.h>
25 #include <asm/cacheflush.h>
27 #include <asm/tlbdebug.h>
30 #include <asm/r4kcache.h>
31 #define CONFIG_MIPS_MT
33 unsigned long GUESTID_MASK
;
34 EXPORT_SYMBOL_GPL(GUESTID_MASK
);
35 unsigned long GUESTID_FIRST_VERSION
;
36 EXPORT_SYMBOL_GPL(GUESTID_FIRST_VERSION
);
37 unsigned long GUESTID_VERSION_MASK
;
38 EXPORT_SYMBOL_GPL(GUESTID_VERSION_MASK
);
40 static u32
kvm_mips_get_root_asid(struct kvm_vcpu
*vcpu
)
42 struct mm_struct
*gpa_mm
= &vcpu
->kvm
->arch
.gpa_mm
;
47 return cpu_asid(smp_processor_id(), gpa_mm
);
50 static int _kvm_mips_host_tlb_inv(unsigned long entryhi
)
54 write_c0_entryhi(entryhi
);
59 idx
= read_c0_index();
61 BUG_ON(idx
>= current_cpu_data
.tlbsize
);
64 write_c0_entryhi(UNIQUE_ENTRYHI(idx
));
76 /* GuestID management */
79 * clear_root_gid() - Set GuestCtl1.RID for normal root operation.
81 static inline void clear_root_gid(void)
83 if (cpu_has_guestid
) {
84 clear_c0_guestctl1(MIPS_GCTL1_RID
);
90 * set_root_gid_to_guest_gid() - Set GuestCtl1.RID to match GuestCtl1.ID.
92 * Sets the root GuestID to match the current guest GuestID, for TLB operation
93 * on the GPA->RPA mappings in the root TLB.
95 * The caller must be sure to disable HTW while the root GID is set, and
96 * possibly longer if TLB registers are modified.
98 static inline void set_root_gid_to_guest_gid(void)
100 unsigned int guestctl1
;
102 if (cpu_has_guestid
) {
103 back_to_back_c0_hazard();
104 guestctl1
= read_c0_guestctl1();
105 guestctl1
= (guestctl1
& ~MIPS_GCTL1_RID
) |
106 ((guestctl1
& MIPS_GCTL1_ID
) >> MIPS_GCTL1_ID_SHIFT
)
107 << MIPS_GCTL1_RID_SHIFT
;
108 write_c0_guestctl1(guestctl1
);
113 int kvm_vz_host_tlb_inv(struct kvm_vcpu
*vcpu
, unsigned long va
)
116 unsigned long flags
, old_entryhi
;
118 local_irq_save(flags
);
121 /* Set root GuestID for root probe and write of guest TLB entry */
122 set_root_gid_to_guest_gid();
124 old_entryhi
= read_c0_entryhi();
126 idx
= _kvm_mips_host_tlb_inv((va
& VPN2_MASK
) |
127 kvm_mips_get_root_asid(vcpu
));
129 write_c0_entryhi(old_entryhi
);
134 local_irq_restore(flags
);
137 * We don't want to get reserved instruction exceptions for missing tlb
140 if (cpu_has_vtag_icache
)
144 kvm_debug("%s: Invalidated root entryhi %#lx @ idx %d\n",
145 __func__
, (va
& VPN2_MASK
) |
146 kvm_mips_get_root_asid(vcpu
), idx
);
150 EXPORT_SYMBOL_GPL(kvm_vz_host_tlb_inv
);
153 * kvm_vz_guest_tlb_lookup() - Lookup a guest VZ TLB mapping.
154 * @vcpu: KVM VCPU pointer.
155 * @gpa: Guest virtual address in a TLB mapped guest segment.
156 * @gpa: Pointer to output guest physical address it maps to.
158 * Converts a guest virtual address in a guest TLB mapped segment to a guest
159 * physical address, by probing the guest TLB.
161 * Returns: 0 if guest TLB mapping exists for @gva. *@gpa will have been
163 * -EFAULT if no guest TLB mapping exists for @gva. *@gpa may not
166 int kvm_vz_guest_tlb_lookup(struct kvm_vcpu
*vcpu
, unsigned long gva
,
169 unsigned long o_entryhi
, o_entrylo
[2], o_pagemask
;
170 unsigned int o_index
;
171 unsigned long entrylo
[2], pagemask
, pagemaskbit
, pa
;
175 /* Probe the guest TLB for a mapping */
176 local_irq_save(flags
);
177 /* Set root GuestID for root probe of guest TLB entry */
179 set_root_gid_to_guest_gid();
181 o_entryhi
= read_gc0_entryhi();
182 o_index
= read_gc0_index();
184 write_gc0_entryhi((o_entryhi
& 0x3ff) | (gva
& ~0xfffl
));
189 index
= read_gc0_index();
192 write_gc0_entryhi(o_entryhi
);
193 write_gc0_index(o_index
);
197 local_irq_restore(flags
);
201 /* Match! read the TLB entry */
202 o_entrylo
[0] = read_gc0_entrylo0();
203 o_entrylo
[1] = read_gc0_entrylo1();
204 o_pagemask
= read_gc0_pagemask();
210 entrylo
[0] = read_gc0_entrylo0();
211 entrylo
[1] = read_gc0_entrylo1();
212 pagemask
= ~read_gc0_pagemask() & ~0x1fffl
;
214 write_gc0_entryhi(o_entryhi
);
215 write_gc0_index(o_index
);
216 write_gc0_entrylo0(o_entrylo
[0]);
217 write_gc0_entrylo1(o_entrylo
[1]);
218 write_gc0_pagemask(o_pagemask
);
222 local_irq_restore(flags
);
224 /* Select one of the EntryLo values and interpret the GPA */
225 pagemaskbit
= (pagemask
^ (pagemask
& (pagemask
- 1))) >> 1;
226 pa
= entrylo
[!!(gva
& pagemaskbit
)];
229 * TLB entry may have become invalid since TLB probe if physical FTLB
230 * entries are shared between threads (e.g. I6400).
232 if (!(pa
& ENTRYLO_V
))
236 * Note, this doesn't take guest MIPS32 XPA into account, where PFN is
237 * split with XI/RI in the middle.
239 pa
= (pa
<< 6) & ~0xfffl
;
240 pa
|= gva
& ~(pagemask
| pagemaskbit
);
245 EXPORT_SYMBOL_GPL(kvm_vz_guest_tlb_lookup
);
248 * kvm_vz_local_flush_roottlb_all_guests() - Flush all root TLB entries for
251 * Invalidate all entries in root tlb which are GPA mappings.
253 void kvm_vz_local_flush_roottlb_all_guests(void)
256 unsigned long old_entryhi
, old_pagemask
, old_guestctl1
;
259 if (WARN_ON(!cpu_has_guestid
))
262 local_irq_save(flags
);
265 /* TLBR may clobber EntryHi.ASID, PageMask, and GuestCtl1.RID */
266 old_entryhi
= read_c0_entryhi();
267 old_pagemask
= read_c0_pagemask();
268 old_guestctl1
= read_c0_guestctl1();
271 * Invalidate guest entries in root TLB while leaving root entries
272 * intact when possible.
274 for (entry
= 0; entry
< current_cpu_data
.tlbsize
; entry
++) {
275 write_c0_index(entry
);
280 /* Don't invalidate non-guest (RVA) mappings in the root TLB */
281 if (!(read_c0_guestctl1() & MIPS_GCTL1_RID
))
284 /* Make sure all entries differ. */
285 write_c0_entryhi(UNIQUE_ENTRYHI(entry
));
286 write_c0_entrylo0(0);
287 write_c0_entrylo1(0);
288 write_c0_guestctl1(0);
293 write_c0_entryhi(old_entryhi
);
294 write_c0_pagemask(old_pagemask
);
295 write_c0_guestctl1(old_guestctl1
);
299 local_irq_restore(flags
);
301 EXPORT_SYMBOL_GPL(kvm_vz_local_flush_roottlb_all_guests
);
304 * kvm_vz_local_flush_guesttlb_all() - Flush all guest TLB entries.
306 * Invalidate all entries in guest tlb irrespective of guestid.
308 void kvm_vz_local_flush_guesttlb_all(void)
311 unsigned long old_index
;
312 unsigned long old_entryhi
;
313 unsigned long old_entrylo
[2];
314 unsigned long old_pagemask
;
318 local_irq_save(flags
);
320 /* Preserve all clobbered guest registers */
321 old_index
= read_gc0_index();
322 old_entryhi
= read_gc0_entryhi();
323 old_entrylo
[0] = read_gc0_entrylo0();
324 old_entrylo
[1] = read_gc0_entrylo1();
325 old_pagemask
= read_gc0_pagemask();
327 switch (current_cpu_type()) {
328 case CPU_CAVIUM_OCTEON3
:
329 /* Inhibit machine check due to multiple matching TLB entries */
330 cvmmemctl2
= read_c0_cvmmemctl2();
331 cvmmemctl2
|= CVMMEMCTL2_INHIBITTS
;
332 write_c0_cvmmemctl2(cvmmemctl2
);
336 /* Invalidate guest entries in guest TLB */
337 write_gc0_entrylo0(0);
338 write_gc0_entrylo1(0);
339 write_gc0_pagemask(0);
340 for (entry
= 0; entry
< current_cpu_data
.guest
.tlbsize
; entry
++) {
341 /* Make sure all entries differ. */
342 write_gc0_index(entry
);
343 write_gc0_entryhi(UNIQUE_GUEST_ENTRYHI(entry
));
345 guest_tlb_write_indexed();
349 cvmmemctl2
&= ~CVMMEMCTL2_INHIBITTS
;
350 write_c0_cvmmemctl2(cvmmemctl2
);
353 write_gc0_index(old_index
);
354 write_gc0_entryhi(old_entryhi
);
355 write_gc0_entrylo0(old_entrylo
[0]);
356 write_gc0_entrylo1(old_entrylo
[1]);
357 write_gc0_pagemask(old_pagemask
);
360 local_irq_restore(flags
);
362 EXPORT_SYMBOL_GPL(kvm_vz_local_flush_guesttlb_all
);
365 * kvm_vz_save_guesttlb() - Save a range of guest TLB entries.
366 * @buf: Buffer to write TLB entries into.
367 * @index: Start index.
368 * @count: Number of entries to save.
370 * Save a range of guest TLB entries. The caller must ensure interrupts are
373 void kvm_vz_save_guesttlb(struct kvm_mips_tlb
*buf
, unsigned int index
,
376 unsigned int end
= index
+ count
;
377 unsigned long old_entryhi
, old_entrylo0
, old_entrylo1
, old_pagemask
;
378 unsigned int guestctl1
= 0;
381 /* Save registers we're about to clobber */
382 old_index
= read_gc0_index();
383 old_entryhi
= read_gc0_entryhi();
384 old_entrylo0
= read_gc0_entrylo0();
385 old_entrylo1
= read_gc0_entrylo1();
386 old_pagemask
= read_gc0_pagemask();
388 /* Set root GuestID for root probe */
390 set_root_gid_to_guest_gid();
392 guestctl1
= read_c0_guestctl1();
394 /* Read each entry from guest TLB */
395 for (i
= index
; i
< end
; ++i
, ++buf
) {
402 if (cpu_has_guestid
&&
403 (read_c0_guestctl1() ^ guestctl1
) & MIPS_GCTL1_RID
) {
404 /* Entry invalid or belongs to another guest */
405 buf
->tlb_hi
= UNIQUE_GUEST_ENTRYHI(i
);
410 /* Entry belongs to the right guest */
411 buf
->tlb_hi
= read_gc0_entryhi();
412 buf
->tlb_lo
[0] = read_gc0_entrylo0();
413 buf
->tlb_lo
[1] = read_gc0_entrylo1();
414 buf
->tlb_mask
= read_gc0_pagemask();
418 /* Clear root GuestID again */
422 /* Restore clobbered registers */
423 write_gc0_index(old_index
);
424 write_gc0_entryhi(old_entryhi
);
425 write_gc0_entrylo0(old_entrylo0
);
426 write_gc0_entrylo1(old_entrylo1
);
427 write_gc0_pagemask(old_pagemask
);
431 EXPORT_SYMBOL_GPL(kvm_vz_save_guesttlb
);
434 * kvm_vz_load_guesttlb() - Save a range of guest TLB entries.
435 * @buf: Buffer to read TLB entries from.
436 * @index: Start index.
437 * @count: Number of entries to load.
439 * Load a range of guest TLB entries. The caller must ensure interrupts are
442 void kvm_vz_load_guesttlb(const struct kvm_mips_tlb
*buf
, unsigned int index
,
445 unsigned int end
= index
+ count
;
446 unsigned long old_entryhi
, old_entrylo0
, old_entrylo1
, old_pagemask
;
449 /* Save registers we're about to clobber */
450 old_index
= read_gc0_index();
451 old_entryhi
= read_gc0_entryhi();
452 old_entrylo0
= read_gc0_entrylo0();
453 old_entrylo1
= read_gc0_entrylo1();
454 old_pagemask
= read_gc0_pagemask();
456 /* Set root GuestID for root probe */
458 set_root_gid_to_guest_gid();
460 /* Write each entry to guest TLB */
461 for (i
= index
; i
< end
; ++i
, ++buf
) {
463 write_gc0_entryhi(buf
->tlb_hi
);
464 write_gc0_entrylo0(buf
->tlb_lo
[0]);
465 write_gc0_entrylo1(buf
->tlb_lo
[1]);
466 write_gc0_pagemask(buf
->tlb_mask
);
469 guest_tlb_write_indexed();
472 /* Clear root GuestID again */
476 /* Restore clobbered registers */
477 write_gc0_index(old_index
);
478 write_gc0_entryhi(old_entryhi
);
479 write_gc0_entrylo0(old_entrylo0
);
480 write_gc0_entrylo1(old_entrylo1
);
481 write_gc0_pagemask(old_pagemask
);
485 EXPORT_SYMBOL_GPL(kvm_vz_load_guesttlb
);
487 #ifdef CONFIG_CPU_LOONGSON64
488 void kvm_loongson_clear_guest_vtlb(void)
490 int idx
= read_gc0_index();
492 /* Set root GuestID for root probe and write of guest TLB entry */
493 set_root_gid_to_guest_gid();
497 write_gc0_index(idx
);
500 set_c0_diag(LOONGSON_DIAG_ITLB
| LOONGSON_DIAG_DTLB
);
502 EXPORT_SYMBOL_GPL(kvm_loongson_clear_guest_vtlb
);
504 void kvm_loongson_clear_guest_ftlb(void)
507 int idx
= read_gc0_index();
509 /* Set root GuestID for root probe and write of guest TLB entry */
510 set_root_gid_to_guest_gid();
512 for (i
= current_cpu_data
.tlbsizevtlb
;
513 i
< (current_cpu_data
.tlbsizevtlb
+
514 current_cpu_data
.tlbsizeftlbsets
);
519 write_gc0_index(idx
);
522 set_c0_diag(LOONGSON_DIAG_ITLB
| LOONGSON_DIAG_DTLB
);
524 EXPORT_SYMBOL_GPL(kvm_loongson_clear_guest_ftlb
);