blob: cd7488641db8d3f27c6ed015506b9b4c1d2d84aa [file] [log] [blame]
Sanjay Lal740765c2012-11-21 18:34:00 -08001/*
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
4* for more details.
5*
6* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7* Authors: Sanjay Lal <sanjayl@kymasys.com>
8*/
9
10#ifndef __MIPS_KVM_HOST_H__
11#define __MIPS_KVM_HOST_H__
12
13#include <linux/mutex.h>
14#include <linux/hrtimer.h>
15#include <linux/interrupt.h>
16#include <linux/types.h>
17#include <linux/kvm.h>
18#include <linux/kvm_types.h>
19#include <linux/threads.h>
20#include <linux/spinlock.h>
21
James Hogan258f3a22016-06-15 19:29:47 +010022#include <asm/inst.h>
James Hogane6207bb2016-06-09 14:19:19 +010023#include <asm/mipsregs.h>
24
James Hogan48a3c4e2014-05-29 10:16:28 +010025/* MIPS KVM register ids */
26#define MIPS_CP0_32(_R, _S) \
James Hogan7bd4ace2014-12-02 15:47:04 +000027 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U32 | (8 * (_R) + (_S)))
James Hogan48a3c4e2014-05-29 10:16:28 +010028
29#define MIPS_CP0_64(_R, _S) \
James Hogan7bd4ace2014-12-02 15:47:04 +000030 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U64 | (8 * (_R) + (_S)))
James Hogan48a3c4e2014-05-29 10:16:28 +010031
32#define KVM_REG_MIPS_CP0_INDEX MIPS_CP0_32(0, 0)
33#define KVM_REG_MIPS_CP0_ENTRYLO0 MIPS_CP0_64(2, 0)
34#define KVM_REG_MIPS_CP0_ENTRYLO1 MIPS_CP0_64(3, 0)
35#define KVM_REG_MIPS_CP0_CONTEXT MIPS_CP0_64(4, 0)
36#define KVM_REG_MIPS_CP0_USERLOCAL MIPS_CP0_64(4, 2)
37#define KVM_REG_MIPS_CP0_PAGEMASK MIPS_CP0_32(5, 0)
38#define KVM_REG_MIPS_CP0_PAGEGRAIN MIPS_CP0_32(5, 1)
39#define KVM_REG_MIPS_CP0_WIRED MIPS_CP0_32(6, 0)
40#define KVM_REG_MIPS_CP0_HWRENA MIPS_CP0_32(7, 0)
41#define KVM_REG_MIPS_CP0_BADVADDR MIPS_CP0_64(8, 0)
42#define KVM_REG_MIPS_CP0_COUNT MIPS_CP0_32(9, 0)
43#define KVM_REG_MIPS_CP0_ENTRYHI MIPS_CP0_64(10, 0)
44#define KVM_REG_MIPS_CP0_COMPARE MIPS_CP0_32(11, 0)
45#define KVM_REG_MIPS_CP0_STATUS MIPS_CP0_32(12, 0)
James Hoganad58d4d2015-02-02 22:55:17 +000046#define KVM_REG_MIPS_CP0_INTCTL MIPS_CP0_32(12, 1)
James Hogan48a3c4e2014-05-29 10:16:28 +010047#define KVM_REG_MIPS_CP0_CAUSE MIPS_CP0_32(13, 0)
48#define KVM_REG_MIPS_CP0_EPC MIPS_CP0_64(14, 0)
James Hogan1068eaa2014-06-26 13:56:52 +010049#define KVM_REG_MIPS_CP0_PRID MIPS_CP0_32(15, 0)
James Hogan48a3c4e2014-05-29 10:16:28 +010050#define KVM_REG_MIPS_CP0_EBASE MIPS_CP0_64(15, 1)
51#define KVM_REG_MIPS_CP0_CONFIG MIPS_CP0_32(16, 0)
52#define KVM_REG_MIPS_CP0_CONFIG1 MIPS_CP0_32(16, 1)
53#define KVM_REG_MIPS_CP0_CONFIG2 MIPS_CP0_32(16, 2)
54#define KVM_REG_MIPS_CP0_CONFIG3 MIPS_CP0_32(16, 3)
James Hoganc7716072014-06-26 15:11:29 +010055#define KVM_REG_MIPS_CP0_CONFIG4 MIPS_CP0_32(16, 4)
56#define KVM_REG_MIPS_CP0_CONFIG5 MIPS_CP0_32(16, 5)
James Hogan48a3c4e2014-05-29 10:16:28 +010057#define KVM_REG_MIPS_CP0_CONFIG7 MIPS_CP0_32(16, 7)
58#define KVM_REG_MIPS_CP0_XCONTEXT MIPS_CP0_64(20, 0)
59#define KVM_REG_MIPS_CP0_ERROREPC MIPS_CP0_64(30, 0)
James Hogan05108702016-06-15 19:29:56 +010060#define KVM_REG_MIPS_CP0_KSCRATCH1 MIPS_CP0_64(31, 2)
61#define KVM_REG_MIPS_CP0_KSCRATCH2 MIPS_CP0_64(31, 3)
62#define KVM_REG_MIPS_CP0_KSCRATCH3 MIPS_CP0_64(31, 4)
63#define KVM_REG_MIPS_CP0_KSCRATCH4 MIPS_CP0_64(31, 5)
64#define KVM_REG_MIPS_CP0_KSCRATCH5 MIPS_CP0_64(31, 6)
65#define KVM_REG_MIPS_CP0_KSCRATCH6 MIPS_CP0_64(31, 7)
James Hogan48a3c4e2014-05-29 10:16:28 +010066
Sanjay Lal740765c2012-11-21 18:34:00 -080067
James Hogan12ed1fa2016-12-13 22:39:39 +000068#define KVM_MAX_VCPUS 8
Sanjay Lal740765c2012-11-21 18:34:00 -080069#define KVM_USER_MEM_SLOTS 8
70/* memory slots that does not exposed to userspace */
James Hogancaa1faa2015-12-16 23:49:26 +000071#define KVM_PRIVATE_MEM_SLOTS 0
Sanjay Lal740765c2012-11-21 18:34:00 -080072
73#define KVM_COALESCED_MMIO_PAGE_OFFSET 1
David Hildenbrand920552b2015-09-18 12:34:53 +020074#define KVM_HALT_POLL_NS_DEFAULT 500000
Sanjay Lal740765c2012-11-21 18:34:00 -080075
Sanjay Lal740765c2012-11-21 18:34:00 -080076
77
James Hogan42aa12e2016-06-15 19:29:57 +010078/*
79 * Special address that contains the comm page, used for reducing # of traps
80 * This needs to be within 32Kb of 0x0 (so the zero register can be used), but
81 * preferably not at 0x0 so that most kernel NULL pointer dereferences can be
82 * caught.
83 */
84#define KVM_GUEST_COMMPAGE_ADDR ((PAGE_SIZE > 0x8000) ? 0 : \
85 (0x8000 - PAGE_SIZE))
Sanjay Lal740765c2012-11-21 18:34:00 -080086
87#define KVM_GUEST_KERNEL_MODE(vcpu) ((kvm_read_c0_guest_status(vcpu->arch.cop0) & (ST0_EXL | ST0_ERL)) || \
88 ((kvm_read_c0_guest_status(vcpu->arch.cop0) & KSU_USER) == 0))
89
James Hogan22027942014-03-14 13:06:08 +000090#define KVM_GUEST_KUSEG 0x00000000UL
91#define KVM_GUEST_KSEG0 0x40000000UL
James Hogan7801bbe2016-11-14 23:59:27 +000092#define KVM_GUEST_KSEG1 0x40000000UL
James Hogan22027942014-03-14 13:06:08 +000093#define KVM_GUEST_KSEG23 0x60000000UL
James Hogan7f5a1dd2016-06-09 10:50:44 +010094#define KVM_GUEST_KSEGX(a) ((_ACAST32_(a)) & 0xe0000000)
James Hogan22027942014-03-14 13:06:08 +000095#define KVM_GUEST_CPHYSADDR(a) ((_ACAST32_(a)) & 0x1fffffff)
Sanjay Lal740765c2012-11-21 18:34:00 -080096
97#define KVM_GUEST_CKSEG0ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG0)
98#define KVM_GUEST_CKSEG1ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG1)
99#define KVM_GUEST_CKSEG23ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG23)
100
101/*
102 * Map an address to a certain kernel segment
103 */
104#define KVM_GUEST_KSEG0ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG0)
105#define KVM_GUEST_KSEG1ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG1)
106#define KVM_GUEST_KSEG23ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG23)
107
James Hogan22027942014-03-14 13:06:08 +0000108#define KVM_INVALID_PAGE 0xdeadbeef
James Hogan22027942014-03-14 13:06:08 +0000109#define KVM_INVALID_ADDR 0xdeadbeef
Sanjay Lal740765c2012-11-21 18:34:00 -0800110
James Hoganf6f70172016-08-01 09:07:52 +0100111/*
112 * EVA has overlapping user & kernel address spaces, so user VAs may be >
113 * PAGE_OFFSET. For this reason we can't use the default KVM_HVA_ERR_BAD of
114 * PAGE_OFFSET.
115 */
116
117#define KVM_HVA_ERR_BAD (-1UL)
118#define KVM_HVA_ERR_RO_BAD (-2UL)
119
120static inline bool kvm_is_error_hva(unsigned long addr)
121{
122 return IS_ERR_VALUE(addr);
123}
124
Sanjay Lal740765c2012-11-21 18:34:00 -0800125struct kvm_vm_stat {
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000126 ulong remote_tlb_flush;
Sanjay Lal740765c2012-11-21 18:34:00 -0800127};
128
129struct kvm_vcpu_stat {
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000130 u64 wait_exits;
131 u64 cache_exits;
132 u64 signal_exits;
133 u64 int_exits;
134 u64 cop_unusable_exits;
135 u64 tlbmod_exits;
136 u64 tlbmiss_ld_exits;
137 u64 tlbmiss_st_exits;
138 u64 addrerr_st_exits;
139 u64 addrerr_ld_exits;
140 u64 syscall_exits;
141 u64 resvd_inst_exits;
142 u64 break_inst_exits;
143 u64 trap_inst_exits;
144 u64 msa_fpe_exits;
145 u64 fpe_exits;
146 u64 msa_disabled_exits;
147 u64 flush_dcache_exits;
James Hogana7244922017-03-14 10:15:18 +0000148#ifdef CONFIG_KVM_MIPS_VZ
149 u64 vz_gpsi_exits;
150 u64 vz_gsfc_exits;
151 u64 vz_hc_exits;
152 u64 vz_grr_exits;
153 u64 vz_gva_exits;
154 u64 vz_ghfc_exits;
155 u64 vz_gpa_exits;
156 u64 vz_resvd_exits;
157#endif
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000158 u64 halt_successful_poll;
159 u64 halt_attempted_poll;
160 u64 halt_poll_invalid;
161 u64 halt_wakeup;
Sanjay Lal740765c2012-11-21 18:34:00 -0800162};
163
Sanjay Lal740765c2012-11-21 18:34:00 -0800164struct kvm_arch_memory_slot {
165};
166
167struct kvm_arch {
James Hogan06c158c2015-05-01 13:50:18 +0100168 /* Guest physical mm */
169 struct mm_struct gpa_mm;
Sanjay Lal740765c2012-11-21 18:34:00 -0800170};
171
James Hogan22027942014-03-14 13:06:08 +0000172#define N_MIPS_COPROC_REGS 32
173#define N_MIPS_COPROC_SEL 8
Sanjay Lal740765c2012-11-21 18:34:00 -0800174
175struct mips_coproc {
176 unsigned long reg[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
177#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
178 unsigned long stat[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
179#endif
180};
181
182/*
183 * Coprocessor 0 register names
184 */
James Hogan22027942014-03-14 13:06:08 +0000185#define MIPS_CP0_TLB_INDEX 0
186#define MIPS_CP0_TLB_RANDOM 1
187#define MIPS_CP0_TLB_LOW 2
188#define MIPS_CP0_TLB_LO0 2
189#define MIPS_CP0_TLB_LO1 3
190#define MIPS_CP0_TLB_CONTEXT 4
191#define MIPS_CP0_TLB_PG_MASK 5
192#define MIPS_CP0_TLB_WIRED 6
193#define MIPS_CP0_HWRENA 7
194#define MIPS_CP0_BAD_VADDR 8
195#define MIPS_CP0_COUNT 9
196#define MIPS_CP0_TLB_HI 10
197#define MIPS_CP0_COMPARE 11
198#define MIPS_CP0_STATUS 12
199#define MIPS_CP0_CAUSE 13
200#define MIPS_CP0_EXC_PC 14
201#define MIPS_CP0_PRID 15
202#define MIPS_CP0_CONFIG 16
203#define MIPS_CP0_LLADDR 17
204#define MIPS_CP0_WATCH_LO 18
205#define MIPS_CP0_WATCH_HI 19
206#define MIPS_CP0_TLB_XCONTEXT 20
207#define MIPS_CP0_ECC 26
208#define MIPS_CP0_CACHE_ERR 27
209#define MIPS_CP0_TAG_LO 28
210#define MIPS_CP0_TAG_HI 29
211#define MIPS_CP0_ERROR_PC 30
212#define MIPS_CP0_DEBUG 23
213#define MIPS_CP0_DEPC 24
214#define MIPS_CP0_PERFCNT 25
215#define MIPS_CP0_ERRCTL 26
216#define MIPS_CP0_DATA_LO 28
217#define MIPS_CP0_DATA_HI 29
218#define MIPS_CP0_DESAVE 31
Sanjay Lal740765c2012-11-21 18:34:00 -0800219
James Hogan22027942014-03-14 13:06:08 +0000220#define MIPS_CP0_CONFIG_SEL 0
221#define MIPS_CP0_CONFIG1_SEL 1
222#define MIPS_CP0_CONFIG2_SEL 2
223#define MIPS_CP0_CONFIG3_SEL 3
James Hoganc7716072014-06-26 15:11:29 +0100224#define MIPS_CP0_CONFIG4_SEL 4
225#define MIPS_CP0_CONFIG5_SEL 5
Sanjay Lal740765c2012-11-21 18:34:00 -0800226
Sanjay Lal740765c2012-11-21 18:34:00 -0800227/* Resume Flags */
James Hogan22027942014-03-14 13:06:08 +0000228#define RESUME_FLAG_DR (1<<0) /* Reload guest nonvolatile state? */
229#define RESUME_FLAG_HOST (1<<1) /* Resume host? */
Sanjay Lal740765c2012-11-21 18:34:00 -0800230
James Hogan22027942014-03-14 13:06:08 +0000231#define RESUME_GUEST 0
232#define RESUME_GUEST_DR RESUME_FLAG_DR
233#define RESUME_HOST RESUME_FLAG_HOST
Sanjay Lal740765c2012-11-21 18:34:00 -0800234
235enum emulation_result {
236 EMULATE_DONE, /* no further processing */
237 EMULATE_DO_MMIO, /* kvm_run filled with MMIO request */
238 EMULATE_FAIL, /* can't emulate this instruction */
239 EMULATE_WAIT, /* WAIT instruction */
240 EMULATE_PRIV_FAIL,
James Hogan4cf74c92016-11-26 00:37:28 +0000241 EMULATE_EXCEPT, /* A guest exception has been generated */
James Hogan955d8dc2017-03-14 10:15:14 +0000242 EMULATE_HYPERCALL, /* HYPCALL instruction */
Sanjay Lal740765c2012-11-21 18:34:00 -0800243};
244
Sanjay Lal740765c2012-11-21 18:34:00 -0800245#define mips3_paddr_to_tlbpfn(x) \
James Hogan22027942014-03-14 13:06:08 +0000246 (((unsigned long)(x) >> MIPS3_PG_SHIFT) & MIPS3_PG_FRAME)
Sanjay Lal740765c2012-11-21 18:34:00 -0800247#define mips3_tlbpfn_to_paddr(x) \
James Hogan22027942014-03-14 13:06:08 +0000248 ((unsigned long)((x) & MIPS3_PG_FRAME) << MIPS3_PG_SHIFT)
Sanjay Lal740765c2012-11-21 18:34:00 -0800249
James Hogan22027942014-03-14 13:06:08 +0000250#define MIPS3_PG_SHIFT 6
251#define MIPS3_PG_FRAME 0x3fffffc0
Sanjay Lal740765c2012-11-21 18:34:00 -0800252
James Hogan22027942014-03-14 13:06:08 +0000253#define VPN2_MASK 0xffffe000
Paul Burtonca64c2b2016-05-06 14:36:20 +0100254#define KVM_ENTRYHI_ASID MIPS_ENTRYHI_ASID
James Hogane6207bb2016-06-09 14:19:19 +0100255#define TLB_IS_GLOBAL(x) ((x).tlb_lo[0] & (x).tlb_lo[1] & ENTRYLO_G)
James Hogan22027942014-03-14 13:06:08 +0000256#define TLB_VPN2(x) ((x).tlb_hi & VPN2_MASK)
Paul Burtonca64c2b2016-05-06 14:36:20 +0100257#define TLB_ASID(x) ((x).tlb_hi & KVM_ENTRYHI_ASID)
James Hogan19d194c2016-06-09 14:19:18 +0100258#define TLB_LO_IDX(x, va) (((va) >> PAGE_SHIFT) & 1)
James Hogane6207bb2016-06-09 14:19:19 +0100259#define TLB_IS_VALID(x, va) ((x).tlb_lo[TLB_LO_IDX(x, va)] & ENTRYLO_V)
James Hogan1880afd2016-11-28 23:04:52 +0000260#define TLB_IS_DIRTY(x, va) ((x).tlb_lo[TLB_LO_IDX(x, va)] & ENTRYLO_D)
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700261#define TLB_HI_VPN2_HIT(x, y) ((TLB_VPN2(x) & ~(x).tlb_mask) == \
262 ((y) & VPN2_MASK & ~(x).tlb_mask))
263#define TLB_HI_ASID_HIT(x, y) (TLB_IS_GLOBAL(x) || \
Paul Burtonca64c2b2016-05-06 14:36:20 +0100264 TLB_ASID(x) == ((y) & KVM_ENTRYHI_ASID))
Sanjay Lal740765c2012-11-21 18:34:00 -0800265
266struct kvm_mips_tlb {
267 long tlb_mask;
268 long tlb_hi;
James Hogan9fbfb062016-06-09 14:19:17 +0100269 long tlb_lo[2];
Sanjay Lal740765c2012-11-21 18:34:00 -0800270};
271
James Hoganaba85922016-12-16 15:57:00 +0000272#define KVM_NR_MEM_OBJS 4
273
274/*
275 * We don't want allocation failures within the mmu code, so we preallocate
276 * enough memory for a single page fault in a cache.
277 */
278struct kvm_mmu_memory_cache {
279 int nobjs;
280 void *objects[KVM_NR_MEM_OBJS];
281};
282
James Hoganf9431762016-06-14 09:40:10 +0100283#define KVM_MIPS_AUX_FPU 0x1
284#define KVM_MIPS_AUX_MSA 0x2
James Hogan98e91b82014-11-18 14:09:12 +0000285
James Hogan22027942014-03-14 13:06:08 +0000286#define KVM_MIPS_GUEST_TLB_SIZE 64
Sanjay Lal740765c2012-11-21 18:34:00 -0800287struct kvm_vcpu_arch {
James Hogan878edf02016-06-09 14:19:14 +0100288 void *guest_ebase;
James Hogan797179b2016-06-09 10:50:43 +0100289 int (*vcpu_run)(struct kvm_run *run, struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800290 unsigned long host_stack;
291 unsigned long host_gp;
292
293 /* Host CP0 registers used when handling exits from guest */
294 unsigned long host_cp0_badvaddr;
Sanjay Lal740765c2012-11-21 18:34:00 -0800295 unsigned long host_cp0_epc;
James Hogan31cf7492016-06-09 14:19:09 +0100296 u32 host_cp0_cause;
James Hogan6a97c772015-04-23 16:54:35 +0100297 u32 host_cp0_badinstr;
298 u32 host_cp0_badinstrp;
Sanjay Lal740765c2012-11-21 18:34:00 -0800299
300 /* GPRS */
301 unsigned long gprs[32];
302 unsigned long hi;
303 unsigned long lo;
304 unsigned long pc;
305
306 /* FPU State */
307 struct mips_fpu_struct fpu;
James Hoganf9431762016-06-14 09:40:10 +0100308 /* Which auxiliary state is loaded (KVM_MIPS_AUX_*) */
309 unsigned int aux_inuse;
Sanjay Lal740765c2012-11-21 18:34:00 -0800310
311 /* COP0 State */
312 struct mips_coproc *cop0;
313
314 /* Host KSEG0 address of the EI/DI offset */
315 void *kseg0_commpage;
316
James Hogane1e575f62016-10-25 16:11:12 +0100317 /* Resume PC after MMIO completion */
318 unsigned long io_pc;
319 /* GPR used as IO source/target */
320 u32 io_gpr;
Sanjay Lal740765c2012-11-21 18:34:00 -0800321
James Hogane30492b2014-05-29 10:16:35 +0100322 struct hrtimer comparecount_timer;
James Hoganf8239342014-05-29 10:16:37 +0100323 /* Count timer control KVM register */
James Hoganbdb7ed82016-06-09 14:19:07 +0100324 u32 count_ctl;
James Hogane30492b2014-05-29 10:16:35 +0100325 /* Count bias from the raw time */
James Hoganbdb7ed82016-06-09 14:19:07 +0100326 u32 count_bias;
James Hogane30492b2014-05-29 10:16:35 +0100327 /* Frequency of timer in Hz */
James Hoganbdb7ed82016-06-09 14:19:07 +0100328 u32 count_hz;
James Hogane30492b2014-05-29 10:16:35 +0100329 /* Dynamic nanosecond bias (multiple of count_period) to avoid overflow */
330 s64 count_dyn_bias;
James Hoganf8239342014-05-29 10:16:37 +0100331 /* Resume time */
332 ktime_t count_resume;
James Hogane30492b2014-05-29 10:16:35 +0100333 /* Period of timer tick in ns */
334 u64 count_period;
Sanjay Lal740765c2012-11-21 18:34:00 -0800335
336 /* Bitmask of exceptions that are pending */
337 unsigned long pending_exceptions;
338
339 /* Bitmask of pending exceptions to be cleared */
340 unsigned long pending_exceptions_clr;
341
Sanjay Lal740765c2012-11-21 18:34:00 -0800342 /* S/W Based TLB for guest */
343 struct kvm_mips_tlb guest_tlb[KVM_MIPS_GUEST_TLB_SIZE];
344
James Hoganc550d532016-10-11 23:14:39 +0100345 /* Guest kernel/user [partial] mm */
Sanjay Lal740765c2012-11-21 18:34:00 -0800346 struct mm_struct guest_kernel_mm, guest_user_mm;
347
James Hogan25b08c72016-09-16 00:06:43 +0100348 /* Guest ASID of last user mode execution */
349 unsigned int last_user_gasid;
350
James Hoganaba85922016-12-16 15:57:00 +0000351 /* Cache some mmu pages needed inside spinlock regions */
352 struct kvm_mmu_memory_cache mmu_page_cache;
353
Sanjay Lal740765c2012-11-21 18:34:00 -0800354 int last_sched_cpu;
355
356 /* WAIT executed */
357 int wait;
James Hogan98e91b82014-11-18 14:09:12 +0000358
359 u8 fpu_enabled;
James Hogan539cb89fb2015-03-05 11:43:36 +0000360 u8 msa_enabled;
Sanjay Lal740765c2012-11-21 18:34:00 -0800361};
362
James Hoganc73c99b2014-05-29 10:16:33 +0100363static inline void _kvm_atomic_set_c0_guest_reg(unsigned long *reg,
364 unsigned long val)
365{
366 unsigned long temp;
367 do {
368 __asm__ __volatile__(
James Hogand85ebff2016-07-04 19:35:10 +0100369 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100370 " " __LL "%0, %1 \n"
371 " or %0, %2 \n"
372 " " __SC "%0, %1 \n"
373 " .set mips0 \n"
374 : "=&r" (temp), "+m" (*reg)
375 : "r" (val));
376 } while (unlikely(!temp));
377}
378
379static inline void _kvm_atomic_clear_c0_guest_reg(unsigned long *reg,
380 unsigned long val)
381{
382 unsigned long temp;
383 do {
384 __asm__ __volatile__(
James Hogand85ebff2016-07-04 19:35:10 +0100385 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100386 " " __LL "%0, %1 \n"
387 " and %0, %2 \n"
388 " " __SC "%0, %1 \n"
389 " .set mips0 \n"
390 : "=&r" (temp), "+m" (*reg)
391 : "r" (~val));
392 } while (unlikely(!temp));
393}
394
395static inline void _kvm_atomic_change_c0_guest_reg(unsigned long *reg,
396 unsigned long change,
397 unsigned long val)
398{
399 unsigned long temp;
400 do {
401 __asm__ __volatile__(
James Hogand85ebff2016-07-04 19:35:10 +0100402 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100403 " " __LL "%0, %1 \n"
404 " and %0, %2 \n"
405 " or %0, %3 \n"
406 " " __SC "%0, %1 \n"
407 " .set mips0 \n"
408 : "=&r" (temp), "+m" (*reg)
409 : "r" (~change), "r" (val & change));
410 } while (unlikely(!temp));
411}
412
James Hogana27660f2017-03-14 10:15:25 +0000413/* Guest register types, used in accessor build below */
414#define __KVMT32 u32
415#define __KVMTl unsigned long
James Hoganc73c99b2014-05-29 10:16:33 +0100416
James Hogana27660f2017-03-14 10:15:25 +0000417/*
418 * __BUILD_KVM_$ops_SAVED(): kvm_$op_sw_gc0_$reg()
419 * These operate on the saved guest C0 state in RAM.
420 */
James Hoganc73c99b2014-05-29 10:16:33 +0100421
James Hogana27660f2017-03-14 10:15:25 +0000422/* Generate saved context simple accessors */
423#define __BUILD_KVM_RW_SAVED(name, type, _reg, sel) \
424static inline __KVMT##type kvm_read_sw_gc0_##name(struct mips_coproc *cop0) \
James Hogan22027942014-03-14 13:06:08 +0000425{ \
James Hogana27660f2017-03-14 10:15:25 +0000426 return cop0->reg[(_reg)][(sel)]; \
427} \
428static inline void kvm_write_sw_gc0_##name(struct mips_coproc *cop0, \
429 __KVMT##type val) \
430{ \
431 cop0->reg[(_reg)][(sel)] = val; \
Sanjay Lal740765c2012-11-21 18:34:00 -0800432}
433
James Hogana27660f2017-03-14 10:15:25 +0000434/* Generate saved context bitwise modifiers */
435#define __BUILD_KVM_SET_SAVED(name, type, _reg, sel) \
436static inline void kvm_set_sw_gc0_##name(struct mips_coproc *cop0, \
437 __KVMT##type val) \
438{ \
439 cop0->reg[(_reg)][(sel)] |= val; \
440} \
441static inline void kvm_clear_sw_gc0_##name(struct mips_coproc *cop0, \
442 __KVMT##type val) \
443{ \
444 cop0->reg[(_reg)][(sel)] &= ~val; \
445} \
446static inline void kvm_change_sw_gc0_##name(struct mips_coproc *cop0, \
447 __KVMT##type mask, \
448 __KVMT##type val) \
449{ \
450 unsigned long _mask = mask; \
451 cop0->reg[(_reg)][(sel)] &= ~_mask; \
452 cop0->reg[(_reg)][(sel)] |= val & _mask; \
453}
454
455/* Generate saved context atomic bitwise modifiers */
456#define __BUILD_KVM_ATOMIC_SAVED(name, type, _reg, sel) \
457static inline void kvm_set_sw_gc0_##name(struct mips_coproc *cop0, \
458 __KVMT##type val) \
459{ \
460 _kvm_atomic_set_c0_guest_reg(&cop0->reg[(_reg)][(sel)], val); \
461} \
462static inline void kvm_clear_sw_gc0_##name(struct mips_coproc *cop0, \
463 __KVMT##type val) \
464{ \
465 _kvm_atomic_clear_c0_guest_reg(&cop0->reg[(_reg)][(sel)], val); \
466} \
467static inline void kvm_change_sw_gc0_##name(struct mips_coproc *cop0, \
468 __KVMT##type mask, \
469 __KVMT##type val) \
470{ \
471 _kvm_atomic_change_c0_guest_reg(&cop0->reg[(_reg)][(sel)], mask, \
472 val); \
473}
474
475/*
476 * __BUILD_KVM_$ops_VZ(): kvm_$op_vz_gc0_$reg()
477 * These operate on the VZ guest C0 context in hardware.
478 */
479
480/* Generate VZ guest context simple accessors */
481#define __BUILD_KVM_RW_VZ(name, type, _reg, sel) \
482static inline __KVMT##type kvm_read_vz_gc0_##name(struct mips_coproc *cop0) \
483{ \
484 return read_gc0_##name(); \
485} \
486static inline void kvm_write_vz_gc0_##name(struct mips_coproc *cop0, \
487 __KVMT##type val) \
488{ \
489 write_gc0_##name(val); \
490}
491
492/* Generate VZ guest context bitwise modifiers */
493#define __BUILD_KVM_SET_VZ(name, type, _reg, sel) \
494static inline void kvm_set_vz_gc0_##name(struct mips_coproc *cop0, \
495 __KVMT##type val) \
496{ \
497 set_gc0_##name(val); \
498} \
499static inline void kvm_clear_vz_gc0_##name(struct mips_coproc *cop0, \
500 __KVMT##type val) \
501{ \
502 clear_gc0_##name(val); \
503} \
504static inline void kvm_change_vz_gc0_##name(struct mips_coproc *cop0, \
505 __KVMT##type mask, \
506 __KVMT##type val) \
507{ \
508 change_gc0_##name(mask, val); \
509}
510
511/* Generate VZ guest context save/restore to/from saved context */
512#define __BUILD_KVM_SAVE_VZ(name, _reg, sel) \
513static inline void kvm_restore_gc0_##name(struct mips_coproc *cop0) \
514{ \
515 write_gc0_##name(cop0->reg[(_reg)][(sel)]); \
516} \
517static inline void kvm_save_gc0_##name(struct mips_coproc *cop0) \
518{ \
519 cop0->reg[(_reg)][(sel)] = read_gc0_##name(); \
520}
521
522/*
523 * __BUILD_KVM_$ops_WRAP(): kvm_$op_$name1() -> kvm_$op_$name2()
524 * These wrap a set of operations to provide them with a different name.
525 */
526
527/* Generate simple accessor wrapper */
528#define __BUILD_KVM_RW_WRAP(name1, name2, type) \
529static inline __KVMT##type kvm_read_##name1(struct mips_coproc *cop0) \
530{ \
531 return kvm_read_##name2(cop0); \
532} \
533static inline void kvm_write_##name1(struct mips_coproc *cop0, \
534 __KVMT##type val) \
535{ \
536 kvm_write_##name2(cop0, val); \
537}
538
539/* Generate bitwise modifier wrapper */
540#define __BUILD_KVM_SET_WRAP(name1, name2, type) \
541static inline void kvm_set_##name1(struct mips_coproc *cop0, \
542 __KVMT##type val) \
543{ \
544 kvm_set_##name2(cop0, val); \
545} \
546static inline void kvm_clear_##name1(struct mips_coproc *cop0, \
547 __KVMT##type val) \
548{ \
549 kvm_clear_##name2(cop0, val); \
550} \
551static inline void kvm_change_##name1(struct mips_coproc *cop0, \
552 __KVMT##type mask, \
553 __KVMT##type val) \
554{ \
555 kvm_change_##name2(cop0, mask, val); \
556}
557
558/*
559 * __BUILD_KVM_$ops_SW(): kvm_$op_c0_guest_$reg() -> kvm_$op_sw_gc0_$reg()
560 * These generate accessors operating on the saved context in RAM, and wrap them
561 * with the common guest C0 accessors (for use by common emulation code).
562 */
563
564#define __BUILD_KVM_RW_SW(name, type, _reg, sel) \
565 __BUILD_KVM_RW_SAVED(name, type, _reg, sel) \
566 __BUILD_KVM_RW_WRAP(c0_guest_##name, sw_gc0_##name, type)
567
568#define __BUILD_KVM_SET_SW(name, type, _reg, sel) \
569 __BUILD_KVM_SET_SAVED(name, type, _reg, sel) \
570 __BUILD_KVM_SET_WRAP(c0_guest_##name, sw_gc0_##name, type)
571
572#define __BUILD_KVM_ATOMIC_SW(name, type, _reg, sel) \
573 __BUILD_KVM_ATOMIC_SAVED(name, type, _reg, sel) \
574 __BUILD_KVM_SET_WRAP(c0_guest_##name, sw_gc0_##name, type)
575
576#ifndef CONFIG_KVM_MIPS_VZ
577
578/*
579 * T&E (trap & emulate software based virtualisation)
580 * We generate the common accessors operating exclusively on the saved context
581 * in RAM.
582 */
583
584#define __BUILD_KVM_RW_HW __BUILD_KVM_RW_SW
585#define __BUILD_KVM_SET_HW __BUILD_KVM_SET_SW
586#define __BUILD_KVM_ATOMIC_HW __BUILD_KVM_ATOMIC_SW
587
588#else
589
590/*
591 * VZ (hardware assisted virtualisation)
592 * These macros use the active guest state in VZ mode (hardware registers),
593 */
594
595/*
596 * __BUILD_KVM_$ops_HW(): kvm_$op_c0_guest_$reg() -> kvm_$op_vz_gc0_$reg()
597 * These generate accessors operating on the VZ guest context in hardware, and
598 * wrap them with the common guest C0 accessors (for use by common emulation
599 * code).
600 *
601 * Accessors operating on the saved context in RAM are also generated to allow
602 * convenient explicit saving and restoring of the state.
603 */
604
605#define __BUILD_KVM_RW_HW(name, type, _reg, sel) \
606 __BUILD_KVM_RW_SAVED(name, type, _reg, sel) \
607 __BUILD_KVM_RW_VZ(name, type, _reg, sel) \
608 __BUILD_KVM_RW_WRAP(c0_guest_##name, vz_gc0_##name, type) \
609 __BUILD_KVM_SAVE_VZ(name, _reg, sel)
610
611#define __BUILD_KVM_SET_HW(name, type, _reg, sel) \
612 __BUILD_KVM_SET_SAVED(name, type, _reg, sel) \
613 __BUILD_KVM_SET_VZ(name, type, _reg, sel) \
614 __BUILD_KVM_SET_WRAP(c0_guest_##name, vz_gc0_##name, type)
615
616/*
617 * We can't do atomic modifications of COP0 state if hardware can modify it.
618 * Races must be handled explicitly.
619 */
620#define __BUILD_KVM_ATOMIC_HW __BUILD_KVM_SET_HW
621
622#endif
623
624/*
625 * Define accessors for CP0 registers that are accessible to the guest. These
626 * are primarily used by common emulation code, which may need to access the
627 * registers differently depending on the implementation.
628 *
629 * fns_hw/sw name type reg num select
630 */
631__BUILD_KVM_RW_HW(index, 32, MIPS_CP0_TLB_INDEX, 0)
632__BUILD_KVM_RW_HW(entrylo0, l, MIPS_CP0_TLB_LO0, 0)
633__BUILD_KVM_RW_HW(entrylo1, l, MIPS_CP0_TLB_LO1, 0)
634__BUILD_KVM_RW_HW(context, l, MIPS_CP0_TLB_CONTEXT, 0)
635__BUILD_KVM_RW_HW(userlocal, l, MIPS_CP0_TLB_CONTEXT, 2)
636__BUILD_KVM_RW_HW(pagemask, l, MIPS_CP0_TLB_PG_MASK, 0)
637__BUILD_KVM_RW_HW(pagegrain, 32, MIPS_CP0_TLB_PG_MASK, 1)
638__BUILD_KVM_RW_HW(wired, 32, MIPS_CP0_TLB_WIRED, 0)
639__BUILD_KVM_RW_HW(hwrena, 32, MIPS_CP0_HWRENA, 0)
640__BUILD_KVM_RW_HW(badvaddr, l, MIPS_CP0_BAD_VADDR, 0)
641__BUILD_KVM_RW_SW(count, 32, MIPS_CP0_COUNT, 0)
642__BUILD_KVM_RW_HW(entryhi, l, MIPS_CP0_TLB_HI, 0)
643__BUILD_KVM_RW_HW(compare, 32, MIPS_CP0_COMPARE, 0)
644__BUILD_KVM_RW_HW(status, 32, MIPS_CP0_STATUS, 0)
645__BUILD_KVM_RW_HW(intctl, 32, MIPS_CP0_STATUS, 1)
646__BUILD_KVM_RW_HW(cause, 32, MIPS_CP0_CAUSE, 0)
647__BUILD_KVM_RW_HW(epc, l, MIPS_CP0_EXC_PC, 0)
648__BUILD_KVM_RW_SW(prid, 32, MIPS_CP0_PRID, 0)
649__BUILD_KVM_RW_HW(ebase, l, MIPS_CP0_PRID, 1)
650__BUILD_KVM_RW_HW(config, 32, MIPS_CP0_CONFIG, 0)
651__BUILD_KVM_RW_HW(config1, 32, MIPS_CP0_CONFIG, 1)
652__BUILD_KVM_RW_HW(config2, 32, MIPS_CP0_CONFIG, 2)
653__BUILD_KVM_RW_HW(config3, 32, MIPS_CP0_CONFIG, 3)
654__BUILD_KVM_RW_HW(config4, 32, MIPS_CP0_CONFIG, 4)
655__BUILD_KVM_RW_HW(config5, 32, MIPS_CP0_CONFIG, 5)
656__BUILD_KVM_RW_HW(config6, 32, MIPS_CP0_CONFIG, 6)
657__BUILD_KVM_RW_HW(config7, 32, MIPS_CP0_CONFIG, 7)
658__BUILD_KVM_RW_HW(errorepc, l, MIPS_CP0_ERROR_PC, 0)
659__BUILD_KVM_RW_HW(kscratch1, l, MIPS_CP0_DESAVE, 2)
660__BUILD_KVM_RW_HW(kscratch2, l, MIPS_CP0_DESAVE, 3)
661__BUILD_KVM_RW_HW(kscratch3, l, MIPS_CP0_DESAVE, 4)
662__BUILD_KVM_RW_HW(kscratch4, l, MIPS_CP0_DESAVE, 5)
663__BUILD_KVM_RW_HW(kscratch5, l, MIPS_CP0_DESAVE, 6)
664__BUILD_KVM_RW_HW(kscratch6, l, MIPS_CP0_DESAVE, 7)
665
666/* Bitwise operations (on HW state) */
667__BUILD_KVM_SET_HW(status, 32, MIPS_CP0_STATUS, 0)
668/* Cause can be modified asynchronously from hardirq hrtimer callback */
669__BUILD_KVM_ATOMIC_HW(cause, 32, MIPS_CP0_CAUSE, 0)
670__BUILD_KVM_SET_HW(ebase, l, MIPS_CP0_PRID, 1)
671
James Hogan98e91b82014-11-18 14:09:12 +0000672/* Helpers */
673
674static inline bool kvm_mips_guest_can_have_fpu(struct kvm_vcpu_arch *vcpu)
675{
James Hogan19451e52016-06-15 19:29:50 +0100676 return (!__builtin_constant_p(raw_cpu_has_fpu) || raw_cpu_has_fpu) &&
James Hogan98e91b82014-11-18 14:09:12 +0000677 vcpu->fpu_enabled;
678}
679
680static inline bool kvm_mips_guest_has_fpu(struct kvm_vcpu_arch *vcpu)
681{
682 return kvm_mips_guest_can_have_fpu(vcpu) &&
683 kvm_read_c0_guest_config1(vcpu->cop0) & MIPS_CONF1_FP;
684}
Sanjay Lal740765c2012-11-21 18:34:00 -0800685
James Hogan539cb89fb2015-03-05 11:43:36 +0000686static inline bool kvm_mips_guest_can_have_msa(struct kvm_vcpu_arch *vcpu)
687{
688 return (!__builtin_constant_p(cpu_has_msa) || cpu_has_msa) &&
689 vcpu->msa_enabled;
690}
691
692static inline bool kvm_mips_guest_has_msa(struct kvm_vcpu_arch *vcpu)
693{
694 return kvm_mips_guest_can_have_msa(vcpu) &&
695 kvm_read_c0_guest_config3(vcpu->cop0) & MIPS_CONF3_MSA;
696}
697
Sanjay Lal740765c2012-11-21 18:34:00 -0800698struct kvm_mips_callbacks {
James Hogan2dca3722014-05-29 10:16:40 +0100699 int (*handle_cop_unusable)(struct kvm_vcpu *vcpu);
700 int (*handle_tlb_mod)(struct kvm_vcpu *vcpu);
701 int (*handle_tlb_ld_miss)(struct kvm_vcpu *vcpu);
702 int (*handle_tlb_st_miss)(struct kvm_vcpu *vcpu);
703 int (*handle_addr_err_st)(struct kvm_vcpu *vcpu);
704 int (*handle_addr_err_ld)(struct kvm_vcpu *vcpu);
705 int (*handle_syscall)(struct kvm_vcpu *vcpu);
706 int (*handle_res_inst)(struct kvm_vcpu *vcpu);
707 int (*handle_break)(struct kvm_vcpu *vcpu);
James Hogan0a560422015-02-06 16:03:57 +0000708 int (*handle_trap)(struct kvm_vcpu *vcpu);
James Hoganc2537ed2015-02-06 10:56:27 +0000709 int (*handle_msa_fpe)(struct kvm_vcpu *vcpu);
James Hogan1c0cd662015-02-06 10:56:27 +0000710 int (*handle_fpe)(struct kvm_vcpu *vcpu);
James Hogan98119ad2015-02-06 11:11:56 +0000711 int (*handle_msa_disabled)(struct kvm_vcpu *vcpu);
James Hogan28c1e762017-03-14 10:15:24 +0000712 int (*handle_guest_exit)(struct kvm_vcpu *vcpu);
James Hoganedab4fe2017-03-14 10:15:23 +0000713 int (*hardware_enable)(void);
714 void (*hardware_disable)(void);
James Hogan607ef2f2017-03-14 10:15:22 +0000715 int (*check_extension)(struct kvm *kvm, long ext);
James Hogan2dca3722014-05-29 10:16:40 +0100716 int (*vcpu_init)(struct kvm_vcpu *vcpu);
James Hogan630766b32016-09-08 23:00:24 +0100717 void (*vcpu_uninit)(struct kvm_vcpu *vcpu);
James Hogan2dca3722014-05-29 10:16:40 +0100718 int (*vcpu_setup)(struct kvm_vcpu *vcpu);
James Hoganb6209112016-10-25 00:01:37 +0100719 void (*flush_shadow_all)(struct kvm *kvm);
720 /*
721 * Must take care of flushing any cached GPA PTEs (e.g. guest entries in
722 * VZ root TLB, or T&E GVA page tables and corresponding root TLB
723 * mappings).
724 */
725 void (*flush_shadow_memslot)(struct kvm *kvm,
726 const struct kvm_memory_slot *slot);
James Hogan2dca3722014-05-29 10:16:40 +0100727 gpa_t (*gva_to_gpa)(gva_t gva);
728 void (*queue_timer_int)(struct kvm_vcpu *vcpu);
729 void (*dequeue_timer_int)(struct kvm_vcpu *vcpu);
730 void (*queue_io_int)(struct kvm_vcpu *vcpu,
731 struct kvm_mips_interrupt *irq);
732 void (*dequeue_io_int)(struct kvm_vcpu *vcpu,
733 struct kvm_mips_interrupt *irq);
734 int (*irq_deliver)(struct kvm_vcpu *vcpu, unsigned int priority,
James Hoganbdb7ed82016-06-09 14:19:07 +0100735 u32 cause);
James Hogan2dca3722014-05-29 10:16:40 +0100736 int (*irq_clear)(struct kvm_vcpu *vcpu, unsigned int priority,
James Hoganbdb7ed82016-06-09 14:19:07 +0100737 u32 cause);
James Hoganf5c43bd2016-06-15 19:29:49 +0100738 unsigned long (*num_regs)(struct kvm_vcpu *vcpu);
739 int (*copy_reg_indices)(struct kvm_vcpu *vcpu, u64 __user *indices);
James Hoganf8be02d2014-05-29 10:16:29 +0100740 int (*get_one_reg)(struct kvm_vcpu *vcpu,
741 const struct kvm_one_reg *reg, s64 *v);
742 int (*set_one_reg)(struct kvm_vcpu *vcpu,
743 const struct kvm_one_reg *reg, s64 v);
James Hogana60b8432016-11-12 00:00:13 +0000744 int (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
745 int (*vcpu_put)(struct kvm_vcpu *vcpu, int cpu);
James Hogana2c046e2016-11-18 13:14:37 +0000746 int (*vcpu_run)(struct kvm_run *run, struct kvm_vcpu *vcpu);
747 void (*vcpu_reenter)(struct kvm_run *run, struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800748};
749extern struct kvm_mips_callbacks *kvm_mips_callbacks;
750int kvm_mips_emulation_init(struct kvm_mips_callbacks **install_callbacks);
751
752/* Debug: dump vcpu state */
753int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu);
754
James Hogan90e93112016-06-23 17:34:39 +0100755extern int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu);
756
757/* Building of entry/exception code */
James Hogan1e5217f52016-06-23 17:34:45 +0100758int kvm_mips_entry_setup(void);
James Hogan90e93112016-06-23 17:34:39 +0100759void *kvm_mips_build_vcpu_run(void *addr);
James Hogana7cfa7a2016-09-10 23:56:46 +0100760void *kvm_mips_build_tlb_refill_exception(void *addr, void *handler);
James Hogan1f9ca622016-06-23 17:34:46 +0100761void *kvm_mips_build_exception(void *addr, void *handler);
James Hogan90e93112016-06-23 17:34:39 +0100762void *kvm_mips_build_exit(void *addr);
Sanjay Lal740765c2012-11-21 18:34:00 -0800763
James Hogan539cb89fb2015-03-05 11:43:36 +0000764/* FPU/MSA context management */
James Hogan98e91b82014-11-18 14:09:12 +0000765void __kvm_save_fpu(struct kvm_vcpu_arch *vcpu);
766void __kvm_restore_fpu(struct kvm_vcpu_arch *vcpu);
767void __kvm_restore_fcsr(struct kvm_vcpu_arch *vcpu);
James Hogan539cb89fb2015-03-05 11:43:36 +0000768void __kvm_save_msa(struct kvm_vcpu_arch *vcpu);
769void __kvm_restore_msa(struct kvm_vcpu_arch *vcpu);
770void __kvm_restore_msa_upper(struct kvm_vcpu_arch *vcpu);
771void __kvm_restore_msacsr(struct kvm_vcpu_arch *vcpu);
James Hogan98e91b82014-11-18 14:09:12 +0000772void kvm_own_fpu(struct kvm_vcpu *vcpu);
James Hogan539cb89fb2015-03-05 11:43:36 +0000773void kvm_own_msa(struct kvm_vcpu *vcpu);
James Hogan98e91b82014-11-18 14:09:12 +0000774void kvm_drop_fpu(struct kvm_vcpu *vcpu);
775void kvm_lose_fpu(struct kvm_vcpu *vcpu);
776
Sanjay Lal740765c2012-11-21 18:34:00 -0800777/* TLB handling */
James Hoganbdb7ed82016-06-09 14:19:07 +0100778u32 kvm_get_kernel_asid(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800779
James Hoganbdb7ed82016-06-09 14:19:07 +0100780u32 kvm_get_user_asid(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800781
James Hoganbdb7ed82016-06-09 14:19:07 +0100782u32 kvm_get_commpage_asid (struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800783
784extern int kvm_mips_handle_kseg0_tlb_fault(unsigned long badbaddr,
James Hogan577ed7f2015-05-01 14:56:31 +0100785 struct kvm_vcpu *vcpu,
786 bool write_fault);
Sanjay Lal740765c2012-11-21 18:34:00 -0800787
788extern int kvm_mips_handle_commpage_tlb_fault(unsigned long badvaddr,
789 struct kvm_vcpu *vcpu);
790
791extern int kvm_mips_handle_mapped_seg_tlb_fault(struct kvm_vcpu *vcpu,
James Hogan7e3d2a72016-10-08 01:15:19 +0100792 struct kvm_mips_tlb *tlb,
James Hogan577ed7f2015-05-01 14:56:31 +0100793 unsigned long gva,
794 bool write_fault);
Sanjay Lal740765c2012-11-21 18:34:00 -0800795
James Hogan31cf7492016-06-09 14:19:09 +0100796extern enum emulation_result kvm_mips_handle_tlbmiss(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100797 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800798 struct kvm_run *run,
James Hogan577ed7f2015-05-01 14:56:31 +0100799 struct kvm_vcpu *vcpu,
800 bool write_fault);
Sanjay Lal740765c2012-11-21 18:34:00 -0800801
Sanjay Lal740765c2012-11-21 18:34:00 -0800802extern void kvm_mips_dump_host_tlbs(void);
803extern void kvm_mips_dump_guest_tlbs(struct kvm_vcpu *vcpu);
James Hogan57e38692016-10-08 00:15:52 +0100804extern int kvm_mips_host_tlb_inv(struct kvm_vcpu *vcpu, unsigned long entryhi,
805 bool user, bool kernel);
Sanjay Lal740765c2012-11-21 18:34:00 -0800806
807extern int kvm_mips_guest_tlb_lookup(struct kvm_vcpu *vcpu,
808 unsigned long entryhi);
James Hogana7ebb2e2016-11-15 00:06:05 +0000809
810void kvm_mips_suspend_mm(int cpu);
811void kvm_mips_resume_mm(int cpu);
812
James Hogana31b50d2016-12-16 15:57:00 +0000813/* MMU handling */
814
815/**
816 * enum kvm_mips_flush - Types of MMU flushes.
817 * @KMF_USER: Flush guest user virtual memory mappings.
818 * Guest USeg only.
819 * @KMF_KERN: Flush guest kernel virtual memory mappings.
820 * Guest USeg and KSeg2/3.
821 * @KMF_GPA: Flush guest physical memory mappings.
822 * Also includes KSeg0 if KMF_KERN is set.
823 */
824enum kvm_mips_flush {
825 KMF_USER = 0x0,
826 KMF_KERN = 0x1,
827 KMF_GPA = 0x2,
828};
829void kvm_mips_flush_gva_pt(pgd_t *pgd, enum kvm_mips_flush flags);
James Hogan06c158c2015-05-01 13:50:18 +0100830bool kvm_mips_flush_gpa_pt(struct kvm *kvm, gfn_t start_gfn, gfn_t end_gfn);
James Hoganf0c0c332016-12-06 14:47:47 +0000831int kvm_mips_mkclean_gpa_pt(struct kvm *kvm, gfn_t start_gfn, gfn_t end_gfn);
James Hogan06c158c2015-05-01 13:50:18 +0100832pgd_t *kvm_pgd_alloc(void);
James Hoganaba85922016-12-16 15:57:00 +0000833void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu);
834void kvm_trap_emul_invalidate_gva(struct kvm_vcpu *vcpu, unsigned long addr,
835 bool user);
James Hogan1880afd2016-11-28 23:04:52 +0000836void kvm_trap_emul_gva_lockless_begin(struct kvm_vcpu *vcpu);
837void kvm_trap_emul_gva_lockless_end(struct kvm_vcpu *vcpu);
838
839enum kvm_mips_fault_result {
840 KVM_MIPS_MAPPED = 0,
841 KVM_MIPS_GVA,
842 KVM_MIPS_GPA,
843 KVM_MIPS_TLB,
844 KVM_MIPS_TLBINV,
845 KVM_MIPS_TLBMOD,
846};
847enum kvm_mips_fault_result kvm_trap_emul_gva_fault(struct kvm_vcpu *vcpu,
848 unsigned long gva,
849 bool write);
Sanjay Lal740765c2012-11-21 18:34:00 -0800850
James Hogan411740f2016-12-13 16:32:39 +0000851#define KVM_ARCH_WANT_MMU_NOTIFIER
852int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
853int kvm_unmap_hva_range(struct kvm *kvm,
854 unsigned long start, unsigned long end);
855void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte);
856int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end);
857int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
858
859static inline void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
860 unsigned long address)
861{
862}
863
Sanjay Lal740765c2012-11-21 18:34:00 -0800864/* Emulation */
James Hogan122e51d2016-11-28 17:23:14 +0000865int kvm_get_inst(u32 *opc, struct kvm_vcpu *vcpu, u32 *out);
James Hoganbdb7ed82016-06-09 14:19:07 +0100866enum emulation_result update_pc(struct kvm_vcpu *vcpu, u32 cause);
James Hogan6a97c772015-04-23 16:54:35 +0100867int kvm_get_badinstr(u32 *opc, struct kvm_vcpu *vcpu, u32 *out);
868int kvm_get_badinstrp(u32 *opc, struct kvm_vcpu *vcpu, u32 *out);
Sanjay Lal740765c2012-11-21 18:34:00 -0800869
James Hogana1ecc542016-11-28 18:39:24 +0000870/**
871 * kvm_is_ifetch_fault() - Find whether a TLBL exception is due to ifetch fault.
872 * @vcpu: Virtual CPU.
873 *
874 * Returns: Whether the TLBL exception was likely due to an instruction
875 * fetch fault rather than a data load fault.
876 */
877static inline bool kvm_is_ifetch_fault(struct kvm_vcpu_arch *vcpu)
878{
879 unsigned long badvaddr = vcpu->host_cp0_badvaddr;
880 unsigned long epc = msk_isa16_mode(vcpu->pc);
881 u32 cause = vcpu->host_cp0_cause;
882
883 if (epc == badvaddr)
884 return true;
885
886 /*
887 * Branches may be 32-bit or 16-bit instructions.
888 * This isn't exact, but we don't really support MIPS16 or microMIPS yet
889 * in KVM anyway.
890 */
891 if ((cause & CAUSEF_BD) && badvaddr - epc <= 4)
892 return true;
893
894 return false;
895}
896
James Hogan31cf7492016-06-09 14:19:09 +0100897extern enum emulation_result kvm_mips_emulate_inst(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100898 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800899 struct kvm_run *run,
900 struct kvm_vcpu *vcpu);
901
James Hogan7801bbe2016-11-14 23:59:27 +0000902long kvm_mips_guest_exception_base(struct kvm_vcpu *vcpu);
903
James Hogan31cf7492016-06-09 14:19:09 +0100904extern enum emulation_result kvm_mips_emulate_syscall(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100905 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800906 struct kvm_run *run,
907 struct kvm_vcpu *vcpu);
908
James Hogan31cf7492016-06-09 14:19:09 +0100909extern enum emulation_result kvm_mips_emulate_tlbmiss_ld(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100910 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800911 struct kvm_run *run,
912 struct kvm_vcpu *vcpu);
913
James Hogan31cf7492016-06-09 14:19:09 +0100914extern enum emulation_result kvm_mips_emulate_tlbinv_ld(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100915 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800916 struct kvm_run *run,
917 struct kvm_vcpu *vcpu);
918
James Hogan31cf7492016-06-09 14:19:09 +0100919extern enum emulation_result kvm_mips_emulate_tlbmiss_st(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100920 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800921 struct kvm_run *run,
922 struct kvm_vcpu *vcpu);
923
James Hogan31cf7492016-06-09 14:19:09 +0100924extern enum emulation_result kvm_mips_emulate_tlbinv_st(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100925 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800926 struct kvm_run *run,
927 struct kvm_vcpu *vcpu);
928
James Hogan31cf7492016-06-09 14:19:09 +0100929extern enum emulation_result kvm_mips_emulate_tlbmod(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100930 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800931 struct kvm_run *run,
932 struct kvm_vcpu *vcpu);
933
James Hogan31cf7492016-06-09 14:19:09 +0100934extern enum emulation_result kvm_mips_emulate_fpu_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100935 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800936 struct kvm_run *run,
937 struct kvm_vcpu *vcpu);
938
James Hogan31cf7492016-06-09 14:19:09 +0100939extern enum emulation_result kvm_mips_handle_ri(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100940 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800941 struct kvm_run *run,
942 struct kvm_vcpu *vcpu);
943
James Hogan31cf7492016-06-09 14:19:09 +0100944extern enum emulation_result kvm_mips_emulate_ri_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100945 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800946 struct kvm_run *run,
947 struct kvm_vcpu *vcpu);
948
James Hogan31cf7492016-06-09 14:19:09 +0100949extern enum emulation_result kvm_mips_emulate_bp_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100950 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800951 struct kvm_run *run,
952 struct kvm_vcpu *vcpu);
953
James Hogan31cf7492016-06-09 14:19:09 +0100954extern enum emulation_result kvm_mips_emulate_trap_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100955 u32 *opc,
James Hogan0a560422015-02-06 16:03:57 +0000956 struct kvm_run *run,
957 struct kvm_vcpu *vcpu);
958
James Hogan31cf7492016-06-09 14:19:09 +0100959extern enum emulation_result kvm_mips_emulate_msafpe_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100960 u32 *opc,
James Hoganc2537ed2015-02-06 10:56:27 +0000961 struct kvm_run *run,
962 struct kvm_vcpu *vcpu);
963
James Hogan31cf7492016-06-09 14:19:09 +0100964extern enum emulation_result kvm_mips_emulate_fpe_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100965 u32 *opc,
James Hogan1c0cd662015-02-06 10:56:27 +0000966 struct kvm_run *run,
967 struct kvm_vcpu *vcpu);
968
James Hogan31cf7492016-06-09 14:19:09 +0100969extern enum emulation_result kvm_mips_emulate_msadis_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100970 u32 *opc,
James Hoganc2537ed2015-02-06 10:56:27 +0000971 struct kvm_run *run,
972 struct kvm_vcpu *vcpu);
973
Sanjay Lal740765c2012-11-21 18:34:00 -0800974extern enum emulation_result kvm_mips_complete_mmio_load(struct kvm_vcpu *vcpu,
975 struct kvm_run *run);
976
James Hoganbdb7ed82016-06-09 14:19:07 +0100977u32 kvm_mips_read_count(struct kvm_vcpu *vcpu);
978void kvm_mips_write_count(struct kvm_vcpu *vcpu, u32 count);
979void kvm_mips_write_compare(struct kvm_vcpu *vcpu, u32 compare, bool ack);
James Hogana517c1a2017-03-14 10:15:21 +0000980void kvm_mips_init_count(struct kvm_vcpu *vcpu, unsigned long count_hz);
James Hoganf8239342014-05-29 10:16:37 +0100981int kvm_mips_set_count_ctl(struct kvm_vcpu *vcpu, s64 count_ctl);
982int kvm_mips_set_count_resume(struct kvm_vcpu *vcpu, s64 count_resume);
James Hoganf74a8e22014-05-29 10:16:38 +0100983int kvm_mips_set_count_hz(struct kvm_vcpu *vcpu, s64 count_hz);
James Hogane30492b2014-05-29 10:16:35 +0100984void kvm_mips_count_enable_cause(struct kvm_vcpu *vcpu);
985void kvm_mips_count_disable_cause(struct kvm_vcpu *vcpu);
986enum hrtimer_restart kvm_mips_count_timeout(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800987
James Hogan31cf7492016-06-09 14:19:09 +0100988enum emulation_result kvm_mips_check_privilege(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100989 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800990 struct kvm_run *run,
991 struct kvm_vcpu *vcpu);
992
James Hogan258f3a22016-06-15 19:29:47 +0100993enum emulation_result kvm_mips_emulate_cache(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100994 u32 *opc,
995 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800996 struct kvm_run *run,
997 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +0100998enum emulation_result kvm_mips_emulate_CP0(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100999 u32 *opc,
1000 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -08001001 struct kvm_run *run,
1002 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +01001003enum emulation_result kvm_mips_emulate_store(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +01001004 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -08001005 struct kvm_run *run,
1006 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +01001007enum emulation_result kvm_mips_emulate_load(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +01001008 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -08001009 struct kvm_run *run,
1010 struct kvm_vcpu *vcpu);
1011
James Hoganc7716072014-06-26 15:11:29 +01001012unsigned int kvm_mips_config1_wrmask(struct kvm_vcpu *vcpu);
1013unsigned int kvm_mips_config3_wrmask(struct kvm_vcpu *vcpu);
1014unsigned int kvm_mips_config4_wrmask(struct kvm_vcpu *vcpu);
1015unsigned int kvm_mips_config5_wrmask(struct kvm_vcpu *vcpu);
1016
James Hogan955d8dc2017-03-14 10:15:14 +00001017/* Hypercalls (hypcall.c) */
1018
1019enum emulation_result kvm_mips_emul_hypcall(struct kvm_vcpu *vcpu,
1020 union mips_instruction inst);
1021int kvm_mips_handle_hypcall(struct kvm_vcpu *vcpu);
1022
Sanjay Lal740765c2012-11-21 18:34:00 -08001023/* Dynamic binary translation */
James Hogan258f3a22016-06-15 19:29:47 +01001024extern int kvm_mips_trans_cache_index(union mips_instruction inst,
1025 u32 *opc, struct kvm_vcpu *vcpu);
1026extern int kvm_mips_trans_cache_va(union mips_instruction inst, u32 *opc,
1027 struct kvm_vcpu *vcpu);
1028extern int kvm_mips_trans_mfc0(union mips_instruction inst, u32 *opc,
1029 struct kvm_vcpu *vcpu);
1030extern int kvm_mips_trans_mtc0(union mips_instruction inst, u32 *opc,
1031 struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -08001032
1033/* Misc */
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001034extern void kvm_mips_dump_stats(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -08001035extern unsigned long kvm_mips_get_ramsize(struct kvm *kvm);
1036
Radim Krčmář0865e632014-08-28 15:13:02 +02001037static inline void kvm_arch_hardware_unsetup(void) {}
1038static inline void kvm_arch_sync_events(struct kvm *kvm) {}
1039static inline void kvm_arch_free_memslot(struct kvm *kvm,
1040 struct kvm_memory_slot *free, struct kvm_memory_slot *dont) {}
Paolo Bonzini15f46012015-05-17 21:26:08 +02001041static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
Radim Krčmář0865e632014-08-28 15:13:02 +02001042static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
Christoffer Dall3217f7c2015-08-27 16:41:15 +02001043static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
1044static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
Christian Borntraeger3491caf2016-05-13 12:16:35 +02001045static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
Sanjay Lal740765c2012-11-21 18:34:00 -08001046
1047#endif /* __MIPS_KVM_HOST_H__ */