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_DAVINCI_DM355EVM 25 bool "DM355 EVM board" 26 27config TARGET_DAVINCI_DM355LEOPARD 28 bool "DM355 Leopard board" 29 30config TARGET_DAVINCI_DM365EVM 31 bool "DM365 EVM board" 32 33config TARGET_DAVINCI_DM6467EVM 34 bool "DM6467 EVM board" 35 36config TARGET_DAVINCI_DVEVM 37 bool "DVEVM board" 38 39config TARGET_EA20 40 bool "EA20 board" 41 42config TARGET_DAVINCI_SCHMOOGIE 43 bool "Schmoogie board" 44 45config TARGET_DAVINCI_SFFSDR 46 bool "SFFSDR board" 47 48config TARGET_DAVINCI_SONATA 49 bool "Sonata board" 50 51config TARGET_CALIMAIN 52 bool "Calimain board" 53 54endchoice 55 56config SYS_SOC 57 default "davinci" 58 59source "board/enbw/enbw_cmc/Kconfig" 60source "board/ait/cam_enc_4xx/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