blob: bef0f0d2c28e8e038ca830954bccea7fabdc45f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# drivers/mtd/maps/Kconfig
Thomas Gleixnere5580fb2005-11-07 11:15:40 +00002# $Id: Kconfig,v 1.18 2005/11/07 11:14:24 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4menu "Self-contained MTD device drivers"
5 depends on MTD!=n
6
7config MTD_PMC551
8 tristate "Ramix PMC551 PCI Mezzanine RAM card support"
9 depends on MTD && PCI
10 ---help---
11 This provides a MTD device driver for the Ramix PMC551 RAM PCI card
12 from Ramix Inc. <http://www.ramix.com/products/memory/pmc551.html>.
13 These devices come in memory configurations from 32M - 1G. If you
14 have one, you probably want to enable this.
15
16 If this driver is compiled as a module you get the ability to select
17 the size of the aperture window pointing into the devices memory.
18 What this means is that if you have a 1G card, normally the kernel
19 will use a 1G memory map as its view of the device. As a module,
20 you can select a 1M window into the memory and the driver will
21 "slide" the window around the PMC551's memory. This was
22 particularly useful on the 2.2 kernels on PPC architectures as there
23 was limited kernel space to deal with.
24
25config MTD_PMC551_BUGFIX
26 bool "PMC551 256M DRAM Bugfix"
27 depends on MTD_PMC551
28 help
29 Some of Ramix's PMC551 boards with 256M configurations have invalid
30 column and row mux values. This option will fix them, but will
31 break other memory configurations. If unsure say N.
32
33config MTD_PMC551_DEBUG
34 bool "PMC551 Debugging"
35 depends on MTD_PMC551
36 help
37 This option makes the PMC551 more verbose during its operation and
38 is only really useful if you are developing on this driver or
39 suspect a possible hardware or driver bug. If unsure say N.
40
41config MTD_MS02NV
42 tristate "DEC MS02-NV NVRAM module support"
43 depends on MTD && MACH_DECSTATION
44 help
45 This is an MTD driver for the DEC's MS02-NV (54-20948-01) battery
46 backed-up NVRAM module. The module was originally meant as an NFS
47 accelerator. Say Y here if you have a DECstation 5000/2x0 or a
48 DECsystem 5900 equipped with such a module.
49
Martin Michlmayrbe21ce12006-03-20 04:40:26 +000050 If you want to compile this driver as a module ( = code which can be
51 inserted in and removed from the running kernel whenever you want),
52 say M here and read <file:Documentation/modules.txt>. The module will
53 be called ms02-nv.o.
54
David Brownell1d6432f2006-01-08 13:34:22 -080055config MTD_DATAFLASH
56 tristate "Support for AT45xxx DataFlash"
57 depends on MTD && SPI_MASTER && EXPERIMENTAL
58 help
59 This enables access to AT45xxx DataFlash chips, using SPI.
60 Sometimes DataFlash chips are packaged inside MMC-format
61 cards; at this writing, the MMC stack won't handle those.
62
Hans-Jürgen Koch340ea372007-04-17 13:42:56 -040063config MTD_DATAFLASH26
64 tristate "AT91RM9200 DataFlash AT26xxx"
65 depends on MTD && ARCH_AT91RM9200 && AT91_SPI
66 help
67 This enables access to the DataFlash chip (AT26xxx) on an
68 AT91RM9200-based board.
69 If you have such a board and such a DataFlash, say 'Y'.
70
Mike Lavender2f9f7622006-01-08 13:34:27 -080071config MTD_M25P80
72 tristate "Support for M25 SPI Flash"
73 depends on MTD && SPI_MASTER && EXPERIMENTAL
74 help
75 This enables access to ST M25P80 and similar SPI flash chips,
76 used for program and data storage. Set up your spi devices
77 with the right board-specific platform data.
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079config MTD_SLRAM
80 tristate "Uncached system RAM"
81 depends on MTD
82 help
83 If your CPU cannot cache all of the physical memory in your machine,
84 you can still use it for storage or swap by using this driver to
85 present it to the system as a Memory Technology Device.
86
87config MTD_PHRAM
88 tristate "Physical system RAM"
89 depends on MTD
90 help
91 This is a re-implementation of the slram driver above.
92
93 Use this driver to access physical memory that the kernel proper
94 doesn't have access to, memory beyond the mem=xxx limit, nvram,
95 memory on the video card, etc...
96
97config MTD_LART
98 tristate "28F160xx flash driver for LART"
99 depends on SA1100_LART && MTD
100 help
101 This enables the flash driver for LART. Please note that you do
102 not need any mapping/chip driver for LART. This one does it all
103 for you, so go disable all of those if you enabled some of them (:
104
105config MTD_MTDRAM
106 tristate "Test driver using RAM"
107 depends on MTD
108 help
109 This enables a test MTD device driver which uses vmalloc() to
110 provide storage. You probably want to say 'N' unless you're
111 testing stuff.
112
113config MTDRAM_TOTAL_SIZE
114 int "MTDRAM device size in KiB"
115 depends on MTD_MTDRAM
116 default "4096"
117 help
118 This allows you to configure the total size of the MTD device
119 emulated by the MTDRAM driver. If the MTDRAM driver is built
120 as a module, it is also possible to specify this as a parameter when
121 loading the module.
122
123config MTDRAM_ERASE_SIZE
124 int "MTDRAM erase block size in KiB"
125 depends on MTD_MTDRAM
126 default "128"
127 help
128 This allows you to configure the size of the erase blocks in the
129 device emulated by the MTDRAM driver. If the MTDRAM driver is built
130 as a module, it is also possible to specify this as a parameter when
131 loading the module.
132
133#If not a module (I don't want to test it as a module)
134config MTDRAM_ABS_POS
135 hex "SRAM Hexadecimal Absolute position or 0"
136 depends on MTD_MTDRAM=y
137 default "0"
138 help
139 If you have system RAM accessible by the CPU but not used by Linux
140 in normal operation, you can give the physical address at which the
141 available RAM starts, and the MTDRAM driver will use it instead of
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000142 allocating space from Linux's available memory. Otherwise, leave
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 this set to zero. Most people will want to leave this as zero.
144
Joern Engelacc8dad2006-04-10 22:54:17 -0700145config MTD_BLOCK2MTD
146 tristate "MTD using block device"
David Howells93614012006-09-30 20:45:40 +0200147 depends on MTD && BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 help
149 This driver allows a block device to appear as an MTD. It would
150 generally be used in the following cases:
151
152 Using Compact Flash as an MTD, these usually present themselves to
153 the system as an ATA drive.
154 Testing MTD users (eg JFFS2) on large media and media that might
155 be removed during a write (using the floppy drive).
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157comment "Disk-On-Chip Device Drivers"
158
159config MTD_DOC2000
160 tristate "M-Systems Disk-On-Chip 2000 and Millennium (DEPRECATED)"
161 depends on MTD
162 select MTD_DOCPROBE
163 select MTD_NAND_IDS
164 ---help---
165 This provides an MTD device driver for the M-Systems DiskOnChip
166 2000 and Millennium devices. Originally designed for the DiskOnChip
167 2000, it also now includes support for the DiskOnChip Millennium.
168 If you have problems with this driver and the DiskOnChip Millennium,
169 you may wish to try the alternative Millennium driver below. To use
170 the alternative driver, you will need to undefine DOC_SINGLE_DRIVER
171 in the <file:drivers/mtd/devices/docprobe.c> source code.
172
173 If you use this device, you probably also want to enable the NFTL
174 'NAND Flash Translation Layer' option below, which is used to
175 emulate a block device by using a kind of file system on the flash
176 chips.
177
178 NOTE: This driver is deprecated and will probably be removed soon.
179 Please try the new DiskOnChip driver under "NAND Flash Device
180 Drivers".
181
182config MTD_DOC2001
183 tristate "M-Systems Disk-On-Chip Millennium-only alternative driver (DEPRECATED)"
184 depends on MTD
185 select MTD_DOCPROBE
186 select MTD_NAND_IDS
187 ---help---
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000188 This provides an alternative MTD device driver for the M-Systems
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 DiskOnChip Millennium devices. Use this if you have problems with
190 the combined DiskOnChip 2000 and Millennium driver above. To get
191 the DiskOnChip probe code to load and use this driver instead of
192 the other one, you will need to undefine DOC_SINGLE_DRIVER near
193 the beginning of <file:drivers/mtd/devices/docprobe.c>.
194
195 If you use this device, you probably also want to enable the NFTL
196 'NAND Flash Translation Layer' option below, which is used to
197 emulate a block device by using a kind of file system on the flash
198 chips.
199
200 NOTE: This driver is deprecated and will probably be removed soon.
201 Please try the new DiskOnChip driver under "NAND Flash Device
202 Drivers".
203
204config MTD_DOC2001PLUS
205 tristate "M-Systems Disk-On-Chip Millennium Plus"
206 depends on MTD
207 select MTD_DOCPROBE
208 select MTD_NAND_IDS
209 ---help---
210 This provides an MTD device driver for the M-Systems DiskOnChip
211 Millennium Plus devices.
212
213 If you use this device, you probably also want to enable the INFTL
214 'Inverse NAND Flash Translation Layer' option below, which is used
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000215 to emulate a block device by using a kind of file system on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 flash chips.
217
218 NOTE: This driver will soon be replaced by the new DiskOnChip driver
219 under "NAND Flash Device Drivers" (currently that driver does not
220 support all Millennium Plus devices).
221
222config MTD_DOCPROBE
223 tristate
224 select MTD_DOCECC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226config MTD_DOCECC
227 tristate
228
229config MTD_DOCPROBE_ADVANCED
230 bool "Advanced detection options for DiskOnChip"
231 depends on MTD_DOCPROBE
232 help
233 This option allows you to specify nonstandard address at which to
234 probe for a DiskOnChip, or to change the detection options. You
235 are unlikely to need any of this unless you are using LinuxBIOS.
236 Say 'N'.
237
238config MTD_DOCPROBE_ADDRESS
239 hex "Physical address of DiskOnChip" if MTD_DOCPROBE_ADVANCED
240 depends on MTD_DOCPROBE
241 default "0x0000" if MTD_DOCPROBE_ADVANCED
242 default "0" if !MTD_DOCPROBE_ADVANCED
243 ---help---
244 By default, the probe for DiskOnChip devices will look for a
245 DiskOnChip at every multiple of 0x2000 between 0xC8000 and 0xEE000.
246 This option allows you to specify a single address at which to probe
247 for the device, which is useful if you have other devices in that
248 range which get upset when they are probed.
249
250 (Note that on PowerPC, the normal probe will only check at
251 0xE4000000.)
252
253 Normally, you should leave this set to zero, to allow the probe at
254 the normal addresses.
255
256config MTD_DOCPROBE_HIGH
257 bool "Probe high addresses"
258 depends on MTD_DOCPROBE_ADVANCED
259 help
260 By default, the probe for DiskOnChip devices will look for a
261 DiskOnChip at every multiple of 0x2000 between 0xC8000 and 0xEE000.
262 This option changes to make it probe between 0xFFFC8000 and
263 0xFFFEE000. Unless you are using LinuxBIOS, this is unlikely to be
264 useful to you. Say 'N'.
265
266config MTD_DOCPROBE_55AA
267 bool "Probe for 0x55 0xAA BIOS Extension Signature"
268 depends on MTD_DOCPROBE_ADVANCED
269 help
270 Check for the 0x55 0xAA signature of a DiskOnChip, and do not
271 continue with probing if it is absent. The signature will always be
272 present for a DiskOnChip 2000 or a normal DiskOnChip Millennium.
273 Only if you have overwritten the first block of a DiskOnChip
274 Millennium will it be absent. Enable this option if you are using
275 LinuxBIOS or if you need to recover a DiskOnChip Millennium on which
276 you have managed to wipe the first block.
277
278endmenu
279