aboutsummaryrefslogtreecommitdiff
path: root/board/beagle/beagleplay/Kconfig
blob: 896a1c1be3010ea4a69395ef1e9667d9a5ba23e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# SPDX-License-Identifier:     GPL-2.0+
#
# Copyright (C) 2022-2023 Texas Instruments Incorporated - https://www.ti.com/
# Copyright (C) 2022-2023 Robert Nelson, BeagleBoard.org Foundation
#

choice
	prompt "BeagleBoard.org AM625 based BeaglePlay board"
	optional

config TARGET_AM625_A53_BEAGLEPLAY
	bool "BeagleBoard.org AM625 BeaglePlay running on A53"
	select ARM64
	select BINMAN
	select OF_SYSTEM_SETUP

config TARGET_AM625_R5_BEAGLEPLAY
	bool "BeagleBoard.org AM625 BeaglePlay running on R5"
	select CPU_V7R
	select SYS_THUMB_BUILD
	select K3_LOAD_SYSFW
	select RAM
	select SPL_RAM
	select K3_DDRSS
	select BINMAN
	imply SYS_K3_SPL_ATF

endchoice

if TARGET_AM625_A53_BEAGLEPLAY

config SYS_BOARD
       default "beagleplay"

config SYS_VENDOR
       default "beagle"

config SYS_CONFIG_NAME
       default "am62x_evm"

source "board/ti/common/Kconfig"

endif

if TARGET_AM625_R5_BEAGLEPLAY

config SYS_BOARD
       default "beagleplay"

config SYS_VENDOR
       default "beagle"

config SYS_CONFIG_NAME
       default "am62x_evm"

config SPL_LDSCRIPT
	default "arch/arm/mach-omap2/u-boot-spl.lds"

source "board/ti/common/Kconfig"

endif