xref: /openbmc/u-boot/arch/arm/mach-davinci/Kconfig (revision b616d9b0)
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
11config TARGET_DA850EVM
12	bool "DA850 EVM board"
13	select SUPPORT_SPL
14
15config TARGET_EA20
16	bool "EA20 board"
17
18config TARGET_OMAPL138_LCDK
19	bool "OMAPL138 LCDK"
20	select SUPPORT_SPL
21
22config TARGET_CALIMAIN
23	bool "Calimain board"
24
25config TARGET_LEGOEV3
26	bool "LEGO MINDSTORMS EV3"
27
28endchoice
29
30config SYS_SOC
31	default "davinci"
32
33source "board/Barix/ipam390/Kconfig"
34source "board/davinci/da8xxevm/Kconfig"
35source "board/davinci/ea20/Kconfig"
36source "board/omicron/calimain/Kconfig"
37source "board/lego/ev3/Kconfig"
38
39endif
40