MIPS: KVM: Simplify default guest Config registers
Various semi-used definitions exist in kvm_host.h for the default guest config registers. Remove them and use the appropriate values directly when initialising the Config registers. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Gleb Natapov <gleb@kernel.org> Cc: linux-mips@linux-mips.org Cc: kvm@vger.kernel.org
This commit is contained in:
parent
7bd4acec42
commit
2211ee810a
|
@ -265,31 +265,6 @@ struct mips_coproc {
|
||||||
#define CP0C3_SM 1
|
#define CP0C3_SM 1
|
||||||
#define CP0C3_TL 0
|
#define CP0C3_TL 0
|
||||||
|
|
||||||
/* Have config1, Cacheable, noncoherent, write-back, write allocate*/
|
|
||||||
#define MIPS_CONFIG0 \
|
|
||||||
((1 << CP0C0_M) | (0x3 << CP0C0_K0))
|
|
||||||
|
|
||||||
/* Have config2, no coprocessor2 attached, no MDMX support attached,
|
|
||||||
no performance counters, watch registers present,
|
|
||||||
no code compression, EJTAG present, no FPU, no watch registers */
|
|
||||||
#define MIPS_CONFIG1 \
|
|
||||||
((1 << CP0C1_M) | \
|
|
||||||
(0 << CP0C1_C2) | (0 << CP0C1_MD) | (0 << CP0C1_PC) | \
|
|
||||||
(0 << CP0C1_WR) | (0 << CP0C1_CA) | (1 << CP0C1_EP) | \
|
|
||||||
(0 << CP0C1_FP))
|
|
||||||
|
|
||||||
/* Have config3, no tertiary/secondary caches implemented */
|
|
||||||
#define MIPS_CONFIG2 \
|
|
||||||
((1 << CP0C2_M))
|
|
||||||
|
|
||||||
/* No config4, no DSP ASE, no large physaddr (PABITS),
|
|
||||||
no external interrupt controller, no vectored interrupts,
|
|
||||||
no 1kb pages, no SmartMIPS ASE, no trace logic */
|
|
||||||
#define MIPS_CONFIG3 \
|
|
||||||
((0 << CP0C3_M) | (0 << CP0C3_DSPP) | (0 << CP0C3_LPA) | \
|
|
||||||
(0 << CP0C3_VEIC) | (0 << CP0C3_VInt) | (0 << CP0C3_SP) | \
|
|
||||||
(0 << CP0C3_SM) | (0 << CP0C3_TL))
|
|
||||||
|
|
||||||
/* MMU types, the first four entries have the same layout as the
|
/* MMU types, the first four entries have the same layout as the
|
||||||
CP0C0_MT field. */
|
CP0C0_MT field. */
|
||||||
enum mips_mmu_types {
|
enum mips_mmu_types {
|
||||||
|
|
|
@ -396,8 +396,9 @@ static int kvm_trap_emul_vcpu_setup(struct kvm_vcpu *vcpu)
|
||||||
* guest will come up as expected, for now we simulate a MIPS 24kc
|
* guest will come up as expected, for now we simulate a MIPS 24kc
|
||||||
*/
|
*/
|
||||||
kvm_write_c0_guest_prid(cop0, 0x00019300);
|
kvm_write_c0_guest_prid(cop0, 0x00019300);
|
||||||
kvm_write_c0_guest_config(cop0,
|
/* Have config1, Cacheable, noncoherent, write-back, write allocate */
|
||||||
MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
kvm_write_c0_guest_config(cop0, MIPS_CONF_M | (0x3 << CP0C0_K0) |
|
||||||
|
(0x1 << CP0C0_AR) |
|
||||||
(MMU_TYPE_R4000 << CP0C0_MT));
|
(MMU_TYPE_R4000 << CP0C0_MT));
|
||||||
|
|
||||||
/* Read the cache characteristics from the host Config1 Register */
|
/* Read the cache characteristics from the host Config1 Register */
|
||||||
|
@ -413,10 +414,12 @@ static int kvm_trap_emul_vcpu_setup(struct kvm_vcpu *vcpu)
|
||||||
(1 << CP0C1_WR) | (1 << CP0C1_CA));
|
(1 << CP0C1_WR) | (1 << CP0C1_CA));
|
||||||
kvm_write_c0_guest_config1(cop0, config1);
|
kvm_write_c0_guest_config1(cop0, config1);
|
||||||
|
|
||||||
kvm_write_c0_guest_config2(cop0, MIPS_CONFIG2);
|
/* Have config3, no tertiary/secondary caches implemented */
|
||||||
/* MIPS_CONFIG2 | (read_c0_config2() & 0xfff) */
|
kvm_write_c0_guest_config2(cop0, MIPS_CONF_M);
|
||||||
kvm_write_c0_guest_config3(cop0, MIPS_CONFIG3 | (0 << CP0C3_VInt) |
|
/* MIPS_CONF_M | (read_c0_config2() & 0xfff) */
|
||||||
(1 << CP0C3_ULRI));
|
|
||||||
|
/* No config4, UserLocal */
|
||||||
|
kvm_write_c0_guest_config3(cop0, MIPS_CONF3_ULRI);
|
||||||
|
|
||||||
/* Set Wait IE/IXMT Ignore in Config7, IAR, AR */
|
/* Set Wait IE/IXMT Ignore in Config7, IAR, AR */
|
||||||
kvm_write_c0_guest_config7(cop0, (MIPS_CONF7_WII) | (1 << 10));
|
kvm_write_c0_guest_config7(cop0, (MIPS_CONF7_WII) | (1 << 10));
|
||||||
|
|
Loading…
Reference in New Issue