63b785c3291332a86a9bc473e68f08121368898bvboxsync## @file
63b785c3291332a86a9bc473e68f08121368898bvboxsync# This module produces the Metronome Architectural Protocol on top of Timer Library.
63b785c3291332a86a9bc473e68f08121368898bvboxsync#
63b785c3291332a86a9bc473e68f08121368898bvboxsync# This is a generic implementation of the Metronome Architectural Protocol that
63b785c3291332a86a9bc473e68f08121368898bvboxsync# layers on top of an instance of the Timer Library. The Timer Library provides
63b785c3291332a86a9bc473e68f08121368898bvboxsync# functions for nanosecond and microsecond delays. This generic implementation
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync# produces a fixed TickPeriod of 100ns unit, and when the WaitForTick() service
63b785c3291332a86a9bc473e68f08121368898bvboxsync# is called, the number of ticks passed in is converted to either nanosecond or
63b785c3291332a86a9bc473e68f08121368898bvboxsync# microsecond units. If the number of ticks is small, then nanoseconds are used.
63b785c3291332a86a9bc473e68f08121368898bvboxsync# If the number of ticks is large, then microseconds are used. This prevents
63b785c3291332a86a9bc473e68f08121368898bvboxsync# overflows that could occur for long delays if only nanoseconds were used and also
63b785c3291332a86a9bc473e68f08121368898bvboxsync# provides the greatest accuracy for small delays.
63b785c3291332a86a9bc473e68f08121368898bvboxsync#
63b785c3291332a86a9bc473e68f08121368898bvboxsync# Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
63b785c3291332a86a9bc473e68f08121368898bvboxsync# This program and the accompanying materials
63b785c3291332a86a9bc473e68f08121368898bvboxsync# are licensed and made available under the terms and conditions of the BSD License
63b785c3291332a86a9bc473e68f08121368898bvboxsync# which accompanies this distribution. The full text of the license may be found at
63b785c3291332a86a9bc473e68f08121368898bvboxsync# http://opensource.org/licenses/bsd-license.php
63b785c3291332a86a9bc473e68f08121368898bvboxsync#
63b785c3291332a86a9bc473e68f08121368898bvboxsync# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
63b785c3291332a86a9bc473e68f08121368898bvboxsync#
63b785c3291332a86a9bc473e68f08121368898bvboxsync##
63b785c3291332a86a9bc473e68f08121368898bvboxsync
63b785c3291332a86a9bc473e68f08121368898bvboxsync[Defines]
63b785c3291332a86a9bc473e68f08121368898bvboxsync INF_VERSION = 0x00010005
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync BASE_NAME = Metronome
63b785c3291332a86a9bc473e68f08121368898bvboxsync FILE_GUID = C8339973-A563-4561-B858-D8476F9DEFC4
63b785c3291332a86a9bc473e68f08121368898bvboxsync MODULE_TYPE = DXE_DRIVER
63b785c3291332a86a9bc473e68f08121368898bvboxsync VERSION_STRING = 1.0
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync ENTRY_POINT = InstallMetronome
63b785c3291332a86a9bc473e68f08121368898bvboxsync
63b785c3291332a86a9bc473e68f08121368898bvboxsync#
63b785c3291332a86a9bc473e68f08121368898bvboxsync# The following information is for reference only and not required by the build tools.
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync#
63b785c3291332a86a9bc473e68f08121368898bvboxsync# VALID_ARCHITECTURES = IA32 X64 IPF EBC
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync#
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync
63b785c3291332a86a9bc473e68f08121368898bvboxsync[Packages]
63b785c3291332a86a9bc473e68f08121368898bvboxsync MdePkg/MdePkg.dec
63b785c3291332a86a9bc473e68f08121368898bvboxsync
63b785c3291332a86a9bc473e68f08121368898bvboxsync[LibraryClasses]
63b785c3291332a86a9bc473e68f08121368898bvboxsync UefiDriverEntryPoint
63b785c3291332a86a9bc473e68f08121368898bvboxsync UefiBootServicesTableLib
63b785c3291332a86a9bc473e68f08121368898bvboxsync TimerLib
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync DebugLib
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync[Sources]
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync Metronome.c
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync Metronome.h
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync[Protocols]
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync gEfiMetronomeArchProtocolGuid ## PRODUCES
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync[Depex]
63b785c3291332a86a9bc473e68f08121368898bvboxsync TRUE
7b01db654c23d4e432465aebc1a1853e8d6b3194vboxsync