blob: fd294c56d5717d56bc0df1412d621cc059673e1e [file] [log] [blame]
Rusty Russelle467cde2007-10-22 11:03:38 +10001#ifndef _LINUX_VIRTIO_BLK_H
2#define _LINUX_VIRTIO_BLK_H
Rusty Russell674bfc22008-07-25 12:06:03 -05003/* This header is BSD licensed so anyone can use the definitions to implement
4 * compatible drivers/servers. */
Jaswinder Singh Rajput982f8182009-01-30 22:27:58 +05305#include <linux/types.h>
Christian Borntraegere95646c2009-09-30 11:17:21 +02006#include <linux/virtio_ids.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10007#include <linux/virtio_config.h>
8
Rusty Russelle467cde2007-10-22 11:03:38 +10009/* Feature bits */
Rusty Russella586d4f2008-02-04 23:49:56 -050010#define VIRTIO_BLK_F_BARRIER 0 /* Does host support barriers? */
11#define VIRTIO_BLK_F_SIZE_MAX 1 /* Indicates maximum segment size */
12#define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */
Ryan Harper48e40432008-04-16 13:56:37 -050013#define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */
Christian Borntraeger3ef53602008-05-16 11:17:03 +020014#define VIRTIO_BLK_F_RO 5 /* Disk is read-only */
Christian Borntraeger066f4d82008-05-29 11:08:26 +020015#define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020016#define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +020017#define VIRTIO_BLK_F_FLUSH 9 /* Cache flush command support */
john cooper1d589bb2009-06-09 14:41:40 +020018
Rusty Russell1842f232009-07-30 16:03:46 -060019struct virtio_blk_config {
Rusty Russella586d4f2008-02-04 23:49:56 -050020 /* The capacity (in 512-byte sectors). */
Christian Borntraeger7757f092008-05-29 11:10:01 +020021 __u64 capacity;
Rusty Russella586d4f2008-02-04 23:49:56 -050022 /* The maximum segment size (if VIRTIO_BLK_F_SIZE_MAX) */
Christian Borntraeger7757f092008-05-29 11:10:01 +020023 __u32 size_max;
Rusty Russella586d4f2008-02-04 23:49:56 -050024 /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */
Christian Borntraeger7757f092008-05-29 11:10:01 +020025 __u32 seg_max;
Ryan Harper48e40432008-04-16 13:56:37 -050026 /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */
27 struct virtio_blk_geometry {
Christian Borntraeger7757f092008-05-29 11:10:01 +020028 __u16 cylinders;
Ryan Harper48e40432008-04-16 13:56:37 -050029 __u8 heads;
30 __u8 sectors;
31 } geometry;
Christian Borntraeger066f4d82008-05-29 11:08:26 +020032 /* block size of device (if VIRTIO_BLK_F_BLK_SIZE) */
33 __u32 blk_size;
Rusty Russella586d4f2008-02-04 23:49:56 -050034} __attribute__((packed));
Rusty Russelle467cde2007-10-22 11:03:38 +100035
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +020036/*
37 * Command types
38 *
39 * Usage is a bit tricky as some bits are used as flags and some are not.
40 *
41 * Rules:
42 * VIRTIO_BLK_T_OUT may be combined with VIRTIO_BLK_T_SCSI_CMD or
43 * VIRTIO_BLK_T_BARRIER. VIRTIO_BLK_T_FLUSH is a command of its own
44 * and may not be combined with any of the other flags.
45 */
46
Rusty Russelle467cde2007-10-22 11:03:38 +100047/* These two define direction. */
48#define VIRTIO_BLK_T_IN 0
49#define VIRTIO_BLK_T_OUT 1
50
51/* This bit says it's a scsi command, not an actual read or write. */
52#define VIRTIO_BLK_T_SCSI_CMD 2
53
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +020054/* Cache flush command */
55#define VIRTIO_BLK_T_FLUSH 4
56
Rusty Russelle467cde2007-10-22 11:03:38 +100057/* Barrier before this op. */
58#define VIRTIO_BLK_T_BARRIER 0x80000000
59
60/* This is the first element of the read scatter-gather list. */
Rusty Russell1842f232009-07-30 16:03:46 -060061struct virtio_blk_outhdr {
Rusty Russelle467cde2007-10-22 11:03:38 +100062 /* VIRTIO_BLK_T* */
63 __u32 type;
64 /* io priority. */
65 __u32 ioprio;
66 /* Sector (ie. 512 byte offset) */
67 __u64 sector;
Rusty Russelle467cde2007-10-22 11:03:38 +100068};
69
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020070struct virtio_scsi_inhdr {
71 __u32 errors;
72 __u32 data_len;
73 __u32 sense_len;
74 __u32 residual;
75};
76
Rusty Russellcb38fa22008-05-02 21:50:45 -050077/* And this is the final byte of the write scatter-gather list. */
Rusty Russelle467cde2007-10-22 11:03:38 +100078#define VIRTIO_BLK_S_OK 0
79#define VIRTIO_BLK_S_IOERR 1
80#define VIRTIO_BLK_S_UNSUPP 2
Rusty Russelle467cde2007-10-22 11:03:38 +100081#endif /* _LINUX_VIRTIO_BLK_H */