|
|
902636 |
From 27d7b085f2f568050d638b694ed2f51495db718c Mon Sep 17 00:00:00 2001
|
|
|
902636 |
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
902636 |
Date: Mon, 17 Feb 2020 16:23:15 +0000
|
|
|
902636 |
Subject: [PATCH 5/9] target/i386: check for availability of MSR_IA32_UCODE_REV
|
|
|
902636 |
as an emulated MSR
|
|
|
902636 |
MIME-Version: 1.0
|
|
|
902636 |
Content-Type: text/plain; charset=UTF-8
|
|
|
902636 |
Content-Transfer-Encoding: 8bit
|
|
|
902636 |
|
|
|
902636 |
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
902636 |
Message-id: <20200217162316.2464-6-pbonzini@redhat.com>
|
|
|
902636 |
Patchwork-id: 93898
|
|
|
902636 |
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH 5/6] target/i386: check for availability of MSR_IA32_UCODE_REV as an emulated MSR
|
|
|
902636 |
Bugzilla: 1791648
|
|
|
902636 |
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
|
902636 |
RH-Acked-by: Maxim Levitsky <mlevitsk@redhat.com>
|
|
|
902636 |
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
902636 |
|
|
|
902636 |
Even though MSR_IA32_UCODE_REV has been available long before Linux 5.6,
|
|
|
902636 |
which added it to the emulated MSR list, a bug caused the microcode
|
|
|
902636 |
version to revert to 0x100000000 on INIT. As a result, processors other
|
|
|
902636 |
than the bootstrap processor would not see the host microcode revision;
|
|
|
902636 |
some Windows version complain loudly about this and crash with a
|
|
|
902636 |
fairly explicit MICROCODE REVISION MISMATCH error.
|
|
|
902636 |
|
|
|
902636 |
[If running 5.6 prereleases, the kernel fix "KVM: x86: do not reset
|
|
|
902636 |
microcode version on INIT or RESET" should also be applied.]
|
|
|
902636 |
|
|
|
902636 |
Reported-by: Alex Williamson <alex.williamson@redhat.com>
|
|
|
902636 |
Message-id: <20200211175516.10716-1-pbonzini@redhat.com>
|
|
|
902636 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
902636 |
(cherry picked from commit 6702514814c7e7b4cbf179624539b5f38c72740b)
|
|
|
902636 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
902636 |
---
|
|
|
902636 |
target/i386/kvm.c | 7 +++++--
|
|
|
902636 |
1 file changed, 5 insertions(+), 2 deletions(-)
|
|
|
902636 |
|
|
|
902636 |
diff --git a/target/i386/kvm.c b/target/i386/kvm.c
|
|
|
902636 |
index 6c61aef..99840ca 100644
|
|
|
902636 |
--- a/target/i386/kvm.c
|
|
|
902636 |
+++ b/target/i386/kvm.c
|
|
|
902636 |
@@ -105,6 +105,7 @@ static bool has_msr_smi_count;
|
|
|
902636 |
static bool has_msr_arch_capabs;
|
|
|
902636 |
static bool has_msr_core_capabs;
|
|
|
902636 |
static bool has_msr_vmx_vmfunc;
|
|
|
902636 |
+static bool has_msr_ucode_rev;
|
|
|
902636 |
|
|
|
902636 |
static uint32_t has_architectural_pmu_version;
|
|
|
902636 |
static uint32_t num_architectural_pmu_gp_counters;
|
|
|
902636 |
@@ -2056,6 +2057,9 @@ static int kvm_get_supported_msrs(KVMState *s)
|
|
|
902636 |
case MSR_IA32_VMX_VMFUNC:
|
|
|
902636 |
has_msr_vmx_vmfunc = true;
|
|
|
902636 |
break;
|
|
|
902636 |
+ case MSR_IA32_UCODE_REV:
|
|
|
902636 |
+ has_msr_ucode_rev = true;
|
|
|
902636 |
+ break;
|
|
|
902636 |
}
|
|
|
902636 |
}
|
|
|
902636 |
}
|
|
|
902636 |
@@ -2696,8 +2700,7 @@ static void kvm_init_msrs(X86CPU *cpu)
|
|
|
902636 |
env->features[FEAT_CORE_CAPABILITY]);
|
|
|
902636 |
}
|
|
|
902636 |
|
|
|
902636 |
- if (kvm_arch_get_supported_msr_feature(kvm_state,
|
|
|
902636 |
- MSR_IA32_UCODE_REV)) {
|
|
|
902636 |
+ if (has_msr_ucode_rev) {
|
|
|
902636 |
kvm_msr_entry_add(cpu, MSR_IA32_UCODE_REV, cpu->ucode_rev);
|
|
|
902636 |
}
|
|
|
902636 |
|
|
|
902636 |
--
|
|
|
902636 |
1.8.3.1
|
|
|
902636 |
|