From ae01caad1da4c10cc4e241d8a62535da9ecfaf72 Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Wed, 17 Jun 2020 14:50:42 +0200 Subject: [PATCH 1/4] cpu_map: Add missing x86 features in 0x80000008 CPUID leaf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 892b7c70f66abc511e1251382c9183493024f253 upstream. Signed-off-by: Jiri Denemark Reviewed-by: Daniel P. Berrangé [Fix conflict during backport, ony merge x86_features.xml.] Signed-off-by: Yanjing Zhou --- src/cpu_map/x86_features.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cpu_map/x86_features.xml b/src/cpu_map/x86_features.xml index 8525ae0fa5..e0e1388940 100644 --- a/src/cpu_map/x86_features.xml +++ b/src/cpu_map/x86_features.xml @@ -474,12 +474,18 @@ + + + + + + -- Gitee From 2849cbf8690ee166dcb211a69589c0821680779a Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Wed, 17 Jun 2020 11:48:16 +0200 Subject: [PATCH 2/4] cpu_map: Add missing AMD SVM features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 96a39aad705f8e37950109d11636085b212af790 uptream. Signed-off-by: Jiri Denemark Reviewed-by: Daniel P. Berrangé [Fix conflict during backport, ony merge x86_features.xml.] Signed-off-by: Yanjing Zhou --- src/cpu_map/x86_features.xml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/cpu_map/x86_features.xml b/src/cpu_map/x86_features.xml index e0e1388940..c591ef5a77 100644 --- a/src/cpu_map/x86_features.xml +++ b/src/cpu_map/x86_features.xml @@ -496,6 +496,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- Gitee From 21b8f7f65b6a2f2446b06af993a3af25d6a80e1b Mon Sep 17 00:00:00 2001 From: Tim Wiederhake Date: Mon, 22 Feb 2021 13:20:09 +0100 Subject: [PATCH 3/4] cpumap: Add support for ibrs CPU feature commit 5c17a7ba41670f3182186c06e621995b5d03fc95 upstream Signed-off-by: Tim Wiederhake Reviewed-by: Jiri Denemark [Fix conflict during backport, ony merge x86_features.xml.] Signed-off-by: Yanjing Zhou --- src/cpu_map/x86_features.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cpu_map/x86_features.xml b/src/cpu_map/x86_features.xml index c591ef5a77..fa4fb14b24 100644 --- a/src/cpu_map/x86_features.xml +++ b/src/cpu_map/x86_features.xml @@ -483,6 +483,9 @@ + + + -- Gitee From fd6cceb69efbc38b9bc13ac5b23bb4c02f6ed57b Mon Sep 17 00:00:00 2001 From: Yanjing Zhou Date: Sun, 28 Apr 2024 11:39:58 +0800 Subject: [PATCH 4/4] cpu: Add new Dharma CPU model Add Hygon Dharma CPU model to the processor model. Signed-off-by: Yanjing Zhou --- src/cpu_map/Makefile.inc.am | 1 + src/cpu_map/index.xml | 1 + src/cpu_map/x86_Dharma.xml | 83 +++++++++++++++++++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 src/cpu_map/x86_Dharma.xml diff --git a/src/cpu_map/Makefile.inc.am b/src/cpu_map/Makefile.inc.am index 203d1feb6b..3293445586 100644 --- a/src/cpu_map/Makefile.inc.am +++ b/src/cpu_map/Makefile.inc.am @@ -27,6 +27,7 @@ cpumap_DATA = \ cpu_map/x86_coreduo.xml \ cpu_map/x86_cpu64-rhel5.xml \ cpu_map/x86_cpu64-rhel6.xml \ + cpu_map/x86_Dharma.xml \ cpu_map/x86_Dhyana.xml \ cpu_map/x86_EPYC.xml \ cpu_map/x86_EPYC-IBPB.xml \ diff --git a/src/cpu_map/index.xml b/src/cpu_map/index.xml index 1b7f50d76a..caa80cc9f9 100644 --- a/src/cpu_map/index.xml +++ b/src/cpu_map/index.xml @@ -69,6 +69,7 @@ + diff --git a/src/cpu_map/x86_Dharma.xml b/src/cpu_map/x86_Dharma.xml new file mode 100644 index 0000000000..1e7dea3867 --- /dev/null +++ b/src/cpu_map/x86_Dharma.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- Gitee