Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. if MTD_SPI_NOR
  8. config MTD_SPI_NOR_USE_4K_SECTORS
  9. bool "Use small 4096 B erase sectors"
  10. default y
  11. help
  12. Many flash memories support erasing small (4096 B) sectors. Depending
  13. on the usage this feature may provide performance gain in comparison
  14. to erasing whole blocks (32/64 KiB).
  15. Changing a small part of the flash's contents is usually faster with
  16. small sectors. On the other hand erasing should be faster when using
  17. 64 KiB block instead of 16 × 4 KiB sectors.
  18. Please note that some tools/drivers/filesystems may not work with
  19. 4096 B erase size (e.g. UBIFS requires 15 KiB as a minimum).
  20. config SPI_FSL_QUADSPI
  21. tristate "Freescale Quad SPI controller"
  22. depends on ARCH_MXC
  23. help
  24. This enables support for the Quad SPI controller in master mode.
  25. We only connect the NOR to this controller now.
  26. endif # MTD_SPI_NOR