2012-11-22 02:34:16 +00:00
|
|
|
/*
|
2014-06-26 19:11:34 +00:00
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* KVM/MIPS: Binary Patching for privileged instructions, reduces traps.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
|
|
|
|
* Authors: Sanjay Lal <sanjayl@kymasys.com>
|
|
|
|
*/
|
2012-11-22 02:34:16 +00:00
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/kvm_host.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/bootmem.h>
|
2014-05-29 09:16:25 +00:00
|
|
|
#include <asm/cacheflush.h>
|
2012-11-22 02:34:16 +00:00
|
|
|
|
2014-06-26 19:11:38 +00:00
|
|
|
#include "commpage.h"
|
2012-11-22 02:34:16 +00:00
|
|
|
|
|
|
|
#define SYNCI_TEMPLATE 0x041f0000
|
|
|
|
#define SYNCI_BASE(x) (((x) >> 21) & 0x1f)
|
|
|
|
#define SYNCI_OFFSET ((x) & 0xffff)
|
|
|
|
|
|
|
|
#define LW_TEMPLATE 0x8c000000
|
|
|
|
#define CLEAR_TEMPLATE 0x00000020
|
|
|
|
#define SW_TEMPLATE 0xac000000
|
|
|
|
|
2016-06-15 18:29:46 +00:00
|
|
|
/**
|
|
|
|
* kvm_mips_trans_replace() - Replace trapping instruction in guest memory.
|
|
|
|
* @vcpu: Virtual CPU.
|
|
|
|
* @opc: PC of instruction to replace.
|
|
|
|
* @replace: Instruction to write
|
|
|
|
*/
|
|
|
|
static int kvm_mips_trans_replace(struct kvm_vcpu *vcpu, u32 *opc, u32 replace)
|
|
|
|
{
|
|
|
|
unsigned long kseg0_opc, flags;
|
|
|
|
|
|
|
|
if (KVM_GUEST_KSEGX(opc) == KVM_GUEST_KSEG0) {
|
|
|
|
kseg0_opc =
|
|
|
|
CKSEG0ADDR(kvm_mips_translate_guest_kseg0_to_hpa
|
|
|
|
(vcpu, (unsigned long) opc));
|
|
|
|
memcpy((void *)kseg0_opc, (void *)&replace, sizeof(u32));
|
|
|
|
local_flush_icache_range(kseg0_opc, kseg0_opc + 32);
|
|
|
|
} else if (KVM_GUEST_KSEGX((unsigned long) opc) == KVM_GUEST_KSEG23) {
|
|
|
|
local_irq_save(flags);
|
|
|
|
memcpy((void *)opc, (void *)&replace, sizeof(u32));
|
|
|
|
local_flush_icache_range((unsigned long)opc,
|
|
|
|
(unsigned long)opc + 32);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
} else {
|
|
|
|
kvm_err("%s: Invalid address: %p\n", __func__, opc);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-09 13:19:07 +00:00
|
|
|
int kvm_mips_trans_cache_index(u32 inst, u32 *opc,
|
2014-06-26 19:11:34 +00:00
|
|
|
struct kvm_vcpu *vcpu)
|
2012-11-22 02:34:16 +00:00
|
|
|
{
|
|
|
|
/* Replace the CACHE instruction, with a NOP */
|
2016-06-15 18:29:46 +00:00
|
|
|
return kvm_mips_trans_replace(vcpu, opc, 0x00000000);
|
2012-11-22 02:34:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-06-26 19:11:34 +00:00
|
|
|
* Address based CACHE instructions are transformed into synci(s). A little
|
|
|
|
* heavy for just D-cache invalidates, but avoids an expensive trap
|
2012-11-22 02:34:16 +00:00
|
|
|
*/
|
2016-06-09 13:19:07 +00:00
|
|
|
int kvm_mips_trans_cache_va(u32 inst, u32 *opc,
|
2014-06-26 19:11:34 +00:00
|
|
|
struct kvm_vcpu *vcpu)
|
2012-11-22 02:34:16 +00:00
|
|
|
{
|
2016-06-09 13:19:08 +00:00
|
|
|
u32 synci_inst = SYNCI_TEMPLATE, base, offset;
|
2012-11-22 02:34:16 +00:00
|
|
|
|
|
|
|
base = (inst >> 21) & 0x1f;
|
|
|
|
offset = inst & 0xffff;
|
|
|
|
synci_inst |= (base << 21);
|
|
|
|
synci_inst |= offset;
|
|
|
|
|
2016-06-15 18:29:46 +00:00
|
|
|
return kvm_mips_trans_replace(vcpu, opc, synci_inst);
|
2012-11-22 02:34:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-09 13:19:07 +00:00
|
|
|
int kvm_mips_trans_mfc0(u32 inst, u32 *opc, struct kvm_vcpu *vcpu)
|
2012-11-22 02:34:16 +00:00
|
|
|
{
|
2016-06-09 13:19:08 +00:00
|
|
|
u32 rt, rd, sel;
|
|
|
|
u32 mfc0_inst;
|
2012-11-22 02:34:16 +00:00
|
|
|
|
|
|
|
rt = (inst >> 16) & 0x1f;
|
|
|
|
rd = (inst >> 11) & 0x1f;
|
|
|
|
sel = inst & 0x7;
|
|
|
|
|
|
|
|
if ((rd == MIPS_CP0_ERRCTL) && (sel == 0)) {
|
|
|
|
mfc0_inst = CLEAR_TEMPLATE;
|
2016-06-15 18:29:45 +00:00
|
|
|
mfc0_inst |= ((rt & 0x1f) << 11);
|
2012-11-22 02:34:16 +00:00
|
|
|
} else {
|
|
|
|
mfc0_inst = LW_TEMPLATE;
|
|
|
|
mfc0_inst |= ((rt & 0x1f) << 16);
|
2015-12-16 23:49:31 +00:00
|
|
|
mfc0_inst |= offsetof(struct kvm_mips_commpage,
|
|
|
|
cop0.reg[rd][sel]);
|
2012-11-22 02:34:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-15 18:29:46 +00:00
|
|
|
return kvm_mips_trans_replace(vcpu, opc, mfc0_inst);
|
2012-11-22 02:34:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-09 13:19:07 +00:00
|
|
|
int kvm_mips_trans_mtc0(u32 inst, u32 *opc, struct kvm_vcpu *vcpu)
|
2012-11-22 02:34:16 +00:00
|
|
|
{
|
2016-06-09 13:19:08 +00:00
|
|
|
u32 rt, rd, sel;
|
|
|
|
u32 mtc0_inst = SW_TEMPLATE;
|
2012-11-22 02:34:16 +00:00
|
|
|
|
|
|
|
rt = (inst >> 16) & 0x1f;
|
|
|
|
rd = (inst >> 11) & 0x1f;
|
|
|
|
sel = inst & 0x7;
|
|
|
|
|
|
|
|
mtc0_inst |= ((rt & 0x1f) << 16);
|
2015-12-16 23:49:31 +00:00
|
|
|
mtc0_inst |= offsetof(struct kvm_mips_commpage, cop0.reg[rd][sel]);
|
2012-11-22 02:34:16 +00:00
|
|
|
|
2016-06-15 18:29:46 +00:00
|
|
|
return kvm_mips_trans_replace(vcpu, opc, mtc0_inst);
|
2012-11-22 02:34:16 +00:00
|
|
|
}
|