diff options
| author | Anshul Dalal <[email protected]> | 2026-05-18 13:52:53 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-05-29 14:02:18 -0600 |
| commit | 1ea8b3e8e2d6c80469b5f082cc5f2b9287a7ddf5 (patch) | |
| tree | 6a53fc1365e44c4f8a5c52925c9c8e9119aac090 /include/env/ti | |
| parent | 2b6d243be22885e6f54eb79724c9d54db1ad03b4 (diff) | |
env: ti: k3_dfu: use Kconfig options for addresses
The load addresses for DFU download binaries were hardcoded for K3
devices which required redefinition of such env for boards that deviated
from the expected K3 memory map (such as AM6254atl EMV).
This patch replaces the hardcoded addresses with their corresponding
Kconfig options making the k3_dfu.env more general.
Signed-off-by: Anshul Dalal <[email protected]>
Diffstat (limited to 'include/env/ti')
| -rw-r--r-- | include/env/ti/k3_dfu.env | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/env/ti/k3_dfu.env b/include/env/ti/k3_dfu.env index 0f82a8afb42..1ae9ae6ae15 100644 --- a/include/env/ti/k3_dfu.env +++ b/include/env/ti/k3_dfu.env @@ -26,8 +26,8 @@ dfu_alt_info_ospi= dfu_alt_info_ram= #if CONFIG_ARM64 - u-boot.img ram 0x81000000 0x400000 + u-boot.img ram CONFIG_SPL_LOAD_FIT_ADDRESS 0x400000 #else - tispl.bin ram 0x80080000 0x200000 + tispl.bin ram CONFIG_SPL_LOAD_FIT_ADDRESS 0x200000 #endif |
