Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 1 | menuconfig MTD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | tristate "Memory Technology Device (MTD) support" |
Alban Bedel | c4dfa25 | 2018-11-13 15:01:10 +0100 | [diff] [blame] | 3 | imply NVMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | help |
| 5 | Memory Technology Devices are flash, RAM and similar chips, often |
| 6 | used for solid state file systems on embedded devices. This option |
| 7 | will provide the generic support for MTD drivers to register |
| 8 | themselves with the kernel and for potential users of MTD devices |
| 9 | to enumerate the devices which are present and obtain a handle on |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 10 | them. It will also allow you to select individual drivers for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | particular hardware and users of MTD devices. If unsure, say N. |
| 12 | |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 13 | if MTD |
| 14 | |
Mike Frysinger | 80f53da | 2009-06-13 06:15:18 -0400 | [diff] [blame] | 15 | config MTD_TESTS |
Wolfram Sang | 48e546b | 2011-10-30 17:28:49 +0100 | [diff] [blame] | 16 | tristate "MTD tests support (DANGEROUS)" |
Mike Frysinger | 80f53da | 2009-06-13 06:15:18 -0400 | [diff] [blame] | 17 | depends on m |
| 18 | help |
| 19 | This option includes various MTD tests into compilation. The tests |
| 20 | should normally be compiled as kernel modules. The modules perform |
| 21 | various checks and verifications when loaded. |
| 22 | |
Wolfram Sang | 48e546b | 2011-10-30 17:28:49 +0100 | [diff] [blame] | 23 | WARNING: some of the tests will ERASE entire MTD device which they |
| 24 | test. Do not use these tests unless you really know what you do. |
| 25 | |
Rafał Miłecki | 99352af | 2017-06-21 08:26:47 +0200 | [diff] [blame] | 26 | menu "Partition parsers" |
| 27 | source "drivers/mtd/parsers/Kconfig" |
| 28 | endmenu |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | comment "User Modules And Translation Layers" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Ezequiel Garcia | 7f11b4d | 2013-12-13 10:58:44 -0300 | [diff] [blame] | 32 | # |
| 33 | # MTD block device support is select'ed if needed |
| 34 | # |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 35 | config MTD_BLKDEVS |
Ezequiel Garcia | 7f11b4d | 2013-12-13 10:58:44 -0300 | [diff] [blame] | 36 | tristate |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | config MTD_BLOCK |
| 39 | tristate "Caching block device access to MTD devices" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 40 | depends on BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 41 | select MTD_BLKDEVS |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 42 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | Although most flash chips have an erase size too large to be useful |
| 44 | as block devices, it is possible to use MTD devices which are based |
| 45 | on RAM chips in this manner. This block device is a user of MTD |
| 46 | devices performing that function. |
| 47 | |
| 48 | At the moment, it is also required for the Journalling Flash File |
| 49 | System(s) to obtain a handle on the MTD device when it's mounted |
| 50 | (although JFFS and JFFS2 don't actually use any of the functionality |
| 51 | of the mtdblock device). |
| 52 | |
| 53 | Later, it may be extended to perform read/erase/modify/write cycles |
| 54 | on flash chips to emulate a smaller block size. Needless to say, |
| 55 | this is very unsafe, but could be useful for file systems which are |
| 56 | almost never written to. |
| 57 | |
| 58 | You do not need this option for use with the DiskOnChip devices. For |
| 59 | those, enable NFTL support (CONFIG_NFTL) instead. |
| 60 | |
| 61 | config MTD_BLOCK_RO |
| 62 | tristate "Readonly block device access to MTD devices" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 63 | depends on MTD_BLOCK!=y && BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 64 | select MTD_BLKDEVS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | help |
| 66 | This allows you to mount read-only file systems (such as cramfs) |
| 67 | from an MTD device, without the overhead (and danger) of the caching |
| 68 | driver. |
| 69 | |
| 70 | You do not need this option for use with the DiskOnChip devices. For |
| 71 | those, enable NFTL support (CONFIG_NFTL) instead. |
| 72 | |
| 73 | config FTL |
| 74 | tristate "FTL (Flash Translation Layer) support" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 75 | depends on BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 76 | select MTD_BLKDEVS |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 77 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | This provides support for the original Flash Translation Layer which |
| 79 | is part of the PCMCIA specification. It uses a kind of pseudo- |
| 80 | file system on a flash device to emulate a block device with |
| 81 | 512-byte sectors, on top of which you put a 'normal' file system. |
| 82 | |
| 83 | You may find that the algorithms used in this code are patented |
| 84 | unless you live in the Free World where software patents aren't |
| 85 | legal - in the USA you are only permitted to use this on PCMCIA |
| 86 | hardware, although under the terms of the GPL you're obviously |
| 87 | permitted to copy, modify and distribute the code as you wish. Just |
| 88 | not use it. |
| 89 | |
| 90 | config NFTL |
| 91 | tristate "NFTL (NAND Flash Translation Layer) support" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 92 | depends on BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 93 | select MTD_BLKDEVS |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 94 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | This provides support for the NAND Flash Translation Layer which is |
| 96 | used on M-Systems' DiskOnChip devices. It uses a kind of pseudo- |
| 97 | file system on a flash device to emulate a block device with |
| 98 | 512-byte sectors, on top of which you put a 'normal' file system. |
| 99 | |
| 100 | You may find that the algorithms used in this code are patented |
| 101 | unless you live in the Free World where software patents aren't |
| 102 | legal - in the USA you are only permitted to use this on DiskOnChip |
| 103 | hardware, although under the terms of the GPL you're obviously |
| 104 | permitted to copy, modify and distribute the code as you wish. Just |
| 105 | not use it. |
| 106 | |
| 107 | config NFTL_RW |
| 108 | bool "Write support for NFTL" |
| 109 | depends on NFTL |
| 110 | help |
| 111 | Support for writing to the NAND Flash Translation Layer, as used |
| 112 | on the DiskOnChip. |
| 113 | |
| 114 | config INFTL |
| 115 | tristate "INFTL (Inverse NAND Flash Translation Layer) support" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 116 | depends on BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 117 | select MTD_BLKDEVS |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 118 | help |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 119 | This provides support for the Inverse NAND Flash Translation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | Layer which is used on M-Systems' newer DiskOnChip devices. It |
| 121 | uses a kind of pseudo-file system on a flash device to emulate |
| 122 | a block device with 512-byte sectors, on top of which you put |
| 123 | a 'normal' file system. |
| 124 | |
| 125 | You may find that the algorithms used in this code are patented |
| 126 | unless you live in the Free World where software patents aren't |
| 127 | legal - in the USA you are only permitted to use this on DiskOnChip |
| 128 | hardware, although under the terms of the GPL you're obviously |
| 129 | permitted to copy, modify and distribute the code as you wish. Just |
| 130 | not use it. |
| 131 | |
Sean Young | e27a996 | 2005-06-16 09:49:33 +0100 | [diff] [blame] | 132 | config RFD_FTL |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 133 | tristate "Resident Flash Disk (Flash Translation Layer) support" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 134 | depends on BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 135 | select MTD_BLKDEVS |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 136 | help |
Thomas Gleixner | 97894cd | 2005-11-07 11:15:26 +0000 | [diff] [blame] | 137 | This provides support for the flash translation layer known |
| 138 | as the Resident Flash Disk (RFD), as used by the Embedded BIOS |
Kyungmin Park | cd5f634 | 2005-07-11 11:41:53 +0100 | [diff] [blame] | 139 | of General Software. There is a blurb at: |
| 140 | |
| 141 | http://www.gensw.com/pages/prod/bios/rfd.htm |
Sean Young | e27a996 | 2005-06-16 09:49:33 +0100 | [diff] [blame] | 142 | |
Claudio Lanconelli | 51197ab | 2006-09-22 11:01:37 +0100 | [diff] [blame] | 143 | config SSFDC |
David Woodhouse | 892e4fb | 2006-09-23 10:24:36 +0100 | [diff] [blame] | 144 | tristate "NAND SSFDC (SmartMedia) read only translation layer" |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 145 | depends on BLOCK |
Josh Boyer | f6a7ecb | 2006-11-20 20:15:36 -0600 | [diff] [blame] | 146 | select MTD_BLKDEVS |
Claudio Lanconelli | 51197ab | 2006-09-22 11:01:37 +0100 | [diff] [blame] | 147 | help |
| 148 | This enables read only access to SmartMedia formatted NAND |
| 149 | flash. You can mount it with FAT file system. |
| 150 | |
Maxim Levitsky | 7d17c02 | 2010-02-22 20:39:41 +0200 | [diff] [blame] | 151 | config SM_FTL |
| 152 | tristate "SmartMedia/xD new translation layer" |
Kees Cook | 6372680 | 2012-10-02 11:17:47 -0700 | [diff] [blame] | 153 | depends on BLOCK |
Maxim Levitsky | 7d17c02 | 2010-02-22 20:39:41 +0200 | [diff] [blame] | 154 | select MTD_BLKDEVS |
Miquel Raynal | 9bb9464 | 2019-02-08 08:48:37 +0100 | [diff] [blame] | 155 | select MTD_NAND_ECC_SW_HAMMING |
Maxim Levitsky | 7d17c02 | 2010-02-22 20:39:41 +0200 | [diff] [blame] | 156 | help |
Maxim Levitsky | 6f92355 | 2010-07-28 18:53:17 +0300 | [diff] [blame] | 157 | This enables EXPERIMENTAL R/W support for SmartMedia/xD |
David Woodhouse | 7de6f79 | 2010-03-08 18:45:00 -0800 | [diff] [blame] | 158 | FTL (Flash translation layer). |
Maxim Levitsky | 6f92355 | 2010-07-28 18:53:17 +0300 | [diff] [blame] | 159 | Write support is only lightly tested, therefore this driver |
| 160 | isn't recommended to use with valuable data (anyway if you have |
| 161 | valuable data, do backups regardless of software/hardware you |
| 162 | use, because you never know what will eat your data...) |
| 163 | If you only need R/O access, you can use older R/O driver |
| 164 | (CONFIG_SSFDC) |
Maxim Levitsky | 7d17c02 | 2010-02-22 20:39:41 +0200 | [diff] [blame] | 165 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 166 | config MTD_OOPS |
| 167 | tristate "Log panic/oops to an MTD buffer" |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 168 | help |
| 169 | This enables panic and oops messages to be logged to a circular |
| 170 | buffer in a flash partition where it can be read back at some |
| 171 | later point. |
| 172 | |
WeiXiong Liao | 78c0824 | 2020-03-25 16:55:06 +0800 | [diff] [blame] | 173 | config MTD_PSTORE |
| 174 | tristate "Log panic/oops to an MTD buffer based on pstore" |
| 175 | depends on PSTORE_BLK |
| 176 | help |
| 177 | This enables panic and oops messages to be logged to a circular |
| 178 | buffer in a flash partition where it can be read back as files after |
| 179 | mounting pstore filesystem. |
| 180 | |
| 181 | If unsure, say N. |
| 182 | |
Jarkko Lavinen | a321590 | 2011-02-14 16:16:11 +0200 | [diff] [blame] | 183 | config MTD_SWAP |
| 184 | tristate "Swap on MTD device support" |
| 185 | depends on MTD && SWAP |
| 186 | select MTD_BLKDEVS |
| 187 | help |
| 188 | Provides volatile block device driver on top of mtd partition |
Boris Brezillon | a8222a8 | 2018-07-18 17:09:52 +0200 | [diff] [blame] | 189 | suitable for swapping. The mapping of written blocks is not saved. |
Jarkko Lavinen | a321590 | 2011-02-14 16:16:11 +0200 | [diff] [blame] | 190 | The driver provides wear leveling by storing erase counter into the |
| 191 | OOB. |
| 192 | |
Dan Ehrenberg | 727dc61 | 2015-04-02 15:15:10 -0700 | [diff] [blame] | 193 | config MTD_PARTITIONED_MASTER |
| 194 | bool "Retain master device when partitioned" |
| 195 | default n |
| 196 | depends on MTD |
| 197 | help |
| 198 | For historical reasons, by default, either a master is present or |
| 199 | several partitions are present, but not both. The concern was that |
| 200 | data listed in multiple partitions was dangerous; however, SCSI does |
| 201 | this and it is frequently useful for applications. This config option |
| 202 | leaves the master in even if the device is partitioned. It also makes |
| 203 | the parent of the partition device be the master device, rather than |
| 204 | what lies behind the master. |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | source "drivers/mtd/chips/Kconfig" |
| 207 | |
| 208 | source "drivers/mtd/maps/Kconfig" |
| 209 | |
| 210 | source "drivers/mtd/devices/Kconfig" |
| 211 | |
| 212 | source "drivers/mtd/nand/Kconfig" |
| 213 | |
Alexey Korolev | 60f2652 | 2008-12-16 18:24:14 +0000 | [diff] [blame] | 214 | source "drivers/mtd/lpddr/Kconfig" |
| 215 | |
Huang Shijie | b199489 | 2014-02-24 18:37:37 +0800 | [diff] [blame] | 216 | source "drivers/mtd/spi-nor/Kconfig" |
| 217 | |
Artem B. Bityutskiy | 801c135 | 2006-06-27 12:22:22 +0400 | [diff] [blame] | 218 | source "drivers/mtd/ubi/Kconfig" |
| 219 | |
Vignesh Raghavendra | dcc7d34 | 2019-06-25 13:27:44 +0530 | [diff] [blame] | 220 | source "drivers/mtd/hyperbus/Kconfig" |
| 221 | |
Jan Engelhardt | ec98c68 | 2007-04-19 16:21:41 -0500 | [diff] [blame] | 222 | endif # MTD |