Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 1 | if ARCH_DAVINCI |
2 | |||||
3 | choice | ||||
4 | prompt "DaVinci board select" | ||||
Joe Hershberger | a26cd04 | 2015-05-12 14:46:23 -0500 | [diff] [blame] | 5 | optional |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 6 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 7 | config TARGET_IPAM390 |
8 | bool "IPAM390 board" | ||||
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 9 | select SUPPORT_SPL |
Fabien Parent | f519b36 | 2016-11-29 14:23:36 +0100 | [diff] [blame] | 10 | select SYS_DA850_PLL_INIT |
Fabien Parent | b31bf37 | 2016-11-29 14:23:37 +0100 | [diff] [blame] | 11 | select SYS_DA850_DDR_INIT |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 12 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 13 | config TARGET_DA850EVM |
14 | bool "DA850 EVM board" | ||||
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 15 | select SUPPORT_SPL |
Fabien Parent | f519b36 | 2016-11-29 14:23:36 +0100 | [diff] [blame] | 16 | select SYS_DA850_PLL_INIT |
Fabien Parent | b31bf37 | 2016-11-29 14:23:37 +0100 | [diff] [blame] | 17 | select SYS_DA850_DDR_INIT |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 18 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 19 | config TARGET_EA20 |
20 | bool "EA20 board" | ||||
21 | |||||
Simon Glass | 6761946 | 2015-08-30 19:18:59 -0600 | [diff] [blame] | 22 | config TARGET_OMAPL138_LCDK |
23 | bool "OMAPL138 LCDK" | ||||
24 | select SUPPORT_SPL | ||||
Fabien Parent | cd895dc | 2016-11-29 14:23:38 +0100 | [diff] [blame^] | 25 | select SYS_DA850_PLL_INIT |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 26 | |
27 | config TARGET_CALIMAIN | ||||
28 | bool "Calimain board" | ||||
Fabien Parent | f519b36 | 2016-11-29 14:23:36 +0100 | [diff] [blame] | 29 | select SYS_DA850_PLL_INIT |
Fabien Parent | b31bf37 | 2016-11-29 14:23:37 +0100 | [diff] [blame] | 30 | select SYS_DA850_DDR_INIT |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 31 | |
David Lechner | 2ac07f7 | 2016-02-26 00:46:07 -0600 | [diff] [blame] | 32 | config TARGET_LEGOEV3 |
33 | bool "LEGO MINDSTORMS EV3" | ||||
Fabien Parent | f519b36 | 2016-11-29 14:23:36 +0100 | [diff] [blame] | 34 | select SYS_DA850_PLL_INIT |
Fabien Parent | b31bf37 | 2016-11-29 14:23:37 +0100 | [diff] [blame] | 35 | select SYS_DA850_DDR_INIT |
David Lechner | 2ac07f7 | 2016-02-26 00:46:07 -0600 | [diff] [blame] | 36 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 37 | endchoice |
38 | |||||
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 39 | config SYS_SOC |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 40 | default "davinci" |
41 | |||||
Fabien Parent | f519b36 | 2016-11-29 14:23:36 +0100 | [diff] [blame] | 42 | config SYS_DA850_PLL_INIT |
43 | bool | ||||
44 | |||||
Fabien Parent | b31bf37 | 2016-11-29 14:23:37 +0100 | [diff] [blame] | 45 | config SYS_DA850_DDR_INIT |
46 | bool | ||||
47 | |||||
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 48 | source "board/Barix/ipam390/Kconfig" |
49 | source "board/davinci/da8xxevm/Kconfig" | ||||
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 50 | source "board/davinci/ea20/Kconfig" |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 51 | source "board/omicron/calimain/Kconfig" |
David Lechner | 2ac07f7 | 2016-02-26 00:46:07 -0600 | [diff] [blame] | 52 | source "board/lego/ev3/Kconfig" |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 53 | |
54 | endif |