qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/17] hw/arm: Add NPCM8XX Support
@ 2024-12-26  8:27 Hao Wu
  2024-12-26  8:27 ` [PATCH v2 01/17] docs/system/arm: Add Description for NPCM8XX SoC Hao Wu
                   ` (16 more replies)
  0 siblings, 17 replies; 35+ messages in thread
From: Hao Wu @ 2024-12-26  8:27 UTC (permalink / raw)
  To: peter.maydell
  Cc: qemu-arm, qemu-devel, Avi.Fishman, kfting, titusr, mimik-dev,
	hskinnemoen, venture, pbonzini, jasowang, alistair, Hao Wu

Changes since v1:

1. Updated vbootrom and pc-bios
2. Split out CLK/GCR patches into refactoring and adding new features
3. Fixed a few misc items from the patches.

---

NPCM8XX BMCs are the successors of the NPCM7XX BMCs. They feature
quad-core ARM Cortex A35 that supports both 32 bits and 64 bits
operations. This patch set aims to support basic functionalities
of the NPCM7XX BMCs. The patch set includes:

1. We derive most devices from the 7XX models and
made some modifications.
2. We have constructed a minimum vBootROM similar to the 7XX one at
https://github.com/google/vbootrom/tree/master/npcm8xx
and included it in the patch set.
3.  We added a new NPCM8XX SOC and an evaluation
board machine npcm845-evb.

The OpenBMC for NPCM845 evaluation board can be found at:
https://github.com/Nuvoton-Israel/openbmc/tree/npcm-v2.10/meta-evb/meta-evb-nuvoton/meta-evb-npcm845

The patch set can boot the evaluation board image built from the source
above to login prompt.

Hao Wu (17):
  docs/system/arm: Add Description for NPCM8XX SoC
  roms: Update vbootrom to 1287b6e
  pc-bios: Add NPCM8XX vBootrom
  hw/ssi: Make flash size a property in NPCM7XX FIU
  hw/misc: Rename npcm7xx_gcr to npcm_gcr
  hw/misc: Move NPCM7XX GCR to NPCM GCR
  hw/misc: Add nr_regs and cold_reset_values to NPCM GCR
  hw/misc: Add support for NPCM8XX GCR
  hw/misc: Store DRAM size in NPCM8XX GCR Module
  hw/misc: Support 8-bytes memop in NPCM GCR module
  hw/misc: Rename npcm7xx_clk to npcm_clk
  hw/misc: Move NPCM7XX CLK to NPCM CLK
  hw/misc: Add nr_regs and cold_reset_values to NPCM CLK
  hw/misc: Support NPCM8XX CLK Module Registers
  hw/net: Add NPCM8XX PCS Module
  hw/arm: Add NPCM8XX SoC
  hw/arm: Add NPCM845 Evaluation board

 MAINTAINERS                                   |   1 +
 configs/devices/aarch64-softmmu/default.mak   |   1 +
 docs/system/arm/nuvoton.rst                   |  20 +-
 hw/arm/Kconfig                                |  11 +
 hw/arm/meson.build                            |   1 +
 hw/arm/npcm7xx.c                              |   6 +
 hw/arm/npcm8xx.c                              | 810 ++++++++++++++++++
 hw/arm/npcm8xx_boards.c                       | 256 ++++++
 hw/misc/meson.build                           |   4 +-
 hw/misc/npcm7xx_gcr.c                         | 264 ------
 hw/misc/{npcm7xx_clk.c => npcm_clk.c}         | 238 +++--
 hw/misc/npcm_gcr.c                            | 483 +++++++++++
 hw/misc/trace-events                          |  12 +-
 hw/net/meson.build                            |   1 +
 hw/net/npcm_pcs.c                             | 410 +++++++++
 hw/net/trace-events                           |   4 +-
 hw/ssi/npcm7xx_fiu.c                          |  11 +-
 include/hw/arm/npcm7xx.h                      |   8 +-
 include/hw/arm/npcm8xx.h                      | 127 +++
 include/hw/misc/{npcm7xx_clk.h => npcm_clk.h} |  43 +-
 include/hw/misc/{npcm7xx_gcr.h => npcm_gcr.h} |  29 +-
 include/hw/net/npcm_pcs.h                     |  42 +
 include/hw/ssi/npcm7xx_fiu.h                  |   1 +
 pc-bios/README                                |   8 +-
 pc-bios/meson.build                           |   1 +
 pc-bios/npcm7xx_bootrom.bin                   | Bin 768 -> 768 bytes
 pc-bios/npcm8xx_bootrom.bin                   | Bin 0 -> 608 bytes
 roms/Makefile                                 |   6 +
 roms/vbootrom                                 |   2 +-
 29 files changed, 2432 insertions(+), 368 deletions(-)
 create mode 100644 hw/arm/npcm8xx.c
 create mode 100644 hw/arm/npcm8xx_boards.c
 delete mode 100644 hw/misc/npcm7xx_gcr.c
 rename hw/misc/{npcm7xx_clk.c => npcm_clk.c} (81%)
 create mode 100644 hw/misc/npcm_gcr.c
 create mode 100644 hw/net/npcm_pcs.c
 create mode 100644 include/hw/arm/npcm8xx.h
 rename include/hw/misc/{npcm7xx_clk.h => npcm_clk.h} (83%)
 rename include/hw/misc/{npcm7xx_gcr.h => npcm_gcr.h} (76%)
 create mode 100644 include/hw/net/npcm_pcs.h
 create mode 100644 pc-bios/npcm8xx_bootrom.bin

