Changes between Initial Version and Version 1 of NVMe_Support


Ignore:
Timestamp:
Apr 12, 2016, 11:39:25 PM (9 years ago)
Author:
Alex Samorukov
Comment:

initial version

Legend:

Unmodified
Added
Removed
Modified
  • NVMe_Support

    v1 v1  
     1= Smartmontools NVMe support =
     2[[TOC]]
     3== About NVMe
     4VM Express, NVMe, or Non-Volatile Memory Host Controller Interface Specification (NVMHCI), is a logical device interface specification for accessing non-volatile storage media attached via PCI Express (PCIe) bus. Some links related to the standard and vendor-specific implementations provided below:
     5- [http://nvmexpress.org/specifications/ Official specifications]
     6- [http://www.intel.com/content/dam/www/public/us/en/documents/product-specifications/ssd-dc-p3608-spec.pdf Intel NVMe documentation] with  Intel-specific log pages (CAh, C5h, DDh, C1h/C2h).
     7- [http://ocz.com/enterprise/download/guides/ZDrive_6000_Series_Datasheet.pdf OCZ Z-Drive] specification, with vendor-specific smart log page (E0h)
     8== Development notes
     9Development and debugging could be performed using [https://github.com/OpenChannelSSD/qemu-nvme/ QEMU fork] which can emulates NVMe device with most of the features supported, including SMART log pages, namespaces, etc. Tested with Linux and FreeBSD, full list of the options could be found in the [https://github.com/OpenChannelSSD/qemu-nvme/blob/master/hw/block/nvme.c source code].
     10== Linux OS NVMe support
     11Smartmontools supports NVMe in Linux OS using using standard ioctl API. Other utilities to manage NVMe devices in Linux:
     12- [https://github.com/linux-nvme/nvme-cli nvme-cli] - NVM-Express user space tool for Linux
     13- [https://github.com/xnox/nvme-user nvme-user] - another open source user space NVMe management utility
     14== FreeBSD NVMe support
     15Smartmontools supports NVMe in the FreeBSD using ioctl API. NVMe devices in the FreeBSD can be managed using [https://www.freebsd.org/cgi/man.cgi?query=nvmecontrol nvmecontrol] utility.
     16== Windows NVMe support
     17- [https://svn.openfabrics.org/svnrepo/nvmewin/ OpenFabrics NVMe driver] for Windows. It provides a NVME_PASS_THROUGH I/O-control which is reportedly also supported by the NVMe Windows drivers from Intel and OCZ.
     18- [https://msdn.microsoft.com/en-us/library/windows/hardware/dn932068.aspx IOCTL_STORAGE_PROTOCOL_COMMAND] - NVMe pass-through I/O-control supported by the generic NVMe driver for Windows (Stornvme.sys). Requires Windows 10.
     19- [http://naraeon.net/en/latest-nvme-tools Naraeon NVMe Tools] windows [https://github.com/ebangin127/nvmetools open source] NVMe SMART / Health Information Log Viewer on Windows
     20  - [http://naraeon.net/en/archives/570 Samsung 950 Pro’s NVMe Commands]
     21  - [http://naraeon.net/en/archives/925 Intel 750 Series’ NVMe Commands]
     22- Intel® [https://downloadcenter.intel.com/download/23931/Intel-Solid-State-Drive-Data-Center-Tool Solid-State Drive Data Center Tool]
     23
     24== OS X NVMe support
     25Smartmontools currently not is not supporting monitoring of the NVMe devices on OSX/Darwin.
     26- Kind of official support added from 10.10.3, closes source, not documented, only apple-branded NVMe devices are supported. Implements NVMeSMARTClient library, however API is not documented.
     27- [http://www.macvidcards.com/nvme-driver1.html MacVidCards NVMe driver] - third party closed-source driver, coming with closed-source nvme-cli management utility, which is based on open-source one.
     28== Solaris NVMe support
     29Smartmontools currently not is not supporting monitoring of the NVMe devices on Solaris.
     30- [https://docs.oracle.com/cd/E36784_01/html/E36871/nvmeadm-1m.html nvmeadm] - NVM Express controller command line interface, interface is unknown
     31- [https://www.illumos.org/issues/4053 Illumos NVMe driver], [https://www.illumos.org/issues/6235 no management interface/tool] yet implemented