1 | ## @file
|
---|
2 | # ACPI CPU Data initialization module
|
---|
3 | #
|
---|
4 | # This module initializes the ACPI_CPU_DATA structure and registers the address
|
---|
5 | # of this structure in the PcdCpuS3DataAddress PCD. This is a generic/simple
|
---|
6 | # version of this module. It does not provide a machine check handler or CPU
|
---|
7 | # register initialization tables for ACPI S3 resume. It also only supports the
|
---|
8 | # number of CPUs reported by the MP Services Protocol, so this module does not
|
---|
9 | # support hot plug CPUs. This module can be copied into a CPU specific package
|
---|
10 | # and customized if these additional features are required.
|
---|
11 | #
|
---|
12 | # Copyright (c) 2013-2016, Intel Corporation. All rights reserved.<BR>
|
---|
13 | # Copyright (c) 2015-2020, Red Hat, Inc.
|
---|
14 | #
|
---|
15 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
16 | #
|
---|
17 | ##
|
---|
18 |
|
---|
19 | [Defines]
|
---|
20 | INF_VERSION = 1.29
|
---|
21 | BASE_NAME = CpuS3DataDxe
|
---|
22 | FILE_GUID = 229B7EFD-DA02-46B9-93F4-E20C009F94E9
|
---|
23 | MODULE_TYPE = DXE_DRIVER
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 | ENTRY_POINT = CpuS3DataInitialize
|
---|
26 |
|
---|
27 | # The following information is for reference only and not required by the build
|
---|
28 | # tools.
|
---|
29 | #
|
---|
30 | # VALID_ARCHITECTURES = IA32 X64
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | CpuS3Data.c
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdeModulePkg/MdeModulePkg.dec
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 | OvmfPkg/OvmfPkg.dec
|
---|
39 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | BaseLib
|
---|
43 | BaseMemoryLib
|
---|
44 | DebugLib
|
---|
45 | MemoryAllocationLib
|
---|
46 | MtrrLib
|
---|
47 | UefiBootServicesTableLib
|
---|
48 | UefiDriverEntryPoint
|
---|
49 |
|
---|
50 | [Guids]
|
---|
51 | gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
|
---|
52 |
|
---|
53 | [Protocols]
|
---|
54 | gEfiMpServiceProtocolGuid ## CONSUMES
|
---|
55 |
|
---|
56 | [Pcd]
|
---|
57 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
|
---|
58 | gUefiCpuPkgTokenSpaceGuid.PcdCpuApStackSize ## CONSUMES
|
---|
59 | gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber ## CONSUMES
|
---|
60 | gUefiCpuPkgTokenSpaceGuid.PcdCpuS3DataAddress ## PRODUCES
|
---|
61 | gUefiOvmfPkgTokenSpaceGuid.PcdQ35SmramAtDefaultSmbase ## CONSUMES
|
---|
62 |
|
---|
63 | [Depex]
|
---|
64 | gEfiMpServiceProtocolGuid
|
---|