QEMU-Arm Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/33] hw/arm: Add Phytium E2000Q SoC and board support
@ 2026-09-03 11:24 Bin Meng
  2026-09-03 11:24 ` [PATCH 01/33] target/arm: Add Phytium FTC310 and FTC664 CPU models Bin Meng
                   ` (28 more replies)
  0 siblings, 29 replies; 45+ messages in thread
From: Bin Meng @ 2026-09-03 11:24 UTC (permalink / raw)
  To: QEMU
  Cc: Alistair Francis, Bin Meng, Fabiano Rosas, Hanna Reitz,
	Kevin Wolf, Laurent Vivier, Markus Armbruster, Paolo Bonzini,
	Peter Maydell, Philippe Mathieu-Daudé,
	Philippe Mathieu-Daudé, Pierrick Bouvier, Thomas Huth,
	qemu-arm, qemu-block


The Phytium E2000Q is a heterogeneous Armv8 SoC with two FTC664 cores
and two FTC310 cores. This series adds CPU definitions and a shared
SoC model, then uses it for two machines:

  - phytium-pi, with firmware and Linux on SD0
  - phytium-e2000-come, with firmware in QSPI NOR and Linux on an
    AHCI1 SATA disk

The machines support the vendor firmware path from the on-chip
Phytium Boot ROM (PBR) handoff through Processor Base Firmware (PBF),
TF-A, OP-TEE, U-Boot, and Linux. They can also directly boot SDK Linux
kernels when supplied with matching board device trees.

The PBR model does not execute undocumented ROM code. It parses the
selected fip-all.bin, validates the PBF, TF-A FIP, and platform
parameter records, and reconstructs the observed handoff state. The
MHU model handles the private SCMI power-domain requests needed to
release secondary CPUs and exposes a separate Base-protocol channel
to Linux.

The shared E2000Q machine provides GICv3/ITS, UARTs, GPEX PCIe,
SMMUv3, four Cadence GEM controllers, two DesignWare-derived MCI
controllers, QSPI, I2C, xHCI, AHCI, a random generator, and the
firmware-facing DDR and control regions. Unimplemented register
windows remain visible to firmware without claiming unsupported
behavior.

Functional tests exercise both firmware and direct Linux boot on the
Phytium Pi with an SDK Buildroot image. Manual testing covers Phytium
Pi SD boot, COMe QSPI-to-SATA boot, all four CPUs, and network access.

Known limitations are documented. In particular, the PBR handoff is
a behavioral model validated against the available SDK firmware
samples.


