Kconfig 982 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # linux/drivers/mtd/onenand/Kconfig
  3. #
  4. menu "OneNAND Flash Device Drivers (EXPERIMENTAL)"
  5. depends on MTD != n && EXPERIMENTAL
  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 accidentaly due to device wear or something else.
  22. config MTD_ONENAND_OMAP
  23. tristate "OneNAND Flash device on OMAP board"
  24. depends on ARCH_OMAP && MTD_ONENAND
  25. help
  26. Support for OneNAND flash on TI OMAP board.
  27. endmenu