1#/** @file 2# 3# Copyright (c) 2016, Hisilicon Limited. All rights reserved. 4# Copyright (c) 2016, Linaro Limited. All rights reserved. 5# 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 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 = PcieInitDxe 20 FILE_GUID = 2D53A704-A544-4A82-83DF-FFECF4B4AA97 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 ENTRY_POINT = PcieInitEntry 24 25[Sources] 26 PcieInit.c 27 PcieInitLib.c 28 29[Packages] 30 MdePkg/MdePkg.dec 31 MdeModulePkg/MdeModulePkg.dec 32 ArmPkg/ArmPkg.dec 33 OpenPlatformPkg/Chips/Hisilicon/HisiPkg.dec 34 35[LibraryClasses] 36 UefiDriverEntryPoint 37 UefiBootServicesTableLib 38 UefiLib 39 BaseLib 40 DebugLib 41 ArmLib 42 TimerLib 43 PcdLib 44 IoLib 45 OemMiscLib 46 47[Protocols] 48 #gEfiPcieRootBridgeProtocolGuid 49 50[Pcd] 51 gHisiTokenSpaceGuid.PcdPcieRootBridgeMask 52 gHisiTokenSpaceGuid.PcdPcieRootBridgeMask2P 53 gHisiTokenSpaceGuid.Pcdsoctype 54 gArmTokenSpaceGuid.PcdGicDistributorBase 55 56[FeaturePcd] 57 gHisiTokenSpaceGuid.PcdIsItsSupported 58 gHisiTokenSpaceGuid.PcdIsPciPerfTuningEnable 59 60[depex] 61 TRUE 62 63 64