summaryrefslogtreecommitdiffstats
path: root/include/block/nvme.h
diff options
context:
space:
mode:
authorKlaus Jensen2020-07-06 08:12:54 +0200
committerKlaus Jensen2020-09-02 08:48:50 +0200
commit46ac29c38bb45184db71dfbfbf5a31b3c12dbe29 (patch)
tree85823cc587b2bddcd5a40f095ea460bb595f49e4 /include/block/nvme.h
parenthw/block/nvme: add support for the asynchronous event request command (diff)
downloadqemu-46ac29c38bb45184db71dfbfbf5a31b3c12dbe29.tar.gz
qemu-46ac29c38bb45184db71dfbfbf5a31b3c12dbe29.tar.xz
qemu-46ac29c38bb45184db71dfbfbf5a31b3c12dbe29.zip
hw/block/nvme: move NvmeFeatureVal into hw/block/nvme.h
The NvmeFeatureVal does not belong with the spec-related data structures in include/block/nvme.h that is shared between the block-level nvme driver and the emulated nvme device. Move it into the nvme device specific header file as it is the only user of the structure. Also, remove the unused members. Signed-off-by: Klaus Jensen <k.jensen@samsung.com> Reviewed-by: Dmitry Fomichev <dmitry.fomichev@wdc.com> Reviewed-by: Maxim Levitsky <mlevitsk@redhat.com> Message-Id: <20200706061303.246057-10-its@irrelevant.dk>
Diffstat (limited to 'include/block/nvme.h')
-rw-r--r--include/block/nvme.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/block/nvme.h b/include/block/nvme.h
index 87fa60b8bd..58e0a073f6 100644
--- a/include/block/nvme.h
+++ b/include/block/nvme.h
@@ -866,23 +866,6 @@ enum NvmeIdCtrlLpa {
#define NVME_CTRL_SGLS_MPTR_SGL (0x1 << 19)
#define NVME_CTRL_SGLS_ADDR_OFFSET (0x1 << 20)
-typedef struct NvmeFeatureVal {
- uint32_t arbitration;
- uint32_t power_mgmt;
- struct {
- uint16_t temp_thresh_hi;
- uint16_t temp_thresh_low;
- };
- uint32_t err_rec;
- uint32_t volatile_wc;
- uint32_t num_queues;
- uint32_t int_coalescing;
- uint32_t *int_vector_config;
- uint32_t write_atomicity;
- uint32_t async_config;
- uint32_t sw_prog_marker;
-} NvmeFeatureVal;
-
#define NVME_ARB_AB(arb) (arb & 0x7)
#define NVME_ARB_LPW(arb) ((arb >> 8) & 0xff)
#define NVME_ARB_MPW(arb) ((arb >> 16) & 0xff)