General MTD documentation
Table of contents
MTD overview
MTD subsystem (stands for Memory Technology Devices) provides an abstraction layer for raw flash devices. It makes it possible to use the same API when working with different flash types and technologies, e.g. NAND, OneNAND, NOR, AG-AND, ECC'd NOR, etc.
MTD subsystem does not deal with block devices like MMC, eMMC, SD, CompactFlash, etc. These devices are not raw flashes but they have a Flash Translation layer inside, which makes them look like block devices. These devices are the subject of the Linux block subsystem, not MTD. Please, refer to this FAQ section for a short list of the main differences between block and MTD devices. And the raw flash vs. FTL devices UBIFS section discusses this in more details.
MTD subsystem has the following interfaces.
- MTD character devices - usually referred to as
/dev/mtd0
,/dev/mtd1
, and so on. These character devices provide I/O access to the raw flash. They support a number ofioctl
calls for erasing eraseblocks, marking them as bad or checking if an eraseblock is bad, getting information about MTD devices, etc. - The
sysfs
interface is relatively newer and it provides full information about each MTD device in the system. This interface is easily extensible and developers are encouraged to use thesysfs
interface instead of olderioctl
or/proc/mtd
interfaces, when possible. Thesysfs
interface for the mtd subsystem is documentated in the kernel, and currently can be found atDocumentation/ABI/testing/sysfs-class-mtd
. - The
/proc/mtd
proc file system file provides general MTD information. This is a legacy interface and the sysfs interface provides more information.
MTD subsystem supports bare NAND flashes with software and hardware ECC, OneNAND flashes, CFI (Common Flash Interface) NOR flashes, and other flash types.
Additionally, MTD supports legacy FTL/NFTL "translation layers",
M-Systems' DiskOnChip 2000 and Millennium chips, and PCMCIA flashes
(pcmciamtd
driver). But the corresponding drivers are very old and
not maintained very much.
MTD API
The MTD subsystem API is defined in include/linux/mtd/mtd.h
.
The methods and data structures in this file are used by higher layer kernel
code such as flash file systems to access and control the mtd devices, and also
by device driver authors to interface their device to the mtd subsystem. The
various methods by which a driver provides access to the device are defined
within struct mtd_info
. Prior to kernel version 3.4, higher layers
called the driver methods directly by way of a pointer to struct
mtd_info
. As of kernel 3.4, these methods are implemented within the mtd
subsystem core code, which then calls the corresponding driver methods. Users
of kernel 3.4 and later should not call the driver methods directly, but instead
use those prototyped in mtd.h
outside of struct
mtd_info
. These methods include mtd_read()
,
mtd_write()
, etc.
mtd_read()
and mtd_read_oob()
may return
-EUCLEAN
in some circumstances. This return code is applicable
mainly to NAND flash devices, and is used to indicate that some bit errors were
corrected by the device's ECC facility. Prior to kernel version 3.4,
-EUCLEAN
was returned if one or more bit errors were corrected
during the read operation. As of kernel 3.4, the meaning is more nuanced, and
can be broadly interpreted to mean "a dangerously high number of bit errors were
corrected". The -EUCLEAN
return code is intended to help higher
layers detect degradation of erase blocks. The conditions by which
mtd_read()
and mtd_read_oob()
return
-EUCLEAN
can be tuned using the bitflip_threshold
element of the sysfs interface. Please see the kernel documentation for the MTD
sysfs interface (referenced above) before adjusting this value.
MTD tests
The mtd-utils include a set of test programs which you may run to verify your flash hardware and drivers. The programs have only been recently ported to user space and are also available as kernel modules.
In contrast to the modules, the user space tests also offer more fine grained options for controling their behaviour, such as only using specific erase blocks or pages.
The user space tests are compiled automatically when
compiling mtd-utils, but are
not installed by default. To install the tests through
make install
, the configure option
--enable-install-tests
has to be set.
The kernel module tests are available in the mainline kernels
starting from kernel version 2.6.29
and they live in the
drivers/mtd/tests
directory of the linux kernel source codes. You
may compile the tests as kernel modules by enabling them in the kernel
configuration menu by marking: "Device Drivers" ->
"Memory Technology Device (MTD) support" -> "MTD tests support" (or
the MTD_TESTS
symbol in the .config
file).
If you have a pre-2.6.29
kernel, you may find the tests
here:
git://git.infradead.org/users/ahunter/nand-tests.git
The MTD test-suite contains the following tests:
- nandbiterrs: relevant only for NAND flashes, introduces bit errors and tests for multi-bit error recovery on a NAND page. This mostly tests the ECC controller / driver. The kernel module version is called mtd_nandbiterrs.
- flash_speed: measures and reports read/write/erase speed of the MTD device. The kernel module version is called mtd_speedtest.
- flash_stress: performs random read/write/erase operations and validates the MTD device I/O capabilities. The kernel module version is called mtd_stresstest.
- flash_readtest: this tests reads from an MTD device, one NAND page at a time including OOB (or 512 bytes at a time in case of flashes like NOR) and checks that reading works properly. The kernel module version is called mtd_readtest.
- nandpagetest: relevant only for NAND flashes, tests NAND page writing and reading in different sizes and order; this test was originally developed for testing the OneNAND driver, so it might be a little OneNAND-oriented, but must work on any NAND flash. The kernel module version is called mtd_pagetest.
- mtd_oobtest: currently only exists as a kernel module. Relevant only for NAND flashes, tests that the OOB area I/O works properly by writing data to different offsets and verifying it.
- nandsubpagetest: relevant only for NAND flashes, tests sub-page I/O. The kernel module version is called mtd_subpagetest.
- flash_torture: this test is designed to wear out flash
eraseblocks. It repeatedly writes and erases the same group of
eraseblocks until an I/O error happens, so be careful! It may be very
god idea to run this test for some time and validate your flash driver
and HW, providing you have a spare device. For example, we caught
rather rare and nasty DMA issues on an OMAP2 board with OneNAND flash,
just by running this tests for few hours. The kernel module version
is called mtd_torturetest and also supports a number of options
(see
modinfo mtd_torturetest
). - mtd_nandecctest: a simple test that checks correctness of the built-in software ECC for 256 and 512-byte buffers; this test is not driver-specific but tests general NAND support code. This tests only exists as a kernel module, as it tests the internal software ECC implementation.
The mtdblock driver
The mtdblock
driver available in the MTD is an archaic tool
which emulates block devices on top of MTD devices. It does not even have
bad eraseblock handling, so it is not really usable with NAND flashes. And it
works by caching a whole flash erase block in RAM, modifying it as requested,
then erasing the whole block and writing back the modified. This means that
mtdblock
does not try to do any optimizations, and that you will
lose lots of data in case of power cuts. And last, but not least,
mtdblock
does not do any wear-leveling or bit-flips handling.
Often people consider mtdblock
as general FTL layer and try to
use block-based file systems on top of bare flashes using
mtdblock
. This is wrong in most cases.
In other words, please, do not use mtdblock
unless you
know exactly what you are doing.
There is also a read-only version of this driver, mainly for use with uCLinux where the extra RAM requirement was considered too large. However, just like the R/W version of the driver, there is no wear-levelling and bit-flips handling.
Instead of using this old driver, you may check the R/O block device
emulation provided by UBI
useful. Please refer to the
UBI section for more details.
Old MTD documentation
Old MTD web site and old MTD documentation is available here. Old NAND flash interface description is available here.