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_CAM_ENC_4XX 22 bool "CAM ENC 4xx board" 23 select SUPPORT_SPL 24 25config TARGET_OMAPL138_LCDK 26 bool "OMAPL138 LCDK" 27 select SUPPORT_SPL 28 29config TARGET_DAVINCI_DM355EVM 30 bool "DM355 EVM board" 31 32config TARGET_DAVINCI_DM355LEOPARD 33 bool "DM355 Leopard board" 34 35config TARGET_DAVINCI_DM365EVM 36 bool "DM365 EVM board" 37 38config TARGET_DAVINCI_DM6467EVM 39 bool "DM6467 EVM board" 40 41config TARGET_DAVINCI_DVEVM 42 bool "DVEVM board" 43 44config TARGET_EA20 45 bool "EA20 board" 46 47config TARGET_DAVINCI_SCHMOOGIE 48 bool "Schmoogie board" 49 50config TARGET_DAVINCI_SFFSDR 51 bool "SFFSDR board" 52 53config TARGET_DAVINCI_SONATA 54 bool "Sonata board" 55 56config TARGET_CALIMAIN 57 bool "Calimain board" 58 59endchoice 60 61config SYS_SOC 62 default "davinci" 63 64source "board/enbw/enbw_cmc/Kconfig" 65source "board/ait/cam_enc_4xx/Kconfig" 66source "board/Barix/ipam390/Kconfig" 67source "board/davinci/da8xxevm/Kconfig" 68source "board/davinci/dm355evm/Kconfig" 69source "board/davinci/dm355leopard/Kconfig" 70source "board/davinci/dm365evm/Kconfig" 71source "board/davinci/dm6467evm/Kconfig" 72source "board/davinci/dvevm/Kconfig" 73source "board/davinci/ea20/Kconfig" 74source "board/davinci/schmoogie/Kconfig" 75source "board/davinci/sffsdr/Kconfig" 76source "board/davinci/sonata/Kconfig" 77source "board/omicron/calimain/Kconfig" 78 79endif 80