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 | # This program and the accompanying materials
|
---|
16 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
17 | # which accompanies this distribution. The full text of the license may be found at
|
---|
18 | # http://opensource.org/licenses/bsd-license.php
|
---|
19 | #
|
---|
20 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
21 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
22 | #
|
---|
23 | ##
|
---|
24 |
|
---|
25 | [Defines]
|
---|
26 | INF_VERSION = 0x00010005
|
---|
27 | BASE_NAME = CpuS3DataDxe
|
---|
28 | MODULE_UNI_FILE = CpuS3DataDxe.uni
|
---|
29 | FILE_GUID = 4D2E57EE-0E3F-44DD-93C4-D3B57E96945D
|
---|
30 | MODULE_TYPE = DXE_DRIVER
|
---|
31 | VERSION_STRING = 1.0
|
---|
32 | ENTRY_POINT = CpuS3DataInitialize
|
---|
33 |
|
---|
34 | # The following information is for reference only and not required by the build
|
---|
35 | # tools.
|
---|
36 | #
|
---|
37 | # VALID_ARCHITECTURES = IA32 X64
|
---|
38 |
|
---|
39 | [Sources]
|
---|
40 | CpuS3Data.c
|
---|
41 |
|
---|
42 | [Packages]
|
---|
43 | MdePkg/MdePkg.dec
|
---|
44 | MdeModulePkg/MdeModulePkg.dec
|
---|
45 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
46 |
|
---|
47 | [LibraryClasses]
|
---|
48 | UefiDriverEntryPoint
|
---|
49 | UefiBootServicesTableLib
|
---|
50 | BaseMemoryLib
|
---|
51 | DebugLib
|
---|
52 | BaseLib
|
---|
53 | MtrrLib
|
---|
54 |
|
---|
55 | [Guids]
|
---|
56 | gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
|
---|
57 |
|
---|
58 | [Protocols]
|
---|
59 | gEfiMpServiceProtocolGuid ## CONSUMES
|
---|
60 |
|
---|
61 | [Pcd]
|
---|
62 | gUefiCpuPkgTokenSpaceGuid.PcdCpuApStackSize ## CONSUMES
|
---|
63 | gUefiCpuPkgTokenSpaceGuid.PcdCpuS3DataAddress ## PRODUCES
|
---|
64 | gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES
|
---|
65 |
|
---|
66 | [Depex]
|
---|
67 | gEfiMpServiceProtocolGuid
|
---|
68 |
|
---|
69 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
70 | CpuS3DataDxeExtra.uni
|
---|