blob: 2819eb793345abb41fd1a183edb67084f11acead [file] [log] [blame]
Sanjay Lal858dd5d2012-11-21 18:34:05 -08001/*
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002 * 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
4 * for more details.
5 *
6 * KVM/MIPS TLB handling, this file is part of the Linux host kernel so that
7 * TLB handlers run from KSEG0
8 *
9 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
10 * Authors: Sanjay Lal <sanjayl@kymasys.com>
11 */
Sanjay Lal858dd5d2012-11-21 18:34:05 -080012
Sanjay Lal858dd5d2012-11-21 18:34:05 -080013#include <linux/sched.h>
14#include <linux/smp.h>
15#include <linux/mm.h>
16#include <linux/delay.h>
James Hogan403015b2016-06-09 14:19:10 +010017#include <linux/export.h>
Sanjay Lal858dd5d2012-11-21 18:34:05 -080018#include <linux/kvm_host.h>
Sanjay Lal6d17c0d2013-05-18 06:54:24 -070019#include <linux/srcu.h>
20
Sanjay Lal858dd5d2012-11-21 18:34:05 -080021#include <asm/cpu.h>
22#include <asm/bootinfo.h>
23#include <asm/mmu_context.h>
24#include <asm/pgtable.h>
25#include <asm/cacheflush.h>
James Hogane36059e2014-01-17 12:01:30 +000026#include <asm/tlb.h>
James Hogane922a4c2016-06-09 14:19:16 +010027#include <asm/tlbdebug.h>
Sanjay Lal858dd5d2012-11-21 18:34:05 -080028
29#undef CONFIG_MIPS_MT
30#include <asm/r4kcache.h>
31#define CONFIG_MIPS_MT
32
33#define KVM_GUEST_PC_TLB 0
34#define KVM_GUEST_SP_TLB 1
35
James Hogan403015b2016-06-09 14:19:10 +010036static u32 kvm_mips_get_kernel_asid(struct kvm_vcpu *vcpu)
Sanjay Lal858dd5d2012-11-21 18:34:05 -080037{
James Hoganc550d532016-10-11 23:14:39 +010038 struct mm_struct *kern_mm = &vcpu->arch.guest_kernel_mm;
Paul Burton4edf00a2016-05-06 14:36:23 +010039 int cpu = smp_processor_id();
40
James Hoganc550d532016-10-11 23:14:39 +010041 return cpu_asid(cpu, kern_mm);
Sanjay Lal858dd5d2012-11-21 18:34:05 -080042}
43
James Hogan403015b2016-06-09 14:19:10 +010044static u32 kvm_mips_get_user_asid(struct kvm_vcpu *vcpu)
Sanjay Lal858dd5d2012-11-21 18:34:05 -080045{
James Hoganc550d532016-10-11 23:14:39 +010046 struct mm_struct *user_mm = &vcpu->arch.guest_user_mm;
Paul Burton4edf00a2016-05-06 14:36:23 +010047 int cpu = smp_processor_id();
48
James Hoganc550d532016-10-11 23:14:39 +010049 return cpu_asid(cpu, user_mm);
Sanjay Lal858dd5d2012-11-21 18:34:05 -080050}
51
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070052/* Structure defining an tlb entry data set. */
Sanjay Lal858dd5d2012-11-21 18:34:05 -080053
54void kvm_mips_dump_host_tlbs(void)
55{
Sanjay Lal858dd5d2012-11-21 18:34:05 -080056 unsigned long flags;
Sanjay Lal858dd5d2012-11-21 18:34:05 -080057
58 local_irq_save(flags);
59
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -070060 kvm_info("HOST TLBs:\n");
James Hogane922a4c2016-06-09 14:19:16 +010061 dump_tlb_regs();
62 pr_info("\n");
63 dump_tlb_all();
Sanjay Lal858dd5d2012-11-21 18:34:05 -080064
Sanjay Lal858dd5d2012-11-21 18:34:05 -080065 local_irq_restore(flags);
66}
James Hogancb1b4472015-12-16 23:49:30 +000067EXPORT_SYMBOL_GPL(kvm_mips_dump_host_tlbs);
Sanjay Lal858dd5d2012-11-21 18:34:05 -080068
69void kvm_mips_dump_guest_tlbs(struct kvm_vcpu *vcpu)
70{
71 struct mips_coproc *cop0 = vcpu->arch.cop0;
72 struct kvm_mips_tlb tlb;
73 int i;
74
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -070075 kvm_info("Guest TLBs:\n");
76 kvm_info("Guest EntryHi: %#lx\n", kvm_read_c0_guest_entryhi(cop0));
Sanjay Lal858dd5d2012-11-21 18:34:05 -080077
78 for (i = 0; i < KVM_MIPS_GUEST_TLB_SIZE; i++) {
79 tlb = vcpu->arch.guest_tlb[i];
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -070080 kvm_info("TLB%c%3d Hi 0x%08lx ",
James Hogane6207bb2016-06-09 14:19:19 +010081 (tlb.tlb_lo[0] | tlb.tlb_lo[1]) & ENTRYLO_V
James Hogan9fbfb062016-06-09 14:19:17 +010082 ? ' ' : '*',
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -070083 i, tlb.tlb_hi);
James Hogan8cffd192016-06-09 14:19:08 +010084 kvm_info("Lo0=0x%09llx %c%c attr %lx ",
James Hogan9fbfb062016-06-09 14:19:17 +010085 (u64) mips3_tlbpfn_to_paddr(tlb.tlb_lo[0]),
James Hogane6207bb2016-06-09 14:19:19 +010086 (tlb.tlb_lo[0] & ENTRYLO_D) ? 'D' : ' ',
87 (tlb.tlb_lo[0] & ENTRYLO_G) ? 'G' : ' ',
88 (tlb.tlb_lo[0] & ENTRYLO_C) >> ENTRYLO_C_SHIFT);
James Hogan8cffd192016-06-09 14:19:08 +010089 kvm_info("Lo1=0x%09llx %c%c attr %lx sz=%lx\n",
James Hogan9fbfb062016-06-09 14:19:17 +010090 (u64) mips3_tlbpfn_to_paddr(tlb.tlb_lo[1]),
James Hogane6207bb2016-06-09 14:19:19 +010091 (tlb.tlb_lo[1] & ENTRYLO_D) ? 'D' : ' ',
92 (tlb.tlb_lo[1] & ENTRYLO_G) ? 'G' : ' ',
93 (tlb.tlb_lo[1] & ENTRYLO_C) >> ENTRYLO_C_SHIFT,
94 tlb.tlb_mask);
Sanjay Lal858dd5d2012-11-21 18:34:05 -080095 }
96}
James Hogancb1b4472015-12-16 23:49:30 +000097EXPORT_SYMBOL_GPL(kvm_mips_dump_guest_tlbs);
Sanjay Lal858dd5d2012-11-21 18:34:05 -080098
Sanjay Lal858dd5d2012-11-21 18:34:05 -080099int kvm_mips_guest_tlb_lookup(struct kvm_vcpu *vcpu, unsigned long entryhi)
100{
101 int i;
102 int index = -1;
103 struct kvm_mips_tlb *tlb = vcpu->arch.guest_tlb;
104
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800105 for (i = 0; i < KVM_MIPS_GUEST_TLB_SIZE; i++) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700106 if (TLB_HI_VPN2_HIT(tlb[i], entryhi) &&
107 TLB_HI_ASID_HIT(tlb[i], entryhi)) {
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800108 index = i;
109 break;
110 }
111 }
112
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800113 kvm_debug("%s: entryhi: %#lx, index: %d lo0: %#lx, lo1: %#lx\n",
James Hogan9fbfb062016-06-09 14:19:17 +0100114 __func__, entryhi, index, tlb[i].tlb_lo[0], tlb[i].tlb_lo[1]);
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800115
116 return index;
117}
James Hogancb1b4472015-12-16 23:49:30 +0000118EXPORT_SYMBOL_GPL(kvm_mips_guest_tlb_lookup);
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800119
James Hogan57e3869c2016-10-08 00:15:52 +0100120static int _kvm_mips_host_tlb_inv(unsigned long entryhi)
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800121{
122 int idx;
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800123
James Hogan57e3869c2016-10-08 00:15:52 +0100124 write_c0_entryhi(entryhi);
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800125 mtc0_tlbw_hazard();
126
127 tlb_probe();
128 tlb_probe_hazard();
129 idx = read_c0_index();
130
131 if (idx >= current_cpu_data.tlbsize)
132 BUG();
133
James Hoganf3a86032016-10-07 22:01:05 +0100134 if (idx >= 0) {
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800135 write_c0_entryhi(UNIQUE_ENTRYHI(idx));
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800136 write_c0_entrylo0(0);
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800137 write_c0_entrylo1(0);
138 mtc0_tlbw_hazard();
139
140 tlb_write_indexed();
James Hogan138f7ad2016-06-09 14:19:15 +0100141 tlbw_use_hazard();
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800142 }
143
James Hogan57e3869c2016-10-08 00:15:52 +0100144 return idx;
145}
146
147int kvm_mips_host_tlb_inv(struct kvm_vcpu *vcpu, unsigned long va,
148 bool user, bool kernel)
149{
150 int idx_user, idx_kernel;
151 unsigned long flags, old_entryhi;
152
153 local_irq_save(flags);
154
155 old_entryhi = read_c0_entryhi();
156
157 if (user)
158 idx_user = _kvm_mips_host_tlb_inv((va & VPN2_MASK) |
159 kvm_mips_get_user_asid(vcpu));
160 if (kernel)
161 idx_kernel = _kvm_mips_host_tlb_inv((va & VPN2_MASK) |
162 kvm_mips_get_kernel_asid(vcpu));
163
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800164 write_c0_entryhi(old_entryhi);
165 mtc0_tlbw_hazard();
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800166
167 local_irq_restore(flags);
168
James Hogan57e3869c2016-10-08 00:15:52 +0100169 if (user && idx_user >= 0)
170 kvm_debug("%s: Invalidated guest user entryhi %#lx @ idx %d\n",
171 __func__, (va & VPN2_MASK) |
172 kvm_mips_get_user_asid(vcpu), idx_user);
173 if (kernel && idx_kernel >= 0)
174 kvm_debug("%s: Invalidated guest kernel entryhi %#lx @ idx %d\n",
175 __func__, (va & VPN2_MASK) |
176 kvm_mips_get_kernel_asid(vcpu), idx_kernel);
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800177
178 return 0;
179}
James Hogancb1b4472015-12-16 23:49:30 +0000180EXPORT_SYMBOL_GPL(kvm_mips_host_tlb_inv);
Sanjay Lal858dd5d2012-11-21 18:34:05 -0800181
James Hogana7ebb2e2016-11-15 00:06:05 +0000182/**
183 * kvm_mips_suspend_mm() - Suspend the active mm.
184 * @cpu The CPU we're running on.
185 *
186 * Suspend the active_mm, ready for a switch to a KVM guest virtual address
187 * space. This is left active for the duration of guest context, including time
188 * with interrupts enabled, so we need to be careful not to confuse e.g. cache
189 * management IPIs.
190 *
191 * kvm_mips_resume_mm() should be called before context switching to a different
192 * process so we don't need to worry about reference counting.
193 *
194 * This needs to be in static kernel code to avoid exporting init_mm.
195 */
196void kvm_mips_suspend_mm(int cpu)
197{
198 cpumask_clear_cpu(cpu, mm_cpumask(current->active_mm));
199 current->active_mm = &init_mm;
200}
201EXPORT_SYMBOL_GPL(kvm_mips_suspend_mm);
202
203/**
204 * kvm_mips_resume_mm() - Resume the current process mm.
205 * @cpu The CPU we're running on.
206 *
207 * Resume the mm of the current process, after a switch back from a KVM guest
208 * virtual address space (see kvm_mips_suspend_mm()).
209 */
210void kvm_mips_resume_mm(int cpu)
211{
212 cpumask_set_cpu(cpu, mm_cpumask(current->mm));
213 current->active_mm = current->mm;
214}
215EXPORT_SYMBOL_GPL(kvm_mips_resume_mm);