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, Red Hat, Inc.
|
---|
14 | #
|
---|
15 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
16 | #
|
---|
17 | ##
|
---|
18 |
|
---|
19 | [Defines]
|
---|
20 | INF_VERSION = 0x00010005
|
---|
21 | BASE_NAME = CpuS3DataDxe
|
---|
22 | MODULE_UNI_FILE = CpuS3DataDxe.uni
|
---|
23 | FILE_GUID = 4D2E57EE-0E3F-44DD-93C4-D3B57E96945D
|
---|
24 | MODULE_TYPE = DXE_DRIVER
|
---|
25 | VERSION_STRING = 1.0
|
---|
26 | ENTRY_POINT = CpuS3DataInitialize
|
---|
27 |
|
---|
28 | # The following information is for reference only and not required by the build
|
---|
29 | # tools.
|
---|
30 | #
|
---|
31 | # VALID_ARCHITECTURES = IA32 X64
|
---|
32 |
|
---|
33 | [Sources]
|
---|
34 | CpuS3Data.c
|
---|
35 |
|
---|
36 | [Packages]
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 | MdeModulePkg/MdeModulePkg.dec
|
---|
39 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | UefiDriverEntryPoint
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | BaseMemoryLib
|
---|
45 | DebugLib
|
---|
46 | BaseLib
|
---|
47 | MtrrLib
|
---|
48 | MemoryAllocationLib
|
---|
49 |
|
---|
50 | [Guids]
|
---|
51 | gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
|
---|
52 |
|
---|
53 | [Protocols]
|
---|
54 | gEfiMpServiceProtocolGuid ## CONSUMES
|
---|
55 |
|
---|
56 | [Pcd]
|
---|
57 | gUefiCpuPkgTokenSpaceGuid.PcdCpuApStackSize ## CONSUMES
|
---|
58 | gUefiCpuPkgTokenSpaceGuid.PcdCpuS3DataAddress ## PRODUCES
|
---|
59 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
|
---|
60 |
|
---|
61 | [Depex]
|
---|
62 | gEfiMpServiceProtocolGuid
|
---|
63 |
|
---|
64 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
65 | CpuS3DataDxeExtra.uni
|
---|