2010-01-28 22:32:01 +01:00
|
|
|
/** @file
|
|
|
|
|
2010-04-29 14:46:45 +02:00
|
|
|
Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
2010-01-28 22:32:01 +01:00
|
|
|
|
2010-04-29 14:46:45 +02:00
|
|
|
This program and the accompanying materials
|
2010-01-28 22:32:01 +01:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Base.h>
|
|
|
|
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/TimerLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/IoLib.h>
|
|
|
|
#include <Library/OmapLib.h>
|
|
|
|
|
|
|
|
#include <Omap3530/Omap3530.h>
|
|
|
|
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
MicroSecondDelay (
|
|
|
|
IN UINTN MicroSeconds
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT64 NanoSeconds;
|
|
|
|
|
|
|
|
NanoSeconds = MultU64x32(MicroSeconds, 1000);
|
|
|
|
|
|
|
|
while (NanoSeconds > (UINTN)-1) {
|
|
|
|
NanoSecondDelay((UINTN)-1);
|
|
|
|
NanoSeconds -= (UINTN)-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
NanoSecondDelay(NanoSeconds);
|
|
|
|
|
|
|
|
return MicroSeconds;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
NanoSecondDelay (
|
|
|
|
IN UINTN NanoSeconds
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Delay;
|
|
|
|
UINT32 StartTime;
|
|
|
|
UINT32 CurrentTime;
|
|
|
|
UINT32 ElapsedTime;
|
|
|
|
UINT32 TimerCountRegister;
|
|
|
|
|
2010-04-22 00:06:00 +02:00
|
|
|
Delay = (NanoSeconds / PcdGet32(PcdEmbeddedPerformanceCounterPeriodInNanoseconds)) + 1;
|
2010-01-28 22:32:01 +01:00
|
|
|
|
2010-04-03 02:34:19 +02:00
|
|
|
TimerCountRegister = TimerBase(PcdGet32(PcdOmap35xxFreeTimer)) + GPTIMER_TCRR;
|
2010-01-28 22:32:01 +01:00
|
|
|
|
2010-04-03 02:34:19 +02:00
|
|
|
StartTime = MmioRead32 (TimerCountRegister);
|
2010-01-28 22:32:01 +01:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2010-04-03 02:34:19 +02:00
|
|
|
CurrentTime = MmioRead32 (TimerCountRegister);
|
2010-01-28 22:32:01 +01:00
|
|
|
ElapsedTime = CurrentTime - StartTime;
|
|
|
|
} while (ElapsedTime < Delay);
|
|
|
|
|
2010-04-22 00:06:00 +02:00
|
|
|
NanoSeconds = ElapsedTime * PcdGet32(PcdEmbeddedPerformanceCounterPeriodInNanoseconds);
|
2010-01-28 22:32:01 +01:00
|
|
|
|
|
|
|
return NanoSeconds;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
GetPerformanceCounter (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2010-04-03 02:34:19 +02:00
|
|
|
return (UINT64)MmioRead32 (TimerBase(PcdGet32(PcdOmap35xxFreeTimer)) + GPTIMER_TCRR);
|
2010-01-28 22:32:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
GetPerformanceCounterProperties (
|
|
|
|
OUT UINT64 *StartValue, OPTIONAL
|
|
|
|
OUT UINT64 *EndValue OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (StartValue != NULL) {
|
|
|
|
// Timer starts with the reload value
|
2010-04-03 02:34:19 +02:00
|
|
|
*StartValue = (UINT64)MmioRead32 (TimerBase(PcdGet32(PcdOmap35xxFreeTimer)) + GPTIMER_TLDR);
|
2010-01-28 22:32:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (EndValue != NULL) {
|
|
|
|
// Timer counts up to 0xFFFFFFFF
|
|
|
|
*EndValue = 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
2010-04-22 00:06:00 +02:00
|
|
|
return PcdGet64(PcdEmbeddedPerformanceCounterFrequencyInHz);
|
2010-01-28 22:32:01 +01:00
|
|
|
}
|