blob: 6eb52b9c98183b95134710c22187b1a6f0225ef9 [file] [log] [blame]
Sanjay Lale685c682012-11-21 18:34:04 -08001/*
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002 * 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 * KVM/MIPS: Instruction/Exception emulation
7 *
8 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
9 * Authors: Sanjay Lal <sanjayl@kymasys.com>
10 */
Sanjay Lale685c682012-11-21 18:34:04 -080011
12#include <linux/errno.h>
13#include <linux/err.h>
James Hogane30492b2014-05-29 10:16:35 +010014#include <linux/ktime.h>
Sanjay Lale685c682012-11-21 18:34:04 -080015#include <linux/kvm_host.h>
16#include <linux/module.h>
17#include <linux/vmalloc.h>
18#include <linux/fs.h>
19#include <linux/bootmem.h>
20#include <linux/random.h>
21#include <asm/page.h>
22#include <asm/cacheflush.h>
James Hoganf4956f62015-12-16 23:49:37 +000023#include <asm/cacheops.h>
Sanjay Lale685c682012-11-21 18:34:04 -080024#include <asm/cpu-info.h>
25#include <asm/mmu_context.h>
26#include <asm/tlbflush.h>
27#include <asm/inst.h>
28
29#undef CONFIG_MIPS_MT
30#include <asm/r4kcache.h>
31#define CONFIG_MIPS_MT
32
Deng-Cheng Zhud7d5b052014-06-26 12:11:38 -070033#include "interrupt.h"
34#include "commpage.h"
Sanjay Lale685c682012-11-21 18:34:04 -080035
36#include "trace.h"
37
38/*
39 * Compute the return address and do emulate branch simulation, if required.
40 * This function should be called only in branch delay slot active.
41 */
42unsigned long kvm_compute_return_epc(struct kvm_vcpu *vcpu,
43 unsigned long instpc)
44{
45 unsigned int dspcontrol;
46 union mips_instruction insn;
47 struct kvm_vcpu_arch *arch = &vcpu->arch;
48 long epc = instpc;
49 long nextpc = KVM_INVALID_INST;
50
51 if (epc & 3)
52 goto unaligned;
53
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070054 /* Read the instruction */
James Hogan8cffd192016-06-09 14:19:08 +010055 insn.word = kvm_get_inst((u32 *) epc, vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -080056
57 if (insn.word == KVM_INVALID_INST)
58 return KVM_INVALID_INST;
59
60 switch (insn.i_format.opcode) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -070061 /* jr and jalr are in r_format format. */
Sanjay Lale685c682012-11-21 18:34:04 -080062 case spec_op:
63 switch (insn.r_format.func) {
64 case jalr_op:
65 arch->gprs[insn.r_format.rd] = epc + 8;
66 /* Fall through */
67 case jr_op:
68 nextpc = arch->gprs[insn.r_format.rs];
69 break;
70 }
71 break;
72
73 /*
74 * This group contains:
75 * bltz_op, bgez_op, bltzl_op, bgezl_op,
76 * bltzal_op, bgezal_op, bltzall_op, bgezall_op.
77 */
78 case bcond_op:
79 switch (insn.i_format.rt) {
80 case bltz_op:
81 case bltzl_op:
82 if ((long)arch->gprs[insn.i_format.rs] < 0)
83 epc = epc + 4 + (insn.i_format.simmediate << 2);
84 else
85 epc += 8;
86 nextpc = epc;
87 break;
88
89 case bgez_op:
90 case bgezl_op:
91 if ((long)arch->gprs[insn.i_format.rs] >= 0)
92 epc = epc + 4 + (insn.i_format.simmediate << 2);
93 else
94 epc += 8;
95 nextpc = epc;
96 break;
97
98 case bltzal_op:
99 case bltzall_op:
100 arch->gprs[31] = epc + 8;
101 if ((long)arch->gprs[insn.i_format.rs] < 0)
102 epc = epc + 4 + (insn.i_format.simmediate << 2);
103 else
104 epc += 8;
105 nextpc = epc;
106 break;
107
108 case bgezal_op:
109 case bgezall_op:
110 arch->gprs[31] = epc + 8;
111 if ((long)arch->gprs[insn.i_format.rs] >= 0)
112 epc = epc + 4 + (insn.i_format.simmediate << 2);
113 else
114 epc += 8;
115 nextpc = epc;
116 break;
117 case bposge32_op:
118 if (!cpu_has_dsp)
119 goto sigill;
120
121 dspcontrol = rddsp(0x01);
122
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700123 if (dspcontrol >= 32)
Sanjay Lale685c682012-11-21 18:34:04 -0800124 epc = epc + 4 + (insn.i_format.simmediate << 2);
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700125 else
Sanjay Lale685c682012-11-21 18:34:04 -0800126 epc += 8;
127 nextpc = epc;
128 break;
129 }
130 break;
131
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700132 /* These are unconditional and in j_format. */
Sanjay Lale685c682012-11-21 18:34:04 -0800133 case jal_op:
134 arch->gprs[31] = instpc + 8;
135 case j_op:
136 epc += 4;
137 epc >>= 28;
138 epc <<= 28;
139 epc |= (insn.j_format.target << 2);
140 nextpc = epc;
141 break;
142
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700143 /* These are conditional and in i_format. */
Sanjay Lale685c682012-11-21 18:34:04 -0800144 case beq_op:
145 case beql_op:
146 if (arch->gprs[insn.i_format.rs] ==
147 arch->gprs[insn.i_format.rt])
148 epc = epc + 4 + (insn.i_format.simmediate << 2);
149 else
150 epc += 8;
151 nextpc = epc;
152 break;
153
154 case bne_op:
155 case bnel_op:
156 if (arch->gprs[insn.i_format.rs] !=
157 arch->gprs[insn.i_format.rt])
158 epc = epc + 4 + (insn.i_format.simmediate << 2);
159 else
160 epc += 8;
161 nextpc = epc;
162 break;
163
James Hogan2e0badf2016-07-04 19:35:12 +0100164 case blez_op: /* POP06 */
165#ifndef CONFIG_CPU_MIPSR6
166 case blezl_op: /* removed in R6 */
167#endif
168 if (insn.i_format.rt != 0)
169 goto compact_branch;
Sanjay Lale685c682012-11-21 18:34:04 -0800170 if ((long)arch->gprs[insn.i_format.rs] <= 0)
171 epc = epc + 4 + (insn.i_format.simmediate << 2);
172 else
173 epc += 8;
174 nextpc = epc;
175 break;
176
James Hogan2e0badf2016-07-04 19:35:12 +0100177 case bgtz_op: /* POP07 */
178#ifndef CONFIG_CPU_MIPSR6
179 case bgtzl_op: /* removed in R6 */
180#endif
181 if (insn.i_format.rt != 0)
182 goto compact_branch;
Sanjay Lale685c682012-11-21 18:34:04 -0800183 if ((long)arch->gprs[insn.i_format.rs] > 0)
184 epc = epc + 4 + (insn.i_format.simmediate << 2);
185 else
186 epc += 8;
187 nextpc = epc;
188 break;
189
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700190 /* And now the FPA/cp1 branch instructions. */
Sanjay Lale685c682012-11-21 18:34:04 -0800191 case cop1_op:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -0700192 kvm_err("%s: unsupported cop1_op\n", __func__);
Sanjay Lale685c682012-11-21 18:34:04 -0800193 break;
James Hogan2e0badf2016-07-04 19:35:12 +0100194
195#ifdef CONFIG_CPU_MIPSR6
196 /* R6 added the following compact branches with forbidden slots */
197 case blezl_op: /* POP26 */
198 case bgtzl_op: /* POP27 */
199 /* only rt == 0 isn't compact branch */
200 if (insn.i_format.rt != 0)
201 goto compact_branch;
202 break;
203 case pop10_op:
204 case pop30_op:
205 /* only rs == rt == 0 is reserved, rest are compact branches */
206 if (insn.i_format.rs != 0 || insn.i_format.rt != 0)
207 goto compact_branch;
208 break;
209 case pop66_op:
210 case pop76_op:
211 /* only rs == 0 isn't compact branch */
212 if (insn.i_format.rs != 0)
213 goto compact_branch;
214 break;
215compact_branch:
216 /*
217 * If we've hit an exception on the forbidden slot, then
218 * the branch must not have been taken.
219 */
220 epc += 8;
221 nextpc = epc;
222 break;
223#else
224compact_branch:
225 /* Compact branches not supported before R6 */
226 break;
227#endif
Sanjay Lale685c682012-11-21 18:34:04 -0800228 }
229
230 return nextpc;
231
232unaligned:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -0700233 kvm_err("%s: unaligned epc\n", __func__);
Sanjay Lale685c682012-11-21 18:34:04 -0800234 return nextpc;
235
236sigill:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -0700237 kvm_err("%s: DSP branch but not DSP ASE\n", __func__);
Sanjay Lale685c682012-11-21 18:34:04 -0800238 return nextpc;
239}
240
James Hoganbdb7ed82016-06-09 14:19:07 +0100241enum emulation_result update_pc(struct kvm_vcpu *vcpu, u32 cause)
Sanjay Lale685c682012-11-21 18:34:04 -0800242{
243 unsigned long branch_pc;
244 enum emulation_result er = EMULATE_DONE;
245
246 if (cause & CAUSEF_BD) {
247 branch_pc = kvm_compute_return_epc(vcpu, vcpu->arch.pc);
248 if (branch_pc == KVM_INVALID_INST) {
249 er = EMULATE_FAIL;
250 } else {
251 vcpu->arch.pc = branch_pc;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700252 kvm_debug("BD update_pc(): New PC: %#lx\n",
253 vcpu->arch.pc);
Sanjay Lale685c682012-11-21 18:34:04 -0800254 }
255 } else
256 vcpu->arch.pc += 4;
257
258 kvm_debug("update_pc(): New PC: %#lx\n", vcpu->arch.pc);
259
260 return er;
261}
262
James Hogane30492b2014-05-29 10:16:35 +0100263/**
264 * kvm_mips_count_disabled() - Find whether the CP0_Count timer is disabled.
265 * @vcpu: Virtual CPU.
Sanjay Lale685c682012-11-21 18:34:04 -0800266 *
James Hoganf8239342014-05-29 10:16:37 +0100267 * Returns: 1 if the CP0_Count timer is disabled by either the guest
268 * CP0_Cause.DC bit or the count_ctl.DC bit.
James Hogane30492b2014-05-29 10:16:35 +0100269 * 0 otherwise (in which case CP0_Count timer is running).
Sanjay Lale685c682012-11-21 18:34:04 -0800270 */
James Hogane30492b2014-05-29 10:16:35 +0100271static inline int kvm_mips_count_disabled(struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -0800272{
273 struct mips_coproc *cop0 = vcpu->arch.cop0;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700274
James Hoganf8239342014-05-29 10:16:37 +0100275 return (vcpu->arch.count_ctl & KVM_REG_MIPS_COUNT_CTL_DC) ||
276 (kvm_read_c0_guest_cause(cop0) & CAUSEF_DC);
James Hogane30492b2014-05-29 10:16:35 +0100277}
Sanjay Lale685c682012-11-21 18:34:04 -0800278
James Hogane30492b2014-05-29 10:16:35 +0100279/**
280 * kvm_mips_ktime_to_count() - Scale ktime_t to a 32-bit count.
281 *
282 * Caches the dynamic nanosecond bias in vcpu->arch.count_dyn_bias.
283 *
284 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is running).
285 */
James Hoganbdb7ed82016-06-09 14:19:07 +0100286static u32 kvm_mips_ktime_to_count(struct kvm_vcpu *vcpu, ktime_t now)
James Hogane30492b2014-05-29 10:16:35 +0100287{
288 s64 now_ns, periods;
289 u64 delta;
290
291 now_ns = ktime_to_ns(now);
292 delta = now_ns + vcpu->arch.count_dyn_bias;
293
294 if (delta >= vcpu->arch.count_period) {
295 /* If delta is out of safe range the bias needs adjusting */
296 periods = div64_s64(now_ns, vcpu->arch.count_period);
297 vcpu->arch.count_dyn_bias = -periods * vcpu->arch.count_period;
298 /* Recalculate delta with new bias */
299 delta = now_ns + vcpu->arch.count_dyn_bias;
Sanjay Lale685c682012-11-21 18:34:04 -0800300 }
301
James Hogane30492b2014-05-29 10:16:35 +0100302 /*
303 * We've ensured that:
304 * delta < count_period
305 *
306 * Therefore the intermediate delta*count_hz will never overflow since
307 * at the boundary condition:
308 * delta = count_period
309 * delta = NSEC_PER_SEC * 2^32 / count_hz
310 * delta * count_hz = NSEC_PER_SEC * 2^32
311 */
312 return div_u64(delta * vcpu->arch.count_hz, NSEC_PER_SEC);
313}
314
315/**
James Hoganf8239342014-05-29 10:16:37 +0100316 * kvm_mips_count_time() - Get effective current time.
317 * @vcpu: Virtual CPU.
318 *
319 * Get effective monotonic ktime. This is usually a straightforward ktime_get(),
320 * except when the master disable bit is set in count_ctl, in which case it is
321 * count_resume, i.e. the time that the count was disabled.
322 *
323 * Returns: Effective monotonic ktime for CP0_Count.
324 */
325static inline ktime_t kvm_mips_count_time(struct kvm_vcpu *vcpu)
326{
327 if (unlikely(vcpu->arch.count_ctl & KVM_REG_MIPS_COUNT_CTL_DC))
328 return vcpu->arch.count_resume;
329
330 return ktime_get();
331}
332
333/**
James Hogane30492b2014-05-29 10:16:35 +0100334 * kvm_mips_read_count_running() - Read the current count value as if running.
335 * @vcpu: Virtual CPU.
336 * @now: Kernel time to read CP0_Count at.
337 *
338 * Returns the current guest CP0_Count register at time @now and handles if the
339 * timer interrupt is pending and hasn't been handled yet.
340 *
341 * Returns: The current value of the guest CP0_Count register.
342 */
James Hoganbdb7ed82016-06-09 14:19:07 +0100343static u32 kvm_mips_read_count_running(struct kvm_vcpu *vcpu, ktime_t now)
James Hogane30492b2014-05-29 10:16:35 +0100344{
James Hogan4355c442016-04-22 10:38:45 +0100345 struct mips_coproc *cop0 = vcpu->arch.cop0;
346 ktime_t expires, threshold;
James Hogan8cffd192016-06-09 14:19:08 +0100347 u32 count, compare;
James Hogane30492b2014-05-29 10:16:35 +0100348 int running;
349
James Hogan4355c442016-04-22 10:38:45 +0100350 /* Calculate the biased and scaled guest CP0_Count */
351 count = vcpu->arch.count_bias + kvm_mips_ktime_to_count(vcpu, now);
352 compare = kvm_read_c0_guest_compare(cop0);
353
354 /*
355 * Find whether CP0_Count has reached the closest timer interrupt. If
356 * not, we shouldn't inject it.
357 */
James Hogan8cffd192016-06-09 14:19:08 +0100358 if ((s32)(count - compare) < 0)
James Hogan4355c442016-04-22 10:38:45 +0100359 return count;
360
361 /*
362 * The CP0_Count we're going to return has already reached the closest
363 * timer interrupt. Quickly check if it really is a new interrupt by
364 * looking at whether the interval until the hrtimer expiry time is
365 * less than 1/4 of the timer period.
366 */
James Hogane30492b2014-05-29 10:16:35 +0100367 expires = hrtimer_get_expires(&vcpu->arch.comparecount_timer);
James Hogan4355c442016-04-22 10:38:45 +0100368 threshold = ktime_add_ns(now, vcpu->arch.count_period / 4);
369 if (ktime_before(expires, threshold)) {
James Hogane30492b2014-05-29 10:16:35 +0100370 /*
371 * Cancel it while we handle it so there's no chance of
372 * interference with the timeout handler.
373 */
374 running = hrtimer_cancel(&vcpu->arch.comparecount_timer);
375
376 /* Nothing should be waiting on the timeout */
377 kvm_mips_callbacks->queue_timer_int(vcpu);
378
379 /*
380 * Restart the timer if it was running based on the expiry time
381 * we read, so that we don't push it back 2 periods.
382 */
383 if (running) {
384 expires = ktime_add_ns(expires,
385 vcpu->arch.count_period);
386 hrtimer_start(&vcpu->arch.comparecount_timer, expires,
387 HRTIMER_MODE_ABS);
388 }
389 }
390
James Hogan4355c442016-04-22 10:38:45 +0100391 return count;
James Hogane30492b2014-05-29 10:16:35 +0100392}
393
394/**
395 * kvm_mips_read_count() - Read the current count value.
396 * @vcpu: Virtual CPU.
397 *
398 * Read the current guest CP0_Count value, taking into account whether the timer
399 * is stopped.
400 *
401 * Returns: The current guest CP0_Count value.
402 */
James Hoganbdb7ed82016-06-09 14:19:07 +0100403u32 kvm_mips_read_count(struct kvm_vcpu *vcpu)
James Hogane30492b2014-05-29 10:16:35 +0100404{
405 struct mips_coproc *cop0 = vcpu->arch.cop0;
406
407 /* If count disabled just read static copy of count */
408 if (kvm_mips_count_disabled(vcpu))
409 return kvm_read_c0_guest_count(cop0);
410
411 return kvm_mips_read_count_running(vcpu, ktime_get());
412}
413
414/**
415 * kvm_mips_freeze_hrtimer() - Safely stop the hrtimer.
416 * @vcpu: Virtual CPU.
417 * @count: Output pointer for CP0_Count value at point of freeze.
418 *
419 * Freeze the hrtimer safely and return both the ktime and the CP0_Count value
420 * at the point it was frozen. It is guaranteed that any pending interrupts at
421 * the point it was frozen are handled, and none after that point.
422 *
423 * This is useful where the time/CP0_Count is needed in the calculation of the
424 * new parameters.
425 *
426 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is running).
427 *
428 * Returns: The ktime at the point of freeze.
429 */
James Hoganbdb7ed82016-06-09 14:19:07 +0100430static ktime_t kvm_mips_freeze_hrtimer(struct kvm_vcpu *vcpu, u32 *count)
James Hogane30492b2014-05-29 10:16:35 +0100431{
432 ktime_t now;
433
434 /* stop hrtimer before finding time */
435 hrtimer_cancel(&vcpu->arch.comparecount_timer);
436 now = ktime_get();
437
438 /* find count at this point and handle pending hrtimer */
439 *count = kvm_mips_read_count_running(vcpu, now);
440
441 return now;
442}
443
James Hogane30492b2014-05-29 10:16:35 +0100444/**
445 * kvm_mips_resume_hrtimer() - Resume hrtimer, updating expiry.
446 * @vcpu: Virtual CPU.
447 * @now: ktime at point of resume.
448 * @count: CP0_Count at point of resume.
449 *
450 * Resumes the timer and updates the timer expiry based on @now and @count.
451 * This can be used in conjunction with kvm_mips_freeze_timer() when timer
452 * parameters need to be changed.
453 *
454 * It is guaranteed that a timer interrupt immediately after resume will be
455 * handled, but not if CP_Compare is exactly at @count. That case is already
456 * handled by kvm_mips_freeze_timer().
457 *
458 * Assumes !kvm_mips_count_disabled(@vcpu) (guest CP0_Count timer is running).
459 */
460static void kvm_mips_resume_hrtimer(struct kvm_vcpu *vcpu,
James Hoganbdb7ed82016-06-09 14:19:07 +0100461 ktime_t now, u32 count)
James Hogane30492b2014-05-29 10:16:35 +0100462{
463 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan8cffd192016-06-09 14:19:08 +0100464 u32 compare;
James Hogane30492b2014-05-29 10:16:35 +0100465 u64 delta;
466 ktime_t expire;
467
468 /* Calculate timeout (wrap 0 to 2^32) */
469 compare = kvm_read_c0_guest_compare(cop0);
James Hogan8cffd192016-06-09 14:19:08 +0100470 delta = (u64)(u32)(compare - count - 1) + 1;
James Hogane30492b2014-05-29 10:16:35 +0100471 delta = div_u64(delta * NSEC_PER_SEC, vcpu->arch.count_hz);
472 expire = ktime_add_ns(now, delta);
473
474 /* Update hrtimer to use new timeout */
475 hrtimer_cancel(&vcpu->arch.comparecount_timer);
476 hrtimer_start(&vcpu->arch.comparecount_timer, expire, HRTIMER_MODE_ABS);
477}
478
479/**
James Hogane30492b2014-05-29 10:16:35 +0100480 * kvm_mips_write_count() - Modify the count and update timer.
481 * @vcpu: Virtual CPU.
482 * @count: Guest CP0_Count value to set.
483 *
484 * Sets the CP0_Count value and updates the timer accordingly.
485 */
James Hoganbdb7ed82016-06-09 14:19:07 +0100486void kvm_mips_write_count(struct kvm_vcpu *vcpu, u32 count)
James Hogane30492b2014-05-29 10:16:35 +0100487{
488 struct mips_coproc *cop0 = vcpu->arch.cop0;
489 ktime_t now;
490
491 /* Calculate bias */
James Hoganf8239342014-05-29 10:16:37 +0100492 now = kvm_mips_count_time(vcpu);
James Hogane30492b2014-05-29 10:16:35 +0100493 vcpu->arch.count_bias = count - kvm_mips_ktime_to_count(vcpu, now);
494
495 if (kvm_mips_count_disabled(vcpu))
496 /* The timer's disabled, adjust the static count */
497 kvm_write_c0_guest_count(cop0, count);
498 else
499 /* Update timeout */
500 kvm_mips_resume_hrtimer(vcpu, now, count);
501}
502
503/**
504 * kvm_mips_init_count() - Initialise timer.
505 * @vcpu: Virtual CPU.
506 *
507 * Initialise the timer to a sensible frequency, namely 100MHz, zero it, and set
508 * it going if it's enabled.
509 */
510void kvm_mips_init_count(struct kvm_vcpu *vcpu)
511{
512 /* 100 MHz */
513 vcpu->arch.count_hz = 100*1000*1000;
514 vcpu->arch.count_period = div_u64((u64)NSEC_PER_SEC << 32,
515 vcpu->arch.count_hz);
516 vcpu->arch.count_dyn_bias = 0;
517
518 /* Starting at 0 */
519 kvm_mips_write_count(vcpu, 0);
520}
521
522/**
James Hoganf74a8e22014-05-29 10:16:38 +0100523 * kvm_mips_set_count_hz() - Update the frequency of the timer.
524 * @vcpu: Virtual CPU.
525 * @count_hz: Frequency of CP0_Count timer in Hz.
526 *
527 * Change the frequency of the CP0_Count timer. This is done atomically so that
528 * CP0_Count is continuous and no timer interrupt is lost.
529 *
530 * Returns: -EINVAL if @count_hz is out of range.
531 * 0 on success.
532 */
533int kvm_mips_set_count_hz(struct kvm_vcpu *vcpu, s64 count_hz)
534{
535 struct mips_coproc *cop0 = vcpu->arch.cop0;
536 int dc;
537 ktime_t now;
538 u32 count;
539
540 /* ensure the frequency is in a sensible range... */
541 if (count_hz <= 0 || count_hz > NSEC_PER_SEC)
542 return -EINVAL;
543 /* ... and has actually changed */
544 if (vcpu->arch.count_hz == count_hz)
545 return 0;
546
547 /* Safely freeze timer so we can keep it continuous */
548 dc = kvm_mips_count_disabled(vcpu);
549 if (dc) {
550 now = kvm_mips_count_time(vcpu);
551 count = kvm_read_c0_guest_count(cop0);
552 } else {
553 now = kvm_mips_freeze_hrtimer(vcpu, &count);
554 }
555
556 /* Update the frequency */
557 vcpu->arch.count_hz = count_hz;
558 vcpu->arch.count_period = div_u64((u64)NSEC_PER_SEC << 32, count_hz);
559 vcpu->arch.count_dyn_bias = 0;
560
561 /* Calculate adjusted bias so dynamic count is unchanged */
562 vcpu->arch.count_bias = count - kvm_mips_ktime_to_count(vcpu, now);
563
564 /* Update and resume hrtimer */
565 if (!dc)
566 kvm_mips_resume_hrtimer(vcpu, now, count);
567 return 0;
568}
569
570/**
James Hogane30492b2014-05-29 10:16:35 +0100571 * kvm_mips_write_compare() - Modify compare and update timer.
572 * @vcpu: Virtual CPU.
573 * @compare: New CP0_Compare value.
James Hoganb45bacd2016-04-22 10:38:46 +0100574 * @ack: Whether to acknowledge timer interrupt.
James Hogane30492b2014-05-29 10:16:35 +0100575 *
576 * Update CP0_Compare to a new value and update the timeout.
James Hoganb45bacd2016-04-22 10:38:46 +0100577 * If @ack, atomically acknowledge any pending timer interrupt, otherwise ensure
578 * any pending timer interrupt is preserved.
James Hogane30492b2014-05-29 10:16:35 +0100579 */
James Hoganbdb7ed82016-06-09 14:19:07 +0100580void kvm_mips_write_compare(struct kvm_vcpu *vcpu, u32 compare, bool ack)
James Hogane30492b2014-05-29 10:16:35 +0100581{
582 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hoganb45bacd2016-04-22 10:38:46 +0100583 int dc;
584 u32 old_compare = kvm_read_c0_guest_compare(cop0);
585 ktime_t now;
James Hogan8cffd192016-06-09 14:19:08 +0100586 u32 count;
James Hogane30492b2014-05-29 10:16:35 +0100587
588 /* if unchanged, must just be an ack */
James Hoganb45bacd2016-04-22 10:38:46 +0100589 if (old_compare == compare) {
590 if (!ack)
591 return;
592 kvm_mips_callbacks->dequeue_timer_int(vcpu);
593 kvm_write_c0_guest_compare(cop0, compare);
James Hogane30492b2014-05-29 10:16:35 +0100594 return;
James Hoganb45bacd2016-04-22 10:38:46 +0100595 }
James Hogane30492b2014-05-29 10:16:35 +0100596
James Hoganb45bacd2016-04-22 10:38:46 +0100597 /* freeze_hrtimer() takes care of timer interrupts <= count */
598 dc = kvm_mips_count_disabled(vcpu);
599 if (!dc)
600 now = kvm_mips_freeze_hrtimer(vcpu, &count);
601
602 if (ack)
603 kvm_mips_callbacks->dequeue_timer_int(vcpu);
604
James Hogane30492b2014-05-29 10:16:35 +0100605 kvm_write_c0_guest_compare(cop0, compare);
606
James Hoganb45bacd2016-04-22 10:38:46 +0100607 /* resume_hrtimer() takes care of timer interrupts > count */
608 if (!dc)
609 kvm_mips_resume_hrtimer(vcpu, now, count);
James Hogane30492b2014-05-29 10:16:35 +0100610}
611
612/**
613 * kvm_mips_count_disable() - Disable count.
614 * @vcpu: Virtual CPU.
615 *
616 * Disable the CP0_Count timer. A timer interrupt on or before the final stop
617 * time will be handled but not after.
618 *
James Hoganf8239342014-05-29 10:16:37 +0100619 * Assumes CP0_Count was previously enabled but now Guest.CP0_Cause.DC or
620 * count_ctl.DC has been set (count disabled).
James Hogane30492b2014-05-29 10:16:35 +0100621 *
622 * Returns: The time that the timer was stopped.
623 */
624static ktime_t kvm_mips_count_disable(struct kvm_vcpu *vcpu)
625{
626 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan8cffd192016-06-09 14:19:08 +0100627 u32 count;
James Hogane30492b2014-05-29 10:16:35 +0100628 ktime_t now;
629
630 /* Stop hrtimer */
631 hrtimer_cancel(&vcpu->arch.comparecount_timer);
632
633 /* Set the static count from the dynamic count, handling pending TI */
634 now = ktime_get();
635 count = kvm_mips_read_count_running(vcpu, now);
636 kvm_write_c0_guest_count(cop0, count);
637
638 return now;
639}
640
641/**
642 * kvm_mips_count_disable_cause() - Disable count using CP0_Cause.DC.
643 * @vcpu: Virtual CPU.
644 *
645 * Disable the CP0_Count timer and set CP0_Cause.DC. A timer interrupt on or
James Hoganf8239342014-05-29 10:16:37 +0100646 * before the final stop time will be handled if the timer isn't disabled by
647 * count_ctl.DC, but not after.
James Hogane30492b2014-05-29 10:16:35 +0100648 *
649 * Assumes CP0_Cause.DC is clear (count enabled).
650 */
651void kvm_mips_count_disable_cause(struct kvm_vcpu *vcpu)
652{
653 struct mips_coproc *cop0 = vcpu->arch.cop0;
654
655 kvm_set_c0_guest_cause(cop0, CAUSEF_DC);
James Hoganf8239342014-05-29 10:16:37 +0100656 if (!(vcpu->arch.count_ctl & KVM_REG_MIPS_COUNT_CTL_DC))
657 kvm_mips_count_disable(vcpu);
James Hogane30492b2014-05-29 10:16:35 +0100658}
659
660/**
661 * kvm_mips_count_enable_cause() - Enable count using CP0_Cause.DC.
662 * @vcpu: Virtual CPU.
663 *
664 * Enable the CP0_Count timer and clear CP0_Cause.DC. A timer interrupt after
James Hoganf8239342014-05-29 10:16:37 +0100665 * the start time will be handled if the timer isn't disabled by count_ctl.DC,
666 * potentially before even returning, so the caller should be careful with
667 * ordering of CP0_Cause modifications so as not to lose it.
James Hogane30492b2014-05-29 10:16:35 +0100668 *
669 * Assumes CP0_Cause.DC is set (count disabled).
670 */
671void kvm_mips_count_enable_cause(struct kvm_vcpu *vcpu)
672{
673 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan8cffd192016-06-09 14:19:08 +0100674 u32 count;
James Hogane30492b2014-05-29 10:16:35 +0100675
676 kvm_clear_c0_guest_cause(cop0, CAUSEF_DC);
677
678 /*
679 * Set the dynamic count to match the static count.
James Hoganf8239342014-05-29 10:16:37 +0100680 * This starts the hrtimer if count_ctl.DC allows it.
681 * Otherwise it conveniently updates the biases.
James Hogane30492b2014-05-29 10:16:35 +0100682 */
683 count = kvm_read_c0_guest_count(cop0);
684 kvm_mips_write_count(vcpu, count);
685}
686
687/**
James Hoganf8239342014-05-29 10:16:37 +0100688 * kvm_mips_set_count_ctl() - Update the count control KVM register.
689 * @vcpu: Virtual CPU.
690 * @count_ctl: Count control register new value.
691 *
692 * Set the count control KVM register. The timer is updated accordingly.
693 *
694 * Returns: -EINVAL if reserved bits are set.
695 * 0 on success.
696 */
697int kvm_mips_set_count_ctl(struct kvm_vcpu *vcpu, s64 count_ctl)
698{
699 struct mips_coproc *cop0 = vcpu->arch.cop0;
700 s64 changed = count_ctl ^ vcpu->arch.count_ctl;
701 s64 delta;
702 ktime_t expire, now;
James Hogan8cffd192016-06-09 14:19:08 +0100703 u32 count, compare;
James Hoganf8239342014-05-29 10:16:37 +0100704
705 /* Only allow defined bits to be changed */
706 if (changed & ~(s64)(KVM_REG_MIPS_COUNT_CTL_DC))
707 return -EINVAL;
708
709 /* Apply new value */
710 vcpu->arch.count_ctl = count_ctl;
711
712 /* Master CP0_Count disable */
713 if (changed & KVM_REG_MIPS_COUNT_CTL_DC) {
714 /* Is CP0_Cause.DC already disabling CP0_Count? */
715 if (kvm_read_c0_guest_cause(cop0) & CAUSEF_DC) {
716 if (count_ctl & KVM_REG_MIPS_COUNT_CTL_DC)
717 /* Just record the current time */
718 vcpu->arch.count_resume = ktime_get();
719 } else if (count_ctl & KVM_REG_MIPS_COUNT_CTL_DC) {
720 /* disable timer and record current time */
721 vcpu->arch.count_resume = kvm_mips_count_disable(vcpu);
722 } else {
723 /*
724 * Calculate timeout relative to static count at resume
725 * time (wrap 0 to 2^32).
726 */
727 count = kvm_read_c0_guest_count(cop0);
728 compare = kvm_read_c0_guest_compare(cop0);
James Hogan8cffd192016-06-09 14:19:08 +0100729 delta = (u64)(u32)(compare - count - 1) + 1;
James Hoganf8239342014-05-29 10:16:37 +0100730 delta = div_u64(delta * NSEC_PER_SEC,
731 vcpu->arch.count_hz);
732 expire = ktime_add_ns(vcpu->arch.count_resume, delta);
733
734 /* Handle pending interrupt */
735 now = ktime_get();
736 if (ktime_compare(now, expire) >= 0)
737 /* Nothing should be waiting on the timeout */
738 kvm_mips_callbacks->queue_timer_int(vcpu);
739
740 /* Resume hrtimer without changing bias */
741 count = kvm_mips_read_count_running(vcpu, now);
742 kvm_mips_resume_hrtimer(vcpu, now, count);
743 }
744 }
745
746 return 0;
747}
748
749/**
750 * kvm_mips_set_count_resume() - Update the count resume KVM register.
751 * @vcpu: Virtual CPU.
752 * @count_resume: Count resume register new value.
753 *
754 * Set the count resume KVM register.
755 *
756 * Returns: -EINVAL if out of valid range (0..now).
757 * 0 on success.
758 */
759int kvm_mips_set_count_resume(struct kvm_vcpu *vcpu, s64 count_resume)
760{
761 /*
762 * It doesn't make sense for the resume time to be in the future, as it
763 * would be possible for the next interrupt to be more than a full
764 * period in the future.
765 */
766 if (count_resume < 0 || count_resume > ktime_to_ns(ktime_get()))
767 return -EINVAL;
768
769 vcpu->arch.count_resume = ns_to_ktime(count_resume);
770 return 0;
771}
772
773/**
James Hogane30492b2014-05-29 10:16:35 +0100774 * kvm_mips_count_timeout() - Push timer forward on timeout.
775 * @vcpu: Virtual CPU.
776 *
777 * Handle an hrtimer event by push the hrtimer forward a period.
778 *
779 * Returns: The hrtimer_restart value to return to the hrtimer subsystem.
780 */
781enum hrtimer_restart kvm_mips_count_timeout(struct kvm_vcpu *vcpu)
782{
783 /* Add the Count period to the current expiry time */
784 hrtimer_add_expires_ns(&vcpu->arch.comparecount_timer,
785 vcpu->arch.count_period);
786 return HRTIMER_RESTART;
Sanjay Lale685c682012-11-21 18:34:04 -0800787}
788
789enum emulation_result kvm_mips_emul_eret(struct kvm_vcpu *vcpu)
790{
791 struct mips_coproc *cop0 = vcpu->arch.cop0;
792 enum emulation_result er = EMULATE_DONE;
793
794 if (kvm_read_c0_guest_status(cop0) & ST0_EXL) {
795 kvm_debug("[%#lx] ERET to %#lx\n", vcpu->arch.pc,
796 kvm_read_c0_guest_epc(cop0));
797 kvm_clear_c0_guest_status(cop0, ST0_EXL);
798 vcpu->arch.pc = kvm_read_c0_guest_epc(cop0);
799
800 } else if (kvm_read_c0_guest_status(cop0) & ST0_ERL) {
801 kvm_clear_c0_guest_status(cop0, ST0_ERL);
802 vcpu->arch.pc = kvm_read_c0_guest_errorepc(cop0);
803 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -0700804 kvm_err("[%#lx] ERET when MIPS_SR_EXL|MIPS_SR_ERL == 0\n",
805 vcpu->arch.pc);
Sanjay Lale685c682012-11-21 18:34:04 -0800806 er = EMULATE_FAIL;
807 }
808
809 return er;
810}
811
812enum emulation_result kvm_mips_emul_wait(struct kvm_vcpu *vcpu)
813{
Sanjay Lale685c682012-11-21 18:34:04 -0800814 kvm_debug("[%#lx] !!!WAIT!!! (%#lx)\n", vcpu->arch.pc,
815 vcpu->arch.pending_exceptions);
816
817 ++vcpu->stat.wait_exits;
James Hogan1e09e862016-06-14 09:40:12 +0100818 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_WAIT);
Sanjay Lale685c682012-11-21 18:34:04 -0800819 if (!vcpu->arch.pending_exceptions) {
820 vcpu->arch.wait = 1;
821 kvm_vcpu_block(vcpu);
822
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700823 /*
824 * We we are runnable, then definitely go off to user space to
825 * check if any I/O interrupts are pending.
Sanjay Lale685c682012-11-21 18:34:04 -0800826 */
827 if (kvm_check_request(KVM_REQ_UNHALT, vcpu)) {
828 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
829 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
830 }
831 }
832
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700833 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -0800834}
835
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700836/*
837 * XXXKYMA: Linux doesn't seem to use TLBR, return EMULATE_FAIL for now so that
838 * we can catch this, if things ever change
Sanjay Lale685c682012-11-21 18:34:04 -0800839 */
840enum emulation_result kvm_mips_emul_tlbr(struct kvm_vcpu *vcpu)
841{
842 struct mips_coproc *cop0 = vcpu->arch.cop0;
James Hogan8cffd192016-06-09 14:19:08 +0100843 unsigned long pc = vcpu->arch.pc;
Sanjay Lale685c682012-11-21 18:34:04 -0800844
James Hogan8cffd192016-06-09 14:19:08 +0100845 kvm_err("[%#lx] COP0_TLBR [%ld]\n", pc, kvm_read_c0_guest_index(cop0));
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700846 return EMULATE_FAIL;
Sanjay Lale685c682012-11-21 18:34:04 -0800847}
848
849/* Write Guest TLB Entry @ Index */
850enum emulation_result kvm_mips_emul_tlbwi(struct kvm_vcpu *vcpu)
851{
852 struct mips_coproc *cop0 = vcpu->arch.cop0;
853 int index = kvm_read_c0_guest_index(cop0);
Sanjay Lale685c682012-11-21 18:34:04 -0800854 struct kvm_mips_tlb *tlb = NULL;
James Hogan8cffd192016-06-09 14:19:08 +0100855 unsigned long pc = vcpu->arch.pc;
Sanjay Lale685c682012-11-21 18:34:04 -0800856
857 if (index < 0 || index >= KVM_MIPS_GUEST_TLB_SIZE) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -0700858 kvm_debug("%s: illegal index: %d\n", __func__, index);
James Hogan8cffd192016-06-09 14:19:08 +0100859 kvm_debug("[%#lx] COP0_TLBWI [%d] (entryhi: %#lx, entrylo0: %#lx entrylo1: %#lx, mask: %#lx)\n",
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -0700860 pc, index, kvm_read_c0_guest_entryhi(cop0),
861 kvm_read_c0_guest_entrylo0(cop0),
862 kvm_read_c0_guest_entrylo1(cop0),
863 kvm_read_c0_guest_pagemask(cop0));
Sanjay Lale685c682012-11-21 18:34:04 -0800864 index = (index & ~0x80000000) % KVM_MIPS_GUEST_TLB_SIZE;
865 }
866
867 tlb = &vcpu->arch.guest_tlb[index];
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700868 /*
869 * Probe the shadow host TLB for the entry being overwritten, if one
870 * matches, invalidate it
871 */
Sanjay Lale685c682012-11-21 18:34:04 -0800872 kvm_mips_host_tlb_inv(vcpu, tlb->tlb_hi);
Sanjay Lale685c682012-11-21 18:34:04 -0800873
874 tlb->tlb_mask = kvm_read_c0_guest_pagemask(cop0);
875 tlb->tlb_hi = kvm_read_c0_guest_entryhi(cop0);
James Hogan9fbfb062016-06-09 14:19:17 +0100876 tlb->tlb_lo[0] = kvm_read_c0_guest_entrylo0(cop0);
877 tlb->tlb_lo[1] = kvm_read_c0_guest_entrylo1(cop0);
Sanjay Lale685c682012-11-21 18:34:04 -0800878
James Hogan8cffd192016-06-09 14:19:08 +0100879 kvm_debug("[%#lx] COP0_TLBWI [%d] (entryhi: %#lx, entrylo0: %#lx entrylo1: %#lx, mask: %#lx)\n",
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700880 pc, index, kvm_read_c0_guest_entryhi(cop0),
881 kvm_read_c0_guest_entrylo0(cop0),
882 kvm_read_c0_guest_entrylo1(cop0),
883 kvm_read_c0_guest_pagemask(cop0));
Sanjay Lale685c682012-11-21 18:34:04 -0800884
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700885 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -0800886}
887
888/* Write Guest TLB Entry @ Random Index */
889enum emulation_result kvm_mips_emul_tlbwr(struct kvm_vcpu *vcpu)
890{
891 struct mips_coproc *cop0 = vcpu->arch.cop0;
Sanjay Lale685c682012-11-21 18:34:04 -0800892 struct kvm_mips_tlb *tlb = NULL;
James Hogan8cffd192016-06-09 14:19:08 +0100893 unsigned long pc = vcpu->arch.pc;
Sanjay Lale685c682012-11-21 18:34:04 -0800894 int index;
895
Sanjay Lale685c682012-11-21 18:34:04 -0800896 get_random_bytes(&index, sizeof(index));
897 index &= (KVM_MIPS_GUEST_TLB_SIZE - 1);
Sanjay Lale685c682012-11-21 18:34:04 -0800898
Sanjay Lale685c682012-11-21 18:34:04 -0800899 tlb = &vcpu->arch.guest_tlb[index];
900
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700901 /*
902 * Probe the shadow host TLB for the entry being overwritten, if one
903 * matches, invalidate it
904 */
Sanjay Lale685c682012-11-21 18:34:04 -0800905 kvm_mips_host_tlb_inv(vcpu, tlb->tlb_hi);
Sanjay Lale685c682012-11-21 18:34:04 -0800906
907 tlb->tlb_mask = kvm_read_c0_guest_pagemask(cop0);
908 tlb->tlb_hi = kvm_read_c0_guest_entryhi(cop0);
James Hogan9fbfb062016-06-09 14:19:17 +0100909 tlb->tlb_lo[0] = kvm_read_c0_guest_entrylo0(cop0);
910 tlb->tlb_lo[1] = kvm_read_c0_guest_entrylo1(cop0);
Sanjay Lale685c682012-11-21 18:34:04 -0800911
James Hogan8cffd192016-06-09 14:19:08 +0100912 kvm_debug("[%#lx] COP0_TLBWR[%d] (entryhi: %#lx, entrylo0: %#lx entrylo1: %#lx)\n",
Deng-Cheng Zhud116e812014-06-26 12:11:34 -0700913 pc, index, kvm_read_c0_guest_entryhi(cop0),
914 kvm_read_c0_guest_entrylo0(cop0),
915 kvm_read_c0_guest_entrylo1(cop0));
Sanjay Lale685c682012-11-21 18:34:04 -0800916
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700917 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -0800918}
919
920enum emulation_result kvm_mips_emul_tlbp(struct kvm_vcpu *vcpu)
921{
922 struct mips_coproc *cop0 = vcpu->arch.cop0;
923 long entryhi = kvm_read_c0_guest_entryhi(cop0);
James Hogan8cffd192016-06-09 14:19:08 +0100924 unsigned long pc = vcpu->arch.pc;
Sanjay Lale685c682012-11-21 18:34:04 -0800925 int index = -1;
926
927 index = kvm_mips_guest_tlb_lookup(vcpu, entryhi);
928
929 kvm_write_c0_guest_index(cop0, index);
930
James Hogan8cffd192016-06-09 14:19:08 +0100931 kvm_debug("[%#lx] COP0_TLBP (entryhi: %#lx), index: %d\n", pc, entryhi,
Sanjay Lale685c682012-11-21 18:34:04 -0800932 index);
933
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -0700934 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -0800935}
936
James Hoganc7716072014-06-26 15:11:29 +0100937/**
938 * kvm_mips_config1_wrmask() - Find mask of writable bits in guest Config1
939 * @vcpu: Virtual CPU.
940 *
941 * Finds the mask of bits which are writable in the guest's Config1 CP0
942 * register, by userland (currently read-only to the guest).
943 */
944unsigned int kvm_mips_config1_wrmask(struct kvm_vcpu *vcpu)
945{
James Hogan6cdc65e2015-02-03 13:59:38 +0000946 unsigned int mask = 0;
947
948 /* Permit FPU to be present if FPU is supported */
949 if (kvm_mips_guest_can_have_fpu(&vcpu->arch))
950 mask |= MIPS_CONF1_FP;
951
952 return mask;
James Hoganc7716072014-06-26 15:11:29 +0100953}
954
955/**
956 * kvm_mips_config3_wrmask() - Find mask of writable bits in guest Config3
957 * @vcpu: Virtual CPU.
958 *
959 * Finds the mask of bits which are writable in the guest's Config3 CP0
960 * register, by userland (currently read-only to the guest).
961 */
962unsigned int kvm_mips_config3_wrmask(struct kvm_vcpu *vcpu)
963{
James Hogancef061d02016-06-15 19:29:54 +0100964 /* Config4 and ULRI are optional */
965 unsigned int mask = MIPS_CONF_M | MIPS_CONF3_ULRI;
James Hogan2b6009d2015-02-06 23:01:00 +0000966
967 /* Permit MSA to be present if MSA is supported */
968 if (kvm_mips_guest_can_have_msa(&vcpu->arch))
969 mask |= MIPS_CONF3_MSA;
970
971 return mask;
James Hoganc7716072014-06-26 15:11:29 +0100972}
973
974/**
975 * kvm_mips_config4_wrmask() - Find mask of writable bits in guest Config4
976 * @vcpu: Virtual CPU.
977 *
978 * Finds the mask of bits which are writable in the guest's Config4 CP0
979 * register, by userland (currently read-only to the guest).
980 */
981unsigned int kvm_mips_config4_wrmask(struct kvm_vcpu *vcpu)
982{
983 /* Config5 is optional */
James Hogan05108702016-06-15 19:29:56 +0100984 unsigned int mask = MIPS_CONF_M;
985
986 /* KScrExist */
987 mask |= (unsigned int)vcpu->arch.kscratch_enabled << 16;
988
989 return mask;
James Hoganc7716072014-06-26 15:11:29 +0100990}
991
992/**
993 * kvm_mips_config5_wrmask() - Find mask of writable bits in guest Config5
994 * @vcpu: Virtual CPU.
995 *
996 * Finds the mask of bits which are writable in the guest's Config5 CP0
997 * register, by the guest itself.
998 */
999unsigned int kvm_mips_config5_wrmask(struct kvm_vcpu *vcpu)
1000{
James Hogan6cdc65e2015-02-03 13:59:38 +00001001 unsigned int mask = 0;
1002
James Hogan2b6009d2015-02-06 23:01:00 +00001003 /* Permit MSAEn changes if MSA supported and enabled */
1004 if (kvm_mips_guest_has_msa(&vcpu->arch))
1005 mask |= MIPS_CONF5_MSAEN;
1006
James Hogan6cdc65e2015-02-03 13:59:38 +00001007 /*
1008 * Permit guest FPU mode changes if FPU is enabled and the relevant
1009 * feature exists according to FIR register.
1010 */
1011 if (kvm_mips_guest_has_fpu(&vcpu->arch)) {
1012 if (cpu_has_fre)
1013 mask |= MIPS_CONF5_FRE;
1014 /* We don't support UFR or UFE */
1015 }
1016
1017 return mask;
James Hoganc7716072014-06-26 15:11:29 +01001018}
1019
James Hogan258f3a22016-06-15 19:29:47 +01001020enum emulation_result kvm_mips_emulate_CP0(union mips_instruction inst,
1021 u32 *opc, u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01001022 struct kvm_run *run,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001023 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001024{
1025 struct mips_coproc *cop0 = vcpu->arch.cop0;
1026 enum emulation_result er = EMULATE_DONE;
James Hogan258f3a22016-06-15 19:29:47 +01001027 u32 rt, rd, sel;
Sanjay Lale685c682012-11-21 18:34:04 -08001028 unsigned long curr_pc;
1029
1030 /*
1031 * Update PC and hold onto current PC in case there is
1032 * an error and we want to rollback the PC
1033 */
1034 curr_pc = vcpu->arch.pc;
1035 er = update_pc(vcpu, cause);
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001036 if (er == EMULATE_FAIL)
Sanjay Lale685c682012-11-21 18:34:04 -08001037 return er;
Sanjay Lale685c682012-11-21 18:34:04 -08001038
James Hogan258f3a22016-06-15 19:29:47 +01001039 if (inst.co_format.co) {
1040 switch (inst.co_format.func) {
Sanjay Lale685c682012-11-21 18:34:04 -08001041 case tlbr_op: /* Read indexed TLB entry */
1042 er = kvm_mips_emul_tlbr(vcpu);
1043 break;
1044 case tlbwi_op: /* Write indexed */
1045 er = kvm_mips_emul_tlbwi(vcpu);
1046 break;
1047 case tlbwr_op: /* Write random */
1048 er = kvm_mips_emul_tlbwr(vcpu);
1049 break;
1050 case tlbp_op: /* TLB Probe */
1051 er = kvm_mips_emul_tlbp(vcpu);
1052 break;
1053 case rfe_op:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001054 kvm_err("!!!COP0_RFE!!!\n");
Sanjay Lale685c682012-11-21 18:34:04 -08001055 break;
1056 case eret_op:
1057 er = kvm_mips_emul_eret(vcpu);
1058 goto dont_update_pc;
Sanjay Lale685c682012-11-21 18:34:04 -08001059 case wait_op:
1060 er = kvm_mips_emul_wait(vcpu);
1061 break;
1062 }
1063 } else {
James Hogan258f3a22016-06-15 19:29:47 +01001064 rt = inst.c0r_format.rt;
1065 rd = inst.c0r_format.rd;
1066 sel = inst.c0r_format.sel;
1067
1068 switch (inst.c0r_format.rs) {
Sanjay Lale685c682012-11-21 18:34:04 -08001069 case mfc_op:
1070#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
1071 cop0->stat[rd][sel]++;
1072#endif
1073 /* Get reg */
1074 if ((rd == MIPS_CP0_COUNT) && (sel == 0)) {
James Hogan172e02d2016-07-08 11:53:28 +01001075 vcpu->arch.gprs[rt] =
1076 (s32)kvm_mips_read_count(vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08001077 } else if ((rd == MIPS_CP0_ERRCTL) && (sel == 0)) {
1078 vcpu->arch.gprs[rt] = 0x0;
1079#ifdef CONFIG_KVM_MIPS_DYN_TRANS
1080 kvm_mips_trans_mfc0(inst, opc, vcpu);
1081#endif
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001082 } else {
James Hogan172e02d2016-07-08 11:53:28 +01001083 vcpu->arch.gprs[rt] = (s32)cop0->reg[rd][sel];
Sanjay Lale685c682012-11-21 18:34:04 -08001084
1085#ifdef CONFIG_KVM_MIPS_DYN_TRANS
1086 kvm_mips_trans_mfc0(inst, opc, vcpu);
1087#endif
1088 }
1089
James Hogan6398da12016-06-14 09:40:15 +01001090 trace_kvm_hwr(vcpu, KVM_TRACE_MFC0,
1091 KVM_TRACE_COP0(rd, sel),
1092 vcpu->arch.gprs[rt]);
Sanjay Lale685c682012-11-21 18:34:04 -08001093 break;
1094
1095 case dmfc_op:
1096 vcpu->arch.gprs[rt] = cop0->reg[rd][sel];
James Hogan6398da12016-06-14 09:40:15 +01001097
1098 trace_kvm_hwr(vcpu, KVM_TRACE_DMFC0,
1099 KVM_TRACE_COP0(rd, sel),
1100 vcpu->arch.gprs[rt]);
Sanjay Lale685c682012-11-21 18:34:04 -08001101 break;
1102
1103 case mtc_op:
1104#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
1105 cop0->stat[rd][sel]++;
1106#endif
James Hogan6398da12016-06-14 09:40:15 +01001107 trace_kvm_hwr(vcpu, KVM_TRACE_MTC0,
1108 KVM_TRACE_COP0(rd, sel),
1109 vcpu->arch.gprs[rt]);
1110
Sanjay Lale685c682012-11-21 18:34:04 -08001111 if ((rd == MIPS_CP0_TLB_INDEX)
1112 && (vcpu->arch.gprs[rt] >=
1113 KVM_MIPS_GUEST_TLB_SIZE)) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001114 kvm_err("Invalid TLB Index: %ld",
1115 vcpu->arch.gprs[rt]);
Sanjay Lale685c682012-11-21 18:34:04 -08001116 er = EMULATE_FAIL;
1117 break;
1118 }
1119#define C0_EBASE_CORE_MASK 0xff
1120 if ((rd == MIPS_CP0_PRID) && (sel == 1)) {
1121 /* Preserve CORE number */
1122 kvm_change_c0_guest_ebase(cop0,
1123 ~(C0_EBASE_CORE_MASK),
1124 vcpu->arch.gprs[rt]);
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001125 kvm_err("MTCz, cop0->reg[EBASE]: %#lx\n",
1126 kvm_read_c0_guest_ebase(cop0));
Sanjay Lale685c682012-11-21 18:34:04 -08001127 } else if (rd == MIPS_CP0_TLB_HI && sel == 0) {
James Hogan8cffd192016-06-09 14:19:08 +01001128 u32 nasid =
Paul Burtonca64c2b2016-05-06 14:36:20 +01001129 vcpu->arch.gprs[rt] & KVM_ENTRYHI_ASID;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001130 if ((KSEGX(vcpu->arch.gprs[rt]) != CKSEG0) &&
David Daney48c4ac92013-05-13 13:56:44 -07001131 ((kvm_read_c0_guest_entryhi(cop0) &
Paul Burtonca64c2b2016-05-06 14:36:20 +01001132 KVM_ENTRYHI_ASID) != nasid)) {
James Hogan9887d1c2016-06-14 09:40:13 +01001133 trace_kvm_asid_change(vcpu,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001134 kvm_read_c0_guest_entryhi(cop0)
James Hogan9887d1c2016-06-14 09:40:13 +01001135 & KVM_ENTRYHI_ASID,
1136 nasid);
Sanjay Lale685c682012-11-21 18:34:04 -08001137
1138 /* Blow away the shadow host TLBs */
1139 kvm_mips_flush_host_tlb(1);
1140 }
1141 kvm_write_c0_guest_entryhi(cop0,
1142 vcpu->arch.gprs[rt]);
1143 }
1144 /* Are we writing to COUNT */
1145 else if ((rd == MIPS_CP0_COUNT) && (sel == 0)) {
James Hogane30492b2014-05-29 10:16:35 +01001146 kvm_mips_write_count(vcpu, vcpu->arch.gprs[rt]);
Sanjay Lale685c682012-11-21 18:34:04 -08001147 goto done;
1148 } else if ((rd == MIPS_CP0_COMPARE) && (sel == 0)) {
Sanjay Lale685c682012-11-21 18:34:04 -08001149 /* If we are writing to COMPARE */
1150 /* Clear pending timer interrupt, if any */
James Hogane30492b2014-05-29 10:16:35 +01001151 kvm_mips_write_compare(vcpu,
James Hoganb45bacd2016-04-22 10:38:46 +01001152 vcpu->arch.gprs[rt],
1153 true);
Sanjay Lale685c682012-11-21 18:34:04 -08001154 } else if ((rd == MIPS_CP0_STATUS) && (sel == 0)) {
James Hogan6cdc65e2015-02-03 13:59:38 +00001155 unsigned int old_val, val, change;
1156
1157 old_val = kvm_read_c0_guest_status(cop0);
1158 val = vcpu->arch.gprs[rt];
1159 change = val ^ old_val;
1160
1161 /* Make sure that the NMI bit is never set */
1162 val &= ~ST0_NMI;
1163
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001164 /*
James Hogan6cdc65e2015-02-03 13:59:38 +00001165 * Don't allow CU1 or FR to be set unless FPU
1166 * capability enabled and exists in guest
1167 * configuration.
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001168 */
James Hogan6cdc65e2015-02-03 13:59:38 +00001169 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
1170 val &= ~(ST0_CU1 | ST0_FR);
1171
1172 /*
1173 * Also don't allow FR to be set if host doesn't
1174 * support it.
1175 */
1176 if (!(current_cpu_data.fpu_id & MIPS_FPIR_F64))
1177 val &= ~ST0_FR;
1178
1179
1180 /* Handle changes in FPU mode */
1181 preempt_disable();
1182
1183 /*
1184 * FPU and Vector register state is made
1185 * UNPREDICTABLE by a change of FR, so don't
1186 * even bother saving it.
1187 */
1188 if (change & ST0_FR)
1189 kvm_drop_fpu(vcpu);
1190
1191 /*
James Hogan2b6009d2015-02-06 23:01:00 +00001192 * If MSA state is already live, it is undefined
1193 * how it interacts with FR=0 FPU state, and we
1194 * don't want to hit reserved instruction
1195 * exceptions trying to save the MSA state later
1196 * when CU=1 && FR=1, so play it safe and save
1197 * it first.
1198 */
1199 if (change & ST0_CU1 && !(val & ST0_FR) &&
James Hoganf9431762016-06-14 09:40:10 +01001200 vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA)
James Hogan2b6009d2015-02-06 23:01:00 +00001201 kvm_lose_fpu(vcpu);
1202
1203 /*
James Hogan6cdc65e2015-02-03 13:59:38 +00001204 * Propagate CU1 (FPU enable) changes
1205 * immediately if the FPU context is already
1206 * loaded. When disabling we leave the context
1207 * loaded so it can be quickly enabled again in
1208 * the near future.
1209 */
1210 if (change & ST0_CU1 &&
James Hoganf9431762016-06-14 09:40:10 +01001211 vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU)
James Hogan6cdc65e2015-02-03 13:59:38 +00001212 change_c0_status(ST0_CU1, val);
1213
1214 preempt_enable();
1215
1216 kvm_write_c0_guest_status(cop0, val);
Sanjay Lale685c682012-11-21 18:34:04 -08001217
1218#ifdef CONFIG_KVM_MIPS_DYN_TRANS
James Hogan6cdc65e2015-02-03 13:59:38 +00001219 /*
1220 * If FPU present, we need CU1/FR bits to take
1221 * effect fairly soon.
1222 */
1223 if (!kvm_mips_guest_has_fpu(&vcpu->arch))
1224 kvm_mips_trans_mtc0(inst, opc, vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08001225#endif
James Hogan6cdc65e2015-02-03 13:59:38 +00001226 } else if ((rd == MIPS_CP0_CONFIG) && (sel == 5)) {
1227 unsigned int old_val, val, change, wrmask;
1228
1229 old_val = kvm_read_c0_guest_config5(cop0);
1230 val = vcpu->arch.gprs[rt];
1231
1232 /* Only a few bits are writable in Config5 */
1233 wrmask = kvm_mips_config5_wrmask(vcpu);
1234 change = (val ^ old_val) & wrmask;
1235 val = old_val ^ change;
1236
1237
James Hogan2b6009d2015-02-06 23:01:00 +00001238 /* Handle changes in FPU/MSA modes */
James Hogan6cdc65e2015-02-03 13:59:38 +00001239 preempt_disable();
1240
1241 /*
1242 * Propagate FRE changes immediately if the FPU
1243 * context is already loaded.
1244 */
1245 if (change & MIPS_CONF5_FRE &&
James Hoganf9431762016-06-14 09:40:10 +01001246 vcpu->arch.aux_inuse & KVM_MIPS_AUX_FPU)
James Hogan6cdc65e2015-02-03 13:59:38 +00001247 change_c0_config5(MIPS_CONF5_FRE, val);
1248
James Hogan2b6009d2015-02-06 23:01:00 +00001249 /*
1250 * Propagate MSAEn changes immediately if the
1251 * MSA context is already loaded. When disabling
1252 * we leave the context loaded so it can be
1253 * quickly enabled again in the near future.
1254 */
1255 if (change & MIPS_CONF5_MSAEN &&
James Hoganf9431762016-06-14 09:40:10 +01001256 vcpu->arch.aux_inuse & KVM_MIPS_AUX_MSA)
James Hogan2b6009d2015-02-06 23:01:00 +00001257 change_c0_config5(MIPS_CONF5_MSAEN,
1258 val);
1259
James Hogan6cdc65e2015-02-03 13:59:38 +00001260 preempt_enable();
1261
1262 kvm_write_c0_guest_config5(cop0, val);
James Hogane30492b2014-05-29 10:16:35 +01001263 } else if ((rd == MIPS_CP0_CAUSE) && (sel == 0)) {
James Hogan8cffd192016-06-09 14:19:08 +01001264 u32 old_cause, new_cause;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001265
James Hogane30492b2014-05-29 10:16:35 +01001266 old_cause = kvm_read_c0_guest_cause(cop0);
1267 new_cause = vcpu->arch.gprs[rt];
1268 /* Update R/W bits */
1269 kvm_change_c0_guest_cause(cop0, 0x08800300,
1270 new_cause);
1271 /* DC bit enabling/disabling timer? */
1272 if ((old_cause ^ new_cause) & CAUSEF_DC) {
1273 if (new_cause & CAUSEF_DC)
1274 kvm_mips_count_disable_cause(vcpu);
1275 else
1276 kvm_mips_count_enable_cause(vcpu);
1277 }
James Hogancef061d02016-06-15 19:29:54 +01001278 } else if ((rd == MIPS_CP0_HWRENA) && (sel == 0)) {
1279 u32 mask = MIPS_HWRENA_CPUNUM |
1280 MIPS_HWRENA_SYNCISTEP |
1281 MIPS_HWRENA_CC |
1282 MIPS_HWRENA_CCRES;
1283
1284 if (kvm_read_c0_guest_config3(cop0) &
1285 MIPS_CONF3_ULRI)
1286 mask |= MIPS_HWRENA_ULR;
1287 cop0->reg[rd][sel] = vcpu->arch.gprs[rt] & mask;
Sanjay Lale685c682012-11-21 18:34:04 -08001288 } else {
1289 cop0->reg[rd][sel] = vcpu->arch.gprs[rt];
1290#ifdef CONFIG_KVM_MIPS_DYN_TRANS
1291 kvm_mips_trans_mtc0(inst, opc, vcpu);
1292#endif
1293 }
Sanjay Lale685c682012-11-21 18:34:04 -08001294 break;
1295
1296 case dmtc_op:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001297 kvm_err("!!!!!!![%#lx]dmtc_op: rt: %d, rd: %d, sel: %d!!!!!!\n",
1298 vcpu->arch.pc, rt, rd, sel);
James Hogan6398da12016-06-14 09:40:15 +01001299 trace_kvm_hwr(vcpu, KVM_TRACE_DMTC0,
1300 KVM_TRACE_COP0(rd, sel),
1301 vcpu->arch.gprs[rt]);
Sanjay Lale685c682012-11-21 18:34:04 -08001302 er = EMULATE_FAIL;
1303 break;
1304
James Hoganb2c59632015-12-16 23:49:38 +00001305 case mfmc0_op:
Sanjay Lale685c682012-11-21 18:34:04 -08001306#ifdef KVM_MIPS_DEBUG_COP0_COUNTERS
1307 cop0->stat[MIPS_CP0_STATUS][0]++;
1308#endif
James Hogancaa1faa2015-12-16 23:49:26 +00001309 if (rt != 0)
Sanjay Lale685c682012-11-21 18:34:04 -08001310 vcpu->arch.gprs[rt] =
1311 kvm_read_c0_guest_status(cop0);
Sanjay Lale685c682012-11-21 18:34:04 -08001312 /* EI */
James Hogan258f3a22016-06-15 19:29:47 +01001313 if (inst.mfmc0_format.sc) {
James Hoganb2c59632015-12-16 23:49:38 +00001314 kvm_debug("[%#lx] mfmc0_op: EI\n",
Sanjay Lale685c682012-11-21 18:34:04 -08001315 vcpu->arch.pc);
1316 kvm_set_c0_guest_status(cop0, ST0_IE);
1317 } else {
James Hoganb2c59632015-12-16 23:49:38 +00001318 kvm_debug("[%#lx] mfmc0_op: DI\n",
Sanjay Lale685c682012-11-21 18:34:04 -08001319 vcpu->arch.pc);
1320 kvm_clear_c0_guest_status(cop0, ST0_IE);
1321 }
1322
1323 break;
1324
1325 case wrpgpr_op:
1326 {
James Hogan8cffd192016-06-09 14:19:08 +01001327 u32 css = cop0->reg[MIPS_CP0_STATUS][2] & 0xf;
1328 u32 pss =
Sanjay Lale685c682012-11-21 18:34:04 -08001329 (cop0->reg[MIPS_CP0_STATUS][2] >> 6) & 0xf;
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001330 /*
1331 * We don't support any shadow register sets, so
1332 * SRSCtl[PSS] == SRSCtl[CSS] = 0
1333 */
Sanjay Lale685c682012-11-21 18:34:04 -08001334 if (css || pss) {
1335 er = EMULATE_FAIL;
1336 break;
1337 }
1338 kvm_debug("WRPGPR[%d][%d] = %#lx\n", pss, rd,
1339 vcpu->arch.gprs[rt]);
1340 vcpu->arch.gprs[rd] = vcpu->arch.gprs[rt];
1341 }
1342 break;
1343 default:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001344 kvm_err("[%#lx]MachEmulateCP0: unsupported COP0, copz: 0x%x\n",
James Hogan258f3a22016-06-15 19:29:47 +01001345 vcpu->arch.pc, inst.c0r_format.rs);
Sanjay Lale685c682012-11-21 18:34:04 -08001346 er = EMULATE_FAIL;
1347 break;
1348 }
1349 }
1350
1351done:
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001352 /* Rollback PC only if emulation was unsuccessful */
1353 if (er == EMULATE_FAIL)
Sanjay Lale685c682012-11-21 18:34:04 -08001354 vcpu->arch.pc = curr_pc;
Sanjay Lale685c682012-11-21 18:34:04 -08001355
1356dont_update_pc:
1357 /*
1358 * This is for special instructions whose emulation
1359 * updates the PC, so do not overwrite the PC under
1360 * any circumstances
1361 */
1362
1363 return er;
1364}
1365
James Hogan258f3a22016-06-15 19:29:47 +01001366enum emulation_result kvm_mips_emulate_store(union mips_instruction inst,
1367 u32 cause,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001368 struct kvm_run *run,
1369 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001370{
1371 enum emulation_result er = EMULATE_DO_MMIO;
James Hogan258f3a22016-06-15 19:29:47 +01001372 u32 rt;
James Hogan8cffd192016-06-09 14:19:08 +01001373 u32 bytes;
Sanjay Lale685c682012-11-21 18:34:04 -08001374 void *data = run->mmio.data;
1375 unsigned long curr_pc;
1376
1377 /*
1378 * Update PC and hold onto current PC in case there is
1379 * an error and we want to rollback the PC
1380 */
1381 curr_pc = vcpu->arch.pc;
1382 er = update_pc(vcpu, cause);
1383 if (er == EMULATE_FAIL)
1384 return er;
1385
James Hogan258f3a22016-06-15 19:29:47 +01001386 rt = inst.i_format.rt;
Sanjay Lale685c682012-11-21 18:34:04 -08001387
James Hogan258f3a22016-06-15 19:29:47 +01001388 switch (inst.i_format.opcode) {
Sanjay Lale685c682012-11-21 18:34:04 -08001389 case sb_op:
1390 bytes = 1;
1391 if (bytes > sizeof(run->mmio.data)) {
1392 kvm_err("%s: bad MMIO length: %d\n", __func__,
1393 run->mmio.len);
1394 }
1395 run->mmio.phys_addr =
1396 kvm_mips_callbacks->gva_to_gpa(vcpu->arch.
1397 host_cp0_badvaddr);
1398 if (run->mmio.phys_addr == KVM_INVALID_ADDR) {
1399 er = EMULATE_FAIL;
1400 break;
1401 }
1402 run->mmio.len = bytes;
1403 run->mmio.is_write = 1;
1404 vcpu->mmio_needed = 1;
1405 vcpu->mmio_is_write = 1;
1406 *(u8 *) data = vcpu->arch.gprs[rt];
1407 kvm_debug("OP_SB: eaddr: %#lx, gpr: %#lx, data: %#x\n",
1408 vcpu->arch.host_cp0_badvaddr, vcpu->arch.gprs[rt],
James Hogan8cffd192016-06-09 14:19:08 +01001409 *(u8 *) data);
Sanjay Lale685c682012-11-21 18:34:04 -08001410
1411 break;
1412
1413 case sw_op:
1414 bytes = 4;
1415 if (bytes > sizeof(run->mmio.data)) {
1416 kvm_err("%s: bad MMIO length: %d\n", __func__,
1417 run->mmio.len);
1418 }
1419 run->mmio.phys_addr =
1420 kvm_mips_callbacks->gva_to_gpa(vcpu->arch.
1421 host_cp0_badvaddr);
1422 if (run->mmio.phys_addr == KVM_INVALID_ADDR) {
1423 er = EMULATE_FAIL;
1424 break;
1425 }
1426
1427 run->mmio.len = bytes;
1428 run->mmio.is_write = 1;
1429 vcpu->mmio_needed = 1;
1430 vcpu->mmio_is_write = 1;
James Hogan8cffd192016-06-09 14:19:08 +01001431 *(u32 *) data = vcpu->arch.gprs[rt];
Sanjay Lale685c682012-11-21 18:34:04 -08001432
1433 kvm_debug("[%#lx] OP_SW: eaddr: %#lx, gpr: %#lx, data: %#x\n",
1434 vcpu->arch.pc, vcpu->arch.host_cp0_badvaddr,
James Hogan8cffd192016-06-09 14:19:08 +01001435 vcpu->arch.gprs[rt], *(u32 *) data);
Sanjay Lale685c682012-11-21 18:34:04 -08001436 break;
1437
1438 case sh_op:
1439 bytes = 2;
1440 if (bytes > sizeof(run->mmio.data)) {
1441 kvm_err("%s: bad MMIO length: %d\n", __func__,
1442 run->mmio.len);
1443 }
1444 run->mmio.phys_addr =
1445 kvm_mips_callbacks->gva_to_gpa(vcpu->arch.
1446 host_cp0_badvaddr);
1447 if (run->mmio.phys_addr == KVM_INVALID_ADDR) {
1448 er = EMULATE_FAIL;
1449 break;
1450 }
1451
1452 run->mmio.len = bytes;
1453 run->mmio.is_write = 1;
1454 vcpu->mmio_needed = 1;
1455 vcpu->mmio_is_write = 1;
James Hogan8cffd192016-06-09 14:19:08 +01001456 *(u16 *) data = vcpu->arch.gprs[rt];
Sanjay Lale685c682012-11-21 18:34:04 -08001457
1458 kvm_debug("[%#lx] OP_SH: eaddr: %#lx, gpr: %#lx, data: %#x\n",
1459 vcpu->arch.pc, vcpu->arch.host_cp0_badvaddr,
James Hogan8cffd192016-06-09 14:19:08 +01001460 vcpu->arch.gprs[rt], *(u32 *) data);
Sanjay Lale685c682012-11-21 18:34:04 -08001461 break;
1462
1463 default:
James Hogand86c1eb2016-06-14 09:40:17 +01001464 kvm_err("Store not yet supported (inst=0x%08x)\n",
James Hogan258f3a22016-06-15 19:29:47 +01001465 inst.word);
Sanjay Lale685c682012-11-21 18:34:04 -08001466 er = EMULATE_FAIL;
1467 break;
1468 }
1469
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001470 /* Rollback PC if emulation was unsuccessful */
1471 if (er == EMULATE_FAIL)
Sanjay Lale685c682012-11-21 18:34:04 -08001472 vcpu->arch.pc = curr_pc;
Sanjay Lale685c682012-11-21 18:34:04 -08001473
1474 return er;
1475}
1476
James Hogan258f3a22016-06-15 19:29:47 +01001477enum emulation_result kvm_mips_emulate_load(union mips_instruction inst,
1478 u32 cause, struct kvm_run *run,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001479 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001480{
1481 enum emulation_result er = EMULATE_DO_MMIO;
James Hogan258f3a22016-06-15 19:29:47 +01001482 u32 op, rt;
James Hogan8cffd192016-06-09 14:19:08 +01001483 u32 bytes;
Sanjay Lale685c682012-11-21 18:34:04 -08001484
James Hogan258f3a22016-06-15 19:29:47 +01001485 rt = inst.i_format.rt;
1486 op = inst.i_format.opcode;
Sanjay Lale685c682012-11-21 18:34:04 -08001487
1488 vcpu->arch.pending_load_cause = cause;
1489 vcpu->arch.io_gpr = rt;
1490
1491 switch (op) {
1492 case lw_op:
1493 bytes = 4;
1494 if (bytes > sizeof(run->mmio.data)) {
1495 kvm_err("%s: bad MMIO length: %d\n", __func__,
1496 run->mmio.len);
1497 er = EMULATE_FAIL;
1498 break;
1499 }
1500 run->mmio.phys_addr =
1501 kvm_mips_callbacks->gva_to_gpa(vcpu->arch.
1502 host_cp0_badvaddr);
1503 if (run->mmio.phys_addr == KVM_INVALID_ADDR) {
1504 er = EMULATE_FAIL;
1505 break;
1506 }
1507
1508 run->mmio.len = bytes;
1509 run->mmio.is_write = 0;
1510 vcpu->mmio_needed = 1;
1511 vcpu->mmio_is_write = 0;
1512 break;
1513
1514 case lh_op:
1515 case lhu_op:
1516 bytes = 2;
1517 if (bytes > sizeof(run->mmio.data)) {
1518 kvm_err("%s: bad MMIO length: %d\n", __func__,
1519 run->mmio.len);
1520 er = EMULATE_FAIL;
1521 break;
1522 }
1523 run->mmio.phys_addr =
1524 kvm_mips_callbacks->gva_to_gpa(vcpu->arch.
1525 host_cp0_badvaddr);
1526 if (run->mmio.phys_addr == KVM_INVALID_ADDR) {
1527 er = EMULATE_FAIL;
1528 break;
1529 }
1530
1531 run->mmio.len = bytes;
1532 run->mmio.is_write = 0;
1533 vcpu->mmio_needed = 1;
1534 vcpu->mmio_is_write = 0;
1535
1536 if (op == lh_op)
1537 vcpu->mmio_needed = 2;
1538 else
1539 vcpu->mmio_needed = 1;
1540
1541 break;
1542
1543 case lbu_op:
1544 case lb_op:
1545 bytes = 1;
1546 if (bytes > sizeof(run->mmio.data)) {
1547 kvm_err("%s: bad MMIO length: %d\n", __func__,
1548 run->mmio.len);
1549 er = EMULATE_FAIL;
1550 break;
1551 }
1552 run->mmio.phys_addr =
1553 kvm_mips_callbacks->gva_to_gpa(vcpu->arch.
1554 host_cp0_badvaddr);
1555 if (run->mmio.phys_addr == KVM_INVALID_ADDR) {
1556 er = EMULATE_FAIL;
1557 break;
1558 }
1559
1560 run->mmio.len = bytes;
1561 run->mmio.is_write = 0;
1562 vcpu->mmio_is_write = 0;
1563
1564 if (op == lb_op)
1565 vcpu->mmio_needed = 2;
1566 else
1567 vcpu->mmio_needed = 1;
1568
1569 break;
1570
1571 default:
James Hogand86c1eb2016-06-14 09:40:17 +01001572 kvm_err("Load not yet supported (inst=0x%08x)\n",
James Hogan258f3a22016-06-15 19:29:47 +01001573 inst.word);
Sanjay Lale685c682012-11-21 18:34:04 -08001574 er = EMULATE_FAIL;
1575 break;
1576 }
1577
1578 return er;
1579}
1580
James Hogan258f3a22016-06-15 19:29:47 +01001581enum emulation_result kvm_mips_emulate_cache(union mips_instruction inst,
1582 u32 *opc, u32 cause,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001583 struct kvm_run *run,
1584 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001585{
1586 struct mips_coproc *cop0 = vcpu->arch.cop0;
Sanjay Lale685c682012-11-21 18:34:04 -08001587 enum emulation_result er = EMULATE_DONE;
James Hogan8cffd192016-06-09 14:19:08 +01001588 u32 cache, op_inst, op, base;
1589 s16 offset;
Sanjay Lale685c682012-11-21 18:34:04 -08001590 struct kvm_vcpu_arch *arch = &vcpu->arch;
1591 unsigned long va;
1592 unsigned long curr_pc;
1593
1594 /*
1595 * Update PC and hold onto current PC in case there is
1596 * an error and we want to rollback the PC
1597 */
1598 curr_pc = vcpu->arch.pc;
1599 er = update_pc(vcpu, cause);
1600 if (er == EMULATE_FAIL)
1601 return er;
1602
James Hogan258f3a22016-06-15 19:29:47 +01001603 base = inst.i_format.rs;
1604 op_inst = inst.i_format.rt;
James Hogan5cc4aaf2016-07-04 19:35:13 +01001605 if (cpu_has_mips_r6)
1606 offset = inst.spec3_format.simmediate;
1607 else
1608 offset = inst.i_format.simmediate;
James Hoganf4956f62015-12-16 23:49:37 +00001609 cache = op_inst & CacheOp_Cache;
1610 op = op_inst & CacheOp_Op;
Sanjay Lale685c682012-11-21 18:34:04 -08001611
1612 va = arch->gprs[base] + offset;
1613
1614 kvm_debug("CACHE (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1615 cache, op, base, arch->gprs[base], offset);
1616
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001617 /*
1618 * Treat INDEX_INV as a nop, basically issued by Linux on startup to
1619 * invalidate the caches entirely by stepping through all the
1620 * ways/indexes
Sanjay Lale685c682012-11-21 18:34:04 -08001621 */
James Hoganf4956f62015-12-16 23:49:37 +00001622 if (op == Index_Writeback_Inv) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001623 kvm_debug("@ %#lx/%#lx CACHE (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1624 vcpu->arch.pc, vcpu->arch.gprs[31], cache, op, base,
1625 arch->gprs[base], offset);
Sanjay Lale685c682012-11-21 18:34:04 -08001626
James Hoganf4956f62015-12-16 23:49:37 +00001627 if (cache == Cache_D)
Sanjay Lale685c682012-11-21 18:34:04 -08001628 r4k_blast_dcache();
James Hoganf4956f62015-12-16 23:49:37 +00001629 else if (cache == Cache_I)
Sanjay Lale685c682012-11-21 18:34:04 -08001630 r4k_blast_icache();
1631 else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001632 kvm_err("%s: unsupported CACHE INDEX operation\n",
1633 __func__);
Sanjay Lale685c682012-11-21 18:34:04 -08001634 return EMULATE_FAIL;
1635 }
1636
1637#ifdef CONFIG_KVM_MIPS_DYN_TRANS
1638 kvm_mips_trans_cache_index(inst, opc, vcpu);
1639#endif
1640 goto done;
1641 }
1642
1643 preempt_disable();
1644 if (KVM_GUEST_KSEGX(va) == KVM_GUEST_KSEG0) {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001645 if (kvm_mips_host_tlb_lookup(vcpu, va) < 0)
Sanjay Lale685c682012-11-21 18:34:04 -08001646 kvm_mips_handle_kseg0_tlb_fault(va, vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08001647 } else if ((KVM_GUEST_KSEGX(va) < KVM_GUEST_KSEG0) ||
1648 KVM_GUEST_KSEGX(va) == KVM_GUEST_KSEG23) {
1649 int index;
1650
1651 /* If an entry already exists then skip */
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001652 if (kvm_mips_host_tlb_lookup(vcpu, va) >= 0)
Sanjay Lale685c682012-11-21 18:34:04 -08001653 goto skip_fault;
Sanjay Lale685c682012-11-21 18:34:04 -08001654
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001655 /*
1656 * If address not in the guest TLB, then give the guest a fault,
1657 * the resulting handler will do the right thing
Sanjay Lale685c682012-11-21 18:34:04 -08001658 */
1659 index = kvm_mips_guest_tlb_lookup(vcpu, (va & VPN2_MASK) |
David Daney48c4ac92013-05-13 13:56:44 -07001660 (kvm_read_c0_guest_entryhi
Paul Burtonca64c2b2016-05-06 14:36:20 +01001661 (cop0) & KVM_ENTRYHI_ASID));
Sanjay Lale685c682012-11-21 18:34:04 -08001662
1663 if (index < 0) {
Sanjay Lale685c682012-11-21 18:34:04 -08001664 vcpu->arch.host_cp0_badvaddr = va;
James Hogan6df82a72016-06-09 10:50:46 +01001665 vcpu->arch.pc = curr_pc;
Sanjay Lale685c682012-11-21 18:34:04 -08001666 er = kvm_mips_emulate_tlbmiss_ld(cause, NULL, run,
1667 vcpu);
1668 preempt_enable();
1669 goto dont_update_pc;
1670 } else {
1671 struct kvm_mips_tlb *tlb = &vcpu->arch.guest_tlb[index];
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001672 /*
1673 * Check if the entry is valid, if not then setup a TLB
1674 * invalid exception to the guest
1675 */
Sanjay Lale685c682012-11-21 18:34:04 -08001676 if (!TLB_IS_VALID(*tlb, va)) {
James Hogan6df82a72016-06-09 10:50:46 +01001677 vcpu->arch.host_cp0_badvaddr = va;
1678 vcpu->arch.pc = curr_pc;
Sanjay Lale685c682012-11-21 18:34:04 -08001679 er = kvm_mips_emulate_tlbinv_ld(cause, NULL,
1680 run, vcpu);
1681 preempt_enable();
1682 goto dont_update_pc;
1683 } else {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001684 /*
1685 * We fault an entry from the guest tlb to the
1686 * shadow host TLB
1687 */
James Hogan26ee17f2016-06-09 14:19:13 +01001688 kvm_mips_handle_mapped_seg_tlb_fault(vcpu, tlb);
Sanjay Lale685c682012-11-21 18:34:04 -08001689 }
1690 }
1691 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001692 kvm_err("INVALID CACHE INDEX/ADDRESS (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1693 cache, op, base, arch->gprs[base], offset);
Sanjay Lale685c682012-11-21 18:34:04 -08001694 er = EMULATE_FAIL;
1695 preempt_enable();
James Hogancc81e942016-06-09 10:50:45 +01001696 goto done;
Sanjay Lale685c682012-11-21 18:34:04 -08001697
1698 }
1699
1700skip_fault:
1701 /* XXXKYMA: Only a subset of cache ops are supported, used by Linux */
James Hoganf4956f62015-12-16 23:49:37 +00001702 if (op_inst == Hit_Writeback_Inv_D || op_inst == Hit_Invalidate_D) {
Sanjay Lale685c682012-11-21 18:34:04 -08001703 flush_dcache_line(va);
1704
1705#ifdef CONFIG_KVM_MIPS_DYN_TRANS
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001706 /*
1707 * Replace the CACHE instruction, with a SYNCI, not the same,
1708 * but avoids a trap
1709 */
Sanjay Lale685c682012-11-21 18:34:04 -08001710 kvm_mips_trans_cache_va(inst, opc, vcpu);
1711#endif
James Hoganf4956f62015-12-16 23:49:37 +00001712 } else if (op_inst == Hit_Invalidate_I) {
Sanjay Lale685c682012-11-21 18:34:04 -08001713 flush_dcache_line(va);
1714 flush_icache_line(va);
1715
1716#ifdef CONFIG_KVM_MIPS_DYN_TRANS
1717 /* Replace the CACHE instruction, with a SYNCI */
1718 kvm_mips_trans_cache_va(inst, opc, vcpu);
1719#endif
1720 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001721 kvm_err("NO-OP CACHE (cache: %#x, op: %#x, base[%d]: %#lx, offset: %#x\n",
1722 cache, op, base, arch->gprs[base], offset);
Sanjay Lale685c682012-11-21 18:34:04 -08001723 er = EMULATE_FAIL;
Sanjay Lale685c682012-11-21 18:34:04 -08001724 }
1725
1726 preempt_enable();
James Hogancc81e942016-06-09 10:50:45 +01001727done:
1728 /* Rollback PC only if emulation was unsuccessful */
1729 if (er == EMULATE_FAIL)
1730 vcpu->arch.pc = curr_pc;
Sanjay Lale685c682012-11-21 18:34:04 -08001731
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001732dont_update_pc:
James Hogancc81e942016-06-09 10:50:45 +01001733 /*
1734 * This is for exceptions whose emulation updates the PC, so do not
1735 * overwrite the PC under any circumstances
1736 */
1737
Sanjay Lale685c682012-11-21 18:34:04 -08001738 return er;
1739}
1740
James Hogan31cf7492016-06-09 14:19:09 +01001741enum emulation_result kvm_mips_emulate_inst(u32 cause, u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001742 struct kvm_run *run,
1743 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001744{
James Hogan258f3a22016-06-15 19:29:47 +01001745 union mips_instruction inst;
Sanjay Lale685c682012-11-21 18:34:04 -08001746 enum emulation_result er = EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08001747
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001748 /* Fetch the instruction. */
1749 if (cause & CAUSEF_BD)
Sanjay Lale685c682012-11-21 18:34:04 -08001750 opc += 1;
Sanjay Lale685c682012-11-21 18:34:04 -08001751
James Hogan258f3a22016-06-15 19:29:47 +01001752 inst.word = kvm_get_inst(opc, vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08001753
James Hogan258f3a22016-06-15 19:29:47 +01001754 switch (inst.r_format.opcode) {
Sanjay Lale685c682012-11-21 18:34:04 -08001755 case cop0_op:
1756 er = kvm_mips_emulate_CP0(inst, opc, cause, run, vcpu);
1757 break;
1758 case sb_op:
1759 case sh_op:
1760 case sw_op:
1761 er = kvm_mips_emulate_store(inst, cause, run, vcpu);
1762 break;
1763 case lb_op:
1764 case lbu_op:
1765 case lhu_op:
1766 case lh_op:
1767 case lw_op:
1768 er = kvm_mips_emulate_load(inst, cause, run, vcpu);
1769 break;
1770
James Hogan5cc4aaf2016-07-04 19:35:13 +01001771#ifndef CONFIG_CPU_MIPSR6
Sanjay Lale685c682012-11-21 18:34:04 -08001772 case cache_op:
1773 ++vcpu->stat.cache_exits;
James Hogan1e09e862016-06-14 09:40:12 +01001774 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_CACHE);
Sanjay Lale685c682012-11-21 18:34:04 -08001775 er = kvm_mips_emulate_cache(inst, opc, cause, run, vcpu);
1776 break;
James Hogan5cc4aaf2016-07-04 19:35:13 +01001777#else
1778 case spec3_op:
1779 switch (inst.spec3_format.func) {
1780 case cache6_op:
1781 ++vcpu->stat.cache_exits;
1782 trace_kvm_exit(vcpu, KVM_TRACE_EXIT_CACHE);
1783 er = kvm_mips_emulate_cache(inst, opc, cause, run,
1784 vcpu);
1785 break;
1786 default:
1787 goto unknown;
1788 };
1789 break;
1790unknown:
1791#endif
Sanjay Lale685c682012-11-21 18:34:04 -08001792
1793 default:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001794 kvm_err("Instruction emulation not supported (%p/%#x)\n", opc,
James Hogan258f3a22016-06-15 19:29:47 +01001795 inst.word);
Sanjay Lale685c682012-11-21 18:34:04 -08001796 kvm_arch_vcpu_dump_regs(vcpu);
1797 er = EMULATE_FAIL;
1798 break;
1799 }
1800
1801 return er;
1802}
1803
James Hogan31cf7492016-06-09 14:19:09 +01001804enum emulation_result kvm_mips_emulate_syscall(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01001805 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001806 struct kvm_run *run,
1807 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001808{
1809 struct mips_coproc *cop0 = vcpu->arch.cop0;
1810 struct kvm_vcpu_arch *arch = &vcpu->arch;
1811 enum emulation_result er = EMULATE_DONE;
1812
1813 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
1814 /* save old pc */
1815 kvm_write_c0_guest_epc(cop0, arch->pc);
1816 kvm_set_c0_guest_status(cop0, ST0_EXL);
1817
1818 if (cause & CAUSEF_BD)
1819 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
1820 else
1821 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
1822
1823 kvm_debug("Delivering SYSCALL @ pc %#lx\n", arch->pc);
1824
1825 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00001826 (EXCCODE_SYS << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08001827
1828 /* Set PC to the exception entry point */
1829 arch->pc = KVM_GUEST_KSEG0 + 0x180;
1830
1831 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07001832 kvm_err("Trying to deliver SYSCALL when EXL is already set\n");
Sanjay Lale685c682012-11-21 18:34:04 -08001833 er = EMULATE_FAIL;
1834 }
1835
1836 return er;
1837}
1838
James Hogan31cf7492016-06-09 14:19:09 +01001839enum emulation_result kvm_mips_emulate_tlbmiss_ld(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01001840 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001841 struct kvm_run *run,
1842 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001843{
1844 struct mips_coproc *cop0 = vcpu->arch.cop0;
1845 struct kvm_vcpu_arch *arch = &vcpu->arch;
Sanjay Lale685c682012-11-21 18:34:04 -08001846 unsigned long entryhi = (vcpu->arch. host_cp0_badvaddr & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01001847 (kvm_read_c0_guest_entryhi(cop0) & KVM_ENTRYHI_ASID);
Sanjay Lale685c682012-11-21 18:34:04 -08001848
1849 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
1850 /* save old pc */
1851 kvm_write_c0_guest_epc(cop0, arch->pc);
1852 kvm_set_c0_guest_status(cop0, ST0_EXL);
1853
1854 if (cause & CAUSEF_BD)
1855 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
1856 else
1857 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
1858
1859 kvm_debug("[EXL == 0] delivering TLB MISS @ pc %#lx\n",
1860 arch->pc);
1861
1862 /* set pc to the exception entry point */
1863 arch->pc = KVM_GUEST_KSEG0 + 0x0;
1864
1865 } else {
1866 kvm_debug("[EXL == 1] delivering TLB MISS @ pc %#lx\n",
1867 arch->pc);
1868
1869 arch->pc = KVM_GUEST_KSEG0 + 0x180;
1870 }
1871
1872 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00001873 (EXCCODE_TLBL << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08001874
1875 /* setup badvaddr, context and entryhi registers for the guest */
1876 kvm_write_c0_guest_badvaddr(cop0, vcpu->arch.host_cp0_badvaddr);
1877 /* XXXKYMA: is the context register used by linux??? */
1878 kvm_write_c0_guest_entryhi(cop0, entryhi);
1879 /* Blow away the shadow host TLBs */
1880 kvm_mips_flush_host_tlb(1);
1881
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001882 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08001883}
1884
James Hogan31cf7492016-06-09 14:19:09 +01001885enum emulation_result kvm_mips_emulate_tlbinv_ld(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01001886 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001887 struct kvm_run *run,
1888 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001889{
1890 struct mips_coproc *cop0 = vcpu->arch.cop0;
1891 struct kvm_vcpu_arch *arch = &vcpu->arch;
Sanjay Lale685c682012-11-21 18:34:04 -08001892 unsigned long entryhi =
1893 (vcpu->arch.host_cp0_badvaddr & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01001894 (kvm_read_c0_guest_entryhi(cop0) & KVM_ENTRYHI_ASID);
Sanjay Lale685c682012-11-21 18:34:04 -08001895
1896 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
1897 /* save old pc */
1898 kvm_write_c0_guest_epc(cop0, arch->pc);
1899 kvm_set_c0_guest_status(cop0, ST0_EXL);
1900
1901 if (cause & CAUSEF_BD)
1902 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
1903 else
1904 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
1905
1906 kvm_debug("[EXL == 0] delivering TLB INV @ pc %#lx\n",
1907 arch->pc);
1908
1909 /* set pc to the exception entry point */
1910 arch->pc = KVM_GUEST_KSEG0 + 0x180;
1911
1912 } else {
1913 kvm_debug("[EXL == 1] delivering TLB MISS @ pc %#lx\n",
1914 arch->pc);
1915 arch->pc = KVM_GUEST_KSEG0 + 0x180;
1916 }
1917
1918 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00001919 (EXCCODE_TLBL << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08001920
1921 /* setup badvaddr, context and entryhi registers for the guest */
1922 kvm_write_c0_guest_badvaddr(cop0, vcpu->arch.host_cp0_badvaddr);
1923 /* XXXKYMA: is the context register used by linux??? */
1924 kvm_write_c0_guest_entryhi(cop0, entryhi);
1925 /* Blow away the shadow host TLBs */
1926 kvm_mips_flush_host_tlb(1);
1927
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001928 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08001929}
1930
James Hogan31cf7492016-06-09 14:19:09 +01001931enum emulation_result kvm_mips_emulate_tlbmiss_st(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01001932 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001933 struct kvm_run *run,
1934 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001935{
1936 struct mips_coproc *cop0 = vcpu->arch.cop0;
1937 struct kvm_vcpu_arch *arch = &vcpu->arch;
Sanjay Lale685c682012-11-21 18:34:04 -08001938 unsigned long entryhi = (vcpu->arch.host_cp0_badvaddr & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01001939 (kvm_read_c0_guest_entryhi(cop0) & KVM_ENTRYHI_ASID);
Sanjay Lale685c682012-11-21 18:34:04 -08001940
1941 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
1942 /* save old pc */
1943 kvm_write_c0_guest_epc(cop0, arch->pc);
1944 kvm_set_c0_guest_status(cop0, ST0_EXL);
1945
1946 if (cause & CAUSEF_BD)
1947 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
1948 else
1949 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
1950
1951 kvm_debug("[EXL == 0] Delivering TLB MISS @ pc %#lx\n",
1952 arch->pc);
1953
1954 /* Set PC to the exception entry point */
1955 arch->pc = KVM_GUEST_KSEG0 + 0x0;
1956 } else {
1957 kvm_debug("[EXL == 1] Delivering TLB MISS @ pc %#lx\n",
1958 arch->pc);
1959 arch->pc = KVM_GUEST_KSEG0 + 0x180;
1960 }
1961
1962 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00001963 (EXCCODE_TLBS << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08001964
1965 /* setup badvaddr, context and entryhi registers for the guest */
1966 kvm_write_c0_guest_badvaddr(cop0, vcpu->arch.host_cp0_badvaddr);
1967 /* XXXKYMA: is the context register used by linux??? */
1968 kvm_write_c0_guest_entryhi(cop0, entryhi);
1969 /* Blow away the shadow host TLBs */
1970 kvm_mips_flush_host_tlb(1);
1971
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07001972 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08001973}
1974
James Hogan31cf7492016-06-09 14:19:09 +01001975enum emulation_result kvm_mips_emulate_tlbinv_st(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01001976 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07001977 struct kvm_run *run,
1978 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08001979{
1980 struct mips_coproc *cop0 = vcpu->arch.cop0;
1981 struct kvm_vcpu_arch *arch = &vcpu->arch;
Sanjay Lale685c682012-11-21 18:34:04 -08001982 unsigned long entryhi = (vcpu->arch.host_cp0_badvaddr & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01001983 (kvm_read_c0_guest_entryhi(cop0) & KVM_ENTRYHI_ASID);
Sanjay Lale685c682012-11-21 18:34:04 -08001984
1985 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
1986 /* save old pc */
1987 kvm_write_c0_guest_epc(cop0, arch->pc);
1988 kvm_set_c0_guest_status(cop0, ST0_EXL);
1989
1990 if (cause & CAUSEF_BD)
1991 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
1992 else
1993 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
1994
1995 kvm_debug("[EXL == 0] Delivering TLB MISS @ pc %#lx\n",
1996 arch->pc);
1997
1998 /* Set PC to the exception entry point */
1999 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2000 } else {
2001 kvm_debug("[EXL == 1] Delivering TLB MISS @ pc %#lx\n",
2002 arch->pc);
2003 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2004 }
2005
2006 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002007 (EXCCODE_TLBS << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08002008
2009 /* setup badvaddr, context and entryhi registers for the guest */
2010 kvm_write_c0_guest_badvaddr(cop0, vcpu->arch.host_cp0_badvaddr);
2011 /* XXXKYMA: is the context register used by linux??? */
2012 kvm_write_c0_guest_entryhi(cop0, entryhi);
2013 /* Blow away the shadow host TLBs */
2014 kvm_mips_flush_host_tlb(1);
2015
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07002016 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08002017}
2018
2019/* TLBMOD: store into address matching TLB with Dirty bit off */
James Hogan31cf7492016-06-09 14:19:09 +01002020enum emulation_result kvm_mips_handle_tlbmod(u32 cause, u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002021 struct kvm_run *run,
2022 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002023{
2024 enum emulation_result er = EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08002025#ifdef DEBUG
James Hogan3d654832014-05-29 10:16:41 +01002026 struct mips_coproc *cop0 = vcpu->arch.cop0;
2027 unsigned long entryhi = (vcpu->arch.host_cp0_badvaddr & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01002028 (kvm_read_c0_guest_entryhi(cop0) & KVM_ENTRYHI_ASID);
James Hogan3d654832014-05-29 10:16:41 +01002029 int index;
2030
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002031 /* If address not in the guest TLB, then we are in trouble */
Sanjay Lale685c682012-11-21 18:34:04 -08002032 index = kvm_mips_guest_tlb_lookup(vcpu, entryhi);
2033 if (index < 0) {
2034 /* XXXKYMA Invalidate and retry */
2035 kvm_mips_host_tlb_inv(vcpu, vcpu->arch.host_cp0_badvaddr);
2036 kvm_err("%s: host got TLBMOD for %#lx but entry not present in Guest TLB\n",
2037 __func__, entryhi);
2038 kvm_mips_dump_guest_tlbs(vcpu);
2039 kvm_mips_dump_host_tlbs();
2040 return EMULATE_FAIL;
2041 }
2042#endif
2043
2044 er = kvm_mips_emulate_tlbmod(cause, opc, run, vcpu);
2045 return er;
2046}
2047
James Hogan31cf7492016-06-09 14:19:09 +01002048enum emulation_result kvm_mips_emulate_tlbmod(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002049 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002050 struct kvm_run *run,
2051 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002052{
2053 struct mips_coproc *cop0 = vcpu->arch.cop0;
2054 unsigned long entryhi = (vcpu->arch.host_cp0_badvaddr & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01002055 (kvm_read_c0_guest_entryhi(cop0) & KVM_ENTRYHI_ASID);
Sanjay Lale685c682012-11-21 18:34:04 -08002056 struct kvm_vcpu_arch *arch = &vcpu->arch;
Sanjay Lale685c682012-11-21 18:34:04 -08002057
2058 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2059 /* save old pc */
2060 kvm_write_c0_guest_epc(cop0, arch->pc);
2061 kvm_set_c0_guest_status(cop0, ST0_EXL);
2062
2063 if (cause & CAUSEF_BD)
2064 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2065 else
2066 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2067
2068 kvm_debug("[EXL == 0] Delivering TLB MOD @ pc %#lx\n",
2069 arch->pc);
2070
2071 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2072 } else {
2073 kvm_debug("[EXL == 1] Delivering TLB MOD @ pc %#lx\n",
2074 arch->pc);
2075 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2076 }
2077
James Hogan16d100db2015-12-16 23:49:33 +00002078 kvm_change_c0_guest_cause(cop0, (0xff),
2079 (EXCCODE_MOD << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08002080
2081 /* setup badvaddr, context and entryhi registers for the guest */
2082 kvm_write_c0_guest_badvaddr(cop0, vcpu->arch.host_cp0_badvaddr);
2083 /* XXXKYMA: is the context register used by linux??? */
2084 kvm_write_c0_guest_entryhi(cop0, entryhi);
2085 /* Blow away the shadow host TLBs */
2086 kvm_mips_flush_host_tlb(1);
2087
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07002088 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08002089}
2090
James Hogan31cf7492016-06-09 14:19:09 +01002091enum emulation_result kvm_mips_emulate_fpu_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002092 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002093 struct kvm_run *run,
2094 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002095{
2096 struct mips_coproc *cop0 = vcpu->arch.cop0;
2097 struct kvm_vcpu_arch *arch = &vcpu->arch;
Sanjay Lale685c682012-11-21 18:34:04 -08002098
2099 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2100 /* save old pc */
2101 kvm_write_c0_guest_epc(cop0, arch->pc);
2102 kvm_set_c0_guest_status(cop0, ST0_EXL);
2103
2104 if (cause & CAUSEF_BD)
2105 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2106 else
2107 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2108
2109 }
2110
2111 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2112
2113 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002114 (EXCCODE_CPU << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08002115 kvm_change_c0_guest_cause(cop0, (CAUSEF_CE), (0x1 << CAUSEB_CE));
2116
Deng-Cheng Zhud98403a2014-06-26 12:11:36 -07002117 return EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08002118}
2119
James Hogan31cf7492016-06-09 14:19:09 +01002120enum emulation_result kvm_mips_emulate_ri_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002121 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002122 struct kvm_run *run,
2123 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002124{
2125 struct mips_coproc *cop0 = vcpu->arch.cop0;
2126 struct kvm_vcpu_arch *arch = &vcpu->arch;
2127 enum emulation_result er = EMULATE_DONE;
2128
2129 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2130 /* save old pc */
2131 kvm_write_c0_guest_epc(cop0, arch->pc);
2132 kvm_set_c0_guest_status(cop0, ST0_EXL);
2133
2134 if (cause & CAUSEF_BD)
2135 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2136 else
2137 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2138
2139 kvm_debug("Delivering RI @ pc %#lx\n", arch->pc);
2140
2141 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002142 (EXCCODE_RI << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08002143
2144 /* Set PC to the exception entry point */
2145 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2146
2147 } else {
2148 kvm_err("Trying to deliver RI when EXL is already set\n");
2149 er = EMULATE_FAIL;
2150 }
2151
2152 return er;
2153}
2154
James Hogan31cf7492016-06-09 14:19:09 +01002155enum emulation_result kvm_mips_emulate_bp_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002156 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002157 struct kvm_run *run,
2158 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002159{
2160 struct mips_coproc *cop0 = vcpu->arch.cop0;
2161 struct kvm_vcpu_arch *arch = &vcpu->arch;
2162 enum emulation_result er = EMULATE_DONE;
2163
2164 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2165 /* save old pc */
2166 kvm_write_c0_guest_epc(cop0, arch->pc);
2167 kvm_set_c0_guest_status(cop0, ST0_EXL);
2168
2169 if (cause & CAUSEF_BD)
2170 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2171 else
2172 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2173
2174 kvm_debug("Delivering BP @ pc %#lx\n", arch->pc);
2175
2176 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002177 (EXCCODE_BP << CAUSEB_EXCCODE));
Sanjay Lale685c682012-11-21 18:34:04 -08002178
2179 /* Set PC to the exception entry point */
2180 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2181
2182 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002183 kvm_err("Trying to deliver BP when EXL is already set\n");
Sanjay Lale685c682012-11-21 18:34:04 -08002184 er = EMULATE_FAIL;
2185 }
2186
2187 return er;
2188}
2189
James Hogan31cf7492016-06-09 14:19:09 +01002190enum emulation_result kvm_mips_emulate_trap_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002191 u32 *opc,
James Hogan0a560422015-02-06 16:03:57 +00002192 struct kvm_run *run,
2193 struct kvm_vcpu *vcpu)
2194{
2195 struct mips_coproc *cop0 = vcpu->arch.cop0;
2196 struct kvm_vcpu_arch *arch = &vcpu->arch;
2197 enum emulation_result er = EMULATE_DONE;
2198
2199 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2200 /* save old pc */
2201 kvm_write_c0_guest_epc(cop0, arch->pc);
2202 kvm_set_c0_guest_status(cop0, ST0_EXL);
2203
2204 if (cause & CAUSEF_BD)
2205 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2206 else
2207 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2208
2209 kvm_debug("Delivering TRAP @ pc %#lx\n", arch->pc);
2210
2211 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002212 (EXCCODE_TR << CAUSEB_EXCCODE));
James Hogan0a560422015-02-06 16:03:57 +00002213
2214 /* Set PC to the exception entry point */
2215 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2216
2217 } else {
2218 kvm_err("Trying to deliver TRAP when EXL is already set\n");
2219 er = EMULATE_FAIL;
2220 }
2221
2222 return er;
2223}
2224
James Hogan31cf7492016-06-09 14:19:09 +01002225enum emulation_result kvm_mips_emulate_msafpe_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002226 u32 *opc,
James Hoganc2537ed2015-02-06 10:56:27 +00002227 struct kvm_run *run,
2228 struct kvm_vcpu *vcpu)
2229{
2230 struct mips_coproc *cop0 = vcpu->arch.cop0;
2231 struct kvm_vcpu_arch *arch = &vcpu->arch;
2232 enum emulation_result er = EMULATE_DONE;
2233
2234 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2235 /* save old pc */
2236 kvm_write_c0_guest_epc(cop0, arch->pc);
2237 kvm_set_c0_guest_status(cop0, ST0_EXL);
2238
2239 if (cause & CAUSEF_BD)
2240 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2241 else
2242 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2243
2244 kvm_debug("Delivering MSAFPE @ pc %#lx\n", arch->pc);
2245
2246 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002247 (EXCCODE_MSAFPE << CAUSEB_EXCCODE));
James Hoganc2537ed2015-02-06 10:56:27 +00002248
2249 /* Set PC to the exception entry point */
2250 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2251
2252 } else {
2253 kvm_err("Trying to deliver MSAFPE when EXL is already set\n");
2254 er = EMULATE_FAIL;
2255 }
2256
2257 return er;
2258}
2259
James Hogan31cf7492016-06-09 14:19:09 +01002260enum emulation_result kvm_mips_emulate_fpe_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002261 u32 *opc,
James Hogan1c0cd662015-02-06 10:56:27 +00002262 struct kvm_run *run,
2263 struct kvm_vcpu *vcpu)
2264{
2265 struct mips_coproc *cop0 = vcpu->arch.cop0;
2266 struct kvm_vcpu_arch *arch = &vcpu->arch;
2267 enum emulation_result er = EMULATE_DONE;
2268
2269 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2270 /* save old pc */
2271 kvm_write_c0_guest_epc(cop0, arch->pc);
2272 kvm_set_c0_guest_status(cop0, ST0_EXL);
2273
2274 if (cause & CAUSEF_BD)
2275 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2276 else
2277 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2278
2279 kvm_debug("Delivering FPE @ pc %#lx\n", arch->pc);
2280
2281 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002282 (EXCCODE_FPE << CAUSEB_EXCCODE));
James Hogan1c0cd662015-02-06 10:56:27 +00002283
2284 /* Set PC to the exception entry point */
2285 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2286
2287 } else {
2288 kvm_err("Trying to deliver FPE when EXL is already set\n");
2289 er = EMULATE_FAIL;
2290 }
2291
2292 return er;
2293}
2294
James Hogan31cf7492016-06-09 14:19:09 +01002295enum emulation_result kvm_mips_emulate_msadis_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002296 u32 *opc,
James Hoganc2537ed2015-02-06 10:56:27 +00002297 struct kvm_run *run,
2298 struct kvm_vcpu *vcpu)
2299{
2300 struct mips_coproc *cop0 = vcpu->arch.cop0;
2301 struct kvm_vcpu_arch *arch = &vcpu->arch;
2302 enum emulation_result er = EMULATE_DONE;
2303
2304 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2305 /* save old pc */
2306 kvm_write_c0_guest_epc(cop0, arch->pc);
2307 kvm_set_c0_guest_status(cop0, ST0_EXL);
2308
2309 if (cause & CAUSEF_BD)
2310 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2311 else
2312 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2313
2314 kvm_debug("Delivering MSADIS @ pc %#lx\n", arch->pc);
2315
2316 kvm_change_c0_guest_cause(cop0, (0xff),
James Hogan16d100db2015-12-16 23:49:33 +00002317 (EXCCODE_MSADIS << CAUSEB_EXCCODE));
James Hoganc2537ed2015-02-06 10:56:27 +00002318
2319 /* Set PC to the exception entry point */
2320 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2321
2322 } else {
2323 kvm_err("Trying to deliver MSADIS when EXL is already set\n");
2324 er = EMULATE_FAIL;
2325 }
2326
2327 return er;
2328}
2329
James Hogan31cf7492016-06-09 14:19:09 +01002330enum emulation_result kvm_mips_handle_ri(u32 cause, u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002331 struct kvm_run *run,
2332 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002333{
2334 struct mips_coproc *cop0 = vcpu->arch.cop0;
2335 struct kvm_vcpu_arch *arch = &vcpu->arch;
2336 enum emulation_result er = EMULATE_DONE;
2337 unsigned long curr_pc;
James Hogan258f3a22016-06-15 19:29:47 +01002338 union mips_instruction inst;
Sanjay Lale685c682012-11-21 18:34:04 -08002339
2340 /*
2341 * Update PC and hold onto current PC in case there is
2342 * an error and we want to rollback the PC
2343 */
2344 curr_pc = vcpu->arch.pc;
2345 er = update_pc(vcpu, cause);
2346 if (er == EMULATE_FAIL)
2347 return er;
2348
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002349 /* Fetch the instruction. */
Sanjay Lale685c682012-11-21 18:34:04 -08002350 if (cause & CAUSEF_BD)
2351 opc += 1;
2352
James Hogan258f3a22016-06-15 19:29:47 +01002353 inst.word = kvm_get_inst(opc, vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08002354
James Hogan258f3a22016-06-15 19:29:47 +01002355 if (inst.word == KVM_INVALID_INST) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002356 kvm_err("%s: Cannot get inst @ %p\n", __func__, opc);
Sanjay Lale685c682012-11-21 18:34:04 -08002357 return EMULATE_FAIL;
2358 }
2359
James Hogan258f3a22016-06-15 19:29:47 +01002360 if (inst.r_format.opcode == spec3_op &&
James Hogan8eeab812016-07-04 19:35:14 +01002361 inst.r_format.func == rdhwr_op &&
2362 inst.r_format.rs == 0 &&
2363 (inst.r_format.re >> 3) == 0) {
James Hogan26f4f3b2014-03-14 13:06:09 +00002364 int usermode = !KVM_GUEST_KERNEL_MODE(vcpu);
James Hogan258f3a22016-06-15 19:29:47 +01002365 int rd = inst.r_format.rd;
2366 int rt = inst.r_format.rt;
2367 int sel = inst.r_format.re & 0x7;
James Hogan6398da12016-06-14 09:40:15 +01002368
James Hogan26f4f3b2014-03-14 13:06:09 +00002369 /* If usermode, check RDHWR rd is allowed by guest HWREna */
2370 if (usermode && !(kvm_read_c0_guest_hwrena(cop0) & BIT(rd))) {
2371 kvm_debug("RDHWR %#x disallowed by HWREna @ %p\n",
2372 rd, opc);
2373 goto emulate_ri;
2374 }
Sanjay Lale685c682012-11-21 18:34:04 -08002375 switch (rd) {
James Hoganaff565a2016-06-15 19:29:52 +01002376 case MIPS_HWR_CPUNUM: /* CPU number */
James Hogancf1fb0f2016-06-15 19:29:55 +01002377 arch->gprs[rt] = vcpu->vcpu_id;
Sanjay Lale685c682012-11-21 18:34:04 -08002378 break;
James Hoganaff565a2016-06-15 19:29:52 +01002379 case MIPS_HWR_SYNCISTEP: /* SYNCI length */
Sanjay Lale685c682012-11-21 18:34:04 -08002380 arch->gprs[rt] = min(current_cpu_data.dcache.linesz,
2381 current_cpu_data.icache.linesz);
2382 break;
James Hoganaff565a2016-06-15 19:29:52 +01002383 case MIPS_HWR_CC: /* Read count register */
James Hogan172e02d2016-07-08 11:53:28 +01002384 arch->gprs[rt] = (s32)kvm_mips_read_count(vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08002385 break;
James Hoganaff565a2016-06-15 19:29:52 +01002386 case MIPS_HWR_CCRES: /* Count register resolution */
Sanjay Lale685c682012-11-21 18:34:04 -08002387 switch (current_cpu_data.cputype) {
2388 case CPU_20KC:
2389 case CPU_25KF:
2390 arch->gprs[rt] = 1;
2391 break;
2392 default:
2393 arch->gprs[rt] = 2;
2394 }
2395 break;
James Hoganaff565a2016-06-15 19:29:52 +01002396 case MIPS_HWR_ULR: /* Read UserLocal register */
Sanjay Lale685c682012-11-21 18:34:04 -08002397 arch->gprs[rt] = kvm_read_c0_guest_userlocal(cop0);
Sanjay Lale685c682012-11-21 18:34:04 -08002398 break;
2399
2400 default:
James Hogan15505672014-03-14 13:06:07 +00002401 kvm_debug("RDHWR %#x not supported @ %p\n", rd, opc);
James Hogan26f4f3b2014-03-14 13:06:09 +00002402 goto emulate_ri;
Sanjay Lale685c682012-11-21 18:34:04 -08002403 }
James Hogan6398da12016-06-14 09:40:15 +01002404
2405 trace_kvm_hwr(vcpu, KVM_TRACE_RDHWR, KVM_TRACE_HWR(rd, sel),
2406 vcpu->arch.gprs[rt]);
Sanjay Lale685c682012-11-21 18:34:04 -08002407 } else {
James Hogan258f3a22016-06-15 19:29:47 +01002408 kvm_debug("Emulate RI not supported @ %p: %#x\n",
2409 opc, inst.word);
James Hogan26f4f3b2014-03-14 13:06:09 +00002410 goto emulate_ri;
Sanjay Lale685c682012-11-21 18:34:04 -08002411 }
2412
James Hogan26f4f3b2014-03-14 13:06:09 +00002413 return EMULATE_DONE;
2414
2415emulate_ri:
Sanjay Lale685c682012-11-21 18:34:04 -08002416 /*
James Hogan26f4f3b2014-03-14 13:06:09 +00002417 * Rollback PC (if in branch delay slot then the PC already points to
2418 * branch target), and pass the RI exception to the guest OS.
Sanjay Lale685c682012-11-21 18:34:04 -08002419 */
James Hogan26f4f3b2014-03-14 13:06:09 +00002420 vcpu->arch.pc = curr_pc;
2421 return kvm_mips_emulate_ri_exc(cause, opc, run, vcpu);
Sanjay Lale685c682012-11-21 18:34:04 -08002422}
2423
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002424enum emulation_result kvm_mips_complete_mmio_load(struct kvm_vcpu *vcpu,
2425 struct kvm_run *run)
Sanjay Lale685c682012-11-21 18:34:04 -08002426{
2427 unsigned long *gpr = &vcpu->arch.gprs[vcpu->arch.io_gpr];
2428 enum emulation_result er = EMULATE_DONE;
Sanjay Lale685c682012-11-21 18:34:04 -08002429
2430 if (run->mmio.len > sizeof(*gpr)) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002431 kvm_err("Bad MMIO length: %d", run->mmio.len);
Sanjay Lale685c682012-11-21 18:34:04 -08002432 er = EMULATE_FAIL;
2433 goto done;
2434 }
2435
Sanjay Lale685c682012-11-21 18:34:04 -08002436 er = update_pc(vcpu, vcpu->arch.pending_load_cause);
2437 if (er == EMULATE_FAIL)
2438 return er;
2439
2440 switch (run->mmio.len) {
2441 case 4:
James Hogan8cffd192016-06-09 14:19:08 +01002442 *gpr = *(s32 *) run->mmio.data;
Sanjay Lale685c682012-11-21 18:34:04 -08002443 break;
2444
2445 case 2:
2446 if (vcpu->mmio_needed == 2)
James Hogan8cffd192016-06-09 14:19:08 +01002447 *gpr = *(s16 *) run->mmio.data;
Sanjay Lale685c682012-11-21 18:34:04 -08002448 else
James Hogan8cffd192016-06-09 14:19:08 +01002449 *gpr = *(u16 *)run->mmio.data;
Sanjay Lale685c682012-11-21 18:34:04 -08002450
2451 break;
2452 case 1:
2453 if (vcpu->mmio_needed == 2)
James Hogan8cffd192016-06-09 14:19:08 +01002454 *gpr = *(s8 *) run->mmio.data;
Sanjay Lale685c682012-11-21 18:34:04 -08002455 else
2456 *gpr = *(u8 *) run->mmio.data;
2457 break;
2458 }
2459
2460 if (vcpu->arch.pending_load_cause & CAUSEF_BD)
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002461 kvm_debug("[%#lx] Completing %d byte BD Load to gpr %d (0x%08lx) type %d\n",
2462 vcpu->arch.pc, run->mmio.len, vcpu->arch.io_gpr, *gpr,
2463 vcpu->mmio_needed);
Sanjay Lale685c682012-11-21 18:34:04 -08002464
2465done:
2466 return er;
2467}
2468
James Hogan31cf7492016-06-09 14:19:09 +01002469static enum emulation_result kvm_mips_emulate_exc(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002470 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002471 struct kvm_run *run,
2472 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002473{
James Hogan8cffd192016-06-09 14:19:08 +01002474 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
Sanjay Lale685c682012-11-21 18:34:04 -08002475 struct mips_coproc *cop0 = vcpu->arch.cop0;
2476 struct kvm_vcpu_arch *arch = &vcpu->arch;
2477 enum emulation_result er = EMULATE_DONE;
2478
2479 if ((kvm_read_c0_guest_status(cop0) & ST0_EXL) == 0) {
2480 /* save old pc */
2481 kvm_write_c0_guest_epc(cop0, arch->pc);
2482 kvm_set_c0_guest_status(cop0, ST0_EXL);
2483
2484 if (cause & CAUSEF_BD)
2485 kvm_set_c0_guest_cause(cop0, CAUSEF_BD);
2486 else
2487 kvm_clear_c0_guest_cause(cop0, CAUSEF_BD);
2488
2489 kvm_change_c0_guest_cause(cop0, (0xff),
2490 (exccode << CAUSEB_EXCCODE));
2491
2492 /* Set PC to the exception entry point */
2493 arch->pc = KVM_GUEST_KSEG0 + 0x180;
2494 kvm_write_c0_guest_badvaddr(cop0, vcpu->arch.host_cp0_badvaddr);
2495
2496 kvm_debug("Delivering EXC %d @ pc %#lx, badVaddr: %#lx\n",
2497 exccode, kvm_read_c0_guest_epc(cop0),
2498 kvm_read_c0_guest_badvaddr(cop0));
2499 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002500 kvm_err("Trying to deliver EXC when EXL is already set\n");
Sanjay Lale685c682012-11-21 18:34:04 -08002501 er = EMULATE_FAIL;
2502 }
2503
2504 return er;
2505}
2506
James Hogan31cf7492016-06-09 14:19:09 +01002507enum emulation_result kvm_mips_check_privilege(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002508 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002509 struct kvm_run *run,
2510 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002511{
2512 enum emulation_result er = EMULATE_DONE;
James Hogan8cffd192016-06-09 14:19:08 +01002513 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
Sanjay Lale685c682012-11-21 18:34:04 -08002514 unsigned long badvaddr = vcpu->arch.host_cp0_badvaddr;
2515
2516 int usermode = !KVM_GUEST_KERNEL_MODE(vcpu);
2517
2518 if (usermode) {
2519 switch (exccode) {
James Hogan16d100db2015-12-16 23:49:33 +00002520 case EXCCODE_INT:
2521 case EXCCODE_SYS:
2522 case EXCCODE_BP:
2523 case EXCCODE_RI:
2524 case EXCCODE_TR:
2525 case EXCCODE_MSAFPE:
2526 case EXCCODE_FPE:
2527 case EXCCODE_MSADIS:
Sanjay Lale685c682012-11-21 18:34:04 -08002528 break;
2529
James Hogan16d100db2015-12-16 23:49:33 +00002530 case EXCCODE_CPU:
Sanjay Lale685c682012-11-21 18:34:04 -08002531 if (((cause & CAUSEF_CE) >> CAUSEB_CE) == 0)
2532 er = EMULATE_PRIV_FAIL;
2533 break;
2534
James Hogan16d100db2015-12-16 23:49:33 +00002535 case EXCCODE_MOD:
Sanjay Lale685c682012-11-21 18:34:04 -08002536 break;
2537
James Hogan16d100db2015-12-16 23:49:33 +00002538 case EXCCODE_TLBL:
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002539 /*
2540 * We we are accessing Guest kernel space, then send an
2541 * address error exception to the guest
2542 */
Sanjay Lale685c682012-11-21 18:34:04 -08002543 if (badvaddr >= (unsigned long) KVM_GUEST_KSEG0) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002544 kvm_debug("%s: LD MISS @ %#lx\n", __func__,
2545 badvaddr);
Sanjay Lale685c682012-11-21 18:34:04 -08002546 cause &= ~0xff;
James Hogan16d100db2015-12-16 23:49:33 +00002547 cause |= (EXCCODE_ADEL << CAUSEB_EXCCODE);
Sanjay Lale685c682012-11-21 18:34:04 -08002548 er = EMULATE_PRIV_FAIL;
2549 }
2550 break;
2551
James Hogan16d100db2015-12-16 23:49:33 +00002552 case EXCCODE_TLBS:
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002553 /*
2554 * We we are accessing Guest kernel space, then send an
2555 * address error exception to the guest
2556 */
Sanjay Lale685c682012-11-21 18:34:04 -08002557 if (badvaddr >= (unsigned long) KVM_GUEST_KSEG0) {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002558 kvm_debug("%s: ST MISS @ %#lx\n", __func__,
2559 badvaddr);
Sanjay Lale685c682012-11-21 18:34:04 -08002560 cause &= ~0xff;
James Hogan16d100db2015-12-16 23:49:33 +00002561 cause |= (EXCCODE_ADES << CAUSEB_EXCCODE);
Sanjay Lale685c682012-11-21 18:34:04 -08002562 er = EMULATE_PRIV_FAIL;
2563 }
2564 break;
2565
James Hogan16d100db2015-12-16 23:49:33 +00002566 case EXCCODE_ADES:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002567 kvm_debug("%s: address error ST @ %#lx\n", __func__,
2568 badvaddr);
Sanjay Lale685c682012-11-21 18:34:04 -08002569 if ((badvaddr & PAGE_MASK) == KVM_GUEST_COMMPAGE_ADDR) {
2570 cause &= ~0xff;
James Hogan16d100db2015-12-16 23:49:33 +00002571 cause |= (EXCCODE_TLBS << CAUSEB_EXCCODE);
Sanjay Lale685c682012-11-21 18:34:04 -08002572 }
2573 er = EMULATE_PRIV_FAIL;
2574 break;
James Hogan16d100db2015-12-16 23:49:33 +00002575 case EXCCODE_ADEL:
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002576 kvm_debug("%s: address error LD @ %#lx\n", __func__,
2577 badvaddr);
Sanjay Lale685c682012-11-21 18:34:04 -08002578 if ((badvaddr & PAGE_MASK) == KVM_GUEST_COMMPAGE_ADDR) {
2579 cause &= ~0xff;
James Hogan16d100db2015-12-16 23:49:33 +00002580 cause |= (EXCCODE_TLBL << CAUSEB_EXCCODE);
Sanjay Lale685c682012-11-21 18:34:04 -08002581 }
2582 er = EMULATE_PRIV_FAIL;
2583 break;
2584 default:
2585 er = EMULATE_PRIV_FAIL;
2586 break;
2587 }
2588 }
2589
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002590 if (er == EMULATE_PRIV_FAIL)
Sanjay Lale685c682012-11-21 18:34:04 -08002591 kvm_mips_emulate_exc(cause, opc, run, vcpu);
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002592
Sanjay Lale685c682012-11-21 18:34:04 -08002593 return er;
2594}
2595
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002596/*
2597 * User Address (UA) fault, this could happen if
Sanjay Lale685c682012-11-21 18:34:04 -08002598 * (1) TLB entry not present/valid in both Guest and shadow host TLBs, in this
2599 * case we pass on the fault to the guest kernel and let it handle it.
2600 * (2) TLB entry is present in the Guest TLB but not in the shadow, in this
2601 * case we inject the TLB from the Guest TLB into the shadow host TLB
2602 */
James Hogan31cf7492016-06-09 14:19:09 +01002603enum emulation_result kvm_mips_handle_tlbmiss(u32 cause,
James Hoganbdb7ed82016-06-09 14:19:07 +01002604 u32 *opc,
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002605 struct kvm_run *run,
2606 struct kvm_vcpu *vcpu)
Sanjay Lale685c682012-11-21 18:34:04 -08002607{
2608 enum emulation_result er = EMULATE_DONE;
James Hogan8cffd192016-06-09 14:19:08 +01002609 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f;
Sanjay Lale685c682012-11-21 18:34:04 -08002610 unsigned long va = vcpu->arch.host_cp0_badvaddr;
2611 int index;
2612
James Hogane4e94c02016-06-09 14:19:05 +01002613 kvm_debug("kvm_mips_handle_tlbmiss: badvaddr: %#lx\n",
2614 vcpu->arch.host_cp0_badvaddr);
Sanjay Lale685c682012-11-21 18:34:04 -08002615
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002616 /*
2617 * KVM would not have got the exception if this entry was valid in the
2618 * shadow host TLB. Check the Guest TLB, if the entry is not there then
2619 * send the guest an exception. The guest exc handler should then inject
2620 * an entry into the guest TLB.
Sanjay Lale685c682012-11-21 18:34:04 -08002621 */
2622 index = kvm_mips_guest_tlb_lookup(vcpu,
James Hogancaa1faa2015-12-16 23:49:26 +00002623 (va & VPN2_MASK) |
Paul Burtonca64c2b2016-05-06 14:36:20 +01002624 (kvm_read_c0_guest_entryhi(vcpu->arch.cop0) &
2625 KVM_ENTRYHI_ASID));
Sanjay Lale685c682012-11-21 18:34:04 -08002626 if (index < 0) {
James Hogan16d100db2015-12-16 23:49:33 +00002627 if (exccode == EXCCODE_TLBL) {
Sanjay Lale685c682012-11-21 18:34:04 -08002628 er = kvm_mips_emulate_tlbmiss_ld(cause, opc, run, vcpu);
James Hogan16d100db2015-12-16 23:49:33 +00002629 } else if (exccode == EXCCODE_TLBS) {
Sanjay Lale685c682012-11-21 18:34:04 -08002630 er = kvm_mips_emulate_tlbmiss_st(cause, opc, run, vcpu);
2631 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002632 kvm_err("%s: invalid exc code: %d\n", __func__,
2633 exccode);
Sanjay Lale685c682012-11-21 18:34:04 -08002634 er = EMULATE_FAIL;
2635 }
2636 } else {
2637 struct kvm_mips_tlb *tlb = &vcpu->arch.guest_tlb[index];
2638
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002639 /*
2640 * Check if the entry is valid, if not then setup a TLB invalid
2641 * exception to the guest
2642 */
Sanjay Lale685c682012-11-21 18:34:04 -08002643 if (!TLB_IS_VALID(*tlb, va)) {
James Hogan16d100db2015-12-16 23:49:33 +00002644 if (exccode == EXCCODE_TLBL) {
Sanjay Lale685c682012-11-21 18:34:04 -08002645 er = kvm_mips_emulate_tlbinv_ld(cause, opc, run,
2646 vcpu);
James Hogan16d100db2015-12-16 23:49:33 +00002647 } else if (exccode == EXCCODE_TLBS) {
Sanjay Lale685c682012-11-21 18:34:04 -08002648 er = kvm_mips_emulate_tlbinv_st(cause, opc, run,
2649 vcpu);
2650 } else {
Deng-Cheng Zhu6ad78a52014-06-26 12:11:35 -07002651 kvm_err("%s: invalid exc code: %d\n", __func__,
2652 exccode);
Sanjay Lale685c682012-11-21 18:34:04 -08002653 er = EMULATE_FAIL;
2654 }
2655 } else {
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002656 kvm_debug("Injecting hi: %#lx, lo0: %#lx, lo1: %#lx into shadow host TLB\n",
James Hogan9fbfb062016-06-09 14:19:17 +01002657 tlb->tlb_hi, tlb->tlb_lo[0], tlb->tlb_lo[1]);
Deng-Cheng Zhud116e812014-06-26 12:11:34 -07002658 /*
2659 * OK we have a Guest TLB entry, now inject it into the
2660 * shadow host TLB
2661 */
James Hogan26ee17f2016-06-09 14:19:13 +01002662 kvm_mips_handle_mapped_seg_tlb_fault(vcpu, tlb);
Sanjay Lale685c682012-11-21 18:34:04 -08002663 }
2664 }
2665
2666 return er;
2667}