KVM: ppc: e500: Add MMUCFG and PVR emulation
authorLiu Yu <yu.liu@freescale.com>
Fri, 5 Jun 2009 06:54:31 +0000 (14:54 +0800)
committerAvi Kivity <avi@redhat.com>
Thu, 10 Sep 2009 05:32:47 +0000 (08:32 +0300)
Latest kernel started to use these two registers.

Signed-off-by: Liu Yu <yu.liu@freescale.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/powerpc/kvm/e500_emulate.c
arch/powerpc/kvm/emulate.c

index 3f76041..be95b8d 100644 (file)
@@ -180,6 +180,9 @@ int kvmppc_core_emulate_mfspr(struct kvm_vcpu *vcpu, int sprn, int rt)
        case SPRN_MMUCSR0:
                vcpu->arch.gpr[rt] = 0; break;
 
+       case SPRN_MMUCFG:
+               vcpu->arch.gpr[rt] = mfspr(SPRN_MMUCFG); break;
+
        /* extra exceptions */
        case SPRN_IVOR32:
                vcpu->arch.gpr[rt] = vcpu->arch.ivor[BOOKE_IRQPRIO_SPE_UNAVAIL];
index f8b8248..28a8237 100644 (file)
@@ -188,6 +188,8 @@ int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
                                vcpu->arch.gpr[rt] = vcpu->arch.srr1; break;
                        case SPRN_PVR:
                                vcpu->arch.gpr[rt] = mfspr(SPRN_PVR); break;
+                       case SPRN_PIR:
+                               vcpu->arch.gpr[rt] = mfspr(SPRN_PIR); break;
 
                        /* Note: mftb and TBRL/TBWL are user-accessible, so
                         * the guest can always access the real TB anyways.