diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-11-20 12:51:21 -0500 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-11-20 12:51:21 -0500 |
| commit | ef1a68848a968f7347cf7eea24072464059af8f1 (patch) | |
| tree | ba249a734bacd59c1129aa7bde167a8702c7f2b4 | |
| parent | 1508c99506b5d57b8892a5d759176000c88c93b6 (diff) | |
| parent | 0912e5359f89f303f53fd4874dadab77a4949a8a (diff) | |
Merge branch 'for-rmk' of git://github.com/at91linux/linux-2.6-at91 into devel-stable
Conflicts:
arch/arm/mach-at91/Kconfig
| -rw-r--r-- | arch/arm/mach-at91/Kconfig | 91 | ||||
| -rw-r--r-- | arch/avr32/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/video/Kconfig | 5 |
3 files changed, 59 insertions, 38 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 2fd88437348b..3df124e54267 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig | |||
| @@ -1,5 +1,20 @@ | |||
| 1 | if ARCH_AT91 | 1 | if ARCH_AT91 |
| 2 | 2 | ||
| 3 | config HAVE_AT91_DATAFLASH_CARD | ||
| 4 | bool | ||
| 5 | |||
| 6 | config HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 7 | bool | ||
| 8 | |||
| 9 | config HAVE_AT91_USART3 | ||
| 10 | bool | ||
| 11 | |||
| 12 | config HAVE_AT91_USART4 | ||
| 13 | bool | ||
| 14 | |||
| 15 | config HAVE_AT91_USART5 | ||
| 16 | bool | ||
| 17 | |||
| 3 | menu "Atmel AT91 System-on-Chip" | 18 | menu "Atmel AT91 System-on-Chip" |
| 4 | 19 | ||
| 5 | choice | 20 | choice |
| @@ -10,54 +25,69 @@ config ARCH_AT91RM9200 | |||
| 10 | select CPU_ARM920T | 25 | select CPU_ARM920T |
| 11 | select GENERIC_TIME | 26 | select GENERIC_TIME |
| 12 | select GENERIC_CLOCKEVENTS | 27 | select GENERIC_CLOCKEVENTS |
| 28 | select HAVE_AT91_USART3 | ||
| 13 | 29 | ||
| 14 | config ARCH_AT91SAM9260 | 30 | config ARCH_AT91SAM9260 |
| 15 | bool "AT91SAM9260 or AT91SAM9XE" | 31 | bool "AT91SAM9260 or AT91SAM9XE" |
| 16 | select CPU_ARM926T | 32 | select CPU_ARM926T |
| 17 | select GENERIC_TIME | 33 | select GENERIC_TIME |
| 18 | select GENERIC_CLOCKEVENTS | 34 | select GENERIC_CLOCKEVENTS |
| 35 | select HAVE_AT91_USART3 | ||
| 36 | select HAVE_AT91_USART4 | ||
| 37 | select HAVE_AT91_USART5 | ||
| 19 | 38 | ||
| 20 | config ARCH_AT91SAM9261 | 39 | config ARCH_AT91SAM9261 |
| 21 | bool "AT91SAM9261" | 40 | bool "AT91SAM9261" |
| 22 | select CPU_ARM926T | 41 | select CPU_ARM926T |
| 23 | select GENERIC_TIME | 42 | select GENERIC_TIME |
| 24 | select GENERIC_CLOCKEVENTS | 43 | select GENERIC_CLOCKEVENTS |
| 44 | select HAVE_FB_ATMEL | ||
| 25 | 45 | ||
| 26 | config ARCH_AT91SAM9G10 | 46 | config ARCH_AT91SAM9G10 |
| 27 | bool "AT91SAM9G10" | 47 | bool "AT91SAM9G10" |
| 28 | select CPU_ARM926T | 48 | select CPU_ARM926T |
| 29 | select GENERIC_TIME | 49 | select GENERIC_TIME |
| 30 | select GENERIC_CLOCKEVENTS | 50 | select GENERIC_CLOCKEVENTS |
| 51 | select HAVE_FB_ATMEL | ||
| 31 | 52 | ||
| 32 | config ARCH_AT91SAM9263 | 53 | config ARCH_AT91SAM9263 |
| 33 | bool "AT91SAM9263" | 54 | bool "AT91SAM9263" |
| 34 | select CPU_ARM926T | 55 | select CPU_ARM926T |
| 35 | select GENERIC_TIME | 56 | select GENERIC_TIME |
| 36 | select GENERIC_CLOCKEVENTS | 57 | select GENERIC_CLOCKEVENTS |
| 58 | select HAVE_FB_ATMEL | ||
| 37 | 59 | ||
| 38 | config ARCH_AT91SAM9RL | 60 | config ARCH_AT91SAM9RL |
| 39 | bool "AT91SAM9RL" | 61 | bool "AT91SAM9RL" |
| 40 | select CPU_ARM926T | 62 | select CPU_ARM926T |
| 41 | select GENERIC_TIME | 63 | select GENERIC_TIME |
| 42 | select GENERIC_CLOCKEVENTS | 64 | select GENERIC_CLOCKEVENTS |
| 65 | select HAVE_AT91_USART3 | ||
| 66 | select HAVE_FB_ATMEL | ||
| 43 | 67 | ||
| 44 | config ARCH_AT91SAM9G20 | 68 | config ARCH_AT91SAM9G20 |
| 45 | bool "AT91SAM9G20" | 69 | bool "AT91SAM9G20" |
| 46 | select CPU_ARM926T | 70 | select CPU_ARM926T |
| 47 | select GENERIC_TIME | 71 | select GENERIC_TIME |
| 48 | select GENERIC_CLOCKEVENTS | 72 | select GENERIC_CLOCKEVENTS |
| 73 | select HAVE_AT91_USART3 | ||
| 74 | select HAVE_AT91_USART4 | ||
| 75 | select HAVE_AT91_USART5 | ||
| 49 | 76 | ||
| 50 | config ARCH_AT91SAM9G45 | 77 | config ARCH_AT91SAM9G45 |
| 51 | bool "AT91SAM9G45" | 78 | bool "AT91SAM9G45" |
| 52 | select CPU_ARM926T | 79 | select CPU_ARM926T |
| 53 | select GENERIC_TIME | 80 | select GENERIC_TIME |
| 54 | select GENERIC_CLOCKEVENTS | 81 | select GENERIC_CLOCKEVENTS |
| 82 | select HAVE_AT91_USART3 | ||
| 83 | select HAVE_FB_ATMEL | ||
| 55 | 84 | ||
| 56 | config ARCH_AT91CAP9 | 85 | config ARCH_AT91CAP9 |
| 57 | bool "AT91CAP9" | 86 | bool "AT91CAP9" |
| 58 | select CPU_ARM926T | 87 | select CPU_ARM926T |
| 59 | select GENERIC_TIME | 88 | select GENERIC_TIME |
| 60 | select GENERIC_CLOCKEVENTS | 89 | select GENERIC_CLOCKEVENTS |
| 90 | select HAVE_FB_ATMEL | ||
| 61 | 91 | ||
| 62 | config ARCH_AT91X40 | 92 | config ARCH_AT91X40 |
| 63 | bool "AT91x40" | 93 | bool "AT91x40" |
| @@ -76,89 +106,79 @@ comment "AT91RM9200 Board Type" | |||
| 76 | 106 | ||
| 77 | config MACH_ONEARM | 107 | config MACH_ONEARM |
| 78 | bool "Ajeco 1ARM Single Board Computer" | 108 | bool "Ajeco 1ARM Single Board Computer" |
| 79 | depends on ARCH_AT91RM9200 | ||
| 80 | help | 109 | help |
| 81 | Select this if you are using Ajeco's 1ARM Single Board Computer. | 110 | Select this if you are using Ajeco's 1ARM Single Board Computer. |
| 82 | <http://www.ajeco.fi/products.htm> | 111 | <http://www.ajeco.fi/products.htm> |
| 83 | 112 | ||
| 84 | config ARCH_AT91RM9200DK | 113 | config ARCH_AT91RM9200DK |
| 85 | bool "Atmel AT91RM9200-DK Development board" | 114 | bool "Atmel AT91RM9200-DK Development board" |
| 86 | depends on ARCH_AT91RM9200 | 115 | select HAVE_AT91_DATAFLASH_CARD |
| 87 | help | 116 | help |
| 88 | Select this if you are using Atmel's AT91RM9200-DK Development board. | 117 | Select this if you are using Atmel's AT91RM9200-DK Development board. |
| 89 | (Discontinued) | 118 | (Discontinued) |
| 90 | 119 | ||
| 91 | config MACH_AT91RM9200EK | 120 | config MACH_AT91RM9200EK |
| 92 | bool "Atmel AT91RM9200-EK Evaluation Kit" | 121 | bool "Atmel AT91RM9200-EK Evaluation Kit" |
| 93 | depends on ARCH_AT91RM9200 | 122 | select HAVE_AT91_DATAFLASH_CARD |
| 94 | help | 123 | help |
| 95 | Select this if you are using Atmel's AT91RM9200-EK Evaluation Kit. | 124 | Select this if you are using Atmel's AT91RM9200-EK Evaluation Kit. |
| 96 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507> | 125 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507> |
| 97 | 126 | ||
| 98 | config MACH_CSB337 | 127 | config MACH_CSB337 |
| 99 | bool "Cogent CSB337" | 128 | bool "Cogent CSB337" |
| 100 | depends on ARCH_AT91RM9200 | ||
| 101 | help | 129 | help |
| 102 | Select this if you are using Cogent's CSB337 board. | 130 | Select this if you are using Cogent's CSB337 board. |
| 103 | <http://www.cogcomp.com/csb_csb337.htm> | 131 | <http://www.cogcomp.com/csb_csb337.htm> |
| 104 | 132 | ||
| 105 | config MACH_CSB637 | 133 | config MACH_CSB637 |
| 106 | bool "Cogent CSB637" | 134 | bool "Cogent CSB637" |
| 107 | depends on ARCH_AT91RM9200 | ||
| 108 | help | 135 | help |
| 109 | Select this if you are using Cogent's CSB637 board. | 136 | Select this if you are using Cogent's CSB637 board. |
| 110 | <http://www.cogcomp.com/csb_csb637.htm> | 137 | <http://www.cogcomp.com/csb_csb637.htm> |
| 111 | 138 | ||
| 112 | config MACH_CARMEVA | 139 | config MACH_CARMEVA |
| 113 | bool "Conitec ARM&EVA" | 140 | bool "Conitec ARM&EVA" |
| 114 | depends on ARCH_AT91RM9200 | ||
| 115 | help | 141 | help |
| 116 | Select this if you are using Conitec's AT91RM9200-MCU-Module. | 142 | Select this if you are using Conitec's AT91RM9200-MCU-Module. |
| 117 | <http://www.conitec.net/english/linuxboard.htm> | 143 | <http://www.conitec.net/english/linuxboard.htm> |
| 118 | 144 | ||
| 119 | config MACH_ATEB9200 | 145 | config MACH_ATEB9200 |
| 120 | bool "Embest ATEB9200" | 146 | bool "Embest ATEB9200" |
| 121 | depends on ARCH_AT91RM9200 | ||
| 122 | help | 147 | help |
| 123 | Select this if you are using Embest's ATEB9200 board. | 148 | Select this if you are using Embest's ATEB9200 board. |
| 124 | <http://www.embedinfo.com/english/product/ATEB9200.asp> | 149 | <http://www.embedinfo.com/english/product/ATEB9200.asp> |
| 125 | 150 | ||
| 126 | config MACH_KB9200 | 151 | config MACH_KB9200 |
| 127 | bool "KwikByte KB920x" | 152 | bool "KwikByte KB920x" |
| 128 | depends on ARCH_AT91RM9200 | ||
| 129 | help | 153 | help |
| 130 | Select this if you are using KwikByte's KB920x board. | 154 | Select this if you are using KwikByte's KB920x board. |
| 131 | <http://kwikbyte.com/KB9202_description_new.htm> | 155 | <http://kwikbyte.com/KB9202_description_new.htm> |
| 132 | 156 | ||
| 133 | config MACH_PICOTUX2XX | 157 | config MACH_PICOTUX2XX |
| 134 | bool "picotux 200" | 158 | bool "picotux 200" |
| 135 | depends on ARCH_AT91RM9200 | ||
| 136 | help | 159 | help |
| 137 | Select this if you are using a picotux 200. | 160 | Select this if you are using a picotux 200. |
| 138 | <http://www.picotux.com/> | 161 | <http://www.picotux.com/> |
| 139 | 162 | ||
| 140 | config MACH_KAFA | 163 | config MACH_KAFA |
| 141 | bool "Sperry-Sun KAFA board" | 164 | bool "Sperry-Sun KAFA board" |
| 142 | depends on ARCH_AT91RM9200 | ||
| 143 | help | 165 | help |
| 144 | Select this if you are using Sperry-Sun's KAFA board. | 166 | Select this if you are using Sperry-Sun's KAFA board. |
| 145 | 167 | ||
| 146 | config MACH_ECBAT91 | 168 | config MACH_ECBAT91 |
| 147 | bool "emQbit ECB_AT91 SBC" | 169 | bool "emQbit ECB_AT91 SBC" |
| 148 | depends on ARCH_AT91RM9200 | 170 | select HAVE_AT91_DATAFLASH_CARD |
| 149 | help | 171 | help |
| 150 | Select this if you are using emQbit's ECB_AT91 board. | 172 | Select this if you are using emQbit's ECB_AT91 board. |
| 151 | <http://wiki.emqbit.com/free-ecb-at91> | 173 | <http://wiki.emqbit.com/free-ecb-at91> |
| 152 | 174 | ||
| 153 | config MACH_YL9200 | 175 | config MACH_YL9200 |
| 154 | bool "ucDragon YL-9200" | 176 | bool "ucDragon YL-9200" |
| 155 | depends on ARCH_AT91RM9200 | ||
| 156 | help | 177 | help |
| 157 | Select this if you are using the ucDragon YL-9200 board. | 178 | Select this if you are using the ucDragon YL-9200 board. |
| 158 | 179 | ||
| 159 | config MACH_CPUAT91 | 180 | config MACH_CPUAT91 |
| 160 | bool "Eukrea CPUAT91" | 181 | bool "Eukrea CPUAT91" |
| 161 | depends on ARCH_AT91RM9200 | ||
| 162 | help | 182 | help |
| 163 | Select this if you are using the Eukrea Electromatique's | 183 | Select this if you are using the Eukrea Electromatique's |
| 164 | CPUAT91 board <http://www.eukrea.com/>. | 184 | CPUAT91 board <http://www.eukrea.com/>. |
| @@ -173,7 +193,6 @@ comment "AT91SAM9260 Variants" | |||
| 173 | 193 | ||
| 174 | config ARCH_AT91SAM9260_SAM9XE | 194 | config ARCH_AT91SAM9260_SAM9XE |
| 175 | bool "AT91SAM9XE" | 195 | bool "AT91SAM9XE" |
| 176 | depends on ARCH_AT91SAM9260 | ||
| 177 | help | 196 | help |
| 178 | Select this if you are using Atmel's AT91SAM9XE System-on-Chip. | 197 | Select this if you are using Atmel's AT91SAM9XE System-on-Chip. |
| 179 | They are basically AT91SAM9260s with various sizes of embedded Flash. | 198 | They are basically AT91SAM9260s with various sizes of embedded Flash. |
| @@ -182,28 +201,27 @@ comment "AT91SAM9260 / AT91SAM9XE Board Type" | |||
| 182 | 201 | ||
| 183 | config MACH_AT91SAM9260EK | 202 | config MACH_AT91SAM9260EK |
| 184 | bool "Atmel AT91SAM9260-EK / AT91SAM9XE Evaluation Kit" | 203 | bool "Atmel AT91SAM9260-EK / AT91SAM9XE Evaluation Kit" |
| 185 | depends on ARCH_AT91SAM9260 | 204 | select HAVE_AT91_DATAFLASH_CARD |
| 205 | select HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 186 | help | 206 | help |
| 187 | Select this if you are using Atmel's AT91SAM9260-EK or AT91SAM9XE Evaluation Kit | 207 | Select this if you are using Atmel's AT91SAM9260-EK or AT91SAM9XE Evaluation Kit |
| 188 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3933> | 208 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3933> |
| 189 | 209 | ||
| 190 | config MACH_CAM60 | 210 | config MACH_CAM60 |
| 191 | bool "KwikByte KB9260 (CAM60) board" | 211 | bool "KwikByte KB9260 (CAM60) board" |
| 192 | depends on ARCH_AT91SAM9260 | ||
| 193 | help | 212 | help |
| 194 | Select this if you are using KwikByte's KB9260 (CAM60) board based on the Atmel AT91SAM9260. | 213 | Select this if you are using KwikByte's KB9260 (CAM60) board based on the Atmel AT91SAM9260. |
| 195 | <http://www.kwikbyte.com/KB9260.html> | 214 | <http://www.kwikbyte.com/KB9260.html> |
| 196 | 215 | ||
| 197 | config MACH_SAM9_L9260 | 216 | config MACH_SAM9_L9260 |
| 198 | bool "Olimex SAM9-L9260 board" | 217 | bool "Olimex SAM9-L9260 board" |
| 199 | depends on ARCH_AT91SAM9260 | 218 | select HAVE_AT91_DATAFLASH_CARD |
| 200 | help | 219 | help |
| 201 | Select this if you are using Olimex's SAM9-L9260 board based on the Atmel AT91SAM9260. | 220 | Select this if you are using Olimex's SAM9-L9260 board based on the Atmel AT91SAM9260. |
| 202 | <http://www.olimex.com/dev/sam9-L9260.html> | 221 | <http://www.olimex.com/dev/sam9-L9260.html> |
| 203 | 222 | ||
| 204 | config MACH_AFEB9260 | 223 | config MACH_AFEB9260 |
| 205 | bool "Custom afeb9260 board v1" | 224 | bool "Custom afeb9260 board v1" |
| 206 | depends on ARCH_AT91SAM9260 | ||
| 207 | help | 225 | help |
| 208 | Select this if you are using custom afeb9260 board based on | 226 | Select this if you are using custom afeb9260 board based on |
| 209 | open hardware design. Select this for revision 1 of the board. | 227 | open hardware design. Select this for revision 1 of the board. |
| @@ -212,21 +230,18 @@ config MACH_AFEB9260 | |||
| 212 | 230 | ||
| 213 | config MACH_USB_A9260 | 231 | config MACH_USB_A9260 |
| 214 | bool "CALAO USB-A9260" | 232 | bool "CALAO USB-A9260" |
| 215 | depends on ARCH_AT91SAM9260 | ||
| 216 | help | 233 | help |
| 217 | Select this if you are using a Calao Systems USB-A9260. | 234 | Select this if you are using a Calao Systems USB-A9260. |
| 218 | <http://www.calao-systems.com> | 235 | <http://www.calao-systems.com> |
| 219 | 236 | ||
| 220 | config MACH_QIL_A9260 | 237 | config MACH_QIL_A9260 |
| 221 | bool "CALAO QIL-A9260 board" | 238 | bool "CALAO QIL-A9260 board" |
| 222 | depends on ARCH_AT91SAM9260 | ||
| 223 | help | 239 | help |
| 224 | Select this if you are using a Calao Systems QIL-A9260 Board. | 240 | Select this if you are using a Calao Systems QIL-A9260 Board. |
| 225 | <http://www.calao-systems.com> | 241 | <http://www.calao-systems.com> |
| 226 | 242 | ||
| 227 | config MACH_CPU9260 | 243 | config MACH_CPU9260 |
| 228 | bool "Eukrea CPU9260 board" | 244 | bool "Eukrea CPU9260 board" |
| 229 | depends on ARCH_AT91SAM9260 | ||
| 230 | help | 245 | help |
| 231 | Select this if you are using a Eukrea Electromatique's | 246 | Select this if you are using a Eukrea Electromatique's |
| 232 | CPU9260 Board <http://www.eukrea.com/> | 247 | CPU9260 Board <http://www.eukrea.com/> |
| @@ -241,7 +256,8 @@ comment "AT91SAM9261 Board Type" | |||
| 241 | 256 | ||
| 242 | config MACH_AT91SAM9261EK | 257 | config MACH_AT91SAM9261EK |
| 243 | bool "Atmel AT91SAM9261-EK Evaluation Kit" | 258 | bool "Atmel AT91SAM9261-EK Evaluation Kit" |
| 244 | depends on ARCH_AT91SAM9261 | 259 | select HAVE_AT91_DATAFLASH_CARD |
| 260 | select HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 245 | help | 261 | help |
| 246 | Select this if you are using Atmel's AT91SAM9261-EK Evaluation Kit. | 262 | Select this if you are using Atmel's AT91SAM9261-EK Evaluation Kit. |
| 247 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3820> | 263 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3820> |
| @@ -256,7 +272,8 @@ comment "AT91SAM9G10 Board Type" | |||
| 256 | 272 | ||
| 257 | config MACH_AT91SAM9G10EK | 273 | config MACH_AT91SAM9G10EK |
| 258 | bool "Atmel AT91SAM9G10-EK Evaluation Kit" | 274 | bool "Atmel AT91SAM9G10-EK Evaluation Kit" |
| 259 | depends on ARCH_AT91SAM9G10 | 275 | select HAVE_AT91_DATAFLASH_CARD |
| 276 | select HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 260 | help | 277 | help |
| 261 | Select this if you are using Atmel's AT91SAM9G10-EK Evaluation Kit. | 278 | Select this if you are using Atmel's AT91SAM9G10-EK Evaluation Kit. |
| 262 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4588> | 279 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4588> |
| @@ -271,21 +288,21 @@ comment "AT91SAM9263 Board Type" | |||
| 271 | 288 | ||
| 272 | config MACH_AT91SAM9263EK | 289 | config MACH_AT91SAM9263EK |
| 273 | bool "Atmel AT91SAM9263-EK Evaluation Kit" | 290 | bool "Atmel AT91SAM9263-EK Evaluation Kit" |
| 274 | depends on ARCH_AT91SAM9263 | 291 | select HAVE_AT91_DATAFLASH_CARD |
| 292 | select HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 275 | help | 293 | help |
| 276 | Select this if you are using Atmel's AT91SAM9263-EK Evaluation Kit. | 294 | Select this if you are using Atmel's AT91SAM9263-EK Evaluation Kit. |
| 277 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4057> | 295 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4057> |
| 278 | 296 | ||
| 279 | config MACH_USB_A9263 | 297 | config MACH_USB_A9263 |
| 280 | bool "CALAO USB-A9263" | 298 | bool "CALAO USB-A9263" |
| 281 | depends on ARCH_AT91SAM9263 | ||
| 282 | help | 299 | help |
| 283 | Select this if you are using a Calao Systems USB-A9263. | 300 | Select this if you are using a Calao Systems USB-A9263. |
| 284 | <http://www.calao-systems.com> | 301 | <http://www.calao-systems.com> |
| 285 | 302 | ||
| 286 | config MACH_NEOCORE926 | 303 | config MACH_NEOCORE926 |
| 287 | bool "Adeneo NEOCORE926" | 304 | bool "Adeneo NEOCORE926" |
| 288 | depends on ARCH_AT91SAM9263 | 305 | select HAVE_AT91_DATAFLASH_CARD |
| 289 | help | 306 | help |
| 290 | Select this if you are using the Adeneo Neocore 926 board. | 307 | Select this if you are using the Adeneo Neocore 926 board. |
| 291 | 308 | ||
| @@ -299,7 +316,6 @@ comment "AT91SAM9RL Board Type" | |||
| 299 | 316 | ||
| 300 | config MACH_AT91SAM9RLEK | 317 | config MACH_AT91SAM9RLEK |
| 301 | bool "Atmel AT91SAM9RL-EK Evaluation Kit" | 318 | bool "Atmel AT91SAM9RL-EK Evaluation Kit" |
| 302 | depends on ARCH_AT91SAM9RL | ||
| 303 | help | 319 | help |
| 304 | Select this if you are using Atmel's AT91SAM9RL-EK Evaluation Kit. | 320 | Select this if you are using Atmel's AT91SAM9RL-EK Evaluation Kit. |
| 305 | 321 | ||
| @@ -313,14 +329,15 @@ comment "AT91SAM9G20 Board Type" | |||
| 313 | 329 | ||
| 314 | config MACH_AT91SAM9G20EK | 330 | config MACH_AT91SAM9G20EK |
| 315 | bool "Atmel AT91SAM9G20-EK Evaluation Kit" | 331 | bool "Atmel AT91SAM9G20-EK Evaluation Kit" |
| 316 | depends on ARCH_AT91SAM9G20 | 332 | select HAVE_AT91_DATAFLASH_CARD |
| 333 | select HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 317 | help | 334 | help |
| 318 | Select this if you are using Atmel's AT91SAM9G20-EK Evaluation Kit | 335 | Select this if you are using Atmel's AT91SAM9G20-EK Evaluation Kit |
| 319 | that embeds only one SD/MMC slot. | 336 | that embeds only one SD/MMC slot. |
| 320 | 337 | ||
| 321 | config MACH_AT91SAM9G20EK_2MMC | 338 | config MACH_AT91SAM9G20EK_2MMC |
| 322 | bool "Atmel AT91SAM9G20-EK Evaluation Kit with 2 SD/MMC Slots" | 339 | bool "Atmel AT91SAM9G20-EK Evaluation Kit with 2 SD/MMC Slots" |
| 323 | depends on ARCH_AT91SAM9G20 | 340 | select HAVE_NAND_ATMEL_BUSWIDTH_16 |
| 324 | help | 341 | help |
| 325 | Select this if you are using an Atmel AT91SAM9G20-EK Evaluation Kit | 342 | Select this if you are using an Atmel AT91SAM9G20-EK Evaluation Kit |
| 326 | with 2 SD/MMC Slots. This is the case for AT91SAM9G20-EK rev. C and | 343 | with 2 SD/MMC Slots. This is the case for AT91SAM9G20-EK rev. C and |
| @@ -328,7 +345,6 @@ config MACH_AT91SAM9G20EK_2MMC | |||
| 328 | 345 | ||
| 329 | config MACH_CPU9G20 | 346 | config MACH_CPU9G20 |
| 330 | bool "Eukrea CPU9G20 board" | 347 | bool "Eukrea CPU9G20 board" |
| 331 | depends on ARCH_AT91SAM9G20 | ||
| 332 | help | 348 | help |
| 333 | Select this if you are using a Eukrea Electromatique's | 349 | Select this if you are using a Eukrea Electromatique's |
| 334 | CPU9G20 Board <http://www.eukrea.com/> | 350 | CPU9G20 Board <http://www.eukrea.com/> |
| @@ -343,7 +359,7 @@ comment "AT91SAM9G45 Board Type" | |||
| 343 | 359 | ||
| 344 | config MACH_AT91SAM9G45EKES | 360 | config MACH_AT91SAM9G45EKES |
| 345 | bool "Atmel AT91SAM9G45-EKES Evaluation Kit" | 361 | bool "Atmel AT91SAM9G45-EKES Evaluation Kit" |
| 346 | depends on ARCH_AT91SAM9G45 | 362 | select HAVE_NAND_ATMEL_BUSWIDTH_16 |
| 347 | help | 363 | help |
| 348 | Select this if you are using Atmel's AT91SAM9G45-EKES Evaluation Kit. | 364 | Select this if you are using Atmel's AT91SAM9G45-EKES Evaluation Kit. |
| 349 | "ES" at the end of the name means that this board is an | 365 | "ES" at the end of the name means that this board is an |
| @@ -359,7 +375,8 @@ comment "AT91CAP9 Board Type" | |||
| 359 | 375 | ||
| 360 | config MACH_AT91CAP9ADK | 376 | config MACH_AT91CAP9ADK |
| 361 | bool "Atmel AT91CAP9A-DK Evaluation Kit" | 377 | bool "Atmel AT91CAP9A-DK Evaluation Kit" |
| 362 | depends on ARCH_AT91CAP9 | 378 | select HAVE_AT91_DATAFLASH_CARD |
| 379 | select HAVE_NAND_ATMEL_BUSWIDTH_16 | ||
| 363 | help | 380 | help |
| 364 | Select this if you are using Atmel's AT91CAP9A-DK Evaluation Kit. | 381 | Select this if you are using Atmel's AT91CAP9A-DK Evaluation Kit. |
| 365 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4138> | 382 | <http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4138> |
| @@ -388,13 +405,13 @@ comment "AT91 Board Options" | |||
| 388 | 405 | ||
| 389 | config MTD_AT91_DATAFLASH_CARD | 406 | config MTD_AT91_DATAFLASH_CARD |
| 390 | bool "Enable DataFlash Card support" | 407 | bool "Enable DataFlash Card support" |
| 391 | depends on (ARCH_AT91RM9200DK || MACH_AT91RM9200EK || MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK || MACH_AT91SAM9263EK || MACH_AT91SAM9G20EK || MACH_ECBAT91 || MACH_SAM9_L9260 || MACH_AT91CAP9ADK || MACH_NEOCORE926) | 408 | depends on HAVE_AT91_DATAFLASH_CARD |
| 392 | help | 409 | help |
| 393 | Enable support for the DataFlash card. | 410 | Enable support for the DataFlash card. |
| 394 | 411 | ||
| 395 | config MTD_NAND_ATMEL_BUSWIDTH_16 | 412 | config MTD_NAND_ATMEL_BUSWIDTH_16 |
| 396 | bool "Enable 16-bit data bus interface to NAND flash" | 413 | bool "Enable 16-bit data bus interface to NAND flash" |
| 397 | depends on (MACH_AT91SAM9260EK || MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK || MACH_AT91SAM9263EK || MACH_AT91SAM9G20EK || MACH_AT91SAM9G20EK_2MMC || MACH_AT91SAM9G45EKES || MACH_AT91CAP9ADK) | 414 | depends on HAVE_NAND_ATMEL_BUSWIDTH_16 |
| 398 | help | 415 | help |
| 399 | On AT91SAM926x boards both types of NAND flash can be present | 416 | On AT91SAM926x boards both types of NAND flash can be present |
| 400 | (8 and 16 bit data bus width). | 417 | (8 and 16 bit data bus width). |
| @@ -456,15 +473,15 @@ config AT91_EARLY_USART2 | |||
| 456 | 473 | ||
| 457 | config AT91_EARLY_USART3 | 474 | config AT91_EARLY_USART3 |
| 458 | bool "USART3" | 475 | bool "USART3" |
| 459 | depends on (ARCH_AT91RM9200 || ARCH_AT91SAM9RL || ARCH_AT91SAM9260 || ARCH_AT91SAM9G20 || ARCH_AT91SAM9G45) | 476 | depends on HAVE_AT91_USART3 |
| 460 | 477 | ||
| 461 | config AT91_EARLY_USART4 | 478 | config AT91_EARLY_USART4 |
| 462 | bool "USART4" | 479 | bool "USART4" |
| 463 | depends on ARCH_AT91SAM9260 || ARCH_AT91SAM9G20 | 480 | depends on HAVE_AT91_USART4 |
| 464 | 481 | ||
| 465 | config AT91_EARLY_USART5 | 482 | config AT91_EARLY_USART5 |
| 466 | bool "USART5" | 483 | bool "USART5" |
| 467 | depends on ARCH_AT91SAM9260 || ARCH_AT91SAM9G20 | 484 | depends on HAVE_AT91_USART5 |
| 468 | 485 | ||
| 469 | endchoice | 486 | endchoice |
| 470 | 487 | ||
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index 35e3bd9858df..d856354f4272 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
| @@ -92,6 +92,7 @@ config PLATFORM_AT32AP | |||
| 92 | select PERFORMANCE_COUNTERS | 92 | select PERFORMANCE_COUNTERS |
| 93 | select ARCH_REQUIRE_GPIOLIB | 93 | select ARCH_REQUIRE_GPIOLIB |
| 94 | select GENERIC_ALLOCATOR | 94 | select GENERIC_ALLOCATOR |
| 95 | select HAVE_FB_ATMEL | ||
| 95 | 96 | ||
| 96 | # | 97 | # |
| 97 | # CPU types | 98 | # CPU types |
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 188e1ba3b69f..6b89eb55ed32 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
| @@ -5,6 +5,9 @@ | |||
| 5 | menu "Graphics support" | 5 | menu "Graphics support" |
| 6 | depends on HAS_IOMEM | 6 | depends on HAS_IOMEM |
| 7 | 7 | ||
| 8 | config HAVE_FB_ATMEL | ||
| 9 | bool | ||
| 10 | |||
| 8 | source "drivers/char/agp/Kconfig" | 11 | source "drivers/char/agp/Kconfig" |
| 9 | 12 | ||
| 10 | source "drivers/gpu/vga/Kconfig" | 13 | source "drivers/gpu/vga/Kconfig" |
| @@ -937,7 +940,7 @@ config FB_S1D13XXX | |||
| 937 | 940 | ||
| 938 | config FB_ATMEL | 941 | config FB_ATMEL |
| 939 | tristate "AT91/AT32 LCD Controller support" | 942 | tristate "AT91/AT32 LCD Controller support" |
| 940 | depends on FB && (ARCH_AT91SAM9261 || ARCH_AT91SAM9G10 || ARCH_AT91SAM9263 || ARCH_AT91SAM9RL || ARCH_AT91SAM9G45 || ARCH_AT91CAP9 || AVR32) | 943 | depends on FB && HAVE_FB_ATMEL |
| 941 | select FB_CFB_FILLRECT | 944 | select FB_CFB_FILLRECT |
| 942 | select FB_CFB_COPYAREA | 945 | select FB_CFB_COPYAREA |
| 943 | select FB_CFB_IMAGEBLIT | 946 | select FB_CFB_IMAGEBLIT |
