1#/** @file
2#  Sample ACPI Platform Driver
3#
4#  Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>
5#  Copyright (c) 2014 - 2016, AMD Inc. All rights reserved.<BR>
6#
7#  This program and the accompanying materials
8#  are licensed and made available under the terms and conditions of the BSD License
9#  which accompanies this distribution.  The full text of the license may be found at
10#  http://opensource.org/licenses/bsd-license.php
11#
12#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15#**/
16#/**
17#  Derived from:
18#   MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/AcpiPlatformDxe.inf
19#**/
20
21[Defines]
22  INF_VERSION                    = 0x00010005
23  BASE_NAME                      = AcpiPlatform
24  FILE_GUID                      = f229c831-6a35-440b-9c84-dd3bc71e3865
25  MODULE_TYPE                    = DXE_DRIVER
26  VERSION_STRING                 = 1.0
27  ENTRY_POINT                    = AcpiPlatformEntryPoint
28
29[Sources]
30  AcpiPlatform.c
31
32[Packages]
33  ArmPkg/ArmPkg.dec
34  MdePkg/MdePkg.dec
35  MdeModulePkg/MdeModulePkg.dec
36  AmdModulePkg/AmdModulePkg.dec
37  OpenPlatformPkg/Platforms/AMD/Styx/AmdStyx.dec
38
39[LibraryClasses]
40  DebugLib
41  UefiBootServicesTableLib
42  UefiDriverEntryPoint
43  AmdStyxAcpiLib
44
45[Protocols]
46  gEfiAcpiTableProtocolGuid                     ## ALWAYS_CONSUMED
47
48[Depex]
49  gEfiAcpiTableProtocolGuid
50