]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - IntelFrameworkPkg/Include/Protocol/FirmwareVolume.h
Grammatical and disclaimer changes (does not follow internal C coding stds.)
[mirror_edk2.git] / IntelFrameworkPkg / Include / Protocol / FirmwareVolume.h
... / ...
CommitLineData
1/** @file\r
2 This file declares the Firmware Volume Protocol.\r
3 \r
4 The Firmware Volume Protocol provides file-level access to the firmware volume.\r
5 Each firmware volume driver must produce an instance of the Firmware Volume\r
6 Protocol if the firmware volume is to be visible to the system. The Firmware\r
7 Volume Protocol also provides mechanisms for determining and modifying some\r
8 attributes of the firmware volume.\r
9\r
10Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved<BR>\r
11This program and the accompanying materials are licensed and made available under \r
12the terms and conditions of the BSD License that accompanies this distribution. \r
13The full text of the license may be found at\r
14http://opensource.org/licenses/bsd-license.php. \r
15 \r
16THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
17WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
18\r
19 @par Revision Reference:\r
20 This protocol is defined in Firmware Volume specification.\r
21 Version 0.9.\r
22\r
23**/\r
24\r
25#ifndef _FIRMWARE_VOLUME_H_\r
26#define _FIRMWARE_VOLUME_H_\r
27\r
28\r
29//\r
30// Firmware Volume Protocol GUID definition\r
31//\r
32#define EFI_FIRMWARE_VOLUME_PROTOCOL_GUID \\r
33 { \\r
34 0x389F751F, 0x1838, 0x4388, {0x83, 0x90, 0xCD, 0x81, 0x54, 0xBD, 0x27, 0xF8 } \\r
35 }\r
36\r
37#define FV_DEVICE_SIGNATURE SIGNATURE_32 ('_', 'F', 'V', '_')\r
38\r
39typedef struct _EFI_FIRMWARE_VOLUME_PROTOCOL EFI_FIRMWARE_VOLUME_PROTOCOL;\r
40\r
41//\r
42// FRAMEWORK_EFI_FV_ATTRIBUTES bit definitions\r
43//\r
44typedef UINT64 FRAMEWORK_EFI_FV_ATTRIBUTES;\r
45\r
46//\r
47// ************************************************************\r
48// FRAMEWORK_EFI_FV_ATTRIBUTES bit definitions\r
49// ************************************************************\r
50//\r
51#define EFI_FV_READ_DISABLE_CAP 0x0000000000000001ULL\r
52#define EFI_FV_READ_ENABLE_CAP 0x0000000000000002ULL\r
53#define EFI_FV_READ_STATUS 0x0000000000000004ULL\r
54\r
55#define EFI_FV_WRITE_DISABLE_CAP 0x0000000000000008ULL\r
56#define EFI_FV_WRITE_ENABLE_CAP 0x0000000000000010ULL\r
57#define EFI_FV_WRITE_STATUS 0x0000000000000020ULL\r
58\r
59#define EFI_FV_LOCK_CAP 0x0000000000000040ULL\r
60#define EFI_FV_LOCK_STATUS 0x0000000000000080ULL\r
61#define EFI_FV_WRITE_POLICY_RELIABLE 0x0000000000000100ULL\r
62\r
63#define EFI_FV_ALIGNMENT_CAP 0x0000000000008000ULL\r
64#define EFI_FV_ALIGNMENT_2 0x0000000000010000ULL\r
65#define EFI_FV_ALIGNMENT_4 0x0000000000020000ULL\r
66#define EFI_FV_ALIGNMENT_8 0x0000000000040000ULL\r
67#define EFI_FV_ALIGNMENT_16 0x0000000000080000ULL\r
68#define EFI_FV_ALIGNMENT_32 0x0000000000100000ULL\r
69#define EFI_FV_ALIGNMENT_64 0x0000000000200000ULL\r
70#define EFI_FV_ALIGNMENT_128 0x0000000000400000ULL\r
71#define EFI_FV_ALIGNMENT_256 0x0000000000800000ULL\r
72#define EFI_FV_ALIGNMENT_512 0x0000000001000000ULL\r
73#define EFI_FV_ALIGNMENT_1K 0x0000000002000000ULL\r
74#define EFI_FV_ALIGNMENT_2K 0x0000000004000000ULL\r
75#define EFI_FV_ALIGNMENT_4K 0x0000000008000000ULL\r
76#define EFI_FV_ALIGNMENT_8K 0x0000000010000000ULL\r
77#define EFI_FV_ALIGNMENT_16K 0x0000000020000000ULL\r
78#define EFI_FV_ALIGNMENT_32K 0x0000000040000000ULL\r
79#define EFI_FV_ALIGNMENT_64K 0x0000000080000000ULL\r
80\r
81//\r
82// Protocol API definitions\r
83//\r
84\r
85/**\r
86 Retrieves attributes, insures positive polarity of attribute bits, and returns\r
87 resulting attributes in an output parameter.\r
88\r
89 @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance.\r
90 @param Attributes Output buffer containing attributes.\r
91\r
92 @retval EFI_SUCCESS The firmware volume attributes were returned.\r
93**/\r
94typedef\r
95EFI_STATUS\r
96(EFIAPI *FRAMEWORK_EFI_FV_GET_ATTRIBUTES)(\r
97 IN EFI_FIRMWARE_VOLUME_PROTOCOL *This,\r
98 OUT FRAMEWORK_EFI_FV_ATTRIBUTES *Attributes\r
99 );\r
100\r
101/**\r
102 Sets volume attributes\r
103\r
104 @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance.\r
105 @param Attributes On input, Attributes is a pointer to an \r
106 EFI_FV_ATTRIBUTES containing the desired firmware \r
107 volume settings. On successful return, it contains \r
108 the new settings of the firmware volume. On \r
109 unsuccessful return, Attributes is not modified \r
110 and the firmware volume settings are not changed.\r
111\r
112 @retval EFI_INVALID_PARAMETER A bit in Attributes was invalid.\r
113 @retval EFI_SUCCESS The requested firmware volume attributes were set \r
114 and the resulting EFI_FV_ATTRIBUTES is returned in\r
115 Attributes.\r
116 @retval EFI_ACCESS_DENIED The Device is locked and does not permit modification. \r
117\r
118**/\r
119typedef\r
120EFI_STATUS\r
121(EFIAPI *FRAMEWORK_EFI_FV_SET_ATTRIBUTES)(\r
122 IN EFI_FIRMWARE_VOLUME_PROTOCOL *This,\r
123 IN OUT FRAMEWORK_EFI_FV_ATTRIBUTES *Attributes\r
124 );\r
125\r
126/**\r
127 Read the requested file (NameGuid) or file information from the firmware volume \r
128 and returns data in Buffer.\r
129\r
130 @param This The EFI_FIRMWARE_VOLUME_PROTOCOL instance.\r
131 @param NameGuid The pointer to EFI_GUID, which is the filename of \r
132 the file to read.\r
133 @param Buffer The pointer to pointer to buffer in which contents of file are returned.\r
134 <br>\r
135 If Buffer is NULL, only type, attributes, and size \r
136 are returned as there is no output buffer.\r
137 <br>\r
138 If Buffer != NULL and *Buffer == NULL, the output \r
139 buffer is allocated from BS pool by ReadFile.\r
140 <br>\r
141 If Buffer != NULL and *Buffer != NULL, the output \r
142 buffer has been allocated by the caller and is being \r
143 passed in.\r
144 @param BufferSize On input: The buffer size. On output: The size\r
145 required to complete the read.\r
146 @param FoundType The pointer to the type of the file whose data \r
147 is returned.\r
148 @param FileAttributes The pointer to attributes of the file whose data\r
149 is returned.\r
150 @param AuthenticationStatus The pointer to the authentication status of the data.\r
151\r
152 @retval EFI_SUCCESS The call completed successfully.\r
153 @retval EFI_WARN_BUFFER_TOO_SMALL The buffer is too small to contain the requested output.\r
154 The buffer filled, and the output is truncated.\r
155 @retval EFI_NOT_FOUND NameGuid was not found in the firmware volume.\r
156 @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to \r
157 access the firmware volume.\r
158 @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads.\r
159 @retval EFI_OUT_OF_RESOURCES An allocation failure occurred.\r
160\r
161**/\r
162typedef\r
163EFI_STATUS\r
164(EFIAPI *FRAMEWORK_EFI_FV_READ_FILE)(\r
165 IN EFI_FIRMWARE_VOLUME_PROTOCOL *This,\r
166 IN EFI_GUID *NameGuid,\r
167 IN OUT VOID **Buffer,\r
168 IN OUT UINTN *BufferSize,\r
169 OUT EFI_FV_FILETYPE *FoundType,\r
170 OUT EFI_FV_FILE_ATTRIBUTES *FileAttributes,\r
171 OUT UINT32 *AuthenticationStatus\r
172 );\r
173\r
174/**\r
175 Read the requested section from the specified file and returns data in Buffer.\r
176\r
177 @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance.\r
178 @param NameGuid Filename identifying the file from which to read.\r
179 @param SectionType The section type to retrieve.\r
180 @param SectionInstance The instance of SectionType to retrieve.\r
181 @param Buffer Pointer to pointer to buffer in which contents of \r
182 a file are returned.\r
183 <br>\r
184 If Buffer is NULL, only type, attributes, and size\r
185 are returned as there is no output buffer.\r
186 <br>\r
187 If Buffer != NULL and *Buffer == NULL, the output \r
188 buffer is allocated from BS pool by ReadFile.\r
189 <br>\r
190 If Buffer != NULL and *Buffer != NULL, the output \r
191 buffer has been allocated by the caller and is being \r
192 passed in.\r
193 @param BufferSize The pointer to the buffer size passed in, and on \r
194 output the size required to complete the read.\r
195 @param AuthenticationStatus The pointer to the authentication status of the data.\r
196\r
197 @retval EFI_SUCCESS The call completed successfully.\r
198 @retval EFI_WARN_BUFFER_TOO_SMALL The buffer is too small to contain the requested output. \r
199 The buffer is filled and the output is truncated.\r
200 @retval EFI_OUT_OF_RESOURCES An allocation failure occurred.\r
201 @retval EFI_NOT_FOUND The name was not found in the firmware volume.\r
202 @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to \r
203 access the firmware volume.\r
204 @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads.\r
205\r
206**/\r
207typedef\r
208EFI_STATUS\r
209(EFIAPI *FRAMEWORK_EFI_FV_READ_SECTION)(\r
210 IN EFI_FIRMWARE_VOLUME_PROTOCOL *This,\r
211 IN EFI_GUID *NameGuid,\r
212 IN EFI_SECTION_TYPE SectionType,\r
213 IN UINTN SectionInstance,\r
214 IN OUT VOID **Buffer,\r
215 IN OUT UINTN *BufferSize,\r
216 OUT UINT32 *AuthenticationStatus\r
217 );\r
218\r
219typedef UINT32 FRAMEWORK_EFI_FV_WRITE_POLICY;\r
220\r
221#define FRAMEWORK_EFI_FV_UNRELIABLE_WRITE 0x00000000\r
222#define FRAMEWORK_EFI_FV_RELIABLE_WRITE 0x00000001\r
223\r
224typedef struct {\r
225 EFI_GUID *NameGuid;\r
226 EFI_FV_FILETYPE Type;\r
227 EFI_FV_FILE_ATTRIBUTES FileAttributes;\r
228 VOID *Buffer;\r
229 UINT32 BufferSize;\r
230} FRAMEWORK_EFI_FV_WRITE_FILE_DATA;\r
231\r
232/**\r
233 Write the supplied file (NameGuid) to the FV.\r
234\r
235 @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance.\r
236 @param NumberOfFiles Indicates the number of file records pointed to \r
237 by FileData.\r
238 @param WritePolicy Indicates the level of reliability of the write \r
239 with respect to things like power failure events.\r
240 @param FileData A pointer to an array of EFI_FV_WRITE_FILE_DATA \r
241 structures. Each element in the array indicates \r
242 a file to write, and there are NumberOfFiles\r
243 elements in the input array.\r
244\r
245 @retval EFI_SUCCESS The write completed successfully.\r
246 @retval EFI_OUT_OF_RESOURCES The firmware volume does not have enough free \r
247 space to store file(s).\r
248 @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to \r
249 access the firmware volume.\r
250 @retval EFI_WRITE_PROTECTED The firmware volume is configured to disallow writes.\r
251 @retval EFI_NOT_FOUND A delete was requested, but the requested file was \r
252 not found in the firmware volume.\r
253 @retval EFI_INVALID_PARAMETER A delete was requested with a multiple file write.\r
254 An unsupported WritePolicy was requested.\r
255 An unknown file type was specified.\r
256 A file system specific error has occurred.\r
257**/\r
258typedef\r
259EFI_STATUS\r
260(EFIAPI *FRAMEWORK_EFI_FV_WRITE_FILE)(\r
261 IN EFI_FIRMWARE_VOLUME_PROTOCOL *This,\r
262 IN UINT32 NumberOfFiles,\r
263 IN FRAMEWORK_EFI_FV_WRITE_POLICY WritePolicy,\r
264 IN FRAMEWORK_EFI_FV_WRITE_FILE_DATA *FileData\r
265 );\r
266\r
267/**\r
268 Given the input key, search for the next matching file in the volume.\r
269\r
270 @param This Indicates the EFI_FIRMWARE_VOLUME_PROTOCOL instance.\r
271 @param Key Pointer to a caller allocated buffer that contains \r
272 an implementation-specific key that is used to track \r
273 where to begin searching on successive calls.\r
274 @param FileType The pointer to the file type to filter for.\r
275 @param NameGuid The pointer to Guid filename of the file found.\r
276 @param Attributes The pointer to Attributes of the file found.\r
277 @param Size The pointer to Size in bytes of the file found.\r
278\r
279 @retval EFI_SUCCESS The output parameters are filled with data obtained from \r
280 the first matching file that was found.\r
281 @retval EFI_NOT_FOUND No files of type FileType were found.\r
282 @retval EFI_DEVICE_ERROR A hardware error occurred when attempting to access \r
283 the firmware volume.\r
284 @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads.\r
285\r
286**/\r
287typedef\r
288EFI_STATUS\r
289(EFIAPI *FRAMEWORK_EFI_FV_GET_NEXT_FILE)(\r
290 IN EFI_FIRMWARE_VOLUME_PROTOCOL *This,\r
291 IN OUT VOID *Key,\r
292 IN OUT EFI_FV_FILETYPE *FileType,\r
293 OUT EFI_GUID *NameGuid,\r
294 OUT EFI_FV_FILE_ATTRIBUTES *Attributes,\r
295 OUT UINTN *Size\r
296 );\r
297\r
298//\r
299// Protocol interface structure\r
300//\r
301struct _EFI_FIRMWARE_VOLUME_PROTOCOL {\r
302 ///\r
303 /// Retrieves volume capabilities and current settings.\r
304 ///\r
305 FRAMEWORK_EFI_FV_GET_ATTRIBUTES GetVolumeAttributes;\r
306\r
307 ///\r
308 /// Modifies the current settings of the firmware volume.\r
309 ///\r
310 FRAMEWORK_EFI_FV_SET_ATTRIBUTES SetVolumeAttributes;\r
311\r
312 ///\r
313 /// Reads an entire file from the firmware volume.\r
314 ///\r
315 FRAMEWORK_EFI_FV_READ_FILE ReadFile;\r
316\r
317 ///\r
318 /// Reads a single section from a file into a buffer.\r
319 ///\r
320 FRAMEWORK_EFI_FV_READ_SECTION ReadSection;\r
321\r
322 ///\r
323 /// Writes an entire file into the firmware volume.\r
324 ///\r
325 FRAMEWORK_EFI_FV_WRITE_FILE WriteFile;\r
326\r
327 ///\r
328 /// Provides service to allow searching the firmware volume.\r
329 ///\r
330 FRAMEWORK_EFI_FV_GET_NEXT_FILE GetNextFile;\r
331\r
332 ///\r
333 /// Data field that indicates the size in bytes of the Key input buffer for\r
334 /// the GetNextFile() API.\r
335 ///\r
336 UINT32 KeySize;\r
337\r
338 ///\r
339 /// Handle of the parent firmware volume.\r
340 ///\r
341 EFI_HANDLE ParentHandle;\r
342};\r
343\r
344extern EFI_GUID gEfiFirmwareVolumeProtocolGuid;\r
345\r
346#endif\r