]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Library/ExtendedIfrSupportLib.h
Sync in bug fix from EDK I:
[mirror_edk2.git] / MdeModulePkg / Include / Library / ExtendedIfrSupportLib.h
CommitLineData
9226efe5 1/** @file\r
2 Library header file defines APIs that is related to IFR operations but \r
3 specific to EDK II implementation.\r
4\r
1e354c03 5Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
9226efe5 13\r
14**/\r
15\r
16#ifndef __EXTENDED_IFR_SUPPORT_LIB_H__\r
17#define __EXTENDED_IFR_SUPPORT_LIB_H__\r
18\r
19/**\r
20 Create GUIDed opcode for banner. Banner opcode\r
21 EFI_IFR_EXTEND_OP_BANNER is extended opcode specific\r
22 to Intel's implementation.\r
23\r
24 @param Title String ID for title\r
25 @param LineNumber Line number for this banner\r
26 @param Alignment Alignment for this banner, left, center or right\r
27 @param Data Destination for the created opcode binary\r
28\r
29 @retval EFI_SUCCESS Opcode create success\r
30 @retval EFI_BUFFER_TOO_SMALL The space reserved in Data field is too small.\r
31\r
32**/\r
33EFI_STATUS\r
5f597758 34EFIAPI\r
9226efe5 35CreateBannerOpCode (\r
36 IN EFI_STRING_ID Title,\r
37 IN UINT16 LineNumber,\r
38 IN UINT8 Alignment,\r
39 IN OUT EFI_HII_UPDATE_DATA *Data\r
ed66e1bc 40 );\r
9226efe5 41\r
8d00a0f1 42/**\r
43 This function initialize the data structure for dynamic opcode.\r
44\r
45 @param UpdateData The adding data;\r
46 @param BufferSize Length of the buffer to fill dynamic opcodes.\r
47\r
48 @retval EFI_SUCCESS Update data is initialized.\r
49 @retval EFI_INVALID_PARAMETER UpdateData is NULL.\r
50 @retval EFI_OUT_OF_RESOURCES No enough memory to allocate.\r
51\r
52**/\r
53EFI_STATUS\r
54IfrLibInitUpdateData (\r
55 IN OUT EFI_HII_UPDATE_DATA *UpdateData,\r
56 IN UINT32 BufferSize\r
57 )\r
58;\r
59\r
60/**\r
61\r
62 This function free the resource of update data.\r
63\r
64 @param UpdateData The adding data;\r
65\r
66 @retval EFI_SUCCESS Resource in UpdateData is released.\r
67 @retval EFI_INVALID_PARAMETER UpdateData is NULL.\r
68\r
69**/\r
70EFI_STATUS\r
71IfrLibFreeUpdateData (\r
72 IN EFI_HII_UPDATE_DATA *UpdateData\r
73 )\r
74;\r
75\r
9226efe5 76/**\r
77 This function allows the caller to update a form that has\r
78 previously been registered with the EFI HII database.\r
79 The update make use of a extended opcode EFI_IFR_EXTEND_OP_LABEL\r
80 specific to Intel's implementation to complete the operation.\r
81 \r
82\r
83 @param Handle Hii Handle\r
84 @param FormSetGuid The formset should be updated.\r
85 @param FormId The form should be updated.\r
86 @param Label Update information starting immediately after this\r
87 label in the IFR\r
88 @param Insert If TRUE and Data is not NULL, insert data after\r
89 Label. If FALSE, replace opcodes between two\r
90 labels with Data.\r
91 @param Data The adding data; If NULL, remove opcodes between\r
92 two Label.\r
93\r
94 @retval EFI_SUCCESS Update success.\r
95 @retval Other Update fail.\r
96\r
97**/\r
98EFI_STATUS\r
5f597758 99EFIAPI\r
9226efe5 100IfrLibUpdateForm (\r
101 IN EFI_HII_HANDLE Handle,\r
102 IN EFI_GUID *FormSetGuid, OPTIONAL\r
103 IN EFI_FORM_ID FormId,\r
104 IN UINT16 Label,\r
105 IN BOOLEAN Insert,\r
106 IN EFI_HII_UPDATE_DATA *Data\r
ed66e1bc 107 );\r
9226efe5 108\r
109/**\r
110 Extract formset class for given HII handle.\r
111\r
112 If Handle is not a valid EFI_HII_HANDLE in the default HII database, then\r
113 ASSERT.\r
114\r
115 If Class is NULL, then ASSERT.\r
116 IfFormSetTitle is NULL, then ASSERT.\r
117 If FormSetHelp is NULL, then ASSERT.\r
118\r
119 @param HiiHandle Hii handle\r
120 @param Class On output, Class of the formset\r
121 @param FormSetTitle On output, Formset title string\r
122 @param FormSetHelp On output, Formset help string\r
123\r
124 @retval EFI_SUCCESS Successfully extract Class for specified Hii\r
125 handle.\r
126\r
127**/\r
128EFI_STATUS\r
5f597758 129EFIAPI\r
9226efe5 130IfrLibExtractClassFromHiiHandle (\r
131 IN EFI_HII_HANDLE Handle,\r
132 OUT UINT16 *Class,\r
133 OUT EFI_STRING_ID *FormSetTitle,\r
134 OUT EFI_STRING_ID *FormSetHelp\r
ed66e1bc 135 );\r
9226efe5 136\r
137/**\r
138 Configure the buffer accrording to ConfigBody strings in the format of\r
139 <Length:4 bytes>, <Offset: 2 bytes>, <Width:2 bytes>, <Data:n bytes>.\r
140\r
141 @param Buffer the start address of buffer.\r
142 @param BufferSize the size of buffer.\r
5f597758
LG
143 @param Number the number of the ConfigBody strings.\r
144 @param ... the ConfigBody strings\r
9226efe5 145\r
146 @retval EFI_BUFFER_TOO_SMALL the BufferSize is too small to operate.\r
147 @retval EFI_INVALID_PARAMETER Buffer is NULL or BufferSize is 0.\r
148 @retval EFI_SUCCESS Operation successful.\r
149\r
150**/\r
151EFI_STATUS\r
152EFIAPI\r
153IfrLibExtractDefault(\r
154 IN VOID *Buffer,\r
155 IN UINTN *BufferSize,\r
156 UINTN Number,\r
157 ...\r
ed66e1bc 158 );\r
9226efe5 159\r
160#endif\r
161\r