tlb.c 7.71 KB
Newer Older
1
/*
2 3 4 5 6 7 8 9 10 11
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * KVM/MIPS TLB handling, this file is part of the Linux host kernel so that
 * TLB handlers run from KSEG0
 *
 * Copyright (C) 2012  MIPS Technologies, Inc.  All rights reserved.
 * Authors: Sanjay Lal <sanjayl@kymasys.com>
 */
12 13 14 15 16

#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/mm.h>
#include <linux/delay.h>
17
#include <linux/export.h>
18
#include <linux/kvm_host.h>
19 20
#include <linux/srcu.h>

21 22 23 24 25
#include <asm/cpu.h>
#include <asm/bootinfo.h>
#include <asm/mmu_context.h>
#include <asm/pgtable.h>
#include <asm/cacheflush.h>
26
#include <asm/tlb.h>
27
#include <asm/tlbdebug.h>
28 29 30 31 32 33 34 35

#undef CONFIG_MIPS_MT
#include <asm/r4kcache.h>
#define CONFIG_MIPS_MT

#define KVM_GUEST_PC_TLB    0
#define KVM_GUEST_SP_TLB    1

36
static u32 kvm_mips_get_kernel_asid(struct kvm_vcpu *vcpu)
37
{
38
	struct mm_struct *kern_mm = &vcpu->arch.guest_kernel_mm;
39 40
	int cpu = smp_processor_id();

41
	return cpu_asid(cpu, kern_mm);
42 43
}

44
static u32 kvm_mips_get_user_asid(struct kvm_vcpu *vcpu)
45
{
46
	struct mm_struct *user_mm = &vcpu->arch.guest_user_mm;
47 48
	int cpu = smp_processor_id();

49
	return cpu_asid(cpu, user_mm);
50 51
}

52
/* Structure defining an tlb entry data set. */
53 54 55 56 57 58 59

void kvm_mips_dump_host_tlbs(void)
{
	unsigned long flags;

	local_irq_save(flags);

60
	kvm_info("HOST TLBs:\n");
61 62 63 64
	dump_tlb_regs();
	pr_info("\n");
	dump_tlb_all();

65 66
	local_irq_restore(flags);
}
67
EXPORT_SYMBOL_GPL(kvm_mips_dump_host_tlbs);
68 69 70 71 72 73 74

void kvm_mips_dump_guest_tlbs(struct kvm_vcpu *vcpu)
{
	struct mips_coproc *cop0 = vcpu->arch.cop0;
	struct kvm_mips_tlb tlb;
	int i;

75 76
	kvm_info("Guest TLBs:\n");
	kvm_info("Guest EntryHi: %#lx\n", kvm_read_c0_guest_entryhi(cop0));
77 78 79

	for (i = 0; i < KVM_MIPS_GUEST_TLB_SIZE; i++) {
		tlb = vcpu->arch.guest_tlb[i];
80
		kvm_info("TLB%c%3d Hi 0x%08lx ",
81
			 (tlb.tlb_lo[0] | tlb.tlb_lo[1]) & ENTRYLO_V
82
							? ' ' : '*',
83
			 i, tlb.tlb_hi);
84
		kvm_info("Lo0=0x%09llx %c%c attr %lx ",
85
			 (u64) mips3_tlbpfn_to_paddr(tlb.tlb_lo[0]),
86 87 88
			 (tlb.tlb_lo[0] & ENTRYLO_D) ? 'D' : ' ',
			 (tlb.tlb_lo[0] & ENTRYLO_G) ? 'G' : ' ',
			 (tlb.tlb_lo[0] & ENTRYLO_C) >> ENTRYLO_C_SHIFT);
89
		kvm_info("Lo1=0x%09llx %c%c attr %lx sz=%lx\n",
90
			 (u64) mips3_tlbpfn_to_paddr(tlb.tlb_lo[1]),
91 92 93 94
			 (tlb.tlb_lo[1] & ENTRYLO_D) ? 'D' : ' ',
			 (tlb.tlb_lo[1] & ENTRYLO_G) ? 'G' : ' ',
			 (tlb.tlb_lo[1] & ENTRYLO_C) >> ENTRYLO_C_SHIFT,
			 tlb.tlb_mask);
95 96
	}
}
97
EXPORT_SYMBOL_GPL(kvm_mips_dump_guest_tlbs);
98 99 100 101 102 103 104 105

