Commit | Line | Data |
---|---|---|
be46cd5f | 1 | /** @file\r |
2 | The header file for Boot Script Executer module.\r | |
3 | \r | |
59cc677c | 4 | This driver is dispatched by Dxe core and the driver will reload itself to ACPI reserved memory \r |
be46cd5f | 5 | in the entry point. The functionality is to interpret and restore the S3 boot script \r |
6 | \r | |
84edd20b | 7 | Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r |
be46cd5f | 8 | \r |
9 | This program and the accompanying materials\r | |
10 | are licensed and made available under the terms and conditions of the BSD License\r | |
11 | which accompanies this distribution. The full text of the license may be found at\r | |
12 | http://opensource.org/licenses/bsd-license.php\r | |
13 | \r | |
14 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
15 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
16 | \r | |
17 | **/\r | |
18 | #ifndef _BOOT_SCRIPT_EXECUTOR_H_\r | |
19 | #define _BOOT_SCRIPT_EXECUTOR_H_\r | |
20 | \r | |
21 | #include <PiDxe.h>\r | |
22 | \r | |
23 | #include <Library/BaseLib.h>\r | |
24 | #include <Library/UefiDriverEntryPoint.h>\r | |
25 | #include <Library/BaseMemoryLib.h>\r | |
26 | #include <Library/DebugLib.h>\r | |
27 | #include <Library/S3BootScriptLib.h>\r | |
28 | #include <Library/PeCoffLib.h>\r | |
29 | #include <Library/DxeServicesLib.h>\r | |
30 | #include <Library/UefiBootServicesTableLib.h>\r | |
31 | #include <Library/UefiRuntimeServicesTableLib.h>\r | |
32 | #include <Library/PcdLib.h>\r | |
33 | #include <Library/CacheMaintenanceLib.h>\r | |
be46cd5f | 34 | #include <Library/TimerLib.h>\r |
35 | #include <Library/UefiLib.h>\r | |
36 | #include <Library/DebugAgentLib.h>\r | |
37 | #include <Library/LockBoxLib.h>\r | |
1e172d6b | 38 | #include <Library/CpuExceptionHandlerLib.h>\r |
84edd20b | 39 | #include <Library/DevicePathLib.h>\r |
be46cd5f | 40 | \r |
41 | #include <Guid/AcpiS3Context.h>\r | |
42 | #include <Guid/BootScriptExecutorVariable.h>\r | |
84edd20b SZ |
43 | #include <Guid/MemoryProfile.h>\r |
44 | \r | |
59cc677c | 45 | #include <Protocol/DxeSmmReadyToLock.h>\r |
be46cd5f | 46 | #include <IndustryStandard/Acpi.h>\r |
47 | /**\r | |
48 | a ASM function to transfer control to OS.\r | |
49 | \r | |
50 | @param S3WakingVector The S3 waking up vector saved in ACPI Facs table\r | |
51 | @param AcpiLowMemoryBase a buffer under 1M which could be used during the transfer \r | |
52 | **/\r | |
53 | VOID\r | |
54 | AsmTransferControl (\r | |
55 | IN UINT32 S3WakingVector,\r | |
56 | IN UINT32 AcpiLowMemoryBase\r | |
57 | );\r | |
58 | /**\r | |
59 | a 32bit ASM function to transfer control to OS.\r | |
60 | \r | |
61 | @param S3WakingVector The S3 waking up vector saved in ACPI Facs table\r | |
62 | @param AcpiLowMemoryBase a buffer under 1M which could be used during the transfer \r | |
63 | **/\r | |
64 | VOID\r | |
65 | AsmTransferControl32 (\r | |
66 | IN UINT32 S3WakingVector,\r | |
67 | IN UINT32 AcpiLowMemoryBase\r | |
68 | );\r | |
69 | /**\r | |
70 | a 16bit ASM function to transfer control to OS.\r | |
71 | **/\r | |
72 | VOID\r | |
73 | AsmTransferControl16 (\r | |
74 | VOID\r | |
75 | );\r | |
76 | /**\r | |
77 | Set a IDT entry for interrupt vector 3 for debug purpose. \r | |
78 | \r | |
79 | @param AcpiS3Context a pointer to a structure of ACPI_S3_CONTEXT \r | |
80 | \r | |
81 | **/\r | |
82 | VOID\r | |
83 | SetIdtEntry ( \r | |
84 | IN ACPI_S3_CONTEXT *AcpiS3Context\r | |
85 | );\r | |
86 | \r | |
87 | extern UINT32 AsmFixAddress16;\r | |
88 | extern UINT32 AsmJmpAddr32;\r | |
59cc677c | 89 | extern BOOLEAN mPage1GSupport;\r |
be46cd5f | 90 | \r |
91 | #endif //_BOOT_SCRIPT_EXECUTOR_H_\r |