blob: 4757f2496dfc836c65c5c7283bc796e21f20e9cb [file] [log] [blame]
Masahiro Yamada3491ba62014-08-31 07:11:01 +09001if ARCH_DAVINCI
2
3choice
4 prompt "DaVinci board select"
Joe Hershbergera26cd042015-05-12 14:46:23 -05005 optional
Masahiro Yamada3491ba62014-08-31 07:11:01 +09006
Masahiro Yamada3491ba62014-08-31 07:11:01 +09007config TARGET_IPAM390
8 bool "IPAM390 board"
Masahiro Yamada02627352014-10-20 17:45:56 +09009 select SUPPORT_SPL
Fabien Parentf519b362016-11-29 14:23:36 +010010 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010011 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090012
Masahiro Yamada3491ba62014-08-31 07:11:01 +090013config TARGET_DA850EVM
14 bool "DA850 EVM board"
Masahiro Yamada02627352014-10-20 17:45:56 +090015 select SUPPORT_SPL
Fabien Parentf519b362016-11-29 14:23:36 +010016 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010017 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090018
Masahiro Yamada3491ba62014-08-31 07:11:01 +090019config TARGET_EA20
20 bool "EA20 board"
Tom Rinie5ec4812017-01-22 19:43:11 -050021 select BOARD_LATE_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090022
Simon Glass67619462015-08-30 19:18:59 -060023config TARGET_OMAPL138_LCDK
24 bool "OMAPL138 LCDK"
25 select SUPPORT_SPL
Fabien Parentcd895dc2016-11-29 14:23:38 +010026 select SYS_DA850_PLL_INIT
Fabien Parenta5ab44f2016-11-29 14:23:39 +010027 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090028
29config TARGET_CALIMAIN
30 bool "Calimain board"
Fabien Parentf519b362016-11-29 14:23:36 +010031 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010032 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090033
David Lechner2ac07f72016-02-26 00:46:07 -060034config TARGET_LEGOEV3
35 bool "LEGO MINDSTORMS EV3"
Fabien Parentf519b362016-11-29 14:23:36 +010036 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010037 select SYS_DA850_DDR_INIT
David Lechner2ac07f72016-02-26 00:46:07 -060038
Masahiro Yamada3491ba62014-08-31 07:11:01 +090039endchoice
40
Masahiro Yamada3491ba62014-08-31 07:11:01 +090041config SYS_SOC
Masahiro Yamada3491ba62014-08-31 07:11:01 +090042 default "davinci"
43
Fabien Parentf519b362016-11-29 14:23:36 +010044config SYS_DA850_PLL_INIT
45 bool
46
Fabien Parentb31bf372016-11-29 14:23:37 +010047config SYS_DA850_DDR_INIT
48 bool
49
Masahiro Yamada3491ba62014-08-31 07:11:01 +090050source "board/Barix/ipam390/Kconfig"
51source "board/davinci/da8xxevm/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090052source "board/davinci/ea20/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090053source "board/omicron/calimain/Kconfig"
David Lechner2ac07f72016-02-26 00:46:07 -060054source "board/lego/ev3/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090055
56endif