]> git.proxmox.com Git - mirror_edk2.git/blame - QuarkPlatformPkg/Platform/SpiFvbServices/PlatformSmmSpi.c
ArmPkg/CompilerIntrinsicsLib: Add uread, uwrite GCC assembly sources
[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
0eb3de2e 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
b303605e
MK
6\r
7\r
8**/\r
9\r
10#include "FwBlockService.h"\r
11\r
12\r
13/**\r
14 This function allows the caller to determine if UEFI SetVirtualAddressMap() has been called.\r
15\r
16 This function returns TRUE after all the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE functions have\r
17 executed as a result of the OS calling SetVirtualAddressMap(). Prior to this time FALSE\r
18 is returned. This function is used by runtime code to decide it is legal to access services\r
19 that go away after SetVirtualAddressMap().\r
20\r
21 @retval TRUE The system has finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.\r
22 @retval FALSE The system has not finished executing the EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.\r
23\r
24**/\r
25BOOLEAN\r
26EfiGoneVirtual (\r
27 VOID\r
28 )\r
29{\r
30 return FALSE; //Hard coded to FALSE for SMM driver.\r
31}\r