aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorChenyi Qiang <chenyi.qiang@intel.com>2020-07-14 16:41:47 +0800
committerEduardo Habkost <ehabkost@redhat.com>2020-07-16 11:05:03 -0400
commite0013791b9326945ccd09b5b602437beb322cab8 (patch)
treee2be1eddc81fe08224a4a3f905d2dc6207733c98 /target
parent5cb287d2bd578dfe4897458793b4fce35bc4f744 (diff)
downloadqemu-e0013791b9326945ccd09b5b602437beb322cab8.zip
qemu-e0013791b9326945ccd09b5b602437beb322cab8.tar.gz
qemu-e0013791b9326945ccd09b5b602437beb322cab8.tar.bz2
target/i386: fix model number and add missing features for Icelake-Server CPU model
Add the missing features(sha_ni, avx512ifma, rdpid, fsrm, vmx-rdseed-exit, vmx-pml, vmx-eptp-switching) and change the model number to 106 in the Icelake-Server-v4 CPU model. Signed-off-by: Chenyi Qiang <chenyi.qiang@intel.com> Message-Id: <20200714084148.26690-3-chenyi.qiang@intel.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target')
-rw-r--r--target/i386/cpu.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 3885826..132ef90 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -3512,6 +3512,20 @@ static X86CPUDefinition builtin_x86_defs[] = {
{ /* end of list */ }
},
},
+ {
+ .version = 4,
+ .props = (PropValue[]) {
+ { "sha-ni", "on" },
+ { "avx512ifma", "on" },
+ { "rdpid", "on" },
+ { "fsrm", "on" },
+ { "vmx-rdseed-exit", "on" },
+ { "vmx-pml", "on" },
+ { "vmx-eptp-switching", "on" },
+ { "model", "106" },
+ { /* end of list */ }
+ },
+ },
{ /* end of list */ }
}
},