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 "hw/virtio.h"
18 #include "hw/block-common.h"
19 #ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
20 #include "dataplane/virtio-blk.h"
23 #define TYPE_VIRTIO_BLK "virtio-blk"
24 #define VIRTIO_BLK(obj) \
25 OBJECT_CHECK(VirtIOBlock, (obj), TYPE_VIRTIO_BLK)
27 /* from Linux's linux/virtio_blk.h */
29 /* The ID for virtio_block */
30 #define VIRTIO_ID_BLOCK 2
33 #define VIRTIO_BLK_F_BARRIER 0 /* Does host support barriers? */
34 #define VIRTIO_BLK_F_SIZE_MAX 1 /* Indicates maximum segment size */
35 #define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */
36 #define VIRTIO_BLK_F_GEOMETRY 4 /* Indicates support of legacy geometry */
37 #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */
38 #define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/
39 #define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */
40 /* #define VIRTIO_BLK_F_IDENTIFY 8 ATA IDENTIFY supported, DEPRECATED */
41 #define VIRTIO_BLK_F_WCE 9 /* write cache enabled */
42 #define VIRTIO_BLK_F_TOPOLOGY 10 /* Topology information is available */
43 #define VIRTIO_BLK_F_CONFIG_WCE 11 /* write cache configurable */
45 #define VIRTIO_BLK_ID_BYTES 20 /* ID string length */
47 struct virtio_blk_config
56 uint8_t physical_block_exp
;
57 uint8_t alignment_offset
;
63 /* These two define direction. */
64 #define VIRTIO_BLK_T_IN 0
65 #define VIRTIO_BLK_T_OUT 1
67 /* This bit says it's a scsi command, not an actual read or write. */
68 #define VIRTIO_BLK_T_SCSI_CMD 2
70 /* Flush the volatile write cache */
71 #define VIRTIO_BLK_T_FLUSH 4
73 /* return the device ID string */
74 #define VIRTIO_BLK_T_GET_ID 8
76 /* Barrier before this op. */
77 #define VIRTIO_BLK_T_BARRIER 0x80000000
79 /* This is the first element of the read scatter-gather list. */
80 struct virtio_blk_outhdr
86 /* Sector (ie. 512 byte offset) */
90 #define VIRTIO_BLK_S_OK 0
91 #define VIRTIO_BLK_S_IOERR 1
92 #define VIRTIO_BLK_S_UNSUPP 2
94 /* This is the last element of the write scatter-gather list */
95 struct virtio_blk_inhdr
100 /* SCSI pass-through header */
101 struct virtio_scsi_inhdr
118 typedef struct VirtIOBlock
{
119 VirtIODevice parent_obj
;
120 BlockDriverState
*bs
;
126 unsigned short sector_mask
;
127 VMChangeStateEntry
*change
;
128 #ifdef CONFIG_VIRTIO_BLK_DATA_PLANE
129 VirtIOBlockDataPlane
*dataplane
;
133 #define DEFINE_VIRTIO_BLK_FEATURES(_state, _field) \
134 DEFINE_VIRTIO_COMMON_FEATURES(_state, _field)
137 #define DEFINE_VIRTIO_BLK_PROPERTIES(_state, _field) \
138 DEFINE_BLOCK_PROPERTIES(_state, _field.conf), \
139 DEFINE_BLOCK_CHS_PROPERTIES(_state, _field.conf), \
140 DEFINE_PROP_STRING("serial", _state, _field.serial), \
141 DEFINE_PROP_BIT("config-wce", _state, _field.config_wce, 0, true), \
142 DEFINE_PROP_BIT("scsi", _state, _field.scsi, 0, true)
144 #define DEFINE_VIRTIO_BLK_PROPERTIES(_state, _field) \
145 DEFINE_BLOCK_PROPERTIES(_state, _field.conf), \
146 DEFINE_BLOCK_CHS_PROPERTIES(_state, _field.conf), \
147 DEFINE_PROP_STRING("serial", _state, _field.serial), \
148 DEFINE_PROP_BIT("config-wce", _state, _field.config_wce, 0, true)
149 #endif /* __linux__ */
151 void virtio_blk_set_conf(DeviceState
*dev
, VirtIOBlkConf
*blk
);