xref: /rk3399_rockchip-uboot/arch/arm/mach-davinci/Kconfig (revision cd895dcbe0e2ee538c5fd9664f3ca4a17f57d83c)
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
22config TARGET_OMAPL138_LCDK
23	bool "OMAPL138 LCDK"
24	select SUPPORT_SPL
25	select SYS_DA850_PLL_INIT
26
27config TARGET_CALIMAIN
28	bool "Calimain board"
29	select SYS_DA850_PLL_INIT
30	select SYS_DA850_DDR_INIT
31
32config TARGET_LEGOEV3
33	bool "LEGO MINDSTORMS EV3"
34	select SYS_DA850_PLL_INIT
35	select SYS_DA850_DDR_INIT
36
37endchoice
38
39config SYS_SOC
40	default "davinci"
41
42config SYS_DA850_PLL_INIT
43	bool
44
45config SYS_DA850_DDR_INIT
46	bool
47
48source "board/Barix/ipam390/Kconfig"
49source "board/davinci/da8xxevm/Kconfig"
50source "board/davinci/ea20/Kconfig"
51source "board/omicron/calimain/Kconfig"
52source "board/lego/ev3/Kconfig"
53
54endif
55