diff options
author | Ricardo Salveti | 2021-09-12 17:32:57 +0300 |
---|---|---|
committer | Stefano Babic | 2022-02-05 13:38:38 +0100 |
commit | 8b71576f3842bee0559b3865ed0b129c417f27c9 (patch) | |
tree | aaeb9f6f078c3f0968989bd6c0b4530dc8a20bda /include/configs/mx7ulp_com.h | |
parent | 498eedc0d47f8f194698fcb082fbdf4f81f90625 (diff) |
mx7ulp_com: add support for SPL
Add EA iMX7ULP COM board support for building SPL.
Signed-off-by: Ricardo Salveti <ricardo@foundries.io>
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
Diffstat (limited to 'include/configs/mx7ulp_com.h')
-rw-r--r-- | include/configs/mx7ulp_com.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/mx7ulp_com.h b/include/configs/mx7ulp_com.h index 8c4d94215b9..75f5cf0b6de 100644 --- a/include/configs/mx7ulp_com.h +++ b/include/configs/mx7ulp_com.h @@ -11,6 +11,10 @@ #include <linux/sizes.h> #include <asm/arch/imx-regs.h> +#ifdef CONFIG_SPL +#include "imx7ulp_spl.h" +#endif + #define CONFIG_BOARD_POSTCLK_INIT #define CONFIG_SYS_BOOTM_LEN 0x1000000 @@ -67,5 +71,7 @@ #define CONFIG_SYS_INIT_SP_ADDR \ (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) +#define CONFIG_ARMV7_SECURE_BASE 0x2F000000 + #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) #endif /* __CONFIG_H */ |