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 | [Depex]
|
---|
61 | gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
|
---|
62 |
|
---|
63 | [Pcd]
|
---|
64 | gEfiMdeModulePkgTokenSpaceGuid.PcdRealTimeClockUpdateTimeout ## CONSUMES
|
---|
65 | gPcAtChipsetPkgTokenSpaceGuid.PcdMinimalValidYear ## CONSUMES
|
---|
66 | gPcAtChipsetPkgTokenSpaceGuid.PcdMaximalValidYear ## CONSUMES
|
---|
67 |
|
---|
68 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
69 | PcRtcExtra.uni
|
---|