board: sama5d27_som1_ek: Modify load addresses
When using OP-TEE, address range [0x20000000 - 0x22000000] is reserved. This modification allows to have a system which always work even when OP-TEE is present. Signed-off-by: Clément Léger <clement.leger@bootlin.com>
This commit is contained in:
committed by
Eugen Hristev
parent
73c1589f02
commit
9a211d5776
@@ -14,24 +14,20 @@
|
|||||||
#undef CONFIG_SYS_AT91_MAIN_CLOCK
|
#undef CONFIG_SYS_AT91_MAIN_CLOCK
|
||||||
#define CONFIG_SYS_AT91_MAIN_CLOCK 24000000 /* from 24 MHz crystal */
|
#define CONFIG_SYS_AT91_MAIN_CLOCK 24000000 /* from 24 MHz crystal */
|
||||||
|
|
||||||
/* SDRAM */
|
|
||||||
#define CONFIG_SYS_SDRAM_BASE 0x20000000
|
|
||||||
#define CONFIG_SYS_SDRAM_SIZE 0x8000000
|
|
||||||
|
|
||||||
#ifdef CONFIG_SPL_BUILD
|
#ifdef CONFIG_SPL_BUILD
|
||||||
#define CONFIG_SYS_INIT_SP_ADDR 0x218000
|
#define CONFIG_SYS_INIT_SP_ADDR 0x218000
|
||||||
#else
|
#else
|
||||||
#define CONFIG_SYS_INIT_SP_ADDR \
|
#define CONFIG_SYS_INIT_SP_ADDR \
|
||||||
(CONFIG_SYS_SDRAM_BASE + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
|
(0x22000000 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#undef CONFIG_BOOTCOMMAND
|
#undef CONFIG_BOOTCOMMAND
|
||||||
#ifdef CONFIG_SD_BOOT
|
#ifdef CONFIG_SD_BOOT
|
||||||
/* bootstrap + u-boot + env in sd card */
|
/* bootstrap + u-boot + env in sd card */
|
||||||
#define CONFIG_BOOTCOMMAND "fatload mmc " CONFIG_ENV_FAT_DEVICE_AND_PART " 0x21000000 " \
|
#define CONFIG_BOOTCOMMAND "fatload mmc " CONFIG_ENV_FAT_DEVICE_AND_PART " 0x22000000 " \
|
||||||
CONFIG_DEFAULT_DEVICE_TREE ".dtb; " \
|
CONFIG_DEFAULT_DEVICE_TREE ".dtb; " \
|
||||||
"fatload mmc " CONFIG_ENV_FAT_DEVICE_AND_PART " 0x22000000 zImage; " \
|
"fatload mmc " CONFIG_ENV_FAT_DEVICE_AND_PART " 0x23000000 zImage; " \
|
||||||
"bootz 0x22000000 - 0x21000000"
|
"bootz 0x23000000 - 0x22000000"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* SPL */
|
/* SPL */
|
||||||
|
|||||||
Reference in New Issue
Block a user