Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | menu "RAM/ROM/Flash chip drivers" |
| 2 | depends on MTD!=n |
| 3 | |
| 4 | config MTD_CFI |
| 5 | tristate "Detect flash chips by Common Flash Interface (CFI) probe" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | select MTD_GEN_PROBE |
David Woodhouse | 5e70646 | 2008-09-01 12:21:05 +0100 | [diff] [blame] | 7 | select MTD_CFI_UTIL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | 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 | |
| 16 | config MTD_JEDECPROBE |
| 17 | tristate "Detect non-CFI AMD/JEDEC-compatible flash chips" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | select MTD_GEN_PROBE |
Brian Norris | bde9006 | 2015-05-28 11:07:48 -0700 | [diff] [blame] | 19 | select MTD_CFI_UTIL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | 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 Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 23 | CFI-targeted flash drivers for any chips which are identified which |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | are in fact compatible in all but the probe method. This actually |
Adrian Bunk | 8917f6f | 2006-03-26 19:15:03 +0200 | [diff] [blame] | 25 | covers most AMD/Fujitsu-compatible chips and also non-CFI |
| 26 | Intel chips. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | config MTD_GEN_PROBE |
| 29 | tristate |
| 30 | |
| 31 | config 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 Gleixner | 1f948b4 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 38 | option does not directly affect the code, but will enable other |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | configuration options which allow you to do so. |
| 40 | |
| 41 | If unsure, say 'N'. |
| 42 | |
| 43 | choice |
| 44 | prompt "Flash cmd/query data swapping" |
| 45 | depends on MTD_CFI_ADV_OPTIONS |
| 46 | default MTD_CFI_NOSWAP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | ---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 Gleixner | 1f948b4 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 52 | are expected to be wired to the CPU in 'host-endian' form. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | Specific arrangements are possible with the BIG_ENDIAN_BYTE and |
| 54 | LITTLE_ENDIAN_BYTE, if the bytes are reversed. |
| 55 | |
Paul Bolle | 2e61c3a | 2012-06-19 13:52:42 +0200 | [diff] [blame] | 56 | config MTD_CFI_NOSWAP |
| 57 | bool "NO" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | config MTD_CFI_BE_BYTE_SWAP |
| 60 | bool "BIG_ENDIAN_BYTE" |
| 61 | |
| 62 | config MTD_CFI_LE_BYTE_SWAP |
| 63 | bool "LITTLE_ENDIAN_BYTE" |
| 64 | |
| 65 | endchoice |
| 66 | |
| 67 | config MTD_CFI_GEOMETRY |
| 68 | bool "Specific CFI Flash geometry selection" |
| 69 | depends on MTD_CFI_ADV_OPTIONS |
Arnd Bergmann | f5f92b3 | 2015-11-23 14:39:33 +0100 | [diff] [blame] | 70 | select MTD_MAP_BANK_WIDTH_1 if !(MTD_MAP_BANK_WIDTH_2 || \ |
| 71 | MTD_MAP_BANK_WIDTH_4 || MTD_MAP_BANK_WIDTH_8 || \ |
| 72 | MTD_MAP_BANK_WIDTH_16 || MTD_MAP_BANK_WIDTH_32) |
| 73 | select MTD_CFI_I1 if !(MTD_CFI_I2 || MTD_CFI_I4 || MTD_CFI_I8) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | help |
Thomas Gleixner | 1f948b4 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 75 | This option does not affect the code directly, but will enable |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | some other configuration options which would allow you to reduce |
Thomas Gleixner | 1f948b4 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 77 | the size of the kernel by including support for only certain |
| 78 | arrangements of CFI chips. If unsure, say 'N' and all options |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | which are supported by the current code will be enabled. |
| 80 | |
| 81 | config MTD_MAP_BANK_WIDTH_1 |
| 82 | bool "Support 8-bit buswidth" if MTD_CFI_GEOMETRY |
| 83 | default y |
| 84 | help |
| 85 | If you wish to support CFI devices on a physical bus which is |
| 86 | 8 bits wide, say 'Y'. |
| 87 | |
| 88 | config MTD_MAP_BANK_WIDTH_2 |
| 89 | bool "Support 16-bit buswidth" if MTD_CFI_GEOMETRY |
| 90 | default y |
| 91 | help |
| 92 | If you wish to support CFI devices on a physical bus which is |
| 93 | 16 bits wide, say 'Y'. |
| 94 | |
| 95 | config MTD_MAP_BANK_WIDTH_4 |
| 96 | bool "Support 32-bit buswidth" if MTD_CFI_GEOMETRY |
| 97 | default y |
| 98 | help |
| 99 | If you wish to support CFI devices on a physical bus which is |
| 100 | 32 bits wide, say 'Y'. |
| 101 | |
| 102 | config MTD_MAP_BANK_WIDTH_8 |
| 103 | bool "Support 64-bit buswidth" if MTD_CFI_GEOMETRY |
| 104 | default n |
| 105 | help |
| 106 | If you wish to support CFI devices on a physical bus which is |
| 107 | 64 bits wide, say 'Y'. |
| 108 | |
| 109 | config MTD_MAP_BANK_WIDTH_16 |
| 110 | bool "Support 128-bit buswidth" if MTD_CFI_GEOMETRY |
| 111 | default n |
| 112 | help |
| 113 | If you wish to support CFI devices on a physical bus which is |
| 114 | 128 bits wide, say 'Y'. |
| 115 | |
| 116 | config MTD_MAP_BANK_WIDTH_32 |
| 117 | bool "Support 256-bit buswidth" if MTD_CFI_GEOMETRY |
Arnd Bergmann | fddcca5 | 2016-02-29 13:20:28 +0100 | [diff] [blame] | 118 | select MTD_COMPLEX_MAPPINGS if HAS_IOMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | default n |
| 120 | help |
| 121 | If you wish to support CFI devices on a physical bus which is |
| 122 | 256 bits wide, say 'Y'. |
| 123 | |
| 124 | config MTD_CFI_I1 |
| 125 | bool "Support 1-chip flash interleave" if MTD_CFI_GEOMETRY |
| 126 | default y |
| 127 | help |
| 128 | If your flash chips are not interleaved - i.e. you only have one |
| 129 | flash chip addressed by each bus cycle, then say 'Y'. |
| 130 | |
| 131 | config MTD_CFI_I2 |
| 132 | bool "Support 2-chip flash interleave" if MTD_CFI_GEOMETRY |
| 133 | default y |
| 134 | help |
| 135 | If your flash chips are interleaved in pairs - i.e. you have two |
| 136 | flash chips addressed by each bus cycle, then say 'Y'. |
| 137 | |
| 138 | config MTD_CFI_I4 |
| 139 | bool "Support 4-chip flash interleave" if MTD_CFI_GEOMETRY |
| 140 | default n |
| 141 | help |
| 142 | If your flash chips are interleaved in fours - i.e. you have four |
| 143 | flash chips addressed by each bus cycle, then say 'Y'. |
| 144 | |
| 145 | config MTD_CFI_I8 |
| 146 | bool "Support 8-chip flash interleave" if MTD_CFI_GEOMETRY |
| 147 | default n |
| 148 | help |
| 149 | If your flash chips are interleaved in eights - i.e. you have eight |
| 150 | flash chips addressed by each bus cycle, then say 'Y'. |
| 151 | |
Nicolas Pitre | f77814d | 2005-02-08 17:11:19 +0000 | [diff] [blame] | 152 | config MTD_OTP |
| 153 | bool "Protection Registers aka one-time programmable (OTP) bits" |
| 154 | depends on MTD_CFI_ADV_OPTIONS |
| 155 | default n |
| 156 | help |
| 157 | This enables support for reading, writing and locking so called |
| 158 | "Protection Registers" present on some flash chips. |
| 159 | A subset of them are pre-programmed at the factory with a |
| 160 | unique set of values. The rest is user-programmable. |
| 161 | |
| 162 | The user-programmable Protection Registers contain one-time |
| 163 | programmable (OTP) bits; when programmed, register bits cannot be |
| 164 | erased. Each Protection Register can be accessed multiple times to |
| 165 | program individual bits, as long as the register remains unlocked. |
| 166 | |
| 167 | Each Protection Register has an associated Lock Register bit. When a |
| 168 | Lock Register bit is programmed, the associated Protection Register |
| 169 | can only be read; it can no longer be programmed. Additionally, |
| 170 | because the Lock Register bits themselves are OTP, when programmed, |
| 171 | Lock Register bits cannot be erased. Therefore, when a Protection |
| 172 | Register is locked, it cannot be unlocked. |
| 173 | |
| 174 | This feature should therefore be used with extreme care. Any mistake |
| 175 | in the programming of OTP bits will waste them. |
| 176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | config MTD_CFI_INTELEXT |
Philippe De Muyter | 5a4c4c5 | 2014-03-07 16:04:01 +0100 | [diff] [blame] | 178 | tristate "Support for CFI command set 0001 (Intel/Sharp chips)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | depends on MTD_GEN_PROBE |
| 180 | select MTD_CFI_UTIL |
| 181 | help |
| 182 | The Common Flash Interface defines a number of different command |
| 183 | sets which a CFI-compliant chip may claim to implement. This code |
Philippe De Muyter | 5a4c4c5 | 2014-03-07 16:04:01 +0100 | [diff] [blame] | 184 | provides support for command set 0001, used on Intel StrataFlash |
| 185 | and other parts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | config MTD_CFI_AMDSTD |
Philippe De Muyter | 5a4c4c5 | 2014-03-07 16:04:01 +0100 | [diff] [blame] | 188 | tristate "Support for CFI command set 0002 (AMD/Fujitsu/Spansion chips)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | depends on MTD_GEN_PROBE |
| 190 | select MTD_CFI_UTIL |
| 191 | help |
| 192 | The Common Flash Interface defines a number of different command |
| 193 | sets which a CFI-compliant chip may claim to implement. This code |
Philippe De Muyter | 5a4c4c5 | 2014-03-07 16:04:01 +0100 | [diff] [blame] | 194 | provides support for command set 0002, used on chips including |
| 195 | the AMD Am29LV320. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | config MTD_CFI_STAA |
Philippe De Muyter | 5a4c4c5 | 2014-03-07 16:04:01 +0100 | [diff] [blame] | 198 | tristate "Support for CFI command set 0020 (ST (Advanced Architecture) chips)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | depends on MTD_GEN_PROBE |
| 200 | select MTD_CFI_UTIL |
| 201 | help |
| 202 | The Common Flash Interface defines a number of different command |
| 203 | sets which a CFI-compliant chip may claim to implement. This code |
Philippe De Muyter | 5a4c4c5 | 2014-03-07 16:04:01 +0100 | [diff] [blame] | 204 | provides support for command set 0020. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | config MTD_CFI_UTIL |
| 207 | tristate |
| 208 | |
| 209 | config MTD_RAM |
| 210 | tristate "Support for RAM chips in bus mapping" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | help |
Thomas Gleixner | 1f948b4 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 212 | This option enables basic support for RAM chips accessed through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | a bus mapping driver. |
| 214 | |
| 215 | config MTD_ROM |
| 216 | tristate "Support for ROM chips in bus mapping" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | help |
Thomas Gleixner | 1f948b4 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 218 | This option enables basic support for ROM chips accessed through |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | a bus mapping driver. |
| 220 | |
| 221 | config MTD_ABSENT |
| 222 | tristate "Support for absent chips in bus mapping" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | help |
| 224 | This option enables support for a dummy probing driver used to |
| 225 | allocated placeholder MTD devices on systems that have socketed |
| 226 | or removable media. Use of this driver as a fallback chip probe |
| 227 | preserves the expected registration order of MTD device nodes on |
| 228 | the system regardless of media presence. Device nodes created |
| 229 | with this driver will return -ENODEV upon access. |
| 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | config MTD_XIP |
| 232 | bool "XIP aware MTD support" |
Kees Cook | 7b4dd55 | 2012-10-02 11:17:49 -0700 | [diff] [blame] | 233 | depends on !SMP && (MTD_CFI_INTELEXT || MTD_CFI_AMDSTD) && ARCH_MTD_XIP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | default y if XIP_KERNEL |
| 235 | help |
| 236 | This allows MTD support to work with flash memory which is also |
| 237 | used for XIP purposes. If you're not sure what this is all about |
| 238 | then say N. |
| 239 | |
| 240 | endmenu |