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
20 /* from Linux's linux/virtio_blk.h */
22 /* The ID for virtio_block */
23 #define VIRTIO_ID_BLOCK 2
26 #define VIRTIO_BLK_F_BARRIER 0 /* Does host support barriers? */
27 #define VIRTIO_BLK_F_SIZE_MAX 1 /* Indicates maximum segment size */
28 #define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */
29 #define VIRTIO_BLK_F_GEOMETRY 4 /* Indicates support of legacy geometry */
30 #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */
31 #define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/
32 #define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */
33 #define VIRTIO_BLK_F_IDENTIFY 8 /* ATA IDENTIFY supported */
35 #define VIRTIO_BLK_ID_LEN 256 /* length of identify u16 array */
36 #define VIRTIO_BLK_ID_SN 10 /* start of char * serial# */
37 #define VIRTIO_BLK_ID_SN_BYTES 20 /* length in bytes of serial# */
39 struct virtio_blk_config
47 uint32_t _blk_size
; /* structure pad, currently unused */
48 uint16_t identify
[VIRTIO_BLK_ID_LEN
];
49 } __attribute__((packed
));
51 /* These two define direction. */
52 #define VIRTIO_BLK_T_IN 0
53 #define VIRTIO_BLK_T_OUT 1
55 /* This bit says it's a scsi command, not an actual read or write. */
56 #define VIRTIO_BLK_T_SCSI_CMD 2
58 /* Barrier before this op. */
59 #define VIRTIO_BLK_T_BARRIER 0x80000000
61 /* This is the first element of the read scatter-gather list. */
62 struct virtio_blk_outhdr
68 /* Sector (ie. 512 byte offset) */
72 #define VIRTIO_BLK_S_OK 0
73 #define VIRTIO_BLK_S_IOERR 1
74 #define VIRTIO_BLK_S_UNSUPP 2
76 /* This is the last element of the write scatter-gather list */
77 struct virtio_blk_inhdr
82 /* SCSI pass-through header */
83 struct virtio_scsi_inhdr