mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:45:39 +00:00
[HAL]
- Rewrite KeQueryPerformanceCounter in C - Implement support for changing the clock rate svn path=/trunk/; revision=53495
This commit is contained in:
parent
79517b3d28
commit
e03d0348d9
2 changed files with 188 additions and 263 deletions
|
@ -348,7 +348,7 @@ AndItsNotYou:
|
||||||
out PIC2_DATA, al
|
out PIC2_DATA, al
|
||||||
|
|
||||||
/* Restore EFLAGS */
|
/* Restore EFLAGS */
|
||||||
popf
|
popfd
|
||||||
|
|
||||||
/* Restore stack and return */
|
/* Restore stack and return */
|
||||||
mov esp, ebp
|
mov esp, ebp
|
||||||
|
@ -368,9 +368,6 @@ _KeStallExecutionProcessor@4:
|
||||||
mov eax, fs:[KPCR_STALL_SCALE_FACTOR]
|
mov eax, fs:[KPCR_STALL_SCALE_FACTOR]
|
||||||
mul ecx
|
mul ecx
|
||||||
|
|
||||||
/* Align to 16 bytes */
|
|
||||||
.align 16
|
|
||||||
|
|
||||||
/* Jump to subtraction loop */
|
/* Jump to subtraction loop */
|
||||||
jmp SubtractLoop
|
jmp SubtractLoop
|
||||||
|
|
||||||
|
@ -387,165 +384,4 @@ Done:
|
||||||
ret 4
|
ret 4
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
PUBLIC _KeQueryPerformanceCounter@4
|
|
||||||
_KeQueryPerformanceCounter@4:
|
|
||||||
|
|
||||||
/* Check if we were called too early */
|
|
||||||
cmp dword ptr _HalpCurrentRollOver, 0
|
|
||||||
je NoCount
|
|
||||||
|
|
||||||
/* Save volatiles */
|
|
||||||
push ebx
|
|
||||||
push esi
|
|
||||||
|
|
||||||
LoopPreInt:
|
|
||||||
|
|
||||||
/* Disable interrupts */
|
|
||||||
pushf
|
|
||||||
cli
|
|
||||||
|
|
||||||
LoopPostInt:
|
|
||||||
|
|
||||||
/* Get the current value */
|
|
||||||
mov ebx, dword ptr _HalpPerfCounterLow
|
|
||||||
mov esi, dword ptr _HalpPerfCounterHigh
|
|
||||||
|
|
||||||
/* Read 8254 timer */
|
|
||||||
mov al, 0 /* Interrupt on terminal count */
|
|
||||||
out PIT_MODE, al
|
|
||||||
in al, SYSTEM_CTRL_PORT_A
|
|
||||||
or al, byte ptr _HalpPerfCounterCutoff
|
|
||||||
out SYSTEM_CTRL_PORT_A, al
|
|
||||||
jmp $+2
|
|
||||||
in al, PIT_CH0
|
|
||||||
jmp $+2
|
|
||||||
movzx ecx, al
|
|
||||||
in al, PIT_CH0
|
|
||||||
mov ch, al
|
|
||||||
|
|
||||||
/* Enable interrupts and do a short wait */
|
|
||||||
popf
|
|
||||||
nop
|
|
||||||
jmp $+2
|
|
||||||
|
|
||||||
/* Disable them again */
|
|
||||||
pushf
|
|
||||||
cli
|
|
||||||
|
|
||||||
/* Get the counter value again */
|
|
||||||
mov eax, dword ptr _HalpPerfCounterLow
|
|
||||||
mov edx, dword ptr _HalpPerfCounterHigh
|
|
||||||
|
|
||||||
/* Check if someone updated the counter */
|
|
||||||
cmp eax, ebx
|
|
||||||
jnz LoopPostInt
|
|
||||||
cmp edx, esi
|
|
||||||
jnz LoopPostInt
|
|
||||||
|
|
||||||
/* Check if the current 8254 value causes rollover */
|
|
||||||
neg ecx
|
|
||||||
add ecx, dword ptr _HalpCurrentRollOver
|
|
||||||
jnb DoRollOver
|
|
||||||
|
|
||||||
SetSum:
|
|
||||||
|
|
||||||
/* Calculate the sum */
|
|
||||||
add eax, ecx
|
|
||||||
adc edx, 0
|
|
||||||
|
|
||||||
/* Check if we're above or below the last high value */
|
|
||||||
cmp edx, dword ptr _HalpLastPerfCounterHigh
|
|
||||||
jb short BelowHigh
|
|
||||||
jnz short BelowLow
|
|
||||||
|
|
||||||
/* Check if we're above or below the last low value */
|
|
||||||
cmp eax, dword ptr _HalpLastPerfCounterLow
|
|
||||||
jb BelowHigh
|
|
||||||
|
|
||||||
BelowLow:
|
|
||||||
|
|
||||||
/* Update the last value and bring back interrupts */
|
|
||||||
mov dword ptr _HalpLastPerfCounterLow, eax
|
|
||||||
mov dword ptr _HalpLastPerfCounterHigh, edx
|
|
||||||
popf
|
|
||||||
|
|
||||||
/* Check if caller wants frequency */
|
|
||||||
cmp dword ptr [esp+12], 0
|
|
||||||
jz ReturnNoFreq
|
|
||||||
|
|
||||||
/* Save hard-coded frequency */
|
|
||||||
mov ecx, dword ptr [esp+12]
|
|
||||||
mov dword ptr [ecx], 1193182
|
|
||||||
mov dword ptr [ecx+4], 0
|
|
||||||
|
|
||||||
ReturnNoFreq:
|
|
||||||
|
|
||||||
/* Restore volatiles */
|
|
||||||
pop esi
|
|
||||||
pop ebx
|
|
||||||
ret 4
|
|
||||||
|
|
||||||
NoCount:
|
|
||||||
|
|
||||||
/* Return empty, called too soon */
|
|
||||||
mov eax, 0
|
|
||||||
mov edx, 0
|
|
||||||
ret 4
|
|
||||||
|
|
||||||
DoRollOver:
|
|
||||||
|
|
||||||
/* We might have an incoming interrupt, save EFLAGS and reset rollover */
|
|
||||||
mov esi, [esp]
|
|
||||||
mov ecx, dword ptr _HalpCurrentRollOver
|
|
||||||
popf
|
|
||||||
|
|
||||||
/* Check if interrupts were enabled and try again */
|
|
||||||
test esi, EFLAGS_INTERRUPT_MASK
|
|
||||||
jnz LoopPreInt
|
|
||||||
|
|
||||||
/* They're not, continue where we left */
|
|
||||||
pushf
|
|
||||||
jmp SetSum
|
|
||||||
|
|
||||||
BelowHigh:
|
|
||||||
|
|
||||||
/* Get the last counter values */
|
|
||||||
mov ebx, dword ptr _HalpLastPerfCounterLow
|
|
||||||
mov esi, dword ptr _HalpLastPerfCounterHigh
|
|
||||||
|
|
||||||
/* Check if the previous value was 0 and go back if yes */
|
|
||||||
mov ecx, ebx
|
|
||||||
or ecx, esi
|
|
||||||
jz BelowLow
|
|
||||||
|
|
||||||
/* Make sure that the count is still valid */
|
|
||||||
sub ebx, eax
|
|
||||||
sbb esi, edx
|
|
||||||
jnz InvalidCount
|
|
||||||
cmp ebx, dword ptr _HalpCurrentRollOver
|
|
||||||
jg InvalidCount
|
|
||||||
|
|
||||||
/* Fixup the count with the last known value */
|
|
||||||
sub eax, ebx
|
|
||||||
sbb edx, esi
|
|
||||||
|
|
||||||
/* We might have an incoming interrupt, save EFLAGS */
|
|
||||||
mov ecx, [esp]
|
|
||||||
popf
|
|
||||||
|
|
||||||
/* Check if interrupts were enabled and try again */
|
|
||||||
test ecx, EFLAGS_INTERRUPT_MASK
|
|
||||||
jnz LoopPreInt
|
|
||||||
|
|
||||||
/* They're not, continue where we left */
|
|
||||||
pushf
|
|
||||||
jmp BelowLow
|
|
||||||
|
|
||||||
InvalidCount:
|
|
||||||
popf
|
|
||||||
xor eax, eax
|
|
||||||
mov dword ptr _HalpLastPerfCounterLow, eax
|
|
||||||
mov dword ptr _HalpLastPerfCounterHigh, eax
|
|
||||||
jmp LoopPreInt
|
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
* FILE: hal/halx86/generic/timer.c
|
* FILE: hal/halx86/generic/timer.c
|
||||||
* PURPOSE: HAL Timer Routines
|
* PURPOSE: HAL Timer Routines
|
||||||
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
||||||
|
* Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
@ -14,6 +15,9 @@
|
||||||
|
|
||||||
/* GLOBALS *******************************************************************/
|
/* GLOBALS *******************************************************************/
|
||||||
|
|
||||||
|
#define PIT_LATCH 0x00
|
||||||
|
|
||||||
|
LARGE_INTEGER HalpLastPerfCounter;
|
||||||
ULONG HalpPerfCounterCutoff;
|
ULONG HalpPerfCounterCutoff;
|
||||||
BOOLEAN HalpClockSetMSRate;
|
BOOLEAN HalpClockSetMSRate;
|
||||||
ULONG HalpCurrentTimeIncrement;
|
ULONG HalpCurrentTimeIncrement;
|
||||||
|
@ -21,54 +25,56 @@ ULONG HalpCurrentRollOver;
|
||||||
ULONG HalpNextMSRate = 14;
|
ULONG HalpNextMSRate = 14;
|
||||||
ULONG HalpLargestClockMS = 15;
|
ULONG HalpLargestClockMS = 15;
|
||||||
|
|
||||||
LARGE_INTEGER HalpRolloverTable[15] =
|
static struct _HALP_ROLLOVER
|
||||||
{
|
{
|
||||||
{{1197, 10032}},
|
ULONG RollOver;
|
||||||
{{2394, 20064}},
|
ULONG Increment;
|
||||||
{{3591, 30096}},
|
} HalpRolloverTable[15] =
|
||||||
{{4767, 39952}},
|
{
|
||||||
{{5964, 49984}},
|
{1197, 10032},
|
||||||
{{7161, 60016}},
|
{2394, 20064},
|
||||||
{{8358, 70048}},
|
{3591, 30096},
|
||||||
{{9555, 80080}},
|
{4767, 39952},
|
||||||
{{10731, 89936}},
|
{5964, 49984},
|
||||||
{{11949, 100144}},
|
{7161, 60016},
|
||||||
{{13125, 110000}},
|
{8358, 70048},
|
||||||
{{14322, 120032}},
|
{9555, 80080},
|
||||||
{{15519, 130064}},
|
{10731, 89936},
|
||||||
{{16695, 139920}},
|
{11949, 100144},
|
||||||
{{17892, 149952}}
|
{13125, 110000},
|
||||||
|
{14322, 120032},
|
||||||
|
{15519, 130064},
|
||||||
|
{16695, 139920},
|
||||||
|
{17892, 149952}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* PRIVATE FUNCTIONS *********************************************************/
|
/* PRIVATE FUNCTIONS *********************************************************/
|
||||||
|
|
||||||
|
FORCEINLINE
|
||||||
|
ULONG
|
||||||
|
HalpRead8254Value(void)
|
||||||
|
{
|
||||||
|
ULONG TimerValue;
|
||||||
|
|
||||||
|
/* Send counter latch command for channel 0 */
|
||||||
|
__outbyte(TIMER_CONTROL_PORT, PIT_LATCH);
|
||||||
|
__nop();
|
||||||
|
|
||||||
|
/* Read the value, LSB first */
|
||||||
|
TimerValue = __inbyte(TIMER_CHANNEL0_DATA_PORT);
|
||||||
|
__nop();
|
||||||
|
TimerValue |= __inbyte(TIMER_CHANNEL0_DATA_PORT) << 8;
|
||||||
|
|
||||||
|
return TimerValue;
|
||||||
|
}
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
INIT_FUNCTION
|
HalpSetTimerRollOver(USHORT RollOver)
|
||||||
HalpInitializeClock(VOID)
|
|
||||||
{
|
{
|
||||||
PKPRCB Prcb = KeGetCurrentPrcb();
|
|
||||||
ULONG Increment;
|
|
||||||
USHORT RollOver;
|
|
||||||
ULONG_PTR Flags;
|
ULONG_PTR Flags;
|
||||||
TIMER_CONTROL_PORT_REGISTER TimerControl;
|
TIMER_CONTROL_PORT_REGISTER TimerControl;
|
||||||
|
|
||||||
/* Check the CPU Type */
|
|
||||||
if (Prcb->CpuType <= 4)
|
|
||||||
{
|
|
||||||
/* 486's or equal can't go higher then 10ms */
|
|
||||||
HalpLargestClockMS = 10;
|
|
||||||
HalpNextMSRate = 9;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Get increment and rollover for the largest time clock ms possible */
|
|
||||||
Increment = HalpRolloverTable[HalpLargestClockMS - 1].HighPart;
|
|
||||||
RollOver = (USHORT)HalpRolloverTable[HalpLargestClockMS - 1].LowPart;
|
|
||||||
|
|
||||||
/* Set the maximum and minimum increment with the kernel */
|
|
||||||
HalpCurrentTimeIncrement = Increment;
|
|
||||||
KeSetTimeIncrement(Increment, HalpRolloverTable[0].HighPart);
|
|
||||||
|
|
||||||
/* Disable interrupts */
|
/* Disable interrupts */
|
||||||
Flags = __readeflags();
|
Flags = __readeflags();
|
||||||
_disable();
|
_disable();
|
||||||
|
@ -98,9 +104,31 @@ HalpInitializeClock(VOID)
|
||||||
|
|
||||||
/* Restore interrupts if they were previously enabled */
|
/* Restore interrupts if they were previously enabled */
|
||||||
__writeeflags(Flags);
|
__writeeflags(Flags);
|
||||||
|
}
|
||||||
|
|
||||||
/* Save rollover and return */
|
VOID
|
||||||
|
NTAPI
|
||||||
|
INIT_FUNCTION
|
||||||
|
HalpInitializeClock(VOID)
|
||||||
|
{
|
||||||
|
ULONG Increment;
|
||||||
|
USHORT RollOver;
|
||||||
|
|
||||||
|
DPRINT("HalpInitializeClock()\n");
|
||||||
|
|
||||||
|
/* Get increment and rollover for the largest time clock ms possible */
|
||||||
|
Increment = HalpRolloverTable[HalpLargestClockMS - 1].Increment;
|
||||||
|
RollOver = (USHORT)HalpRolloverTable[HalpLargestClockMS - 1].RollOver;
|
||||||
|
|
||||||
|
/* Set the maximum and minimum increment with the kernel */
|
||||||
|
KeSetTimeIncrement(Increment, HalpRolloverTable[0].Increment);
|
||||||
|
|
||||||
|
/* Set the rollover value for the timer */
|
||||||
|
HalpSetTimerRollOver(RollOver);
|
||||||
|
|
||||||
|
/* Save rollover and increment */
|
||||||
HalpCurrentRollOver = RollOver;
|
HalpCurrentRollOver = RollOver;
|
||||||
|
HalpCurrentTimeIncrement = Increment;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _M_IX86
|
#ifdef _M_IX86
|
||||||
|
@ -109,6 +137,7 @@ VOID
|
||||||
FASTCALL
|
FASTCALL
|
||||||
HalpClockInterruptHandler(IN PKTRAP_FRAME TrapFrame)
|
HalpClockInterruptHandler(IN PKTRAP_FRAME TrapFrame)
|
||||||
{
|
{
|
||||||
|
ULONG LastIncrement;
|
||||||
KIRQL Irql;
|
KIRQL Irql;
|
||||||
|
|
||||||
/* Enter trap */
|
/* Enter trap */
|
||||||
|
@ -121,16 +150,25 @@ HalpClockInterruptHandler(IN PKTRAP_FRAME TrapFrame)
|
||||||
HalpPerfCounter.QuadPart += HalpCurrentRollOver;
|
HalpPerfCounter.QuadPart += HalpCurrentRollOver;
|
||||||
HalpPerfCounterCutoff = KiEnableTimerWatchdog;
|
HalpPerfCounterCutoff = KiEnableTimerWatchdog;
|
||||||
|
|
||||||
|
/* Save increment */
|
||||||
|
LastIncrement = HalpCurrentTimeIncrement;
|
||||||
|
|
||||||
/* Check if someone changed the time rate */
|
/* Check if someone changed the time rate */
|
||||||
if (HalpClockSetMSRate)
|
if (HalpClockSetMSRate)
|
||||||
{
|
{
|
||||||
/* Not yet supported */
|
/* Update the global values */
|
||||||
UNIMPLEMENTED;
|
HalpCurrentTimeIncrement = HalpRolloverTable[HalpNextMSRate - 1].Increment;
|
||||||
ASSERT(FALSE);
|
HalpCurrentRollOver = HalpRolloverTable[HalpNextMSRate - 1].RollOver;
|
||||||
|
|
||||||
|
/* Set new timer rollover */
|
||||||
|
HalpSetTimerRollOver((USHORT)HalpCurrentRollOver);
|
||||||
|
|
||||||
|
/* We're done */
|
||||||
|
HalpClockSetMSRate = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Update the system time -- the kernel will exit this trap */
|
/* Update the system time -- the kernel will exit this trap */
|
||||||
KeUpdateSystemTime(TrapFrame, HalpCurrentTimeIncrement, Irql);
|
KeUpdateSystemTime(TrapFrame, LastIncrement, Irql);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Spurious, just end the interrupt */
|
/* Spurious, just end the interrupt */
|
||||||
|
@ -206,7 +244,58 @@ HalSetTimeIncrement(IN ULONG Increment)
|
||||||
HalpClockSetMSRate = TRUE;
|
HalpClockSetMSRate = TRUE;
|
||||||
|
|
||||||
/* Return the increment */
|
/* Return the increment */
|
||||||
return HalpRolloverTable[Increment - 1].HighPart;
|
return HalpRolloverTable[Increment - 1].Increment;
|
||||||
|
}
|
||||||
|
|
||||||
|
LARGE_INTEGER
|
||||||
|
NTAPI
|
||||||
|
KeQueryPerformanceCounter(PLARGE_INTEGER PerformanceFrequency)
|
||||||
|
{
|
||||||
|
LARGE_INTEGER CurrentPerfCounter;
|
||||||
|
ULONG CounterValue, ClockDelta;
|
||||||
|
|
||||||
|
/* If caller wants performance frequency, return hardcoded value */
|
||||||
|
if (PerformanceFrequency) PerformanceFrequency->QuadPart = PIT_FREQUENCY;
|
||||||
|
|
||||||
|
/* Check if we were called too early */
|
||||||
|
if (HalpCurrentRollOver == 0) return HalpPerfCounter;
|
||||||
|
|
||||||
|
/* Check if interrupts are disabled */
|
||||||
|
if(!(__readeflags() & EFLAGS_INTERRUPT_MASK)) return HalpPerfCounter;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
/* Get the current performance counter value */
|
||||||
|
CurrentPerfCounter = HalpPerfCounter;
|
||||||
|
|
||||||
|
/* Read the 8254 counter value */
|
||||||
|
CounterValue = HalpRead8254Value();
|
||||||
|
|
||||||
|
/* Repeat if the value has changed (a clock interrupt happened) */
|
||||||
|
} while (CurrentPerfCounter.QuadPart != HalpPerfCounter.QuadPart);
|
||||||
|
|
||||||
|
/* After someone changed the clock rate, during the first clock cycle we
|
||||||
|
might see a counter value larger than the rollover. In this case we
|
||||||
|
pretend it already has the new rollover value. */
|
||||||
|
if (CounterValue > HalpCurrentRollOver) CounterValue = HalpCurrentRollOver;
|
||||||
|
|
||||||
|
/* The interrupt is issued on the falling edge of the OUT line, when the
|
||||||
|
counter changes from 1 to max. Calculate a clock delta, so that directly
|
||||||
|
after the interrupt it is 0, going up to (HalpCurrentRollOver - 1). */
|
||||||
|
ClockDelta = HalpCurrentRollOver - CounterValue;
|
||||||
|
|
||||||
|
/* Add the clock delta */
|
||||||
|
CurrentPerfCounter.QuadPart += ClockDelta;
|
||||||
|
|
||||||
|
/* This must be true unless HalpPerfCounter has changed sign,
|
||||||
|
which takes approximately 245,118 years */
|
||||||
|
ASSERT(CurrentPerfCounter.QuadPart >= HalpLastPerfCounter.QuadPart);
|
||||||
|
|
||||||
|
/* Update the last counter value */
|
||||||
|
HalpLastPerfCounter = CurrentPerfCounter;
|
||||||
|
|
||||||
|
/* Return the result */
|
||||||
|
return CurrentPerfCounter;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue