summaryrefslogtreecommitdiff
path: root/board/ti/am62ax/Kconfig
diff options
context:
space:
mode:
authorBryan Brattlof <bb@ti.com>2022-11-04 03:13:57 +0300
committerTom Rini <trini@konsulko.com>2022-12-09 22:10:28 +0300
commitd90c8bc441e2f0331fa2365ad07927bbbef725b3 (patch)
tree399f7183f88c5b9effb5f9a7fae27daa549a2429 /board/ti/am62ax/Kconfig
parentb6cbcd61556e0d9de4c389071e3a826e577b9f43 (diff)
downloadu-boot-d90c8bc441e2f0331fa2365ad07927bbbef725b3.tar.xz
board: ti: introduce the basic files needed to support the am62a
Introduce the bare minimum SD and UART support for the am62a sk. Signed-off-by: Bryan Brattlof <bb@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ti/am62ax/Kconfig')
-rw-r--r--board/ti/am62ax/Kconfig52
1 files changed, 52 insertions, 0 deletions
diff --git a/board/ti/am62ax/Kconfig b/board/ti/am62ax/Kconfig
new file mode 100644
index 0000000000..2c18cd49b5
--- /dev/null
+++ b/board/ti/am62ax/Kconfig
@@ -0,0 +1,52 @@
+# SPDX-License-Identifier: GPL-2.0+
+#
+# Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
+#
+
+choice
+ prompt "TI K3 AM62Ax based boards"
+ optional
+
+config TARGET_AM62A7_A53_EVM
+ bool "TI K3 based AM62A7 EVM running on A53"
+ select ARM64
+ select SOC_K3_AM62A7
+ imply BOARD
+ imply SPL_BOARD
+ imply TI_I2C_BOARD_DETECT
+
+config TARGET_AM62A7_R5_EVM
+ bool "TI K3 based AM62A7 EVM running on R5"
+ select CPU_V7R
+ select SYS_THUMB_BUILD
+ select K3_LOAD_SYSFW
+ select SOC_K3_AM62A7
+ select RAM
+ select SPL_RAM
+ select K3_DDRSS
+ imply SYS_K3_SPL_ATF
+ imply TI_I2C_BOARD_DETECT
+
+endchoice
+
+if TARGET_AM62A7_R5_EVM || TARGET_AM62A7_A53_EVM
+
+config SYS_BOARD
+ default "am62ax"
+
+config SYS_VENDOR
+ default "ti"
+
+config SYS_CONFIG_NAME
+ default "am62ax_evm"
+
+source "board/ti/common/Kconfig"
+
+endif
+
+if TARGET_AM62A7_R5_EVM
+
+config SPL_LDSCRIPT
+ default "arch/arm/mach-omap2/u-boot-spl.lds"
+
+endif