]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-davinci/Kconfig
ffb9a45475fbdbd3d406f4f11f3a38d06e76738c
[people/ms/u-boot.git] / arch / arm / mach-davinci / Kconfig
1 if ARCH_DAVINCI
2
3 choice
4 prompt "DaVinci board select"
5 optional
6
7 config TARGET_IPAM390
8 bool "IPAM390 board"
9 select SUPPORT_SPL
10 select SYS_DA850_PLL_INIT
11
12 config TARGET_DA850EVM
13 bool "DA850 EVM board"
14 select SUPPORT_SPL
15 select SYS_DA850_PLL_INIT
16
17 config TARGET_EA20
18 bool "EA20 board"
19
20 config TARGET_OMAPL138_LCDK
21 bool "OMAPL138 LCDK"
22 select SUPPORT_SPL
23
24 config TARGET_CALIMAIN
25 bool "Calimain board"
26 select SYS_DA850_PLL_INIT
27
28 config TARGET_LEGOEV3
29 bool "LEGO MINDSTORMS EV3"
30 select SYS_DA850_PLL_INIT
31
32 endchoice
33
34 config SYS_SOC
35 default "davinci"
36
37 config SYS_DA850_PLL_INIT
38 bool
39
40 source "board/Barix/ipam390/Kconfig"
41 source "board/davinci/da8xxevm/Kconfig"
42 source "board/davinci/ea20/Kconfig"
43 source "board/omicron/calimain/Kconfig"
44 source "board/lego/ev3/Kconfig"
45
46 endif