]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Library/EdkUefiRuntimeLib/Common/RuntimeLib.c
Optimize library instance selection algorithm.
[mirror_edk2.git] / EdkModulePkg / Library / EdkUefiRuntimeLib / Common / RuntimeLib.c
CommitLineData
f62485d3 1/**@file\r
2 Library utility functions for Runtime driver.\r
3 \r
4Copyright (c) 2006 Intel Corporation. <BR>\r
878ddf1f 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
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
28 \r
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
49 Call the passed in Child Notify event and convert any pointers in \r
50 lib to virtual mode.\r
51 \r
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
66 for (Index = 0; \r
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
82 Intialize runtime Driver Lib if it has not yet been initialized. \r
83 \r
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
86 \r
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
104 // \r
f1cd55fe 105 if (_gDriverSetVirtualAddressMapEvent[0] != NULL) {\r
f62485d3 106 ASSERT (gBS != NULL);\r
107 Status = gBS->CreateEvent (\r
108 EFI_EVENT_SIGNAL_VIRTUAL_ADDRESS_CHANGE,\r
109 EFI_TPL_NOTIFY,\r
110 RuntimeLibVirtualNotifyEvent,\r
111 NULL,\r
112 &mEfiVirtualNotifyEvent\r
113 );\r
114\r
115 ASSERT_EFI_ERROR (Status);\r
f1cd55fe 116 }\r
878ddf1f 117\r
118 return EFI_SUCCESS;\r
119}\r
120\r
f62485d3 121/**\r
122 This routine will free some resources which have been allocated in\r
123 EfiInitializeRuntimeDriverLib(). If a runtime driver exits with an error, \r
124 it must call this routine to free the allocated resource before the exiting.\r
125\r
126 @retval EFI_SUCCESS Shutdown the Runtime Driver Lib successfully\r
127 @retval EFI_UNSUPPORTED Runtime Driver lib was not initialized at all\r
128**/\r
878ddf1f 129EFI_STATUS\r
a5e465a7 130EFIAPI\r
878ddf1f 131RuntimeDriverLibDeconstruct (\r
f9081b64 132 IN EFI_HANDLE ImageHandle,\r
133 IN EFI_SYSTEM_TABLE *SystemTable\r
878ddf1f 134 )\r
878ddf1f 135{\r
136 EFI_STATUS Status;\r
137\r
878ddf1f 138 //\r
139 // Close SetVirtualAddressMap () notify function\r
140 //\r
f1cd55fe 141 if (_gDriverSetVirtualAddressMapEvent[0] != NULL) {\r
f62485d3 142 ASSERT (gBS != NULL);\r
143 Status = gBS->CloseEvent (mEfiVirtualNotifyEvent);\r
144 ASSERT_EFI_ERROR (Status);\r
f1cd55fe 145 }\r
878ddf1f 146\r
147 return EFI_SUCCESS;\r
148}\r
149\r
f62485d3 150/**\r
151 Return TRUE if ExitBootServices () has been called\r
152 \r
153 @retval TRUE If ExitBootServices () has been called\r
154**/\r
878ddf1f 155BOOLEAN\r
e8a3bee0 156EFIAPI\r
878ddf1f 157EfiAtRuntime (\r
158 VOID\r
159 )\r
878ddf1f 160{\r
161 return mEfiAtRuntime;\r
162}\r
163\r
f62485d3 164/**\r
165 Return TRUE if SetVirtualAddressMap () has been called\r
166 \r
167 @retval TRUE If SetVirtualAddressMap () has been called\r
168**/\r
878ddf1f 169BOOLEAN\r
e8a3bee0 170EFIAPI\r
878ddf1f 171EfiGoneVirtual (\r
172 VOID\r
173 )\r
878ddf1f 174{\r
175 return mEfiGoneVirtual;\r
176}\r
177\r