Merge branch 'master' into for-2.6.31
[pandora-kernel.git] / include / linux / virtio_blk.h
1 #ifndef _LINUX_VIRTIO_BLK_H
2 #define _LINUX_VIRTIO_BLK_H
3 /* This header is BSD licensed so anyone can use the definitions to implement
4  * compatible drivers/servers. */
5 #include <linux/types.h>
6 #include <linux/virtio_config.h>
7
8 /* The ID for virtio_block */
9 #define VIRTIO_ID_BLOCK 2
10
11 /* Feature bits */
12 #define VIRTIO_BLK_F_BARRIER    0       /* Does host support barriers? */
13 #define VIRTIO_BLK_F_SIZE_MAX   1       /* Indicates maximum segment size */
14 #define VIRTIO_BLK_F_SEG_MAX    2       /* Indicates maximum # of segments */
15 #define VIRTIO_BLK_F_GEOMETRY   4       /* Legacy geometry available  */
16 #define VIRTIO_BLK_F_RO         5       /* Disk is read-only */
17 #define VIRTIO_BLK_F_BLK_SIZE   6       /* Block size of disk is available*/
18 #define VIRTIO_BLK_F_SCSI       7       /* Supports scsi command passthru */
19
20 struct virtio_blk_config
21 {
22         /* The capacity (in 512-byte sectors). */
23         __u64 capacity;
24         /* The maximum segment size (if VIRTIO_BLK_F_SIZE_MAX) */
25         __u32 size_max;
26         /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */
27         __u32 seg_max;
28         /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */
29         struct virtio_blk_geometry {
30                 __u16 cylinders;
31                 __u8 heads;
32                 __u8 sectors;
33         } geometry;
34         /* block size of device (if VIRTIO_BLK_F_BLK_SIZE) */
35         __u32 blk_size;
36 } __attribute__((packed));
37
38 /* These two define direction. */
39 #define VIRTIO_BLK_T_IN         0
40 #define VIRTIO_BLK_T_OUT        1
41
42 /* This bit says it's a scsi command, not an actual read or write. */
43 #define VIRTIO_BLK_T_SCSI_CMD   2
44
45 /* Barrier before this op. */
46 #define VIRTIO_BLK_T_BARRIER    0x80000000
47
48 /* This is the first element of the read scatter-gather list. */
49 struct virtio_blk_outhdr
50 {
51         /* VIRTIO_BLK_T* */
52         __u32 type;
53         /* io priority. */
54         __u32 ioprio;
55         /* Sector (ie. 512 byte offset) */
56         __u64 sector;
57 };
58
59 struct virtio_scsi_inhdr {
60         __u32 errors;
61         __u32 data_len;
62         __u32 sense_len;
63         __u32 residual;
64 };
65
66 /* And this is the final byte of the write scatter-gather list. */
67 #define VIRTIO_BLK_S_OK         0
68 #define VIRTIO_BLK_S_IOERR      1
69 #define VIRTIO_BLK_S_UNSUPP     2
70 #endif /* _LINUX_VIRTIO_BLK_H */