]> git.sur5r.net Git - u-boot/blobdiff - drivers/mtd/spi/Kconfig
arm: zynq: Move CONFIG_SF_DUAL_FLASH to defconfig
[u-boot] / drivers / mtd / spi / Kconfig
index 8b730ff3c55458b5040e5891adcdeab6012948b7..5700859ff27149cc1ba5d6ea99738b52200a98b3 100644 (file)
@@ -42,6 +42,13 @@ config SPI_FLASH_BAR
          Bank/Extended address registers are used to access the flash
          which has size > 16MiB in 3-byte addressing.
 
+config SF_DUAL_FLASH
+       bool "SPI DUAL flash memory support"
+       depends on SPI_FLASH
+       help
+         Enable this option to support two flash memories connected to a single
+         controller. Currently Xilinx Zynq qspi supports this.
+
 if SPI_FLASH
 
 config SPI_FLASH_ATMEL
@@ -86,6 +93,21 @@ config SPI_FLASH_WINBOND
 
 endif
 
+config SPI_FLASH_USE_4K_SECTORS
+       bool "Use small 4096 B erase sectors"
+       depends on SPI_FLASH
+       default y
+       help
+         Many flash memories support erasing small (4096 B) sectors. Depending
+         on the usage this feature may provide performance gain in comparison
+         to erasing whole blocks (32/64 KiB).
+         Changing a small part of the flash's contents is usually faster with
+         small sectors. On the other hand erasing should be faster when using
+         64 KiB block instead of 16 × 4 KiB sectors.
+
+         Please note that some tools/drivers/filesystems may not work with
+         4096 B erase size (e.g. UBIFS requires 15 KiB as a minimum).
+
 config SPI_FLASH_DATAFLASH
        bool "AT45xxx DataFlash support"
        depends on SPI_FLASH && DM_SPI_FLASH
@@ -113,4 +135,16 @@ config SPI_FLASH_MTD
 
          If unsure, say N
 
+if SPL
+
+config SPL_SPI_SUNXI
+       bool "Support for SPI Flash on Allwinner SoCs in SPL"
+       depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUNXI_H3_H5 || MACH_SUN50I
+       ---help---
+       Enable support for SPI Flash. This option allows SPL to read from
+       sunxi SPI Flash. It uses the same method as the boot ROM, so does
+       not need any extra configuration.
+
+endif
+
 endmenu # menu "SPI Flash Support"