int kvm_mips_guest_tlb_lookup(struct kvm_vcpu *vcpu, unsigned long entryhi)
{
	int i;
	int index = -1;
	struct kvm_mips_tlb *tlb = vcpu->arch.guest_tlb;

	for (i = 0; i < KVM_MIPS_GUEST_TLB_SIZE; i++) {
106 107
		if (TLB_HI_VPN2_HIT(tlb[i], entryhi) &&
		    TLB_HI_ASID_HIT(tlb[i], entryhi)) {
108 109 110 111 112 113
			index = i;
			break;
		}
	}

	kvm_debug("%s: entryhi: %#lx, index: %d lo0: %#lx, lo1: %#lx\n",
114
		  __func__, entryhi, index, tlb[i].tlb_lo[0], tlb[i].tlb_lo[1]);
115 116 117

	return index;
}
118
EXPORT_SYMBOL_GPL(kvm_mips_guest_tlb_lookup);
119 120 121 122

int kvm_mips_host_tlb_lookup(struct kvm_vcpu *vcpu, unsigned long vaddr)
{
	unsigned long old_entryhi, flags;
123
	int idx;
124 125 126 127 128 129

	local_irq_save(flags);

	old_entryhi = read_c0_entryhi();

	if (KVM_GUEST_KERNEL_MODE(vcpu))
130 131
		write_c0_entryhi((vaddr & VPN2_MASK) |
				 kvm_mips_get_kernel_asid(vcpu));
132
	else {
133 134
		write_c0_entryhi((vaddr & VPN2_MASK) |
				 kvm_mips_get_user_asid(vcpu));
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
	}

	mtc0_tlbw_hazard();

	tlb_probe();
	tlb_probe_hazard();
	idx = read_c0_index();

	/* Restore old ASID */
	write_c0_entryhi(old_entryhi);
	mtc0_tlbw_hazard();

	local_irq_restore(flags);

	kvm_debug("Host TLB lookup, %#lx, idx: %2d\n", vaddr, idx);

	return idx;
}
153
EXPORT_SYMBOL_GPL(kvm_mips_host_tlb_lookup);
154

155
static int _kvm_mips_host_tlb_inv(unsigned long entryhi)
156 157 158
{
	int idx;

159
	write_c0_entryhi(entryhi);
160 161 162 163 164 165 166 167 168
	mtc0_tlbw_hazard();

	tlb_probe();
	tlb_probe_hazard();
	idx = read_c0_index();

	if (idx >= current_cpu_data.tlbsize)
		BUG();

169
	if (idx >= 0) {
170 171 172 173 174 175
		write_c0_entryhi(UNIQUE_ENTRYHI(idx));
		write_c0_entrylo0(0);
		write_c0_entrylo1(0);
		mtc0_tlbw_hazard();

		tlb_write_indexed();
176
		tlbw_use_hazard();
177 178
	}

179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
	return idx;
}

int kvm_mips_host_tlb_inv(struct kvm_vcpu *vcpu, unsigned long va,
			  bool user, bool kernel)
{
	int idx_user, idx_kernel;
	unsigned long flags, old_entryhi;

	local_irq_save(flags);

	old_entryhi = read_c0_entryhi();

	if (user)
		idx_user = _kvm_mips_host_tlb_inv((va & VPN2_MASK) |
						  kvm_mips_get_user_asid(vcpu));
	if (kernel)
		idx_kernel = _kvm_mips_host_tlb_inv((va & VPN2_MASK) |
						kvm_mips_get_kernel_asid(vcpu));

199 200 201 202 203
	write_c0_entryhi(old_entryhi);
	mtc0_tlbw_hazard();

	local_irq_restore(flags);

204 205 206 207 208 209 210 211
	if (user && idx_user >= 0)
		kvm_debug("%s: Invalidated guest user entryhi %#lx @ idx %d\n",
			  __func__, (va & VPN2_MASK) |
				    kvm_mips_get_user_asid(vcpu), idx_user);
	if (kernel && idx_kernel >= 0)
		kvm_debug("%s: Invalidated guest kernel entryhi %#lx @ idx %d\n",
			  __func__, (va & VPN2_MASK) |
				    kvm_mips_get_kernel_asid(vcpu), idx_kernel);
212 213 214

	return 0;
}
215
EXPORT_SYMBOL_GPL(kvm_mips_host_tlb_inv);
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234

