U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] Renesas RZ/N1 additional drivers
@ 2026-08-14 18:38 Ralph Siemsen
  2026-08-14 18:38 ` [PATCH v2 1/8] board: schneider: rzn1-snarc: set serial number Ralph Siemsen
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Ralph Siemsen @ 2026-08-14 18:38 UTC (permalink / raw)
  To: u-boot
  Cc: Ralph Siemsen, Tom Rini, Nobuhiro Iwamatsu, Marek Vasut,
	Ilias Apalodimas, Udit Kumar

Enable many more of the peripherals found on Renesas RZ/N1 SoC,
including GPIO, MMC, QSPI, NAND, Ethernet GMAC/switch/converters.

This builds on top of the basic support that was added in May 2023:
https://lists.u-boot-project.org/pipermail/u-boot/2023-May/518098.html

It has been tested on the Schneider RZ/N1 board, including support
for USB (DFU/fastboot/UMS) using the driver from Romain Gantois:
https://lists.u-boot-project.org/pipermail/u-boot/2026-July/623625.html

This patch series is based on v2026.10-rc2.

Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org>
---
Changes in v2:
- subsystem changes were split into separate patches:
  https://lore.kernel.org/u-boot/20260814-rzn1-2026-10-pinctrl-v2-1-95dec872b1ca@linaro.org/T/#u
  https://lore.kernel.org/u-boot/20260814-rzn1-2026-10-spi-v2-0-973d5fa092f2@linaro.org/T/#t
  https://lore.kernel.org/u-boot/20260814-rzn1-2026-10-gpio-v2-1-7490cc61b337@linaro.org/
  https://lore.kernel.org/u-boot/20260814-rzn1-2026-10-net-v2-0-ff03583dc2b0@linaro.org/T/#t
  https://lore.kernel.org/u-boot/20260814-rzn1-2026-10-mmc-v2-1-51e4d8a717b8@linaro.org/T/#u
  https://lore.kernel.org/u-boot/20260814-rzn1-2026-10-nand-v2-1-7aadfa5ca3d4@linaro.org/
- also depends on the USB driver from Romain Gantois:
  https://lists.u-boot-project.org/pipermail/u-boot/2026-July/623625.html

To: u-boot@lists.u-boot-project.org
Cc: Ralph Siemsen <ralph.siemsen@linaro.org>
Cc: Tom Rini <trini@konsulko.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Marek Vasut <marek.vasut+renesas@mailbox.org>
Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Cc: Udit Kumar <u-kumar1@ti.com>

---
Ralph Siemsen (8):
      board: schneider: rzn1-snarc: set serial number
      board: schneider: rzn1-snarc: add rzn1.env
      board: schneider: rzn1-snarc: update MAINTAINERS
      ARM: renesas: RZ/N1 QSPI controller features
      ARM: dts: r9a06g032: sync with upstream
      ARM: dts: r9a06g032: add QSPI controller
      ARM: dts: r9a06g032-rzn1-snarc: enable new drivers
      configs: rzn1_snarc_defconfig: enable new drivers

 arch/arm/dts/r9a06g032-rzn1-snarc.dts  | 376 ++++++++++++++++++++++++++++++++-
 arch/arm/dts/r9a06g032.dtsi            | 282 +++++++++++++++++++++++--
 arch/arm/mach-renesas/Kconfig          |   4 +
 board/schneider/rzn1-snarc/MAINTAINERS |   3 +
 board/schneider/rzn1-snarc/rzn1.c      |  25 +++
 board/schneider/rzn1-snarc/rzn1.env    |  21 ++
 configs/rzn1_snarc_defconfig           |  76 +++++++
 include/configs/rzn1-snarc.h           |   5 +
 8 files changed, 771 insertions(+), 21 deletions(-)
---
base-commit: 36c377b9859ffb53eb1e39ea31e8d96d1e0fe1e5
change-id: 20260811-rzn1-2026-10-e7e9695debbf

Best regards,
--  
Ralph Siemsen <ralph.siemsen@linaro.org>


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

end of thread, other threads:[~2026-08-16 23:44 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-14 18:38 [PATCH v2 0/8] Renesas RZ/N1 additional drivers Ralph Siemsen
2026-08-14 18:38 ` [PATCH v2 1/8] board: schneider: rzn1-snarc: set serial number Ralph Siemsen
2026-08-14 22:22   ` Marek Vasut via U-Boot
2026-08-14 18:38 ` [PATCH v2 2/8] board: schneider: rzn1-snarc: add rzn1.env Ralph Siemsen
2026-08-14 22:23   ` Marek Vasut via U-Boot
2026-08-14 18:38 ` [PATCH v2 3/8] board: schneider: rzn1-snarc: update MAINTAINERS Ralph Siemsen
2026-08-14 22:24   ` Marek Vasut via U-Boot
2026-08-14 18:38 ` [PATCH v2 4/8] ARM: renesas: RZ/N1 QSPI controller features Ralph Siemsen
2026-08-14 22:25   ` Marek Vasut via U-Boot
2026-08-14 18:38 ` [PATCH v2 5/8] ARM: dts: r9a06g032: sync with upstream Ralph Siemsen
2026-08-14 22:26   ` Marek Vasut via U-Boot
2026-08-15 12:24     ` Ralph Siemsen
2026-08-16 11:25       ` Marek Vasut via U-Boot
2026-08-14 18:38 ` [PATCH v2 6/8] ARM: dts: r9a06g032: add QSPI controller Ralph Siemsen
2026-08-14 18:38 ` [PATCH v2 7/8] ARM: dts: r9a06g032-rzn1-snarc: enable new drivers Ralph Siemsen
2026-08-14 18:39 ` [PATCH v2 8/8] configs: rzn1_snarc_defconfig: " Ralph Siemsen

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