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 <anshuld@ti.com>
This commit is contained in:
Anshul Dalal
2026-05-18 13:52:53 +05:30
committed by Tom Rini
parent 2b6d243be2
commit 1ea8b3e8e2
2 changed files with 2 additions and 9 deletions

View File

@@ -27,13 +27,6 @@ splashimage=0x82180000
splashpos=m,m
splashsource=sf
dfu_alt_info_ram=
#if CONFIG_ARM64
u-boot.img ram 0x82f80000 0x400000
#else
tispl.bin ram 0x82000000 0x200000
#endif
#if CONFIG_BOOTMETH_ANDROID
#include <env/ti/android.env>
adtb_idx=0

View File

@@ -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