blob: c593dadf682743519b14d2da65b0743a1ae5231a [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"
21
Simon Glass67619462015-08-30 19:18:59 -060022config TARGET_OMAPL138_LCDK
23 bool "OMAPL138 LCDK"
24 select SUPPORT_SPL
Fabien Parentcd895dc2016-11-29 14:23:38 +010025 select SYS_DA850_PLL_INIT
Fabien Parenta5ab44f2016-11-29 14:23:39 +010026 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090027
28config TARGET_CALIMAIN
29 bool "Calimain board"
Fabien Parentf519b362016-11-29 14:23:36 +010030 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010031 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090032
David Lechner2ac07f72016-02-26 00:46:07 -060033config TARGET_LEGOEV3
34 bool "LEGO MINDSTORMS EV3"
Fabien Parentf519b362016-11-29 14:23:36 +010035 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010036 select SYS_DA850_DDR_INIT
David Lechner2ac07f72016-02-26 00:46:07 -060037
Masahiro Yamada3491ba62014-08-31 07:11:01 +090038endchoice
39
Masahiro Yamada3491ba62014-08-31 07:11:01 +090040config SYS_SOC
Masahiro Yamada3491ba62014-08-31 07:11:01 +090041 default "davinci"
42
Fabien Parentf519b362016-11-29 14:23:36 +010043config SYS_DA850_PLL_INIT
44 bool
45
Fabien Parentb31bf372016-11-29 14:23:37 +010046config SYS_DA850_DDR_INIT
47 bool
48
Masahiro Yamada3491ba62014-08-31 07:11:01 +090049source "board/Barix/ipam390/Kconfig"
50source "board/davinci/da8xxevm/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090051source "board/davinci/ea20/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090052source "board/omicron/calimain/Kconfig"
David Lechner2ac07f72016-02-26 00:46:07 -060053source "board/lego/ev3/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090054
55endif