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
40 uint32_t request_merging
;
43 struct VirtIOBlockDataPlane
;
45 struct VirtIOBlockReq
;
46 typedef struct VirtIOBlock
{
47 VirtIODevice parent_obj
;
53 unsigned short sector_mask
;
55 VMChangeStateEntry
*change
;
56 bool dataplane_disabled
;
57 bool dataplane_started
;
58 struct VirtIOBlockDataPlane
*dataplane
;
61 typedef struct VirtIOBlockReq
{
62 VirtQueueElement elem
;
65 struct virtio_blk_inhdr
*in
;
66 struct virtio_blk_outhdr out
;
69 struct VirtIOBlockReq
*next
;
70 struct VirtIOBlockReq
*mr_next
;
74 #define VIRTIO_BLK_MAX_MERGE_REQS 32
76 typedef struct MultiReqBuffer
{
77 VirtIOBlockReq
*reqs
[VIRTIO_BLK_MAX_MERGE_REQS
];
78 unsigned int num_reqs
;
82 void virtio_blk_init_request(VirtIOBlock
*s
, VirtIOBlockReq
*req
);
83 void virtio_blk_free_request(VirtIOBlockReq
*req
);
85 void virtio_blk_handle_request(VirtIOBlockReq
*req
, MultiReqBuffer
*mrb
);
87 void virtio_blk_submit_multireq(BlockBackend
*blk
, MultiReqBuffer
*mrb
);
89 void virtio_blk_handle_vq(VirtIOBlock
*s
, VirtQueue
*vq
);