diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2018-11-02 19:51:07 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-16 16:51:59 -0500 |
commit | 9dba883a45b06a99233ab46f11ed24369da62446 (patch) | |
tree | 171ce83306ea7d42181a1670b9933e8233a42765 /board/ti/am65x | |
parent | 59ebf4afa6ba3edc7012e3ac23aae607b0b54dbd (diff) | |
download | u-boot-9dba883a45b06a99233ab46f11ed24369da62446.tar.gz u-boot-9dba883a45b06a99233ab46f11ed24369da62446.tar.bz2 u-boot-9dba883a45b06a99233ab46f11ed24369da62446.zip |
board: ti: am654: r5: Add initial support for am654
Add initial support for AM654 based EVM running on R5.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>
Diffstat (limited to 'board/ti/am65x')
-rw-r--r-- | board/ti/am65x/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/board/ti/am65x/Kconfig b/board/ti/am65x/Kconfig index 591600483e..d4b36dbb42 100644 --- a/board/ti/am65x/Kconfig +++ b/board/ti/am65x/Kconfig @@ -12,6 +12,14 @@ config TARGET_AM654_A53_EVM select ARM64 select SOC_K3_AM6 +config TARGET_AM654_R5_EVM + bool "TI K3 based AM654 EVM running on R5" + select CPU_V7R + select SYS_THUMB_BUILD + select SOC_K3_AM6 + select K3_AM654_DDRSS + imply SYS_K3_SPL_ATF + endchoice if TARGET_AM654_A53_EVM @@ -26,3 +34,19 @@ config SYS_CONFIG_NAME default "am65x_evm" endif + +if TARGET_AM654_R5_EVM + +config SYS_BOARD + default "am65x" + +config SYS_VENDOR + default "ti" + +config SYS_CONFIG_NAME + default "am65x_evm" + +config SPL_LDSCRIPT + default "arch/arm/mach-omap2/u-boot-spl.lds" + +endif |