]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/UefiLib/UefiNotTiano.c
Cleanup "Tiano" word.
[mirror_edk2.git] / MdePkg / Library / UefiLib / UefiNotTiano.c
1 /** @file
2 Library functions that abstract areas of conflict between framework and UEFI 2.0.
3
4 Help Port Framework code that has conflicts with UEFI 2.0 by hiding the
5 old conflicts with library functions and supporting implementations of the old
6 (EDK/EFI 1.10) and new (EDK II/UEFI 2.0) way. This module is a DXE driver as
7 it contains DXE enum extensions for EFI event services.
8
9 Copyright (c) 2006 - 2007, Intel Corporation<BR>
10 All rights reserved. This program and the accompanying materials
11 are licensed and made available under the terms and conditions of the BSD License
12 which accompanies this distribution. The full text of the license may be found at
13 http://opensource.org/licenses/bsd-license.php
14
15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17
18 **/
19
20
21
22 #include "UefiLibInternal.h"
23
24 /**
25 An empty function to pass error checking of CreateEventEx ().
26
27 This empty function ensures that EVT_NOTIFY_SIGNAL_ALL is error
28 checked correctly since it is now mapped into CreateEventEx() in UEFI 2.0.
29
30 @param Event Event whose notification function is being invoked.
31 @param Context Pointer to the notification function's context,
32 which is implementation-dependent.
33
34 **/
35 VOID
36 EFIAPI
37 InternalEmptyFuntion (
38 IN EFI_EVENT Event,
39 IN VOID *Context
40 )
41 {
42 return;
43 }
44
45 /**
46 Creates an EFI event in the Legacy Boot Event Group. Prior to UEFI 2.0 this
47 was done via a non blessed UEFI extensions and this library abstracts the
48 implementation mechanism of this event from the caller.
49
50 This function abstracts the creation of the Legacy Boot Event. The Framework
51 moved from a proprietary to UEFI 2.0 based mechanism. This library abstracts
52 the caller from how this event is created to prevent to code form having to
53 change with the version of the specification supported.
54 If LegacyBootEvent is NULL, then ASSERT().
55
56 @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
57
58 @retval EFI_SUCCESS Event was created.
59 @retval Other Event was not created.
60
61 **/
62 EFI_STATUS
63 EFIAPI
64 EfiCreateEventLegacyBoot (
65 OUT EFI_EVENT *LegacyBootEvent
66 )
67 {
68 return EfiCreateEventLegacyBootEx (
69 TPL_CALLBACK,
70 InternalEmptyFuntion,
71 NULL,
72 LegacyBootEvent
73 );
74 }
75
76 /**
77 Create an EFI event in the Legacy Boot Event Group and allows
78 the caller to specify a notification function.
79
80 This function abstracts the creation of the Legacy Boot Event.
81 The Framework moved from a proprietary to UEFI 2.0 based mechanism.
82 This library abstracts the caller from how this event is created to prevent
83 to code form having to change with the version of the specification supported.
84 If LegacyBootEvent is NULL, then ASSERT().
85
86 @param NotifyTpl The task priority level of the event.
87 @param NotifyFunction The notification function to call when the event is signaled.
88 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
89 @param LegacyBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
90
91 @retval EFI_SUCCESS Event was created.
92 @retval Other Event was not created.
93
94 **/
95 EFI_STATUS
96 EFIAPI
97 EfiCreateEventLegacyBootEx (
98 IN EFI_TPL NotifyTpl,
99 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
100 IN VOID *NotifyContext, OPTIONAL
101 OUT EFI_EVENT *LegacyBootEvent
102 )
103 {
104 EFI_STATUS Status;
105
106 ASSERT (LegacyBootEvent != NULL);
107
108 if (gST->Hdr.Revision < EFI_2_00_SYSTEM_TABLE_REVISION) {
109 DEBUG ((EFI_D_ERROR, "EFI1.1 can't support LegacyBootEvent!"));
110 ASSERT (FALSE);
111
112 return EFI_UNSUPPORTED;
113 } else {
114 //
115 // For UEFI 2.0 and the future use an Event Group
116 //
117 Status = gBS->CreateEventEx (
118 EVT_NOTIFY_SIGNAL,
119 NotifyTpl,
120 NotifyFunction,
121 NotifyContext,
122 &gEfiEventLegacyBootGuid,
123 LegacyBootEvent
124 );
125 }
126
127 return Status;
128 }
129
130 /**
131 Create an EFI event in the Ready To Boot Event Group. Prior to UEFI 2.0 this
132 was done via a non-standard UEFI extension, and this library abstracts the
133 implementation mechanism of this event from the caller.
134
135 This function abstracts the creation of the Ready to Boot Event. The Framework
136 moved from a proprietary to UEFI 2.0-based mechanism. This library abstracts
137 the caller from how this event is created to prevent the code form having to
138 change with the version of the specification supported.
139 If ReadyToBootEvent is NULL, then ASSERT().
140
141 @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
142
143 @retval EFI_SUCCESS Event was created.
144 @retval Other Event was not created.
145
146 **/
147 EFI_STATUS
148 EFIAPI
149 EfiCreateEventReadyToBoot (
150 OUT EFI_EVENT *ReadyToBootEvent
151 )
152 {
153 return EfiCreateEventReadyToBootEx (
154 TPL_CALLBACK,
155 InternalEmptyFuntion,
156 NULL,
157 ReadyToBootEvent
158 );
159 }
160
161 /**
162 Create an EFI event in the Ready To Boot Event Group and allows
163 the caller to specify a notification function.
164
165 This function abstracts the creation of the Ready to Boot Event.
166 The Framework moved from a proprietary to UEFI 2.0 based mechanism.
167 This library abstracts the caller from how this event is created to prevent
168 to code form having to change with the version of the specification supported.
169 If ReadyToBootEvent is NULL, then ASSERT().
170
171 @param NotifyTpl The task priority level of the event.
172 @param NotifyFunction The notification function to call when the event is signaled.
173 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
174 @param ReadyToBootEvent Returns the EFI event returned from gBS->CreateEvent(Ex).
175
176 @retval EFI_SUCCESS Event was created.
177 @retval Other Event was not created.
178
179 **/
180 EFI_STATUS
181 EFIAPI
182 EfiCreateEventReadyToBootEx (
183 IN EFI_TPL NotifyTpl,
184 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
185 IN VOID *NotifyContext, OPTIONAL
186 OUT EFI_EVENT *ReadyToBootEvent
187 )
188 {
189 EFI_STATUS Status;
190
191 ASSERT (ReadyToBootEvent != NULL);
192
193 if (gST->Hdr.Revision < EFI_2_00_SYSTEM_TABLE_REVISION) {
194 DEBUG ((EFI_D_ERROR, "EFI1.1 can't support ReadyToBootEvent!"));
195 ASSERT (FALSE);
196
197 return EFI_UNSUPPORTED;
198 } else {
199 //
200 // For UEFI 2.0 and the future use an Event Group
201 //
202 Status = gBS->CreateEventEx (
203 EVT_NOTIFY_SIGNAL,
204 NotifyTpl,
205 NotifyFunction,
206 NotifyContext,
207 &gEfiEventReadyToBootGuid,
208 ReadyToBootEvent
209 );
210 }
211
212 return Status;
213 }
214
215
216 /**
217 Signal a Ready to Boot Event.
218
219 Create a Ready to Boot Event. Signal it and close it. This causes other
220 events of the same event group to be signaled in other modules.
221
222 **/
223 VOID
224 EFIAPI
225 EfiSignalEventReadyToBoot (
226 VOID
227 )
228 {
229 EFI_STATUS Status;
230 EFI_EVENT ReadyToBootEvent;
231
232 Status = EfiCreateEventReadyToBoot (&ReadyToBootEvent);
233 if (!EFI_ERROR (Status)) {
234 gBS->SignalEvent (ReadyToBootEvent);
235 gBS->CloseEvent (ReadyToBootEvent);
236 }
237 }
238
239 /**
240 Signal a Legacy Boot Event.
241
242 Create a legacy Boot Event. Signal it and close it. This causes other
243 events of the same event group to be signaled in other modules.
244
245 **/
246 VOID
247 EFIAPI
248 EfiSignalEventLegacyBoot (
249 VOID
250 )
251 {
252 EFI_STATUS Status;
253 EFI_EVENT LegacyBootEvent;
254
255 Status = EfiCreateEventLegacyBoot (&LegacyBootEvent);
256 if (!EFI_ERROR (Status)) {
257 gBS->SignalEvent (LegacyBootEvent);
258 gBS->CloseEvent (LegacyBootEvent);
259 }
260 }
261
262
263 /**
264 The Framework FwVol Device Path changed to conform to the UEFI 2.0 specification.
265 This library function abstracts validating a device path node.
266
267 Check the MEDIA_FW_VOL_FILEPATH_DEVICE_PATH data structure to see if it's valid.
268 If it is valid, then return the GUID file name from the device path node.
269 Otherwise, return NULL. This device path changed in the DXE CIS version 0.92
270 in a non back ward compatible way to not conflict with the UEFI 2.0 specification.
271 This function abstracts the differences from the caller.
272 If FvDevicePathNode is NULL, then ASSERT().
273
274 @param FvFileDevicePathNode Pointer to FV device path to check.
275
276 @retval NULL FvDevicePathNode is not valid.
277 @retval Other FvDevicePathNode is valid and pointer to NameGuid was returned.
278
279 **/
280 EFI_GUID*
281 EFIAPI
282 EfiGetNameGuidFromFwVolDevicePathNode (
283 IN CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvFileDevicePathNode
284 )
285 {
286 ASSERT (FvFileDevicePathNode != NULL);
287
288 if (DevicePathType (&FvFileDevicePathNode->Header) == MEDIA_DEVICE_PATH &&
289 DevicePathSubType (&FvFileDevicePathNode->Header) == MEDIA_PIWG_FW_FILE_DP) {
290 return (EFI_GUID *) &FvFileDevicePathNode->FvFileName;
291 }
292
293 return NULL;
294 }
295
296
297 /**
298 The Framework FwVol Device Path changed to conform to the UEFI 2.0 specification.
299 This library function abstracts initializing a device path node.
300
301 Initialize the MEDIA_FW_VOL_FILEPATH_DEVICE_PATH data structure. This device
302 path changed in the DXE CIS version 0.92 in a non back ward compatible way to
303 not conflict with the UEFI 2.0 specification. This function abstracts the
304 differences from the caller.
305 If FvDevicePathNode is NULL, then ASSERT().
306 If NameGuid is NULL, then ASSERT().
307
308 @param FvFileDevicePathNode Pointer to a FV device path node to initialize
309 @param NameGuid FV file name to use in FvDevicePathNode
310
311 **/
312 VOID
313 EFIAPI
314 EfiInitializeFwVolDevicepathNode (
315 IN OUT MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvFileDevicePathNode,
316 IN CONST EFI_GUID *NameGuid
317 )
318 {
319 ASSERT (FvFileDevicePathNode != NULL);
320 ASSERT (NameGuid != NULL);
321
322 //
323 // Use the new Device path that does not conflict with the UEFI
324 //
325 FvFileDevicePathNode->Header.Type = MEDIA_DEVICE_PATH;
326 FvFileDevicePathNode->Header.SubType = MEDIA_PIWG_FW_FILE_DP;
327 SetDevicePathNodeLength (&FvFileDevicePathNode->Header, sizeof (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH));
328
329 CopyGuid (&FvFileDevicePathNode->FvFileName, NameGuid);
330 }
331