blob: 067b6c386b063cf07008e299ef40e0aa184c4e75 [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
Masahiro Yamada3491ba62014-08-31 07:11:01 +090026
27config TARGET_CALIMAIN
28 bool "Calimain board"
Fabien Parentf519b362016-11-29 14:23:36 +010029 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010030 select SYS_DA850_DDR_INIT
Masahiro Yamada3491ba62014-08-31 07:11:01 +090031
David Lechner2ac07f72016-02-26 00:46:07 -060032config TARGET_LEGOEV3
33 bool "LEGO MINDSTORMS EV3"
Fabien Parentf519b362016-11-29 14:23:36 +010034 select SYS_DA850_PLL_INIT
Fabien Parentb31bf372016-11-29 14:23:37 +010035 select SYS_DA850_DDR_INIT
David Lechner2ac07f72016-02-26 00:46:07 -060036
Masahiro Yamada3491ba62014-08-31 07:11:01 +090037endchoice
38
Masahiro Yamada3491ba62014-08-31 07:11:01 +090039config SYS_SOC
Masahiro Yamada3491ba62014-08-31 07:11:01 +090040 default "davinci"
41
Fabien Parentf519b362016-11-29 14:23:36 +010042config SYS_DA850_PLL_INIT
43 bool
44
Fabien Parentb31bf372016-11-29 14:23:37 +010045config SYS_DA850_DDR_INIT
46 bool
47
Masahiro Yamada3491ba62014-08-31 07:11:01 +090048source "board/Barix/ipam390/Kconfig"
49source "board/davinci/da8xxevm/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090050source "board/davinci/ea20/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090051source "board/omicron/calimain/Kconfig"
David Lechner2ac07f72016-02-26 00:46:07 -060052source "board/lego/ev3/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +090053
54endif