From: Harsh Prateek Bora <harshpb@linux.ibm.com>
To: qemu-devel@nongnu.org
Cc: Caleb Schlossin <calebs@linux.ibm.com>,
Chalapathi V <chalapathi.v@linux.ibm.com>,
Glenn Miles <milesg@linux.ibm.com>,
Frederic Barrat <fbarrat@linux.ibm.com>,
Aditya Gupta <adityag@linux.ibm.com>
Subject: [PULL 12/13] ppc/pnv: Add a nest MMU model
Date: Thu, 30 Apr 2026 00:03:02 +0530 [thread overview]
Message-ID: <20260429183310.12455-13-harshpb@linux.ibm.com> (raw)
In-Reply-To: <20260429183310.12455-1-harshpb@linux.ibm.com>
From: Caleb Schlossin <calebs@linux.ibm.com>
The nest MMU is used for translations needed by I/O subsystems
on Power10. The nest is the shared, on-chip infrastructure
that connects CPU cores, memory controllers, and I/O.
This patch sets up a basic skeleton with its xscom
area, mapping both needed xscom regions. Support required
for PowerVM bringup.
Use Power9 property for device tree to allow OPAL to
work with Power9 and Power10.
Reviewed-by: Chalapathi V <chalapathi.v@linux.ibm.com>
Reviewed-by: Glenn Miles <milesg@linux.ibm.com>
Signed-off-by: Frederic Barrat <fbarrat@linux.ibm.com>
Signed-off-by: Chalapathi V <chalapathi.v@linux.ibm.com>
Signed-off-by: Caleb Schlossin <calebs@linux.ibm.com>
Reviewed-by: Aditya Gupta <adityag@linux.ibm.com>
Link: https://lore.kernel.org/qemu-devel/20260120150139.714805-1-calebs@linux.ibm.com
Signed-off-by: Harsh Prateek Bora <harshpb@linux.ibm.com>
---
include/hw/ppc/pnv_chip.h | 3 +
include/hw/ppc/pnv_nmmu.h | 28 ++++++++
include/hw/ppc/pnv_xscom.h | 4 ++
hw/ppc/pnv.c | 20 ++++++
hw/ppc/pnv_nmmu.c | 132 +++++++++++++++++++++++++++++++++++++
hw/ppc/meson.build | 1 +
6 files changed, 188 insertions(+)
create mode 100644 include/hw/ppc/pnv_nmmu.h
create mode 100644 hw/ppc/pnv_nmmu.c
diff --git a/include/hw/ppc/pnv_chip.h b/include/hw/ppc/pnv_chip.h
index ea47c97dd3..8ef75fdcca 100644
--- a/include/hw/ppc/pnv_chip.h
+++ b/include/hw/ppc/pnv_chip.h
@@ -7,6 +7,7 @@
#include "hw/ppc/pnv_core.h"
#include "hw/ppc/pnv_homer.h"
#include "hw/ppc/pnv_n1_chiplet.h"
+#include "hw/ppc/pnv_nmmu.h"
#include "hw/ssi/pnv_spi.h"
#include "hw/ppc/pnv_lpc.h"
#include "hw/ppc/pnv_occ.h"
@@ -126,6 +127,8 @@ struct Pnv10Chip {
PnvN1Chiplet n1_chiplet;
#define PNV10_CHIP_MAX_PIB_SPIC 6
PnvSpi pib_spic[PNV10_CHIP_MAX_PIB_SPIC];
+#define PNV10_CHIP_MAX_NMMU 2
+ PnvNMMU nmmu[PNV10_CHIP_MAX_NMMU];
uint32_t nr_quads;
PnvQuad *quads;
diff --git a/include/hw/ppc/pnv_nmmu.h b/include/hw/ppc/pnv_nmmu.h
new file mode 100644
index 0000000000..d3ba46ecf4
--- /dev/null
+++ b/include/hw/ppc/pnv_nmmu.h
@@ -0,0 +1,28 @@
+/*
+ * QEMU PowerPC nest MMU model
+ *
+ * Copyright (c) 2025, IBM Corporation.
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ *
+ * This code is licensed under the GPL version 2 or later. See the
+ * COPYING file in the top-level directory.
+ */
+
+#ifndef PPC_PNV_NMMU_H
+#define PPC_PNV_NMMU_H
+
+#define TYPE_PNV_NMMU "pnv-nmmu"
+#define PNV_NMMU(obj) OBJECT_CHECK(PnvNMMU, (obj), TYPE_PNV_NMMU)
+
+typedef struct PnvNMMU {
+ DeviceState parent;
+
+ struct PnvChip *chip;
+
+ MemoryRegion xscom_regs;
+ uint32_t nmmu_id;
+ uint64_t ptcr;
+} PnvNMMU;
+
+#endif /*PPC_PNV_NMMU_H */
diff --git a/include/hw/ppc/pnv_xscom.h b/include/hw/ppc/pnv_xscom.h
index 610b075a27..6dab803d1f 100644
--- a/include/hw/ppc/pnv_xscom.h
+++ b/include/hw/ppc/pnv_xscom.h
@@ -196,6 +196,10 @@ struct PnvXScomInterfaceClass {
#define PNV10_XSCOM_N1_PB_SCOM_ES_BASE 0x3011300
#define PNV10_XSCOM_N1_PB_SCOM_ES_SIZE 0x100
+#define PNV10_XSCOM_NEST0_MMU_BASE 0x2010c40
+#define PNV10_XSCOM_NEST1_MMU_BASE 0x3010c40
+#define PNV10_XSCOM_NMMU_SIZE 0x20
+
#define PNV10_XSCOM_PEC_NEST_BASE 0x3011800 /* index goes downwards ... */
#define PNV10_XSCOM_PEC_NEST_SIZE 0x100
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c
index 89096f9a84..9ed918fa6a 100644
--- a/hw/ppc/pnv.c
+++ b/hw/ppc/pnv.c
@@ -2297,6 +2297,11 @@ static void pnv_chip_power10_instance_init(Object *obj)
TYPE_PNV_PHB5_PEC);
}
+ for (i = 0; i < PNV10_CHIP_MAX_NMMU; i++) {
+ object_initialize_child(obj, "nmmu[*]", &chip10->nmmu[i],
+ TYPE_PNV_NMMU);
+ }
+
for (i = 0; i < pcc->i2c_num_engines; i++) {
object_initialize_child(obj, "i2c[*]", &chip10->i2c[i], TYPE_PNV_I2C);
}
@@ -2511,6 +2516,21 @@ static void pnv_chip_power10_realize(DeviceState *dev, Error **errp)
pnv_xscom_add_subregion(chip, PNV10_XSCOM_N1_PB_SCOM_ES_BASE,
&chip10->n1_chiplet.xscom_pb_es_mr);
+ /* nest0/1 MMU */
+ for (i = 0; i < PNV10_CHIP_MAX_NMMU; i++) {
+ object_property_set_int(OBJECT(&chip10->nmmu[i]), "nmmu_id",
+ i , &error_fatal);
+ object_property_set_link(OBJECT(&chip10->nmmu[i]), "chip",
+ OBJECT(chip), &error_abort);
+ if (!qdev_realize(DEVICE(&chip10->nmmu[i]), NULL, errp)) {
+ return;
+ }
+ }
+ pnv_xscom_add_subregion(chip, PNV10_XSCOM_NEST0_MMU_BASE,
+ &chip10->nmmu[0].xscom_regs);
+ pnv_xscom_add_subregion(chip, PNV10_XSCOM_NEST1_MMU_BASE,
+ &chip10->nmmu[1].xscom_regs);
+
/* PHBs */
pnv_chip_power10_phb_realize(chip, &local_err);
if (local_err) {
diff --git a/hw/ppc/pnv_nmmu.c b/hw/ppc/pnv_nmmu.c
new file mode 100644
index 0000000000..c1b00bac89
--- /dev/null
+++ b/hw/ppc/pnv_nmmu.c
@@ -0,0 +1,132 @@
+/*
+ * QEMU PowerPC nest MMU model
+ *
+ * Copyright (c) 2025, IBM Corporation.
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ *
+ * This code is licensed under the GPL version 2 or later. See the
+ * COPYING file in the top-level directory.
+ */
+
+#include "qemu/osdep.h"
+#include "qemu/log.h"
+#include "hw/core/qdev-properties.h"
+
+#include "hw/ppc/pnv.h"
+#include "hw/ppc/pnv_xscom.h"
+#include "hw/ppc/pnv_nmmu.h"
+#include "hw/ppc/fdt.h"
+
+#include <libfdt.h>
+
+#define NMMU_XLAT_CTL_PTCR 0xb
+
+static uint64_t pnv_nmmu_xscom_read(void *opaque, hwaddr addr, unsigned size)
+{
+ PnvNMMU *nmmu = PNV_NMMU(opaque);
+ int reg = addr >> 3;
+ uint64_t val;
+
+ if (reg == NMMU_XLAT_CTL_PTCR) {
+ val = nmmu->ptcr;
+ } else {
+ val = 0xffffffffffffffffull;
+ qemu_log_mask(LOG_UNIMP, "nMMU: xscom read at 0x%" PRIx32 "\n", reg);
+ }
+ return val;
+}
+
+static void pnv_nmmu_xscom_write(void *opaque, hwaddr addr,
+ uint64_t val, unsigned size)
+{
+ PnvNMMU *nmmu = PNV_NMMU(opaque);
+ int reg = addr >> 3;
+
+ if (reg == NMMU_XLAT_CTL_PTCR) {
+ nmmu->ptcr = val;
+ } else {
+ qemu_log_mask(LOG_UNIMP, "nMMU: xscom write at 0x%" PRIx32 "\n", reg);
+ }
+}
+
+static const MemoryRegionOps pnv_nmmu_xscom_ops = {
+ .read = pnv_nmmu_xscom_read,
+ .write = pnv_nmmu_xscom_write,
+ .valid.min_access_size = 8,
+ .valid.max_access_size = 8,
+ .impl.min_access_size = 8,
+ .impl.max_access_size = 8,
+ .endianness = DEVICE_BIG_ENDIAN,
+};
+
+static void pnv_nmmu_realize(DeviceState *dev, Error **errp)
+{
+ PnvNMMU *nmmu = PNV_NMMU(dev);
+
+ assert(nmmu->chip);
+
+ /* NMMU xscom region */
+ pnv_xscom_region_init(&nmmu->xscom_regs, OBJECT(nmmu),
+ &pnv_nmmu_xscom_ops, nmmu,
+ "xscom-nmmu",
+ PNV10_XSCOM_NMMU_SIZE);
+}
+
+static int pnv_nmmu_dt_xscom(PnvXScomInterface *dev, void *fdt,
+ int offset)
+{
+ PnvNMMU *nmmu = PNV_NMMU(dev);
+ char *name;
+ int nmmu_offset;
+ const char compat[] = "ibm,power9-nest-mmu";
+ uint32_t nmmu_pcba = PNV10_XSCOM_NEST0_MMU_BASE + nmmu->nmmu_id * 0x1000000;
+ uint32_t reg[2] = {
+ cpu_to_be32(nmmu_pcba),
+ cpu_to_be32(PNV10_XSCOM_NMMU_SIZE)
+ };
+
+ name = g_strdup_printf("nmmu@%x", nmmu_pcba);
+ nmmu_offset = fdt_add_subnode(fdt, offset, name);
+ _FDT(nmmu_offset);
+ g_free(name);
+
+ _FDT(fdt_setprop(fdt, nmmu_offset, "reg", reg, sizeof(reg)));
+ _FDT(fdt_setprop(fdt, nmmu_offset, "compatible", compat, sizeof(compat)));
+ return 0;
+}
+
+static const Property pnv_nmmu_properties[] = {
+ DEFINE_PROP_UINT32("nmmu_id", PnvNMMU, nmmu_id, 0),
+ DEFINE_PROP_LINK("chip", PnvNMMU, chip, TYPE_PNV_CHIP, PnvChip *),
+};
+
+static void pnv_nmmu_class_init(ObjectClass *klass, const void *data)
+{
+ DeviceClass *dc = DEVICE_CLASS(klass);
+ PnvXScomInterfaceClass *xscomc = PNV_XSCOM_INTERFACE_CLASS(klass);
+
+ xscomc->dt_xscom = pnv_nmmu_dt_xscom;
+
+ dc->desc = "PowerNV nest MMU";
+ dc->realize = pnv_nmmu_realize;
+ device_class_set_props(dc, pnv_nmmu_properties);
+}
+
+static const TypeInfo pnv_nmmu_info = {
+ .name = TYPE_PNV_NMMU,
+ .parent = TYPE_DEVICE,
+ .instance_size = sizeof(PnvNMMU),
+ .class_init = pnv_nmmu_class_init,
+ .interfaces = (InterfaceInfo[]) {
+ { TYPE_PNV_XSCOM_INTERFACE },
+ { }
+ }
+};
+
+static void pnv_nmmu_register_types(void)
+{
+ type_register_static(&pnv_nmmu_info);
+}
+
+type_init(pnv_nmmu_register_types);
diff --git a/hw/ppc/meson.build b/hw/ppc/meson.build
index c61fba4ec8..37aa535db2 100644
--- a/hw/ppc/meson.build
+++ b/hw/ppc/meson.build
@@ -57,6 +57,7 @@ ppc_ss.add(when: 'CONFIG_POWERNV', if_true: files(
'pnv_nest_pervasive.c',
'pnv_n1_chiplet.c',
'pnv_mpipl.c',
+ 'pnv_nmmu.c'
))
# PowerPC 4xx boards
ppc_ss.add(when: 'CONFIG_PPC405', if_true: files(
--
2.52.0
next prev parent reply other threads:[~2026-04-29 18:35 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-29 18:32 [PULL 00/13] PPC PR for 11.1 (2026-04-29) Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 01/13] ppc/pnv: Move SBE host doorbell function to top of file Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 02/13] ppc/mpipl: Implement S0 SBE interrupt Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 03/13] ppc/pnv: Handle stash command in PowerNV SBE Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 04/13] pnv/mpipl: Preserve memory regions as per MDST/MDDT tables Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 05/13] pnv/mpipl: Preserve CPU registers after crash Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 06/13] pnv/mpipl: Set thread entry size to be allocated by firmware Harsh Prateek Bora
2026-05-08 9:15 ` Peter Maydell
2026-05-08 10:18 ` Shivang Upadhyay
2026-04-29 18:32 ` [PULL 07/13] pnv/mpipl: Write the preserved CPU and MDRT state Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 08/13] pnv/mpipl: Enable MPIPL support Harsh Prateek Bora
2026-04-29 18:32 ` [PULL 09/13] tests/functional: Add test for MPIPL in PowerNV Harsh Prateek Bora
2026-04-29 18:33 ` [PULL 10/13] MAINTAINERS: Add entry for MPIPL (PowerNV) Harsh Prateek Bora
2026-04-29 18:33 ` [PULL 11/13] hw/ssi/pnv_spi: Fix fifo8 memory leak on unrealize Harsh Prateek Bora
2026-04-29 18:33 ` Harsh Prateek Bora [this message]
2026-04-29 18:33 ` [PULL 13/13] hw/intc/xics: Add a check for an invalid server id Harsh Prateek Bora
2026-04-30 17:35 ` [PULL 00/13] PPC PR for 11.1 (2026-04-29) Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260429183310.12455-13-harshpb@linux.ibm.com \
--to=harshpb@linux.ibm.com \
--cc=adityag@linux.ibm.com \
--cc=calebs@linux.ibm.com \
--cc=chalapathi.v@linux.ibm.com \
--cc=fbarrat@linux.ibm.com \
--cc=milesg@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.