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