diff options
| author | Tom Rini <[email protected]> | 2026-05-29 14:04:00 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-05-29 14:04:00 -0600 |
| commit | ddd1f2192de473a05ff79b8e52a5b72cffd5ea79 (patch) | |
| tree | bec2b270566284ca57062267245533f7418f90b0 | |
| parent | 5151c208b56c6a954c121363ad33557046154b27 (diff) | |
| parent | 1ea8b3e8e2d6c80469b5f082cc5f2b9287a7ddf5 (diff) | |
Merge patch series "Update envs to use Kconfig values"
Anshul Dalal <[email protected]> says:
Some minor fixes to K3's env to avoid using hardcoded addresses but
instead move to Kconfig symbols.
Link: https://lore.kernel.org/r/[email protected]
| -rw-r--r-- | board/ti/am62x/am6254atl.env | 4 | ||||
| -rw-r--r-- | include/env/ti/k3_dfu.env | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/board/ti/am62x/am6254atl.env b/board/ti/am62x/am6254atl.env index ea5a33d8cc3..a9187c2b1aa 100644 --- a/board/ti/am62x/am6254atl.env +++ b/board/ti/am62x/am6254atl.env @@ -27,10 +27,6 @@ splashimage=0x82180000 splashpos=m,m splashsource=sf -dfu_alt_info_ram= - tispl.bin ram 0x82000000 0x200000; - u-boot.img ram 0x82f80000 0x400000 - #if CONFIG_BOOTMETH_ANDROID #include <env/ti/android.env> adtb_idx=0 diff --git a/include/env/ti/k3_dfu.env b/include/env/ti/k3_dfu.env index b42cf21d986..1ae9ae6ae15 100644 --- a/include/env/ti/k3_dfu.env +++ b/include/env/ti/k3_dfu.env @@ -25,6 +25,9 @@ dfu_alt_info_ospi= rootfs raw 0x800000 0x3800000 dfu_alt_info_ram= - tispl.bin ram 0x80080000 0x200000; - u-boot.img ram 0x81000000 0x400000 +#if CONFIG_ARM64 + u-boot.img ram CONFIG_SPL_LOAD_FIT_ADDRESS 0x400000 +#else + tispl.bin ram CONFIG_SPL_LOAD_FIT_ADDRESS 0x200000 +#endif |
