4 * Copyright IBM, Corp. 2007
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef QEMU_VIRTIO_BLK_H
15 #define QEMU_VIRTIO_BLK_H
17 #include "standard-headers/linux/virtio_blk.h"
18 #include "hw/virtio/virtio.h"
19 #include "hw/block/block.h"
20 #include "sysemu/iothread.h"
21 #include "sysemu/block-backend.h"
23 #define TYPE_VIRTIO_BLK "virtio-blk-device"
24 #define VIRTIO_BLK(obj) \
25 OBJECT_CHECK(VirtIOBlock, (obj), TYPE_VIRTIO_BLK)
27 /* This is the last element of the write scatter-gather list */
28 struct virtio_blk_inhdr
38 uint32_t request_merging
;
42 uint32_t max_discard_sectors
;
43 uint32_t max_write_zeroes_sectors
;
44 bool x_enable_wce_if_config_wce
;
47 struct VirtIOBlockDataPlane
;
49 struct VirtIOBlockReq
;
50 typedef struct VirtIOBlock
{
51 VirtIODevice parent_obj
;
56 unsigned short sector_mask
;
58 VMChangeStateEntry
*change
;
59 bool dataplane_disabled
;
60 bool dataplane_started
;
61 struct VirtIOBlockDataPlane
*dataplane
;
62 uint64_t host_features
;
66 typedef struct VirtIOBlockReq
{
67 VirtQueueElement elem
;
71 struct virtio_blk_inhdr
*in
;
72 struct virtio_blk_outhdr out
;
75 struct VirtIOBlockReq
*next
;
76 struct VirtIOBlockReq
*mr_next
;
80 #define VIRTIO_BLK_MAX_MERGE_REQS 32
82 typedef struct MultiReqBuffer
{
83 VirtIOBlockReq
*reqs
[VIRTIO_BLK_MAX_MERGE_REQS
];
84 unsigned int num_reqs
;
88 bool virtio_blk_handle_vq(VirtIOBlock
*s
, VirtQueue
*vq
);