[SPARC64]: Add clocksource/clockevents support.
authorDavid S. Miller <davem@sunset.davemloft.net>
Mon, 5 Mar 2007 23:28:37 +0000 (15:28 -0800)
committerDavid S. Miller <davem@sunset.davemloft.net>
Thu, 26 Apr 2007 08:54:15 +0000 (01:54 -0700)
commit112f48716d9f292c92a033cff9e3ce7405ed4280
tree5be2952ca83adb519df5995c10e0686447fea88f
parent038cb01ea69cb24ecf30e3ec882e429c84badbeb
[SPARC64]: Add clocksource/clockevents support.

I'd like to thank John Stul and others for helping
me along the way.

A lot of cleanups fell out of this.  For example, the get_compare()
tick_op was totally unused, so was deleted.  And the most often used
tick_op members were grouped together for cache-friendlyness.

The sparc64 TSC is given to the kernel as a one-shot timer.

tick_ops->init_timer() simply turns off the privileged bit in
the tick register (when possible), and disables the interrupt
by setting bit 63 in the compare register.  The ->disable_irq()
op also sets this bit.

tick_ops->add_compare() is changed to:

1) Add the given delta to "tick" not to "compare"
2) Return a boolean which, if true, means that the tick
   value read after writing the compare value was found
   to have incremented past the initial tick value.  This
   mirrors logic used in the HPET driver's ->next_event()
   method.

Each tick_ops implementation also now provides a name string.
And we feed this into the clocksource and clockevents layers.

Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc64/Kconfig
arch/sparc64/kernel/smp.c
arch/sparc64/kernel/time.c
include/asm-sparc64/timer.h