]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/PcatCompatible/RealTimeClockRuntimeDxe/PcRtc.inf
fc2429881a409fe66a51c71b5e16f972e774996b
[mirror_edk2.git] / IntelFrameworkModulePkg / PcatCompatible / RealTimeClockRuntimeDxe / PcRtc.inf
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 # Copyright (c) 2006 - 2007, Intel Corporation.
6 #
7 # All rights reserved.
8 # This software and associated documentation (if any) is furnished
9 # under a license and may only be used or copied in accordance
10 # with the terms of the license. Except as permitted by such
11 # license, no part of this software or documentation may be
12 # reproduced, stored in a retrieval system, or transmitted in any
13 # form or by any means without the express written consent of
14 # Intel Corporation.
15 #
16 #
17 #**/
18
19 ################################################################################
20 #
21 # Defines Section - statements that will be processed to create a Makefile.
22 #
23 ################################################################################
24 [Defines]
25 INF_VERSION = 0x00010005
26 BASE_NAME = PcRtc
27 FILE_GUID = 378D7B65-8DA9-4773-B6E4-A47826A833E1
28 MODULE_TYPE = DXE_RUNTIME_DRIVER
29 VERSION_STRING = 1.0
30 EDK_RELEASE_VERSION = 0x00020000
31 EFI_SPECIFICATION_VERSION = 0x00020000
32
33 ENTRY_POINT = InitializePcRtc
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64 EBC
39 #
40
41 ################################################################################
42 #
43 # Sources Section - list of files that are required for the build to succeed.
44 #
45 ################################################################################
46
47 [Sources.common]
48 Ia32/Ia32PcRtc.c
49 PcRtc.c
50 PcRtc.h
51
52
53 ################################################################################
54 #
55 # Package Dependency Section - list of Package files that are required for
56 # this module.
57 #
58 ################################################################################
59
60 [Packages]
61 MdePkg/MdePkg.dec
62 IntelFrameworkPkg/IntelFrameworkPkg.dec
63
64
65 ################################################################################
66 #
67 # Library Class Section - list of Library Classes that are required for
68 # this module.
69 #
70 ################################################################################
71
72 [LibraryClasses]
73 UefiRuntimeServicesTableLib
74 UefiRuntimeLib
75 UefiBootServicesTableLib
76 UefiDriverEntryPoint
77 TimerLib
78 IoLib
79 BaseMemoryLib
80 UefiLib
81 DebugLib
82 BaseLib
83
84
85 ################################################################################
86 #
87 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
88 # that this module uses or produces.
89 #
90 ################################################################################
91
92 [Protocols]
93 gEfiRealTimeClockArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
94
95
96 ################################################################################
97 #
98 # Dependency Expression Section - list of Dependency expressions that are required for
99 # this module.
100 #
101 ################################################################################
102
103 [Depex]
104 gEfiCpuArchProtocolGuid AND gEfiMetronomeArchProtocolGuid AND gEfiCpuIoProtocolGuid
105