mirror of https://github.com/acidanthera/audk.git
OvmfPkg/LockBoxLib: use PcdAcpiS3Enable to detect S3 support
To avoid the potential inconsistency between PcdAcpiS3Enable and QemuFwCfgS3Enabled(), this commit modifies LockBoxLib to detect S3 support by PcdAcpiS3Enable as modules in MdeModulePkg do. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3573 Signed-off-by: Gary Lin <gary.lin@hpe.com> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com> Tested-by: Jim Fehlig <jfehlig@suse.com>
This commit is contained in:
parent
cb0d24637d
commit
28152333bc
|
@ -12,8 +12,6 @@
|
|||
#include <Library/UefiBootServicesTableLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/QemuFwCfgLib.h>
|
||||
#include <Library/QemuFwCfgS3Lib.h>
|
||||
#include <Protocol/LockBox.h>
|
||||
#include <LockBoxLib.h>
|
||||
|
||||
|
@ -117,7 +115,7 @@ LockBoxDxeLibInitialize (
|
|||
|
||||
Status = LockBoxLibInitialize ();
|
||||
if (!EFI_ERROR (Status)) {
|
||||
if (QemuFwCfgS3Enabled ()) {
|
||||
if (PcdGetBool (PcdAcpiS3Enable)) {
|
||||
//
|
||||
// When S3 enabled, the first driver run with this library linked will
|
||||
// have this library constructor to install LockBox protocol on the
|
||||
|
|
|
@ -33,8 +33,6 @@
|
|||
BaseMemoryLib
|
||||
DebugLib
|
||||
UefiBootServicesTableLib
|
||||
QemuFwCfgLib
|
||||
QemuFwCfgS3Lib
|
||||
|
||||
[Protocols]
|
||||
gEfiLockBoxProtocolGuid ## SOMETIMES_PRODUCES
|
||||
|
@ -42,6 +40,7 @@
|
|||
[Pcd]
|
||||
gUefiOvmfPkgTokenSpaceGuid.PcdOvmfLockBoxStorageBase
|
||||
gUefiOvmfPkgTokenSpaceGuid.PcdOvmfLockBoxStorageSize
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable
|
||||
|
||||
[FeaturePcd]
|
||||
gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire
|
||||
|
|
Loading…
Reference in New Issue