Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. menu "MTD Support"
  2. config MTD
  3. bool "Enable Driver Model for MTD drivers"
  4. depends on DM
  5. help
  6. Enable driver model for Memory Technology Devices (MTD), such as
  7. flash, RAM and similar chips, often used for solid state file
  8. systems on embedded devices.
  9. config MTD_NOR_FLASH
  10. bool "Enable parallel NOR flash support"
  11. help
  12. Enable support for parallel NOR flash.
  13. config CFI_FLASH
  14. bool "Enable Driver Model for CFI Flash driver"
  15. depends on MTD
  16. help
  17. The Common Flash Interface specification was developed by Intel,
  18. AMD and other flash manufactures. It provides a universal method
  19. for probing the capabilities of flash devices. If you wish to
  20. support any device that is CFI-compliant, you need to enable this
  21. option. Visit <http://www.amd.com/products/nvd/overview/cfi.html>
  22. for more information on CFI.
  23. config ALTERA_QSPI
  24. bool "Altera Generic Quad SPI Controller"
  25. depends on MTD
  26. help
  27. This enables access to Altera EPCQ/EPCS flash chips using the
  28. Altera Generic Quad SPI Controller. The controller converts SPI
  29. NOR flash to parallel flash interface. Please find details on the
  30. "Embedded Peripherals IP User Guide" of Altera.
  31. config FLASH_PIC32
  32. bool "Microchip PIC32 Flash driver"
  33. depends on MACH_PIC32 && MTD
  34. help
  35. This enables access to Microchip PIC32 internal non-CFI flash
  36. chips through PIC32 Non-Volatile-Memory Controller.
  37. config RENESAS_RPC_HF
  38. bool "Renesas RCar Gen3 RPC Hyperflash driver"
  39. depends on RCAR_GEN3 && MTD
  40. help
  41. This enables access to Hyperflash memory through the Renesas
  42. RCar Gen3 RPC controller.
  43. endmenu
  44. source "drivers/mtd/nand/Kconfig"
  45. source "drivers/mtd/spi/Kconfig"
  46. source "drivers/mtd/ubi/Kconfig"