]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf
MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe: Add support for PCD PcdPteMemoryEn...
[mirror_edk2.git] / MdeModulePkg / Universal / Acpi / BootScriptExecutorDxe / BootScriptExecutorDxe.inf
... / ...
CommitLineData
1## @file\r
2# Boot Script Executor Module\r
3#\r
4# This is a standalone Boot Script Executor. Standalone means it does not\r
5# depends on any PEI or DXE service.\r
6#\r
7# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r
8# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>\r
9#\r
10# This program and the accompanying materials are\r
11# licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14#\r
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
17#\r
18##\r
19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = BootScriptExecutorDxe\r
23 MODULE_UNI_FILE = BootScriptExecutorDxe.uni\r
24 FILE_GUID = FA20568B-548B-4b2b-81EF-1BA08D4A3CEC\r
25 MODULE_TYPE = DXE_DRIVER\r
26 VERSION_STRING = 1.0\r
27\r
28 ENTRY_POINT = BootScriptExecutorEntryPoint\r
29\r
30#\r
31# The following information is for reference only and not required by the build tools.\r
32#\r
33# VALID_ARCHITECTURES = IA32 X64\r
34#\r
35\r
36[Sources]\r
37 ScriptExecute.h\r
38 ScriptExecute.c\r
39\r
40[Sources.X64]\r
41 X64/SetIdtEntry.c \r
42 X64/S3Asm.nasm\r
43 X64/S3Asm.asm\r
44 X64/S3Asm.S\r
45 \r
46[Sources.Ia32]\r
47 IA32/SetIdtEntry.c \r
48 IA32/S3Asm.nasm\r
49 IA32/S3Asm.asm\r
50 IA32/S3Asm.S\r
51\r
52[Packages]\r
53 MdePkg/MdePkg.dec\r
54 MdeModulePkg/MdeModulePkg.dec\r
55\r
56[LibraryClasses]\r
57 PcdLib\r
58 BaseMemoryLib\r
59 UefiDriverEntryPoint\r
60 BaseLib\r
61 S3BootScriptLib\r
62 PeCoffLib\r
63 DxeServicesLib\r
64 UefiBootServicesTableLib\r
65 CacheMaintenanceLib\r
66 UefiLib\r
67 DebugAgentLib\r
68 LockBoxLib\r
69 CpuExceptionHandlerLib\r
70 DevicePathLib\r
71\r
72[Guids]\r
73 gEfiBootScriptExecutorVariableGuid ## PRODUCES ## UNDEFINED # SaveLockBox\r
74 gEfiBootScriptExecutorContextGuid ## PRODUCES ## UNDEFINED # SaveLockBox\r
75 gEdkiiMemoryProfileGuid ## SOMETIMES_CONSUMES ## GUID # Locate protocol\r
76\r
77[Protocols]\r
78 ## NOTIFY\r
79 ## CONSUMES\r
80 gEfiDxeSmmReadyToLockProtocolGuid\r
81\r
82[FeaturePcd]\r
83 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode ## CONSUMES\r
84\r
85[Pcd]\r
86 gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable ## SOMETIMES_CONSUMES\r
87 gEfiMdeModulePkgTokenSpaceGuid.PcdMemoryProfilePropertyMask ## CONSUMES\r
88 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES\r
89 gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES\r
90\r
91[Depex]\r
92 gEfiLockBoxProtocolGuid\r
93\r
94[UserExtensions.TianoCore."ExtraFiles"]\r
95 BootScriptExecutorDxeExtra.uni\r