Bin Meng (33):
  target/arm: Add Phytium FTC310 and FTC664 CPU models
  hw/arm: Add basic Phytium Pi machine
  hw/arm: phytium: Add Phytium E2000 PCIe host
  hw/sd: Add Synopsys DesignWare MCI controller
  hw/sd: Add Phytium E2000 MCI controller
  hw/arm: phytium: Connect Phytium E2000 MCI controllers
  tests/qtest: Add Synopsys DesignWare MCI coverage
  hw/arm: phytium: Connect Phytium E2000 GEM controllers
  hw/misc: Add Phytium E2000 DDR status
  hw/arm: phytium: Connect the Phytium E2000 DDR status
  hw/misc: Add Phytium E2000 MHU doorbell
  hw/arm: phytium: Connect the Phytium E2000 MHU
  hw/ssi: Add Phytium E2000 QSPI controller
  hw/arm: phytium: Connect the Phytium E2000 QSPI controller
  hw/misc: Add Phytium E2000 PBR model
  hw/arm: phytium: Integrate the Phytium E2000 PBR
  hw/arm: phytium: Add Phytium E2000 control region placeholders
  hw/misc: Support Phytium E2000 SCMI CPU power control
  hw/arm: phytium: Select the Phytium E2000 PBR boot medium
  hw/arm: phytium: Connect the Phytium E2000 I2C controller
  hw/arm: phytium: Add Phytium E2000 xHCI controllers
  hw/misc: Model the Phytium E2000 random generator
  hw/arm: phytium: Connect the Phytium E2000 random generator
  hw/arm: phytium: Support Phytium E2000 direct Linux boot
  hw/arm: phytium: Add Phytium E2000Q COMe machine
  hw/block: m25p80: Add GigaDevice GD25Q128 flash
  hw/arm: phytium: Connect the Phytium E2000Q COMe QSPI flash
  hw/arm: phytium: Add Phytium E2000 AHCI controllers
  hw/arm: Add Phytium E2000 Linux SCMI channel
  hw/arm: phytium: Connect the Phytium E2000 SMMUv3
  docs/system/arm: Document Phytium E2000 machines
  tests/functional/aarch64: Add Phytium Pi boot tests
  MAINTAINERS: Add Phytium E2000Q machines

 MAINTAINERS                                 |   17 +
 docs/system/arm/phytium_e2000.rst           |  412 ++++++
 docs/system/target-arm.rst                  |    1 +
 hw/arm/Kconfig                              |   22 +
 hw/arm/meson.build                          |    1 +
 hw/arm/phytium_e2000.c                      | 1181 ++++++++++++++++
 hw/block/m25p80.c                           |    1 +
 hw/misc/meson.build                         |    4 +
 hw/misc/phytium_e2000_ddr.c                 |  197 +++
 hw/misc/phytium_e2000_mhu.c                 |  818 +++++++++++
 hw/misc/phytium_e2000_pbr.c                 | 1366 ++++++++++++++++++
 hw/misc/phytium_e2000_rng.c                 |  182 +++
 hw/sd/Kconfig                               |    5 +
 hw/sd/dw_mci.c                              | 1382 +++++++++++++++++++
 hw/sd/meson.build                           |    2 +
 hw/sd/phytium_e2000_mci.c                   |   95 ++
 hw/ssi/Kconfig                              |    5 +
 hw/ssi/meson.build                          |    1 +
 hw/ssi/phytium_qspi.c                       |  398 ++++++
 include/hw/misc/phytium_e2000_ddr.h         |   23 +
 include/hw/misc/phytium_e2000_mhu.h         |   34 +
 include/hw/misc/phytium_e2000_pbr.h         |   62 +
 include/hw/misc/phytium_e2000_rng.h         |   23 +
 include/hw/sd/dw_mci.h                      |   74 +
 include/hw/sd/phytium_e2000_mci.h           |   21 +
 include/hw/ssi/phytium_qspi.h               |   23 +
 target/arm/tcg/cpu64.c                      |   81 ++
 tests/functional/aarch64/meson.build        |    2 +
 tests/functional/aarch64/test_phytium_pi.py |   77 ++
 tests/qtest/dw_mci-test.c                   |  417 ++++++
 tests/qtest/meson.build                     |    1 +
 31 files changed, 6928 insertions(+)
 create mode 100644 docs/system/arm/phytium_e2000.rst
 create mode 100644 hw/arm/phytium_e2000.c
 create mode 100644 hw/misc/phytium_e2000_ddr.c
 create mode 100644 hw/misc/phytium_e2000_mhu.c
 create mode 100644 hw/misc/phytium_e2000_pbr.c
 create mode 100644 hw/misc/phytium_e2000_rng.c
 create mode 100644 hw/sd/dw_mci.c
 create mode 100644 hw/sd/phytium_e2000_mci.c
 create mode 100644 hw/ssi/phytium_qspi.c
 create mode 100644 include/hw/misc/phytium_e2000_ddr.h
 create mode 100644 include/hw/misc/phytium_e2000_mhu.h
 create mode 100644 include/hw/misc/phytium_e2000_pbr.h
 create mode 100644 include/hw/misc/phytium_e2000_rng.h
 create mode 100644 include/hw/sd/dw_mci.h
 create mode 100644 include/hw/sd/phytium_e2000_mci.h
 create mode 100644 include/hw/ssi/phytium_qspi.h
 create mode 100644 tests/functional/aarch64/test_phytium_pi.py
 create mode 100644 tests/qtest/dw_mci-test.c

---
base-commit: 61d82640e03f5fdbeb70c455e2b3cbff539600ec
branch: phytium

-- 
2.53.0



^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2026-09-05  3:40 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [PATCH 03/33] hw/arm: phytium: Add Phytium E2000 PCIe host Bin Meng
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox