Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Feb 2018 16:49:28 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r328688 - stable/11/sys/dev/nvme
Message-ID:  <201802011649.w11GnSJ4026621@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Thu Feb  1 16:49:28 2018
New Revision: 328688
URL: https://svnweb.freebsd.org/changeset/base/328688

Log:
  MFC r322901 (by imp): Add feature codes from NVMe 1.3 specification:
  
  o Automomous Power State Transition
  o Host Memory Buffer
  o Timestamp
  o Keep Alive Timer
  o Host Controlled Thermal Management
  o Non-Operational Power State Config
  
  Also note that feature codes 0x78-0x7f are reserved for the NVMe
  Management Interface.

Modified:
  stable/11/sys/dev/nvme/nvme.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/nvme/nvme.h
==============================================================================
--- stable/11/sys/dev/nvme/nvme.h	Thu Feb  1 16:48:40 2018	(r328687)
+++ stable/11/sys/dev/nvme/nvme.h	Thu Feb  1 16:49:28 2018	(r328688)
@@ -397,7 +397,14 @@ enum nvme_feature {
 	NVME_FEAT_INTERRUPT_VECTOR_CONFIGURATION = 0x09,
 	NVME_FEAT_WRITE_ATOMICITY		= 0x0A,
 	NVME_FEAT_ASYNC_EVENT_CONFIGURATION	= 0x0B,
-	/* 0x0C-0x7F - reserved */
+	NVME_FEAT_AUTONOMOUS_POWER_STATE_TRANSITION = 0x0C,
+	NVME_FEAT_HOST_MEMORY_BUFFER		= 0x0D,
+	NVME_FEAT_TIMESTAMP			= 0x0E,
+	NVME_FEAT_KEEP_ALIVE_TIMER		= 0x0F,
+	NVME_FEAT_HOST_CONTROLLED_THERMAL_MGMT	= 0x10,
+	NVME_FEAT_NON_OP_POWER_STATE_CONFIG	= 0x11,
+	/* 0x12-0x77 - reserved */
+	/* 0x78-0x7f - NVMe Management Interface */
 	NVME_FEAT_SOFTWARE_PROGRESS_MARKER	= 0x80,
 	/* 0x81-0xBF - command set specific (reserved) */
 	/* 0xC0-0xFF - vendor specific */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802011649.w11GnSJ4026621>