]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/Include/IndustryStandard/VirtioBlk.h
OvmfPkg: Make the VirtIo devices use the new VIRTIO_DEVICE_PROTOCOL
[mirror_edk2.git] / OvmfPkg / Include / IndustryStandard / VirtioBlk.h
1 /** @file
2
3 Virtio Block Device specific type and macro definitions corresponding to the
4 virtio-0.9.5 specification.
5
6 Copyright (C) 2012, Red Hat, Inc.
7
8 This program and the accompanying materials are licensed and made available
9 under the terms and conditions of the BSD License which accompanies this
10 distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
14 WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #ifndef _VIRTIO_BLK_H_
19 #define _VIRTIO_BLK_H_
20
21 #include <IndustryStandard/Virtio.h>
22
23
24 //
25 // virtio-0.9.5, Appendix D: Block Device
26 //
27 #pragma pack(1)
28 typedef struct {
29 UINT64 Capacity;
30 UINT32 SizeMax;
31 UINT32 SegMax;
32 UINT16 Cylinders;
33 UINT8 Heads;
34 UINT8 Sectors;
35 UINT32 BlkSize;
36 } VIRTIO_BLK_CONFIG;
37 #pragma pack()
38
39 #define OFFSET_OF_VBLK(Field) OFFSET_OF (VIRTIO_BLK_CONFIG, Field)
40 #define SIZE_OF_VBLK(Field) (sizeof ((VIRTIO_BLK_CONFIG *) 0)->Field)
41
42 #define VIRTIO_BLK_F_BARRIER BIT0
43 #define VIRTIO_BLK_F_SIZE_MAX BIT1
44 #define VIRTIO_BLK_F_SEG_MAX BIT2
45 #define VIRTIO_BLK_F_GEOMETRY BIT4
46 #define VIRTIO_BLK_F_RO BIT5
47 #define VIRTIO_BLK_F_BLK_SIZE BIT6 // treated as "logical block size" in
48 // practice; actual host side implementation
49 // negotiates "optimal" block size
50 // separately
51 #define VIRTIO_BLK_F_SCSI BIT7
52 #define VIRTIO_BLK_F_FLUSH BIT9 // identical to "write cache enabled"
53
54 //
55 // We keep the status byte separate from the rest of the virtio-blk request
56 // header. See description of historical scattering at the end of Appendix D:
57 // we're going to put the status byte in a separate VRING_DESC.
58 //
59 #pragma pack(1)
60 typedef struct {
61 UINT32 Type;
62 UINT32 IoPrio;
63 UINT64 Sector;
64 } VIRTIO_BLK_REQ;
65 #pragma pack()
66
67 #define VIRTIO_BLK_T_IN 0x00000000
68 #define VIRTIO_BLK_T_OUT 0x00000001
69 #define VIRTIO_BLK_T_SCSI_CMD 0x00000002
70 #define VIRTIO_BLK_T_SCSI_CMD_OUT 0x00000003
71 #define VIRTIO_BLK_T_FLUSH 0x00000004
72 #define VIRTIO_BLK_T_FLUSH_OUT 0x00000005
73 #define VIRTIO_BLK_T_BARRIER BIT31
74
75 #define VIRTIO_BLK_S_OK 0x00
76 #define VIRTIO_BLK_S_IOERR 0x01
77 #define VIRTIO_BLK_S_UNSUPP 0x02
78
79 #endif // _VIRTIO_BLK_H_