summaryrefslogtreecommitdiff
path: root/DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-05 07:21:29 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-05 07:21:29 +0000
commitf5752cb24c2a53281c9459a629f1c15c3f40d1c6 (patch)
tree96a9eb877e961ec9cfaea7018e2786ad1eccecdf /DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf
parentccb3cad09f1f0c2bfb330c4a2a34d58d1c85306f (diff)
downloadedk2-platforms-f5752cb24c2a53281c9459a629f1c15c3f40d1c6.tar.xz
Add DuetTimerLib and DuetSerialIo library instance.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5162 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf')
-rw-r--r--DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf68
1 files changed, 68 insertions, 0 deletions
diff --git a/DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf b/DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf
new file mode 100644
index 0000000000..f03c6bd10a
--- /dev/null
+++ b/DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf
@@ -0,0 +1,68 @@
+#/** @file
+# Timer Library implementation for Boot Timer moudles that require timer services.
+#
+# Timer Library that uses CPU resources to provide calibrated
+# delays on IA-32 and x64, and uses ITC on IPF. Note: Because CpuLocalApci
+# and ITC could be programmed by OS, it cannot be used by SMM drivers
+# and runtime drivers, ACPI timer is recommended for SMM drivers and RUNTIME
+# drivers.
+# Copyright (c) 2007, Intel Corporation.
+#
+# All rights reserved. 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 = DuetTimerLib
+ FILE_GUID = 5F9A01F5-726E-4f59-809D-887F4766734E
+ MODULE_TYPE = BASE
+ VERSION_STRING = 1.0
+ LIBRARY_CLASS = TimerLib
+ EDK_RELEASE_VERSION = 0x00020000
+ EFI_SPECIFICATION_VERSION = 0x00020000
+
+
+#
+# VALID_ARCHITECTURES = IA32 X64
+#
+
+[Sources.Ia32]
+ x86TimerLib.c
+
+[Sources.X64]
+ x86TimerLib.c
+
+
+[Packages]
+ MdePkg/MdePkg.dec
+
+
+[LibraryClasses]
+ BaseLib
+
+[LibraryClasses.IA32]
+ PcdLib
+ IoLib
+
+[LibraryClasses.X64]
+ PcdLib
+ IoLib
+
+[LibraryClasses.IPF]
+ DebugLib
+ PalCallLib
+
+
+[Pcd.IA32]
+ gEfiMdePkgTokenSpaceGuid.PcdFSBClock
+
+[Pcd.X64]
+ gEfiMdePkgTokenSpaceGuid.PcdFSBClock
+