Re: [PATCH] Prevent clockevent event_handler ending up handler_noop

From: Andreas Mohr
Date: Wed Sep 03 2008 - 13:37:03 EST


Hi,

On Wed, Sep 03, 2008 at 07:15:16PM +0200, Thomas Gleixner wrote:
> On Wed, 3 Sep 2008, Andreas Mohr wrote:
> > See what such highres-deprived people as myself (PIT, acpi_pm,
> > _no_ HPET and thus no IRQed highres timer) are doing now,
>
> Err. PIT + acpi_pm works with highres. acpi_pm is a stable clocksource
> and PIT is not a good, but a usable oneshot timer.

Hmm. What I'm interested in is longer wakeup timeouts (ACPI C2/C3
stuff), which would be a problem with PIT (~20 forced wakeups per second)
but with my new timer that would work.
Oh, side question: it _is_ easily possible to then disable PIT IRQs
once my event device is registered, right? Otherwise I could forget
about power management benefits...

And of course I'm interested in very short delays as well ("highres"),
which my timer could provide.

> > And any hints on how to possibly (reliably!) provide both clock_event_device
> > (oneshot) _and_ clocksource for a _single_ IRQed countdown timer?
>
> No. For a reliable clocksource you need an ever increasing /
> decreasing counter, which just wraps around when the max. count is
> reached.
>
> If you use a single shot timer, which is reprogrammed after every
> interrupt, then you will deviate from the time line as you have no
> idea how long it took from the counter reaching zero to the point
> where you reload the timer. Simply wont work.

Yup, that's exactly what I thought, slowly deviating from the timing
that it actually should have been, due to reprogramming...


So as I see it, the most beneficial thing I can do is to provide
a clock_event_device only.

Reasoning being that acpi_pm already is an easily accessible (fast)
reliable clocksource,
yet PIT is a _very_ slow (ISA timing) relatively coarse and
force-wakeupping event device.

Then additionally upgrade my driver to do mmapped access to this
PCI-MEM-capable sound card, and there we go with a fast and fine-grained
event device.

Out of interest: how big would you believe the benefit to be?
(overall system performance gains and ACPI PM benefits)

Thanks,

Andreas Mohr
--
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/