2011-08-29 22:18:19 +00:00
|
|
|
/** @file
|
|
|
|
|
The header file for Boot Script Executer module.
|
2018-06-27 21:08:52 +08:00
|
|
|
|
|
|
|
|
This driver is dispatched by Dxe core and the driver will reload itself to ACPI reserved memory
|
|
|
|
|
in the entry point. The functionality is to interpret and restore the S3 boot script
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2017-02-27 01:43:06 +08:00
|
|
|
Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
|
2011-08-29 22:18:19 +00:00
|
|
|
|
2019-04-03 16:05:13 -07:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-08-29 22:18:19 +00:00
|
|
|
|
|
|
|
|
**/
|
2021-12-05 14:54:02 -08:00
|
|
|
|
MdeModulePkg: Replace include guards with #pragma once
Replace traditional `#ifndef`/`#define`/`#endif` include guards with
`#pragma` once.
`#pragma once` is a widely supported preprocessor directive that
prevents header files from being included multiple times. It is
supported by all toolchains used to build edk2: GCC, Clang/LLVM, and
MSVC.
Compared to macro-based include guards, `#pragma once`:
- Eliminates the risk of macro name collisions or copy/paste errors
where two headers inadvertently use the same guard macro.
- Eliminate inconsistency in the way include guard macros are named
(e.g., some files use `__FILE_H__`, others use `FILE_H_`, etc.).
- Reduces boilerplate (three lines replaced by one).
- Avoids polluting the macro namespace with guard symbols.
- Can improve build times as the preprocessor can skip re-opening the
file entirely, rather than re-reading it to find the matching
`#endif` ("multiple-include optimization").
- Note that some compilers may already optimize traditional include
guards, by recognzining the idiomatic pattern.
This change is made acknowledging that overall portability of the
code will technically be reduced, as `#pragma once` is not part of the
C/C++ standards.
However, this is considered acceptable given:
1. edk2 already defines a subset of supported compilers in
BaseTools/Conf/tools_def.template, all of which have supported
`#pragma once` for over two decades.
2. There have been concerns raised to the project about inconsistent
include guard naming and potential macro collisions.
Approximate compiler support dates:
- MSVC: Supported since Visual C++ 4.2 (1996)
- GCC: Supported since 3.4 (2004)
(http://gnu.ist.utl.pt/software/gcc/gcc-3.4/changes.html)
- Clang (LLVM based): Since initial release in 2007
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
2026-02-03 13:48:28 -05:00
|
|
|
#pragma once
|
2011-08-29 22:18:19 +00:00
|
|
|
|
|
|
|
|
#include <PiDxe.h>
|
|
|
|
|
|
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
|
#include <Library/UefiDriverEntryPoint.h>
|
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
|
#include <Library/S3BootScriptLib.h>
|
|
|
|
|
#include <Library/PeCoffLib.h>
|
|
|
|
|
#include <Library/DxeServicesLib.h>
|
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
|
#include <Library/CacheMaintenanceLib.h>
|
|
|
|
|
#include <Library/TimerLib.h>
|
|
|
|
|
#include <Library/UefiLib.h>
|
|
|
|
|
#include <Library/DebugAgentLib.h>
|
|
|
|
|
#include <Library/LockBoxLib.h>
|
2012-03-15 05:20:41 +00:00
|
|
|
#include <Library/CpuExceptionHandlerLib.h>
|
2014-11-12 03:27:48 +00:00
|
|
|
#include <Library/DevicePathLib.h>
|
2018-01-15 10:25:40 +08:00
|
|
|
#include <Library/DxeServicesTableLib.h>
|
2011-08-29 22:18:19 +00:00
|
|
|
|
|
|
|
|
#include <Guid/AcpiS3Context.h>
|
|
|
|
|
#include <Guid/BootScriptExecutorVariable.h>
|
2014-11-12 03:27:48 +00:00
|
|
|
#include <Guid/MemoryProfile.h>
|
|
|
|
|
|
2013-11-25 06:20:18 +00:00
|
|
|
#include <Protocol/DxeSmmReadyToLock.h>
|
2011-08-29 22:18:19 +00:00
|
|
|
#include <IndustryStandard/Acpi.h>
|
2017-02-27 01:43:06 +08:00
|
|
|
|
|
|
|
|
#define PAGING_1G_ADDRESS_MASK_64 0x000FFFFFC0000000ull
|
|
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
/**
|
|
|
|
|
a ASM function to transfer control to OS.
|
2018-06-27 21:08:52 +08:00
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
@param S3WakingVector The S3 waking up vector saved in ACPI Facs table
|
2018-06-27 21:08:52 +08:00
|
|
|
@param AcpiLowMemoryBase a buffer under 1M which could be used during the transfer
|
2011-08-29 22:18:19 +00:00
|
|
|
**/
|
|
|
|
|
VOID
|
|
|
|
|
AsmTransferControl (
|
|
|
|
|
IN UINT32 S3WakingVector,
|
|
|
|
|
IN UINT32 AcpiLowMemoryBase
|
|
|
|
|
);
|
2021-12-05 14:54:02 -08:00
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
/**
|
|
|
|
|
a 32bit ASM function to transfer control to OS.
|
2018-06-27 21:08:52 +08:00
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
@param S3WakingVector The S3 waking up vector saved in ACPI Facs table
|
2018-06-27 21:08:52 +08:00
|
|
|
@param AcpiLowMemoryBase a buffer under 1M which could be used during the transfer
|
2011-08-29 22:18:19 +00:00
|
|
|
**/
|
|
|
|
|
VOID
|
|
|
|
|
AsmTransferControl32 (
|
|
|
|
|
IN UINT32 S3WakingVector,
|
|
|
|
|
IN UINT32 AcpiLowMemoryBase
|
|
|
|
|
);
|
2021-12-05 14:54:02 -08:00
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
/**
|
|
|
|
|
a 16bit ASM function to transfer control to OS.
|
|
|
|
|
**/
|
|
|
|
|
VOID
|
|
|
|
|
AsmTransferControl16 (
|
|
|
|
|
VOID
|
|
|
|
|
);
|
2021-12-05 14:54:02 -08:00
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
/**
|
2018-06-27 21:08:52 +08:00
|
|
|
Set a IDT entry for interrupt vector 3 for debug purpose.
|
|
|
|
|
|
|
|
|
|
@param AcpiS3Context a pointer to a structure of ACPI_S3_CONTEXT
|
|
|
|
|
|
2011-08-29 22:18:19 +00:00
|
|
|
**/
|
|
|
|
|
VOID
|
2018-06-27 21:08:52 +08:00
|
|
|
SetIdtEntry (
|
2011-08-29 22:18:19 +00:00
|
|
|
IN ACPI_S3_CONTEXT *AcpiS3Context
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
extern UINT32 AsmFixAddress16;
|
|
|
|
|
extern UINT32 AsmJmpAddr32;
|
2013-11-25 06:20:18 +00:00
|
|
|
extern BOOLEAN mPage1GSupport;
|
2017-02-27 01:43:06 +08:00
|
|
|
extern UINT64 mAddressEncMask;
|