Re: Regression in 2.6.27 caused by commit bfc0f59

From: Thomas Gleixner
Date: Tue Sep 02 2008 - 19:10:33 EST


On Tue, 2 Sep 2008, Linus Torvalds wrote:
> On Tue, 2 Sep 2008, Thomas Gleixner wrote:
> >
> > On that box, the PIT is probably real hardware or a damned good
> > emulation. When you look at the 10 loop values you see that it does
> > 50% perfectly fine calibration loops. The others are just SMI
> > interruptions caused by random unknown crap in the BIOS.
>
> Ok, so I actually think I know how to resolve the problem once and for
> all.
>
> The solution is actually fairly simple: we use the HPET algorithm. The
> reason the HPET algorithm is so robust is that
>
> - we can actually read the frequency from the HPET itself
>
> - we also simply just read the counter values from the HPET, and so it
> doesn't really matter how much time has passed between the two reads,
> it only matters that _some_ time has passed, and that we pick _one_
> stable read that we can associate with a TSC value.
>
> But the thing is, the exact same thing is actually true of the old PIT
> timer too - except we simply don't take advantage of it. The PIT timer has
> a very well known frequency value (PIT_TICK_RATE: 1193180 Hz), and we can
> trivially read the counter value too.

Except for the couple of exceptions, where the readout of the old PIT
timer is broken. See arch/x86/kernel/i8253.c:pit_read()

Thought about that already and discarded it as it is basically the
same problem as we have versus _ONE_ AMD K6 family pmtimer
incarnation.

> But the thing is, that for some forgotten reason, that's not actually what
> we do. Instead of reading the counter value, we wait until it counts down
> to zero, and read the output value instead. So instead of having a nice
> and dependable counter that ticks down (16 bits of precision), we actually
> use a _single_ bit of result, and depend on reading the TSC at the same
> time.
>
> That's kind of sad.

For a reason.

> I'll try to whip up a test-patch to do this in a smarter way.

I'm fine with either solution as long it works on _ALL_ kind of broken
hardware. Believe me or not, but since I work on the whole timer
issue, I have not seen anything really reliable in the x86 world.

That's the really sad part, that the hardware dudes did not learn
anything about the importance of timing and timekeeping within 20
years.

I'm tearing my hair on a regular base when I try to get down to the
root cause of timer related wreckage in several (including todays)
generations of CPU technology in x86 land. Other architectures have
their odds and ends as well, but the vast majority of implementations
is pretty straight forward and usable without restrictions.

x86 is definitely the ultimate winner of the all time "timer ignorance
award".

Thanks,

tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/