diff options
author | Cédric Le Goater <clg@kaod.org> | 2021-08-09 15:45:23 +0200 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-08-27 12:41:13 +1000 |
commit | 6bc8c046485463d9fb513a4a6bcc31460e6e8ba6 (patch) | |
tree | 08fab27b5ee2fff118857968068bfac59fbe17dc /hw/ppc/pnv.c | |
parent | 363fd548abd5fbef040ee001c6694672bfb0d798 (diff) | |
download | qemu-6bc8c046485463d9fb513a4a6bcc31460e6e8ba6.zip qemu-6bc8c046485463d9fb513a4a6bcc31460e6e8ba6.tar.gz qemu-6bc8c046485463d9fb513a4a6bcc31460e6e8ba6.tar.bz2 |
ppc/pnv: Change the POWER10 machine to support DD2 only
There is no need to keep the DD1 chip model as it will never be
publicly available.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20210809134547.689560-3-clg@kaod.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc/pnv.c')
-rw-r--r-- | hw/ppc/pnv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index d16dd2d..b122251 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -1916,7 +1916,7 @@ static void pnv_machine_power10_class_init(ObjectClass *oc, void *data) static const char compat[] = "qemu,powernv10\0ibm,powernv"; mc->desc = "IBM PowerNV (Non-Virtualized) POWER10"; - mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power10_v1.0"); + mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power10_v2.0"); pmc->compat = compat; pmc->compat_size = sizeof(compat); |