From: Bin Meng <bin.meng@processmission.com>
To: QEMU <qemu-devel@nongnu.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>,
qemu-arm@nongnu.org
Subject: [PATCH 03/33] hw/arm: phytium: Add Phytium E2000 PCIe host
Date: Thu, 3 Sep 2026 19:24:43 +0800 [thread overview]
Message-ID: <20260903112532.3276678-4-bin.meng@processmission.com> (raw)
In-Reply-To: <20260903112532.3276678-1-bin.meng@processmission.com>
Add the E2000 GPEX host with ECAM, PIO, and 32-bit and 64-bit MMIO
windows. Connect MSI through the ITS and route the four INTx outputs
to GIC SPI 4 through 7.
The vendor device tree masks out the slot number and maps each
interrupt pin directly to the corresponding SPI. Override the GPEX
root-bus IRQ mapper so it selects an output solely by pin. Standard
PCI-to-PCI bridge swizzling remains unchanged.
Expose the SoC-specific PCIe port and PHY control apertures as
low-priority unimplemented regions. Firmware programs these windows
before enumerating ECAM, but their state does not affect the generic
host bridge.
Signed-off-by: Bin Meng <bin.meng@processmission.com>
---
hw/arm/Kconfig | 3 ++
hw/arm/phytium_e2000.c | 118 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 121 insertions(+)
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 20863b5847..e68f137a66 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -130,7 +130,10 @@ config PHYTIUM_E2000
bool
default y
depends on TCG && AARCH64
+ imply PCI_DEVICES
select ARM_GIC
+ select PCI_EXPRESS
+ select PCI_EXPRESS_GENERIC_BRIDGE
select PL011
select UNIMP
diff --git a/hw/arm/phytium_e2000.c b/hw/arm/phytium_e2000.c
index defc265a5d..aac798aa07 100644
--- a/hw/arm/phytium_e2000.c
+++ b/hw/arm/phytium_e2000.c
@@ -26,6 +26,8 @@
#include "hw/intc/arm_gicv3_common.h"
#include "hw/intc/arm_gicv3_its_common.h"
#include "hw/misc/unimp.h"
+#include "hw/pci/pci.h"
+#include "hw/pci-host/gpex.h"
#include "qobject/qlist.h"
#include "qom/object.h"
#include "target/arm/cpu.h"
@@ -55,9 +57,15 @@ enum {
PHYTIUM_E2000_GIC_ITS,
PHYTIUM_E2000_GIC_REDIST,
PHYTIUM_E2000_BOOT_SRAM,
+ PHYTIUM_E2000_PCIE_CTRL,
+ PHYTIUM_E2000_PCIE_PHY_CTRL,
PHYTIUM_E2000_BOARD_CTRL,
PHYTIUM_E2000_BOOT_IACC,
+ PHYTIUM_E2000_PCIE_ECAM,
+ PHYTIUM_E2000_PCIE_PIO,
+ PHYTIUM_E2000_PCIE_MMIO,
PHYTIUM_E2000_RAM,
+ PHYTIUM_E2000_PCIE_MMIO_HIGH,
PHYTIUM_E2000_RAM_HIGH,
};
@@ -87,9 +95,15 @@ static const MemMapEntry phytium_e2000_memmap[] = {
[PHYTIUM_E2000_GIC_ITS] = { 0x30820000, 0x00020000 },
[PHYTIUM_E2000_GIC_REDIST] = { 0x30880000, 0x00080000 },
[PHYTIUM_E2000_BOOT_SRAM] = { 0x30c00000, 0x00100000 },
+ [PHYTIUM_E2000_PCIE_CTRL] = { 0x31000000, 0x00200000 },
+ [PHYTIUM_E2000_PCIE_PHY_CTRL] = { 0x31500000, 0x00001000 },
[PHYTIUM_E2000_BOARD_CTRL] = { 0x31800000, 0x01400000 },
[PHYTIUM_E2000_BOOT_IACC] = { 0x38000000, 0x08000000 },
+ [PHYTIUM_E2000_PCIE_ECAM] = { 0x40000000, 0x10000000 },
+ [PHYTIUM_E2000_PCIE_PIO] = { 0x50000000, 0x00f00000 },
+ [PHYTIUM_E2000_PCIE_MMIO] = { 0x58000000, 0x28000000 },
[PHYTIUM_E2000_RAM] = { 0x80000000, 0x80000000 },
+ [PHYTIUM_E2000_PCIE_MMIO_HIGH] = { 0x1000000000ULL, 0x1000000000ULL },
[PHYTIUM_E2000_RAM_HIGH] = { 0x2000000000ULL, 0x180000000ULL },
};
@@ -103,6 +117,13 @@ static const int phytium_e2000_uart_irqmap[] = {
[6] = 107,
};
+static const int phytium_e2000_pcie_irqmap[PCI_NUM_PINS] = {
+ [0] = 4,
+ [1] = 5,
+ [2] = 6,
+ [3] = 7,
+};
+
typedef struct PhytiumE2000CPUConfig {
const char *type;
uint64_t mp_affinity;
@@ -221,6 +242,88 @@ static void phytium_e2000_create_uart(PhytiumE2000State *s, int index)
qdev_get_gpio_in(s->gic, phytium_e2000_uart_irqmap[index]));
}
+/* The vendor DT maps root-bus INTx solely by pin */
+static int phytium_e2000_pcie_map_irq(PCIDevice *pdev, int pin)
+{
+ return pin;
+}
+
+static void phytium_e2000_create_pcie(PhytiumE2000State *s)
+{
+ DeviceState *dev = qdev_new(TYPE_GPEX_HOST);
+ SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
+ MemoryRegion *ecam_alias;
+ MemoryRegion *ecam_reg;
+ MemoryRegion *mmio_alias;
+ MemoryRegion *mmio_high_alias;
+ MemoryRegion *mmio_reg;
+ int i;
+
+ /*
+ * GPEX owns generic ECAM, PIO, and MMIO containers. The aliases below
+ * place those containers at the E2000 physical windows that U-Boot scans
+ * and that the SDK device tree publishes to Linux.
+ *
+ * The MMIO container is indexed by PCI bus address, so each alias uses
+ * the physical window base as its source offset to preserve a 1:1 mapping
+ * between CPU and PCI addresses.
+ */
+ qdev_prop_set_uint64(dev, PCI_HOST_ECAM_BASE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_ECAM].base);
+ qdev_prop_set_uint64(dev, PCI_HOST_ECAM_SIZE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_ECAM].size);
+ qdev_prop_set_uint64(dev, PCI_HOST_PIO_BASE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_PIO].base);
+ qdev_prop_set_uint64(dev, PCI_HOST_PIO_SIZE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_PIO].size);
+ qdev_prop_set_uint64(dev, PCI_HOST_BELOW_4G_MMIO_BASE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO].base);
+ qdev_prop_set_uint64(dev, PCI_HOST_BELOW_4G_MMIO_SIZE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO].size);
+ qdev_prop_set_uint64(dev, PCI_HOST_ABOVE_4G_MMIO_BASE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO_HIGH].base);
+ qdev_prop_set_uint64(dev, PCI_HOST_ABOVE_4G_MMIO_SIZE,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO_HIGH].size);
+
+ sysbus_realize_and_unref(sbd, &error_fatal);
+ pci_bus_map_irqs(PCI_HOST_BRIDGE(dev)->bus,
+ phytium_e2000_pcie_map_irq);
+
+ ecam_alias = g_new0(MemoryRegion, 1);
+ ecam_reg = sysbus_mmio_get_region(sbd, 0);
+ memory_region_init_alias(ecam_alias, OBJECT(dev), "phytium-pcie-ecam",
+ ecam_reg, 0, phytium_e2000_memmap[PHYTIUM_E2000_PCIE_ECAM].size);
+ memory_region_add_subregion(get_system_memory(),
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_ECAM].base, ecam_alias);
+
+ mmio_alias = g_new0(MemoryRegion, 1);
+ mmio_reg = sysbus_mmio_get_region(sbd, 1);
+ memory_region_init_alias(mmio_alias, OBJECT(dev), "phytium-pcie-mmio",
+ mmio_reg,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO].base,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO].size);
+ memory_region_add_subregion(get_system_memory(),
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO].base,
+ mmio_alias);
+
+ mmio_high_alias = g_new0(MemoryRegion, 1);
+ memory_region_init_alias(mmio_high_alias, OBJECT(dev),
+ "phytium-pcie-mmio-high", mmio_reg,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO_HIGH].base,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO_HIGH].size);
+ memory_region_add_subregion(get_system_memory(),
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_MMIO_HIGH].base,
+ mmio_high_alias);
+
+ sysbus_mmio_map(sbd, 2, phytium_e2000_memmap[PHYTIUM_E2000_PCIE_PIO].base);
+
+ for (i = 0; i < PCI_NUM_PINS; i++) {
+ sysbus_connect_irq(sbd, i,
+ qdev_get_gpio_in(s->gic, phytium_e2000_pcie_irqmap[i]));
+ gpex_set_irq_num(GPEX_HOST(dev), i, phytium_e2000_pcie_irqmap[i]);
+ }
+}
+
static void phytium_e2000_create_unimplemented(void)
{
/*
@@ -232,6 +335,19 @@ static void phytium_e2000_create_unimplemented(void)
"phytium-e2000.low-peripheral",
phytium_e2000_memmap[PHYTIUM_E2000_LOW_PERIPH].base,
phytium_e2000_memmap[PHYTIUM_E2000_LOW_PERIPH].size);
+ /*
+ * PBF programs SoC-specific PCIe PHY and port controls before U-Boot
+ * enumerates ECAM. Their values do not affect the generic host bridge, so
+ * keep this control aperture visible without inventing register behavior.
+ */
+ create_unimplemented_device(
+ "phytium-e2000.pcie-control",
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_CTRL].base,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_CTRL].size);
+ create_unimplemented_device(
+ "phytium-e2000.pcie-phy-control",
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_PHY_CTRL].base,
+ phytium_e2000_memmap[PHYTIUM_E2000_PCIE_PHY_CTRL].size);
create_unimplemented_device(
"phytium-e2000.board-control",
phytium_e2000_memmap[PHYTIUM_E2000_BOARD_CTRL].base,
@@ -331,6 +447,8 @@ static void phytium_pi_init(MachineState *ms)
phytium_e2000_create_uart(s, i);
}
+ phytium_e2000_create_pcie(s);
+
s->bootinfo.ram_size = ms->ram_size;
s->bootinfo.board_id = -1;
s->bootinfo.loader_start = phytium_e2000_memmap[PHYTIUM_E2000_RAM].base;
--
2.53.0
next prev parent reply other threads:[~2026-09-03 11:27 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-03 11:24 [PATCH 00/33] hw/arm: Add Phytium E2000Q SoC and board support Bin Meng
2026-09-03 11:24 ` [PATCH 01/33] target/arm: Add Phytium FTC310 and FTC664 CPU models Bin Meng
2026-09-03 14:45 ` Alex Bennée
2026-09-05 3:39 ` Bin Meng
2026-09-03 11:24 ` [PATCH 02/33] hw/arm: Add basic Phytium Pi machine Bin Meng
2026-09-03 16:56 ` Philippe Mathieu-Daudé
2026-09-04 7:57 ` Bin Meng
2026-09-04 10:15 ` Philippe Mathieu-Daudé
2026-09-04 10:25 ` Daniel P. Berrangé
2026-09-04 10:28 ` Peter Maydell
2026-09-04 10:36 ` Daniel P. Berrangé
2026-09-04 10:47 ` Peter Maydell
2026-09-04 11:24 ` Philippe Mathieu-Daudé
2026-09-04 11:40 ` Daniel P. Berrangé
2026-09-04 10:25 ` Peter Maydell
2026-09-03 11:24 ` Bin Meng [this message]
2026-09-03 11:24 ` [PATCH 05/33] hw/sd: Add Phytium E2000 MCI controller Bin Meng
2026-09-03 11:24 ` [PATCH 06/33] hw/arm: phytium: Connect Phytium E2000 MCI controllers Bin Meng
2026-09-03 11:24 ` [PATCH 08/33] hw/arm: phytium: Connect Phytium E2000 GEM controllers Bin Meng
2026-09-03 11:24 ` [PATCH 09/33] hw/misc: Add Phytium E2000 DDR status Bin Meng
2026-09-03 11:24 ` [PATCH 10/33] hw/arm: phytium: Connect the " Bin Meng
2026-09-03 11:24 ` [PATCH 11/33] hw/misc: Add Phytium E2000 MHU doorbell Bin Meng
2026-09-03 11:24 ` [PATCH 12/33] hw/arm: phytium: Connect the Phytium E2000 MHU Bin Meng
2026-09-03 11:24 ` [PATCH 13/33] hw/ssi: Add Phytium E2000 QSPI controller Bin Meng
2026-09-03 11:24 ` [PATCH 14/33] hw/arm: phytium: Connect the " Bin Meng
2026-09-03 11:24 ` [PATCH 15/33] hw/misc: Add Phytium E2000 PBR model Bin Meng
2026-09-03 11:24 ` [PATCH 16/33] hw/arm: phytium: Integrate the Phytium E2000 PBR Bin Meng
2026-09-03 11:24 ` [PATCH 17/33] hw/arm: phytium: Add Phytium E2000 control region placeholders Bin Meng
2026-09-03 11:24 ` [PATCH 18/33] hw/misc: Support Phytium E2000 SCMI CPU power control Bin Meng
2026-09-03 11:24 ` [PATCH 19/33] hw/arm: phytium: Select the Phytium E2000 PBR boot medium Bin Meng
2026-09-03 11:25 ` [PATCH 20/33] hw/arm: phytium: Connect the Phytium E2000 I2C controller Bin Meng
2026-09-03 11:25 ` [PATCH 21/33] hw/arm: phytium: Add Phytium E2000 xHCI controllers Bin Meng
2026-09-03 11:25 ` [PATCH 22/33] hw/misc: Model the Phytium E2000 random generator Bin Meng
2026-09-03 11:25 ` [PATCH 23/33] hw/arm: phytium: Connect " Bin Meng
2026-09-03 11:25 ` [PATCH 24/33] hw/arm: phytium: Support Phytium E2000 direct Linux boot Bin Meng
2026-09-03 11:25 ` [PATCH 25/33] hw/arm: phytium: Add Phytium E2000Q COMe machine Bin Meng
2026-09-03 11:25 ` [PATCH 27/33] hw/arm: phytium: Connect the Phytium E2000Q COMe QSPI flash Bin Meng
2026-09-03 11:25 ` [PATCH 28/33] hw/arm: phytium: Add Phytium E2000 AHCI controllers Bin Meng
2026-09-03 11:25 ` [PATCH 29/33] hw/arm: Add Phytium E2000 Linux SCMI channel Bin Meng
2026-09-03 11:25 ` [PATCH 30/33] hw/arm: phytium: Connect the Phytium E2000 SMMUv3 Bin Meng
2026-09-03 11:25 ` [PATCH 31/33] docs/system/arm: Document Phytium E2000 machines Bin Meng
2026-09-03 11:25 ` [PATCH 32/33] tests/functional/aarch64: Add Phytium Pi boot tests Bin Meng
2026-09-03 14:38 ` Alex Bennée
2026-09-04 8:52 ` Bin Meng
2026-09-04 14:23 ` Alex Bennée
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=20260903112532.3276678-4-bin.meng@processmission.com \
--to=bin.meng@processmission.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox