1if OMAP34XX 2 3config SPL_EXT_SUPPORT 4 default y 5 6config SPL_FAT_SUPPORT 7 default y 8 9config SPL_GPIO_SUPPORT 10 default y 11 12config SPL_I2C_SUPPORT 13 default y 14 15config SPL_LIBCOMMON_SUPPORT 16 default y 17 18config SPL_LIBDISK_SUPPORT 19 default y 20 21config SPL_LIBGENERIC_SUPPORT 22 default y 23 24config SPL_MMC_SUPPORT 25 default y 26 27config SPL_NAND_SUPPORT 28 default y 29 30config SPL_POWER_SUPPORT 31 default y 32 33config SPL_SERIAL_SUPPORT 34 default y 35 36choice 37 prompt "OMAP3 board select" 38 optional 39 40config TARGET_AM3517_EVM 41 bool "AM3517 EVM" 42 43config TARGET_MT_VENTOUX 44 bool "TeeJet Mt.Ventoux" 45 46config TARGET_OMAP3_BEAGLE 47 bool "TI OMAP3 BeagleBoard" 48 select DM 49 select DM_SERIAL 50 select DM_GPIO 51 52config TARGET_CM_T35 53 bool "CompuLab CM-T3530 and CM-T3730 boards" 54 55config TARGET_CM_T3517 56 bool "CompuLab CM-T3517 boards" 57 58config TARGET_DEVKIT8000 59 bool "TimLL OMAP3 Devkit8000" 60 select DM 61 select DM_SERIAL 62 select DM_GPIO 63 64config TARGET_OMAP3_EVM 65 bool "TI OMAP3 EVM" 66 67config TARGET_OMAP3_IGEP00X0 68 bool "IGEP" 69 select DM 70 select DM_SERIAL 71 select DM_GPIO 72 73config TARGET_OMAP3_OVERO 74 bool "OMAP35xx Gumstix Overo" 75 select DM 76 select DM_SERIAL 77 select DM_GPIO 78 79config TARGET_OMAP3_ZOOM1 80 bool "TI Zoom1" 81 select DM 82 select DM_SERIAL 83 select DM_GPIO 84 85config TARGET_AM3517_CRANE 86 bool "am3517_crane" 87 88config TARGET_OMAP3_PANDORA 89 bool "OMAP3 Pandora" 90 91config TARGET_ECO5PK 92 bool "ECO5PK" 93 94config TARGET_TRICORDER 95 bool "Tricorder" 96 97config TARGET_MCX 98 bool "MCX" 99 100config TARGET_OMAP3_LOGIC 101 bool "OMAP3 Logic" 102 select DM 103 select DM_SERIAL 104 select DM_GPIO 105 106config TARGET_NOKIA_RX51 107 bool "Nokia RX51" 108 109config TARGET_TAO3530 110 bool "TAO3530" 111 112config TARGET_TWISTER 113 bool "Twister" 114 115config TARGET_OMAP3_CAIRO 116 bool "QUIPOS CAIRO" 117 select DM 118 select DM_SERIAL 119 select DM_GPIO 120 121config TARGET_SNIPER 122 bool "LG Optimus Black" 123 select DM 124 select DM_SERIAL 125 select DM_GPIO 126 127endchoice 128 129config SYS_SOC 130 default "omap3" 131 132source "board/logicpd/am3517evm/Kconfig" 133source "board/teejet/mt_ventoux/Kconfig" 134source "board/ti/beagle/Kconfig" 135source "board/compulab/cm_t35/Kconfig" 136source "board/compulab/cm_t3517/Kconfig" 137source "board/timll/devkit8000/Kconfig" 138source "board/ti/evm/Kconfig" 139source "board/isee/igep00x0/Kconfig" 140source "board/overo/Kconfig" 141source "board/logicpd/zoom1/Kconfig" 142source "board/ti/am3517crane/Kconfig" 143source "board/pandora/Kconfig" 144source "board/8dtech/eco5pk/Kconfig" 145source "board/corscience/tricorder/Kconfig" 146source "board/htkw/mcx/Kconfig" 147source "board/logicpd/omap3som/Kconfig" 148source "board/nokia/rx51/Kconfig" 149source "board/technexion/tao3530/Kconfig" 150source "board/technexion/twister/Kconfig" 151source "board/quipos/cairo/Kconfig" 152source "board/lg/sniper/Kconfig" 153 154endif 155