Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Open-Channel SSD NVM configuration
  3. #
  4. menuconfig NVM
  5. bool "Open-Channel SSD target support"
  6. depends on BLOCK && PCI
  7. select BLK_DEV_NVME
  8. help
  9. Say Y here to get to enable Open-channel SSDs.
  10. Open-Channel SSDs implement a set of extension to SSDs, that
  11. exposes direct access to the underlying non-volatile memory.
  12. If you say N, all options in this submenu will be skipped and disabled
  13. only do this if you know what you are doing.
  14. if NVM
  15. config NVM_PBLK
  16. tristate "Physical Block Device Open-Channel SSD target"
  17. help
  18. Allows an open-channel SSD to be exposed as a block device to the
  19. host. The target assumes the device exposes raw flash and must be
  20. explicitly managed by the host.
  21. Please note the disk format is considered EXPERIMENTAL for now.
  22. if NVM_PBLK
  23. config NVM_PBLK_DEBUG
  24. bool "PBlk Debug Support"
  25. default n
  26. help
  27. Enables debug support for pblk. This includes extra checks, more
  28. vocal error messages, and extra tracking fields in the pblk sysfs
  29. entries.
  30. endif # NVM_PBLK_DEBUG
  31. endif # NVM