diff options
| author | Bryan Brattlof <[email protected]> | 2025-12-26 17:03:26 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-01-09 09:07:13 -0600 |
| commit | ce19a4af0ad175f94a1d3dca56f10e1e0f37ee73 (patch) | |
| tree | 55f94b34d70fd0fb301b90088f573b4ca44da8e9 | |
| parent | c05dba22f1f2b0b2655ee3971644acf1936cd07a (diff) | |
configs: am62[ap]x_evm_r5: enable SUPPORT_EMMC_BOOT
When unifying the SD/eMMC boot behavior between the different AM62*
reference boards we missed enabling SUPPORT_EMMC_BOOT. This causes the
SPL in tiboot3.bin to look for the tispl.bin in the UDA partition in the
eMMC and fail.
Enable SUPPORT_EMMC_BOOT at the tiboot3 stage to load the next boot
binary from the active boot partition when in RAW MMC boot modes.
Fixes: 3b7893145e36 ("mach-k3: add eMMC FS boot support for am62[ap]")
Signed-off-by: Bryan Brattlof <[email protected]>
| -rw-r--r-- | configs/am62ax_evm_r5_defconfig | 1 | ||||
| -rw-r--r-- | configs/am62px_evm_r5_defconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/configs/am62ax_evm_r5_defconfig b/configs/am62ax_evm_r5_defconfig index 9336392a5ed..36bd340305d 100644 --- a/configs/am62ax_evm_r5_defconfig +++ b/configs/am62ax_evm_r5_defconfig @@ -78,6 +78,7 @@ CONFIG_SYS_I2C_OMAP24XX=y CONFIG_DM_MAILBOX=y CONFIG_K3_SEC_PROXY=y CONFIG_ESM_K3=y +CONFIG_SUPPORT_EMMC_BOOT=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_ADMA=y CONFIG_SPL_MMC_SDHCI_ADMA=y diff --git a/configs/am62px_evm_r5_defconfig b/configs/am62px_evm_r5_defconfig index 48ee2aad8f4..378ba21137e 100644 --- a/configs/am62px_evm_r5_defconfig +++ b/configs/am62px_evm_r5_defconfig @@ -85,6 +85,7 @@ CONFIG_SYS_I2C_OMAP24XX=y CONFIG_DM_MAILBOX=y CONFIG_K3_SEC_PROXY=y CONFIG_ESM_K3=y +CONFIG_SUPPORT_EMMC_BOOT=y CONFIG_MMC_HS400_SUPPORT=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_ADMA=y |
