]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Library/EdkUefiRuntimeLib/Common/RuntimeLib.c
Add some definitions for efi event in Uefi/UefiSpec.h to follow spec.
[mirror_edk2.git] / EdkModulePkg / Library / EdkUefiRuntimeLib / Common / RuntimeLib.c
CommitLineData
f62485d3 1/**@file\r
2 Library utility functions for Runtime driver.\r
93b0fbc8 3\r
f62485d3 4Copyright (c) 2006 Intel Corporation. <BR>\r
93b0fbc8 5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
878ddf1f 12\r
f62485d3 13**/\r
878ddf1f 14\r
15#include <RuntimeLibInternal.h>\r
16\r
f62485d3 17///\r
18/// Driver Lib Module Globals\r
19///\r
878ddf1f 20\r
e8a3bee0 21STATIC EFI_EVENT mEfiVirtualNotifyEvent;\r
22STATIC BOOLEAN mEfiGoneVirtual = FALSE;\r
23STATIC BOOLEAN mEfiAtRuntime = FALSE;\r
e8a3bee0 24EFI_RUNTIME_SERVICES *mRT;\r
25\r
f62485d3 26/**\r
27 Set AtRuntime flag as TRUE after ExitBootServices\r
93b0fbc8 28\r
f62485d3 29 @param[in] Event The Event that is being processed\r
30 @param[in] Context Event Context\r
31**/\r
878ddf1f 32VOID\r
33EFIAPI\r
34RuntimeDriverExitBootServices (\r
35 IN EFI_EVENT Event,\r
36 IN VOID *Context\r
37 )\r
878ddf1f 38{\r
e8a3bee0 39 //\r
40 // Clear out BootService globals\r
41 //\r
42 gBS = NULL;\r
43\r
878ddf1f 44 mEfiAtRuntime = TRUE;\r
45}\r
46\r
f62485d3 47/**\r
48 Fixup internal data so that EFI can be call in virtual mode.\r
93b0fbc8 49 Call the passed in Child Notify event and convert any pointers in\r
f62485d3 50 lib to virtual mode.\r
93b0fbc8 51\r
f62485d3 52 @param[in] Event The Event that is being processed\r
53 @param[in] Context Event Context\r
54**/\r
878ddf1f 55STATIC\r
56VOID\r
57EFIAPI\r
58RuntimeLibVirtualNotifyEvent (\r
59 IN EFI_EVENT Event,\r
60 IN VOID *Context\r
61 )\r
878ddf1f 62{\r
63 UINTN Index;\r
64 EFI_EVENT_NOTIFY ChildNotifyEventHandler;\r
65\r
93b0fbc8 66 for (Index = 0;\r
878ddf1f 67 _gDriverSetVirtualAddressMapEvent[Index] != NULL;\r
68 Index++) {\r
69 ChildNotifyEventHandler = _gDriverSetVirtualAddressMapEvent[Index];\r
70 ChildNotifyEventHandler (Event, NULL);\r
71 }\r
72\r
73 //\r
74 // Update global for Runtime Services Table and IO\r
75 //\r
e8a3bee0 76 EfiConvertPointer (0, (VOID **) &mRT);\r
878ddf1f 77\r
878ddf1f 78 mEfiGoneVirtual = TRUE;\r
79}\r
80\r
f62485d3 81/**\r
93b0fbc8 82 Intialize runtime Driver Lib if it has not yet been initialized.\r
83\r
f62485d3 84 @param[in] ImageHandle The firmware allocated handle for the EFI image.\r
85 @param[in] SystemTable A pointer to the EFI System Table.\r
93b0fbc8 86\r
f62485d3 87 @return EFI_STATUS always returns EFI_SUCCESS except EFI_ALREADY_STARTED if already started.\r
88**/\r
878ddf1f 89EFI_STATUS\r
a5e465a7 90EFIAPI\r
878ddf1f 91RuntimeDriverLibConstruct (\r
92 IN EFI_HANDLE ImageHandle,\r
93 IN EFI_SYSTEM_TABLE *SystemTable\r
94 )\r
878ddf1f 95{\r
96 EFI_STATUS Status;\r
97\r
f62485d3 98 ASSERT (SystemTable != NULL);\r
878ddf1f 99 mRT = SystemTable->RuntimeServices;\r
f62485d3 100 ASSERT (mRT != NULL);\r
101 \r
878ddf1f 102 //\r
103 // Register SetVirtualAddressMap () notify function\r
93b0fbc8 104 //\r
9cb053ef 105 ASSERT (gBS != NULL);\r
106 Status = gBS->CreateEvent (\r
93b0fbc8 107 EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE,\r
108 TPL_NOTIFY,\r
9cb053ef 109 RuntimeLibVirtualNotifyEvent,\r
110 NULL,\r
111 &mEfiVirtualNotifyEvent\r
112 );\r
f62485d3 113\r
9cb053ef 114 ASSERT_EFI_ERROR (Status);\r
878ddf1f 115\r
15b9277f 116 return Status;\r
878ddf1f 117}\r
118\r
f62485d3 119/**\r
120 This routine will free some resources which have been allocated in\r
93b0fbc8 121 EfiInitializeRuntimeDriverLib(). If a runtime driver exits with an error,\r
f62485d3 122 it must call this routine to free the allocated resource before the exiting.\r
123\r
124 @retval EFI_SUCCESS Shutdown the Runtime Driver Lib successfully\r
125 @retval EFI_UNSUPPORTED Runtime Driver lib was not initialized at all\r
126**/\r
878ddf1f 127EFI_STATUS\r
a5e465a7 128EFIAPI\r
878ddf1f 129RuntimeDriverLibDeconstruct (\r
f9081b64 130 IN EFI_HANDLE ImageHandle,\r
131 IN EFI_SYSTEM_TABLE *SystemTable\r
878ddf1f 132 )\r
878ddf1f 133{\r
134 EFI_STATUS Status;\r
135\r
878ddf1f 136 //\r
137 // Close SetVirtualAddressMap () notify function\r
138 //\r
15b9277f 139 ASSERT (gBS != NULL);\r
140 Status = gBS->CloseEvent (mEfiVirtualNotifyEvent);\r
141 ASSERT_EFI_ERROR (Status);\r
93b0fbc8 142\r
15b9277f 143 return Status;\r
878ddf1f 144}\r
145\r
f62485d3 146/**\r
147 Return TRUE if ExitBootServices () has been called\r
93b0fbc8 148\r
f62485d3 149 @retval TRUE If ExitBootServices () has been called\r
150**/\r
878ddf1f 151BOOLEAN\r
e8a3bee0 152EFIAPI\r
878ddf1f 153EfiAtRuntime (\r
154 VOID\r
155 )\r
878ddf1f 156{\r
157 return mEfiAtRuntime;\r
158}\r
159\r
f62485d3 160/**\r
161 Return TRUE if SetVirtualAddressMap () has been called\r
93b0fbc8 162\r
f62485d3 163 @retval TRUE If SetVirtualAddressMap () has been called\r
164**/\r
878ddf1f 165BOOLEAN\r
e8a3bee0 166EFIAPI\r
878ddf1f 167EfiGoneVirtual (\r
168 VOID\r
169 )\r
878ddf1f 170{\r
171 return mEfiGoneVirtual;\r
172}\r
173\r