]> git.proxmox.com Git - mirror_edk2.git/blame - QuarkPlatformPkg/Platform/SpiFvbServices/PlatformSmmSpi.c
ArmPlatformPkg: retire obsolete PCDs
[mirror_edk2.git] / QuarkPlatformPkg / Platform / SpiFvbServices / PlatformSmmSpi.c
CommitLineData
b303605e
MK
1/** @file\r
2\r
3Copyright (c) 2013-2015 Intel Corporation.\r
4\r
5This 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\r
16#include "FwBlockService.h"\r
17\r
18\r
19/**\r
20 This function allows the caller to determine if UEFI SetVirtualAddressMap() has been called.\r
21\r
22 This function returns TRUE after all the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE functions have\r
23 executed as a result of the OS calling SetVirtualAddressMap(). Prior to this time FALSE\r
24 is returned. This function is used by runtime code to decide it is legal to access services\r
25 that go away after SetVirtualAddressMap().\r
26\r
27 @retval TRUE The system has finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.\r
28 @retval FALSE The system has not finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.\r
29\r
30**/\r
31BOOLEAN\r
32EfiGoneVirtual (\r
33 VOID\r
34 )\r
35{\r
36 return FALSE; //Hard coded to FALSE for SMM driver.\r
37}\r