Blame SOURCES/kvm-i386-Add-Icelake-Server-v6-CPU-model-with-5-level-EP.patch

0727d3
From ccaa1135bd1aa90c94f0e8b5417bd2a420134e6c Mon Sep 17 00:00:00 2001
0727d3
From: Jon Maloy <jmaloy@redhat.com>
0727d3
Date: Wed, 30 Mar 2022 14:52:34 -0400
0727d3
Subject: [PATCH 08/18] i386: Add Icelake-Server-v6 CPU model with 5-level EPT
0727d3
 support
0727d3
0727d3
RH-Author: Jon Maloy <jmaloy@redhat.com>
0727d3
RH-MergeRequest: 139: vmxcap: Add 5-level EPT bit
0727d3
RH-Commit: [2/2] e913746b2df9cbd0308014ab5cc72577458857fa (jmaloy/qemu-kvm)
0727d3
RH-Bugzilla: 2065207
0727d3
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
0727d3
0727d3
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=2065207
0727d3
UPSTREAM: Merged
0727d3
0727d3
commit: 12cab535db6440af41ed8dfefe908a594321b6ce
0727d3
Author: Vitaly Kuznetsov <vkuznets@redhat.com>
0727d3
Date:   Mon Feb 21 15:53:15 2022 +0100
0727d3
0727d3
    i386: Add Icelake-Server-v6 CPU model with 5-level EPT support
0727d3
0727d3
    Windows 11 with WSL2 enabled (Hyper-V) fails to boot with Icelake-Server
0727d3
    {-v5} CPU model but boots well with '-cpu host'. Apparently, it expects
0727d3
    5-level paging and 5-level EPT support to come in pair but QEMU's
0727d3
    Icelake-Server CPU model lacks the later. Introduce 'Icelake-Server-v6'
0727d3
    CPU model with 'vmx-page-walk-5' enabled by default.
0727d3
0727d3
    Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
0727d3
    Message-Id: <20220221145316.576138-1-vkuznets@redhat.com>
0727d3
    Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
0727d3
0727d3
(cherry picked from commit 12cab535db6440af41ed8dfefe908a594321b6ce)
0727d3
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
0727d3
---
0727d3
 target/i386/cpu.c | 8 ++++++++
0727d3
 1 file changed, 8 insertions(+)
0727d3
0727d3
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
0727d3
index aa9e636800..6e25d13339 100644
0727d3
--- a/target/i386/cpu.c
0727d3
+++ b/target/i386/cpu.c
0727d3
@@ -3505,6 +3505,14 @@ static const X86CPUDefinition builtin_x86_defs[] = {
0727d3
                     { /* end of list */ }
0727d3
                 },
0727d3
             },
0727d3
+            {
0727d3
+                .version = 6,
0727d3
+                .note = "5-level EPT",
0727d3
+                .props = (PropValue[]) {
0727d3
+                    { "vmx-page-walk-5", "on" },
0727d3
+                    { /* end of list */ }
0727d3
+                },
0727d3
+            },
0727d3
             { /* end of list */ }
0727d3
         }
0727d3
     },
0727d3
-- 
0727d3
2.27.0
0727d3