blob: f296ebeda9e3caea120589f8a1a15a6050e93093 [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)
46#define KVM_REG_MIPS_CP0_CAUSE MIPS_CP0_32(13, 0)
47#define KVM_REG_MIPS_CP0_EPC MIPS_CP0_64(14, 0)
James Hogan1068eaa2014-06-26 13:56:52 +010048#define KVM_REG_MIPS_CP0_PRID MIPS_CP0_32(15, 0)
James Hogan48a3c4e2014-05-29 10:16:28 +010049#define KVM_REG_MIPS_CP0_EBASE MIPS_CP0_64(15, 1)
50#define KVM_REG_MIPS_CP0_CONFIG MIPS_CP0_32(16, 0)
51#define KVM_REG_MIPS_CP0_CONFIG1 MIPS_CP0_32(16, 1)
52#define KVM_REG_MIPS_CP0_CONFIG2 MIPS_CP0_32(16, 2)
53#define KVM_REG_MIPS_CP0_CONFIG3 MIPS_CP0_32(16, 3)
James Hoganc7716072014-06-26 15:11:29 +010054#define KVM_REG_MIPS_CP0_CONFIG4 MIPS_CP0_32(16, 4)
55#define KVM_REG_MIPS_CP0_CONFIG5 MIPS_CP0_32(16, 5)
James Hogan48a3c4e2014-05-29 10:16:28 +010056#define KVM_REG_MIPS_CP0_CONFIG7 MIPS_CP0_32(16, 7)
57#define KVM_REG_MIPS_CP0_XCONTEXT MIPS_CP0_64(20, 0)
58#define KVM_REG_MIPS_CP0_ERROREPC MIPS_CP0_64(30, 0)
James Hogan05108702016-06-15 19:29:56 +010059#define KVM_REG_MIPS_CP0_KSCRATCH1 MIPS_CP0_64(31, 2)
60#define KVM_REG_MIPS_CP0_KSCRATCH2 MIPS_CP0_64(31, 3)
61#define KVM_REG_MIPS_CP0_KSCRATCH3 MIPS_CP0_64(31, 4)
62#define KVM_REG_MIPS_CP0_KSCRATCH4 MIPS_CP0_64(31, 5)
63#define KVM_REG_MIPS_CP0_KSCRATCH5 MIPS_CP0_64(31, 6)
64#define KVM_REG_MIPS_CP0_KSCRATCH6 MIPS_CP0_64(31, 7)
James Hogan48a3c4e2014-05-29 10:16:28 +010065
Sanjay Lal740765c2012-11-21 18:34:00 -080066
67#define KVM_MAX_VCPUS 1
68#define KVM_USER_MEM_SLOTS 8
69/* memory slots that does not exposed to userspace */
James Hogancaa1faa2015-12-16 23:49:26 +000070#define KVM_PRIVATE_MEM_SLOTS 0
Sanjay Lal740765c2012-11-21 18:34:00 -080071
72#define KVM_COALESCED_MMIO_PAGE_OFFSET 1
David Hildenbrand920552b2015-09-18 12:34:53 +020073#define KVM_HALT_POLL_NS_DEFAULT 500000
Sanjay Lal740765c2012-11-21 18:34:00 -080074
Sanjay Lal740765c2012-11-21 18:34:00 -080075
76
James Hogan42aa12e2016-06-15 19:29:57 +010077/*
78 * Special address that contains the comm page, used for reducing # of traps
79 * This needs to be within 32Kb of 0x0 (so the zero register can be used), but
80 * preferably not at 0x0 so that most kernel NULL pointer dereferences can be
81 * caught.
82 */
83#define KVM_GUEST_COMMPAGE_ADDR ((PAGE_SIZE > 0x8000) ? 0 : \
84 (0x8000 - PAGE_SIZE))
Sanjay Lal740765c2012-11-21 18:34:00 -080085
86#define KVM_GUEST_KERNEL_MODE(vcpu) ((kvm_read_c0_guest_status(vcpu->arch.cop0) & (ST0_EXL | ST0_ERL)) || \
87 ((kvm_read_c0_guest_status(vcpu->arch.cop0) & KSU_USER) == 0))
88
James Hogan22027942014-03-14 13:06:08 +000089#define KVM_GUEST_KUSEG 0x00000000UL
90#define KVM_GUEST_KSEG0 0x40000000UL
91#define KVM_GUEST_KSEG23 0x60000000UL
James Hogan7f5a1dd2016-06-09 10:50:44 +010092#define KVM_GUEST_KSEGX(a) ((_ACAST32_(a)) & 0xe0000000)
James Hogan22027942014-03-14 13:06:08 +000093#define KVM_GUEST_CPHYSADDR(a) ((_ACAST32_(a)) & 0x1fffffff)
Sanjay Lal740765c2012-11-21 18:34:00 -080094
95#define KVM_GUEST_CKSEG0ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG0)
96#define KVM_GUEST_CKSEG1ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG1)
97#define KVM_GUEST_CKSEG23ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG23)
98
99/*
100 * Map an address to a certain kernel segment
101 */
102#define KVM_GUEST_KSEG0ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG0)
103#define KVM_GUEST_KSEG1ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG1)
104#define KVM_GUEST_KSEG23ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG23)
105
James Hogan22027942014-03-14 13:06:08 +0000106#define KVM_INVALID_PAGE 0xdeadbeef
James Hogan22027942014-03-14 13:06:08 +0000107#define KVM_INVALID_ADDR 0xdeadbeef
Sanjay Lal740765c2012-11-21 18:34:00 -0800108
James Hoganf6f70172016-08-01 09:07:52 +0100109/*
110 * EVA has overlapping user & kernel address spaces, so user VAs may be >
111 * PAGE_OFFSET. For this reason we can't use the default KVM_HVA_ERR_BAD of
112 * PAGE_OFFSET.
113 */
114
115#define KVM_HVA_ERR_BAD (-1UL)
116#define KVM_HVA_ERR_RO_BAD (-2UL)
117
118static inline bool kvm_is_error_hva(unsigned long addr)
119{
120 return IS_ERR_VALUE(addr);
121}
122
Sanjay Lal740765c2012-11-21 18:34:00 -0800123struct kvm_vm_stat {
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000124 ulong remote_tlb_flush;
Sanjay Lal740765c2012-11-21 18:34:00 -0800125};
126
127struct kvm_vcpu_stat {
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000128 u64 wait_exits;
129 u64 cache_exits;
130 u64 signal_exits;
131 u64 int_exits;
132 u64 cop_unusable_exits;
133 u64 tlbmod_exits;
134 u64 tlbmiss_ld_exits;
135 u64 tlbmiss_st_exits;
136 u64 addrerr_st_exits;
137 u64 addrerr_ld_exits;
138 u64 syscall_exits;
139 u64 resvd_inst_exits;
140 u64 break_inst_exits;
141 u64 trap_inst_exits;
142 u64 msa_fpe_exits;
143 u64 fpe_exits;
144 u64 msa_disabled_exits;
145 u64 flush_dcache_exits;
146 u64 halt_successful_poll;
147 u64 halt_attempted_poll;
148 u64 halt_poll_invalid;
149 u64 halt_wakeup;
Sanjay Lal740765c2012-11-21 18:34:00 -0800150};
151
Sanjay Lal740765c2012-11-21 18:34:00 -0800152struct kvm_arch_memory_slot {
153};
154
155struct kvm_arch {
156 /* Guest GVA->HPA page table */
157 unsigned long *guest_pmap;
158 unsigned long guest_pmap_npages;
Sanjay Lal740765c2012-11-21 18:34:00 -0800159};
160
James Hogan22027942014-03-14 13:06:08 +0000161#define N_MIPS_COPROC_REGS 32
162#define N_MIPS_COPROC_SEL 8
Sanjay Lal740765c2012-11-21 18:34:00 -0800163
164struct mips_coproc {
165 unsigned long reg[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
166#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
167 unsigned long stat[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
168#endif
169};
170
171/*
172 * Coprocessor 0 register names
173 */
James Hogan22027942014-03-14 13:06:08 +0000174#define MIPS_CP0_TLB_INDEX 0
175#define MIPS_CP0_TLB_RANDOM 1
176#define MIPS_CP0_TLB_LOW 2
177#define MIPS_CP0_TLB_LO0 2
178#define MIPS_CP0_TLB_LO1 3
179#define MIPS_CP0_TLB_CONTEXT 4
180#define MIPS_CP0_TLB_PG_MASK 5
181#define MIPS_CP0_TLB_WIRED 6
182#define MIPS_CP0_HWRENA 7
183#define MIPS_CP0_BAD_VADDR 8
184#define MIPS_CP0_COUNT 9
185#define MIPS_CP0_TLB_HI 10
186#define MIPS_CP0_COMPARE 11
187#define MIPS_CP0_STATUS 12
188#define MIPS_CP0_CAUSE 13
189#define MIPS_CP0_EXC_PC 14
190#define MIPS_CP0_PRID 15
191#define MIPS_CP0_CONFIG 16
192#define MIPS_CP0_LLADDR 17
193#define MIPS_CP0_WATCH_LO 18
194#define MIPS_CP0_WATCH_HI 19
195#define MIPS_CP0_TLB_XCONTEXT 20
196#define MIPS_CP0_ECC 26
197#define MIPS_CP0_CACHE_ERR 27
198#define MIPS_CP0_TAG_LO 28
199#define MIPS_CP0_TAG_HI 29
200#define MIPS_CP0_ERROR_PC 30
201#define MIPS_CP0_DEBUG 23
202#define MIPS_CP0_DEPC 24
203#define MIPS_CP0_PERFCNT 25
204#define MIPS_CP0_ERRCTL 26
205#define MIPS_CP0_DATA_LO 28
206#define MIPS_CP0_DATA_HI 29
207#define MIPS_CP0_DESAVE 31
Sanjay Lal740765c2012-11-21 18:34:00 -0800208
James Hogan22027942014-03-14 13:06:08 +0000209#define MIPS_CP0_CONFIG_SEL 0
210#define MIPS_CP0_CONFIG1_SEL 1
211#define MIPS_CP0_CONFIG2_SEL 2
212#define MIPS_CP0_CONFIG3_SEL 3
James Hoganc7716072014-06-26 15:11:29 +0100213#define MIPS_CP0_CONFIG4_SEL 4
214#define MIPS_CP0_CONFIG5_SEL 5
Sanjay Lal740765c2012-11-21 18:34:00 -0800215
Sanjay Lal740765c2012-11-21 18:34:00 -0800216/* Resume Flags */
James Hogan22027942014-03-14 13:06:08 +0000217#define RESUME_FLAG_DR (1<<0) /* Reload guest nonvolatile state? */
218#define RESUME_FLAG_HOST (1<<1) /* Resume host? */
Sanjay Lal740765c2012-11-21 18:34:00 -0800219
James Hogan22027942014-03-14 13:06:08 +0000220#define RESUME_GUEST 0
221#define RESUME_GUEST_DR RESUME_FLAG_DR
222#define RESUME_HOST RESUME_FLAG_HOST
Sanjay Lal740765c2012-11-21 18:34:00 -0800223
224enum emulation_result {
225 EMULATE_DONE, /* no further processing */
226 EMULATE_DO_MMIO, /* kvm_run filled with MMIO request */
227 EMULATE_FAIL, /* can't emulate this instruction */
228 EMULATE_WAIT, /* WAIT instruction */
229 EMULATE_PRIV_FAIL,
230};
231
Sanjay Lal740765c2012-11-21 18:34:00 -0800232#define mips3_paddr_to_tlbpfn(x) \
James Hogan22027942014-03-14 13:06:08 +0000233 (((unsigned long)(x) >> MIPS3_PG_SHIFT) & MIPS3_PG_FRAME)
Sanjay Lal740765c2012-11-21 18:34:00 -0800234#define mips3_tlbpfn_to_paddr(x) \
James Hogan22027942014-03-14 13:06:08 +0000235 ((unsigned long)((x) & MIPS3_PG_FRAME) << MIPS3_PG_SHIFT)
Sanjay Lal740765c2012-11-21 18:34:00 -0800236
James Hogan22027942014-03-14 13:06:08 +0000237#define MIPS3_PG_SHIFT 6
238#define MIPS3_PG_FRAME 0x3fffffc0
Sanjay Lal740765c2012-11-21 18:34:00 -0800239
James Hogan22027942014-03-14 13:06:08 +0000240#define VPN2_MASK 0xffffe000
Paul Burtonca64c2b2016-05-06 14:36:20 +0100241#define KVM_ENTRYHI_ASID MIPS_ENTRYHI_ASID
James Hogane6207bb2016-06-09 14:19:19 +0100242#define TLB_IS_GLOBAL(x) ((x).tlb_lo[0] & (x).tlb_lo[1] & ENTRYLO_G)
James Hogan22027942014-03-14 13:06:08 +0000243#define TLB_VPN2(x) ((x).tlb_hi & VPN2_MASK)
Paul Burtonca64c2b2016-05-06 14:36:20 +0100244#define TLB_ASID(x) ((x).tlb_hi & KVM_ENTRYHI_ASID)
James Hogan19d194c2016-06-09 14:19:18 +0100245#define TLB_LO_IDX(x, va) (((va) >> PAGE_SHIFT) & 1)
James Hogane6207bb2016-06-09 14:19:19 +0100246#define TLB_IS_VALID(x, va) ((x).tlb_lo[TLB_LO_IDX(x, va)] & ENTRYLO_V)
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700247#define TLB_HI_VPN2_HIT(x, y) ((TLB_VPN2(x) & ~(x).tlb_mask) == \
248 ((y) & VPN2_MASK & ~(x).tlb_mask))
249#define TLB_HI_ASID_HIT(x, y) (TLB_IS_GLOBAL(x) || \
Paul Burtonca64c2b2016-05-06 14:36:20 +0100250 TLB_ASID(x) == ((y) & KVM_ENTRYHI_ASID))
Sanjay Lal740765c2012-11-21 18:34:00 -0800251
252struct kvm_mips_tlb {
253 long tlb_mask;
254 long tlb_hi;
James Hogan9fbfb062016-06-09 14:19:17 +0100255 long tlb_lo[2];
Sanjay Lal740765c2012-11-21 18:34:00 -0800256};
257
James Hoganaba859292016-12-16 15:57:00 +0000258#define KVM_NR_MEM_OBJS 4
259
260/*
261 * We don't want allocation failures within the mmu code, so we preallocate
262 * enough memory for a single page fault in a cache.
263 */
264struct kvm_mmu_memory_cache {
265 int nobjs;
266 void *objects[KVM_NR_MEM_OBJS];
267};
268
James Hoganf9431762016-06-14 09:40:10 +0100269#define KVM_MIPS_AUX_FPU 0x1
270#define KVM_MIPS_AUX_MSA 0x2
James Hogan98e91b82014-11-18 14:09:12 +0000271
James Hogan22027942014-03-14 13:06:08 +0000272#define KVM_MIPS_GUEST_TLB_SIZE 64
Sanjay Lal740765c2012-11-21 18:34:00 -0800273struct kvm_vcpu_arch {
James Hogan878edf02016-06-09 14:19:14 +0100274 void *guest_ebase;
James Hogan797179b2016-06-09 10:50:43 +0100275 int (*vcpu_run)(struct kvm_run *run, struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800276 unsigned long host_stack;
277 unsigned long host_gp;
278
279 /* Host CP0 registers used when handling exits from guest */
280 unsigned long host_cp0_badvaddr;
Sanjay Lal740765c2012-11-21 18:34:00 -0800281 unsigned long host_cp0_epc;
James Hogan31cf7492016-06-09 14:19:09 +0100282 u32 host_cp0_cause;
Sanjay Lal740765c2012-11-21 18:34:00 -0800283
284 /* GPRS */
285 unsigned long gprs[32];
286 unsigned long hi;
287 unsigned long lo;
288 unsigned long pc;
289
290 /* FPU State */
291 struct mips_fpu_struct fpu;
James Hoganf9431762016-06-14 09:40:10 +0100292 /* Which auxiliary state is loaded (KVM_MIPS_AUX_*) */
293 unsigned int aux_inuse;
Sanjay Lal740765c2012-11-21 18:34:00 -0800294
295 /* COP0 State */
296 struct mips_coproc *cop0;
297
298 /* Host KSEG0 address of the EI/DI offset */
299 void *kseg0_commpage;
300
James Hogane1e575f62016-10-25 16:11:12 +0100301 /* Resume PC after MMIO completion */
302 unsigned long io_pc;
303 /* GPR used as IO source/target */
304 u32 io_gpr;
Sanjay Lal740765c2012-11-21 18:34:00 -0800305
James Hogane30492b2014-05-29 10:16:35 +0100306 struct hrtimer comparecount_timer;
James Hoganf8239342014-05-29 10:16:37 +0100307 /* Count timer control KVM register */
James Hoganbdb7ed82016-06-09 14:19:07 +0100308 u32 count_ctl;
James Hogane30492b2014-05-29 10:16:35 +0100309 /* Count bias from the raw time */
James Hoganbdb7ed82016-06-09 14:19:07 +0100310 u32 count_bias;
James Hogane30492b2014-05-29 10:16:35 +0100311 /* Frequency of timer in Hz */
James Hoganbdb7ed82016-06-09 14:19:07 +0100312 u32 count_hz;
James Hogane30492b2014-05-29 10:16:35 +0100313 /* Dynamic nanosecond bias (multiple of count_period) to avoid overflow */
314 s64 count_dyn_bias;
James Hoganf8239342014-05-29 10:16:37 +0100315 /* Resume time */
316 ktime_t count_resume;
James Hogane30492b2014-05-29 10:16:35 +0100317 /* Period of timer tick in ns */
318 u64 count_period;
Sanjay Lal740765c2012-11-21 18:34:00 -0800319
320 /* Bitmask of exceptions that are pending */
321 unsigned long pending_exceptions;
322
323 /* Bitmask of pending exceptions to be cleared */
324 unsigned long pending_exceptions_clr;
325
Sanjay Lal740765c2012-11-21 18:34:00 -0800326 /* S/W Based TLB for guest */
327 struct kvm_mips_tlb guest_tlb[KVM_MIPS_GUEST_TLB_SIZE];
328
James Hoganc550d532016-10-11 23:14:39 +0100329 /* Guest kernel/user [partial] mm */
Sanjay Lal740765c2012-11-21 18:34:00 -0800330 struct mm_struct guest_kernel_mm, guest_user_mm;
331
James Hogan25b08c72016-09-16 00:06:43 +0100332 /* Guest ASID of last user mode execution */
333 unsigned int last_user_gasid;
334
James Hoganaba859292016-12-16 15:57:00 +0000335 /* Cache some mmu pages needed inside spinlock regions */
336 struct kvm_mmu_memory_cache mmu_page_cache;
337
Sanjay Lal740765c2012-11-21 18:34:00 -0800338 int last_sched_cpu;
339
340 /* WAIT executed */
341 int wait;
James Hogan98e91b82014-11-18 14:09:12 +0000342
343 u8 fpu_enabled;
James Hogan539cb89fb2015-03-05 11:43:36 +0000344 u8 msa_enabled;
James Hogan05108702016-06-15 19:29:56 +0100345 u8 kscratch_enabled;
Sanjay Lal740765c2012-11-21 18:34:00 -0800346};
347
348
James Hogan22027942014-03-14 13:06:08 +0000349#define kvm_read_c0_guest_index(cop0) (cop0->reg[MIPS_CP0_TLB_INDEX][0])
350#define kvm_write_c0_guest_index(cop0, val) (cop0->reg[MIPS_CP0_TLB_INDEX][0] = val)
351#define kvm_read_c0_guest_entrylo0(cop0) (cop0->reg[MIPS_CP0_TLB_LO0][0])
352#define kvm_read_c0_guest_entrylo1(cop0) (cop0->reg[MIPS_CP0_TLB_LO1][0])
353#define kvm_read_c0_guest_context(cop0) (cop0->reg[MIPS_CP0_TLB_CONTEXT][0])
354#define kvm_write_c0_guest_context(cop0, val) (cop0->reg[MIPS_CP0_TLB_CONTEXT][0] = (val))
355#define kvm_read_c0_guest_userlocal(cop0) (cop0->reg[MIPS_CP0_TLB_CONTEXT][2])
James Hogan7767b7d2014-05-29 10:16:30 +0100356#define kvm_write_c0_guest_userlocal(cop0, val) (cop0->reg[MIPS_CP0_TLB_CONTEXT][2] = (val))
James Hogan22027942014-03-14 13:06:08 +0000357#define kvm_read_c0_guest_pagemask(cop0) (cop0->reg[MIPS_CP0_TLB_PG_MASK][0])
358#define kvm_write_c0_guest_pagemask(cop0, val) (cop0->reg[MIPS_CP0_TLB_PG_MASK][0] = (val))
359#define kvm_read_c0_guest_wired(cop0) (cop0->reg[MIPS_CP0_TLB_WIRED][0])
360#define kvm_write_c0_guest_wired(cop0, val) (cop0->reg[MIPS_CP0_TLB_WIRED][0] = (val))
James Hogan26f4f3b2014-03-14 13:06:09 +0000361#define kvm_read_c0_guest_hwrena(cop0) (cop0->reg[MIPS_CP0_HWRENA][0])
362#define kvm_write_c0_guest_hwrena(cop0, val) (cop0->reg[MIPS_CP0_HWRENA][0] = (val))
James Hogan22027942014-03-14 13:06:08 +0000363#define kvm_read_c0_guest_badvaddr(cop0) (cop0->reg[MIPS_CP0_BAD_VADDR][0])
364#define kvm_write_c0_guest_badvaddr(cop0, val) (cop0->reg[MIPS_CP0_BAD_VADDR][0] = (val))
365#define kvm_read_c0_guest_count(cop0) (cop0->reg[MIPS_CP0_COUNT][0])
366#define kvm_write_c0_guest_count(cop0, val) (cop0->reg[MIPS_CP0_COUNT][0] = (val))
367#define kvm_read_c0_guest_entryhi(cop0) (cop0->reg[MIPS_CP0_TLB_HI][0])
368#define kvm_write_c0_guest_entryhi(cop0, val) (cop0->reg[MIPS_CP0_TLB_HI][0] = (val))
369#define kvm_read_c0_guest_compare(cop0) (cop0->reg[MIPS_CP0_COMPARE][0])
370#define kvm_write_c0_guest_compare(cop0, val) (cop0->reg[MIPS_CP0_COMPARE][0] = (val))
371#define kvm_read_c0_guest_status(cop0) (cop0->reg[MIPS_CP0_STATUS][0])
372#define kvm_write_c0_guest_status(cop0, val) (cop0->reg[MIPS_CP0_STATUS][0] = (val))
373#define kvm_read_c0_guest_intctl(cop0) (cop0->reg[MIPS_CP0_STATUS][1])
374#define kvm_write_c0_guest_intctl(cop0, val) (cop0->reg[MIPS_CP0_STATUS][1] = (val))
375#define kvm_read_c0_guest_cause(cop0) (cop0->reg[MIPS_CP0_CAUSE][0])
376#define kvm_write_c0_guest_cause(cop0, val) (cop0->reg[MIPS_CP0_CAUSE][0] = (val))
377#define kvm_read_c0_guest_epc(cop0) (cop0->reg[MIPS_CP0_EXC_PC][0])
378#define kvm_write_c0_guest_epc(cop0, val) (cop0->reg[MIPS_CP0_EXC_PC][0] = (val))
379#define kvm_read_c0_guest_prid(cop0) (cop0->reg[MIPS_CP0_PRID][0])
380#define kvm_write_c0_guest_prid(cop0, val) (cop0->reg[MIPS_CP0_PRID][0] = (val))
381#define kvm_read_c0_guest_ebase(cop0) (cop0->reg[MIPS_CP0_PRID][1])
382#define kvm_write_c0_guest_ebase(cop0, val) (cop0->reg[MIPS_CP0_PRID][1] = (val))
383#define kvm_read_c0_guest_config(cop0) (cop0->reg[MIPS_CP0_CONFIG][0])
384#define kvm_read_c0_guest_config1(cop0) (cop0->reg[MIPS_CP0_CONFIG][1])
385#define kvm_read_c0_guest_config2(cop0) (cop0->reg[MIPS_CP0_CONFIG][2])
386#define kvm_read_c0_guest_config3(cop0) (cop0->reg[MIPS_CP0_CONFIG][3])
James Hoganc7716072014-06-26 15:11:29 +0100387#define kvm_read_c0_guest_config4(cop0) (cop0->reg[MIPS_CP0_CONFIG][4])
388#define kvm_read_c0_guest_config5(cop0) (cop0->reg[MIPS_CP0_CONFIG][5])
James Hogan22027942014-03-14 13:06:08 +0000389#define kvm_read_c0_guest_config7(cop0) (cop0->reg[MIPS_CP0_CONFIG][7])
390#define kvm_write_c0_guest_config(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][0] = (val))
391#define kvm_write_c0_guest_config1(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][1] = (val))
392#define kvm_write_c0_guest_config2(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][2] = (val))
393#define kvm_write_c0_guest_config3(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][3] = (val))
James Hoganc7716072014-06-26 15:11:29 +0100394#define kvm_write_c0_guest_config4(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][4] = (val))
395#define kvm_write_c0_guest_config5(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][5] = (val))
James Hogan22027942014-03-14 13:06:08 +0000396#define kvm_write_c0_guest_config7(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][7] = (val))
397#define kvm_read_c0_guest_errorepc(cop0) (cop0->reg[MIPS_CP0_ERROR_PC][0])
398#define kvm_write_c0_guest_errorepc(cop0, val) (cop0->reg[MIPS_CP0_ERROR_PC][0] = (val))
James Hogan05108702016-06-15 19:29:56 +0100399#define kvm_read_c0_guest_kscratch1(cop0) (cop0->reg[MIPS_CP0_DESAVE][2])
400#define kvm_read_c0_guest_kscratch2(cop0) (cop0->reg[MIPS_CP0_DESAVE][3])
401#define kvm_read_c0_guest_kscratch3(cop0) (cop0->reg[MIPS_CP0_DESAVE][4])
402#define kvm_read_c0_guest_kscratch4(cop0) (cop0->reg[MIPS_CP0_DESAVE][5])
403#define kvm_read_c0_guest_kscratch5(cop0) (cop0->reg[MIPS_CP0_DESAVE][6])
404#define kvm_read_c0_guest_kscratch6(cop0) (cop0->reg[MIPS_CP0_DESAVE][7])
405#define kvm_write_c0_guest_kscratch1(cop0, val) (cop0->reg[MIPS_CP0_DESAVE][2] = (val))
406#define kvm_write_c0_guest_kscratch2(cop0, val) (cop0->reg[MIPS_CP0_DESAVE][3] = (val))
407#define kvm_write_c0_guest_kscratch3(cop0, val) (cop0->reg[MIPS_CP0_DESAVE][4] = (val))
408#define kvm_write_c0_guest_kscratch4(cop0, val) (cop0->reg[MIPS_CP0_DESAVE][5] = (val))
409#define kvm_write_c0_guest_kscratch5(cop0, val) (cop0->reg[MIPS_CP0_DESAVE][6] = (val))
410#define kvm_write_c0_guest_kscratch6(cop0, val) (cop0->reg[MIPS_CP0_DESAVE][7] = (val))
Sanjay Lal740765c2012-11-21 18:34:00 -0800411
James Hoganc73c99b2014-05-29 10:16:33 +0100412/*
413 * Some of the guest registers may be modified asynchronously (e.g. from a
414 * hrtimer callback in hard irq context) and therefore need stronger atomicity
415 * guarantees than other registers.
416 */
417
418static inline void _kvm_atomic_set_c0_guest_reg(unsigned long *reg,
419 unsigned long val)
420{
421 unsigned long temp;
422 do {
423 __asm__ __volatile__(
James Hogand85ebff2016-07-04 19:35:10 +0100424 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100425 " " __LL "%0, %1 \n"
426 " or %0, %2 \n"
427 " " __SC "%0, %1 \n"
428 " .set mips0 \n"
429 : "=&r" (temp), "+m" (*reg)
430 : "r" (val));
431 } while (unlikely(!temp));
432}
433
434static inline void _kvm_atomic_clear_c0_guest_reg(unsigned long *reg,
435 unsigned long val)
436{
437 unsigned long temp;
438 do {
439 __asm__ __volatile__(
James Hogand85ebff2016-07-04 19:35:10 +0100440 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100441 " " __LL "%0, %1 \n"
442 " and %0, %2 \n"
443 " " __SC "%0, %1 \n"
444 " .set mips0 \n"
445 : "=&r" (temp), "+m" (*reg)
446 : "r" (~val));
447 } while (unlikely(!temp));
448}
449
450static inline void _kvm_atomic_change_c0_guest_reg(unsigned long *reg,
451 unsigned long change,
452 unsigned long val)
453{
454 unsigned long temp;
455 do {
456 __asm__ __volatile__(
James Hogand85ebff2016-07-04 19:35:10 +0100457 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100458 " " __LL "%0, %1 \n"
459 " and %0, %2 \n"
460 " or %0, %3 \n"
461 " " __SC "%0, %1 \n"
462 " .set mips0 \n"
463 : "=&r" (temp), "+m" (*reg)
464 : "r" (~change), "r" (val & change));
465 } while (unlikely(!temp));
466}
467
James Hogan22027942014-03-14 13:06:08 +0000468#define kvm_set_c0_guest_status(cop0, val) (cop0->reg[MIPS_CP0_STATUS][0] |= (val))
469#define kvm_clear_c0_guest_status(cop0, val) (cop0->reg[MIPS_CP0_STATUS][0] &= ~(val))
James Hoganc73c99b2014-05-29 10:16:33 +0100470
471/* Cause can be modified asynchronously from hardirq hrtimer callback */
472#define kvm_set_c0_guest_cause(cop0, val) \
473 _kvm_atomic_set_c0_guest_reg(&cop0->reg[MIPS_CP0_CAUSE][0], val)
474#define kvm_clear_c0_guest_cause(cop0, val) \
475 _kvm_atomic_clear_c0_guest_reg(&cop0->reg[MIPS_CP0_CAUSE][0], val)
James Hogan22027942014-03-14 13:06:08 +0000476#define kvm_change_c0_guest_cause(cop0, change, val) \
James Hoganc73c99b2014-05-29 10:16:33 +0100477 _kvm_atomic_change_c0_guest_reg(&cop0->reg[MIPS_CP0_CAUSE][0], \
478 change, val)
479
James Hogan22027942014-03-14 13:06:08 +0000480#define kvm_set_c0_guest_ebase(cop0, val) (cop0->reg[MIPS_CP0_PRID][1] |= (val))
481#define kvm_clear_c0_guest_ebase(cop0, val) (cop0->reg[MIPS_CP0_PRID][1] &= ~(val))
482#define kvm_change_c0_guest_ebase(cop0, change, val) \
483{ \
484 kvm_clear_c0_guest_ebase(cop0, change); \
485 kvm_set_c0_guest_ebase(cop0, ((val) & (change))); \
Sanjay Lal740765c2012-11-21 18:34:00 -0800486}
487
James Hogan98e91b82014-11-18 14:09:12 +0000488/* Helpers */
489
490static inline bool kvm_mips_guest_can_have_fpu(struct kvm_vcpu_arch *vcpu)
491{
James Hogan19451e52016-06-15 19:29:50 +0100492 return (!__builtin_constant_p(raw_cpu_has_fpu) || raw_cpu_has_fpu) &&
James Hogan98e91b82014-11-18 14:09:12 +0000493 vcpu->fpu_enabled;
494}
495
496static inline bool kvm_mips_guest_has_fpu(struct kvm_vcpu_arch *vcpu)
497{
498 return kvm_mips_guest_can_have_fpu(vcpu) &&
499 kvm_read_c0_guest_config1(vcpu->cop0) & MIPS_CONF1_FP;
500}
Sanjay Lal740765c2012-11-21 18:34:00 -0800501
James Hogan539cb89fb2015-03-05 11:43:36 +0000502static inline bool kvm_mips_guest_can_have_msa(struct kvm_vcpu_arch *vcpu)
503{
504 return (!__builtin_constant_p(cpu_has_msa) || cpu_has_msa) &&
505 vcpu->msa_enabled;
506}
507
508static inline bool kvm_mips_guest_has_msa(struct kvm_vcpu_arch *vcpu)
509{
510 return kvm_mips_guest_can_have_msa(vcpu) &&
511 kvm_read_c0_guest_config3(vcpu->cop0) & MIPS_CONF3_MSA;
512}
513
Sanjay Lal740765c2012-11-21 18:34:00 -0800514struct kvm_mips_callbacks {
James Hogan2dca3722014-05-29 10:16:40 +0100515 int (*handle_cop_unusable)(struct kvm_vcpu *vcpu);
516 int (*handle_tlb_mod)(struct kvm_vcpu *vcpu);
517 int (*handle_tlb_ld_miss)(struct kvm_vcpu *vcpu);
518 int (*handle_tlb_st_miss)(struct kvm_vcpu *vcpu);
519 int (*handle_addr_err_st)(struct kvm_vcpu *vcpu);
520 int (*handle_addr_err_ld)(struct kvm_vcpu *vcpu);
521 int (*handle_syscall)(struct kvm_vcpu *vcpu);
522 int (*handle_res_inst)(struct kvm_vcpu *vcpu);
523 int (*handle_break)(struct kvm_vcpu *vcpu);
James Hogan0a560422015-02-06 16:03:57 +0000524 int (*handle_trap)(struct kvm_vcpu *vcpu);
James Hoganc2537ed2015-02-06 10:56:27 +0000525 int (*handle_msa_fpe)(struct kvm_vcpu *vcpu);
James Hogan1c0cd662015-02-06 10:56:27 +0000526 int (*handle_fpe)(struct kvm_vcpu *vcpu);
James Hogan98119ad2015-02-06 11:11:56 +0000527 int (*handle_msa_disabled)(struct kvm_vcpu *vcpu);
James Hogan2dca3722014-05-29 10:16:40 +0100528 int (*vcpu_init)(struct kvm_vcpu *vcpu);
James Hogan630766b2016-09-08 23:00:24 +0100529 void (*vcpu_uninit)(struct kvm_vcpu *vcpu);
James Hogan2dca3722014-05-29 10:16:40 +0100530 int (*vcpu_setup)(struct kvm_vcpu *vcpu);
531 gpa_t (*gva_to_gpa)(gva_t gva);
532 void (*queue_timer_int)(struct kvm_vcpu *vcpu);
533 void (*dequeue_timer_int)(struct kvm_vcpu *vcpu);
534 void (*queue_io_int)(struct kvm_vcpu *vcpu,
535 struct kvm_mips_interrupt *irq);
536 void (*dequeue_io_int)(struct kvm_vcpu *vcpu,
537 struct kvm_mips_interrupt *irq);
538 int (*irq_deliver)(struct kvm_vcpu *vcpu, unsigned int priority,
James Hoganbdb7ed82016-06-09 14:19:07 +0100539 u32 cause);
James Hogan2dca3722014-05-29 10:16:40 +0100540 int (*irq_clear)(struct kvm_vcpu *vcpu, unsigned int priority,
James Hoganbdb7ed82016-06-09 14:19:07 +0100541 u32 cause);
James Hoganf5c43bd2016-06-15 19:29:49 +0100542 unsigned long (*num_regs)(struct kvm_vcpu *vcpu);
543 int (*copy_reg_indices)(struct kvm_vcpu *vcpu, u64 __user *indices);
James Hoganf8be02d2014-05-29 10:16:29 +0100544 int (*get_one_reg)(struct kvm_vcpu *vcpu,
545 const struct kvm_one_reg *reg, s64 *v);
546 int (*set_one_reg)(struct kvm_vcpu *vcpu,
547 const struct kvm_one_reg *reg, s64 v);
James Hogana60b8432016-11-12 00:00:13 +0000548 int (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
549 int (*vcpu_put)(struct kvm_vcpu *vcpu, int cpu);
James Hogana2c046e2016-11-18 13:14:37 +0000550 int (*vcpu_run)(struct kvm_run *run, struct kvm_vcpu *vcpu);
551 void (*vcpu_reenter)(struct kvm_run *run, struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800552};
553extern struct kvm_mips_callbacks *kvm_mips_callbacks;
554int kvm_mips_emulation_init(struct kvm_mips_callbacks **install_callbacks);
555
556/* Debug: dump vcpu state */
557int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu);
558
James Hogan90e93112016-06-23 17:34:39 +0100559extern int kvm_mips_handle_exit(struct kvm_run *run, struct kvm_vcpu *vcpu);
560
561/* Building of entry/exception code */
James Hogan1e5217f52016-06-23 17:34:45 +0100562int kvm_mips_entry_setup(void);
James Hogan90e93112016-06-23 17:34:39 +0100563void *kvm_mips_build_vcpu_run(void *addr);
James Hogana7cfa7a2016-09-10 23:56:46 +0100564void *kvm_mips_build_tlb_refill_exception(void *addr, void *handler);
James Hogan1f9ca622016-06-23 17:34:46 +0100565void *kvm_mips_build_exception(void *addr, void *handler);
James Hogan90e93112016-06-23 17:34:39 +0100566void *kvm_mips_build_exit(void *addr);
Sanjay Lal740765c2012-11-21 18:34:00 -0800567
James Hogan539cb89fb2015-03-05 11:43:36 +0000568/* FPU/MSA context management */
James Hogan98e91b82014-11-18 14:09:12 +0000569void __kvm_save_fpu(struct kvm_vcpu_arch *vcpu);
570void __kvm_restore_fpu(struct kvm_vcpu_arch *vcpu);
571void __kvm_restore_fcsr(struct kvm_vcpu_arch *vcpu);
James Hogan539cb89fb2015-03-05 11:43:36 +0000572void __kvm_save_msa(struct kvm_vcpu_arch *vcpu);
573void __kvm_restore_msa(struct kvm_vcpu_arch *vcpu);
574void __kvm_restore_msa_upper(struct kvm_vcpu_arch *vcpu);
575void __kvm_restore_msacsr(struct kvm_vcpu_arch *vcpu);
James Hogan98e91b82014-11-18 14:09:12 +0000576void kvm_own_fpu(struct kvm_vcpu *vcpu);
James Hogan539cb89fb2015-03-05 11:43:36 +0000577void kvm_own_msa(struct kvm_vcpu *vcpu);
James Hogan98e91b82014-11-18 14:09:12 +0000578void kvm_drop_fpu(struct kvm_vcpu *vcpu);
579void kvm_lose_fpu(struct kvm_vcpu *vcpu);
580
Sanjay Lal740765c2012-11-21 18:34:00 -0800581/* TLB handling */
James Hoganbdb7ed82016-06-09 14:19:07 +0100582u32 kvm_get_kernel_asid(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800583
James Hoganbdb7ed82016-06-09 14:19:07 +0100584u32 kvm_get_user_asid(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800585
James Hoganbdb7ed82016-06-09 14:19:07 +0100586u32 kvm_get_commpage_asid (struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800587
588extern int kvm_mips_handle_kseg0_tlb_fault(unsigned long badbaddr,
589 struct kvm_vcpu *vcpu);
590
591extern int kvm_mips_handle_commpage_tlb_fault(unsigned long badvaddr,
592 struct kvm_vcpu *vcpu);
593
594extern int kvm_mips_handle_mapped_seg_tlb_fault(struct kvm_vcpu *vcpu,
James Hogan7e3d2a72016-10-08 01:15:19 +0100595 struct kvm_mips_tlb *tlb,
596 unsigned long gva);
Sanjay Lal740765c2012-11-21 18:34:00 -0800597
James Hogan31cf7492016-06-09 14:19:09 +0100598extern enum emulation_result kvm_mips_handle_tlbmiss(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100599 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800600 struct kvm_run *run,
601 struct kvm_vcpu *vcpu);
602
James Hogan31cf7492016-06-09 14:19:09 +0100603extern enum emulation_result kvm_mips_handle_tlbmod(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100604 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800605 struct kvm_run *run,
606 struct kvm_vcpu *vcpu);
607
608extern void kvm_mips_dump_host_tlbs(void);
609extern void kvm_mips_dump_guest_tlbs(struct kvm_vcpu *vcpu);
James Hogan57e38692016-10-08 00:15:52 +0100610extern int kvm_mips_host_tlb_inv(struct kvm_vcpu *vcpu, unsigned long entryhi,
611 bool user, bool kernel);
Sanjay Lal740765c2012-11-21 18:34:00 -0800612
613extern int kvm_mips_guest_tlb_lookup(struct kvm_vcpu *vcpu,
614 unsigned long entryhi);
615extern int kvm_mips_host_tlb_lookup(struct kvm_vcpu *vcpu, unsigned long vaddr);
James Hogana7ebb2e2016-11-15 00:06:05 +0000616
617void kvm_mips_suspend_mm(int cpu);
618void kvm_mips_resume_mm(int cpu);
619
James Hogana31b50d2016-12-16 15:57:00 +0000620/* MMU handling */
621
622/**
623 * enum kvm_mips_flush - Types of MMU flushes.
624 * @KMF_USER: Flush guest user virtual memory mappings.
625 * Guest USeg only.
626 * @KMF_KERN: Flush guest kernel virtual memory mappings.
627 * Guest USeg and KSeg2/3.
628 * @KMF_GPA: Flush guest physical memory mappings.
629 * Also includes KSeg0 if KMF_KERN is set.
630 */
631enum kvm_mips_flush {
632 KMF_USER = 0x0,
633 KMF_KERN = 0x1,
634 KMF_GPA = 0x2,
635};
636void kvm_mips_flush_gva_pt(pgd_t *pgd, enum kvm_mips_flush flags);
James Hoganaba859292016-12-16 15:57:00 +0000637void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu);
638void kvm_trap_emul_invalidate_gva(struct kvm_vcpu *vcpu, unsigned long addr,
639 bool user);
Sanjay Lal740765c2012-11-21 18:34:00 -0800640
641/* Emulation */
James Hogan122e51d2016-11-28 17:23:14 +0000642int kvm_get_inst(u32 *opc, struct kvm_vcpu *vcpu, u32 *out);
James Hoganbdb7ed82016-06-09 14:19:07 +0100643enum emulation_result update_pc(struct kvm_vcpu *vcpu, u32 cause);
Sanjay Lal740765c2012-11-21 18:34:00 -0800644
James Hogana1ecc542016-11-28 18:39:24 +0000645/**
646 * kvm_is_ifetch_fault() - Find whether a TLBL exception is due to ifetch fault.
647 * @vcpu: Virtual CPU.
648 *
649 * Returns: Whether the TLBL exception was likely due to an instruction
650 * fetch fault rather than a data load fault.
651 */
652static inline bool kvm_is_ifetch_fault(struct kvm_vcpu_arch *vcpu)
653{
654 unsigned long badvaddr = vcpu->host_cp0_badvaddr;
655 unsigned long epc = msk_isa16_mode(vcpu->pc);
656 u32 cause = vcpu->host_cp0_cause;
657
658 if (epc == badvaddr)
659 return true;
660
661 /*
662 * Branches may be 32-bit or 16-bit instructions.
663 * This isn't exact, but we don't really support MIPS16 or microMIPS yet
664 * in KVM anyway.
665 */
666 if ((cause & CAUSEF_BD) && badvaddr - epc <= 4)
667 return true;
668
669 return false;
670}
671
James Hogan31cf7492016-06-09 14:19:09 +0100672extern enum emulation_result kvm_mips_emulate_inst(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100673 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800674 struct kvm_run *run,
675 struct kvm_vcpu *vcpu);
676
James Hogan31cf7492016-06-09 14:19:09 +0100677extern enum emulation_result kvm_mips_emulate_syscall(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100678 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800679 struct kvm_run *run,
680 struct kvm_vcpu *vcpu);
681
James Hogan31cf7492016-06-09 14:19:09 +0100682extern enum emulation_result kvm_mips_emulate_tlbmiss_ld(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100683 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800684 struct kvm_run *run,
685 struct kvm_vcpu *vcpu);
686
James Hogan31cf7492016-06-09 14:19:09 +0100687extern enum emulation_result kvm_mips_emulate_tlbinv_ld(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100688 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800689 struct kvm_run *run,
690 struct kvm_vcpu *vcpu);
691
James Hogan31cf7492016-06-09 14:19:09 +0100692extern enum emulation_result kvm_mips_emulate_tlbmiss_st(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100693 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800694 struct kvm_run *run,
695 struct kvm_vcpu *vcpu);
696
James Hogan31cf7492016-06-09 14:19:09 +0100697extern enum emulation_result kvm_mips_emulate_tlbinv_st(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100698 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800699 struct kvm_run *run,
700 struct kvm_vcpu *vcpu);
701
James Hogan31cf7492016-06-09 14:19:09 +0100702extern enum emulation_result kvm_mips_emulate_tlbmod(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100703 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800704 struct kvm_run *run,
705 struct kvm_vcpu *vcpu);
706
James Hogan31cf7492016-06-09 14:19:09 +0100707extern enum emulation_result kvm_mips_emulate_fpu_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100708 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800709 struct kvm_run *run,
710 struct kvm_vcpu *vcpu);
711
James Hogan31cf7492016-06-09 14:19:09 +0100712extern enum emulation_result kvm_mips_handle_ri(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100713 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800714 struct kvm_run *run,
715 struct kvm_vcpu *vcpu);
716
James Hogan31cf7492016-06-09 14:19:09 +0100717extern enum emulation_result kvm_mips_emulate_ri_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100718 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800719 struct kvm_run *run,
720 struct kvm_vcpu *vcpu);
721
James Hogan31cf7492016-06-09 14:19:09 +0100722extern enum emulation_result kvm_mips_emulate_bp_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100723 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800724 struct kvm_run *run,
725 struct kvm_vcpu *vcpu);
726
James Hogan31cf7492016-06-09 14:19:09 +0100727extern enum emulation_result kvm_mips_emulate_trap_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100728 u32 *opc,
James Hogan0a560422015-02-06 16:03:57 +0000729 struct kvm_run *run,
730 struct kvm_vcpu *vcpu);
731
James Hogan31cf7492016-06-09 14:19:09 +0100732extern enum emulation_result kvm_mips_emulate_msafpe_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100733 u32 *opc,
James Hoganc2537ed2015-02-06 10:56:27 +0000734 struct kvm_run *run,
735 struct kvm_vcpu *vcpu);
736
James Hogan31cf7492016-06-09 14:19:09 +0100737extern enum emulation_result kvm_mips_emulate_fpe_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100738 u32 *opc,
James Hogan1c0cd662015-02-06 10:56:27 +0000739 struct kvm_run *run,
740 struct kvm_vcpu *vcpu);
741
James Hogan31cf7492016-06-09 14:19:09 +0100742extern enum emulation_result kvm_mips_emulate_msadis_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100743 u32 *opc,
James Hoganc2537ed2015-02-06 10:56:27 +0000744 struct kvm_run *run,
745 struct kvm_vcpu *vcpu);
746
Sanjay Lal740765c2012-11-21 18:34:00 -0800747extern enum emulation_result kvm_mips_complete_mmio_load(struct kvm_vcpu *vcpu,
748 struct kvm_run *run);
749
James Hoganbdb7ed82016-06-09 14:19:07 +0100750u32 kvm_mips_read_count(struct kvm_vcpu *vcpu);
751void kvm_mips_write_count(struct kvm_vcpu *vcpu, u32 count);
752void kvm_mips_write_compare(struct kvm_vcpu *vcpu, u32 compare, bool ack);
James Hogane30492b2014-05-29 10:16:35 +0100753void kvm_mips_init_count(struct kvm_vcpu *vcpu);
James Hoganf8239342014-05-29 10:16:37 +0100754int kvm_mips_set_count_ctl(struct kvm_vcpu *vcpu, s64 count_ctl);
755int kvm_mips_set_count_resume(struct kvm_vcpu *vcpu, s64 count_resume);
James Hoganf74a8e22014-05-29 10:16:38 +0100756int kvm_mips_set_count_hz(struct kvm_vcpu *vcpu, s64 count_hz);
James Hogane30492b2014-05-29 10:16:35 +0100757void kvm_mips_count_enable_cause(struct kvm_vcpu *vcpu);
758void kvm_mips_count_disable_cause(struct kvm_vcpu *vcpu);
759enum hrtimer_restart kvm_mips_count_timeout(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800760
James Hogan31cf7492016-06-09 14:19:09 +0100761enum emulation_result kvm_mips_check_privilege(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +0100762 u32 *opc,
Sanjay Lal740765c2012-11-21 18:34:00 -0800763 struct kvm_run *run,
764 struct kvm_vcpu *vcpu);
765
James Hogan258f3a22016-06-15 19:29:47 +0100766enum emulation_result kvm_mips_emulate_cache(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100767 u32 *opc,
768 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800769 struct kvm_run *run,
770 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +0100771enum emulation_result kvm_mips_emulate_CP0(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100772 u32 *opc,
773 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800774 struct kvm_run *run,
775 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +0100776enum emulation_result kvm_mips_emulate_store(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100777 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800778 struct kvm_run *run,
779 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +0100780enum emulation_result kvm_mips_emulate_load(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100781 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800782 struct kvm_run *run,
783 struct kvm_vcpu *vcpu);
784
James Hoganc7716072014-06-26 15:11:29 +0100785unsigned int kvm_mips_config1_wrmask(struct kvm_vcpu *vcpu);
786unsigned int kvm_mips_config3_wrmask(struct kvm_vcpu *vcpu);
787unsigned int kvm_mips_config4_wrmask(struct kvm_vcpu *vcpu);
788unsigned int kvm_mips_config5_wrmask(struct kvm_vcpu *vcpu);
789
Sanjay Lal740765c2012-11-21 18:34:00 -0800790/* Dynamic binary translation */
James Hogan258f3a22016-06-15 19:29:47 +0100791extern int kvm_mips_trans_cache_index(union mips_instruction inst,
792 u32 *opc, struct kvm_vcpu *vcpu);
793extern int kvm_mips_trans_cache_va(union mips_instruction inst, u32 *opc,
794 struct kvm_vcpu *vcpu);
795extern int kvm_mips_trans_mfc0(union mips_instruction inst, u32 *opc,
796 struct kvm_vcpu *vcpu);
797extern int kvm_mips_trans_mtc0(union mips_instruction inst, u32 *opc,
798 struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800799
800/* Misc */
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700801extern void kvm_mips_dump_stats(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800802extern unsigned long kvm_mips_get_ramsize(struct kvm *kvm);
803
Radim Krčmář13a34e02014-08-28 15:13:03 +0200804static inline void kvm_arch_hardware_disable(void) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200805static inline void kvm_arch_hardware_unsetup(void) {}
806static inline void kvm_arch_sync_events(struct kvm *kvm) {}
807static inline void kvm_arch_free_memslot(struct kvm *kvm,
808 struct kvm_memory_slot *free, struct kvm_memory_slot *dont) {}
Paolo Bonzini15f46012015-05-17 21:26:08 +0200809static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200810static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
811static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
812 struct kvm_memory_slot *slot) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200813static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
Christoffer Dall3217f7c2015-08-27 16:41:15 +0200814static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
815static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200816static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
Sanjay Lal740765c2012-11-21 18:34:00 -0800817
818#endif /* __MIPS_KVM_HOST_H__ */