From eed7a2c4f76acff535a31e73d941f4d1cda702c5 Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Tue, 22 Oct 2024 11:47:41 +0200 Subject: [PATCH] cpu_map: Add versions of Cooperlake CPU model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jiri Denemark Reviewed-by: Daniel P. Berrangé --- src/cpu_map/index.xml | 2 + src/cpu_map/meson.build | 2 + src/cpu_map/x86_Cooperlake-v1.xml | 6 + src/cpu_map/x86_Cooperlake-v2.xml | 164 ++++++++++++++++++ .../x86_64-cpuid-Cooperlake-host.xml | 2 +- .../domaincapsdata/qemu_5.2.0-q35.x86_64.xml | 21 ++- .../domaincapsdata/qemu_5.2.0-tcg.x86_64.xml | 35 +++- tests/domaincapsdata/qemu_5.2.0.x86_64.xml | 21 ++- .../domaincapsdata/qemu_6.0.0-q35.x86_64.xml | 21 ++- .../domaincapsdata/qemu_6.0.0-tcg.x86_64.xml | 35 +++- tests/domaincapsdata/qemu_6.0.0.x86_64.xml | 21 ++- .../domaincapsdata/qemu_6.1.0-q35.x86_64.xml | 42 ++++- .../domaincapsdata/qemu_6.1.0-tcg.x86_64.xml | 71 +++++++- tests/domaincapsdata/qemu_6.1.0.x86_64.xml | 42 ++++- .../domaincapsdata/qemu_6.2.0-q35.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_6.2.0-tcg.x86_64.xml | 69 +++++++- tests/domaincapsdata/qemu_6.2.0.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_7.0.0-q35.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_7.0.0-tcg.x86_64.xml | 69 +++++++- tests/domaincapsdata/qemu_7.0.0.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_7.1.0-q35.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_7.1.0-tcg.x86_64.xml | 69 +++++++- tests/domaincapsdata/qemu_7.1.0.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_7.2.0-q35.x86_64.xml | 40 ++++- .../qemu_7.2.0-tcg.x86_64+hvf.xml | 61 ++++++- .../domaincapsdata/qemu_7.2.0-tcg.x86_64.xml | 61 ++++++- tests/domaincapsdata/qemu_7.2.0.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_8.0.0-q35.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_8.0.0-tcg.x86_64.xml | 61 ++++++- tests/domaincapsdata/qemu_8.0.0.x86_64.xml | 40 ++++- .../domaincapsdata/qemu_8.1.0-q35.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_8.1.0-tcg.x86_64.xml | 45 ++++- tests/domaincapsdata/qemu_8.1.0.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_8.2.0-q35.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_8.2.0-tcg.x86_64.xml | 45 ++++- tests/domaincapsdata/qemu_8.2.0.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_9.0.0-q35.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_9.0.0-tcg.x86_64.xml | 43 ++++- tests/domaincapsdata/qemu_9.0.0.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_9.1.0-q35.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_9.1.0-tcg.x86_64.xml | 43 ++++- tests/domaincapsdata/qemu_9.1.0.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_9.2.0-q35.x86_64.xml | 41 ++++- .../domaincapsdata/qemu_9.2.0-tcg.x86_64.xml | 43 ++++- tests/domaincapsdata/qemu_9.2.0.x86_64.xml | 41 ++++- 45 files changed, 1863 insertions(+), 41 deletions(-) create mode 100644 src/cpu_map/x86_Cooperlake-v1.xml create mode 100644 src/cpu_map/x86_Cooperlake-v2.xml diff --git a/src/cpu_map/index.xml b/src/cpu_map/index.xml index d35eb80d03..923954b763 100644 --- a/src/cpu_map/index.xml +++ b/src/cpu_map/index.xml @@ -58,6 +58,8 @@ + + diff --git a/src/cpu_map/meson.build b/src/cpu_map/meson.build index cecb6d1d83..e08d8ccda7 100644 --- a/src/cpu_map/meson.build +++ b/src/cpu_map/meson.build @@ -31,6 +31,8 @@ cpumap_data = [ 'x86_Cascadelake-Server-noTSX.xml', 'x86_Cascadelake-Server.xml', 'x86_Conroe.xml', + 'x86_Cooperlake-v1.xml', + 'x86_Cooperlake-v2.xml', 'x86_Cooperlake.xml', 'x86_core2duo.xml', 'x86_coreduo.xml', diff --git a/src/cpu_map/x86_Cooperlake-v1.xml b/src/cpu_map/x86_Cooperlake-v1.xml new file mode 100644 index 0000000000..50f90c1f1e --- /dev/null +++ b/src/cpu_map/x86_Cooperlake-v1.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/cpu_map/x86_Cooperlake-v2.xml b/src/cpu_map/x86_Cooperlake-v2.xml new file mode 100644 index 0000000000..8c9c5ac2fd --- /dev/null +++ b/src/cpu_map/x86_Cooperlake-v2.xml @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/cputestdata/x86_64-cpuid-Cooperlake-host.xml b/tests/cputestdata/x86_64-cpuid-Cooperlake-host.xml index 9ff74bc029..0be098de80 100644 --- a/tests/cputestdata/x86_64-cpuid-Cooperlake-host.xml +++ b/tests/cputestdata/x86_64-cpuid-Cooperlake-host.xml @@ -1,6 +1,6 @@ x86_64 - Cooperlake + Cooperlake-v1 Intel diff --git a/tests/domaincapsdata/qemu_5.2.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_5.2.0-q35.x86_64.xml index 6d0d347cd0..e8bcba9fc1 100644 --- a/tests/domaincapsdata/qemu_5.2.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_5.2.0-q35.x86_64.xml @@ -125,7 +125,7 @@ Conroe - Cooperlake + Cooperlake @@ -144,6 +144,25 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_5.2.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_5.2.0-tcg.x86_64.xml index 3fff90679f..30d652e640 100644 --- a/tests/domaincapsdata/qemu_5.2.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_5.2.0-tcg.x86_64.xml @@ -185,7 +185,7 @@ Conroe - Cooperlake + Cooperlake @@ -218,6 +218,39 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_5.2.0.x86_64.xml b/tests/domaincapsdata/qemu_5.2.0.x86_64.xml index 155affd7a2..ad76c3e130 100644 --- a/tests/domaincapsdata/qemu_5.2.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_5.2.0.x86_64.xml @@ -124,7 +124,7 @@ Conroe - Cooperlake + Cooperlake @@ -143,6 +143,25 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_6.0.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_6.0.0-q35.x86_64.xml index 97c2f3f216..c55f8e34b9 100644 --- a/tests/domaincapsdata/qemu_6.0.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.0.0-q35.x86_64.xml @@ -125,7 +125,7 @@ Conroe - Cooperlake + Cooperlake @@ -144,6 +144,25 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_6.0.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_6.0.0-tcg.x86_64.xml index 4f5abc3c87..e03c10eb84 100644 --- a/tests/domaincapsdata/qemu_6.0.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.0.0-tcg.x86_64.xml @@ -186,7 +186,7 @@ Conroe - Cooperlake + Cooperlake @@ -219,6 +219,39 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_6.0.0.x86_64.xml b/tests/domaincapsdata/qemu_6.0.0.x86_64.xml index 1e7d5acadd..6cfa5828bb 100644 --- a/tests/domaincapsdata/qemu_6.0.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.0.0.x86_64.xml @@ -124,7 +124,7 @@ Conroe - Cooperlake + Cooperlake @@ -143,6 +143,25 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_6.1.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_6.1.0-q35.x86_64.xml index 931c1ccfa8..50941234d6 100644 --- a/tests/domaincapsdata/qemu_6.1.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.1.0-q35.x86_64.xml @@ -126,7 +126,7 @@ Conroe - Cooperlake + Cooperlake @@ -146,6 +146,46 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_6.1.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_6.1.0-tcg.x86_64.xml index c381827ef1..93cc2bd1f2 100644 --- a/tests/domaincapsdata/qemu_6.1.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.1.0-tcg.x86_64.xml @@ -186,7 +186,7 @@ Conroe - Cooperlake + Cooperlake @@ -220,6 +220,75 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_6.1.0.x86_64.xml b/tests/domaincapsdata/qemu_6.1.0.x86_64.xml index 92507c01e6..7a69746717 100644 --- a/tests/domaincapsdata/qemu_6.1.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.1.0.x86_64.xml @@ -125,7 +125,7 @@ Conroe - Cooperlake + Cooperlake @@ -145,6 +145,46 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_6.2.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_6.2.0-q35.x86_64.xml index 002004001a..8a077e113d 100644 --- a/tests/domaincapsdata/qemu_6.2.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.2.0-q35.x86_64.xml @@ -126,7 +126,7 @@ Conroe - Cooperlake + Cooperlake @@ -145,6 +145,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_6.2.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_6.2.0-tcg.x86_64.xml index 7ec91e11d3..59145f6dfe 100644 --- a/tests/domaincapsdata/qemu_6.2.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.2.0-tcg.x86_64.xml @@ -188,7 +188,7 @@ Conroe - Cooperlake + Cooperlake @@ -221,6 +221,73 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_6.2.0.x86_64.xml b/tests/domaincapsdata/qemu_6.2.0.x86_64.xml index 3b449eec8d..6f76e4795f 100644 --- a/tests/domaincapsdata/qemu_6.2.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_6.2.0.x86_64.xml @@ -125,7 +125,7 @@ Conroe - Cooperlake + Cooperlake @@ -144,6 +144,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_7.0.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_7.0.0-q35.x86_64.xml index bc603035fe..44eff055b4 100644 --- a/tests/domaincapsdata/qemu_7.0.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.0.0-q35.x86_64.xml @@ -127,7 +127,7 @@ Conroe - Cooperlake + Cooperlake @@ -146,6 +146,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_7.0.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_7.0.0-tcg.x86_64.xml index 8e545b5e9d..5ccb0a9914 100644 --- a/tests/domaincapsdata/qemu_7.0.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.0.0-tcg.x86_64.xml @@ -189,7 +189,7 @@ Conroe - Cooperlake + Cooperlake @@ -222,6 +222,73 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_7.0.0.x86_64.xml b/tests/domaincapsdata/qemu_7.0.0.x86_64.xml index e2b164f6f2..8d364912f2 100644 --- a/tests/domaincapsdata/qemu_7.0.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.0.0.x86_64.xml @@ -126,7 +126,7 @@ Conroe - Cooperlake + Cooperlake @@ -145,6 +145,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_7.1.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_7.1.0-q35.x86_64.xml index be1c10ba88..e33078702c 100644 --- a/tests/domaincapsdata/qemu_7.1.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.1.0-q35.x86_64.xml @@ -128,7 +128,7 @@ Conroe - Cooperlake + Cooperlake @@ -147,6 +147,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_7.1.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_7.1.0-tcg.x86_64.xml index d43ed80338..62bd747f47 100644 --- a/tests/domaincapsdata/qemu_7.1.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.1.0-tcg.x86_64.xml @@ -189,7 +189,7 @@ Conroe - Cooperlake + Cooperlake @@ -222,6 +222,73 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_7.1.0.x86_64.xml b/tests/domaincapsdata/qemu_7.1.0.x86_64.xml index c8f74ea60e..46f2582342 100644 --- a/tests/domaincapsdata/qemu_7.1.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.1.0.x86_64.xml @@ -127,7 +127,7 @@ Conroe - Cooperlake + Cooperlake @@ -146,6 +146,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_7.2.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_7.2.0-q35.x86_64.xml index 890b8ec2e9..04173eab2d 100644 --- a/tests/domaincapsdata/qemu_7.2.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.2.0-q35.x86_64.xml @@ -133,7 +133,7 @@ Conroe - Cooperlake + Cooperlake @@ -152,6 +152,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64+hvf.xml b/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64+hvf.xml index fb20353bbf..72e50e80e3 100644 --- a/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64+hvf.xml +++ b/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64+hvf.xml @@ -154,7 +154,7 @@ Conroe - Cooperlake + Cooperlake @@ -183,6 +183,65 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64.xml index fb20353bbf..72e50e80e3 100644 --- a/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.2.0-tcg.x86_64.xml @@ -154,7 +154,7 @@ Conroe - Cooperlake + Cooperlake @@ -183,6 +183,65 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_7.2.0.x86_64.xml b/tests/domaincapsdata/qemu_7.2.0.x86_64.xml index 02406d697a..bfd4582994 100644 --- a/tests/domaincapsdata/qemu_7.2.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_7.2.0.x86_64.xml @@ -132,7 +132,7 @@ Conroe - Cooperlake + Cooperlake @@ -151,6 +151,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_8.0.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_8.0.0-q35.x86_64.xml index 4e70aee549..c460ef2747 100644 --- a/tests/domaincapsdata/qemu_8.0.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.0.0-q35.x86_64.xml @@ -133,7 +133,7 @@ Conroe - Cooperlake + Cooperlake @@ -152,6 +152,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_8.0.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_8.0.0-tcg.x86_64.xml index 25c522f8d6..70cc61a266 100644 --- a/tests/domaincapsdata/qemu_8.0.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.0.0-tcg.x86_64.xml @@ -158,7 +158,7 @@ Conroe - Cooperlake + Cooperlake @@ -187,6 +187,65 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_8.0.0.x86_64.xml b/tests/domaincapsdata/qemu_8.0.0.x86_64.xml index d8ef35e83f..e4a6e0d835 100644 --- a/tests/domaincapsdata/qemu_8.0.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.0.0.x86_64.xml @@ -132,7 +132,7 @@ Conroe - Cooperlake + Cooperlake @@ -151,6 +151,44 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-IBPB diff --git a/tests/domaincapsdata/qemu_8.1.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_8.1.0-q35.x86_64.xml index b63775042f..52d5f90429 100644 --- a/tests/domaincapsdata/qemu_8.1.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.1.0-q35.x86_64.xml @@ -135,7 +135,7 @@ Conroe - Cooperlake + Cooperlake @@ -154,6 +154,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_8.1.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_8.1.0-tcg.x86_64.xml index b08763142e..a11ab737f6 100644 --- a/tests/domaincapsdata/qemu_8.1.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.1.0-tcg.x86_64.xml @@ -143,7 +143,7 @@ Conroe - Cooperlake + Cooperlake @@ -164,6 +164,49 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_8.1.0.x86_64.xml b/tests/domaincapsdata/qemu_8.1.0.x86_64.xml index f235e3ca55..a6c02c0eb7 100644 --- a/tests/domaincapsdata/qemu_8.1.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.1.0.x86_64.xml @@ -134,7 +134,7 @@ Conroe - Cooperlake + Cooperlake @@ -153,6 +153,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_8.2.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_8.2.0-q35.x86_64.xml index db5e71cae3..b12b0a0738 100644 --- a/tests/domaincapsdata/qemu_8.2.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.2.0-q35.x86_64.xml @@ -136,7 +136,7 @@ Conroe - Cooperlake + Cooperlake @@ -155,6 +155,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_8.2.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_8.2.0-tcg.x86_64.xml index bc1c8b629c..58fbf2e156 100644 --- a/tests/domaincapsdata/qemu_8.2.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.2.0-tcg.x86_64.xml @@ -142,7 +142,7 @@ Conroe - Cooperlake + Cooperlake @@ -163,6 +163,49 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_8.2.0.x86_64.xml b/tests/domaincapsdata/qemu_8.2.0.x86_64.xml index 4092b0cbaf..9df7ab5d51 100644 --- a/tests/domaincapsdata/qemu_8.2.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_8.2.0.x86_64.xml @@ -135,7 +135,7 @@ Conroe - Cooperlake + Cooperlake @@ -154,6 +154,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_9.0.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_9.0.0-q35.x86_64.xml index 46cdc98b04..c6dd80de95 100644 --- a/tests/domaincapsdata/qemu_9.0.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.0.0-q35.x86_64.xml @@ -136,7 +136,7 @@ Conroe - Cooperlake + Cooperlake @@ -155,6 +155,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_9.0.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_9.0.0-tcg.x86_64.xml index 52ce59c185..4cec75464f 100644 --- a/tests/domaincapsdata/qemu_9.0.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.0.0-tcg.x86_64.xml @@ -138,7 +138,7 @@ Conroe - Cooperlake + Cooperlake @@ -158,6 +158,47 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_9.0.0.x86_64.xml b/tests/domaincapsdata/qemu_9.0.0.x86_64.xml index f7716b5c10..7bcc10e61c 100644 --- a/tests/domaincapsdata/qemu_9.0.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.0.0.x86_64.xml @@ -135,7 +135,7 @@ Conroe - Cooperlake + Cooperlake @@ -154,6 +154,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_9.1.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_9.1.0-q35.x86_64.xml index 16e5de9503..3fb82c81ad 100644 --- a/tests/domaincapsdata/qemu_9.1.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.1.0-q35.x86_64.xml @@ -140,7 +140,7 @@ Conroe - Cooperlake + Cooperlake @@ -159,6 +159,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_9.1.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_9.1.0-tcg.x86_64.xml index b0a266f649..7600b69f9f 100644 --- a/tests/domaincapsdata/qemu_9.1.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.1.0-tcg.x86_64.xml @@ -137,7 +137,7 @@ Conroe - Cooperlake + Cooperlake @@ -157,6 +157,47 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_9.1.0.x86_64.xml b/tests/domaincapsdata/qemu_9.1.0.x86_64.xml index a948cd9173..e8e1b804f6 100644 --- a/tests/domaincapsdata/qemu_9.1.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.1.0.x86_64.xml @@ -139,7 +139,7 @@ Conroe - Cooperlake + Cooperlake @@ -158,6 +158,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_9.2.0-q35.x86_64.xml b/tests/domaincapsdata/qemu_9.2.0-q35.x86_64.xml index a986a09589..dfcaa22ea3 100644 --- a/tests/domaincapsdata/qemu_9.2.0-q35.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.2.0-q35.x86_64.xml @@ -140,7 +140,7 @@ Conroe - Cooperlake + Cooperlake @@ -159,6 +159,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa diff --git a/tests/domaincapsdata/qemu_9.2.0-tcg.x86_64.xml b/tests/domaincapsdata/qemu_9.2.0-tcg.x86_64.xml index 1ad4b0a9f3..43348c344c 100644 --- a/tests/domaincapsdata/qemu_9.2.0-tcg.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.2.0-tcg.x86_64.xml @@ -137,7 +137,7 @@ Conroe - Cooperlake + Cooperlake @@ -157,6 +157,47 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + + Dhyana diff --git a/tests/domaincapsdata/qemu_9.2.0.x86_64.xml b/tests/domaincapsdata/qemu_9.2.0.x86_64.xml index 8051bf82a3..bf8f4ebba3 100644 --- a/tests/domaincapsdata/qemu_9.2.0.x86_64.xml +++ b/tests/domaincapsdata/qemu_9.2.0.x86_64.xml @@ -139,7 +139,7 @@ Conroe - Cooperlake + Cooperlake @@ -158,6 +158,45 @@ + Cooperlake-v1 + + + + + + + + + + + + + + + + + + + Cooperlake-v2 + + + + + + + + + + + + + + + + + + + Dhyana EPYC EPYC-Genoa