1## @file 2# PcRtc driver to install EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL. 3# 4# This driver provides GetTime, SetTime, GetWakeupTime, SetWakeupTime services to Runtime Service Table. 5# It will install a tagging protocol with gEfiRealTimeClockArchProtocolGuid. 6# 7# Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> 8# This program and the accompanying materials 9# are licensed and made available under the terms and conditions of the BSD License 10# which accompanies this distribution. The full text of the license may be found at 11# http://opensource.org/licenses/bsd-license.php 12# 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16## 17 18[Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = PcRtc 21 MODULE_UNI_FILE = PcRtc.uni 22 FILE_GUID = 378D7B65-8DA9-4773-B6E4-A47826A833E1 23 MODULE_TYPE = DXE_RUNTIME_DRIVER 24 VERSION_STRING = 1.0 25 ENTRY_POINT = InitializePcRtc 26 27# 28# The following information is for reference only and not required by the build tools. 29# 30# VALID_ARCHITECTURES = IA32 X64 EBC 31# 32 33[Sources] 34 PcRtcEntry.c 35 PcRtc.c 36 PcRtc.h 37 38[Packages] 39 MdePkg/MdePkg.dec 40 MdeModulePkg/MdeModulePkg.dec 41 PcAtChipsetPkg/PcAtChipsetPkg.dec 42 43[LibraryClasses] 44 UefiRuntimeServicesTableLib 45 UefiRuntimeLib 46 UefiBootServicesTableLib 47 UefiDriverEntryPoint 48 TimerLib 49 IoLib 50 BaseMemoryLib 51 UefiLib 52 DebugLib 53 BaseLib 54 PcdLib 55 ReportStatusCodeLib 56 57[Protocols] 58 gEfiRealTimeClockArchProtocolGuid ## PRODUCES 59 60[Guids] 61 gEfiAcpi10TableGuid ## CONSUMES ## Event 62 gEfiAcpiTableGuid ## CONSUMES ## Event 63 64[Depex] 65 gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid 66 67[Pcd] 68 gEfiMdeModulePkgTokenSpaceGuid.PcdRealTimeClockUpdateTimeout ## CONSUMES 69 gPcAtChipsetPkgTokenSpaceGuid.PcdMinimalValidYear ## CONSUMES 70 gPcAtChipsetPkgTokenSpaceGuid.PcdMaximalValidYear ## CONSUMES 71 72[UserExtensions.TianoCore."ExtraFiles"] 73 PcRtcExtra.uni 74