]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Metronome/Metronome.inf
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Universal / Metronome / Metronome.inf
CommitLineData
6bfbb5f0 1## @file\r
7772b176 2# This module produces the Metronome Architectural Protocol on top of Timer Library.\r
3#\r
4# This is a generic implementation of the Metronome Architectural Protocol that\r
5# layers on top of an instance of the Timer Library. The Timer Library provides\r
6# functions for nanosecond and microsecond delays. This generic implementation\r
7# produces a fixed TickPeriod of 100ns unit, and when the WaitForTick() service\r
8# is called, the number of ticks passed in is converted to either nanosecond or\r
9# microsecond units. If the number of ticks is small, then nanoseconds are used.\r
10# If the number of ticks is large, then microseconds are used. This prevents\r
11# overflows that could occur for long delays if only nanoseconds were used and also\r
d1102dba 12# provides the greatest accuracy for small delays.\r
045c8b9a 13#\r
d1102dba 14# Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>\r
9d510e61 15# SPDX-License-Identifier: BSD-2-Clause-Patent\r
fbfd91e6 16#\r
6bfbb5f0 17##\r
fbfd91e6 18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = Metronome\r
6036e94d 22 MODULE_UNI_FILE = Metronome.uni\r
fbfd91e6 23 FILE_GUID = C8339973-A563-4561-B858-D8476F9DEFC4\r
24 MODULE_TYPE = DXE_DRIVER\r
25 VERSION_STRING = 1.0\r
fbfd91e6 26 ENTRY_POINT = InstallMetronome\r
27\r
045c8b9a 28#\r
29# The following information is for reference only and not required by the build tools.\r
30#\r
de005223 31# VALID_ARCHITECTURES = IA32 X64 EBC\r
045c8b9a 32#\r
33\r
fbfd91e6 34[Packages]\r
35 MdePkg/MdePkg.dec\r
36\r
37[LibraryClasses]\r
38 UefiDriverEntryPoint\r
39 UefiBootServicesTableLib\r
40 TimerLib\r
41 DebugLib\r
42\r
6bfbb5f0 43[Sources]\r
fbfd91e6 44 Metronome.c\r
a266bb2d 45 Metronome.h\r
fbfd91e6 46\r
47[Protocols]\r
7772b176 48 gEfiMetronomeArchProtocolGuid ## PRODUCES\r
fbfd91e6 49\r
50[Depex]\r
51 TRUE\r
6036e94d
SZ
52\r
53[UserExtensions.TianoCore."ExtraFiles"]\r
54 MetronomeExtra.uni\r