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