]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/mtd/spi-nor/Kconfig
Merge branch 'drm-next-analogix-dp-v2' of github.com:yakir-Yang/linux into drm-next
[karo-tx-linux.git] / drivers / mtd / spi-nor / Kconfig
1 menuconfig MTD_SPI_NOR
2         tristate "SPI-NOR device support"
3         depends on MTD
4         help
5           This is the framework for the SPI NOR which can be used by the SPI
6           device drivers and the SPI-NOR device driver.
7
8 if MTD_SPI_NOR
9
10 config MTD_MT81xx_NOR
11         tristate "Mediatek MT81xx SPI NOR flash controller"
12         depends on HAS_IOMEM
13         help
14           This enables access to SPI NOR flash, using MT81xx SPI NOR flash
15           controller. This controller does not support generic SPI BUS, it only
16           supports SPI NOR Flash.
17
18 config MTD_SPI_NOR_USE_4K_SECTORS
19         bool "Use small 4096 B erase sectors"
20         default y
21         help
22           Many flash memories support erasing small (4096 B) sectors. Depending
23           on the usage this feature may provide performance gain in comparison
24           to erasing whole blocks (32/64 KiB).
25           Changing a small part of the flash's contents is usually faster with
26           small sectors. On the other hand erasing should be faster when using
27           64 KiB block instead of 16 × 4 KiB sectors.
28
29           Please note that some tools/drivers/filesystems may not work with
30           4096 B erase size (e.g. UBIFS requires 15 KiB as a minimum).
31
32 config SPI_FSL_QUADSPI
33         tristate "Freescale Quad SPI controller"
34         depends on ARCH_MXC || SOC_LS1021A || ARCH_LAYERSCAPE || COMPILE_TEST
35         depends on HAS_IOMEM
36         help
37           This enables support for the Quad SPI controller in master mode.
38           This controller does not support generic SPI. It only supports
39           SPI NOR.
40
41 config SPI_NXP_SPIFI
42         tristate "NXP SPI Flash Interface (SPIFI)"
43         depends on OF && (ARCH_LPC18XX || COMPILE_TEST)
44         depends on HAS_IOMEM
45         help
46           Enable support for the NXP LPC SPI Flash Interface controller.
47
48           SPIFI is a specialized controller for connecting serial SPI
49           Flash. Enable this option if you have a device with a SPIFI
50           controller and want to access the Flash as a mtd device.
51
52 endif # MTD_SPI_NOR