1/** @file
2  A Base Timer Library implementation which uses the Time Stamp Counter in the processor.
3
4  For Pentium 4 processors, Intel Xeon processors (family [0FH], models [03H and higher]);
5    for Intel Core Solo and Intel Core Duo processors (family [06H], model [0EH]);
6    for the Intel Xeon processor 5100 series and Intel Core 2 Duo processors (family [06H], model [0FH]);
7    for Intel Core 2 and Intel Xeon processors (family [06H], display_model [17H]);
8    for Intel Atom processors (family [06H], display_model [1CH]):
9  the time-stamp counter increments at a constant rate.
10  That rate may be set by the maximum core-clock to bus-clock ratio of the processor or may be set by
11  the maximum resolved frequency at which the processor is booted. The maximum resolved frequency may
12  differ from the maximum qualified frequency of the processor.
13
14  The specific processor configuration determines the behavior. Constant TSC behavior ensures that the
15  duration of each clock tick is uniform and supports the use of the TSC as a wall clock timer even if
16  the processor core changes frequency. This is the architectural behavior moving forward.
17
18  A Processor's support for invariant TSC is indicated by CPUID.0x80000007.EDX[8].
19
20  Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
21  This program and the accompanying materials
22  are licensed and made available under the terms and conditions of the BSD License
23  which accompanies this distribution. The full text of the license may be found at
24  http://opensource.org/licenses/bsd-license.php
25
26  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
27  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
28
29**/
30
31#include "TscTimerLibInternal.h"
32
33/**  Get TSC frequency.
34
35  @return The number of TSC counts per second.
36
37**/
38UINT64
39InternalGetTscFrequency (
40  VOID
41  )
42{
43  return InternalCalculateTscFrequency ();
44}
45
46