aboutsummaryrefslogtreecommitdiff
path: root/hw/ppc
diff options
context:
space:
mode:
authorAditya Gupta <adityag@linux.ibm.com>2024-05-02 11:57:01 +0530
committerNicholas Piggin <npiggin@gmail.com>2024-07-26 09:21:06 +1000
commit977e789c4a8ed813d4ab03f17ea20a575bf20cd1 (patch)
treecdad211f9a51aa105692d679c656c152de0895d5 /hw/ppc
parentc0840b46d4c8483a93370434f9ea10b8a7b50bde (diff)
downloadqemu-977e789c4a8ed813d4ab03f17ea20a575bf20cd1.zip
qemu-977e789c4a8ed813d4ab03f17ea20a575bf20cd1.tar.gz
qemu-977e789c4a8ed813d4ab03f17ea20a575bf20cd1.tar.bz2
ppc/pnv: Update Power10's cfam id to use Power10 DD2
Power10 DD1.0 was dropped in: commit 8f054d9ee825 ("ppc: Drop support for POWER9 and POWER10 DD1 chips") Use the newer Power10 DD2 chips cfam id. Signed-off-by: Aditya Gupta <adityag@linux.ibm.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Diffstat (limited to 'hw/ppc')
-rw-r--r--hw/ppc/pnv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c
index 6b41d1d..13cebd6 100644
--- a/hw/ppc/pnv.c
+++ b/hw/ppc/pnv.c
@@ -2087,7 +2087,7 @@ static void pnv_chip_power10_class_init(ObjectClass *klass, void *data)
PnvChipClass *k = PNV_CHIP_CLASS(klass);
static const int i2c_ports_per_engine[PNV10_CHIP_MAX_I2C] = {14, 14, 2, 16};
- k->chip_cfam_id = 0x120da04900008000ull; /* P10 DD1.0 (with NX) */
+ k->chip_cfam_id = 0x220da04980000000ull; /* P10 DD2.0 (with NX) */
k->cores_mask = POWER10_CORE_MASK;
k->chip_pir = pnv_chip_pir_p10;
k->intc_create = pnv_chip_power10_intc_create;