All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/8]SoCFPGA: Update Boot Support for CycloneV in U-Boot
@ 2025-11-25  8:13 alif.zakuan.yuslaimi
  2025-11-25  8:13 ` [PATCH v1 1/8] configs: cyclone5: Disable mkeficapsule tool build alif.zakuan.yuslaimi
                   ` (7 more replies)
  0 siblings, 8 replies; 61+ messages in thread
From: alif.zakuan.yuslaimi @ 2025-11-25  8:13 UTC (permalink / raw)
  To: u-boot
  Cc: Marek Vasut, Simon Goldschmidt, Tien Fong Chee, Peng Fan,
	Jaehoon Chung, Jan Kiszka, Brian Sune, Alif Zakuan Yuslaimi

From: Alif Zakuan Yuslaimi <alif.zakuan.yuslaimi@altera.com>

This patch set updates the boot support for the Altera SoCFPGA CycloneV platform in U-Boot. The changes include:
	1. Board-specific configurations and setup required to enable CycloneV multiboot operation in U-Boot.
	2. Migration from raw to FAT mode for SPL MMC boot
	3. Backwards compatibility support for legacy SoCFPGA devices to enable/disable SDMMC clock in common SoCFPGA MMC driver.

This patch set has been tested on CycloneV devkit with SDMMC boot and RAM boot (TFTP & ARM DS debugger).

Alif Zakuan Yuslaimi (7):
  configs: cyclone5: Disable mkeficapsule tool build
  configs: cyclone5: Enable random MAC address
  mmc: socfpga_dw_mmc: Restore legacy clkmgr address retrieval
  spl: Remove ARCH_SOCFPGA from MMC raw mode enablement
  configs: cyclone5: Enable SPL FAT support
  configs: cyclone5: Update boot command for CycloneV
  configs: cyclone5: Disable SPI in SPL

Tien Fong Chee (1):
  arm: Fix "file truncated" linker errors from empty built-in.a in
    SPL/TPL/VPL builds

 arch/arm/cpu/Makefile              |  2 +-
 arch/arm/cpu/dummy.c               |  7 +++++
 cmd/Makefile                       |  4 ++-
 cmd/dummy.c                        |  7 +++++
 common/spl/Kconfig                 |  4 +--
 configs/socfpga_cyclone5_defconfig |  8 +++++-
 disk/Makefile                      |  5 ++++
 disk/dummy.c                       |  7 +++++
 drivers/mmc/socfpga_dw_mmc.c       | 46 +++++++++++++++++++-----------
 dts/Makefile                       |  5 ++++
 dts/dummy.c                        |  7 +++++
 env/Makefile                       |  5 ++++
 env/dummy.c                        |  7 +++++
 13 files changed, 93 insertions(+), 21 deletions(-)
 create mode 100644 arch/arm/cpu/dummy.c
 create mode 100644 cmd/dummy.c
 create mode 100644 disk/dummy.c
 create mode 100644 dts/dummy.c
 create mode 100644 env/dummy.c

-- 
2.43.7


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

end of thread, other threads:[~2025-12-03  6:54 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-25  8:13 [PATCH v1 0/8]SoCFPGA: Update Boot Support for CycloneV in U-Boot alif.zakuan.yuslaimi
2025-11-25  8:13 ` [PATCH v1 1/8] configs: cyclone5: Disable mkeficapsule tool build alif.zakuan.yuslaimi
2025-12-01  3:06   ` Chee, Tien Fong
2025-11-25  8:13 ` [PATCH v1 2/8] arm: Fix "file truncated" linker errors from empty built-in.a in SPL/TPL/VPL builds alif.zakuan.yuslaimi
2025-11-25 12:23   ` Marek Vasut
2025-11-27  2:12     ` Yuslaimi, Alif Zakuan
2025-11-27 15:09       ` Marek Vasut
2025-11-28  2:11         ` Yuslaimi, Alif Zakuan
2025-11-28 15:31           ` Tom Rini
2025-11-28 16:20             ` Sune Brian
2025-11-28 16:44             ` Ilias Apalodimas
2025-11-28 16:49               ` Tom Rini
2025-11-29  0:46                 ` Sune Brian
2025-12-01 16:44                   ` Tom Rini
2025-12-01 16:52                     ` Sune Brian
2025-12-01 16:54                       ` Tom Rini
2025-12-01 17:07                         ` Sune Brian
2025-12-01 17:09                           ` Tom Rini
2025-12-01 17:59                             ` Sune Brian
2025-12-01 18:27                               ` Tom Rini
2025-12-01 18:37                                 ` Sune Brian
2025-12-01 18:38                                   ` Tom Rini
2025-12-01 18:48                                     ` Sune Brian
2025-12-01 19:10                                     ` Sune Brian
2025-12-02  7:55                 ` Ilias Apalodimas
2025-12-02  8:02                   ` Sune Brian
2025-12-02  8:53                     ` Ilias Apalodimas
2025-12-02  8:59                       ` Sune Brian
2025-12-03  6:46                         ` Yuslaimi, Alif Zakuan
2025-12-03  6:54                           ` Sune Brian
2025-11-25  8:13 ` [PATCH v1 3/8] configs: cyclone5: Enable random MAC address alif.zakuan.yuslaimi
2025-11-25 12:23   ` Marek Vasut
2025-11-27  2:14     ` Yuslaimi, Alif Zakuan
2025-11-25  8:13 ` [PATCH v1 4/8] mmc: socfpga_dw_mmc: Restore legacy clkmgr address retrieval alif.zakuan.yuslaimi
2025-11-25 12:24   ` Marek Vasut
2025-11-27  2:21     ` Yuslaimi, Alif Zakuan
2025-12-01  3:07   ` Chee, Tien Fong
2025-11-25  8:13 ` [PATCH v1 5/8] spl: Remove ARCH_SOCFPGA from MMC raw mode enablement alif.zakuan.yuslaimi
2025-12-01  3:08   ` Chee, Tien Fong
2025-11-25  8:13 ` [PATCH v1 6/8] configs: cyclone5: Enable SPL FAT support alif.zakuan.yuslaimi
2025-11-25  9:41   ` Jan Kiszka
2025-11-25  9:44     ` Jan Kiszka
2025-11-27  4:34       ` Chee, Tien Fong
2025-11-27  4:32     ` Chee, Tien Fong
2025-11-27  6:37       ` Jan Kiszka
2025-11-27  6:48         ` Sune Brian
2025-11-27  7:05           ` Jan Kiszka
2025-11-27  7:20             ` Sune Brian
2025-11-27  7:29               ` Jan Kiszka
2025-11-27  7:39                 ` Sune Brian
2025-11-27  7:50                   ` Jan Kiszka
2025-11-27  7:56                     ` Sune Brian
2025-11-27  8:22                       ` Jan Kiszka
2025-11-27  9:42                         ` Sune Brian
2025-11-27 17:42                           ` Jan Kiszka
2025-11-27 17:48                             ` Sune Brian
2025-12-01  3:08   ` Chee, Tien Fong
2025-11-25  8:13 ` [PATCH v1 7/8] configs: cyclone5: Update boot command for CycloneV alif.zakuan.yuslaimi
2025-12-01  3:10   ` Chee, Tien Fong
2025-11-25  8:13 ` [PATCH v1 8/8] configs: cyclone5: Disable SPI in SPL alif.zakuan.yuslaimi
2025-12-01  3:10   ` Chee, Tien Fong

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.