xref: /openbmc/u-boot/arch/arm/mach-davinci/Kconfig (revision 9c71a21d)
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_DA830EVM
12	bool "DA830 EVM board"
13
14config TARGET_DA850EVM
15	bool "DA850 EVM board"
16	select SUPPORT_SPL
17
18config TARGET_EA20
19	bool "EA20 board"
20
21config TARGET_OMAPL138_LCDK
22	bool "OMAPL138 LCDK"
23	select SUPPORT_SPL
24
25config TARGET_CALIMAIN
26	bool "Calimain board"
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"
37
38endif
39