KVM: PPC: Fix mfspr/mtspr MMUCFG emulation
authorMihai Caraman <mihai.caraman@freescale.com>
Thu, 20 Dec 2012 04:52:39 +0000 (04:52 +0000)
committerAlexander Graf <agraf@suse.de>
Thu, 10 Jan 2013 12:30:11 +0000 (13:30 +0100)
On mfspr/mtspr emulation path Book3E's MMUCFG SPR with value 1015 clashes
with G4's MSSSR0 SPR. Move MSSSR0 emulation from generic part to Books3S.
MSSSR0 also clashes with Book3S's DABRX SPR. DABRX was not explicitly
handled so Book3S execution flow will behave as before.

Signed-off-by: Mihai Caraman <mihai.caraman@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/kvm/book3s_emulate.c
arch/powerpc/kvm/emulate.c

index c88161bed8dfe5afc48de90a415ce82af5950c0f..836c56975e21523577822c91b6ae68c1333702a5 100644 (file)
@@ -455,6 +455,7 @@ int kvmppc_core_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, ulong spr_val)
        case SPRN_PMC3_GEKKO:
        case SPRN_PMC4_GEKKO:
        case SPRN_WPAR_GEKKO:
+       case SPRN_MSSSR0:
                break;
 unprivileged:
        default:
@@ -551,6 +552,7 @@ int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, ulong *spr_val)
        case SPRN_PMC3_GEKKO:
        case SPRN_PMC4_GEKKO:
        case SPRN_WPAR_GEKKO:
+       case SPRN_MSSSR0:
                *spr_val = 0;
                break;
        default:
index b0855e5d8905ee50e6422ca9edfc37aa952f6b21..71abcf4e2bdafa13a8226bea831a49545c9c2810 100644 (file)
@@ -149,8 +149,6 @@ static int kvmppc_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs)
        case SPRN_TBWL: break;
        case SPRN_TBWU: break;
 
-       case SPRN_MSSSR0: break;
-
        case SPRN_DEC:
                vcpu->arch.dec = spr_val;
                kvmppc_emulate_dec(vcpu);
@@ -201,9 +199,6 @@ static int kvmppc_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt)
        case SPRN_PIR:
                spr_val = vcpu->vcpu_id;
                break;
-       case SPRN_MSSSR0:
-               spr_val = 0;
-               break;
 
        /* Note: mftb and TBRL/TBWL are user-accessible, so
         * the guest can always access the real TB anyways.