TI's AM6254atl (or AM62x SiP for short) provides the existing AM62x SoC with 512MiB of DDR integrated in a single package. This patch adds the necessary U-Boot devie tree files, the required defconfigs along with the documentation for the AM62x SiP EVM. AM62x SiP differs from the already supported AM62x in following ways: - OP-TEE for the AM62x resides from 0x9e800000 to 0xa0000000 which needs to be moved to 0x80080000 to free up space at end of DDR in AM62x SiP with 512MiB of memory. This is required to allow U-Boot to relocate to end of DDR before booting to the kernel. - Changes to the env: 1. splashimage address updated from 0x80200000 to 0x81a00000 2. DFU addresses updated to match updated TEXT_BASE for SPL and U-Boot Signed-off-by: Anshul Dalal <anshuld@ti.com>
16 lines
459 B
Plaintext
16 lines
459 B
Plaintext
#include <configs/am62x_evm_a53_defconfig>
|
|
|
|
CONFIG_ARM=y
|
|
CONFIG_ARCH_K3=y
|
|
CONFIG_SOC_K3_AM625=y
|
|
CONFIG_TARGET_AM625_A53_EVM=y
|
|
CONFIG_TEXT_BASE=0x82f80000
|
|
CONFIG_SPL_TEXT_BASE=0x82000000
|
|
CONFIG_SPL_STACK_R_ADDR=0x83f80000
|
|
CONFIG_K3_OPTEE_LOAD_ADDR=0x80080000
|
|
CONFIG_SPL_BSS_START_ADDR=0x82c00000
|
|
CONFIG_SPL_LOAD_FIT_ADDRESS=0x82f80000
|
|
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x82b00000
|
|
CONFIG_DEFAULT_DEVICE_TREE="ti/k3-am6254atl-sk"
|
|
CONFIG_ENV_SOURCE_FILE="am6254atl"
|