Matias Bjørling | cd9e980 | 2015-10-28 19:54:55 +0100 | [diff] [blame] | 1 | # |
| 2 | # Open-Channel SSD NVM configuration |
| 3 | # |
| 4 | |
| 5 | menuconfig NVM |
| 6 | bool "Open-Channel SSD target support" |
Geert Uytterhoeven | e105ddb | 2016-09-16 14:25:03 +0200 | [diff] [blame] | 7 | depends on BLOCK && HAS_DMA |
Matias Bjørling | cd9e980 | 2015-10-28 19:54:55 +0100 | [diff] [blame] | 8 | help |
| 9 | Say Y here to get to enable Open-channel SSDs. |
| 10 | |
| 11 | Open-Channel SSDs implement a set of extension to SSDs, that |
| 12 | exposes direct access to the underlying non-volatile memory. |
| 13 | |
| 14 | If you say N, all options in this submenu will be skipped and disabled |
| 15 | only do this if you know what you are doing. |
| 16 | |
| 17 | if NVM |
| 18 | |
| 19 | config NVM_DEBUG |
| 20 | bool "Open-Channel SSD debugging support" |
Matias Bjørling | 4158624 | 2015-12-06 11:25:51 +0100 | [diff] [blame] | 21 | default n |
Matias Bjørling | cd9e980 | 2015-10-28 19:54:55 +0100 | [diff] [blame] | 22 | ---help--- |
| 23 | Exposes a debug management interface to create/remove targets at: |
| 24 | |
| 25 | /sys/module/lnvm/parameters/configure_debug |
| 26 | |
| 27 | It is required to create/remove targets without IOCTLs. |
| 28 | |
Matias Bjørling | ae1519e | 2015-10-28 19:54:57 +0100 | [diff] [blame] | 29 | config NVM_RRPC |
| 30 | tristate "Round-robin Hybrid Open-Channel SSD target" |
| 31 | ---help--- |
| 32 | Allows an open-channel SSD to be exposed as a block device to the |
| 33 | host. The target is implemented using a linear mapping table and |
| 34 | cost-based garbage collection. It is optimized for 4K IO sizes. |
| 35 | |
Javier González | a4bd217 | 2017-04-15 20:55:50 +0200 | [diff] [blame^] | 36 | config NVM_PBLK |
| 37 | tristate "Physical Block Device Open-Channel SSD target" |
| 38 | ---help--- |
| 39 | Allows an open-channel SSD to be exposed as a block device to the |
| 40 | host. The target assumes the device exposes raw flash and must be |
| 41 | explicitly managed by the host. |
| 42 | |
| 43 | Please note the disk format is considered EXPERIMENTAL for now. |
| 44 | |
Matias Bjørling | cd9e980 | 2015-10-28 19:54:55 +0100 | [diff] [blame] | 45 | endif # NVM |