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