Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 1 | #ifndef _LINUX_VIRTIO_BLK_H |
| 2 | #define _LINUX_VIRTIO_BLK_H |
Rusty Russell | 674bfc2 | 2008-07-25 12:06:03 -0500 | [diff] [blame] | 3 | /* This header is BSD licensed so anyone can use the definitions to implement |
| 4 | * compatible drivers/servers. */ |
Jaswinder Singh Rajput | 982f818 | 2009-01-30 22:27:58 +0530 | [diff] [blame] | 5 | #include <linux/types.h> |
Christian Borntraeger | e95646c | 2009-09-30 11:17:21 +0200 | [diff] [blame] | 6 | #include <linux/virtio_ids.h> |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 7 | #include <linux/virtio_config.h> |
| 8 | |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 9 | /* Feature bits */ |
Rusty Russell | a586d4f | 2008-02-04 23:49:56 -0500 | [diff] [blame] | 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 */ |
Ryan Harper | 48e4043 | 2008-04-16 13:56:37 -0500 | [diff] [blame] | 13 | #define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ |
Christian Borntraeger | 3ef5360 | 2008-05-16 11:17:03 +0200 | [diff] [blame] | 14 | #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */ |
Christian Borntraeger | 066f4d8 | 2008-05-29 11:08:26 +0200 | [diff] [blame] | 15 | #define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/ |
Hannes Reinecke | 1cde26f | 2009-05-18 14:41:30 +0200 | [diff] [blame] | 16 | #define VIRTIO_BLK_F_SCSI 7 /* Supports scsi command passthru */ |
Christoph Hellwig | f1b0ef06 | 2009-09-17 19:57:42 +0200 | [diff] [blame] | 17 | #define VIRTIO_BLK_F_FLUSH 9 /* Cache flush command support */ |
Christoph Hellwig | 69740c8 | 2010-02-24 14:22:25 -0600 | [diff] [blame] | 18 | #define VIRTIO_BLK_F_TOPOLOGY 10 /* Topology information is available */ |
john cooper | 1d589bb | 2009-06-09 14:41:40 +0200 | [diff] [blame] | 19 | |
Rusty Russell | 1842f23 | 2009-07-30 16:03:46 -0600 | [diff] [blame] | 20 | struct virtio_blk_config { |
Rusty Russell | a586d4f | 2008-02-04 23:49:56 -0500 | [diff] [blame] | 21 | /* The capacity (in 512-byte sectors). */ |
Christian Borntraeger | 7757f09 | 2008-05-29 11:10:01 +0200 | [diff] [blame] | 22 | __u64 capacity; |
Rusty Russell | a586d4f | 2008-02-04 23:49:56 -0500 | [diff] [blame] | 23 | /* The maximum segment size (if VIRTIO_BLK_F_SIZE_MAX) */ |
Christian Borntraeger | 7757f09 | 2008-05-29 11:10:01 +0200 | [diff] [blame] | 24 | __u32 size_max; |
Rusty Russell | a586d4f | 2008-02-04 23:49:56 -0500 | [diff] [blame] | 25 | /* The maximum number of segments (if VIRTIO_BLK_F_SEG_MAX) */ |
Christian Borntraeger | 7757f09 | 2008-05-29 11:10:01 +0200 | [diff] [blame] | 26 | __u32 seg_max; |
Ryan Harper | 48e4043 | 2008-04-16 13:56:37 -0500 | [diff] [blame] | 27 | /* geometry the device (if VIRTIO_BLK_F_GEOMETRY) */ |
| 28 | struct virtio_blk_geometry { |
Christian Borntraeger | 7757f09 | 2008-05-29 11:10:01 +0200 | [diff] [blame] | 29 | __u16 cylinders; |
Ryan Harper | 48e4043 | 2008-04-16 13:56:37 -0500 | [diff] [blame] | 30 | __u8 heads; |
| 31 | __u8 sectors; |
| 32 | } geometry; |
Christoph Hellwig | 69740c8 | 2010-02-24 14:22:25 -0600 | [diff] [blame] | 33 | |
Christian Borntraeger | 066f4d8 | 2008-05-29 11:08:26 +0200 | [diff] [blame] | 34 | /* block size of device (if VIRTIO_BLK_F_BLK_SIZE) */ |
| 35 | __u32 blk_size; |
Christoph Hellwig | 69740c8 | 2010-02-24 14:22:25 -0600 | [diff] [blame] | 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 | |
Rusty Russell | a586d4f | 2008-02-04 23:49:56 -0500 | [diff] [blame] | 47 | } __attribute__((packed)); |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 48 | |
Christoph Hellwig | f1b0ef06 | 2009-09-17 19:57:42 +0200 | [diff] [blame] | 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 | |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 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 | |
Christoph Hellwig | f1b0ef06 | 2009-09-17 19:57:42 +0200 | [diff] [blame] | 67 | /* Cache flush command */ |
| 68 | #define VIRTIO_BLK_T_FLUSH 4 |
| 69 | |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 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. */ |
Rusty Russell | 1842f23 | 2009-07-30 16:03:46 -0600 | [diff] [blame] | 74 | struct virtio_blk_outhdr { |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 75 | /* VIRTIO_BLK_T* */ |
| 76 | __u32 type; |
| 77 | /* io priority. */ |
| 78 | __u32 ioprio; |
| 79 | /* Sector (ie. 512 byte offset) */ |
| 80 | __u64 sector; |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 81 | }; |
| 82 | |
Hannes Reinecke | 1cde26f | 2009-05-18 14:41:30 +0200 | [diff] [blame] | 83 | struct virtio_scsi_inhdr { |
| 84 | __u32 errors; |
| 85 | __u32 data_len; |
| 86 | __u32 sense_len; |
| 87 | __u32 residual; |
| 88 | }; |
| 89 | |
Rusty Russell | cb38fa2 | 2008-05-02 21:50:45 -0500 | [diff] [blame] | 90 | /* And this is the final byte of the write scatter-gather list. */ |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 91 | #define VIRTIO_BLK_S_OK 0 |
| 92 | #define VIRTIO_BLK_S_IOERR 1 |
| 93 | #define VIRTIO_BLK_S_UNSUPP 2 |
Rusty Russell | e467cde | 2007-10-22 11:03:38 +1000 | [diff] [blame] | 94 | #endif /* _LINUX_VIRTIO_BLK_H */ |