void kvm_mips_flush_host_tlb(int skip_kseg0)
{
	unsigned long flags;
	unsigned long old_entryhi, entryhi;
	unsigned long old_pagemask;
	int entry = 0;
	int maxentry = current_cpu_data.tlbsize;

	local_irq_save(flags);

	old_entryhi = read_c0_entryhi();
	old_pagemask = read_c0_pagemask();

	/* Blast 'em all away. */
	for (entry = 0; entry < maxentry; entry++) {
		write_c0_index(entry);

		if (skip_kseg0) {
235
			mtc0_tlbr_hazard();
236
			tlb_read();
237
			tlb_read_hazard();
238 239 240 241

			entryhi = read_c0_entryhi();

			/* Don't blow away guest kernel entries */
242
			if (KVM_GUEST_KSEGX(entryhi) == KVM_GUEST_KSEG0)
243
				continue;
244 245

			write_c0_pagemask(old_pagemask);
246 247 248 249 250 251 252 253 254
		}

		/* Make sure all entries differ. */
		write_c0_entryhi(UNIQUE_ENTRYHI(entry));
		write_c0_entrylo0(0);
		write_c0_entrylo1(0);
		mtc0_tlbw_hazard();

		tlb_write_indexed();
255
		tlbw_use_hazard();
256 257 258 259 260 261 262 263
	}

	write_c0_entryhi(old_entryhi);
	write_c0_pagemask(old_pagemask);
	mtc0_tlbw_hazard();

	local_irq_restore(flags);
}
264
EXPORT_SYMBOL_GPL(kvm_mips_flush_host_tlb);
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284

void kvm_local_flush_tlb_all(void)
{
	unsigned long flags;
	unsigned long old_ctx;
	int entry = 0;

	local_irq_save(flags);
	/* Save old context and create impossible VPN2 value */
	old_ctx = read_c0_entryhi();
	write_c0_entrylo0(0);
	write_c0_entrylo1(0);

	/* Blast 'em all away. */
	while (entry < current_cpu_data.tlbsize) {
		/* Make sure all entries differ. */
		write_c0_entryhi(UNIQUE_ENTRYHI(entry));
		write_c0_index(entry);
		mtc0_tlbw_hazard();
		tlb_write_indexed();
285
		tlbw_use_hazard();
286 287 288 289 290 291 292
		entry++;
	}
	write_c0_entryhi(old_ctx);
	mtc0_tlbw_hazard();

	local_irq_restore(flags);
}
293
EXPORT_SYMBOL_GPL(kvm_local_flush_tlb_all);
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328

/**
 * kvm_mips_suspend_mm() - Suspend the active mm.
 * @cpu		The CPU we're running on.
 *
 * Suspend the active_mm, ready for a switch to a KVM guest virtual address
 * space. This is left active for the duration of guest context, including time
 * with interrupts enabled, so we need to be careful not to confuse e.g. cache
 * management IPIs.
 *
 * kvm_mips_resume_mm() should be called before context switching to a different
 * process so we don't need to worry about reference counting.
 *
 * This needs to be in static kernel code to avoid exporting init_mm.
 */
void kvm_mips_suspend_mm(int cpu)
{
	cpumask_clear_cpu(cpu, mm_cpumask(current->active_mm));
	current->active_mm = &init_mm;
}
EXPORT_SYMBOL_GPL(kvm_mips_suspend_mm);

/**
 * kvm_mips_resume_mm() - Resume the current process mm.
 * @cpu		The CPU we're running on.
 *
 * Resume the mm of the current process, after a switch back from a KVM guest
 * virtual address space (see kvm_mips_suspend_mm()).
 */
void kvm_mips_resume_mm(int cpu)
{
	cpumask_set_cpu(cpu, mm_cpumask(current->mm));
	current->active_mm = current->mm;
}
EXPORT_SYMBOL_GPL(kvm_mips_resume_mm);