blob: 696f6b00937762cba91438eeb9ea5828d8bcf089 [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
James Hoganc992a4f2017-03-14 10:15:31 +000013#include <linux/cpumask.h>
Sanjay Lal740765c2012-11-21 18:34:00 -080014#include <linux/mutex.h>
15#include <linux/hrtimer.h>
16#include <linux/interrupt.h>
17#include <linux/types.h>
18#include <linux/kvm.h>
19#include <linux/kvm_types.h>
20#include <linux/threads.h>
21#include <linux/spinlock.h>
22
James Hogan258f3a22016-06-15 19:29:47 +010023#include <asm/inst.h>
James Hogane6207bb2016-06-09 14:19:19 +010024#include <asm/mipsregs.h>
25
Huacai Chenf21db302020-05-23 15:56:37 +080026#include <kvm/iodev.h>
27
James Hogan48a3c4e2014-05-29 10:16:28 +010028/* MIPS KVM register ids */
29#define MIPS_CP0_32(_R, _S) \
James Hogan7bd4ace2014-12-02 15:47:04 +000030 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U32 | (8 * (_R) + (_S)))
James Hogan48a3c4e2014-05-29 10:16:28 +010031
32#define MIPS_CP0_64(_R, _S) \
James Hogan7bd4ace2014-12-02 15:47:04 +000033 (KVM_REG_MIPS_CP0 | KVM_REG_SIZE_U64 | (8 * (_R) + (_S)))
James Hogan48a3c4e2014-05-29 10:16:28 +010034
35#define KVM_REG_MIPS_CP0_INDEX MIPS_CP0_32(0, 0)
36#define KVM_REG_MIPS_CP0_ENTRYLO0 MIPS_CP0_64(2, 0)
37#define KVM_REG_MIPS_CP0_ENTRYLO1 MIPS_CP0_64(3, 0)
38#define KVM_REG_MIPS_CP0_CONTEXT MIPS_CP0_64(4, 0)
James Hogandffe0422017-03-14 10:15:34 +000039#define KVM_REG_MIPS_CP0_CONTEXTCONFIG MIPS_CP0_32(4, 1)
James Hogan48a3c4e2014-05-29 10:16:28 +010040#define KVM_REG_MIPS_CP0_USERLOCAL MIPS_CP0_64(4, 2)
James Hogandffe0422017-03-14 10:15:34 +000041#define KVM_REG_MIPS_CP0_XCONTEXTCONFIG MIPS_CP0_64(4, 3)
James Hogan48a3c4e2014-05-29 10:16:28 +010042#define KVM_REG_MIPS_CP0_PAGEMASK MIPS_CP0_32(5, 0)
43#define KVM_REG_MIPS_CP0_PAGEGRAIN MIPS_CP0_32(5, 1)
James Hogan4b7de022017-03-14 10:15:35 +000044#define KVM_REG_MIPS_CP0_SEGCTL0 MIPS_CP0_64(5, 2)
45#define KVM_REG_MIPS_CP0_SEGCTL1 MIPS_CP0_64(5, 3)
46#define KVM_REG_MIPS_CP0_SEGCTL2 MIPS_CP0_64(5, 4)
James Hogan5a2f3522017-03-14 10:15:36 +000047#define KVM_REG_MIPS_CP0_PWBASE MIPS_CP0_64(5, 5)
48#define KVM_REG_MIPS_CP0_PWFIELD MIPS_CP0_64(5, 6)
49#define KVM_REG_MIPS_CP0_PWSIZE MIPS_CP0_64(5, 7)
James Hogan48a3c4e2014-05-29 10:16:28 +010050#define KVM_REG_MIPS_CP0_WIRED MIPS_CP0_32(6, 0)
James Hogan5a2f3522017-03-14 10:15:36 +000051#define KVM_REG_MIPS_CP0_PWCTL MIPS_CP0_32(6, 6)
James Hogan48a3c4e2014-05-29 10:16:28 +010052#define KVM_REG_MIPS_CP0_HWRENA MIPS_CP0_32(7, 0)
53#define KVM_REG_MIPS_CP0_BADVADDR MIPS_CP0_64(8, 0)
James Hoganedc89262017-03-14 10:15:33 +000054#define KVM_REG_MIPS_CP0_BADINSTR MIPS_CP0_32(8, 1)
55#define KVM_REG_MIPS_CP0_BADINSTRP MIPS_CP0_32(8, 2)
James Hogan48a3c4e2014-05-29 10:16:28 +010056#define KVM_REG_MIPS_CP0_COUNT MIPS_CP0_32(9, 0)
57#define KVM_REG_MIPS_CP0_ENTRYHI MIPS_CP0_64(10, 0)
58#define KVM_REG_MIPS_CP0_COMPARE MIPS_CP0_32(11, 0)
59#define KVM_REG_MIPS_CP0_STATUS MIPS_CP0_32(12, 0)
James Hoganad58d4d2015-02-02 22:55:17 +000060#define KVM_REG_MIPS_CP0_INTCTL MIPS_CP0_32(12, 1)
James Hogan48a3c4e2014-05-29 10:16:28 +010061#define KVM_REG_MIPS_CP0_CAUSE MIPS_CP0_32(13, 0)
62#define KVM_REG_MIPS_CP0_EPC MIPS_CP0_64(14, 0)
James Hogan1068eaa2014-06-26 13:56:52 +010063#define KVM_REG_MIPS_CP0_PRID MIPS_CP0_32(15, 0)
James Hogan48a3c4e2014-05-29 10:16:28 +010064#define KVM_REG_MIPS_CP0_EBASE MIPS_CP0_64(15, 1)
65#define KVM_REG_MIPS_CP0_CONFIG MIPS_CP0_32(16, 0)
66#define KVM_REG_MIPS_CP0_CONFIG1 MIPS_CP0_32(16, 1)
67#define KVM_REG_MIPS_CP0_CONFIG2 MIPS_CP0_32(16, 2)
68#define KVM_REG_MIPS_CP0_CONFIG3 MIPS_CP0_32(16, 3)
James Hoganc7716072014-06-26 15:11:29 +010069#define KVM_REG_MIPS_CP0_CONFIG4 MIPS_CP0_32(16, 4)
70#define KVM_REG_MIPS_CP0_CONFIG5 MIPS_CP0_32(16, 5)
Huacai Chen8a5097e2020-05-23 15:56:39 +080071#define KVM_REG_MIPS_CP0_CONFIG6 MIPS_CP0_32(16, 6)
James Hogan48a3c4e2014-05-29 10:16:28 +010072#define KVM_REG_MIPS_CP0_CONFIG7 MIPS_CP0_32(16, 7)
James Hogand42a0082017-03-14 10:15:38 +000073#define KVM_REG_MIPS_CP0_MAARI MIPS_CP0_64(17, 2)
James Hogan48a3c4e2014-05-29 10:16:28 +010074#define KVM_REG_MIPS_CP0_XCONTEXT MIPS_CP0_64(20, 0)
Huacai Chen8a5097e2020-05-23 15:56:39 +080075#define KVM_REG_MIPS_CP0_DIAG MIPS_CP0_32(22, 0)
James Hogan48a3c4e2014-05-29 10:16:28 +010076#define KVM_REG_MIPS_CP0_ERROREPC MIPS_CP0_64(30, 0)
James Hogan05108702016-06-15 19:29:56 +010077#define KVM_REG_MIPS_CP0_KSCRATCH1 MIPS_CP0_64(31, 2)
78#define KVM_REG_MIPS_CP0_KSCRATCH2 MIPS_CP0_64(31, 3)
79#define KVM_REG_MIPS_CP0_KSCRATCH3 MIPS_CP0_64(31, 4)
80#define KVM_REG_MIPS_CP0_KSCRATCH4 MIPS_CP0_64(31, 5)
81#define KVM_REG_MIPS_CP0_KSCRATCH5 MIPS_CP0_64(31, 6)
82#define KVM_REG_MIPS_CP0_KSCRATCH6 MIPS_CP0_64(31, 7)
James Hogan48a3c4e2014-05-29 10:16:28 +010083
Sanjay Lal740765c2012-11-21 18:34:00 -080084
Huacai Chen210b4b92020-05-23 15:56:30 +080085#define KVM_MAX_VCPUS 16
Sanjay Lal740765c2012-11-21 18:34:00 -080086/* memory slots that does not exposed to userspace */
James Hogancaa1faa2015-12-16 23:49:26 +000087#define KVM_PRIVATE_MEM_SLOTS 0
Sanjay Lal740765c2012-11-21 18:34:00 -080088
David Hildenbrand920552b2015-09-18 12:34:53 +020089#define KVM_HALT_POLL_NS_DEFAULT 500000
Sanjay Lal740765c2012-11-21 18:34:00 -080090
James Hoganc992a4f2017-03-14 10:15:31 +000091extern unsigned long GUESTID_MASK;
92extern unsigned long GUESTID_FIRST_VERSION;
93extern unsigned long GUESTID_VERSION_MASK;
Sanjay Lal740765c2012-11-21 18:34:00 -080094
James Hogan22027942014-03-14 13:06:08 +000095#define KVM_INVALID_ADDR 0xdeadbeef
Sanjay Lal740765c2012-11-21 18:34:00 -080096
James Hoganf6f70172016-08-01 09:07:52 +010097/*
98 * EVA has overlapping user & kernel address spaces, so user VAs may be >
99 * PAGE_OFFSET. For this reason we can't use the default KVM_HVA_ERR_BAD of
100 * PAGE_OFFSET.
101 */
102
103#define KVM_HVA_ERR_BAD (-1UL)
104#define KVM_HVA_ERR_RO_BAD (-2UL)
105
106static inline bool kvm_is_error_hva(unsigned long addr)
107{
108 return IS_ERR_VALUE(addr);
109}
110
Sanjay Lal740765c2012-11-21 18:34:00 -0800111struct kvm_vm_stat {
Jing Zhang0193cc92021-06-18 22:27:03 +0000112 struct kvm_vm_stat_generic generic;
Sanjay Lal740765c2012-11-21 18:34:00 -0800113};
114
115struct kvm_vcpu_stat {
Jing Zhang0193cc92021-06-18 22:27:03 +0000116 struct kvm_vcpu_stat_generic generic;
Suraj Jitindar Singh8a7e75d2016-08-02 14:03:22 +1000117 u64 wait_exits;
118 u64 cache_exits;
119 u64 signal_exits;
120 u64 int_exits;
121 u64 cop_unusable_exits;
122 u64 tlbmod_exits;
123 u64 tlbmiss_ld_exits;
124 u64 tlbmiss_st_exits;
125 u64 addrerr_st_exits;
126 u64 addrerr_ld_exits;
127 u64 syscall_exits;
128 u64 resvd_inst_exits;
129 u64 break_inst_exits;
130 u64 trap_inst_exits;
131 u64 msa_fpe_exits;
132 u64 fpe_exits;
133 u64 msa_disabled_exits;
134 u64 flush_dcache_exits;
James Hogana7244922017-03-14 10:15:18 +0000135 u64 vz_gpsi_exits;
136 u64 vz_gsfc_exits;
137 u64 vz_hc_exits;
138 u64 vz_grr_exits;
139 u64 vz_gva_exits;
140 u64 vz_ghfc_exits;
141 u64 vz_gpa_exits;
142 u64 vz_resvd_exits;
Huacai Chen7f2a83f2020-05-23 15:56:38 +0800143#ifdef CONFIG_CPU_LOONGSON64
144 u64 vz_cpucfg_exits;
145#endif
Sanjay Lal740765c2012-11-21 18:34:00 -0800146};
147
Sanjay Lal740765c2012-11-21 18:34:00 -0800148struct kvm_arch_memory_slot {
149};
150
Huacai Chenf21db302020-05-23 15:56:37 +0800151#ifdef CONFIG_CPU_LOONGSON64
152struct ipi_state {
153 uint32_t status;
154 uint32_t en;
155 uint32_t set;
156 uint32_t clear;
157 uint64_t buf[4];
158};
159
160struct loongson_kvm_ipi;
161
162struct ipi_io_device {
163 int node_id;
164 struct loongson_kvm_ipi *ipi;
165 struct kvm_io_device device;
166};
167
168struct loongson_kvm_ipi {
169 spinlock_t lock;
170 struct kvm *kvm;
171 struct ipi_state ipistate[16];
172 struct ipi_io_device dev_ipi[4];
173};
174#endif
175
Sanjay Lal740765c2012-11-21 18:34:00 -0800176struct kvm_arch {
James Hogan06c158c2015-05-01 13:50:18 +0100177 /* Guest physical mm */
178 struct mm_struct gpa_mm;
James Hoganc992a4f2017-03-14 10:15:31 +0000179 /* Mask of CPUs needing GPA ASID flush */
180 cpumask_t asid_flush_mask;
Huacai Chenf21db302020-05-23 15:56:37 +0800181#ifdef CONFIG_CPU_LOONGSON64
182 struct loongson_kvm_ipi ipi;
183#endif
Sanjay Lal740765c2012-11-21 18:34:00 -0800184};
185
James Hogan22027942014-03-14 13:06:08 +0000186#define N_MIPS_COPROC_REGS 32
187#define N_MIPS_COPROC_SEL 8
Sanjay Lal740765c2012-11-21 18:34:00 -0800188
189struct mips_coproc {
190 unsigned long reg[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
191#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
192 unsigned long stat[N_MIPS_COPROC_REGS][N_MIPS_COPROC_SEL];
193#endif
194};
195
196/*
197 * Coprocessor 0 register names
198 */
James Hogan22027942014-03-14 13:06:08 +0000199#define MIPS_CP0_TLB_INDEX 0
200#define MIPS_CP0_TLB_RANDOM 1
201#define MIPS_CP0_TLB_LOW 2
202#define MIPS_CP0_TLB_LO0 2
203#define MIPS_CP0_TLB_LO1 3
204#define MIPS_CP0_TLB_CONTEXT 4
205#define MIPS_CP0_TLB_PG_MASK 5
206#define MIPS_CP0_TLB_WIRED 6
207#define MIPS_CP0_HWRENA 7
208#define MIPS_CP0_BAD_VADDR 8
209#define MIPS_CP0_COUNT 9
210#define MIPS_CP0_TLB_HI 10
211#define MIPS_CP0_COMPARE 11
212#define MIPS_CP0_STATUS 12
213#define MIPS_CP0_CAUSE 13
214#define MIPS_CP0_EXC_PC 14
215#define MIPS_CP0_PRID 15
216#define MIPS_CP0_CONFIG 16
217#define MIPS_CP0_LLADDR 17
218#define MIPS_CP0_WATCH_LO 18
219#define MIPS_CP0_WATCH_HI 19
220#define MIPS_CP0_TLB_XCONTEXT 20
Huacai Chen8a5097e2020-05-23 15:56:39 +0800221#define MIPS_CP0_DIAG 22
James Hogan22027942014-03-14 13:06:08 +0000222#define MIPS_CP0_ECC 26
223#define MIPS_CP0_CACHE_ERR 27
224#define MIPS_CP0_TAG_LO 28
225#define MIPS_CP0_TAG_HI 29
226#define MIPS_CP0_ERROR_PC 30
227#define MIPS_CP0_DEBUG 23
228#define MIPS_CP0_DEPC 24
229#define MIPS_CP0_PERFCNT 25
230#define MIPS_CP0_ERRCTL 26
231#define MIPS_CP0_DATA_LO 28
232#define MIPS_CP0_DATA_HI 29
233#define MIPS_CP0_DESAVE 31
Sanjay Lal740765c2012-11-21 18:34:00 -0800234
James Hogan22027942014-03-14 13:06:08 +0000235#define MIPS_CP0_CONFIG_SEL 0
236#define MIPS_CP0_CONFIG1_SEL 1
237#define MIPS_CP0_CONFIG2_SEL 2
238#define MIPS_CP0_CONFIG3_SEL 3
James Hoganc7716072014-06-26 15:11:29 +0100239#define MIPS_CP0_CONFIG4_SEL 4
240#define MIPS_CP0_CONFIG5_SEL 5
Sanjay Lal740765c2012-11-21 18:34:00 -0800241
James Hoganc992a4f2017-03-14 10:15:31 +0000242#define MIPS_CP0_GUESTCTL2 10
243#define MIPS_CP0_GUESTCTL2_SEL 5
244#define MIPS_CP0_GTOFFSET 12
245#define MIPS_CP0_GTOFFSET_SEL 7
246
Sanjay Lal740765c2012-11-21 18:34:00 -0800247/* Resume Flags */
James Hogan22027942014-03-14 13:06:08 +0000248#define RESUME_FLAG_DR (1<<0) /* Reload guest nonvolatile state? */
249#define RESUME_FLAG_HOST (1<<1) /* Resume host? */
Sanjay Lal740765c2012-11-21 18:34:00 -0800250
James Hogan22027942014-03-14 13:06:08 +0000251#define RESUME_GUEST 0
252#define RESUME_GUEST_DR RESUME_FLAG_DR
253#define RESUME_HOST RESUME_FLAG_HOST
Sanjay Lal740765c2012-11-21 18:34:00 -0800254
255enum emulation_result {
256 EMULATE_DONE, /* no further processing */
257 EMULATE_DO_MMIO, /* kvm_run filled with MMIO request */
258 EMULATE_FAIL, /* can't emulate this instruction */
259 EMULATE_WAIT, /* WAIT instruction */
260 EMULATE_PRIV_FAIL,
James Hogan4cf74c92016-11-26 00:37:28 +0000261 EMULATE_EXCEPT, /* A guest exception has been generated */
James Hogan955d8dc2017-03-14 10:15:14 +0000262 EMULATE_HYPERCALL, /* HYPCALL instruction */
Sanjay Lal740765c2012-11-21 18:34:00 -0800263};
264
Xing Li5816c762020-05-23 15:56:29 +0800265#if defined(CONFIG_64BIT)
266#define VPN2_MASK GENMASK(cpu_vmbits - 1, 13)
267#else
James Hogan22027942014-03-14 13:06:08 +0000268#define VPN2_MASK 0xffffe000
Xing Li5816c762020-05-23 15:56:29 +0800269#endif
Xing Life2b73d2020-05-23 15:56:28 +0800270#define KVM_ENTRYHI_ASID cpu_asid_mask(&boot_cpu_data)
James Hogane6207bb2016-06-09 14:19:19 +0100271#define TLB_IS_GLOBAL(x) ((x).tlb_lo[0] & (x).tlb_lo[1] & ENTRYLO_G)
James Hogan22027942014-03-14 13:06:08 +0000272#define TLB_VPN2(x) ((x).tlb_hi & VPN2_MASK)
Paul Burtonca64c2b2016-05-06 14:36:20 +0100273#define TLB_ASID(x) ((x).tlb_hi & KVM_ENTRYHI_ASID)
James Hogan19d194c2016-06-09 14:19:18 +0100274#define TLB_LO_IDX(x, va) (((va) >> PAGE_SHIFT) & 1)
James Hogane6207bb2016-06-09 14:19:19 +0100275#define TLB_IS_VALID(x, va) ((x).tlb_lo[TLB_LO_IDX(x, va)] & ENTRYLO_V)
James Hogan1880afd2016-11-28 23:04:52 +0000276#define TLB_IS_DIRTY(x, va) ((x).tlb_lo[TLB_LO_IDX(x, va)] & ENTRYLO_D)
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700277#define TLB_HI_VPN2_HIT(x, y) ((TLB_VPN2(x) & ~(x).tlb_mask) == \
278 ((y) & VPN2_MASK & ~(x).tlb_mask))
279#define TLB_HI_ASID_HIT(x, y) (TLB_IS_GLOBAL(x) || \
Paul Burtonca64c2b2016-05-06 14:36:20 +0100280 TLB_ASID(x) == ((y) & KVM_ENTRYHI_ASID))
Sanjay Lal740765c2012-11-21 18:34:00 -0800281
282struct kvm_mips_tlb {
283 long tlb_mask;
284 long tlb_hi;
James Hogan9fbfb062016-06-09 14:19:17 +0100285 long tlb_lo[2];
Sanjay Lal740765c2012-11-21 18:34:00 -0800286};
287
James Hoganf9431762016-06-14 09:40:10 +0100288#define KVM_MIPS_AUX_FPU 0x1
289#define KVM_MIPS_AUX_MSA 0x2
James Hogan98e91b82014-11-18 14:09:12 +0000290
Sanjay Lal740765c2012-11-21 18:34:00 -0800291struct kvm_vcpu_arch {
James Hogan878edf02016-06-09 14:19:14 +0100292 void *guest_ebase;
Tianjia Zhang0b7aa582020-06-23 21:14:18 +0800293 int (*vcpu_run)(struct kvm_vcpu *vcpu);
James Hogan1934a3a2017-03-14 10:15:26 +0000294
295 /* Host registers preserved across guest mode execution */
Sanjay Lal740765c2012-11-21 18:34:00 -0800296 unsigned long host_stack;
297 unsigned long host_gp;
James Hogan1934a3a2017-03-14 10:15:26 +0000298 unsigned long host_pgd;
299 unsigned long host_entryhi;
Sanjay Lal740765c2012-11-21 18:34:00 -0800300
301 /* Host CP0 registers used when handling exits from guest */
302 unsigned long host_cp0_badvaddr;
Sanjay Lal740765c2012-11-21 18:34:00 -0800303 unsigned long host_cp0_epc;
James Hogan31cf7492016-06-09 14:19:09 +0100304 u32 host_cp0_cause;
James Hogan1934a3a2017-03-14 10:15:26 +0000305 u32 host_cp0_guestctl0;
James Hogan6a97c772015-04-23 16:54:35 +0100306 u32 host_cp0_badinstr;
307 u32 host_cp0_badinstrp;
Sanjay Lal740765c2012-11-21 18:34:00 -0800308
309 /* GPRS */
310 unsigned long gprs[32];
311 unsigned long hi;
312 unsigned long lo;
313 unsigned long pc;
314
315 /* FPU State */
316 struct mips_fpu_struct fpu;
James Hoganf9431762016-06-14 09:40:10 +0100317 /* Which auxiliary state is loaded (KVM_MIPS_AUX_*) */
318 unsigned int aux_inuse;
Sanjay Lal740765c2012-11-21 18:34:00 -0800319
320 /* COP0 State */
321 struct mips_coproc *cop0;
322
James Hogane1e575f62016-10-25 16:11:12 +0100323 /* Resume PC after MMIO completion */
324 unsigned long io_pc;
325 /* GPR used as IO source/target */
326 u32 io_gpr;
Sanjay Lal740765c2012-11-21 18:34:00 -0800327
James Hogane30492b2014-05-29 10:16:35 +0100328 struct hrtimer comparecount_timer;
James Hoganf8239342014-05-29 10:16:37 +0100329 /* Count timer control KVM register */
James Hoganbdb7ed82016-06-09 14:19:07 +0100330 u32 count_ctl;
James Hogane30492b2014-05-29 10:16:35 +0100331 /* Count bias from the raw time */
James Hoganbdb7ed82016-06-09 14:19:07 +0100332 u32 count_bias;
James Hogane30492b2014-05-29 10:16:35 +0100333 /* Frequency of timer in Hz */
James Hoganbdb7ed82016-06-09 14:19:07 +0100334 u32 count_hz;
James Hogane30492b2014-05-29 10:16:35 +0100335 /* Dynamic nanosecond bias (multiple of count_period) to avoid overflow */
336 s64 count_dyn_bias;
James Hoganf8239342014-05-29 10:16:37 +0100337 /* Resume time */
338 ktime_t count_resume;
James Hogane30492b2014-05-29 10:16:35 +0100339 /* Period of timer tick in ns */
340 u64 count_period;
Sanjay Lal740765c2012-11-21 18:34:00 -0800341
342 /* Bitmask of exceptions that are pending */
343 unsigned long pending_exceptions;
344
345 /* Bitmask of pending exceptions to be cleared */
346 unsigned long pending_exceptions_clr;
347
James Hoganaba85922016-12-16 15:57:00 +0000348 /* Cache some mmu pages needed inside spinlock regions */
349 struct kvm_mmu_memory_cache mmu_page_cache;
350
James Hoganc992a4f2017-03-14 10:15:31 +0000351 /* vcpu's vzguestid is different on each host cpu in an smp system */
352 u32 vzguestid[NR_CPUS];
353
354 /* wired guest TLB entries */
355 struct kvm_mips_tlb *wired_tlb;
356 unsigned int wired_tlb_limit;
357 unsigned int wired_tlb_used;
James Hogand42a0082017-03-14 10:15:38 +0000358
359 /* emulated guest MAAR registers */
360 unsigned long maar[6];
James Hoganc992a4f2017-03-14 10:15:31 +0000361
362 /* Last CPU the VCPU state was loaded on */
Sanjay Lal740765c2012-11-21 18:34:00 -0800363 int last_sched_cpu;
James Hoganc992a4f2017-03-14 10:15:31 +0000364 /* Last CPU the VCPU actually executed guest code on */
365 int last_exec_cpu;
Sanjay Lal740765c2012-11-21 18:34:00 -0800366
367 /* WAIT executed */
368 int wait;
James Hogan98e91b82014-11-18 14:09:12 +0000369
370 u8 fpu_enabled;
James Hogan539cb89fb2015-03-05 11:43:36 +0000371 u8 msa_enabled;
Sanjay Lal740765c2012-11-21 18:34:00 -0800372};
373
James Hoganc73c99b2014-05-29 10:16:33 +0100374static inline void _kvm_atomic_set_c0_guest_reg(unsigned long *reg,
375 unsigned long val)
376{
377 unsigned long temp;
378 do {
379 __asm__ __volatile__(
Paul Burton378ed6f2018-11-08 20:14:38 +0000380 " .set push \n"
James Hogand85ebff2016-07-04 19:35:10 +0100381 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100382 " " __LL "%0, %1 \n"
383 " or %0, %2 \n"
384 " " __SC "%0, %1 \n"
Paul Burton378ed6f2018-11-08 20:14:38 +0000385 " .set pop \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100386 : "=&r" (temp), "+m" (*reg)
387 : "r" (val));
388 } while (unlikely(!temp));
389}
390
391static inline void _kvm_atomic_clear_c0_guest_reg(unsigned long *reg,
392 unsigned long val)
393{
394 unsigned long temp;
395 do {
396 __asm__ __volatile__(
Paul Burton378ed6f2018-11-08 20:14:38 +0000397 " .set push \n"
James Hogand85ebff2016-07-04 19:35:10 +0100398 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100399 " " __LL "%0, %1 \n"
400 " and %0, %2 \n"
401 " " __SC "%0, %1 \n"
Paul Burton378ed6f2018-11-08 20:14:38 +0000402 " .set pop \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100403 : "=&r" (temp), "+m" (*reg)
404 : "r" (~val));
405 } while (unlikely(!temp));
406}
407
408static inline void _kvm_atomic_change_c0_guest_reg(unsigned long *reg,
409 unsigned long change,
410 unsigned long val)
411{
412 unsigned long temp;
413 do {
414 __asm__ __volatile__(
Paul Burton378ed6f2018-11-08 20:14:38 +0000415 " .set push \n"
James Hogand85ebff2016-07-04 19:35:10 +0100416 " .set "MIPS_ISA_ARCH_LEVEL" \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100417 " " __LL "%0, %1 \n"
418 " and %0, %2 \n"
419 " or %0, %3 \n"
420 " " __SC "%0, %1 \n"
Paul Burton378ed6f2018-11-08 20:14:38 +0000421 " .set pop \n"
James Hoganc73c99b2014-05-29 10:16:33 +0100422 : "=&r" (temp), "+m" (*reg)
423 : "r" (~change), "r" (val & change));
424 } while (unlikely(!temp));
425}
426
James Hogana27660f2017-03-14 10:15:25 +0000427/* Guest register types, used in accessor build below */
428#define __KVMT32 u32
429#define __KVMTl unsigned long
James Hoganc73c99b2014-05-29 10:16:33 +0100430
James Hogana27660f2017-03-14 10:15:25 +0000431/*
432 * __BUILD_KVM_$ops_SAVED(): kvm_$op_sw_gc0_$reg()
433 * These operate on the saved guest C0 state in RAM.
434 */
James Hoganc73c99b2014-05-29 10:16:33 +0100435
James Hogana27660f2017-03-14 10:15:25 +0000436/* Generate saved context simple accessors */
437#define __BUILD_KVM_RW_SAVED(name, type, _reg, sel) \
438static inline __KVMT##type kvm_read_sw_gc0_##name(struct mips_coproc *cop0) \
James Hogan22027942014-03-14 13:06:08 +0000439{ \
James Hogana27660f2017-03-14 10:15:25 +0000440 return cop0->reg[(_reg)][(sel)]; \
441} \
442static inline void kvm_write_sw_gc0_##name(struct mips_coproc *cop0, \
443 __KVMT##type val) \
444{ \
445 cop0->reg[(_reg)][(sel)] = val; \
Sanjay Lal740765c2012-11-21 18:34:00 -0800446}
447
James Hogana27660f2017-03-14 10:15:25 +0000448/* Generate saved context bitwise modifiers */
449#define __BUILD_KVM_SET_SAVED(name, type, _reg, sel) \
450static inline void kvm_set_sw_gc0_##name(struct mips_coproc *cop0, \
451 __KVMT##type val) \
452{ \
453 cop0->reg[(_reg)][(sel)] |= val; \
454} \
455static inline void kvm_clear_sw_gc0_##name(struct mips_coproc *cop0, \
456 __KVMT##type val) \
457{ \
458 cop0->reg[(_reg)][(sel)] &= ~val; \
459} \
460static inline void kvm_change_sw_gc0_##name(struct mips_coproc *cop0, \
461 __KVMT##type mask, \
462 __KVMT##type val) \
463{ \
464 unsigned long _mask = mask; \
465 cop0->reg[(_reg)][(sel)] &= ~_mask; \
466 cop0->reg[(_reg)][(sel)] |= val & _mask; \
467}
468
469/* Generate saved context atomic bitwise modifiers */
470#define __BUILD_KVM_ATOMIC_SAVED(name, type, _reg, sel) \
471static inline void kvm_set_sw_gc0_##name(struct mips_coproc *cop0, \
472 __KVMT##type val) \
473{ \
474 _kvm_atomic_set_c0_guest_reg(&cop0->reg[(_reg)][(sel)], val); \
475} \
476static inline void kvm_clear_sw_gc0_##name(struct mips_coproc *cop0, \
477 __KVMT##type val) \
478{ \
479 _kvm_atomic_clear_c0_guest_reg(&cop0->reg[(_reg)][(sel)], val); \
480} \
481static inline void kvm_change_sw_gc0_##name(struct mips_coproc *cop0, \
482 __KVMT##type mask, \
483 __KVMT##type val) \
484{ \
485 _kvm_atomic_change_c0_guest_reg(&cop0->reg[(_reg)][(sel)], mask, \
486 val); \
487}
488
489/*
490 * __BUILD_KVM_$ops_VZ(): kvm_$op_vz_gc0_$reg()
491 * These operate on the VZ guest C0 context in hardware.
492 */
493
494/* Generate VZ guest context simple accessors */
495#define __BUILD_KVM_RW_VZ(name, type, _reg, sel) \
496static inline __KVMT##type kvm_read_vz_gc0_##name(struct mips_coproc *cop0) \
497{ \
498 return read_gc0_##name(); \
499} \
500static inline void kvm_write_vz_gc0_##name(struct mips_coproc *cop0, \
501 __KVMT##type val) \
502{ \
503 write_gc0_##name(val); \
504}
505
506/* Generate VZ guest context bitwise modifiers */
507#define __BUILD_KVM_SET_VZ(name, type, _reg, sel) \
508static inline void kvm_set_vz_gc0_##name(struct mips_coproc *cop0, \
509 __KVMT##type val) \
510{ \
511 set_gc0_##name(val); \
512} \
513static inline void kvm_clear_vz_gc0_##name(struct mips_coproc *cop0, \
514 __KVMT##type val) \
515{ \
516 clear_gc0_##name(val); \
517} \
518static inline void kvm_change_vz_gc0_##name(struct mips_coproc *cop0, \
519 __KVMT##type mask, \
520 __KVMT##type val) \
521{ \
522 change_gc0_##name(mask, val); \
523}
524
525/* Generate VZ guest context save/restore to/from saved context */
526#define __BUILD_KVM_SAVE_VZ(name, _reg, sel) \
527static inline void kvm_restore_gc0_##name(struct mips_coproc *cop0) \
528{ \
529 write_gc0_##name(cop0->reg[(_reg)][(sel)]); \
530} \
531static inline void kvm_save_gc0_##name(struct mips_coproc *cop0) \
532{ \
533 cop0->reg[(_reg)][(sel)] = read_gc0_##name(); \
534}
535
536/*
537 * __BUILD_KVM_$ops_WRAP(): kvm_$op_$name1() -> kvm_$op_$name2()
538 * These wrap a set of operations to provide them with a different name.
539 */
540
541/* Generate simple accessor wrapper */
542#define __BUILD_KVM_RW_WRAP(name1, name2, type) \
543static inline __KVMT##type kvm_read_##name1(struct mips_coproc *cop0) \
544{ \
545 return kvm_read_##name2(cop0); \
546} \
547static inline void kvm_write_##name1(struct mips_coproc *cop0, \
548 __KVMT##type val) \
549{ \
550 kvm_write_##name2(cop0, val); \
551}
552
553/* Generate bitwise modifier wrapper */
554#define __BUILD_KVM_SET_WRAP(name1, name2, type) \
555static inline void kvm_set_##name1(struct mips_coproc *cop0, \
556 __KVMT##type val) \
557{ \
558 kvm_set_##name2(cop0, val); \
559} \
560static inline void kvm_clear_##name1(struct mips_coproc *cop0, \
561 __KVMT##type val) \
562{ \
563 kvm_clear_##name2(cop0, val); \
564} \
565static inline void kvm_change_##name1(struct mips_coproc *cop0, \
566 __KVMT##type mask, \
567 __KVMT##type val) \
568{ \
569 kvm_change_##name2(cop0, mask, val); \
570}
571
572/*
573 * __BUILD_KVM_$ops_SW(): kvm_$op_c0_guest_$reg() -> kvm_$op_sw_gc0_$reg()
574 * These generate accessors operating on the saved context in RAM, and wrap them
575 * with the common guest C0 accessors (for use by common emulation code).
576 */
577
578#define __BUILD_KVM_RW_SW(name, type, _reg, sel) \
579 __BUILD_KVM_RW_SAVED(name, type, _reg, sel) \
580 __BUILD_KVM_RW_WRAP(c0_guest_##name, sw_gc0_##name, type)
581
582#define __BUILD_KVM_SET_SW(name, type, _reg, sel) \
583 __BUILD_KVM_SET_SAVED(name, type, _reg, sel) \
584 __BUILD_KVM_SET_WRAP(c0_guest_##name, sw_gc0_##name, type)
585
586#define __BUILD_KVM_ATOMIC_SW(name, type, _reg, sel) \
587 __BUILD_KVM_ATOMIC_SAVED(name, type, _reg, sel) \
588 __BUILD_KVM_SET_WRAP(c0_guest_##name, sw_gc0_##name, type)
589
James Hogana27660f2017-03-14 10:15:25 +0000590/*
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
James Hogana27660f2017-03-14 10:15:25 +0000622/*
623 * Define accessors for CP0 registers that are accessible to the guest. These
624 * are primarily used by common emulation code, which may need to access the
625 * registers differently depending on the implementation.
626 *
627 * fns_hw/sw name type reg num select
628 */
629__BUILD_KVM_RW_HW(index, 32, MIPS_CP0_TLB_INDEX, 0)
630__BUILD_KVM_RW_HW(entrylo0, l, MIPS_CP0_TLB_LO0, 0)
631__BUILD_KVM_RW_HW(entrylo1, l, MIPS_CP0_TLB_LO1, 0)
632__BUILD_KVM_RW_HW(context, l, MIPS_CP0_TLB_CONTEXT, 0)
James Hogandffe0422017-03-14 10:15:34 +0000633__BUILD_KVM_RW_HW(contextconfig, 32, MIPS_CP0_TLB_CONTEXT, 1)
James Hogana27660f2017-03-14 10:15:25 +0000634__BUILD_KVM_RW_HW(userlocal, l, MIPS_CP0_TLB_CONTEXT, 2)
James Hogandffe0422017-03-14 10:15:34 +0000635__BUILD_KVM_RW_HW(xcontextconfig, l, MIPS_CP0_TLB_CONTEXT, 3)
James Hogana27660f2017-03-14 10:15:25 +0000636__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)
James Hogan4b7de022017-03-14 10:15:35 +0000638__BUILD_KVM_RW_HW(segctl0, l, MIPS_CP0_TLB_PG_MASK, 2)
639__BUILD_KVM_RW_HW(segctl1, l, MIPS_CP0_TLB_PG_MASK, 3)
640__BUILD_KVM_RW_HW(segctl2, l, MIPS_CP0_TLB_PG_MASK, 4)
James Hogan5a2f3522017-03-14 10:15:36 +0000641__BUILD_KVM_RW_HW(pwbase, l, MIPS_CP0_TLB_PG_MASK, 5)
642__BUILD_KVM_RW_HW(pwfield, l, MIPS_CP0_TLB_PG_MASK, 6)
643__BUILD_KVM_RW_HW(pwsize, l, MIPS_CP0_TLB_PG_MASK, 7)
James Hogana27660f2017-03-14 10:15:25 +0000644__BUILD_KVM_RW_HW(wired, 32, MIPS_CP0_TLB_WIRED, 0)
James Hogan5a2f3522017-03-14 10:15:36 +0000645__BUILD_KVM_RW_HW(pwctl, 32, MIPS_CP0_TLB_WIRED, 6)
James Hogana27660f2017-03-14 10:15:25 +0000646__BUILD_KVM_RW_HW(hwrena, 32, MIPS_CP0_HWRENA, 0)
647__BUILD_KVM_RW_HW(badvaddr, l, MIPS_CP0_BAD_VADDR, 0)
James Hoganedc89262017-03-14 10:15:33 +0000648__BUILD_KVM_RW_HW(badinstr, 32, MIPS_CP0_BAD_VADDR, 1)
649__BUILD_KVM_RW_HW(badinstrp, 32, MIPS_CP0_BAD_VADDR, 2)
James Hogana27660f2017-03-14 10:15:25 +0000650__BUILD_KVM_RW_SW(count, 32, MIPS_CP0_COUNT, 0)
651__BUILD_KVM_RW_HW(entryhi, l, MIPS_CP0_TLB_HI, 0)
652__BUILD_KVM_RW_HW(compare, 32, MIPS_CP0_COMPARE, 0)
653__BUILD_KVM_RW_HW(status, 32, MIPS_CP0_STATUS, 0)
654__BUILD_KVM_RW_HW(intctl, 32, MIPS_CP0_STATUS, 1)
655__BUILD_KVM_RW_HW(cause, 32, MIPS_CP0_CAUSE, 0)
656__BUILD_KVM_RW_HW(epc, l, MIPS_CP0_EXC_PC, 0)
657__BUILD_KVM_RW_SW(prid, 32, MIPS_CP0_PRID, 0)
658__BUILD_KVM_RW_HW(ebase, l, MIPS_CP0_PRID, 1)
659__BUILD_KVM_RW_HW(config, 32, MIPS_CP0_CONFIG, 0)
660__BUILD_KVM_RW_HW(config1, 32, MIPS_CP0_CONFIG, 1)
661__BUILD_KVM_RW_HW(config2, 32, MIPS_CP0_CONFIG, 2)
662__BUILD_KVM_RW_HW(config3, 32, MIPS_CP0_CONFIG, 3)
663__BUILD_KVM_RW_HW(config4, 32, MIPS_CP0_CONFIG, 4)
664__BUILD_KVM_RW_HW(config5, 32, MIPS_CP0_CONFIG, 5)
665__BUILD_KVM_RW_HW(config6, 32, MIPS_CP0_CONFIG, 6)
666__BUILD_KVM_RW_HW(config7, 32, MIPS_CP0_CONFIG, 7)
James Hogand42a0082017-03-14 10:15:38 +0000667__BUILD_KVM_RW_SW(maari, l, MIPS_CP0_LLADDR, 2)
James Hoganc992a4f2017-03-14 10:15:31 +0000668__BUILD_KVM_RW_HW(xcontext, l, MIPS_CP0_TLB_XCONTEXT, 0)
James Hogana27660f2017-03-14 10:15:25 +0000669__BUILD_KVM_RW_HW(errorepc, l, MIPS_CP0_ERROR_PC, 0)
670__BUILD_KVM_RW_HW(kscratch1, l, MIPS_CP0_DESAVE, 2)
671__BUILD_KVM_RW_HW(kscratch2, l, MIPS_CP0_DESAVE, 3)
672__BUILD_KVM_RW_HW(kscratch3, l, MIPS_CP0_DESAVE, 4)
673__BUILD_KVM_RW_HW(kscratch4, l, MIPS_CP0_DESAVE, 5)
674__BUILD_KVM_RW_HW(kscratch5, l, MIPS_CP0_DESAVE, 6)
675__BUILD_KVM_RW_HW(kscratch6, l, MIPS_CP0_DESAVE, 7)
676
677/* Bitwise operations (on HW state) */
678__BUILD_KVM_SET_HW(status, 32, MIPS_CP0_STATUS, 0)
679/* Cause can be modified asynchronously from hardirq hrtimer callback */
680__BUILD_KVM_ATOMIC_HW(cause, 32, MIPS_CP0_CAUSE, 0)
681__BUILD_KVM_SET_HW(ebase, l, MIPS_CP0_PRID, 1)
682
James Hoganc992a4f2017-03-14 10:15:31 +0000683/* Bitwise operations (on saved state) */
684__BUILD_KVM_SET_SAVED(config, 32, MIPS_CP0_CONFIG, 0)
685__BUILD_KVM_SET_SAVED(config1, 32, MIPS_CP0_CONFIG, 1)
686__BUILD_KVM_SET_SAVED(config2, 32, MIPS_CP0_CONFIG, 2)
687__BUILD_KVM_SET_SAVED(config3, 32, MIPS_CP0_CONFIG, 3)
688__BUILD_KVM_SET_SAVED(config4, 32, MIPS_CP0_CONFIG, 4)
689__BUILD_KVM_SET_SAVED(config5, 32, MIPS_CP0_CONFIG, 5)
690
James Hogan98e91b82014-11-18 14:09:12 +0000691/* Helpers */
692
693static inline bool kvm_mips_guest_can_have_fpu(struct kvm_vcpu_arch *vcpu)
694{
James Hogan19451e52016-06-15 19:29:50 +0100695 return (!__builtin_constant_p(raw_cpu_has_fpu) || raw_cpu_has_fpu) &&
James Hogan98e91b82014-11-18 14:09:12 +0000696 vcpu->fpu_enabled;
697}
698
699static inline bool kvm_mips_guest_has_fpu(struct kvm_vcpu_arch *vcpu)
700{
701 return kvm_mips_guest_can_have_fpu(vcpu) &&
702 kvm_read_c0_guest_config1(vcpu->cop0) & MIPS_CONF1_FP;
703}
Sanjay Lal740765c2012-11-21 18:34:00 -0800704
James Hogan539cb89fb2015-03-05 11:43:36 +0000705static inline bool kvm_mips_guest_can_have_msa(struct kvm_vcpu_arch *vcpu)
706{
707 return (!__builtin_constant_p(cpu_has_msa) || cpu_has_msa) &&
708 vcpu->msa_enabled;
709}
710
711static inline bool kvm_mips_guest_has_msa(struct kvm_vcpu_arch *vcpu)
712{
713 return kvm_mips_guest_can_have_msa(vcpu) &&
714 kvm_read_c0_guest_config3(vcpu->cop0) & MIPS_CONF3_MSA;
715}
716
Sanjay Lal740765c2012-11-21 18:34:00 -0800717struct kvm_mips_callbacks {
James Hogan2dca3722014-05-29 10:16:40 +0100718 int (*handle_cop_unusable)(struct kvm_vcpu *vcpu);
719 int (*handle_tlb_mod)(struct kvm_vcpu *vcpu);
720 int (*handle_tlb_ld_miss)(struct kvm_vcpu *vcpu);
721 int (*handle_tlb_st_miss)(struct kvm_vcpu *vcpu);
722 int (*handle_addr_err_st)(struct kvm_vcpu *vcpu);
723 int (*handle_addr_err_ld)(struct kvm_vcpu *vcpu);
724 int (*handle_syscall)(struct kvm_vcpu *vcpu);
725 int (*handle_res_inst)(struct kvm_vcpu *vcpu);
726 int (*handle_break)(struct kvm_vcpu *vcpu);
James Hogan0a560422015-02-06 16:03:57 +0000727 int (*handle_trap)(struct kvm_vcpu *vcpu);
James Hoganc2537ed2015-02-06 10:56:27 +0000728 int (*handle_msa_fpe)(struct kvm_vcpu *vcpu);
James Hogan1c0cd662015-02-06 10:56:27 +0000729 int (*handle_fpe)(struct kvm_vcpu *vcpu);
James Hogan98119ad2015-02-06 11:11:56 +0000730 int (*handle_msa_disabled)(struct kvm_vcpu *vcpu);
James Hogan28c1e762017-03-14 10:15:24 +0000731 int (*handle_guest_exit)(struct kvm_vcpu *vcpu);
James Hoganedab4fe2017-03-14 10:15:23 +0000732 int (*hardware_enable)(void);
733 void (*hardware_disable)(void);
James Hogan607ef2f2017-03-14 10:15:22 +0000734 int (*check_extension)(struct kvm *kvm, long ext);
James Hogan2dca3722014-05-29 10:16:40 +0100735 int (*vcpu_init)(struct kvm_vcpu *vcpu);
James Hogan630766b32016-09-08 23:00:24 +0100736 void (*vcpu_uninit)(struct kvm_vcpu *vcpu);
James Hogan2dca3722014-05-29 10:16:40 +0100737 int (*vcpu_setup)(struct kvm_vcpu *vcpu);
Paolo Bonzini5194552f2021-03-31 09:38:16 +0200738 void (*prepare_flush_shadow)(struct kvm *kvm);
James Hogan2dca3722014-05-29 10:16:40 +0100739 gpa_t (*gva_to_gpa)(gva_t gva);
740 void (*queue_timer_int)(struct kvm_vcpu *vcpu);
741 void (*dequeue_timer_int)(struct kvm_vcpu *vcpu);
742 void (*queue_io_int)(struct kvm_vcpu *vcpu,
743 struct kvm_mips_interrupt *irq);
744 void (*dequeue_io_int)(struct kvm_vcpu *vcpu,
745 struct kvm_mips_interrupt *irq);
746 int (*irq_deliver)(struct kvm_vcpu *vcpu, unsigned int priority,
James Hoganbdb7ed82016-06-09 14:19:07 +0100747 u32 cause);
James Hogan2dca3722014-05-29 10:16:40 +0100748 int (*irq_clear)(struct kvm_vcpu *vcpu, unsigned int priority,
James Hoganbdb7ed82016-06-09 14:19:07 +0100749 u32 cause);
James Hoganf5c43bd2016-06-15 19:29:49 +0100750 unsigned long (*num_regs)(struct kvm_vcpu *vcpu);
751 int (*copy_reg_indices)(struct kvm_vcpu *vcpu, u64 __user *indices);
James Hoganf8be02d2014-05-29 10:16:29 +0100752 int (*get_one_reg)(struct kvm_vcpu *vcpu,
753 const struct kvm_one_reg *reg, s64 *v);
754 int (*set_one_reg)(struct kvm_vcpu *vcpu,
755 const struct kvm_one_reg *reg, s64 v);
James Hogana60b8432016-11-12 00:00:13 +0000756 int (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
757 int (*vcpu_put)(struct kvm_vcpu *vcpu, int cpu);
Tianjia Zhangc34b26b2020-06-23 21:14:17 +0800758 int (*vcpu_run)(struct kvm_vcpu *vcpu);
759 void (*vcpu_reenter)(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800760};
761extern struct kvm_mips_callbacks *kvm_mips_callbacks;
762int kvm_mips_emulation_init(struct kvm_mips_callbacks **install_callbacks);
763
764/* Debug: dump vcpu state */
765int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu);
766
Tianjia Zhang0b7aa582020-06-23 21:14:18 +0800767extern int kvm_mips_handle_exit(struct kvm_vcpu *vcpu);
James Hogan90e93112016-06-23 17:34:39 +0100768
769/* Building of entry/exception code */
James Hogan1e5217f52016-06-23 17:34:45 +0100770int kvm_mips_entry_setup(void);
James Hogan90e93112016-06-23 17:34:39 +0100771void *kvm_mips_build_vcpu_run(void *addr);
James Hogana7cfa7a2016-09-10 23:56:46 +0100772void *kvm_mips_build_tlb_refill_exception(void *addr, void *handler);
James Hogan1f9ca622016-06-23 17:34:46 +0100773void *kvm_mips_build_exception(void *addr, void *handler);
James Hogan90e93112016-06-23 17:34:39 +0100774void *kvm_mips_build_exit(void *addr);
Sanjay Lal740765c2012-11-21 18:34:00 -0800775
James Hogan539cb89fb2015-03-05 11:43:36 +0000776/* FPU/MSA context management */
James Hogan98e91b82014-11-18 14:09:12 +0000777void __kvm_save_fpu(struct kvm_vcpu_arch *vcpu);
778void __kvm_restore_fpu(struct kvm_vcpu_arch *vcpu);
779void __kvm_restore_fcsr(struct kvm_vcpu_arch *vcpu);
James Hogan539cb89fb2015-03-05 11:43:36 +0000780void __kvm_save_msa(struct kvm_vcpu_arch *vcpu);
781void __kvm_restore_msa(struct kvm_vcpu_arch *vcpu);
782void __kvm_restore_msa_upper(struct kvm_vcpu_arch *vcpu);
783void __kvm_restore_msacsr(struct kvm_vcpu_arch *vcpu);
James Hogan98e91b82014-11-18 14:09:12 +0000784void kvm_own_fpu(struct kvm_vcpu *vcpu);
James Hogan539cb89fb2015-03-05 11:43:36 +0000785void kvm_own_msa(struct kvm_vcpu *vcpu);
James Hogan98e91b82014-11-18 14:09:12 +0000786void kvm_drop_fpu(struct kvm_vcpu *vcpu);
787void kvm_lose_fpu(struct kvm_vcpu *vcpu);
788
Sanjay Lal740765c2012-11-21 18:34:00 -0800789/* TLB handling */
James Hoganc992a4f2017-03-14 10:15:31 +0000790int kvm_mips_handle_vz_root_tlb_fault(unsigned long badvaddr,
791 struct kvm_vcpu *vcpu, bool write_fault);
Sanjay Lal740765c2012-11-21 18:34:00 -0800792
James Hogan372582a2017-03-14 10:15:27 +0000793int kvm_vz_host_tlb_inv(struct kvm_vcpu *vcpu, unsigned long entryhi);
794int kvm_vz_guest_tlb_lookup(struct kvm_vcpu *vcpu, unsigned long gva,
795 unsigned long *gpa);
796void kvm_vz_local_flush_roottlb_all_guests(void);
797void kvm_vz_local_flush_guesttlb_all(void);
798void kvm_vz_save_guesttlb(struct kvm_mips_tlb *buf, unsigned int index,
799 unsigned int count);
800void kvm_vz_load_guesttlb(const struct kvm_mips_tlb *buf, unsigned int index,
801 unsigned int count);
Huacai Chen8a5097e2020-05-23 15:56:39 +0800802#ifdef CONFIG_CPU_LOONGSON64
803void kvm_loongson_clear_guest_vtlb(void);
804void kvm_loongson_clear_guest_ftlb(void);
805#endif
James Hogana7ebb2e2016-11-15 00:06:05 +0000806
James Hogana31b50d2016-12-16 15:57:00 +0000807/* MMU handling */
808
James Hogan06c158c2015-05-01 13:50:18 +0100809bool kvm_mips_flush_gpa_pt(struct kvm *kvm, gfn_t start_gfn, gfn_t end_gfn);
James Hoganf0c0c332016-12-06 14:47:47 +0000810int kvm_mips_mkclean_gpa_pt(struct kvm *kvm, gfn_t start_gfn, gfn_t end_gfn);
James Hogan06c158c2015-05-01 13:50:18 +0100811pgd_t *kvm_pgd_alloc(void);
James Hoganaba85922016-12-16 15:57:00 +0000812void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800813
James Hogan411740f2016-12-13 16:32:39 +0000814#define KVM_ARCH_WANT_MMU_NOTIFIER
James Hogan411740f2016-12-13 16:32:39 +0000815
Sanjay Lal740765c2012-11-21 18:34:00 -0800816/* Emulation */
James Hoganbdb7ed82016-06-09 14:19:07 +0100817enum emulation_result update_pc(struct kvm_vcpu *vcpu, u32 cause);
James Hogan6a97c772015-04-23 16:54:35 +0100818int kvm_get_badinstr(u32 *opc, struct kvm_vcpu *vcpu, u32 *out);
819int kvm_get_badinstrp(u32 *opc, struct kvm_vcpu *vcpu, u32 *out);
Sanjay Lal740765c2012-11-21 18:34:00 -0800820
James Hogana1ecc542016-11-28 18:39:24 +0000821/**
822 * kvm_is_ifetch_fault() - Find whether a TLBL exception is due to ifetch fault.
823 * @vcpu: Virtual CPU.
824 *
825 * Returns: Whether the TLBL exception was likely due to an instruction
826 * fetch fault rather than a data load fault.
827 */
828static inline bool kvm_is_ifetch_fault(struct kvm_vcpu_arch *vcpu)
829{
830 unsigned long badvaddr = vcpu->host_cp0_badvaddr;
831 unsigned long epc = msk_isa16_mode(vcpu->pc);
832 u32 cause = vcpu->host_cp0_cause;
833
834 if (epc == badvaddr)
835 return true;
836
837 /*
838 * Branches may be 32-bit or 16-bit instructions.
839 * This isn't exact, but we don't really support MIPS16 or microMIPS yet
840 * in KVM anyway.
841 */
842 if ((cause & CAUSEF_BD) && badvaddr - epc <= 4)
843 return true;
844
845 return false;
846}
847
Tianjia Zhangc34b26b2020-06-23 21:14:17 +0800848extern enum emulation_result kvm_mips_complete_mmio_load(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800849
James Hoganbdb7ed82016-06-09 14:19:07 +0100850u32 kvm_mips_read_count(struct kvm_vcpu *vcpu);
851void kvm_mips_write_count(struct kvm_vcpu *vcpu, u32 count);
852void kvm_mips_write_compare(struct kvm_vcpu *vcpu, u32 compare, bool ack);
James Hogana517c1a2017-03-14 10:15:21 +0000853void kvm_mips_init_count(struct kvm_vcpu *vcpu, unsigned long count_hz);
James Hoganf8239342014-05-29 10:16:37 +0100854int kvm_mips_set_count_ctl(struct kvm_vcpu *vcpu, s64 count_ctl);
855int kvm_mips_set_count_resume(struct kvm_vcpu *vcpu, s64 count_resume);
James Hoganf74a8e22014-05-29 10:16:38 +0100856int kvm_mips_set_count_hz(struct kvm_vcpu *vcpu, s64 count_hz);
James Hogane30492b2014-05-29 10:16:35 +0100857void kvm_mips_count_enable_cause(struct kvm_vcpu *vcpu);
858void kvm_mips_count_disable_cause(struct kvm_vcpu *vcpu);
859enum hrtimer_restart kvm_mips_count_timeout(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800860
James Hoganf4474d52017-03-14 10:15:39 +0000861/* fairly internal functions requiring some care to use */
862int kvm_mips_count_disabled(struct kvm_vcpu *vcpu);
863ktime_t kvm_mips_freeze_hrtimer(struct kvm_vcpu *vcpu, u32 *count);
864int kvm_mips_restore_hrtimer(struct kvm_vcpu *vcpu, ktime_t before,
865 u32 count, int min_drift);
866
James Hoganf4474d52017-03-14 10:15:39 +0000867void kvm_vz_acquire_htimer(struct kvm_vcpu *vcpu);
868void kvm_vz_lose_htimer(struct kvm_vcpu *vcpu);
James Hoganf4474d52017-03-14 10:15:39 +0000869
James Hogan258f3a22016-06-15 19:29:47 +0100870enum emulation_result kvm_mips_emulate_store(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100871 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800872 struct kvm_vcpu *vcpu);
James Hogan258f3a22016-06-15 19:29:47 +0100873enum emulation_result kvm_mips_emulate_load(union mips_instruction inst,
James Hoganbdb7ed82016-06-09 14:19:07 +0100874 u32 cause,
Sanjay Lal740765c2012-11-21 18:34:00 -0800875 struct kvm_vcpu *vcpu);
876
James Hoganc992a4f2017-03-14 10:15:31 +0000877/* COP0 */
878enum emulation_result kvm_mips_emul_wait(struct kvm_vcpu *vcpu);
879
James Hogan955d8dc2017-03-14 10:15:14 +0000880/* Hypercalls (hypcall.c) */
881
882enum emulation_result kvm_mips_emul_hypcall(struct kvm_vcpu *vcpu,
883 union mips_instruction inst);
884int kvm_mips_handle_hypcall(struct kvm_vcpu *vcpu);
885
Sanjay Lal740765c2012-11-21 18:34:00 -0800886/* Misc */
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700887extern void kvm_mips_dump_stats(struct kvm_vcpu *vcpu);
Sanjay Lal740765c2012-11-21 18:34:00 -0800888extern unsigned long kvm_mips_get_ramsize(struct kvm *kvm);
Huacai Chenf21db302020-05-23 15:56:37 +0800889extern int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
890 struct kvm_mips_interrupt *irq);
Sanjay Lal740765c2012-11-21 18:34:00 -0800891
Radim Krčmář0865e632014-08-28 15:13:02 +0200892static inline void kvm_arch_hardware_unsetup(void) {}
893static inline void kvm_arch_sync_events(struct kvm *kvm) {}
894static inline void kvm_arch_free_memslot(struct kvm *kvm,
Sean Christophersone96c81e2020-02-18 13:07:27 -0800895 struct kvm_memory_slot *slot) {}
Sean Christopherson15248252019-02-05 12:54:17 -0800896static inline void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen) {}
Radim Krčmář0865e632014-08-28 15:13:02 +0200897static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
Christoffer Dall3217f7c2015-08-27 16:41:15 +0200898static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
899static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200900static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
Sanjay Lal740765c2012-11-21 18:34:00 -0800901
Paolo Bonzini566a0be2021-04-02 11:44:56 +0200902#define __KVM_HAVE_ARCH_FLUSH_REMOTE_TLB
903int kvm_arch_flush_remote_tlb(struct kvm *kvm);
904
Sanjay Lal740765c2012-11-21 18:34:00 -0800905#endif /* __MIPS_KVM_HOST_H__ */