]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/virtio_blk.h
be2net: Bug fix to avoid disabling bottom half during firmware upgrade.
[net-next-2.6.git] / include / linux / virtio_blk.h
CommitLineData
e467cde2
RR
1#ifndef _LINUX_VIRTIO_BLK_H
2#define _LINUX_VIRTIO_BLK_H
674bfc23
RR
3/* This header is BSD licensed so anyone can use the definitions to implement
4 * compatible drivers/servers. */
982f8184 5#include <linux/types.h>
e95646c3 6#include <linux/virtio_ids.h>
e467cde2
RR
7#include <linux/virtio_config.h>
8
e467cde2 9/* Feature bits */
a586d4f6
RR
10#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 */
48e4043d 13#define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */
3ef53609 14#define VIRTIO_BLK_F_RO 5 /* Disk is read-only */
066f4d82 15#define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/
1cde26f9 16#define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */
f1b0ef06 17#define VIRTIO_BLK_F_FLUSH 9 /* Cache flush command support */
69740c8b 18#define VIRTIO_BLK_F_TOPOLOGY 10 /* Topology information is available */
1d589bb1 19
1842f23c 20struct virtio_blk_config {
a586d4f6 21 /* The capacity (in 512-byte sectors). */
7757f09c 22 __u64 capacity;
a586d4f6 23 /* The maximum segment size (if VIRTIO_BLK_F_SIZE_MAX) */
7757f09c 24 __u32 size_max;
a586d4f6 25 /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */
7757f09c 26 __u32 seg_max;
48e4043d
RH
27 /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */
28 struct virtio_blk_geometry {
7757f09c 29 __u16 cylinders;
48e4043d
RH
30 __u8 heads;
31 __u8 sectors;
32 } geometry;
69740c8b 33
066f4d82
CB
34 /* block size of device (if VIRTIO_BLK_F_BLK_SIZE) */
35 __u32 blk_size;
69740c8b
CH
36
37 /* the next 4 entries are guarded by VIRTIO_BLK_F_TOPOLOGY */
38 /* exponent for physical block per logical block. */
39 __u8 physical_block_exp;
40 /* alignment offset in logical blocks. */
41 __u8 alignment_offset;
42 /* minimum I/O size without performance penalty in logical blocks. */
43 __u16 min_io_size;
44 /* optimal sustained I/O size in logical blocks. */
45 __u32 opt_io_size;
46
a586d4f6 47} __attribute__((packed));
e467cde2 48
f1b0ef06
CH
49/*
50 * Command types
51 *
52 * Usage is a bit tricky as some bits are used as flags and some are not.
53 *
54 * Rules:
55 * VIRTIO_BLK_T_OUT may be combined with VIRTIO_BLK_T_SCSI_CMD or
56 * VIRTIO_BLK_T_BARRIER. VIRTIO_BLK_T_FLUSH is a command of its own
57 * and may not be combined with any of the other flags.
58 */
59
e467cde2
RR
60/* These two define direction. */
61#define VIRTIO_BLK_T_IN 0
62#define VIRTIO_BLK_T_OUT 1
63
64/* This bit says it's a scsi command, not an actual read or write. */
65#define VIRTIO_BLK_T_SCSI_CMD 2
66
f1b0ef06
CH
67/* Cache flush command */
68#define VIRTIO_BLK_T_FLUSH 4
69
e467cde2
RR
70/* Barrier before this op. */
71#define VIRTIO_BLK_T_BARRIER 0x80000000
72
73/* This is the first element of the read scatter-gather list. */
1842f23c 74struct virtio_blk_outhdr {
e467cde2
RR
75 /* VIRTIO_BLK_T* */
76 __u32 type;
77 /* io priority. */
78 __u32 ioprio;
79 /* Sector (ie. 512 byte offset) */
80 __u64 sector;
e467cde2
RR
81};
82
1cde26f9
HR
83struct virtio_scsi_inhdr {
84 __u32 errors;
85 __u32 data_len;
86 __u32 sense_len;
87 __u32 residual;
88};
89
cb38fa23 90/* And this is the final byte of the write scatter-gather list. */
e467cde2
RR
91#define VIRTIO_BLK_S_OK 0
92#define VIRTIO_BLK_S_IOERR 1
93#define VIRTIO_BLK_S_UNSUPP 2
e467cde2 94#endif /* _LINUX_VIRTIO_BLK_H */