NetBSD/sbin/nvmectl/nvme.h

144 lines
5.0 KiB
C

/* $NetBSD: nvme.h,v 1.1 2016/06/04 16:29:35 nonaka Exp $ */
/*-
* Copyright (C) 2012-2013 Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD: head/sys/dev/nvme/nvme.h 296617 2016-03-10 17:13:10Z mav $
*/
#ifndef __NVME_H__
#define __NVME_H__
#define NVME_MAX_XFER_SIZE MAXPHYS
/* Get/Set Features */
#define NVME_FEAT_ARBITRATION 0x01
#define NVME_FEAT_POWER_MANAGEMENT 0x02
#define NVME_FEAT_LBA_RANGE_TYPE 0x03
#define NVME_FEAT_TEMPERATURE_THRESHOLD 0x04
#define NVME_FEAT_ERROR_RECOVERY 0x05
#define NVME_FEAT_VOLATILE_WRITE_CACHE 0x06
#define NVME_FEAT_NUMBER_OF_QUEUES 0x07
#define NVME_FEAT_INTERRUPT_COALESCING 0x08
#define NVME_FEAT_INTERRUPT_VECTOR_CONFIGURATION 0x09
#define NVME_FEAT_WRITE_ATOMICITY_NORMAL 0x0a
#define NVME_FEAT_ASYNC_EVENT_CONFIGURATION 0x0b
#define NVME_FEAT_AUTONOMOUS_POWER_STATE_TRANSITION 0x0c
#define NVME_FEAT_HOST_MEMORY_BUFFER 0x0d
/* NVM Command Set specific */
#define NVME_FEAT_SOFTWARE_PROGRESS_MARKER 0x80
#define NVME_FEAT_HOST_IDENTIFIER 0x81
#define NVME_FEAT_RESERVATION_NOTIFICATION_MASK 0x82
#define NVME_FEAT_RESERVATION_PERSISTANCE 0x83
/* Get Log Page */
#define NVME_LOG_ERROR 0x01
#define NVME_LOG_HEALTH_INFORMATION 0x02
#define NVME_LOG_FIRMWARE_SLOT 0x03
#define NVME_LOG_CHANGED_NAMESPACE_LIST 0x04
#define NVME_LOG_COMMAND_EFFECTS_LOG 0x05
#define NVME_LOG_RESERVATION_NOTIFICATION 0x80
/* Error Information Log (Log Identifier 01h) */
struct nvme_error_information_entry {
uint64_t error_count;
uint16_t sqid;
uint16_t cid;
uint16_t status;
uint16_t error_location;
uint64_t lba;
uint32_t nsid;
uint8_t vendor_specific;
uint8_t _reserved1[3];
uint64_t command_specific;
uint8_t reserved[24];
} __packed __aligned(4);
/* SMART / Health Information Log (Log Identifier 02h) */
struct nvme_health_information_page {
uint8_t critical_warning;
#define NVME_HEALTH_PAGE_CW_VOLATILE_MEMORY_BACKUP __BIT(4)
#define NVME_HEALTH_PAGE_CW_READ_ONLY __BIT(3)
#define NVME_HEALTH_PAGE_CW_DEVICE_RELIABLITY __BIT(2)
#define NVME_HEALTH_PAGE_CW_TEMPERTURE __BIT(1)
#define NVME_HEALTH_PAGE_CW_AVAIL_SPARE __BIT(0)
uint16_t composite_temperature;
uint8_t available_spare;
uint8_t available_spare_threshold;
uint8_t percentage_used;
uint8_t _reserved1[26];
uint64_t data_units_read[2];
uint64_t data_units_written[2];
uint64_t host_read_commands[2];
uint64_t host_write_commands[2];
uint64_t controller_busy_time[2];
uint64_t power_cycles[2];
uint64_t power_on_hours[2];
uint64_t unsafe_shutdowns[2];
uint64_t media_errors[2];
uint64_t num_error_info_log_entries[2];
uint32_t warning_composite_temperature_time;
uint32_t critical_composite_temperature_time;
uint16_t temperature_sensor[8];
uint8_t reserved[296];
} __packed __aligned(4);
/* Firmware Commit */
#define NVME_COMMIT_ACTION_REPLACE_NO_ACTIVATE 0
#define NVME_COMMIT_ACTION_REPLACE_ACTIVATE 1
#define NVME_COMMIT_ACTION_ACTIVATE_RESET 2
#define NVME_COMMIT_ACTION_ACTIVATE_NO_RESET 3
/* Firmware Slot Information (Log Identifier 03h) */
struct nvme_firmware_page {
uint8_t afi;
#define NVME_FW_PAGE_AFI_SLOT_RST __BITS(4, 6)
#define NVME_FW_PAGE_AFI_SLOT __BITS(0, 2)
uint8_t _reserved1[7];
uint64_t revision[7]; /* revisions for 7 slots */
uint8_t reserved[448];
} __packed __aligned(4);
/* Commands Supported and Effects (Log Identifier 05h) */
struct nvme_command_effeects_page {
uint32_t acs[256];
#define NVME_CE_PAGE_CS_CSE __BITS(16, 18)
#define NVME_CE_PAGE_CS_CCC __BIT(4)
#define NVME_CE_PAGE_CS_NIC __BIT(3)
#define NVME_CE_PAGE_CS_NCC __BIT(2)
#define NVME_CE_PAGE_CS_LBCC __BIT(1)
#define NVME_CE_PAGE_CS_CSUPP __BIT(0)
uint32_t iocs[256];
uint8_t reserved[2048];
} __packed __aligned(4);
#endif /* __NVME_H__ */