#ifndef __NVME_INTEL_H__
#define __NVME_INTEL_H__
#include <stdint.h>
#include <stddef.h>
enum nvme_intel_feat {
NVME_INTEL_FEAT_MAX_LBA = 0xC1,
NVME_INTEL_FEAT_NATIVE_MAX_LBA = 0xC2,
NVME_INTEL_FEAT_POWER_GOVERNOR_SETTING = 0xC6,
NVME_INTEL_FEAT_SMBUS_ADDRESS = 0xC8,
NVME_INTEL_FEAT_LED_PATTERN = 0xC9,
NVME_INTEL_FEAT_RESET_TIMED_WORKLOAD_COUNTERS = 0xD5,
NVME_INTEL_FEAT_LATENCY_TRACKING = 0xE2,
};
enum nvme_intel_set_max_lba_command_status_code {
NVME_INTEL_EXCEEDS_AVAILABLE_CAPACITY = 0xC0,
NVME_INTEL_SMALLER_THAN_MIN_LIMIT = 0xC1,
NVME_INTEL_SMALLER_THAN_NS_REQUIREMENTS = 0xC2,
};
enum nvme_intel_log_page {
NVME_INTEL_LOG_PAGE_DIR = 0xC0,
NVME_INTEL_LOG_READ_CMD_LATENCY = 0xC1,
NVME_INTEL_LOG_WRITE_CMD_LATENCY = 0xC2,
NVME_INTEL_LOG_TEMPERATURE = 0xC5,
NVME_INTEL_LOG_SMART = 0xCA,
NVME_INTEL_MARKETING_DESCRIPTION = 0xDD,
};
enum nvme_intel_smart_attribute_code {
NVME_INTEL_SMART_PROGRAM_FAIL_COUNT = 0xAB,
NVME_INTEL_SMART_ERASE_FAIL_COUNT = 0xAC,
NVME_INTEL_SMART_WEAR_LEVELING_COUNT = 0xAD,
NVME_INTEL_SMART_E2E_ERROR_COUNT = 0xB8,
NVME_INTEL_SMART_CRC_ERROR_COUNT = 0xC7,
NVME_INTEL_SMART_MEDIA_WEAR = 0xE2,
NVME_INTEL_SMART_HOST_READ_PERCENTAGE = 0xE3,
NVME_INTEL_SMART_TIMER = 0xE4,
NVME_INTEL_SMART_THERMAL_THROTTLE_STATUS = 0xEA,
NVME_INTEL_SMART_RETRY_BUFFER_OVERFLOW_COUNTER = 0xF0,
NVME_INTEL_SMART_PLL_LOCK_LOSS_COUNT = 0xF3,
NVME_INTEL_SMART_NAND_BYTES_WRITTEN = 0xF4,
NVME_INTEL_SMART_HOST_BYTES_WRITTEN = 0xF5,
};
struct nvme_intel_log_page_dir {
uint8_t version[2];
uint8_t reserved[384];
uint8_t read_latency_log_len;
uint8_t reserved2;
uint8_t write_latency_log_len;
uint8_t reserved3[5];
uint8_t temperature_statistics_log_len;
uint8_t reserved4[9];
uint8_t smart_log_len;
uint8_t reserved5[37];
uint8_t marketing_description_log_len;
uint8_t reserved6[69];
};
nvme_static_assert(sizeof(struct nvme_intel_log_page_dir) == 512,
"Incorrect size");
struct nvme_intel_rw_latency_page {
uint16_t major_revison;
uint16_t minor_revison;
uint32_t buckets_32us[32];
uint32_t buckets_1ms[31];
uint32_t buckets_32ms[31];
};
nvme_static_assert(sizeof(struct nvme_intel_rw_latency_page) == 380,
"Incorrect size");
struct nvme_intel_temperature_page {
uint64_t current_temperature;
uint64_t shutdown_flag_last;
uint64_t shutdown_flag_life;
uint64_t highest_temperature;
uint64_t lowest_temperature;
uint64_t reserved[5];
uint64_t specified_max_op_temperature;
uint64_t reserved2;
uint64_t specified_min_op_temperature;
uint64_t estimated_offset;
};
nvme_static_assert(sizeof(struct nvme_intel_temperature_page) == 112,
"Incorrect size");
struct nvme_intel_smart_attribute {
uint8_t code;
uint8_t reserved[2];
uint8_t normalized_value;
uint8_t reserved2;
uint8_t raw_value[6];
uint8_t reserved3;
};
struct __attribute__((packed)) nvme_intel_smart_information_page {
struct nvme_intel_smart_attribute attributes[13];
};
nvme_static_assert(sizeof(struct nvme_intel_smart_information_page) == 156,
"Incorrect size");
union nvme_intel_feat_power_governor {
uint32_t raw;
struct {
uint32_t power_governor_setting : 8;
uint32_t reserved : 24;
} bits;
};
nvme_static_assert(sizeof(union nvme_intel_feat_power_governor) == 4,
"Incorrect size");
union nvme_intel_feat_smbus_address {
uint32_t raw;
struct {
uint32_t reserved : 1;
uint32_t smbus_controller_address : 8;
uint32_t reserved2 : 23;
} bits;
};
nvme_static_assert(sizeof(union nvme_intel_feat_smbus_address) == 4,
"Incorrect size");
union nvme_intel_feat_led_pattern {
uint32_t raw;
struct {
uint32_t feature_options : 24;
uint32_t value : 8;
} bits;
};
nvme_static_assert(sizeof(union nvme_intel_feat_led_pattern) == 4,
"Incorrect size");
union nvme_intel_feat_reset_timed_workload_counters {
uint32_t raw;
struct {
uint32_t reset : 1;
uint32_t reserved : 31;
} bits;
};
nvme_static_assert(sizeof(union nvme_intel_feat_reset_timed_workload_counters) == 4,
"Incorrect size");
union nvme_intel_feat_latency_tracking {
uint32_t raw;
struct {
uint32_t enable : 32;
} bits;
};
nvme_static_assert(sizeof(union nvme_intel_feat_latency_tracking) == 4,
"Incorrect size");
struct nvme_intel_marketing_description_page {
uint8_t marketing_product[512];
};
nvme_static_assert(sizeof(struct nvme_intel_marketing_description_page) == 512,
"Incorrect size");
#endif