MIPS: KVM: Make various Cause variables 32-bit
[deliverable/linux.git] / arch / mips / include / asm / kvm_host.h
CommitLineData
740765ce
SL
1/*
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
48a3c4e4
JH
22/* MIPS KVM register ids */
23#define MIPS_CP0_32(_R, _S) \
7bd4acec 24 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U32 | (8 * (_R) + (_S)))
48a3c4e4
JH
25
26#define MIPS_CP0_64(_R, _S) \
7bd4acec 27 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U64 | (8 * (_R) + (_S)))
48a3c4e4
JH
28
29#define KVM_REG_MIPS_CP0_INDEX MIPS_CP0_32(0, 0)
30#define KVM_REG_MIPS_CP0_ENTRYLO0 MIPS_CP0_64(2, 0)
31#define KVM_REG_MIPS_CP0_ENTRYLO1 MIPS_CP0_64(3, 0)
32#define KVM_REG_MIPS_CP0_CONTEXT MIPS_CP0_64(4, 0)
33#define KVM_REG_MIPS_CP0_USERLOCAL MIPS_CP0_64(4, 2)
34#define KVM_REG_MIPS_CP0_PAGEMASK MIPS_CP0_32(5, 0)
35#define KVM_REG_MIPS_CP0_PAGEGRAIN MIPS_CP0_32(5, 1)
36#define KVM_REG_MIPS_CP0_WIRED MIPS_CP0_32(6, 0)
37#define KVM_REG_MIPS_CP0_HWRENA MIPS_CP0_32(7, 0)
38#define KVM_REG_MIPS_CP0_BADVADDR MIPS_CP0_64(8, 0)
39#define KVM_REG_MIPS_CP0_COUNT MIPS_CP0_32(9, 0)
40#define KVM_REG_MIPS_CP0_ENTRYHI MIPS_CP0_64(10, 0)
41#define KVM_REG_MIPS_CP0_COMPARE MIPS_CP0_32(11, 0)
42#define KVM_REG_MIPS_CP0_STATUS MIPS_CP0_32(12, 0)
43#define KVM_REG_MIPS_CP0_CAUSE MIPS_CP0_32(13, 0)
44#define KVM_REG_MIPS_CP0_EPC MIPS_CP0_64(14, 0)
1068eaaf 45#define KVM_REG_MIPS_CP0_PRID MIPS_CP0_32(15, 0)
48a3c4e4
JH
46#define KVM_REG_MIPS_CP0_EBASE MIPS_CP0_64(15, 1)
47#define KVM_REG_MIPS_CP0_CONFIG MIPS_CP0_32(16, 0)
48#define KVM_REG_MIPS_CP0_CONFIG1 MIPS_CP0_32(16, 1)
49#define KVM_REG_MIPS_CP0_CONFIG2 MIPS_CP0_32(16, 2)
50#define KVM_REG_MIPS_CP0_CONFIG3 MIPS_CP0_32(16, 3)
c771607a
JH
51#define KVM_REG_MIPS_CP0_CONFIG4 MIPS_CP0_32(16, 4)
52#define KVM_REG_MIPS_CP0_CONFIG5 MIPS_CP0_32(16, 5)
48a3c4e4
JH
53#define KVM_REG_MIPS_CP0_CONFIG7 MIPS_CP0_32(16, 7)
54#define KVM_REG_MIPS_CP0_XCONTEXT MIPS_CP0_64(20, 0)
55#define KVM_REG_MIPS_CP0_ERROREPC MIPS_CP0_64(30, 0)
56
740765ce
SL
57
58#define KVM_MAX_VCPUS 1
59#define KVM_USER_MEM_SLOTS 8
60/* memory slots that does not exposed to userspace */
caa1faa7 61#define KVM_PRIVATE_MEM_SLOTS 0
740765ce
SL
62
63#define KVM_COALESCED_MMIO_PAGE_OFFSET 1
920552b2 64#define KVM_HALT_POLL_NS_DEFAULT 500000
740765ce 65
740765ce
SL
66
67
68/* Special address that contains the comm page, used for reducing # of traps */
22027945 69#define KVM_GUEST_COMMPAGE_ADDR 0x0
740765ce
SL
70
71#define KVM_GUEST_KERNEL_MODE(vcpu) ((kvm_read_c0_guest_status(vcpu->arch.cop0) & (ST0_EXL | ST0_ERL)) || \
72 ((kvm_read_c0_guest_status(vcpu->arch.cop0) & KSU_USER) == 0))
73
22027945
JH
74#define KVM_GUEST_KUSEG 0x00000000UL
75#define KVM_GUEST_KSEG0 0x40000000UL
76#define KVM_GUEST_KSEG23 0x60000000UL
7f5a1ddc 77#define KVM_GUEST_KSEGX(a) ((_ACAST32_(a)) & 0xe0000000)
22027945 78#define KVM_GUEST_CPHYSADDR(a) ((_ACAST32_(a)) & 0x1fffffff)
740765ce
SL
79
80#define KVM_GUEST_CKSEG0ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG0)
81#define KVM_GUEST_CKSEG1ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG1)
82#define KVM_GUEST_CKSEG23ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG23)
83
84/*
85 * Map an address to a certain kernel segment
86 */
87#define KVM_GUEST_KSEG0ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG0)
88#define KVM_GUEST_KSEG1ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG1)
89#define KVM_GUEST_KSEG23ADDR(a) (KVM_GUEST_CPHYSADDR(a) | KVM_GUEST_KSEG23)
90
22027945
JH
91#define KVM_INVALID_PAGE 0xdeadbeef
92#define KVM_INVALID_INST 0xdeadbeef
93#define KVM_INVALID_ADDR 0xdeadbeef
740765ce 94
740765ce 95extern atomic_t kvm_mips_instance;
ba049e93
DW
96extern kvm_pfn_t (*kvm_mips_gfn_to_pfn)(struct kvm *kvm, gfn_t gfn);
97extern void (*kvm_mips_release_pfn_clean)(kvm_pfn_t pfn);
98extern bool (*kvm_mips_is_error_pfn)(kvm_pfn_t pfn);
740765ce
SL
99
100struct kvm_vm_stat {
101 u32 remote_tlb_flush;
102};
103
104struct kvm_vcpu_stat {
105 u32 wait_exits;
106 u32 cache_exits;
107 u32 signal_exits;
108 u32 int_exits;
109 u32 cop_unusable_exits;
110 u32 tlbmod_exits;
111 u32 tlbmiss_ld_exits;
112 u32 tlbmiss_st_exits;
113 u32 addrerr_st_exits;
114 u32 addrerr_ld_exits;
115 u32 syscall_exits;
116 u32 resvd_inst_exits;
117 u32 break_inst_exits;
0a560427 118 u32 trap_inst_exits;
c2537ed9 119 u32 msa_fpe_exits;
1c0cd66a 120 u32 fpe_exits;
c2537ed9 121 u32 msa_disabled_exits;
740765ce 122 u32 flush_dcache_exits;
f7819512 123 u32 halt_successful_poll;
62bea5bf 124 u32 halt_attempted_poll;
3491caf2 125 u32 halt_poll_invalid;
740765ce
SL
126 u32 halt_wakeup;
127};
128
129enum kvm_mips_exit_types {
130 WAIT_EXITS,
131 CACHE_EXITS,
132 SIGNAL_EXITS,
133 INT_EXITS,
134 COP_UNUSABLE_EXITS,
135 TLBMOD_EXITS,
136 TLBMISS_LD_EXITS,
137 TLBMISS_ST_EXITS,
138 ADDRERR_ST_EXITS,
139 ADDRERR_LD_EXITS,
140 SYSCALL_EXITS,
141 RESVD_INST_EXITS,
142 BREAK_INST_EXITS,
0a560427 143 TRAP_INST_EXITS,
c2537ed9 144 MSA_FPE_EXITS,
1c0cd66a 145 FPE_EXITS,
c2537ed9 146 MSA_DISABLED_EXITS,
740765ce
SL
147 FLUSH_DCACHE_EXITS,
148 MAX_KVM_MIPS_EXIT_TYPES
149};
150
151struct kvm_arch_memory_slot {
152};
153
154struct kvm_arch {
155 /* Guest GVA->HPA page table */
156 unsigned long *guest_pmap;
157 unsigned long guest_pmap_npages;
158
159 /* Wired host TLB used for the commpage */
160 int commpage_tlb;
161};
162
22027945
JH
163#define N_MIPS_COPROC_REGS 32
164#define N_MIPS_COPROC_SEL 8
740765ce
SL
165
166struct mips_coproc {
167 unsigned long reg[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
168#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
169 unsigned long stat[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
170#endif
171};
172
173/*
174 * Coprocessor 0 register names
175 */
22027945
JH
176#define MIPS_CP0_TLB_INDEX 0
177#define MIPS_CP0_TLB_RANDOM 1
178#define MIPS_CP0_TLB_LOW 2
179#define MIPS_CP0_TLB_LO0 2
180#define MIPS_CP0_TLB_LO1 3
181#define MIPS_CP0_TLB_CONTEXT 4
182#define MIPS_CP0_TLB_PG_MASK 5
183#define MIPS_CP0_TLB_WIRED 6
184#define MIPS_CP0_HWRENA 7
185#define MIPS_CP0_BAD_VADDR 8
186#define MIPS_CP0_COUNT 9
187#define MIPS_CP0_TLB_HI 10
188#define MIPS_CP0_COMPARE 11
189#define MIPS_CP0_STATUS 12
190#define MIPS_CP0_CAUSE 13
191#define MIPS_CP0_EXC_PC 14
192#define MIPS_CP0_PRID 15
193#define MIPS_CP0_CONFIG 16
194#define MIPS_CP0_LLADDR 17
195#define MIPS_CP0_WATCH_LO 18
196#define MIPS_CP0_WATCH_HI 19
197#define MIPS_CP0_TLB_XCONTEXT 20
198#define MIPS_CP0_ECC 26
199#define MIPS_CP0_CACHE_ERR 27
200#define MIPS_CP0_TAG_LO 28
201#define MIPS_CP0_TAG_HI 29
202#define MIPS_CP0_ERROR_PC 30
203#define MIPS_CP0_DEBUG 23
204#define MIPS_CP0_DEPC 24
205#define MIPS_CP0_PERFCNT 25
206#define MIPS_CP0_ERRCTL 26
207#define MIPS_CP0_DATA_LO 28
208#define MIPS_CP0_DATA_HI 29
209#define MIPS_CP0_DESAVE 31
210
211#define MIPS_CP0_CONFIG_SEL 0
212#define MIPS_CP0_CONFIG1_SEL 1
213#define MIPS_CP0_CONFIG2_SEL 2
214#define MIPS_CP0_CONFIG3_SEL 3
c771607a
JH
215#define MIPS_CP0_CONFIG4_SEL 4
216#define MIPS_CP0_CONFIG5_SEL 5
740765ce
SL
217
218/* Config0 register bits */
22027945
JH
219#define CP0C0_M 31
220#define CP0C0_K23 28
221#define CP0C0_KU 25
222#define CP0C0_MDU 20
223#define CP0C0_MM 17
224#define CP0C0_BM 16
225#define CP0C0_BE 15
226#define CP0C0_AT 13
227#define CP0C0_AR 10
228#define CP0C0_MT 7
229#define CP0C0_VI 3
230#define CP0C0_K0 0
740765ce
SL
231
232/* Config1 register bits */
22027945
JH
233#define CP0C1_M 31
234#define CP0C1_MMU 25
235#define CP0C1_IS 22
236#define CP0C1_IL 19
237#define CP0C1_IA 16
238#define CP0C1_DS 13
239#define CP0C1_DL 10
240#define CP0C1_DA 7
241#define CP0C1_C2 6
242#define CP0C1_MD 5
243#define CP0C1_PC 4
244#define CP0C1_WR 3
245#define CP0C1_CA 2
246#define CP0C1_EP 1
247#define CP0C1_FP 0
740765ce
SL
248
249/* Config2 Register bits */
22027945
JH
250#define CP0C2_M 31
251#define CP0C2_TU 28
252#define CP0C2_TS 24
253#define CP0C2_TL 20
254#define CP0C2_TA 16
255#define CP0C2_SU 12
256#define CP0C2_SS 8
257#define CP0C2_SL 4
258#define CP0C2_SA 0
740765ce
SL
259
260/* Config3 Register bits */
22027945
JH
261#define CP0C3_M 31
262#define CP0C3_ISA_ON_EXC 16
263#define CP0C3_ULRI 13
264#define CP0C3_DSPP 10
265#define CP0C3_LPA 7
266#define CP0C3_VEIC 6
267#define CP0C3_VInt 5
268#define CP0C3_SP 4
269#define CP0C3_MT 2
270#define CP0C3_SM 1
271#define CP0C3_TL 0
740765ce 272
740765ce
SL
273/* MMU types, the first four entries have the same layout as the
274 CP0C0_MT field. */
275enum mips_mmu_types {
276 MMU_TYPE_NONE,
277 MMU_TYPE_R4000,
278 MMU_TYPE_RESERVED,
279 MMU_TYPE_FMT,
280 MMU_TYPE_R3000,
281 MMU_TYPE_R6000,
282 MMU_TYPE_R8000
283};
284
740765ce 285/* Resume Flags */
22027945
JH
286#define RESUME_FLAG_DR (1<<0) /* Reload guest nonvolatile state? */
287#define RESUME_FLAG_HOST (1<<1) /* Resume host? */
740765ce 288
22027945
JH
289#define RESUME_GUEST 0
290#define RESUME_GUEST_DR RESUME_FLAG_DR
291#define RESUME_HOST RESUME_FLAG_HOST
740765ce
SL
292
293enum emulation_result {
294 EMULATE_DONE, /* no further processing */
295 EMULATE_DO_MMIO, /* kvm_run filled with MMIO request */
296 EMULATE_FAIL, /* can't emulate this instruction */
297 EMULATE_WAIT, /* WAIT instruction */
298 EMULATE_PRIV_FAIL,
299};
300
22027945
JH
301#define MIPS3_PG_G 0x00000001 /* Global; ignore ASID if in lo0 & lo1 */
302#define MIPS3_PG_V 0x00000002 /* Valid */
303#define MIPS3_PG_NV 0x00000000
304#define MIPS3_PG_D 0x00000004 /* Dirty */
740765ce
SL
305
306#define mips3_paddr_to_tlbpfn(x) \
22027945 307 (((unsigned long)(x) >> MIPS3_PG_SHIFT) & MIPS3_PG_FRAME)
740765ce 308#define mips3_tlbpfn_to_paddr(x) \
22027945 309 ((unsigned long)((x) & MIPS3_PG_FRAME) << MIPS3_PG_SHIFT)
740765ce 310
22027945
JH
311#define MIPS3_PG_SHIFT 6
312#define MIPS3_PG_FRAME 0x3fffffc0
740765ce 313
22027945 314#define VPN2_MASK 0xffffe000
ca64c2be 315#define KVM_ENTRYHI_ASID MIPS_ENTRYHI_ASID
d116e812 316#define TLB_IS_GLOBAL(x) (((x).tlb_lo0 & MIPS3_PG_G) && \
22027945
JH
317 ((x).tlb_lo1 & MIPS3_PG_G))
318#define TLB_VPN2(x) ((x).tlb_hi & VPN2_MASK)
ca64c2be 319#define TLB_ASID(x) ((x).tlb_hi & KVM_ENTRYHI_ASID)
d116e812
DCZ
320#define TLB_IS_VALID(x, va) (((va) & (1 << PAGE_SHIFT)) \
321 ? ((x).tlb_lo1 & MIPS3_PG_V) \
22027945 322 : ((x).tlb_lo0 & MIPS3_PG_V))
d116e812
DCZ
323#define TLB_HI_VPN2_HIT(x, y) ((TLB_VPN2(x) & ~(x).tlb_mask) == \
324 ((y) & VPN2_MASK & ~(x).tlb_mask))
325#define TLB_HI_ASID_HIT(x, y) (TLB_IS_GLOBAL(x) || \
ca64c2be 326 TLB_ASID(x) == ((y) & KVM_ENTRYHI_ASID))
740765ce
SL
327
328struct kvm_mips_tlb {
329 long tlb_mask;
330 long tlb_hi;
331 long tlb_lo0;
332 long tlb_lo1;
333};
334
98e91b84 335#define KVM_MIPS_FPU_FPU 0x1
539cb89f 336#define KVM_MIPS_FPU_MSA 0x2
98e91b84 337
22027945 338#define KVM_MIPS_GUEST_TLB_SIZE 64
740765ce
SL
339struct kvm_vcpu_arch {
340 void *host_ebase, *guest_ebase;
797179bc 341 int (*vcpu_run)(struct kvm_run *run, struct kvm_vcpu *vcpu);
740765ce
SL
342 unsigned long host_stack;
343 unsigned long host_gp;
344
345 /* Host CP0 registers used when handling exits from guest */
346 unsigned long host_cp0_badvaddr;
740765ce 347 unsigned long host_cp0_epc;
31cf7498 348 u32 host_cp0_cause;
740765ce
SL
349
350 /* GPRS */
351 unsigned long gprs[32];
352 unsigned long hi;
353 unsigned long lo;
354 unsigned long pc;
355
356 /* FPU State */
357 struct mips_fpu_struct fpu;
98e91b84
JH
358 /* Which FPU state is loaded (KVM_MIPS_FPU_*) */
359 unsigned int fpu_inuse;
740765ce
SL
360
361 /* COP0 State */
362 struct mips_coproc *cop0;
363
364 /* Host KSEG0 address of the EI/DI offset */
365 void *kseg0_commpage;
366
367 u32 io_gpr; /* GPR used as IO source/target */
368
e30492bb 369 struct hrtimer comparecount_timer;
f8239342 370 /* Count timer control KVM register */
bdb7ed86 371 u32 count_ctl;
e30492bb 372 /* Count bias from the raw time */
bdb7ed86 373 u32 count_bias;
e30492bb 374 /* Frequency of timer in Hz */
bdb7ed86 375 u32 count_hz;
e30492bb
JH
376 /* Dynamic nanosecond bias (multiple of count_period) to avoid overflow */
377 s64 count_dyn_bias;
f8239342
JH
378 /* Resume time */
379 ktime_t count_resume;
e30492bb
JH
380 /* Period of timer tick in ns */
381 u64 count_period;
740765ce
SL
382
383 /* Bitmask of exceptions that are pending */
384 unsigned long pending_exceptions;
385
386 /* Bitmask of pending exceptions to be cleared */
387 unsigned long pending_exceptions_clr;
388
31cf7498 389 u32 pending_load_cause;
740765ce
SL
390
391 /* Save/Restore the entryhi register when are are preempted/scheduled back in */
392 unsigned long preempt_entryhi;
393
394 /* S/W Based TLB for guest */
395 struct kvm_mips_tlb guest_tlb[KVM_MIPS_GUEST_TLB_SIZE];
396
397 /* Cached guest kernel/user ASIDs */
bdb7ed86
JH
398 u32 guest_user_asid[NR_CPUS];
399 u32 guest_kernel_asid[NR_CPUS];
740765ce
SL
400 struct mm_struct guest_kernel_mm, guest_user_mm;
401
740765ce
SL
402 int last_sched_cpu;
403
404 /* WAIT executed */
405 int wait;
98e91b84
JH
406
407 u8 fpu_enabled;
539cb89f 408 u8 msa_enabled;
740765ce
SL
409};
410
411
22027945
JH
412#define kvm_read_c0_guest_index(cop0) (cop0->reg[MIPS_CP0_TLB_INDEX][0])
413#define kvm_write_c0_guest_index(cop0, val) (cop0->reg[MIPS_CP0_TLB_INDEX][0] = val)
414#define kvm_read_c0_guest_entrylo0(cop0) (cop0->reg[MIPS_CP0_TLB_LO0][0])
415#define kvm_read_c0_guest_entrylo1(cop0) (cop0->reg[MIPS_CP0_TLB_LO1][0])
416#define kvm_read_c0_guest_context(cop0) (cop0->reg[MIPS_CP0_TLB_CONTEXT][0])
417#define kvm_write_c0_guest_context(cop0, val) (cop0->reg[MIPS_CP0_TLB_CONTEXT][0] = (val))
418#define kvm_read_c0_guest_userlocal(cop0) (cop0->reg[MIPS_CP0_TLB_CONTEXT][2])
7767b7d2 419#define kvm_write_c0_guest_userlocal(cop0, val) (cop0->reg[MIPS_CP0_TLB_CONTEXT][2] = (val))
22027945
JH
420#define kvm_read_c0_guest_pagemask(cop0) (cop0->reg[MIPS_CP0_TLB_PG_MASK][0])
421#define kvm_write_c0_guest_pagemask(cop0, val) (cop0->reg[MIPS_CP0_TLB_PG_MASK][0] = (val))
422#define kvm_read_c0_guest_wired(cop0) (cop0->reg[MIPS_CP0_TLB_WIRED][0])
423#define kvm_write_c0_guest_wired(cop0, val) (cop0->reg[MIPS_CP0_TLB_WIRED][0] = (val))
26f4f3b5
JH
424#define kvm_read_c0_guest_hwrena(cop0) (cop0->reg[MIPS_CP0_HWRENA][0])
425#define kvm_write_c0_guest_hwrena(cop0, val) (cop0->reg[MIPS_CP0_HWRENA][0] = (val))
22027945
JH
426#define kvm_read_c0_guest_badvaddr(cop0) (cop0->reg[MIPS_CP0_BAD_VADDR][0])
427#define kvm_write_c0_guest_badvaddr(cop0, val) (cop0->reg[MIPS_CP0_BAD_VADDR][0] = (val))
428#define kvm_read_c0_guest_count(cop0) (cop0->reg[MIPS_CP0_COUNT][0])
429#define kvm_write_c0_guest_count(cop0, val) (cop0->reg[MIPS_CP0_COUNT][0] = (val))
430#define kvm_read_c0_guest_entryhi(cop0) (cop0->reg[MIPS_CP0_TLB_HI][0])
431#define kvm_write_c0_guest_entryhi(cop0, val) (cop0->reg[MIPS_CP0_TLB_HI][0] = (val))
432#define kvm_read_c0_guest_compare(cop0) (cop0->reg[MIPS_CP0_COMPARE][0])
433#define kvm_write_c0_guest_compare(cop0, val) (cop0->reg[MIPS_CP0_COMPARE][0] = (val))
434#define kvm_read_c0_guest_status(cop0) (cop0->reg[MIPS_CP0_STATUS][0])
435#define kvm_write_c0_guest_status(cop0, val) (cop0->reg[MIPS_CP0_STATUS][0] = (val))
436#define kvm_read_c0_guest_intctl(cop0) (cop0->reg[MIPS_CP0_STATUS][1])
437#define kvm_write_c0_guest_intctl(cop0, val) (cop0->reg[MIPS_CP0_STATUS][1] = (val))
438#define kvm_read_c0_guest_cause(cop0) (cop0->reg[MIPS_CP0_CAUSE][0])
439#define kvm_write_c0_guest_cause(cop0, val) (cop0->reg[MIPS_CP0_CAUSE][0] = (val))
440#define kvm_read_c0_guest_epc(cop0) (cop0->reg[MIPS_CP0_EXC_PC][0])
441#define kvm_write_c0_guest_epc(cop0, val) (cop0->reg[MIPS_CP0_EXC_PC][0] = (val))
442#define kvm_read_c0_guest_prid(cop0) (cop0->reg[MIPS_CP0_PRID][0])
443#define kvm_write_c0_guest_prid(cop0, val) (cop0->reg[MIPS_CP0_PRID][0] = (val))
444#define kvm_read_c0_guest_ebase(cop0) (cop0->reg[MIPS_CP0_PRID][1])
445#define kvm_write_c0_guest_ebase(cop0, val) (cop0->reg[MIPS_CP0_PRID][1] = (val))
446#define kvm_read_c0_guest_config(cop0) (cop0->reg[MIPS_CP0_CONFIG][0])
447#define kvm_read_c0_guest_config1(cop0) (cop0->reg[MIPS_CP0_CONFIG][1])
448#define kvm_read_c0_guest_config2(cop0) (cop0->reg[MIPS_CP0_CONFIG][2])
449#define kvm_read_c0_guest_config3(cop0) (cop0->reg[MIPS_CP0_CONFIG][3])
c771607a
JH
450#define kvm_read_c0_guest_config4(cop0) (cop0->reg[MIPS_CP0_CONFIG][4])
451#define kvm_read_c0_guest_config5(cop0) (cop0->reg[MIPS_CP0_CONFIG][5])
22027945
JH
452#define kvm_read_c0_guest_config7(cop0) (cop0->reg[MIPS_CP0_CONFIG][7])
453#define kvm_write_c0_guest_config(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][0] = (val))
454#define kvm_write_c0_guest_config1(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][1] = (val))
455#define kvm_write_c0_guest_config2(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][2] = (val))
456#define kvm_write_c0_guest_config3(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][3] = (val))
c771607a
JH
457#define kvm_write_c0_guest_config4(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][4] = (val))
458#define kvm_write_c0_guest_config5(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][5] = (val))
22027945
JH
459#define kvm_write_c0_guest_config7(cop0, val) (cop0->reg[MIPS_CP0_CONFIG][7] = (val))
460#define kvm_read_c0_guest_errorepc(cop0) (cop0->reg[MIPS_CP0_ERROR_PC][0])
461#define kvm_write_c0_guest_errorepc(cop0, val) (cop0->reg[MIPS_CP0_ERROR_PC][0] = (val))
462
c73c99b0
JH
463/*
464 * Some of the guest registers may be modified asynchronously (e.g. from a
465 * hrtimer callback in hard irq context) and therefore need stronger atomicity
466 * guarantees than other registers.
467 */
468
469static inline void _kvm_atomic_set_c0_guest_reg(unsigned long *reg,
470 unsigned long val)
471{
472 unsigned long temp;
473 do {
474 __asm__ __volatile__(
475 " .set mips3 \n"
476 " " __LL "%0, %1 \n"
477 " or %0, %2 \n"
478 " " __SC "%0, %1 \n"
479 " .set mips0 \n"
480 : "=&r" (temp), "+m" (*reg)
481 : "r" (val));
482 } while (unlikely(!temp));
483}
484
485static inline void _kvm_atomic_clear_c0_guest_reg(unsigned long *reg,
486 unsigned long val)
487{
488 unsigned long temp;
489 do {
490 __asm__ __volatile__(
491 " .set mips3 \n"
492 " " __LL "%0, %1 \n"
493 " and %0, %2 \n"
494 " " __SC "%0, %1 \n"
495 " .set mips0 \n"
496 : "=&r" (temp), "+m" (*reg)
497 : "r" (~val));
498 } while (unlikely(!temp));
499}
500
501static inline void _kvm_atomic_change_c0_guest_reg(unsigned long *reg,
502 unsigned long change,
503 unsigned long val)
504{
505 unsigned long temp;
506 do {
507 __asm__ __volatile__(
508 " .set mips3 \n"
509 " " __LL "%0, %1 \n"
510 " and %0, %2 \n"
511 " or %0, %3 \n"
512 " " __SC "%0, %1 \n"
513 " .set mips0 \n"
514 : "=&r" (temp), "+m" (*reg)
515 : "r" (~change), "r" (val & change));
516 } while (unlikely(!temp));
517}
518
22027945
JH
519#define kvm_set_c0_guest_status(cop0, val) (cop0->reg[MIPS_CP0_STATUS][0] |= (val))
520#define kvm_clear_c0_guest_status(cop0, val) (cop0->reg[MIPS_CP0_STATUS][0] &= ~(val))
c73c99b0
JH
521
522/* Cause can be modified asynchronously from hardirq hrtimer callback */
523#define kvm_set_c0_guest_cause(cop0, val) \
524 _kvm_atomic_set_c0_guest_reg(&cop0->reg[MIPS_CP0_CAUSE][0], val)
525#define kvm_clear_c0_guest_cause(cop0, val) \
526 _kvm_atomic_clear_c0_guest_reg(&cop0->reg[MIPS_CP0_CAUSE][0], val)
22027945 527#define kvm_change_c0_guest_cause(cop0, change, val) \
c73c99b0
JH
528 _kvm_atomic_change_c0_guest_reg(&cop0->reg[MIPS_CP0_CAUSE][0], \
529 change, val)
530
22027945
JH
531#define kvm_set_c0_guest_ebase(cop0, val) (cop0->reg[MIPS_CP0_PRID][1] |= (val))
532#define kvm_clear_c0_guest_ebase(cop0, val) (cop0->reg[MIPS_CP0_PRID][1] &= ~(val))
533#define kvm_change_c0_guest_ebase(cop0, change, val) \
534{ \
535 kvm_clear_c0_guest_ebase(cop0, change); \
536 kvm_set_c0_guest_ebase(cop0, ((val) & (change))); \
740765ce
SL
537}
538
98e91b84
JH
539/* Helpers */
540
541static inline bool kvm_mips_guest_can_have_fpu(struct kvm_vcpu_arch *vcpu)
542{
543 return (!__builtin_constant_p(cpu_has_fpu) || cpu_has_fpu) &&
544 vcpu->fpu_enabled;
545}
546
547static inline bool kvm_mips_guest_has_fpu(struct kvm_vcpu_arch *vcpu)
548{
549 return kvm_mips_guest_can_have_fpu(vcpu) &&
550 kvm_read_c0_guest_config1(vcpu->cop0) & MIPS_CONF1_FP;
551}
740765ce 552
539cb89f
JH
553static inline bool kvm_mips_guest_can_have_msa(struct kvm_vcpu_arch *vcpu)
554{
555 return (!__builtin_constant_p(cpu_has_msa) || cpu_has_msa) &&
556 vcpu->msa_enabled;
557}
558
559static inline bool kvm_mips_guest_has_msa(struct kvm_vcpu_arch *vcpu)
560{
561 return kvm_mips_guest_can_have_msa(vcpu) &&
562 kvm_read_c0_guest_config3(vcpu->cop0) & MIPS_CONF3_MSA;
563}
564
740765ce 565struct kvm_mips_callbacks {
2dca3725
JH
566 int (*handle_cop_unusable)(struct kvm_vcpu *vcpu);
567 int (*handle_tlb_mod)(struct kvm_vcpu *vcpu);
568 int (*handle_tlb_ld_miss)(struct kvm_vcpu *vcpu);
569 int (*handle_tlb_st_miss)(struct kvm_vcpu *vcpu);
570 int (*handle_addr_err_st)(struct kvm_vcpu *vcpu);
571 int (*handle_addr_err_ld)(struct kvm_vcpu *vcpu);
572 int (*handle_syscall)(struct kvm_vcpu *vcpu);
573 int (*handle_res_inst)(struct kvm_vcpu *vcpu);
574 int (*handle_break)(struct kvm_vcpu *vcpu);
0a560427 575 int (*handle_trap)(struct kvm_vcpu *vcpu);
c2537ed9 576 int (*handle_msa_fpe)(struct kvm_vcpu *vcpu);
1c0cd66a 577 int (*handle_fpe)(struct kvm_vcpu *vcpu);
98119ad5 578 int (*handle_msa_disabled)(struct kvm_vcpu *vcpu);
2dca3725
JH
579 int (*vm_init)(struct kvm *kvm);
580 int (*vcpu_init)(struct kvm_vcpu *vcpu);
581 int (*vcpu_setup)(struct kvm_vcpu *vcpu);
582 gpa_t (*gva_to_gpa)(gva_t gva);
583 void (*queue_timer_int)(struct kvm_vcpu *vcpu);
584 void (*dequeue_timer_int)(struct kvm_vcpu *vcpu);
585 void (*queue_io_int)(struct kvm_vcpu *vcpu,
586 struct kvm_mips_interrupt *irq);
587 void (*dequeue_io_int)(struct kvm_vcpu *vcpu,
588 struct kvm_mips_interrupt *irq);
589 int (*irq_deliver)(struct kvm_vcpu *vcpu, unsigned int priority,
bdb7ed86 590 u32 cause);
2dca3725 591 int (*irq_clear)(struct kvm_vcpu *vcpu, unsigned int priority,
bdb7ed86 592 u32 cause);
f8be02da
JH
593 int (*get_one_reg)(struct kvm_vcpu *vcpu,
594 const struct kvm_one_reg *reg, s64 *v);
595 int (*set_one_reg)(struct kvm_vcpu *vcpu,
596 const struct kvm_one_reg *reg, s64 v);
b86ecb37
JH
597 int (*vcpu_get_regs)(struct kvm_vcpu *vcpu);
598 int (*vcpu_set_regs)(struct kvm_vcpu *vcpu);
740765ce
SL
599};
600extern struct kvm_mips_callbacks *kvm_mips_callbacks;
601int kvm_mips_emulation_init(struct kvm_mips_callbacks **install_callbacks);
602
603/* Debug: dump vcpu state */
604int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu);
605
606/* Trampoline ASM routine to start running in "Guest" context */
607extern int __kvm_mips_vcpu_run(struct kvm_run *run, struct kvm_vcpu *vcpu);
608
539cb89f 609/* FPU/MSA context management */
98e91b84
JH
610void __kvm_save_fpu(struct kvm_vcpu_arch *vcpu);
611void __kvm_restore_fpu(struct kvm_vcpu_arch *vcpu);
612void __kvm_restore_fcsr(struct kvm_vcpu_arch *vcpu);
539cb89f
JH
613void __kvm_save_msa(struct kvm_vcpu_arch *vcpu);
614void __kvm_restore_msa(struct kvm_vcpu_arch *vcpu);
615void __kvm_restore_msa_upper(struct kvm_vcpu_arch *vcpu);
616void __kvm_restore_msacsr(struct kvm_vcpu_arch *vcpu);
98e91b84 617void kvm_own_fpu(struct kvm_vcpu *vcpu);
539cb89f 618void kvm_own_msa(struct kvm_vcpu *vcpu);
98e91b84
JH
619void kvm_drop_fpu(struct kvm_vcpu *vcpu);
620void kvm_lose_fpu(struct kvm_vcpu *vcpu);
621
740765ce 622/* TLB handling */
bdb7ed86 623u32 kvm_get_kernel_asid(struct kvm_vcpu *vcpu);
740765ce 624
bdb7ed86 625u32 kvm_get_user_asid(struct kvm_vcpu *vcpu);
740765ce 626
bdb7ed86 627u32 kvm_get_commpage_asid (struct kvm_vcpu *vcpu);
740765ce
SL
628
629extern int kvm_mips_handle_kseg0_tlb_fault(unsigned long badbaddr,
630 struct kvm_vcpu *vcpu);
631
632extern int kvm_mips_handle_commpage_tlb_fault(unsigned long badvaddr,
633 struct kvm_vcpu *vcpu);
634
635extern int kvm_mips_handle_mapped_seg_tlb_fault(struct kvm_vcpu *vcpu,
636 struct kvm_mips_tlb *tlb,
637 unsigned long *hpa0,
638 unsigned long *hpa1);
639
31cf7498 640extern enum emulation_result kvm_mips_handle_tlbmiss(u32 cause,
bdb7ed86 641 u32 *opc,
740765ce
SL
642 struct kvm_run *run,
643 struct kvm_vcpu *vcpu);
644
31cf7498 645extern enum emulation_result kvm_mips_handle_tlbmod(u32 cause,
bdb7ed86 646 u32 *opc,
740765ce
SL
647 struct kvm_run *run,
648 struct kvm_vcpu *vcpu);
649
650extern void kvm_mips_dump_host_tlbs(void);
651extern void kvm_mips_dump_guest_tlbs(struct kvm_vcpu *vcpu);
740765ce
SL
652extern void kvm_mips_flush_host_tlb(int skip_kseg0);
653extern int kvm_mips_host_tlb_inv(struct kvm_vcpu *vcpu, unsigned long entryhi);
740765ce
SL
654
655extern int kvm_mips_guest_tlb_lookup(struct kvm_vcpu *vcpu,
656 unsigned long entryhi);
657extern int kvm_mips_host_tlb_lookup(struct kvm_vcpu *vcpu, unsigned long vaddr);
658extern unsigned long kvm_mips_translate_guest_kseg0_to_hpa(struct kvm_vcpu *vcpu,
659 unsigned long gva);
660extern void kvm_get_new_mmu_context(struct mm_struct *mm, unsigned long cpu,
661 struct kvm_vcpu *vcpu);
740765ce 662extern void kvm_local_flush_tlb_all(void);
740765ce
SL
663extern void kvm_mips_alloc_new_mmu_context(struct kvm_vcpu *vcpu);
664extern void kvm_mips_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
665extern void kvm_mips_vcpu_put(struct kvm_vcpu *vcpu);
666
667/* Emulation */
bdb7ed86
JH
668u32 kvm_get_inst(u32 *opc, struct kvm_vcpu *vcpu);
669enum emulation_result update_pc(struct kvm_vcpu *vcpu, u32 cause);
740765ce 670
31cf7498 671extern enum emulation_result kvm_mips_emulate_inst(u32 cause,
bdb7ed86 672 u32 *opc,
740765ce
SL
673 struct kvm_run *run,
674 struct kvm_vcpu *vcpu);
675
31cf7498 676extern enum emulation_result kvm_mips_emulate_syscall(u32 cause,
bdb7ed86 677 u32 *opc,
740765ce
SL
678 struct kvm_run *run,
679 struct kvm_vcpu *vcpu);
680
31cf7498 681extern enum emulation_result kvm_mips_emulate_tlbmiss_ld(u32 cause,
bdb7ed86 682 u32 *opc,
740765ce
SL
683 struct kvm_run *run,
684 struct kvm_vcpu *vcpu);
685
31cf7498 686extern enum emulation_result kvm_mips_emulate_tlbinv_ld(u32 cause,
bdb7ed86 687 u32 *opc,
740765ce
SL
688 struct kvm_run *run,
689 struct kvm_vcpu *vcpu);
690
31cf7498 691extern enum emulation_result kvm_mips_emulate_tlbmiss_st(u32 cause,
bdb7ed86 692 u32 *opc,
740765ce
SL
693 struct kvm_run *run,
694 struct kvm_vcpu *vcpu);
695
31cf7498 696extern enum emulation_result kvm_mips_emulate_tlbinv_st(u32 cause,
bdb7ed86 697 u32 *opc,
740765ce
SL
698 struct kvm_run *run,
699 struct kvm_vcpu *vcpu);
700
31cf7498 701extern enum emulation_result kvm_mips_emulate_tlbmod(u32 cause,
bdb7ed86 702 u32 *opc,
740765ce
SL
703 struct kvm_run *run,
704 struct kvm_vcpu *vcpu);
705
31cf7498 706extern enum emulation_result kvm_mips_emulate_fpu_exc(u32 cause,
bdb7ed86 707 u32 *opc,
740765ce
SL
708 struct kvm_run *run,
709 struct kvm_vcpu *vcpu);
710
31cf7498 711extern enum emulation_result kvm_mips_handle_ri(u32 cause,
bdb7ed86 712 u32 *opc,
740765ce
SL
713 struct kvm_run *run,
714 struct kvm_vcpu *vcpu);
715
31cf7498 716extern enum emulation_result kvm_mips_emulate_ri_exc(u32 cause,
bdb7ed86 717 u32 *opc,
740765ce
SL
718 struct kvm_run *run,
719 struct kvm_vcpu *vcpu);
720
31cf7498 721extern enum emulation_result kvm_mips_emulate_bp_exc(u32 cause,
bdb7ed86 722 u32 *opc,
740765ce
SL
723 struct kvm_run *run,
724 struct kvm_vcpu *vcpu);
725
31cf7498 726extern enum emulation_result kvm_mips_emulate_trap_exc(u32 cause,
bdb7ed86 727 u32 *opc,
0a560427
JH
728 struct kvm_run *run,
729 struct kvm_vcpu *vcpu);
730
31cf7498 731extern enum emulation_result kvm_mips_emulate_msafpe_exc(u32 cause,
bdb7ed86 732 u32 *opc,
c2537ed9
JH
733 struct kvm_run *run,
734 struct kvm_vcpu *vcpu);
735
31cf7498 736extern enum emulation_result kvm_mips_emulate_fpe_exc(u32 cause,
bdb7ed86 737 u32 *opc,
1c0cd66a
JH
738 struct kvm_run *run,
739 struct kvm_vcpu *vcpu);
740
31cf7498 741extern enum emulation_result kvm_mips_emulate_msadis_exc(u32 cause,
bdb7ed86 742 u32 *opc,
c2537ed9
JH
743 struct kvm_run *run,
744 struct kvm_vcpu *vcpu);
745
740765ce
SL
746extern enum emulation_result kvm_mips_complete_mmio_load(struct kvm_vcpu *vcpu,
747 struct kvm_run *run);
748
bdb7ed86
JH
749u32 kvm_mips_read_count(struct kvm_vcpu *vcpu);
750void kvm_mips_write_count(struct kvm_vcpu *vcpu, u32 count);
751void kvm_mips_write_compare(struct kvm_vcpu *vcpu, u32 compare, bool ack);
e30492bb 752void kvm_mips_init_count(struct kvm_vcpu *vcpu);
f8239342
JH
753int kvm_mips_set_count_ctl(struct kvm_vcpu *vcpu, s64 count_ctl);
754int kvm_mips_set_count_resume(struct kvm_vcpu *vcpu, s64 count_resume);
f74a8e22 755int kvm_mips_set_count_hz(struct kvm_vcpu *vcpu, s64 count_hz);
e30492bb
JH
756void kvm_mips_count_enable_cause(struct kvm_vcpu *vcpu);
757void kvm_mips_count_disable_cause(struct kvm_vcpu *vcpu);
758enum hrtimer_restart kvm_mips_count_timeout(struct kvm_vcpu *vcpu);
740765ce 759
31cf7498 760enum emulation_result kvm_mips_check_privilege(u32 cause,
bdb7ed86 761 u32 *opc,
740765ce
SL
762 struct kvm_run *run,
763 struct kvm_vcpu *vcpu);
764
bdb7ed86
JH
765enum emulation_result kvm_mips_emulate_cache(u32 inst,
766 u32 *opc,
767 u32 cause,
740765ce
SL
768 struct kvm_run *run,
769 struct kvm_vcpu *vcpu);
bdb7ed86
JH
770enum emulation_result kvm_mips_emulate_CP0(u32 inst,
771 u32 *opc,
772 u32 cause,
740765ce
SL
773 struct kvm_run *run,
774 struct kvm_vcpu *vcpu);
bdb7ed86
JH
775enum emulation_result kvm_mips_emulate_store(u32 inst,
776 u32 cause,
740765ce
SL
777 struct kvm_run *run,
778 struct kvm_vcpu *vcpu);
bdb7ed86
JH
779enum emulation_result kvm_mips_emulate_load(u32 inst,
780 u32 cause,
740765ce
SL
781 struct kvm_run *run,
782 struct kvm_vcpu *vcpu);
783
c771607a
JH
784unsigned int kvm_mips_config1_wrmask(struct kvm_vcpu *vcpu);
785unsigned int kvm_mips_config3_wrmask(struct kvm_vcpu *vcpu);
786unsigned int kvm_mips_config4_wrmask(struct kvm_vcpu *vcpu);
787unsigned int kvm_mips_config5_wrmask(struct kvm_vcpu *vcpu);
788
740765ce 789/* Dynamic binary translation */
bdb7ed86 790extern int kvm_mips_trans_cache_index(u32 inst, u32 *opc,
740765ce 791 struct kvm_vcpu *vcpu);
bdb7ed86
JH
792extern int kvm_mips_trans_cache_va(u32 inst, u32 *opc, struct kvm_vcpu *vcpu);
793extern int kvm_mips_trans_mfc0(u32 inst, u32 *opc, struct kvm_vcpu *vcpu);
794extern int kvm_mips_trans_mtc0(u32 inst, u32 *opc, struct kvm_vcpu *vcpu);
740765ce
SL
795
796/* Misc */
d98403a5 797extern void kvm_mips_dump_stats(struct kvm_vcpu *vcpu);
740765ce
SL
798extern unsigned long kvm_mips_get_ramsize(struct kvm *kvm);
799
13a34e06 800static inline void kvm_arch_hardware_disable(void) {}
0865e636
RK
801static inline void kvm_arch_hardware_unsetup(void) {}
802static inline void kvm_arch_sync_events(struct kvm *kvm) {}
803static inline void kvm_arch_free_memslot(struct kvm *kvm,
804 struct kvm_memory_slot *free, struct kvm_memory_slot *dont) {}
15f46015 805static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
0865e636
RK
806static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
807static inline void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
808 struct kvm_memory_slot *slot) {}
809static inline void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) {}
810static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
3217f7c2
CD
811static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
812static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
3491caf2 813static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
740765ce
SL
814
815#endif /* __MIPS_KVM_HOST_H__ */
This page took 0.212006 seconds and 5 git commands to generate.