summaryrefslogtreecommitdiff
path: root/ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf
diff options
context:
space:
mode:
authorGuo Mang <mang.guo@intel.com>2016-06-02 13:57:38 +0800
committerHao Wu <hao.a.wu@intel.com>2016-06-07 09:55:43 +0800
commit027f496a7e6db871ef6590cec153004def4fc12f (patch)
tree9d27cc4dbfdc9a0a5878e862d087d549b8514d45 /ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf
parent2b3fb23071cc2042c023aa51466e61a1566278d9 (diff)
downloadedk2-platforms-027f496a7e6db871ef6590cec153004def4fc12f.tar.xz
ChvRefCodePkg: Add PchInit module.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Mang <mang.guo@intel.com>
Diffstat (limited to 'ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf')
-rw-r--r--ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf83
1 files changed, 83 insertions, 0 deletions
diff --git a/ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf b/ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf
new file mode 100644
index 0000000000..506723cef1
--- /dev/null
+++ b/ChvRefCodePkg/CherryViewSoc/SouthCluster/PchInit/Dxe/PchInitDxe.inf
@@ -0,0 +1,83 @@
+## @file
+# Initializes PCH hardware.
+#
+# This module configures and initializes the PCH devices by
+# the platform policy.
+#
+# Copyright (c) 2012 - 2015, Intel Corporation. All rights reserved.<BR>
+#
+# This program and the accompanying materials
+# are licensed and made available under the terms and conditions of the BSD License
+# which accompanies this distribution. The full text of the license may be found at
+# http://opensource.org/licenses/bsd-license.php.
+#
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+#
+##
+
+[Defines]
+ INF_VERSION = 0x00010005
+ BASE_NAME = PchInitDxe
+ FILE_GUID = 48D30263-7D25-4AD9-855D-61FB87F2C257
+ MODULE_TYPE = DXE_DRIVER
+ VERSION_STRING = 1.0
+ ENTRY_POINT = PchInitEntryPoint
+
+[Sources]
+ PchInit.h
+ PchInit.c
+ PchIsh.c
+ PchLpe.c
+ PchLpss.c
+ PchSata.c
+ PchScc.c
+ PchDebugDump.c
+ PchUsbOtg.c
+ ../Common/PchUsbCommon.c
+
+[Packages]
+ MdePkg/MdePkg.dec
+ ChvRefCodePkg/ChvRefCodePkg.dec
+
+[LibraryClasses]
+ UefiBootServicesTableLib
+ DxeServicesTableLib
+ MemoryAllocationLib
+ UefiDriverEntryPoint
+ DebugLib
+ PcdLib
+ IoLib
+ PchPlatformLib
+ UefiLib
+ S3BootScriptLib
+ AslUpdateLib
+ TimerLib
+
+[Protocols]
+ ## CONSUMES
+ gDxePchPlatformPolicyProtocolGuid
+
+ ## PRODUCES
+ gEfiPchInfoProtocolGuid
+
+ ## SOMETIMES_CONSUMES
+ gEfiAcpiTableProtocolGuid
+
+ ## SOMETIMES_CONSUMES
+ gEfiGlobalNvsAreaProtocolGuid
+
+[Guids]
+ ## CONSUMES ## Event
+ gEfiEventExitBootServicesGuid
+
+[Pcd]
+ ## SOMETIMES_CONSUMES
+ gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress
+
+[Depex]
+ gDxePchPlatformPolicyProtocolGuid AND
+ gEfiPciHostBridgeResourceAllocationProtocolGuid AND ## This is to ensure that PCI MMIO and IO resource has been prepared and available for this driver to allocate.
+ gEfiSmmControl2ProtocolGuid AND
+ gEndOfSaInitDxeProtocolGuid
+