mirror of https://github.com/acidanthera/audk.git
updated the comment according to latest version of MWG.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2354 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
73f7b9c29c
commit
ff242d4066
|
@ -6,8 +6,10 @@
|
|||
<GuidValue>f4731d79-537e-4505-bd52-c03f9b1f6b89</GuidValue>
|
||||
<Version>1.0</Version>
|
||||
<Abstract>Timer library NULL template implementaton</Abstract>
|
||||
<Description>This NULL Timer library provides one template API of TimerLib library,
|
||||
this library do not impletement functionality completely.</Description>
|
||||
<Description>A non-functional instance of the Timer Library that can be used as a template
|
||||
for the implementation of a functional timer library instance. This library instance can
|
||||
also be used to test build DXE, Runtime, DXE SAL, and DXE SMM modules that require timer
|
||||
services as well as EBC modules that require timer services</Description>
|
||||
<Copyright>Copyright (c) 2007, Intel Corporation.</Copyright>
|
||||
<License>All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/** @file
|
||||
Timer Library functions for runtime drivers.
|
||||
A non-functional instance of the Timer Library.
|
||||
|
||||
Copyright (c) 2007, Intel Corporation<BR>
|
||||
All rights reserved. This program and the accompanying materials
|
||||
|
@ -10,7 +10,7 @@
|
|||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name: RuntimeTimerLib.c
|
||||
Module Name: TimerLibNull.c
|
||||
|
||||
**/
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/** @file
|
||||
Timer Library functions built upon ITC on IA32/x64.
|
||||
Timer Library functions built upon ITC on IPF.
|
||||
|
||||
Copyright (c) 2006 - 2007, Intel Corporation<BR>
|
||||
All rights reserved. This program and the accompanying materials
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<ModuleType>BASE</ModuleType>
|
||||
<GuidValue>b5a05743-9b71-489b-a0ed-a0eb3950d23b</GuidValue>
|
||||
<Version>1.0</Version>
|
||||
<Abstract>Timer Library implementation for boot time drivers.</Abstract>
|
||||
<Abstract>Timer Library implementation for Boot Timer moudles that require timer services.</Abstract>
|
||||
<Description>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
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
/** @file
|
||||
Timer Library functions built upon local APIC on IA32/x64.
|
||||
|
||||
@bug Should use PCD to retrieve all the constants including index of
|
||||
the IA32_APIC_BASE MSR, the offsets of InitialCount, CorrentCount
|
||||
and DivideConfiguration.
|
||||
|
||||
Copyright (c) 2006 - 2007, Intel Corporation<BR>
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
|
|
Loading…
Reference in New Issue