blob: 7514a9bee0154716aac0c1b27b7af33e3e5b6761 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# drivers/mtd/maps/Kconfig
Thomas Gleixner69f34c92005-11-07 11:15:40 +00002# $Id: Kconfig,v 1.61 2005/11/07 11:14:26 gleixner 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"
Takashi YOSHII79b9cd52006-08-15 07:26:32 -050016 depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 help
Takashi YOSHII79b9cd52006-08-15 07:26:32 -050018 This provides a 'mapping' driver which allows the NOR Flash and
19 ROM driver code to communicate with chips which are mapped
20 physically into the CPU's memory. You will need to configure
21 the physical address and size of the flash chips on your
22 particular board as well as the bus width, either statically
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 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
Lennert Buytenhek73566ed2006-05-07 17:16:36 +010040 default "0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 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"
Adrian Bunk0b57ee92005-12-22 21:03:47 -080065 depends on SPARC && MTD_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 help
Thomas Gleixner69f34c92005-11-07 11:15:40 +000067 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 Torvalds1da177e2005-04-16 15:20:36 -070070 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"
Daniel Drakefbbc21c2006-04-29 11:41:44 +010081 depends on X86 && MTD_CFI && MTD_CONCAT
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 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
Thomas Gleixner69f34c92005-11-07 11:15:40 +000092 demonstration board. If you have one of these boards and would like
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 to use the flash chips on it, say 'Y'.
94
95config MTD_TS5500
96 tristate "JEDEC Flash device mapped on Technologic Systems TS-5500"
Sean Youngef63d002005-11-09 00:12:50 +000097 depends on X86
Sean Young01ac7422005-06-29 09:46:19 +000098 select MTD_PARTITIONS
99 select MTD_JEDECPROBE
100 select MTD_CFI_AMDSTD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 help
102 This provides a driver for the on-board flash of the Technologic
Sean Younge27a9962005-06-16 09:49:33 +0100103 System's TS-5500 board. The 2MB flash is split into 3 partitions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 which are accessed as separate MTD devices.
105
Sean Younge27a9962005-06-16 09:49:33 +0100106 mtd0 and mtd2 are the two BIOS drives, which use the resident
107 flash disk (RFD) flash translation layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 mtd1 allows you to reprogram your BIOS. BE VERY CAREFUL.
110
111 Note that jumper 3 ("Write Enable Drive A") must be set
Egry Gábor4992a9e2006-05-12 17:35:02 +0100112 otherwise detection won't succeed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114config 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 Torvalds1da177e2005-04-16 15:20:36 -0700125config 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 Pitrecbec19a2005-07-01 23:55:24 +0100132config 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 Torvalds1da177e2005-04-16 15:20:36 -0700140config 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
149config 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
158config 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
169config 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
178config 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
Lew Glendenning29175772006-10-20 14:41:04 -0700187config MTD_ESB2ROM
188 tristate "BIOS flash chip on Intel ESB Controller Hub 2"
189 depends on X86 && MTD_JEDECPROBE
190 help
191 Support for treating the BIOS flash chip on ESB2 motherboards
192 as an MTD device - with this you can reprogram your BIOS.
193
194 BE VERY CAREFUL.
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196config MTD_SCB2_FLASH
197 tristate "BIOS flash chip on Intel SCB2 boards"
198 depends on X86 && MTD_JEDECPROBE
199 help
200 Support for treating the BIOS flash chip on Intel SCB2 boards
201 as an MTD device - with this you can reprogram your BIOS.
202
203 BE VERY CAREFUL.
204
205config MTD_TSUNAMI
206 tristate "Flash chips on Tsunami TIG bus"
207 depends on ALPHA_TSUNAMI && MTD_COMPLEX_MAPPINGS
208 help
209 Support for the flash chip on Tsunami TIG bus.
210
211config MTD_LASAT
Martin Michlmayrceb31db2006-03-20 04:40:46 +0000212 tristate "LASAT flash device"
213 depends on LASAT && MTD_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 help
215 Support for the flash chips on the Lasat 100 and 200 boards.
216
217config MTD_NETtel
218 tristate "CFI flash device on SnapGear/SecureEdge"
219 depends on X86 && MTD_PARTITIONS && MTD_JEDECPROBE
220 help
221 Support for flash chips on NETtel/SecureEdge/SnapGear boards.
222
Pete Popov002fa302005-02-27 21:50:25 +0000223config MTD_ALCHEMY
Roman Zippele55a3e82006-06-08 22:12:49 -0700224 tristate "AMD Alchemy Pb1xxx/Db1xxx/RDK MTD support"
Sean Young01ac7422005-06-29 09:46:19 +0000225 depends on SOC_AU1X00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 help
Pete Popov002fa302005-02-27 21:50:25 +0000227 Flash memory access on AMD Alchemy Pb/Db/RDK Reference Boards
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Joern Engelb523b3b2005-09-18 11:46:45 +0100229config MTD_MTX1
230 tristate "4G Systems MTX-1 Flash device"
231 depends on MIPS && MIPS_MTX1
232 help
233 Flash memory access on 4G Systems MTX-1 Board. If you have one of
234 these boards and would like to use the flash chips on it, say 'Y'.
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236config MTD_DILNETPC
237 tristate "CFI Flash device mapped on DIL/Net PC"
238 depends on X86 && MTD_CONCAT && MTD_PARTITIONS && MTD_CFI_INTELEXT
239 help
240 MTD map driver for SSV DIL/Net PC Boards "DNP" and "ADNP".
241 For details, see <http://www.ssv-embedded.de/ssv/pc104/p169.htm>
242 and <http://www.ssv-embedded.de/ssv/pc104/p170.htm>
243
244config MTD_DILNETPC_BOOTSIZE
245 hex "Size of DIL/Net PC flash boot partition"
246 depends on MTD_DILNETPC
247 default "0x80000"
248 help
249 The amount of space taken up by the kernel or Etherboot
250 on the DIL/Net PC flash chips.
251
252config MTD_L440GX
253 tristate "BIOS flash chip on Intel L440GX boards"
254 depends on X86 && MTD_JEDECPROBE
255 help
256 Support for treating the BIOS flash chip on Intel L440GX motherboards
257 as an MTD device - with this you can reprogram your BIOS.
258
259 BE VERY CAREFUL.
260
261config MTD_SBC8240
262 tristate "Flash device on SBC8240"
Sean Young01ac7422005-06-29 09:46:19 +0000263 depends on MTD_JEDECPROBE && 8260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 help
265 Flash access on the SBC8240 board from Wind River. See
266 <http://www.windriver.com/products/sbc8240/>
267
268config MTD_TQM8XXL
269 tristate "CFI Flash device mapped on TQM8XXL"
Sean Young01ac7422005-06-29 09:46:19 +0000270 depends on MTD_CFI && TQM8xxL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 help
272 The TQM8xxL PowerPC board has up to two banks of CFI-compliant
273 chips, currently uses AMD one. This 'mapping' driver supports
274 that arrangement, allowing the CFI probe and command set driver
275 code to communicate with the chips on the TQM8xxL board. More at
276 <http://www.denx.de/embedded-ppc-en.html>.
277
278config MTD_RPXLITE
279 tristate "CFI Flash device mapped on RPX Lite or CLLF"
Sean Young01ac7422005-06-29 09:46:19 +0000280 depends on MTD_CFI && (RPXCLASSIC || RPXLITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 help
282 The RPXLite PowerPC board has CFI-compliant chips mapped in
283 a strange sparse mapping. This 'mapping' driver supports that
284 arrangement, allowing the CFI probe and command set driver code
285 to communicate with the chips on the RPXLite board. More at
286 <http://www.embeddedplanet.com/>.
287
288config MTD_MBX860
289 tristate "System flash on MBX860 board"
Sean Young01ac7422005-06-29 09:46:19 +0000290 depends on MTD_CFI && MBX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 help
292 This enables access routines for the flash chips on the Motorola
293 MBX860 board. If you have one of these boards and would like
294 to use the flash chips on it, say 'Y'.
295
296config MTD_DBOX2
297 tristate "CFI Flash device mapped on D-Box2"
Sean Young01ac7422005-06-29 09:46:19 +0000298 depends on DBOX2 && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 help
300 This enables access routines for the flash chips on the Nokia/Sagem
301 D-Box 2 board. If you have one of these boards and would like to use
302 the flash chips on it, say 'Y'.
303
304config MTD_CFI_FLAGADM
305 tristate "CFI Flash device mapping on FlagaDM"
Sean Young01ac7422005-06-29 09:46:19 +0000306 depends on 8xx && MTD_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 help
308 Mapping for the Flaga digital module. If you don't have one, ignore
309 this setting.
310
311config MTD_BEECH
312 tristate "CFI Flash device mapped on IBM 405LP Beech"
Sean Young01ac7422005-06-29 09:46:19 +0000313 depends on MTD_CFI && BEECH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 help
315 This enables access routines for the flash chips on the IBM
316 405LP Beech board. If you have one of these boards and would like
317 to use the flash chips on it, say 'Y'.
318
319config MTD_ARCTIC
320 tristate "CFI Flash device mapped on IBM 405LP Arctic"
Sean Young01ac7422005-06-29 09:46:19 +0000321 depends on MTD_CFI && ARCTIC2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 help
323 This enables access routines for the flash chips on the IBM 405LP
324 Arctic board. If you have one of these boards and would like to
325 use the flash chips on it, say 'Y'.
326
327config MTD_WALNUT
328 tristate "Flash device mapped on IBM 405GP Walnut"
Sean Young01ac7422005-06-29 09:46:19 +0000329 depends on MTD_JEDECPROBE && WALNUT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 help
331 This enables access routines for the flash chips on the IBM 405GP
332 Walnut board. If you have one of these boards and would like to
333 use the flash chips on it, say 'Y'.
334
335config MTD_EBONY
336 tristate "Flash devices mapped on IBM 440GP Ebony"
Sean Young01ac7422005-06-29 09:46:19 +0000337 depends on MTD_JEDECPROBE && EBONY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 help
339 This enables access routines for the flash chips on the IBM 440GP
340 Ebony board. If you have one of these boards and would like to
341 use the flash chips on it, say 'Y'.
342
343config MTD_OCOTEA
344 tristate "Flash devices mapped on IBM 440GX Ocotea"
Sean Young01ac7422005-06-29 09:46:19 +0000345 depends on MTD_CFI && OCOTEA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 help
347 This enables access routines for the flash chips on the IBM 440GX
348 Ocotea board. If you have one of these boards and would like to
349 use the flash chips on it, say 'Y'.
350
351config MTD_REDWOOD
352 tristate "CFI Flash devices mapped on IBM Redwood"
Sean Young01ac7422005-06-29 09:46:19 +0000353 depends on MTD_CFI && ( REDWOOD_4 || REDWOOD_5 || REDWOOD_6 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 help
355 This enables access routines for the flash chips on the IBM
356 Redwood board. If you have one of these boards and would like to
357 use the flash chips on it, say 'Y'.
358
Marian Balakowiczbe30c102005-11-07 08:33:38 +0000359config MTD_TQM834x
360 tristate "Flash device mapped on TQ Components TQM834x Boards"
361 depends on MTD_CFI && TQM834x
362 help
363 This enables access routines for the flash chips on the
364 TQ Components TQM834x boards. If you have one of these boards
365 and would like to use the flash chips on it, say 'Y'.
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367config MTD_CSTM_MIPS_IXX
368 tristate "Flash chip mapping on ITE QED-4N-S01B, Globespan IVR or custom board"
369 depends on MIPS && MTD_CFI && MTD_JEDECPROBE && MTD_PARTITIONS
370 help
371 This provides a mapping driver for the Integrated Technology
372 Express, Inc (ITE) QED-4N-S01B eval board and the Globespan IVR
373 Reference Board. It provides the necessary addressing, length,
374 buswidth, vpp code and addition setup of the flash device for
375 these boards. In addition, this mapping driver can be used for
376 other boards via setting of the CONFIG_MTD_CSTM_MIPS_IXX_START/
377 LEN/BUSWIDTH parameters. This mapping will provide one mtd device
378 using one partition. The start address can be offset from the
379 beginning of flash and the len can be less than the total flash
380 device size to allow a window into the flash. Both CFI and JEDEC
381 probes are called.
382
383config MTD_CSTM_MIPS_IXX_START
384 hex "Physical start address of flash mapping"
385 depends on MTD_CSTM_MIPS_IXX
386 default "0x8000000"
387 help
388 This is the physical memory location that the MTD driver will
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000389 use for the flash chips on your particular target board.
390 Refer to the memory map which should hopefully be in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 documentation for your board.
392
393config MTD_CSTM_MIPS_IXX_LEN
394 hex "Physical length of flash mapping"
395 depends on MTD_CSTM_MIPS_IXX
396 default "0x4000000"
397 help
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000398 This is the total length that the MTD driver will use for the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 flash chips on your particular board. Refer to the memory
400 map which should hopefully be in the documentation for your
401 board.
402
403config MTD_CSTM_MIPS_IXX_BUSWIDTH
404 int "Bus width in octets"
405 depends on MTD_CSTM_MIPS_IXX
406 default "2"
407 help
408 This is the total bus width of the mapping of the flash chips
409 on your particular board.
410
411config MTD_OCELOT
412 tristate "Momenco Ocelot boot flash device"
413 depends on MIPS && MOMENCO_OCELOT
414 help
415 This enables access routines for the boot flash device and for the
416 NVRAM on the Momenco Ocelot board. If you have one of these boards
417 and would like access to either of these, say 'Y'.
418
419config MTD_SOLUTIONENGINE
420 tristate "CFI Flash device mapped on Hitachi SolutionEngine"
421 depends on SUPERH && MTD_CFI && MTD_REDBOOT_PARTS
422 help
423 This enables access to the flash chips on the Hitachi SolutionEngine and
424 similar boards. Say 'Y' if you are building a kernel for such a board.
425
426config MTD_ARM_INTEGRATOR
427 tristate "CFI Flash device mapped on ARM Integrator/P720T"
428 depends on ARM && MTD_CFI
429
430config MTD_CDB89712
431 tristate "Cirrus CDB89712 evaluation board mappings"
Sean Young01ac7422005-06-29 09:46:19 +0000432 depends on MTD_CFI && ARCH_CDB89712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 help
434 This enables access to the flash or ROM chips on the CDB89712 board.
435 If you have such a board, say 'Y'.
436
437config MTD_SA1100
438 tristate "CFI Flash device mapped on StrongARM SA11x0"
Sean Young01ac7422005-06-29 09:46:19 +0000439 depends on MTD_CFI && ARCH_SA1100 && MTD_PARTITIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 help
441 This enables access to the flash chips on most platforms based on
442 the SA1100 and SA1110, including the Assabet and the Compaq iPAQ.
443 If you have such a board, say 'Y'.
444
445config MTD_IPAQ
446 tristate "CFI Flash device mapped on Compaq/HP iPAQ"
Sean Young01ac7422005-06-29 09:46:19 +0000447 depends on IPAQ_HANDHELD && MTD_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 help
449 This provides a driver for the on-board flash of the iPAQ.
450
451config MTD_DC21285
452 tristate "CFI Flash device mapped on DC21285 Footbridge"
Sean Young01ac7422005-06-29 09:46:19 +0000453 depends on MTD_CFI && ARCH_FOOTBRIDGE && MTD_COMPLEX_MAPPINGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 help
455 This provides a driver for the flash accessed using Intel's
456 21285 bridge used with Intel's StrongARM processors. More info at
457 <http://www.intel.com/design/bridge/docs/21285_documentation.htm>.
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459config MTD_IXP4XX
460 tristate "CFI Flash device mapped on Intel IXP4xx based systems"
Sean Young01ac7422005-06-29 09:46:19 +0000461 depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 help
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000463 This enables MTD access to flash devices on platforms based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 on Intel's IXP4xx family of network processors such as the
465 IXDP425 and Coyote. If you have an IXP4xx based board and
466 would like to use the flash chips on it, say 'Y'.
467
468config MTD_IXP2000
469 tristate "CFI Flash device mapped on Intel IXP2000 based systems"
Sean Young01ac7422005-06-29 09:46:19 +0000470 depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP2000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 help
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000472 This enables MTD access to flash devices on platforms based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 on Intel's IXP2000 family of network processors such as the
474 IXDP425 and Coyote. If you have an IXP2000 based board and
475 would like to use the flash chips on it, say 'Y'.
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477config MTD_FORTUNET
478 tristate "CFI Flash device mapped on the FortuNet board"
Sean Young01ac7422005-06-29 09:46:19 +0000479 depends on MTD_CFI && MTD_PARTITIONS && SA1100_FORTUNET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 help
481 This enables access to the Flash on the FortuNet board. If you
482 have such a board, say 'Y'.
483
484config MTD_AUTCPU12
485 tristate "NV-RAM mapping AUTCPU12 board"
Sean Young01ac7422005-06-29 09:46:19 +0000486 depends on ARCH_AUTCPU12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 help
488 This enables access to the NV-RAM on autronix autcpu12 board.
489 If you have such a board, say 'Y'.
490
491config MTD_EDB7312
492 tristate "CFI Flash device mapped on EDB7312"
Sean Young01ac7422005-06-29 09:46:19 +0000493 depends on ARCH_EDB7312 && MTD_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 help
495 This enables access to the CFI Flash on the Cogent EDB7312 board.
496 If you have such a board, say 'Y' here.
497
498config MTD_IMPA7
499 tristate "JEDEC Flash device mapped on impA7"
500 depends on ARM && MTD_JEDECPROBE
501 help
502 This enables access to the NOR Flash on the impA7 board of
503 implementa GmbH. If you have such a board, say 'Y' here.
504
505config MTD_CEIVA
506 tristate "JEDEC Flash device mapped on Ceiva/Polaroid PhotoMax Digital Picture Frame"
Sean Young01ac7422005-06-29 09:46:19 +0000507 depends on MTD_JEDECPROBE && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 help
509 This enables access to the flash chips on the Ceiva/Polaroid
510 PhotoMax Digital Picture Frame.
511 If you have such a device, say 'Y'.
512
513config MTD_NOR_TOTO
514 tristate "NOR Flash device on TOTO board"
Sean Young01ac7422005-06-29 09:46:19 +0000515 depends on ARCH_OMAP && OMAP_TOTO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 help
517 This enables access to the NOR flash on the Texas Instruments
518 TOTO board.
519
520config MTD_H720X
521 tristate "Hynix evaluation board mappings"
Sean Young01ac7422005-06-29 09:46:19 +0000522 depends on MTD_CFI && ( ARCH_H7201 || ARCH_H7202 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 help
524 This enables access to the flash chips on the Hynix evaluation boards.
525 If you have such a board, say 'Y'.
526
527config MTD_MPC1211
528 tristate "CFI Flash device mapped on Interface MPC-1211"
Sean Young01ac7422005-06-29 09:46:19 +0000529 depends on SH_MPC1211 && MTD_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 help
531 This enables access to the flash chips on the Interface MPC-1211(CTP/PCI/MPC-SH02).
532 If you have such a board, say 'Y'.
533
Todd Poynor10c96f22005-07-02 02:53:28 +0100534config MTD_OMAP_NOR
535 tristate "TI OMAP board mappings"
536 depends on MTD_CFI && ARCH_OMAP
537 help
538 This enables access to the NOR flash chips on TI OMAP-based
539 boards defining flash platform devices and flash platform data.
540 These boards include the Innovator, H2, H3, OSK, Perseus2, and
541 more. If you have such a board, say 'Y'.
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543# This needs CFI or JEDEC, depending on the cards found.
544config MTD_PCI
545 tristate "PCI MTD driver"
546 depends on MTD && PCI && MTD_COMPLEX_MAPPINGS
547 help
548 Mapping for accessing flash devices on add-in cards like the Intel XScale
549 IQ80310 card, and the Intel EBSA285 card in blank ROM programming mode
550 (please see the manual for the link settings).
551
552 If you are not sure, say N.
553
554config MTD_PCMCIA
555 tristate "PCMCIA MTD driver"
556 depends on MTD && PCMCIA && MTD_COMPLEX_MAPPINGS && BROKEN
557 help
558 Map driver for accessing PCMCIA linear flash memory cards. These
559 cards are usually around 4-16MiB in size. This does not include
560 Compact Flash cards which are treated as IDE devices.
561
Dominik Brodowski11d28a32005-06-27 16:28:32 -0700562config MTD_PCMCIA_ANONYMOUS
563 bool "Use PCMCIA MTD drivers for anonymous PCMCIA cards"
564 depends on MTD_PCMCIA
Dominik Brodowski11d28a32005-06-27 16:28:32 -0700565 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 Torvalds1da177e2005-04-16 15:20:36 -0700571config 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
577config 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
590config 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
600config MTD_BAST
Ben Dooks76853592005-02-18 11:03:48 +0000601 tristate "Map driver for Simtec BAST (EB2410ITX) or Thorcom VR1000"
602 depends on ARCH_BAST || MACH_VR1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 select MTD_PARTITIONS
604 select MTD_MAP_BANK_WIDTH_16
605 select MTD_JEDECPROBE
606 help
Ben Dooks76853592005-02-18 11:03:48 +0000607 Map driver for NOR flash on the Simtec BAST (EB2410ITX), or the
608 Thorcom VR1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 Note, this driver *cannot* over-ride the WP link on the
611 board, or currently detect the state of the link.
612
613config MTD_BAST_MAXSIZE
614 int "Maximum size for BAST flash area (MiB)"
615 depends on MTD_BAST
616 default "4"
617
618config 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 Dooks99f2a8a2005-01-24 00:37:04 +0000624config MTD_PLATRAM
Thomas Gleixner3c45e002005-03-18 02:07:24 +0000625 tristate "Map driver for platform device RAM (mtd-ram)"
Ben Dooks99f2a8a2005-01-24 00:37:04 +0000626 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 Torvalds1da177e2005-04-16 15:20:36 -0700634endmenu
635