diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-21 21:03:38 -0400 |
|---|---|---|
| committer | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-23 01:49:54 -0400 |
| commit | e467cde238184d1b0923db2cd61ae1c5a6dc15aa (patch) | |
| tree | 1383321c88ca25fcad20f56f14a8ca658bb25fb3 /include/linux | |
| parent | 296f96fcfc160e29c01819c0c7b20c2dc8320edd (diff) | |
Block driver using virtio.
The block driver uses scatter-gather lists with sg[0] being the
request information (struct virtio_blk_outhdr) with the type, sector
and inbuf id. The next N sg entries are the bio itself, then the last
sg is the status byte. Whether the N entries are in or out depends on
whether it's a read or a write.
We accept the normal (SCSI) ioctls: they get handed through to the other
side which can then handle it or reply that it's unsupported. It's
not clear that this actually works in general, since I don't know
if blk_pc_request() requests have an accurate rq_data_dir().
Although we try to reply -ENOTTY on unsupported commands, ioctl(fd,
CDROMEJECT) returns success to userspace. This needs a separate
patch.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/Kbuild | 1 | ||||
| -rw-r--r-- | include/linux/virtio_blk.h | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index b101588a4b5a..6a65231bc785 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -344,6 +344,7 @@ unifdef-y += utsname.h | |||
| 344 | unifdef-y += videodev2.h | 344 | unifdef-y += videodev2.h |
| 345 | unifdef-y += videodev.h | 345 | unifdef-y += videodev.h |
| 346 | unifdef-y += virtio_config.h | 346 | unifdef-y += virtio_config.h |
| 347 | unifdef-y += virtio_blk.h | ||
| 347 | unifdef-y += virtio_net.h | 348 | unifdef-y += virtio_net.h |
| 348 | unifdef-y += wait.h | 349 | unifdef-y += wait.h |
| 349 | unifdef-y += wanrouter.h | 350 | unifdef-y += wanrouter.h |
diff --git a/include/linux/virtio_blk.h b/include/linux/virtio_blk.h new file mode 100644 index 000000000000..7bd2bce0cfd9 --- /dev/null +++ b/include/linux/virtio_blk.h | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_BLK_H | ||
| 2 | #define _LINUX_VIRTIO_BLK_H | ||
| 3 | #include <linux/virtio_config.h> | ||
| 4 | |||
| 5 | /* The ID for virtio_block */ | ||
| 6 | #define VIRTIO_ID_BLOCK 2 | ||
| 7 | |||
| 8 | /* Feature bits */ | ||
| 9 | #define VIRTIO_CONFIG_BLK_F 0x40 | ||
| 10 | #define VIRTIO_BLK_F_BARRIER 1 /* Does host support barriers? */ | ||
| 11 | |||
| 12 | /* The capacity (in 512-byte sectors). */ | ||
| 13 | #define VIRTIO_CONFIG_BLK_F_CAPACITY 0x41 | ||
| 14 | /* The maximum segment size. */ | ||
| 15 | #define VIRTIO_CONFIG_BLK_F_SIZE_MAX 0x42 | ||
| 16 | /* The maximum number of segments. */ | ||
| 17 | #define VIRTIO_CONFIG_BLK_F_SEG_MAX 0x43 | ||
| 18 | |||
| 19 | /* These two define direction. */ | ||
| 20 | #define VIRTIO_BLK_T_IN 0 | ||
| 21 | #define VIRTIO_BLK_T_OUT 1 | ||
| 22 | |||
| 23 | /* This bit says it's a scsi command, not an actual read or write. */ | ||
| 24 | #define VIRTIO_BLK_T_SCSI_CMD 2 | ||
| 25 | |||
| 26 | /* Barrier before this op. */ | ||
| 27 | #define VIRTIO_BLK_T_BARRIER 0x80000000 | ||
| 28 | |||
| 29 | /* This is the first element of the read scatter-gather list. */ | ||
| 30 | struct virtio_blk_outhdr | ||
| 31 | { | ||
| 32 | /* VIRTIO_BLK_T* */ | ||
| 33 | __u32 type; | ||
| 34 | /* io priority. */ | ||
| 35 | __u32 ioprio; | ||
| 36 | /* Sector (ie. 512 byte offset) */ | ||
| 37 | __u64 sector; | ||
| 38 | /* Where to put reply. */ | ||
| 39 | __u64 id; | ||
| 40 | }; | ||
| 41 | |||
| 42 | #define VIRTIO_BLK_S_OK 0 | ||
| 43 | #define VIRTIO_BLK_S_IOERR 1 | ||
| 44 | #define VIRTIO_BLK_S_UNSUPP 2 | ||
| 45 | |||
| 46 | /* This is the first element of the write scatter-gather list */ | ||
| 47 | struct virtio_blk_inhdr | ||
| 48 | { | ||
| 49 | unsigned char status; | ||
| 50 | }; | ||
| 51 | #endif /* _LINUX_VIRTIO_BLK_H */ | ||
