]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/BlockIo.h
clean up the un-suitable ';' location when declaring the functions.
[mirror_edk2.git] / MdePkg / Include / Protocol / BlockIo.h
CommitLineData
d1f95000 1/** @file\r
8a7d75b0 2 Block IO protocol as defined in the UEFI 2.0 specification.\r
d1f95000 3\r
4 The Block IO protocol is used to abstract block devices like hard drives,\r
5 DVD-ROMs and floppy drives.\r
6\r
4ca9b6c4 7 Copyright (c) 2006 - 2008, Intel Corporation \r
d1f95000 8 All rights reserved. This program and the accompanying materials \r
9 are licensed and made available under the terms and conditions of the BSD License \r
10 which accompanies this distribution. The full text of the license may be found at \r
11 http://opensource.org/licenses/bsd-license.php \r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
15\r
d1f95000 16**/\r
17\r
18#ifndef __BLOCK_IO_H__\r
19#define __BLOCK_IO_H__\r
20\r
21#define EFI_BLOCK_IO_PROTOCOL_GUID \\r
22 { \\r
23 0x964e5b21, 0x6459, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \\r
24 }\r
25\r
a6508c05 26typedef struct _EFI_BLOCK_IO_PROTOCOL EFI_BLOCK_IO_PROTOCOL;\r
27\r
99e8ed21 28///\r
29/// Protocol GUID name defined in EFI1.1.\r
30/// \r
a6508c05 31#define BLOCK_IO_PROTOCOL EFI_BLOCK_IO_PROTOCOL_GUID\r
32\r
99e8ed21 33///\r
34/// Protocol defined in EFI1.1.\r
35/// \r
a6508c05 36typedef EFI_BLOCK_IO_PROTOCOL EFI_BLOCK_IO;\r
d1f95000 37\r
38/**\r
39 Reset the Block Device.\r
40\r
41 @param This Protocol instance pointer.\r
42 @param ExtendedVerification Driver may perform diagnostics on reset.\r
43\r
44 @retval EFI_SUCCESS The device was reset.\r
45 @retval EFI_DEVICE_ERROR The device is not functioning properly and could\r
46 not be reset.\r
47\r
48**/\r
49typedef\r
50EFI_STATUS\r
8b13229b 51(EFIAPI *EFI_BLOCK_RESET)(\r
d1f95000 52 IN EFI_BLOCK_IO_PROTOCOL *This,\r
53 IN BOOLEAN ExtendedVerification\r
ed66e1bc 54 );\r
d1f95000 55\r
56/**\r
57 Read BufferSize bytes from Lba into Buffer.\r
58\r
59 @param This Protocol instance pointer.\r
60 @param MediaId Id of the media, changes every time the media is replaced.\r
61 @param Lba The starting Logical Block Address to read from\r
62 @param BufferSize Size of Buffer, must be a multiple of device block size.\r
63 @param Buffer Buffer containing read data\r
64\r
65 @retval EFI_SUCCESS The data was read correctly from the device.\r
66 @retval EFI_DEVICE_ERROR The device reported an error while performing the read.\r
67 @retval EFI_NO_MEDIA There is no media in the device.\r
68 @retval EFI_MEDIA_CHANGED The MediaId does not matched the current device.\r
69 @retval EFI_BAD_BUFFER_SIZE The Buffer was not a multiple of the block size of the device.\r
70 @retval EFI_INVALID_PARAMETER The read request contains device addresses that are not\r
71 valid for the device.\r
72\r
73**/\r
74typedef\r
75EFI_STATUS\r
8b13229b 76(EFIAPI *EFI_BLOCK_READ)(\r
d1f95000 77 IN EFI_BLOCK_IO_PROTOCOL *This,\r
78 IN UINT32 MediaId,\r
79 IN EFI_LBA Lba,\r
80 IN UINTN BufferSize,\r
81 OUT VOID *Buffer\r
ed66e1bc 82 );\r
d1f95000 83\r
84/**\r
85 Write BufferSize bytes from Lba into Buffer.\r
86\r
87 @param This Protocol instance pointer.\r
88 @param MediaId Id of the media, changes every time the media is replaced.\r
89 @param Lba The starting Logical Block Address to read from\r
90 @param BufferSize Size of Buffer, must be a multiple of device block size.\r
91 @param Buffer Buffer containing read data\r
92\r
93 @retval EFI_SUCCESS The data was written correctly to the device.\r
94 @retval EFI_WRITE_PROTECTED The device can not be written to.\r
95 @retval EFI_DEVICE_ERROR The device reported an error while performing the write.\r
96 @retval EFI_NO_MEDIA There is no media in the device.\r
97 @retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.\r
98 @retval EFI_BAD_BUFFER_SIZE The Buffer was not a multiple of the block size of the device.\r
99 @retval EFI_INVALID_PARAMETER The write request contains a LBA that is not\r
100 valid for the device.\r
101\r
102**/\r
103typedef\r
104EFI_STATUS\r
8b13229b 105(EFIAPI *EFI_BLOCK_WRITE)(\r
d1f95000 106 IN EFI_BLOCK_IO_PROTOCOL *This,\r
107 IN UINT32 MediaId,\r
108 IN EFI_LBA Lba,\r
109 IN UINTN BufferSize,\r
110 IN VOID *Buffer\r
ed66e1bc 111 );\r
d1f95000 112\r
113/**\r
114 Flush the Block Device.\r
115\r
116 @param This Protocol instance pointer.\r
117\r
118 @retval EFI_SUCCESS All outstanding data was written to the device\r
119 @retval EFI_DEVICE_ERROR The device reported an error while writting back the data\r
120 @retval EFI_NO_MEDIA There is no media in the device.\r
121\r
122**/\r
123typedef\r
124EFI_STATUS\r
8b13229b 125(EFIAPI *EFI_BLOCK_FLUSH)(\r
d1f95000 126 IN EFI_BLOCK_IO_PROTOCOL *This\r
ed66e1bc 127 );\r
d1f95000 128\r
129/**\r
130 Block IO read only mode data and updated only via members of BlockIO\r
4ca9b6c4
LG
131 \r
132 @param MediaId\r
133 The curent media Id. If the media changes, this value is changed.\r
134 \r
135 @param RemovableMedia\r
136 TRUE if the media is removable; otherwise, FALSE.\r
137 \r
138 @param MediaPresent\r
139 TRUE if there is a media currently present in the device;\r
140 othersise, FALSE. THis field shows the media present status\r
141 as of the most recent ReadBlocks() or WriteBlocks() call.\r
142\r
143 @param LogicalPartition\r
144 TRUE if LBA 0 is the first block of a partition; otherwise\r
145 FALSE. For media with only one partition this would be TRUE.\r
146 \r
147 @param ReadOnly\r
148 TRUE if the media is marked read-only otherwise, FALSE.\r
149 This field shows the read-only status as of the most recent WriteBlocks () call.\r
150 \r
151 @param WriteCaching\r
152 TRUE if the WriteBlock () function caches write data.\r
153\r
154 @param BlockSize\r
155 The intrinsic block size of the device. If the media changes, then\r
156 this field is updated. \r
157\r
158 @param IoAlign\r
159 Supplies the alignment requirement for any buffer to read or write block(s).\r
160 \r
161 @param LastBlock\r
162 The last logical block address on the device.\r
163 If the media changes, then this field is updated. \r
d1f95000 164\r
165**/\r
166typedef struct {\r
4ca9b6c4
LG
167 UINT32 MediaId; \r
168 BOOLEAN RemovableMedia;\r
169 BOOLEAN MediaPresent;\r
170 BOOLEAN LogicalPartition;\r
171 BOOLEAN ReadOnly;\r
172 BOOLEAN WriteCaching; \r
173 UINT32 BlockSize; \r
174 UINT32 IoAlign; \r
175 EFI_LBA LastBlock; \r
d1f95000 176} EFI_BLOCK_IO_MEDIA;\r
177\r
178#define EFI_BLOCK_IO_PROTOCOL_REVISION 0x00010000\r
a6508c05 179//\r
180// Revision defined in EFI1.1.\r
181// \r
182#define EFI_BLOCK_IO_INTERFACE_REVISION EFI_BLOCK_IO_PROTOCOL_REVISION\r
d1f95000 183\r
4ca9b6c4
LG
184/**\r
185 @par Protocol Description:\r
186 This protocol provides control over block devices.\r
187\r
188 @param Revision \r
189 The revision to which the block IO interface adheres. All future\r
190 revisions must be backwards compatible. If a future version is not\r
191 back wards compatible, it is not the same GUID.\r
192 \r
193 @param Media \r
194 A pointer to the EFI_BLOCK_IO_MEDIA data for this device.\r
195\r
196 @param Reset \r
197 Resets the block device hardware.\r
198\r
199 @param ReadBlocks \r
200 Reads the requested number of blocks from the device. \r
201\r
202 @param WriteBlocks \r
203 Writes the requested number of blocks to the device. \r
204\r
205 @param FlushBlocks \r
206 Flushes and cache blocks. This function is optional and only\r
207 needs to be supported on block devices that cache writes. \r
208**/\r
d1f95000 209struct _EFI_BLOCK_IO_PROTOCOL {\r
210 UINT64 Revision;\r
211\r
212 EFI_BLOCK_IO_MEDIA *Media;\r
213\r
214 EFI_BLOCK_RESET Reset;\r
215 EFI_BLOCK_READ ReadBlocks;\r
216 EFI_BLOCK_WRITE WriteBlocks;\r
217 EFI_BLOCK_FLUSH FlushBlocks;\r
218\r
219};\r
220\r
221extern EFI_GUID gEfiBlockIoProtocolGuid;\r
222\r
223#endif\r