blob: 8ef9605ec2d9de8044edc3bab8c189b4690c11c2 [file] [log] [blame]
andrewfisha3f98642010-01-28 21:32:01 +00001#/** @file
2# Timer library implementation
3#
4# A non-functional instance of the Timer Library that can be used as a template
5# for the implementation of a functional timer library instance. This library instance can
6# also be used to test build DXE, Runtime, DXE SAL, and DXE SMM modules that require timer
7# services as well as EBC modules that require timer services
8# Copyright (c) 2007, Intel Corporation.
9#
10# All rights reserved. This program and the accompanying materials
11# are licensed and made available under the terms and conditions of the BSD License
12# which accompanies this distribution. The full text of the license may be found at
13# http://opensource.org/licenses/bsd-license.php
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18#**/
19
20[Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = BeagleBoardTimerLib
23 FILE_GUID = fe1d7183-9abb-42ce-9a3b-36d7c6a8959f
24 MODULE_TYPE = BASE
25 VERSION_STRING = 1.0
26 LIBRARY_CLASS = TimerLib
27
28[Sources.common]
29 TimerLib.c
30
31[Packages]
32 Omap35xxPkg/Omap35xxPkg.dec
33 MdePkg/MdePkg.dec
34 EmbeddedPkg/EmbeddedPkg.dec
35
36[LibraryClasses]
37 DebugLib
38 OmapLib
39 IoLib
40
41[Pcd]
andrewfish55bff422010-04-21 22:06:00 +000042 gEmbeddedTokenSpaceGuid.PcdEmbeddedPerformanceCounterFrequencyInHz
43 gEmbeddedTokenSpaceGuid.PcdEmbeddedPerformanceCounterPeriodInNanoseconds
andrewfish43263282010-04-03 00:34:19 +000044 gOmap35xxTokenSpaceGuid.PcdOmap35xxFreeTimer
andrewfisha3f98642010-01-28 21:32:01 +000045