1 | ## @file
|
---|
2 | # ACPI Platform Driver for Cloud Hypervisor
|
---|
3 | #
|
---|
4 | # Copyright (c) 2021, ARM Limited. All rights reserved.<BR>
|
---|
5 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 | #
|
---|
7 | ##
|
---|
8 |
|
---|
9 | [Defines]
|
---|
10 | INF_VERSION = 0x0001001B
|
---|
11 | BASE_NAME = CloudHvAcpiPlatformDxe
|
---|
12 | FILE_GUID = 6c76e407-73f2-dc1c-938f-5d6c4691ea93
|
---|
13 | MODULE_TYPE = DXE_DRIVER
|
---|
14 | VERSION_STRING = 1.0
|
---|
15 | ENTRY_POINT = CloudHvAcpiPlatformEntryPoint
|
---|
16 |
|
---|
17 | #
|
---|
18 | # The following information is for reference only and not required by the build tools.
|
---|
19 | #
|
---|
20 | # VALID_ARCHITECTURES = AARCH64
|
---|
21 | #
|
---|
22 |
|
---|
23 | [Sources]
|
---|
24 | CloudHvAcpi.c
|
---|
25 |
|
---|
26 | [Packages]
|
---|
27 | ArmVirtPkg/ArmVirtPkg.dec
|
---|
28 | MdePkg/MdePkg.dec
|
---|
29 | MdeModulePkg/MdeModulePkg.dec
|
---|
30 |
|
---|
31 | [LibraryClasses]
|
---|
32 | BaseLib
|
---|
33 | DebugLib
|
---|
34 | MemoryAllocationLib
|
---|
35 | OrderedCollectionLib
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | UefiDriverEntryPoint
|
---|
38 |
|
---|
39 | [Protocols]
|
---|
40 | gEfiAcpiTableProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
---|
41 |
|
---|
42 | [Pcd]
|
---|
43 | gArmVirtTokenSpaceGuid.PcdCloudHvAcpiRsdpBaseAddress
|
---|
44 |
|
---|
45 | [Depex]
|
---|
46 | gEfiAcpiTableProtocolGuid
|
---|