diff options
| author | Andrew Davis <afd@ti.com> | 2024-02-14 10:30:04 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-03-06 09:09:00 -0500 |
| commit | 4129bdfbc1f4ce167747662db1d3b4f3f2fba2ff (patch) | |
| tree | b2c75fc50b8cf3aad0e3f840c8792ce7170f4cb6 /arch/arm | |
| parent | c2ad5fb616d4e8aa2ac00e224030589847731fbe (diff) | |
arm: mach-k3: Add default ATF location for AM62/AM62a
There is a default ATF load address that is used for devices that have
ATF running in SRAM. For AM62 and AM62a, ATF runs from DRAM. Instead
of having to override the address in every defconfig, make add a
default for these ATF in DRAM devices.
Signed-off-by: Andrew Davis <afd@ti.com>
Acked-by: Bryan Brattlof <bb@ti.com>
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
Diffstat (limited to 'arch/arm')
| -rw-r--r-- | arch/arm/mach-k3/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-k3/Kconfig b/arch/arm/mach-k3/Kconfig index 03898424c95..0bd3f9fa12d 100644 --- a/arch/arm/mach-k3/Kconfig +++ b/arch/arm/mach-k3/Kconfig @@ -123,10 +123,11 @@ config SYS_K3_SPL_ATF config K3_ATF_LOAD_ADDR hex "Load address of ATF image" + default 0x9e780000 if (SOC_K3_AM625 || SOC_K3_AM62A7) default 0x70000000 help - The load address for the ATF image. This value defaults to 0x70000000 - if not provided in the board defconfig file. + The load address for the ATF image. This value is used to build the + FIT image header that places ATF in memory where it will run. config K3_DM_FW bool "Separate DM firmware image" |
