U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Fixes and usability improvements for Layerscape QDS
@ 2026-08-24 12:28 Vladimir Oltean
  2026-08-24 12:28 ` [PATCH 1/6] configs: layerscape qds: disable ENV_RELOC_GD_ENV_ADDR for NOR boot Vladimir Oltean
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Vladimir Oltean @ 2026-08-24 12:28 UTC (permalink / raw)
  To: Peng Fan, u-boot; +Cc: Tom Rini

The set contains an assortment of defconfig changes to Layerscape
boards.

1/6: The LS1043A-QDS, LS1046A-QDS, LS1088A-QDS and LS2088A-QDS are
non-bootable in the default NOR boot configuration, triggering an early
SError before the U-Boot prompt.

2/6: saveenv is broken on the LS2088A-QDS in NOR boot

3/6: usability improvement for all Layerscape QDS defconfigs: enable the
"fdt apply" command to be able to apply overlays.

4/6 and 5/6: usability improvement to increase console input buffer
limit for all Layerscape boards, and remove some core limitations.

6/6: usability improvement to allow *some* Ethernet to be used on
LS1043A-QDS and LS1046A-QDS (not on-chip DPAA, but PCIe NICs).

Vladimir Oltean (6):
  configs: layerscape qds: disable ENV_RELOC_GD_ENV_ADDR for NOR boot
  configs: ls2088aqds_tfa: fix NOR flash write failure
  configs: layerscape qds: enable OF_LIBFDT_OVERLAY
  configs: layerscape: drop CONFIG_SYS_PBSIZE=532 override
  common: kconfig: raise SYS_CBSIZE default to 1024 for FSL_LSCH2/LSCH3
  configs: ls104{3,6}aqds_tfa: enable PCIe Ethernet

 common/Kconfig                                 | 3 +--
 configs/ls1012a2g5rdb_tfa_defconfig            | 1 -
 configs/ls1012afrdm_tfa_defconfig              | 1 -
 configs/ls1012afrwy_tfa_SECURE_BOOT_defconfig  | 1 -
 configs/ls1012afrwy_tfa_defconfig              | 1 -
 configs/ls1012aqds_tfa_SECURE_BOOT_defconfig   | 2 +-
 configs/ls1012aqds_tfa_defconfig               | 2 +-
 configs/ls1012ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls1012ardb_tfa_defconfig               | 1 -
 configs/ls1021aqds_ddr4_nor_defconfig          | 1 +
 configs/ls1021aqds_ddr4_nor_lpuart_defconfig   | 1 +
 configs/ls1021aqds_nand_defconfig              | 1 +
 configs/ls1021aqds_nor_SECURE_BOOT_defconfig   | 1 +
 configs/ls1021aqds_nor_defconfig               | 1 +
 configs/ls1021aqds_nor_lpuart_defconfig        | 1 +
 configs/ls1021aqds_qspi_defconfig              | 1 +
 configs/ls1021aqds_sdcard_ifc_defconfig        | 1 +
 configs/ls1021aqds_sdcard_qspi_defconfig       | 1 +
 configs/ls1028aqds_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls1028aqds_tfa_defconfig               | 1 -
 configs/ls1028aqds_tfa_lpuart_defconfig        | 1 -
 configs/ls1028ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls1028ardb_tfa_defconfig               | 1 -
 configs/ls1043aqds_tfa_SECURE_BOOT_defconfig   | 4 +++-
 configs/ls1043aqds_tfa_defconfig               | 6 ++++--
 configs/ls1043ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls1043ardb_tfa_defconfig               | 1 -
 configs/ls1046afrwy_tfa_SECURE_BOOT_defconfig  | 1 -
 configs/ls1046afrwy_tfa_defconfig              | 1 -
 configs/ls1046aqds_tfa_SECURE_BOOT_defconfig   | 4 +++-
 configs/ls1046aqds_tfa_defconfig               | 6 ++++--
 configs/ls1046ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls1046ardb_tfa_defconfig               | 1 -
 configs/ls1088aqds_tfa_defconfig               | 4 ++--
 configs/ls1088ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls1088ardb_tfa_defconfig               | 1 -
 configs/ls2080aqds_nand_defconfig              | 2 +-
 configs/ls2080aqds_qspi_defconfig              | 2 +-
 configs/ls2080ardb_nand_defconfig              | 1 -
 configs/ls2088aqds_tfa_defconfig               | 5 +++--
 configs/ls2088ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/ls2088ardb_tfa_defconfig               | 1 -
 configs/lx2160aqds_tfa_SECURE_BOOT_defconfig   | 2 +-
 configs/lx2160aqds_tfa_defconfig               | 2 +-
 configs/lx2160ardb_tfa_SECURE_BOOT_defconfig   | 1 -
 configs/lx2160ardb_tfa_defconfig               | 1 -
 configs/lx2160ardb_tfa_stmm_defconfig          | 1 -
 configs/lx2162aqds_tfa_SECURE_BOOT_defconfig   | 2 +-
 configs/lx2162aqds_tfa_defconfig               | 2 +-
 configs/lx2162aqds_tfa_verified_boot_defconfig | 2 +-
 50 files changed, 38 insertions(+), 46 deletions(-)

-- 
2.34.1


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

end of thread, other threads:[~2026-08-25 14:20 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-24 12:28 [PATCH 0/6] Fixes and usability improvements for Layerscape QDS Vladimir Oltean
2026-08-24 12:28 ` [PATCH 1/6] configs: layerscape qds: disable ENV_RELOC_GD_ENV_ADDR for NOR boot Vladimir Oltean
2026-08-24 12:28 ` [PATCH 2/6] configs: ls2088aqds_tfa: fix NOR flash write failure Vladimir Oltean
2026-08-24 12:28 ` [PATCH 3/6] configs: layerscape qds: enable OF_LIBFDT_OVERLAY Vladimir Oltean
2026-08-24 12:28 ` [PATCH 4/6] configs: layerscape: drop CONFIG_SYS_PBSIZE=532 override Vladimir Oltean
2026-08-24 12:28 ` [PATCH 5/6] common: kconfig: raise SYS_CBSIZE default to 1024 for FSL_LSCH2/LSCH3 Vladimir Oltean
2026-08-25  8:01   ` Peng Fan
2026-08-25  8:19     ` Vladimir Oltean
2026-08-25 14:20       ` Tom Rini
2026-08-24 12:28 ` [PATCH 6/6] configs: ls104{3,6}aqds_tfa: enable PCIe Ethernet Vladimir Oltean
2026-08-24 13:20 ` [PATCH 0/6] Fixes and usability improvements for Layerscape QDS Vincent Jardin

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