]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-davinci/Kconfig
Merge git://git.denx.de/u-boot-mpc85xx
[u-boot] / 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         select SYS_DA850_DDR_INIT
12
13 config TARGET_DA850EVM
14         bool "DA850 EVM board"
15         select SUPPORT_SPL
16         select SYS_DA850_PLL_INIT
17         select SYS_DA850_DDR_INIT
18
19 config TARGET_EA20
20         bool "EA20 board"
21
22 config TARGET_OMAPL138_LCDK
23         bool "OMAPL138 LCDK"
24         select SUPPORT_SPL
25         select SYS_DA850_PLL_INIT
26         select SYS_DA850_DDR_INIT
27
28 config TARGET_CALIMAIN
29         bool "Calimain board"
30         select SYS_DA850_PLL_INIT
31         select SYS_DA850_DDR_INIT
32
33 config TARGET_LEGOEV3
34         bool "LEGO MINDSTORMS EV3"
35         select SYS_DA850_PLL_INIT
36         select SYS_DA850_DDR_INIT
37
38 endchoice
39
40 config SYS_SOC
41         default "davinci"
42
43 config SYS_DA850_PLL_INIT
44         bool
45
46 config SYS_DA850_DDR_INIT
47         bool
48
49 source "board/Barix/ipam390/Kconfig"
50 source "board/davinci/da8xxevm/Kconfig"
51 source "board/davinci/ea20/Kconfig"
52 source "board/omicron/calimain/Kconfig"
53 source "board/lego/ev3/Kconfig"
54
55 endif