blob: b4a7086b219ce918985dbc642de46b6aa92d6bf6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# drivers/mtd/nand/Kconfig
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002# $Id: Kconfig,v 1.35 2005/11/07 11:14:30 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4menu "NAND Flash Device Drivers"
5 depends on MTD!=n
6
7config MTD_NAND
8 tristate "NAND Device Support"
9 depends on MTD
10 select MTD_NAND_IDS
11 help
12 This enables support for accessing all type of NAND flash
13 devices. For further information see
14 <http://www.linux-mtd.infradead.org/tech/nand.html>.
15
16config MTD_NAND_VERIFY_WRITE
17 bool "Verify NAND page writes"
18 depends on MTD_NAND
19 help
20 This adds an extra check when data is written to the flash. The
21 NAND flash device internally checks only bits transitioning
22 from 1 to 0. There is a rare possibility that even though the
23 device thinks the write was successful, a bit could have been
24 flipped accidentaly due to device wear or something else.
25
26config MTD_NAND_AUTCPU12
27 tristate "SmartMediaCard on autronix autcpu12 board"
Thomas Gleixner30966172005-11-07 02:49:43 +010028 depends on MTD_NAND && ARCH_AUTCPU12
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 help
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000030 This enables the driver for the autronix autcpu12 board to
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 access the SmartMediaCard.
32
33config MTD_NAND_EDB7312
34 tristate "Support for Cirrus Logic EBD7312 evaluation board"
Thomas Gleixner30966172005-11-07 02:49:43 +010035 depends on MTD_NAND && ARCH_EDB7312
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 help
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000037 This enables the driver for the Cirrus Logic EBD7312 evaluation
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 board to access the onboard NAND Flash.
39
40config MTD_NAND_H1900
41 tristate "iPAQ H1900 flash"
Thomas Gleixner30966172005-11-07 02:49:43 +010042 depends on MTD_NAND && ARCH_PXA && MTD_PARTITIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 help
44 This enables the driver for the iPAQ h1900 flash.
45
46config MTD_NAND_SPIA
47 tristate "NAND Flash device on SPIA board"
Thomas Gleixner30966172005-11-07 02:49:43 +010048 depends on ARCH_P720T && MTD_NAND
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 help
50 If you had to ask, you don't have one. Say 'N'.
51
52config MTD_NAND_TOTO
53 tristate "NAND Flash device on TOTO board"
Thomas Gleixner30966172005-11-07 02:49:43 +010054 depends on ARCH_OMAP && MTD_NAND
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 help
56 Support for NAND flash on Texas Instruments Toto platform.
57
Lennert Buytenhek7d532dd2006-04-30 10:36:38 +020058config MTD_NAND_TS7250
59 tristate "NAND Flash device on TS-7250 board"
60 depends on MACH_TS72XX && MTD_NAND
61 help
62 Support for NAND flash on Technologic Systems TS-7250 platform.
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064config MTD_NAND_IDS
65 tristate
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067config MTD_NAND_AU1550
Pete Popovef6f0d12005-09-23 02:44:58 +010068 tristate "Au1550/1200 NAND support"
69 depends on (SOC_AU1200 || SOC_AU1550) && MTD_NAND
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 help
71 This enables the driver for the NAND flash controller on the
72 AMD/Alchemy 1550 SOC.
73
74config MTD_NAND_RTC_FROM4
75 tristate "Renesas Flash ROM 4-slot interface board (FROM_BOARD4)"
76 depends on MTD_NAND && SH_SOLUTION_ENGINE
77 select REED_SOLOMON
78 select REED_SOLOMON_DEC8
79 help
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000080 This enables the driver for the Renesas Technology AG-AND
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 flash interface board (FROM_BOARD4)
82
83config MTD_NAND_PPCHAMELEONEVB
84 tristate "NAND Flash device on PPChameleonEVB board"
85 depends on PPCHAMELEONEVB && MTD_NAND
86 help
87 This enables the NAND flash driver on the PPChameleon EVB Board.
88
89config MTD_NAND_S3C2410
Ben Dooksa4f957f2005-06-20 12:48:25 +010090 tristate "NAND Flash support for S3C2410/S3C2440 SoC"
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 depends on ARCH_S3C2410 && MTD_NAND
92 help
Ben Dooksa4f957f2005-06-20 12:48:25 +010093 This enables the NAND flash controller on the S3C2410 and S3C2440
94 SoCs
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Egry Gábor4992a9e2006-05-12 17:35:02 +010096 No board specific support is done by this driver, each board
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000097 must advertise a platform_device for the driver to attach.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99config MTD_NAND_S3C2410_DEBUG
100 bool "S3C2410 NAND driver debug"
101 depends on MTD_NAND_S3C2410
102 help
103 Enable debugging of the S3C2410 NAND driver
104
105config MTD_NAND_S3C2410_HWECC
106 bool "S3C2410 NAND Hardware ECC"
107 depends on MTD_NAND_S3C2410
108 help
109 Enable the use of the S3C2410's internal ECC generator when
110 using NAND. Early versions of the chip have had problems with
111 incorrect ECC generation, and if using these, the default of
112 software ECC is preferable.
113
114 If you lay down a device with the hardware ECC, then you will
115 currently not be able to switch to software, as there is no
116 implementation for ECC method used by the S3C2410
117
118config MTD_NAND_DISKONCHIP
119 tristate "DiskOnChip 2000, Millennium and Millennium Plus (NAND reimplementation) (EXPERIMENTAL)"
120 depends on MTD_NAND && EXPERIMENTAL
121 select REED_SOLOMON
122 select REED_SOLOMON_DEC16
123 help
124 This is a reimplementation of M-Systems DiskOnChip 2000,
125 Millennium and Millennium Plus as a standard NAND device driver,
126 as opposed to the earlier self-contained MTD device drivers.
127 This should enable, among other things, proper JFFS2 operation on
128 these devices.
129
130config MTD_NAND_DISKONCHIP_PROBE_ADVANCED
131 bool "Advanced detection options for DiskOnChip"
132 depends on MTD_NAND_DISKONCHIP
133 help
134 This option allows you to specify nonstandard address at which to
135 probe for a DiskOnChip, or to change the detection options. You
136 are unlikely to need any of this unless you are using LinuxBIOS.
137 Say 'N'.
138
139config MTD_NAND_DISKONCHIP_PROBE_ADDRESS
140 hex "Physical address of DiskOnChip" if MTD_NAND_DISKONCHIP_PROBE_ADVANCED
141 depends on MTD_NAND_DISKONCHIP
142 default "0"
143 ---help---
144 By default, the probe for DiskOnChip devices will look for a
145 DiskOnChip at every multiple of 0x2000 between 0xC8000 and 0xEE000.
146 This option allows you to specify a single address at which to probe
147 for the device, which is useful if you have other devices in that
148 range which get upset when they are probed.
149
150 (Note that on PowerPC, the normal probe will only check at
151 0xE4000000.)
152
153 Normally, you should leave this set to zero, to allow the probe at
154 the normal addresses.
155
156config MTD_NAND_DISKONCHIP_PROBE_HIGH
157 bool "Probe high addresses"
158 depends on MTD_NAND_DISKONCHIP_PROBE_ADVANCED
159 help
160 By default, the probe for DiskOnChip devices will look for a
161 DiskOnChip at every multiple of 0x2000 between 0xC8000 and 0xEE000.
162 This option changes to make it probe between 0xFFFC8000 and
163 0xFFFEE000. Unless you are using LinuxBIOS, this is unlikely to be
164 useful to you. Say 'N'.
165
166config MTD_NAND_DISKONCHIP_BBTWRITE
167 bool "Allow BBT writes on DiskOnChip Millennium and 2000TSOP"
168 depends on MTD_NAND_DISKONCHIP
169 help
170 On DiskOnChip devices shipped with the INFTL filesystem (Millennium
171 and 2000 TSOP/Alon), Linux reserves some space at the end of the
172 device for the Bad Block Table (BBT). If you have existing INFTL
173 data on your device (created by non-Linux tools such as M-Systems'
174 DOS drivers), your data might overlap the area Linux wants to use for
175 the BBT. If this is a concern for you, leave this option disabled and
176 Linux will not write BBT data into this area.
177 The downside of leaving this option disabled is that if bad blocks
178 are detected by Linux, they will not be recorded in the BBT, which
179 could cause future problems.
180 Once you enable this option, new filesystems (INFTL or others, created
181 in Linux or other operating systems) will not use the reserved area.
182 The only reason not to enable this option is to prevent damage to
183 preexisting filesystems.
184 Even if you leave this disabled, you can enable BBT writes at module
185 load time (assuming you build diskonchip as a module) with the module
186 parameter "inftl_bbt_write=1".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Adrian Bunk54af6b42006-03-31 02:29:43 -0800188config MTD_NAND_SHARPSL
189 tristate "Support for NAND Flash on Sharp SL Series (C7xx + others)"
190 depends on MTD_NAND && ARCH_PXA
191
David Woodhouse179fdc32006-05-11 22:35:28 +0100192config MTD_NAND_CS553X
193 tristate "NAND support for CS5535/CS5536 (AMD Geode companion chip)"
194 depends on MTD_NAND && X86_PC && PCI
195
Adrian Bunk54af6b42006-03-31 02:29:43 -0800196config MTD_NAND_NANDSIM
197 tristate "Support for NAND Flash Simulator"
198 depends on MTD_NAND && MTD_PARTITIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 help
200 The simulator may simulate verious NAND flash chips for the
201 MTD nand layer.
Adrian Bunk54af6b42006-03-31 02:29:43 -0800202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203endmenu