Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # linux/drivers/mtd/onenand/Kconfig
  3. #
  4. menu "OneNAND Flash Device Drivers"
  5. depends on MTD != n
  6. config MTD_ONENAND
  7. tristate "OneNAND Device Support"
  8. depends on MTD
  9. help
  10. This enables support for accessing all type of OneNAND flash
  11. devices. For further information see
  12. <http://www.samsung.com/Products/Semiconductor/Flash/OneNAND_TM/index.htm>.
  13. config MTD_ONENAND_VERIFY_WRITE
  14. bool "Verify OneNAND page writes"
  15. depends on MTD_ONENAND
  16. help
  17. This adds an extra check when data is written to the flash. The
  18. OneNAND flash device internally checks only bits transitioning
  19. from 1 to 0. There is a rare possibility that even though the
  20. device thinks the write was successful, a bit could have been
  21. flipped accidentally due to device wear or something else.
  22. config MTD_ONENAND_GENERIC
  23. tristate "OneNAND Flash device via platform device driver"
  24. depends on MTD_ONENAND && ARM
  25. help
  26. Support for OneNAND flash via platform device driver.
  27. config MTD_ONENAND_OTP
  28. bool "OneNAND OTP Support"
  29. depends on MTD_ONENAND
  30. help
  31. One Block of the NAND Flash Array memory is reserved as
  32. a One-Time Programmable Block memory area.
  33. Also, 1st Block of NAND Flash Array can be used as OTP.
  34. The OTP block can be read, programmed and locked using the same
  35. operations as any other NAND Flash Array memory block.
  36. OTP block cannot be erased.
  37. OTP block is fully-guaranteed to be a valid block.
  38. endmenu