Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # drivers/mtd/maps/Kconfig |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 2 | # $Id: Kconfig,v 1.61 2005/11/07 11:14:26 gleixner Exp $ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
| 4 | menu "Mapping drivers for chip access" |
| 5 | depends on MTD!=n |
| 6 | |
| 7 | config MTD_COMPLEX_MAPPINGS |
| 8 | bool "Support non-linear mappings of flash chips" |
| 9 | depends on MTD |
| 10 | help |
| 11 | This causes the chip drivers to allow for complicated |
| 12 | paged mappings of flash chips. |
| 13 | |
| 14 | config MTD_PHYSMAP |
| 15 | tristate "CFI Flash device in physical memory map" |
| 16 | depends on MTD_CFI |
| 17 | help |
| 18 | This provides a 'mapping' driver which allows the CFI probe and |
| 19 | command set driver code to communicate with flash chips which |
| 20 | are mapped physically into the CPU's memory. You will need to |
| 21 | configure the physical address and size of the flash chips on |
| 22 | your particular board as well as the bus width, either statically |
| 23 | with config options or at run-time. |
| 24 | |
| 25 | config MTD_PHYSMAP_START |
| 26 | hex "Physical start address of flash mapping" |
| 27 | depends on MTD_PHYSMAP |
| 28 | default "0x8000000" |
| 29 | help |
| 30 | This is the physical memory location at which the flash chips |
| 31 | are mapped on your particular target board. Refer to the |
| 32 | memory map which should hopefully be in the documentation for |
| 33 | your board. |
| 34 | Ignore this option if you use run-time physmap configuration |
| 35 | (i.e., run-time calling physmap_configure()). |
| 36 | |
| 37 | config MTD_PHYSMAP_LEN |
| 38 | hex "Physical length of flash mapping" |
| 39 | depends on MTD_PHYSMAP |
Lennert Buytenhek | 73566ed | 2006-05-07 17:16:36 +0100 | [diff] [blame^] | 40 | default "0" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | help |
| 42 | This is the total length of the mapping of the flash chips on |
| 43 | your particular board. If there is space, or aliases, in the |
| 44 | physical memory map between the chips, this could be larger |
| 45 | than the total amount of flash present. Refer to the memory |
| 46 | map which should hopefully be in the documentation for your |
| 47 | board. |
| 48 | Ignore this option if you use run-time physmap configuration |
| 49 | (i.e., run-time calling physmap_configure()). |
| 50 | |
| 51 | config MTD_PHYSMAP_BANKWIDTH |
| 52 | int "Bank width in octets" |
| 53 | depends on MTD_PHYSMAP |
| 54 | default "2" |
| 55 | help |
| 56 | This is the total width of the data bus of the flash devices |
| 57 | in octets. For example, if you have a data bus width of 32 |
| 58 | bits, you would set the bus width octect value to 4. This is |
| 59 | used internally by the CFI drivers. |
| 60 | Ignore this option if you use run-time physmap configuration |
| 61 | (i.e., run-time calling physmap_configure()). |
| 62 | |
| 63 | config MTD_SUN_UFLASH |
| 64 | tristate "Sun Microsystems userflash support" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 65 | depends on SPARC && MTD_CFI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | help |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 67 | This provides a 'mapping' driver which supports the way in |
| 68 | which user-programmable flash chips are connected on various |
| 69 | Sun Microsystems boardsets. This driver will require CFI support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | in the kernel, so if you did not enable CFI previously, do that now. |
| 71 | |
| 72 | config MTD_PNC2000 |
| 73 | tristate "CFI Flash device mapped on Photron PNC-2000" |
| 74 | depends on X86 && MTD_CFI && MTD_PARTITIONS |
| 75 | help |
| 76 | PNC-2000 is the name of Network Camera product from PHOTRON |
| 77 | Ltd. in Japan. It uses CFI-compliant flash. |
| 78 | |
| 79 | config MTD_SC520CDP |
| 80 | tristate "CFI Flash device mapped on AMD SC520 CDP" |
Daniel Drake | fbbc21c | 2006-04-29 11:41:44 +0100 | [diff] [blame] | 81 | depends on X86 && MTD_CFI && MTD_CONCAT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | help |
| 83 | The SC520 CDP board has two banks of CFI-compliant chips and one |
| 84 | Dual-in-line JEDEC chip. This 'mapping' driver supports that |
| 85 | arrangement, implementing three MTD devices. |
| 86 | |
| 87 | config MTD_NETSC520 |
| 88 | tristate "CFI Flash device mapped on AMD NetSc520" |
| 89 | depends on X86 && MTD_CFI && MTD_PARTITIONS |
| 90 | help |
| 91 | This enables access routines for the flash chips on the AMD NetSc520 |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 92 | demonstration board. If you have one of these boards and would like |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | to use the flash chips on it, say 'Y'. |
| 94 | |
| 95 | config MTD_TS5500 |
| 96 | tristate "JEDEC Flash device mapped on Technologic Systems TS-5500" |
Sean Young | ef63d00 | 2005-11-09 00:12:50 +0000 | [diff] [blame] | 97 | depends on X86 |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 98 | select MTD_PARTITIONS |
| 99 | select MTD_JEDECPROBE |
| 100 | select MTD_CFI_AMDSTD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | help |
| 102 | This provides a driver for the on-board flash of the Technologic |
Sean Young | e27a996 | 2005-06-16 09:49:33 +0100 | [diff] [blame] | 103 | System's TS-5500 board. The 2MB flash is split into 3 partitions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | which are accessed as separate MTD devices. |
| 105 | |
Sean Young | e27a996 | 2005-06-16 09:49:33 +0100 | [diff] [blame] | 106 | mtd0 and mtd2 are the two BIOS drives, which use the resident |
| 107 | flash disk (RFD) flash translation layer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | mtd1 allows you to reprogram your BIOS. BE VERY CAREFUL. |
| 110 | |
| 111 | Note that jumper 3 ("Write Enable Drive A") must be set |
| 112 | otherwise detection won't succeeed. |
| 113 | |
| 114 | config MTD_SBC_GXX |
| 115 | tristate "CFI Flash device mapped on Arcom SBC-GXx boards" |
| 116 | depends on X86 && MTD_CFI_INTELEXT && MTD_PARTITIONS && MTD_COMPLEX_MAPPINGS |
| 117 | help |
| 118 | This provides a driver for the on-board flash of Arcom Control |
| 119 | Systems' SBC-GXn family of boards, formerly known as SBC-MediaGX. |
| 120 | By default the flash is split into 3 partitions which are accessed |
| 121 | as separate MTD devices. This board utilizes Intel StrataFlash. |
| 122 | More info at |
| 123 | <http://www.arcomcontrols.com/products/icp/pc104/processors/SBC_GX1.htm>. |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | config MTD_LUBBOCK |
| 126 | tristate "CFI Flash device mapped on Intel Lubbock XScale eval board" |
| 127 | depends on ARCH_LUBBOCK && MTD_CFI_INTELEXT && MTD_PARTITIONS |
| 128 | help |
| 129 | This provides a driver for the on-board flash of the Intel |
| 130 | 'Lubbock' XScale evaluation board. |
| 131 | |
Nico Pitre | cbec19a | 2005-07-01 23:55:24 +0100 | [diff] [blame] | 132 | config MTD_MAINSTONE |
| 133 | tristate "CFI Flash device mapped on Intel Mainstone XScale eval board" |
| 134 | depends on MACH_MAINSTONE && MTD_CFI_INTELEXT |
| 135 | select MTD_PARTITIONS |
| 136 | help |
| 137 | This provides a driver for the on-board flash of the Intel |
| 138 | 'Mainstone PXA27x evaluation board. |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | config MTD_OCTAGON |
| 141 | tristate "JEDEC Flash device mapped on Octagon 5066 SBC" |
| 142 | depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS |
| 143 | help |
| 144 | This provides a 'mapping' driver which supports the way in which |
| 145 | the flash chips are connected in the Octagon-5066 Single Board |
| 146 | Computer. More information on the board is available at |
| 147 | <http://www.octagonsystems.com/CPUpages/5066.html>. |
| 148 | |
| 149 | config MTD_VMAX |
| 150 | tristate "JEDEC Flash device mapped on Tempustech VMAX SBC301" |
| 151 | depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS |
| 152 | help |
| 153 | This provides a 'mapping' driver which supports the way in which |
| 154 | the flash chips are connected in the Tempustech VMAX SBC301 Single |
| 155 | Board Computer. More information on the board is available at |
| 156 | <http://www.tempustech.com/>. |
| 157 | |
| 158 | config MTD_SCx200_DOCFLASH |
| 159 | tristate "Flash device mapped with DOCCS on NatSemi SCx200" |
| 160 | depends on SCx200 && MTD_CFI && MTD_PARTITIONS |
| 161 | help |
| 162 | Enable support for a flash chip mapped using the DOCCS signal on a |
| 163 | National Semiconductor SCx200 processor. |
| 164 | |
| 165 | If you don't know what to do here, say N. |
| 166 | |
| 167 | If compiled as a module, it will be called scx200_docflash. |
| 168 | |
| 169 | config MTD_AMD76XROM |
| 170 | tristate "BIOS flash chip on AMD76x southbridge" |
| 171 | depends on X86 && MTD_JEDECPROBE |
| 172 | help |
| 173 | Support for treating the BIOS flash chip on AMD76x motherboards |
| 174 | as an MTD device - with this you can reprogram your BIOS. |
| 175 | |
| 176 | BE VERY CAREFUL. |
| 177 | |
| 178 | config MTD_ICHXROM |
| 179 | tristate "BIOS flash chip on Intel Controller Hub 2/3/4/5" |
| 180 | depends on X86 && MTD_JEDECPROBE |
| 181 | help |
| 182 | Support for treating the BIOS flash chip on ICHX motherboards |
| 183 | as an MTD device - with this you can reprogram your BIOS. |
| 184 | |
| 185 | BE VERY CAREFUL. |
| 186 | |
| 187 | config MTD_SCB2_FLASH |
| 188 | tristate "BIOS flash chip on Intel SCB2 boards" |
| 189 | depends on X86 && MTD_JEDECPROBE |
| 190 | help |
| 191 | Support for treating the BIOS flash chip on Intel SCB2 boards |
| 192 | as an MTD device - with this you can reprogram your BIOS. |
| 193 | |
| 194 | BE VERY CAREFUL. |
| 195 | |
| 196 | config MTD_TSUNAMI |
| 197 | tristate "Flash chips on Tsunami TIG bus" |
| 198 | depends on ALPHA_TSUNAMI && MTD_COMPLEX_MAPPINGS |
| 199 | help |
| 200 | Support for the flash chip on Tsunami TIG bus. |
| 201 | |
| 202 | config MTD_LASAT |
| 203 | tristate "Flash chips on LASAT board" |
| 204 | depends on LASAT |
| 205 | help |
| 206 | Support for the flash chips on the Lasat 100 and 200 boards. |
| 207 | |
| 208 | config MTD_NETtel |
| 209 | tristate "CFI flash device on SnapGear/SecureEdge" |
| 210 | depends on X86 && MTD_PARTITIONS && MTD_JEDECPROBE |
| 211 | help |
| 212 | Support for flash chips on NETtel/SecureEdge/SnapGear boards. |
| 213 | |
Pete Popov | 002fa30 | 2005-02-27 21:50:25 +0000 | [diff] [blame] | 214 | config MTD_ALCHEMY |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 215 | tristate ' AMD Alchemy Pb1xxx/Db1xxx/RDK MTD support' |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 216 | depends on SOC_AU1X00 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | help |
Pete Popov | 002fa30 | 2005-02-27 21:50:25 +0000 | [diff] [blame] | 218 | Flash memory access on AMD Alchemy Pb/Db/RDK Reference Boards |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Joern Engel | b523b3b | 2005-09-18 11:46:45 +0100 | [diff] [blame] | 220 | config MTD_MTX1 |
| 221 | tristate "4G Systems MTX-1 Flash device" |
| 222 | depends on MIPS && MIPS_MTX1 |
| 223 | help |
| 224 | Flash memory access on 4G Systems MTX-1 Board. If you have one of |
| 225 | these boards and would like to use the flash chips on it, say 'Y'. |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | config MTD_DILNETPC |
| 228 | tristate "CFI Flash device mapped on DIL/Net PC" |
| 229 | depends on X86 && MTD_CONCAT && MTD_PARTITIONS && MTD_CFI_INTELEXT |
| 230 | help |
| 231 | MTD map driver for SSV DIL/Net PC Boards "DNP" and "ADNP". |
| 232 | For details, see <http://www.ssv-embedded.de/ssv/pc104/p169.htm> |
| 233 | and <http://www.ssv-embedded.de/ssv/pc104/p170.htm> |
| 234 | |
| 235 | config MTD_DILNETPC_BOOTSIZE |
| 236 | hex "Size of DIL/Net PC flash boot partition" |
| 237 | depends on MTD_DILNETPC |
| 238 | default "0x80000" |
| 239 | help |
| 240 | The amount of space taken up by the kernel or Etherboot |
| 241 | on the DIL/Net PC flash chips. |
| 242 | |
| 243 | config MTD_L440GX |
| 244 | tristate "BIOS flash chip on Intel L440GX boards" |
| 245 | depends on X86 && MTD_JEDECPROBE |
| 246 | help |
| 247 | Support for treating the BIOS flash chip on Intel L440GX motherboards |
| 248 | as an MTD device - with this you can reprogram your BIOS. |
| 249 | |
| 250 | BE VERY CAREFUL. |
| 251 | |
| 252 | config MTD_SBC8240 |
| 253 | tristate "Flash device on SBC8240" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 254 | depends on MTD_JEDECPROBE && 8260 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | help |
| 256 | Flash access on the SBC8240 board from Wind River. See |
| 257 | <http://www.windriver.com/products/sbc8240/> |
| 258 | |
| 259 | config MTD_TQM8XXL |
| 260 | tristate "CFI Flash device mapped on TQM8XXL" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 261 | depends on MTD_CFI && TQM8xxL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | help |
| 263 | The TQM8xxL PowerPC board has up to two banks of CFI-compliant |
| 264 | chips, currently uses AMD one. This 'mapping' driver supports |
| 265 | that arrangement, allowing the CFI probe and command set driver |
| 266 | code to communicate with the chips on the TQM8xxL board. More at |
| 267 | <http://www.denx.de/embedded-ppc-en.html>. |
| 268 | |
| 269 | config MTD_RPXLITE |
| 270 | tristate "CFI Flash device mapped on RPX Lite or CLLF" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 271 | depends on MTD_CFI && (RPXCLASSIC || RPXLITE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | help |
| 273 | The RPXLite PowerPC board has CFI-compliant chips mapped in |
| 274 | a strange sparse mapping. This 'mapping' driver supports that |
| 275 | arrangement, allowing the CFI probe and command set driver code |
| 276 | to communicate with the chips on the RPXLite board. More at |
| 277 | <http://www.embeddedplanet.com/>. |
| 278 | |
| 279 | config MTD_MBX860 |
| 280 | tristate "System flash on MBX860 board" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 281 | depends on MTD_CFI && MBX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | help |
| 283 | This enables access routines for the flash chips on the Motorola |
| 284 | MBX860 board. If you have one of these boards and would like |
| 285 | to use the flash chips on it, say 'Y'. |
| 286 | |
| 287 | config MTD_DBOX2 |
| 288 | tristate "CFI Flash device mapped on D-Box2" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 289 | depends on DBOX2 && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | help |
| 291 | This enables access routines for the flash chips on the Nokia/Sagem |
| 292 | D-Box 2 board. If you have one of these boards and would like to use |
| 293 | the flash chips on it, say 'Y'. |
| 294 | |
| 295 | config MTD_CFI_FLAGADM |
| 296 | tristate "CFI Flash device mapping on FlagaDM" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 297 | depends on 8xx && MTD_CFI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | help |
| 299 | Mapping for the Flaga digital module. If you don't have one, ignore |
| 300 | this setting. |
| 301 | |
| 302 | config MTD_BEECH |
| 303 | tristate "CFI Flash device mapped on IBM 405LP Beech" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 304 | depends on MTD_CFI && BEECH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | help |
| 306 | This enables access routines for the flash chips on the IBM |
| 307 | 405LP Beech board. If you have one of these boards and would like |
| 308 | to use the flash chips on it, say 'Y'. |
| 309 | |
| 310 | config MTD_ARCTIC |
| 311 | tristate "CFI Flash device mapped on IBM 405LP Arctic" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 312 | depends on MTD_CFI && ARCTIC2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | help |
| 314 | This enables access routines for the flash chips on the IBM 405LP |
| 315 | Arctic board. If you have one of these boards and would like to |
| 316 | use the flash chips on it, say 'Y'. |
| 317 | |
| 318 | config MTD_WALNUT |
| 319 | tristate "Flash device mapped on IBM 405GP Walnut" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 320 | depends on MTD_JEDECPROBE && WALNUT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | help |
| 322 | This enables access routines for the flash chips on the IBM 405GP |
| 323 | Walnut board. If you have one of these boards and would like to |
| 324 | use the flash chips on it, say 'Y'. |
| 325 | |
| 326 | config MTD_EBONY |
| 327 | tristate "Flash devices mapped on IBM 440GP Ebony" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 328 | depends on MTD_JEDECPROBE && EBONY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | help |
| 330 | This enables access routines for the flash chips on the IBM 440GP |
| 331 | Ebony board. If you have one of these boards and would like to |
| 332 | use the flash chips on it, say 'Y'. |
| 333 | |
| 334 | config MTD_OCOTEA |
| 335 | tristate "Flash devices mapped on IBM 440GX Ocotea" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 336 | depends on MTD_CFI && OCOTEA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | help |
| 338 | This enables access routines for the flash chips on the IBM 440GX |
| 339 | Ocotea board. If you have one of these boards and would like to |
| 340 | use the flash chips on it, say 'Y'. |
| 341 | |
| 342 | config MTD_REDWOOD |
| 343 | tristate "CFI Flash devices mapped on IBM Redwood" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 344 | depends on MTD_CFI && ( REDWOOD_4 || REDWOOD_5 || REDWOOD_6 ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | help |
| 346 | This enables access routines for the flash chips on the IBM |
| 347 | Redwood board. If you have one of these boards and would like to |
| 348 | use the flash chips on it, say 'Y'. |
| 349 | |
Marian Balakowicz | be30c10 | 2005-11-07 08:33:38 +0000 | [diff] [blame] | 350 | config MTD_TQM834x |
| 351 | tristate "Flash device mapped on TQ Components TQM834x Boards" |
| 352 | depends on MTD_CFI && TQM834x |
| 353 | help |
| 354 | This enables access routines for the flash chips on the |
| 355 | TQ Components TQM834x boards. If you have one of these boards |
| 356 | and would like to use the flash chips on it, say 'Y'. |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | config MTD_CSTM_MIPS_IXX |
| 359 | tristate "Flash chip mapping on ITE QED-4N-S01B, Globespan IVR or custom board" |
| 360 | depends on MIPS && MTD_CFI && MTD_JEDECPROBE && MTD_PARTITIONS |
| 361 | help |
| 362 | This provides a mapping driver for the Integrated Technology |
| 363 | Express, Inc (ITE) QED-4N-S01B eval board and the Globespan IVR |
| 364 | Reference Board. It provides the necessary addressing, length, |
| 365 | buswidth, vpp code and addition setup of the flash device for |
| 366 | these boards. In addition, this mapping driver can be used for |
| 367 | other boards via setting of the CONFIG_MTD_CSTM_MIPS_IXX_START/ |
| 368 | LEN/BUSWIDTH parameters. This mapping will provide one mtd device |
| 369 | using one partition. The start address can be offset from the |
| 370 | beginning of flash and the len can be less than the total flash |
| 371 | device size to allow a window into the flash. Both CFI and JEDEC |
| 372 | probes are called. |
| 373 | |
| 374 | config MTD_CSTM_MIPS_IXX_START |
| 375 | hex "Physical start address of flash mapping" |
| 376 | depends on MTD_CSTM_MIPS_IXX |
| 377 | default "0x8000000" |
| 378 | help |
| 379 | This is the physical memory location that the MTD driver will |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 380 | use for the flash chips on your particular target board. |
| 381 | Refer to the memory map which should hopefully be in the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | documentation for your board. |
| 383 | |
| 384 | config MTD_CSTM_MIPS_IXX_LEN |
| 385 | hex "Physical length of flash mapping" |
| 386 | depends on MTD_CSTM_MIPS_IXX |
| 387 | default "0x4000000" |
| 388 | help |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 389 | This is the total length that the MTD driver will use for the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | flash chips on your particular board. Refer to the memory |
| 391 | map which should hopefully be in the documentation for your |
| 392 | board. |
| 393 | |
| 394 | config MTD_CSTM_MIPS_IXX_BUSWIDTH |
| 395 | int "Bus width in octets" |
| 396 | depends on MTD_CSTM_MIPS_IXX |
| 397 | default "2" |
| 398 | help |
| 399 | This is the total bus width of the mapping of the flash chips |
| 400 | on your particular board. |
| 401 | |
| 402 | config MTD_OCELOT |
| 403 | tristate "Momenco Ocelot boot flash device" |
| 404 | depends on MIPS && MOMENCO_OCELOT |
| 405 | help |
| 406 | This enables access routines for the boot flash device and for the |
| 407 | NVRAM on the Momenco Ocelot board. If you have one of these boards |
| 408 | and would like access to either of these, say 'Y'. |
| 409 | |
| 410 | config MTD_SOLUTIONENGINE |
| 411 | tristate "CFI Flash device mapped on Hitachi SolutionEngine" |
| 412 | depends on SUPERH && MTD_CFI && MTD_REDBOOT_PARTS |
| 413 | help |
| 414 | This enables access to the flash chips on the Hitachi SolutionEngine and |
| 415 | similar boards. Say 'Y' if you are building a kernel for such a board. |
| 416 | |
| 417 | config MTD_ARM_INTEGRATOR |
| 418 | tristate "CFI Flash device mapped on ARM Integrator/P720T" |
| 419 | depends on ARM && MTD_CFI |
| 420 | |
| 421 | config MTD_CDB89712 |
| 422 | tristate "Cirrus CDB89712 evaluation board mappings" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 423 | depends on MTD_CFI && ARCH_CDB89712 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | help |
| 425 | This enables access to the flash or ROM chips on the CDB89712 board. |
| 426 | If you have such a board, say 'Y'. |
| 427 | |
| 428 | config MTD_SA1100 |
| 429 | tristate "CFI Flash device mapped on StrongARM SA11x0" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 430 | depends on MTD_CFI && ARCH_SA1100 && MTD_PARTITIONS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | help |
| 432 | This enables access to the flash chips on most platforms based on |
| 433 | the SA1100 and SA1110, including the Assabet and the Compaq iPAQ. |
| 434 | If you have such a board, say 'Y'. |
| 435 | |
| 436 | config MTD_IPAQ |
| 437 | tristate "CFI Flash device mapped on Compaq/HP iPAQ" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 438 | depends on IPAQ_HANDHELD && MTD_CFI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | help |
| 440 | This provides a driver for the on-board flash of the iPAQ. |
| 441 | |
| 442 | config MTD_DC21285 |
| 443 | tristate "CFI Flash device mapped on DC21285 Footbridge" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 444 | depends on MTD_CFI && ARCH_FOOTBRIDGE && MTD_COMPLEX_MAPPINGS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | help |
| 446 | This provides a driver for the flash accessed using Intel's |
| 447 | 21285 bridge used with Intel's StrongARM processors. More info at |
| 448 | <http://www.intel.com/design/bridge/docs/21285_documentation.htm>. |
| 449 | |
| 450 | config MTD_IQ80310 |
| 451 | tristate "CFI Flash device mapped on the XScale IQ80310 board" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 452 | depends on MTD_CFI && ARCH_IQ80310 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | help |
| 454 | This enables access routines for the flash chips on the Intel XScale |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 455 | IQ80310 evaluation board. If you have one of these boards and would |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | like to use the flash chips on it, say 'Y'. |
| 457 | |
| 458 | config MTD_IXP4XX |
| 459 | tristate "CFI Flash device mapped on Intel IXP4xx based systems" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 460 | depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | help |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 462 | This enables MTD access to flash devices on platforms based |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | on Intel's IXP4xx family of network processors such as the |
| 464 | IXDP425 and Coyote. If you have an IXP4xx based board and |
| 465 | would like to use the flash chips on it, say 'Y'. |
| 466 | |
| 467 | config MTD_IXP2000 |
| 468 | tristate "CFI Flash device mapped on Intel IXP2000 based systems" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 469 | depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | help |
Thomas Gleixner | 69f34c9 | 2005-11-07 11:15:40 +0000 | [diff] [blame] | 471 | This enables MTD access to flash devices on platforms based |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | on Intel's IXP2000 family of network processors such as the |
| 473 | IXDP425 and Coyote. If you have an IXP2000 based board and |
| 474 | would like to use the flash chips on it, say 'Y'. |
| 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | config MTD_FORTUNET |
| 477 | tristate "CFI Flash device mapped on the FortuNet board" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 478 | depends on MTD_CFI && MTD_PARTITIONS && SA1100_FORTUNET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | help |
| 480 | This enables access to the Flash on the FortuNet board. If you |
| 481 | have such a board, say 'Y'. |
| 482 | |
| 483 | config MTD_AUTCPU12 |
| 484 | tristate "NV-RAM mapping AUTCPU12 board" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 485 | depends on ARCH_AUTCPU12 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | help |
| 487 | This enables access to the NV-RAM on autronix autcpu12 board. |
| 488 | If you have such a board, say 'Y'. |
| 489 | |
| 490 | config MTD_EDB7312 |
| 491 | tristate "CFI Flash device mapped on EDB7312" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 492 | depends on ARCH_EDB7312 && MTD_CFI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | help |
| 494 | This enables access to the CFI Flash on the Cogent EDB7312 board. |
| 495 | If you have such a board, say 'Y' here. |
| 496 | |
| 497 | config MTD_IMPA7 |
| 498 | tristate "JEDEC Flash device mapped on impA7" |
| 499 | depends on ARM && MTD_JEDECPROBE |
| 500 | help |
| 501 | This enables access to the NOR Flash on the impA7 board of |
| 502 | implementa GmbH. If you have such a board, say 'Y' here. |
| 503 | |
| 504 | config MTD_CEIVA |
| 505 | tristate "JEDEC Flash device mapped on Ceiva/Polaroid PhotoMax Digital Picture Frame" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 506 | depends on MTD_JEDECPROBE && ARCH_CEIVA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | help |
| 508 | This enables access to the flash chips on the Ceiva/Polaroid |
| 509 | PhotoMax Digital Picture Frame. |
| 510 | If you have such a device, say 'Y'. |
| 511 | |
| 512 | config MTD_NOR_TOTO |
| 513 | tristate "NOR Flash device on TOTO board" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 514 | depends on ARCH_OMAP && OMAP_TOTO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | help |
| 516 | This enables access to the NOR flash on the Texas Instruments |
| 517 | TOTO board. |
| 518 | |
| 519 | config MTD_H720X |
| 520 | tristate "Hynix evaluation board mappings" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 521 | depends on MTD_CFI && ( ARCH_H7201 || ARCH_H7202 ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | help |
| 523 | This enables access to the flash chips on the Hynix evaluation boards. |
| 524 | If you have such a board, say 'Y'. |
| 525 | |
| 526 | config MTD_MPC1211 |
| 527 | tristate "CFI Flash device mapped on Interface MPC-1211" |
Sean Young | 01ac742 | 2005-06-29 09:46:19 +0000 | [diff] [blame] | 528 | depends on SH_MPC1211 && MTD_CFI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | help |
| 530 | This enables access to the flash chips on the Interface MPC-1211(CTP/PCI/MPC-SH02). |
| 531 | If you have such a board, say 'Y'. |
| 532 | |
Todd Poynor | 10c96f2 | 2005-07-02 02:53:28 +0100 | [diff] [blame] | 533 | config MTD_OMAP_NOR |
| 534 | tristate "TI OMAP board mappings" |
| 535 | depends on MTD_CFI && ARCH_OMAP |
| 536 | help |
| 537 | This enables access to the NOR flash chips on TI OMAP-based |
| 538 | boards defining flash platform devices and flash platform data. |
| 539 | These boards include the Innovator, H2, H3, OSK, Perseus2, and |
| 540 | more. If you have such a board, say 'Y'. |
| 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | # This needs CFI or JEDEC, depending on the cards found. |
| 543 | config MTD_PCI |
| 544 | tristate "PCI MTD driver" |
| 545 | depends on MTD && PCI && MTD_COMPLEX_MAPPINGS |
| 546 | help |
| 547 | Mapping for accessing flash devices on add-in cards like the Intel XScale |
| 548 | IQ80310 card, and the Intel EBSA285 card in blank ROM programming mode |
| 549 | (please see the manual for the link settings). |
| 550 | |
| 551 | If you are not sure, say N. |
| 552 | |
| 553 | config MTD_PCMCIA |
| 554 | tristate "PCMCIA MTD driver" |
| 555 | depends on MTD && PCMCIA && MTD_COMPLEX_MAPPINGS && BROKEN |
| 556 | help |
| 557 | Map driver for accessing PCMCIA linear flash memory cards. These |
| 558 | cards are usually around 4-16MiB in size. This does not include |
| 559 | Compact Flash cards which are treated as IDE devices. |
| 560 | |
Dominik Brodowski | 11d28a3 | 2005-06-27 16:28:32 -0700 | [diff] [blame] | 561 | config MTD_PCMCIA_ANONYMOUS |
| 562 | bool "Use PCMCIA MTD drivers for anonymous PCMCIA cards" |
| 563 | depends on MTD_PCMCIA |
| 564 | default N |
| 565 | help |
| 566 | If this option is enabled, PCMCIA cards which do not report |
| 567 | anything about themselves are assumed to be MTD cards. |
| 568 | |
| 569 | If unsure, say N. |
| 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | config MTD_UCLINUX |
| 572 | tristate "Generic uClinux RAM/ROM filesystem support" |
| 573 | depends on MTD_PARTITIONS && !MMU |
| 574 | help |
| 575 | Map driver to support image based filesystems for uClinux. |
| 576 | |
| 577 | config MTD_WRSBC8260 |
| 578 | tristate "Map driver for WindRiver PowerQUICC II MPC82xx board" |
| 579 | depends on (SBC82xx || SBC8560) |
| 580 | select MTD_PARTITIONS |
| 581 | select MTD_MAP_BANK_WIDTH_4 |
| 582 | select MTD_MAP_BANK_WIDTH_1 |
| 583 | select MTD_CFI_I1 |
| 584 | select MTD_CFI_I4 |
| 585 | help |
| 586 | Map driver for WindRiver PowerQUICC II MPC82xx board. Drives |
| 587 | all three flash regions on CS0, CS1 and CS6 if they are configured |
| 588 | correctly by the boot loader. |
| 589 | |
| 590 | config MTD_DMV182 |
| 591 | tristate "Map driver for Dy-4 SVME/DMV-182 board." |
| 592 | depends on DMV182 |
| 593 | select MTD_PARTITIONS |
| 594 | select MTD_MAP_BANK_WIDTH_32 |
| 595 | select MTD_CFI_I8 |
| 596 | select MTD_CFI_AMDSTD |
| 597 | help |
| 598 | Map driver for Dy-4 SVME/DMV-182 board. |
| 599 | |
| 600 | config MTD_BAST |
Ben Dooks | 7685359 | 2005-02-18 11:03:48 +0000 | [diff] [blame] | 601 | tristate "Map driver for Simtec BAST (EB2410ITX) or Thorcom VR1000" |
| 602 | depends on ARCH_BAST || MACH_VR1000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | select MTD_PARTITIONS |
| 604 | select MTD_MAP_BANK_WIDTH_16 |
| 605 | select MTD_JEDECPROBE |
| 606 | help |
Ben Dooks | 7685359 | 2005-02-18 11:03:48 +0000 | [diff] [blame] | 607 | Map driver for NOR flash on the Simtec BAST (EB2410ITX), or the |
| 608 | Thorcom VR1000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
| 610 | Note, this driver *cannot* over-ride the WP link on the |
| 611 | board, or currently detect the state of the link. |
| 612 | |
| 613 | config MTD_BAST_MAXSIZE |
| 614 | int "Maximum size for BAST flash area (MiB)" |
| 615 | depends on MTD_BAST |
| 616 | default "4" |
| 617 | |
| 618 | config MTD_SHARP_SL |
| 619 | bool "ROM maped on Sharp SL Series" |
| 620 | depends on MTD && ARCH_PXA |
| 621 | help |
| 622 | This enables access to the flash chip on the Sharp SL Series of PDAs. |
| 623 | |
Ben Dooks | 99f2a8aea | 2005-01-24 00:37:04 +0000 | [diff] [blame] | 624 | config MTD_PLATRAM |
Thomas Gleixner | 3c45e00a | 2005-03-18 02:07:24 +0000 | [diff] [blame] | 625 | tristate "Map driver for platform device RAM (mtd-ram)" |
Ben Dooks | 99f2a8aea | 2005-01-24 00:37:04 +0000 | [diff] [blame] | 626 | depends on MTD |
| 627 | select MTD_RAM |
| 628 | help |
| 629 | Map driver for RAM areas described via the platform device |
| 630 | system. |
| 631 | |
| 632 | This selection automatically selects the map_ram driver. |
| 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | endmenu |
| 635 | |