1#/** @file
2# Reset System lib using PSCI hypervisor or secure monitor calls
3#
4# Copyright (c) 2008, Apple Inc. All rights reserved.<BR>
5# Copyright (c) 2014, Linaro Ltd. 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#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14#
15#**/
16
17[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = ArmVirtPsciResetSystemLib
20  FILE_GUID                      = c81d76ed-66fa-44a3-ac4a-f163120187a9
21  MODULE_TYPE                    = BASE
22  VERSION_STRING                 = 1.0
23  LIBRARY_CLASS                  = EfiResetSystemLib
24  CONSTRUCTOR                    = ArmPsciResetSystemLibConstructor
25
26[Sources]
27  ArmVirtPsciResetSystemLib.c
28
29[Packages]
30  ArmPkg/ArmPkg.dec
31  ArmVirtPkg/ArmVirtPkg.dec
32  MdePkg/MdePkg.dec
33  EmbeddedPkg/EmbeddedPkg.dec
34
35[LibraryClasses]
36  DebugLib
37  BaseLib
38  ArmSmcLib
39  ArmHvcLib
40
41[Pcd]
42  gArmVirtTokenSpaceGuid.PcdArmPsciMethod
43