blob: 54479c481a7a815dbedc5cbdc3bc734039620925 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "RAM/ROM/Flash chip drivers"
2 depends on MTD!=n
3
4config MTD_CFI
5 tristate "Detect flash chips by Common Flash Interface (CFI) probe"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 select MTD_GEN_PROBE
David Woodhouse5e706462008-09-01 12:21:05 +01007 select MTD_CFI_UTIL
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 help
9 The Common Flash Interface specification was developed by Intel,
10 AMD and other flash manufactures that provides a universal method
11 for probing the capabilities of flash devices. If you wish to
12 support any device that is CFI-compliant, you need to enable this
13 option. Visit <http://www.amd.com/products/nvd/overview/cfi.html>
14 for more information on CFI.
15
16config MTD_JEDECPROBE
17 tristate "Detect non-CFI AMD/JEDEC-compatible flash chips"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 select MTD_GEN_PROBE
Brian Norrisbde90062015-05-28 11:07:48 -070019 select MTD_CFI_UTIL
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 help
21 This option enables JEDEC-style probing of flash chips which are not
22 compatible with the Common Flash Interface, but will use the common
Lucas De Marchi25985ed2011-03-30 22:57:33 -030023 CFI-targeted flash drivers for any chips which are identified which
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 are in fact compatible in all but the probe method. This actually
Adrian Bunk8917f6f2006-03-26 19:15:03 +020025 covers most AMD/Fujitsu-compatible chips and also non-CFI
26 Intel chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28config MTD_GEN_PROBE
29 tristate
30
31config MTD_CFI_ADV_OPTIONS
32 bool "Flash chip driver advanced configuration options"
33 depends on MTD_GEN_PROBE
34 help
35 If you need to specify a specific endianness for access to flash
36 chips, or if you wish to reduce the size of the kernel by including
37 support for only specific arrangements of flash chips, say 'Y'. This
Thomas Gleixner1f948b42005-11-07 11:15:37 +000038 option does not directly affect the code, but will enable other
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 configuration options which allow you to do so.
40
41 If unsure, say 'N'.
42
43choice
44 prompt "Flash cmd/query data swapping"
45 depends on MTD_CFI_ADV_OPTIONS
46 default MTD_CFI_NOSWAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 ---help---
48 This option defines the way in which the CPU attempts to arrange
49 data bits when writing the 'magic' commands to the chips. Saying
50 'NO', which is the default when CONFIG_MTD_CFI_ADV_OPTIONS isn't
51 enabled, means that the CPU will not do any swapping; the chips
Thomas Gleixner1f948b42005-11-07 11:15:37 +000052 are expected to be wired to the CPU in 'host-endian' form.
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 Specific arrangements are possible with the BIG_ENDIAN_BYTE and
54 LITTLE_ENDIAN_BYTE, if the bytes are reversed.
55
Paul Bolle2e61c3a2012-06-19 13:52:42 +020056config MTD_CFI_NOSWAP
57 bool "NO"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59config MTD_CFI_BE_BYTE_SWAP
60 bool "BIG_ENDIAN_BYTE"
61
62config MTD_CFI_LE_BYTE_SWAP
63 bool "LITTLE_ENDIAN_BYTE"
64
65endchoice
66
67config MTD_CFI_GEOMETRY
68 bool "Specific CFI Flash geometry selection"
69 depends on MTD_CFI_ADV_OPTIONS
70 help
Thomas Gleixner1f948b42005-11-07 11:15:37 +000071 This option does not affect the code directly, but will enable
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 some other configuration options which would allow you to reduce
Thomas Gleixner1f948b42005-11-07 11:15:37 +000073 the size of the kernel by including support for only certain
74 arrangements of CFI chips. If unsure, say 'N' and all options
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 which are supported by the current code will be enabled.
76
77config MTD_MAP_BANK_WIDTH_1
78 bool "Support 8-bit buswidth" if MTD_CFI_GEOMETRY
79 default y
80 help
81 If you wish to support CFI devices on a physical bus which is
82 8 bits wide, say 'Y'.
83
84config MTD_MAP_BANK_WIDTH_2
85 bool "Support 16-bit buswidth" if MTD_CFI_GEOMETRY
86 default y
87 help
88 If you wish to support CFI devices on a physical bus which is
89 16 bits wide, say 'Y'.
90
91config MTD_MAP_BANK_WIDTH_4
92 bool "Support 32-bit buswidth" if MTD_CFI_GEOMETRY
93 default y
94 help
95 If you wish to support CFI devices on a physical bus which is
96 32 bits wide, say 'Y'.
97
98config MTD_MAP_BANK_WIDTH_8
99 bool "Support 64-bit buswidth" if MTD_CFI_GEOMETRY
100 default n
101 help
102 If you wish to support CFI devices on a physical bus which is
103 64 bits wide, say 'Y'.
104
105config MTD_MAP_BANK_WIDTH_16
106 bool "Support 128-bit buswidth" if MTD_CFI_GEOMETRY
107 default n
108 help
109 If you wish to support CFI devices on a physical bus which is
110 128 bits wide, say 'Y'.
111
112config MTD_MAP_BANK_WIDTH_32
113 bool "Support 256-bit buswidth" if MTD_CFI_GEOMETRY
114 default n
115 help
116 If you wish to support CFI devices on a physical bus which is
117 256 bits wide, say 'Y'.
118
119config MTD_CFI_I1
120 bool "Support 1-chip flash interleave" if MTD_CFI_GEOMETRY
121 default y
122 help
123 If your flash chips are not interleaved - i.e. you only have one
124 flash chip addressed by each bus cycle, then say 'Y'.
125
126config MTD_CFI_I2
127 bool "Support 2-chip flash interleave" if MTD_CFI_GEOMETRY
128 default y
129 help
130 If your flash chips are interleaved in pairs - i.e. you have two
131 flash chips addressed by each bus cycle, then say 'Y'.
132
133config MTD_CFI_I4
134 bool "Support 4-chip flash interleave" if MTD_CFI_GEOMETRY
135 default n
136 help
137 If your flash chips are interleaved in fours - i.e. you have four
138 flash chips addressed by each bus cycle, then say 'Y'.
139
140config MTD_CFI_I8
141 bool "Support 8-chip flash interleave" if MTD_CFI_GEOMETRY
142 default n
143 help
144 If your flash chips are interleaved in eights - i.e. you have eight
145 flash chips addressed by each bus cycle, then say 'Y'.
146
Nicolas Pitref77814d2005-02-08 17:11:19 +0000147config MTD_OTP
148 bool "Protection Registers aka one-time programmable (OTP) bits"
149 depends on MTD_CFI_ADV_OPTIONS
150 default n
151 help
152 This enables support for reading, writing and locking so called
153 "Protection Registers" present on some flash chips.
154 A subset of them are pre-programmed at the factory with a
155 unique set of values. The rest is user-programmable.
156
157 The user-programmable Protection Registers contain one-time
158 programmable (OTP) bits; when programmed, register bits cannot be
159 erased. Each Protection Register can be accessed multiple times to
160 program individual bits, as long as the register remains unlocked.
161
162 Each Protection Register has an associated Lock Register bit. When a
163 Lock Register bit is programmed, the associated Protection Register
164 can only be read; it can no longer be programmed. Additionally,
165 because the Lock Register bits themselves are OTP, when programmed,
166 Lock Register bits cannot be erased. Therefore, when a Protection
167 Register is locked, it cannot be unlocked.
168
169 This feature should therefore be used with extreme care. Any mistake
170 in the programming of OTP bits will waste them.
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172config MTD_CFI_INTELEXT
Philippe De Muyter5a4c4c52014-03-07 16:04:01 +0100173 tristate "Support for CFI command set 0001 (Intel/Sharp chips)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 depends on MTD_GEN_PROBE
175 select MTD_CFI_UTIL
176 help
177 The Common Flash Interface defines a number of different command
178 sets which a CFI-compliant chip may claim to implement. This code
Philippe De Muyter5a4c4c52014-03-07 16:04:01 +0100179 provides support for command set 0001, used on Intel StrataFlash
180 and other parts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182config MTD_CFI_AMDSTD
Philippe De Muyter5a4c4c52014-03-07 16:04:01 +0100183 tristate "Support for CFI command set 0002 (AMD/Fujitsu/Spansion chips)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 depends on MTD_GEN_PROBE
185 select MTD_CFI_UTIL
186 help
187 The Common Flash Interface defines a number of different command
188 sets which a CFI-compliant chip may claim to implement. This code
Philippe De Muyter5a4c4c52014-03-07 16:04:01 +0100189 provides support for command set 0002, used on chips including
190 the AMD Am29LV320.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192config MTD_CFI_STAA
Philippe De Muyter5a4c4c52014-03-07 16:04:01 +0100193 tristate "Support for CFI command set 0020 (ST (Advanced Architecture) chips)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 depends on MTD_GEN_PROBE
195 select MTD_CFI_UTIL
196 help
197 The Common Flash Interface defines a number of different command
198 sets which a CFI-compliant chip may claim to implement. This code
Philippe De Muyter5a4c4c52014-03-07 16:04:01 +0100199 provides support for command set 0020.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201config MTD_CFI_UTIL
202 tristate
203
204config MTD_RAM
205 tristate "Support for RAM chips in bus mapping"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 help
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000207 This option enables basic support for RAM chips accessed through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 a bus mapping driver.
209
210config MTD_ROM
211 tristate "Support for ROM chips in bus mapping"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 help
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000213 This option enables basic support for ROM chips accessed through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 a bus mapping driver.
215
216config MTD_ABSENT
217 tristate "Support for absent chips in bus mapping"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 help
219 This option enables support for a dummy probing driver used to
220 allocated placeholder MTD devices on systems that have socketed
221 or removable media. Use of this driver as a fallback chip probe
222 preserves the expected registration order of MTD device nodes on
223 the system regardless of media presence. Device nodes created
224 with this driver will return -ENODEV upon access.
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226config MTD_XIP
227 bool "XIP aware MTD support"
Kees Cook7b4dd552012-10-02 11:17:49 -0700228 depends on !SMP && (MTD_CFI_INTELEXT || MTD_CFI_AMDSTD) && ARCH_MTD_XIP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 default y if XIP_KERNEL
230 help
231 This allows MTD support to work with flash memory which is also
232 used for XIP purposes. If you're not sure what this is all about
233 then say N.
234
235endmenu