xref: /openbmc/u-boot/arch/arm/mach-davinci/Kconfig (revision abddcd52)
1if ARCH_DAVINCI
2
3choice
4	prompt "DaVinci board select"
5	optional
6
7config TARGET_IPAM390
8	bool "IPAM390 board"
9	select SUPPORT_SPL
10	select SYS_DA850_PLL_INIT
11	select SYS_DA850_DDR_INIT
12
13config TARGET_DA850EVM
14	bool "DA850 EVM board"
15	select SUPPORT_SPL
16	select SYS_DA850_PLL_INIT
17	select SYS_DA850_DDR_INIT
18
19config TARGET_EA20
20	bool "EA20 board"
21	select BOARD_LATE_INIT
22
23config TARGET_OMAPL138_LCDK
24	bool "OMAPL138 LCDK"
25	select SUPPORT_SPL
26	select SYS_DA850_PLL_INIT
27	select SYS_DA850_DDR_INIT
28
29config TARGET_CALIMAIN
30	bool "Calimain board"
31	select SYS_DA850_PLL_INIT
32	select SYS_DA850_DDR_INIT
33
34config TARGET_LEGOEV3
35	bool "LEGO MINDSTORMS EV3"
36	select SYS_DA850_PLL_INIT
37	select SYS_DA850_DDR_INIT
38
39endchoice
40
41config SYS_SOC
42	default "davinci"
43
44config SYS_DA850_PLL_INIT
45	bool
46
47config SYS_DA850_DDR_INIT
48	bool
49
50source "board/Barix/ipam390/Kconfig"
51source "board/davinci/da8xxevm/Kconfig"
52source "board/davinci/ea20/Kconfig"
53source "board/omicron/calimain/Kconfig"
54source "board/lego/ev3/Kconfig"
55
56config SPL_LDSCRIPT
57	default "board/$(BOARDDIR)/u-boot-spl-ipam390.lds" if TARGET_IPAM390
58	default "board/$(BOARDDIR)/u-boot-spl-da850evm.lds"
59
60endif
61