diff options
author | Chenyi Qiang | 2020-07-14 10:41:48 +0200 |
---|---|---|
committer | Eduardo Habkost | 2020-07-16 17:05:03 +0200 |
commit | 644e3c5d812d1d672388124eeb43d0e26b3ff58c (patch) | |
tree | cde51cd65d0c06c0bd851d9c3884a4875861e6fc /target | |
parent | target/i386: fix model number and add missing features for Icelake-Server CPU... (diff) | |
download | qemu-644e3c5d812d1d672388124eeb43d0e26b3ff58c.tar.gz qemu-644e3c5d812d1d672388124eeb43d0e26b3ff58c.tar.xz qemu-644e3c5d812d1d672388124eeb43d0e26b3ff58c.zip |
target/i386: add the missing vmx features for Skylake-Server and Cascadelake-Server CPU models
Add the missing vmx features in Skylake-Server and Cascadelake-Server
CPU models based on the output of Paolo's script.
Signed-off-by: Chenyi Qiang <chenyi.qiang@intel.com>
Message-Id: <20200714084148.26690-4-chenyi.qiang@intel.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/i386/cpu.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/i386/cpu.c b/target/i386/cpu.c index 132ef90421..588f32e136 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -3034,6 +3034,13 @@ static X86CPUDefinition builtin_x86_defs[] = { { /* end of list */ } } }, + { + .version = 4, + .props = (PropValue[]) { + { "vmx-eptp-switching", "on" }, + { /* end of list */ } + } + }, { /* end of list */ } } }, @@ -3158,6 +3165,13 @@ static X86CPUDefinition builtin_x86_defs[] = { { /* end of list */ } }, }, + { .version = 4, + .note = "ARCH_CAPABILITIES, no TSX", + .props = (PropValue[]) { + { "vmx-eptp-switching", "on" }, + { /* end of list */ } + }, + }, { /* end of list */ } } }, |