]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/UefiRuntimeLib/RuntimeLib.c
Add missing files
[mirror_edk2.git] / MdePkg / Library / UefiRuntimeLib / RuntimeLib.c
CommitLineData
ebcc8fb7 1/**@file\r
2 Library utility functions for Runtime driver.\r
3\r
4Copyright (c) 2006 Intel Corporation. <BR>\r
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
13**/\r
14\r
15#include <RuntimeLibInternal.h>\r
16\r
17///\r
18/// Driver Lib Module Globals\r
19///\r
20\r
21STATIC EFI_EVENT mEfiVirtualNotifyEvent;\r
22STATIC BOOLEAN mEfiGoneVirtual = FALSE;\r
23STATIC BOOLEAN mEfiAtRuntime = FALSE;\r
24EFI_RUNTIME_SERVICES *mRT;\r
25\r
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
32VOID\r
33EFIAPI\r
34RuntimeDriverExitBootServices (\r
35 IN EFI_EVENT Event,\r
36 IN VOID *Context\r
37 )\r
38{\r
39 //\r
40 // Clear out BootService globals\r
41 //\r
42 gBS = NULL;\r
43\r
44 mEfiAtRuntime = TRUE;\r
45}\r
46\r
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
55STATIC\r
56VOID\r
57EFIAPI\r
58RuntimeLibVirtualNotifyEvent (\r
59 IN EFI_EVENT Event,\r
60 IN VOID *Context\r
61 )\r
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
76 EfiConvertPointer (0, (VOID **) &mRT);\r
77\r
78 mEfiGoneVirtual = TRUE;\r
79}\r
80\r
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
89EFI_STATUS\r
90EFIAPI\r
91RuntimeDriverLibConstruct (\r
92 IN EFI_HANDLE ImageHandle,\r
93 IN EFI_SYSTEM_TABLE *SystemTable\r
94 )\r
95{\r
96 EFI_STATUS Status;\r
97\r
98 ASSERT (SystemTable != NULL);\r
99 mRT = SystemTable->RuntimeServices;\r
100 ASSERT (mRT != NULL);\r
101 \r
102 //\r
103 // Register SetVirtualAddressMap () notify function\r
104 //\r
105 ASSERT (gBS != NULL);\r
106 Status = gBS->CreateEvent (\r
107 EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE,\r
108 TPL_NOTIFY,\r
109 RuntimeLibVirtualNotifyEvent,\r
110 NULL,\r
111 &mEfiVirtualNotifyEvent\r
112 );\r
113\r
114 ASSERT_EFI_ERROR (Status);\r
115\r
116 return Status;\r
117}\r
118\r
119/**\r
120 This routine will free some resources which have been allocated in\r
121 EfiInitializeRuntimeDriverLib(). If a runtime driver exits with an error,\r
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
127EFI_STATUS\r
128EFIAPI\r
129RuntimeDriverLibDeconstruct (\r
130 IN EFI_HANDLE ImageHandle,\r
131 IN EFI_SYSTEM_TABLE *SystemTable\r
132 )\r
133{\r
134 EFI_STATUS Status;\r
135\r
136 //\r
137 // Close SetVirtualAddressMap () notify function\r
138 //\r
139 ASSERT (gBS != NULL);\r
140 Status = gBS->CloseEvent (mEfiVirtualNotifyEvent);\r
141 ASSERT_EFI_ERROR (Status);\r
142\r
143 return Status;\r
144}\r
145\r
146/**\r
147 Return TRUE if ExitBootServices () has been called\r
148\r
149 @retval TRUE If ExitBootServices () has been called\r
150**/\r
151BOOLEAN\r
152EFIAPI\r
153EfiAtRuntime (\r
154 VOID\r
155 )\r
156{\r
157 return mEfiAtRuntime;\r
158}\r
159\r
160/**\r
161 Return TRUE if SetVirtualAddressMap () has been called\r
162\r
163 @retval TRUE If SetVirtualAddressMap () has been called\r
164**/\r
165BOOLEAN\r
166EFIAPI\r
167EfiGoneVirtual (\r
168 VOID\r
169 )\r
170{\r
171 return mEfiGoneVirtual;\r
172}\r
173\r