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|DXE_DRIVER DXE_RUNTIME_DRIVER 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 ArmSmcLib 37 ArmHvcLib 38 BaseLib 39 DebugLib 40 UefiBootServicesTableLib 41 42 [Protocols] 43 gFdtClientProtocolGuid ## CONSUMES 44 45 [Depex] 46 gFdtClientProtocolGuid 47