1if ARCH_DAVINCI 2 3choice 4 prompt "DaVinci board select" 5 optional 6 7config TARGET_ENBW_CMC 8 bool "EnBW CMC board" 9 10config TARGET_IPAM390 11 bool "IPAM390 board" 12 select SUPPORT_SPL 13 14config TARGET_DA830EVM 15 bool "DA830 EVM board" 16 17config TARGET_DA850EVM 18 bool "DA850 EVM board" 19 select SUPPORT_SPL 20 21config TARGET_OMAPL138_LCDK 22 bool "OMAPL138 LCDK" 23 select SUPPORT_SPL 24 25config TARGET_DAVINCI_DM355EVM 26 bool "DM355 EVM board" 27 28config TARGET_DAVINCI_DM355LEOPARD 29 bool "DM355 Leopard board" 30 31config TARGET_DAVINCI_DM365EVM 32 bool "DM365 EVM board" 33 34config TARGET_DAVINCI_DM6467EVM 35 bool "DM6467 EVM board" 36 37config TARGET_DAVINCI_DVEVM 38 bool "DVEVM board" 39 40config TARGET_EA20 41 bool "EA20 board" 42 43config TARGET_DAVINCI_SCHMOOGIE 44 bool "Schmoogie board" 45 46config TARGET_DAVINCI_SFFSDR 47 bool "SFFSDR board" 48 49config TARGET_DAVINCI_SONATA 50 bool "Sonata board" 51 52config TARGET_CALIMAIN 53 bool "Calimain board" 54 55endchoice 56 57config SYS_SOC 58 default "davinci" 59 60source "board/enbw/enbw_cmc/Kconfig" 61source "board/Barix/ipam390/Kconfig" 62source "board/davinci/da8xxevm/Kconfig" 63source "board/davinci/dm355evm/Kconfig" 64source "board/davinci/dm355leopard/Kconfig" 65source "board/davinci/dm365evm/Kconfig" 66source "board/davinci/dm6467evm/Kconfig" 67source "board/davinci/dvevm/Kconfig" 68source "board/davinci/ea20/Kconfig" 69source "board/davinci/schmoogie/Kconfig" 70source "board/davinci/sffsdr/Kconfig" 71source "board/davinci/sonata/Kconfig" 72source "board/omicron/calimain/Kconfig" 73 74endif 75