-- 
2.47.1.613.gc27f4b7a9f-goog



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

end of thread, other threads:[~2025-02-04 16:32 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-26  8:27 [PATCH v2 00/17] hw/arm: Add NPCM8XX Support Hao Wu
2024-12-26  8:27 ` [PATCH v2 01/17] docs/system/arm: Add Description for NPCM8XX SoC Hao Wu
2025-02-04 16:16   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 02/17] roms: Update vbootrom to 1287b6e Hao Wu
2025-02-04 16:30   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 03/17] pc-bios: Add NPCM8XX vBootrom Hao Wu
2025-02-04 16:31   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 04/17] hw/ssi: Make flash size a property in NPCM7XX FIU Hao Wu
2025-02-04 15:42   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 05/17] hw/misc: Rename npcm7xx_gcr to npcm_gcr Hao Wu
2025-02-04 15:43   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 06/17] hw/misc: Move NPCM7XX GCR to NPCM GCR Hao Wu
2025-02-04 15:45   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 07/17] hw/misc: Add nr_regs and cold_reset_values " Hao Wu
2025-02-04 15:48   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 08/17] hw/misc: Add support for NPCM8XX GCR Hao Wu
2025-02-04 15:49   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 09/17] hw/misc: Store DRAM size in NPCM8XX GCR Module Hao Wu
2025-02-04 15:51   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 10/17] hw/misc: Support 8-bytes memop in NPCM GCR module Hao Wu
2025-02-04 15:55   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 11/17] hw/misc: Rename npcm7xx_clk to npcm_clk Hao Wu
2025-02-04 15:56   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 12/17] hw/misc: Move NPCM7XX CLK to NPCM CLK Hao Wu
2025-02-04 16:03   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 13/17] hw/misc: Add nr_regs and cold_reset_values " Hao Wu
2025-02-04 16:04   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 14/17] hw/misc: Support NPCM8XX CLK Module Registers Hao Wu
2025-02-04 16:05   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 15/17] hw/net: Add NPCM8XX PCS Module Hao Wu
2025-02-04 16:19   ` Peter Maydell
2024-12-26  8:27 ` [PATCH v2 16/17] hw/arm: Add NPCM8XX SoC Hao Wu
2025-02-04 16:28   ` Peter Maydell
2024-12-26  8:28 ` [PATCH v2 17/17] hw/arm: Add NPCM845 Evaluation board Hao Wu
2025-02-04 16:08   ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).