]> git.baikalelectronics.ru Git - kernel.git/commit
[POWERPC] Make clockevents work on PPC601 processors
authorPaul Mackerras <paulus@samba.org>
Thu, 11 Oct 2007 11:46:45 +0000 (21:46 +1000)
committerPaul Mackerras <paulus@samba.org>
Thu, 11 Oct 2007 11:49:23 +0000 (21:49 +1000)
commit6acaf939de8a2873f4a43946f9901b1c5fab61e5
tree5396af2e100d9a32bbc9a66bae324e3270fe900e
parentb0a9dcc85382743cfa0cbfeb54142fdcf9a4b373
[POWERPC] Make clockevents work on PPC601 processors

In testing the new clocksource and clockevent code on a PPC601
processor, I discovered that the clockevent multiplier value for the
decrementer clockevent was overflowing.  Because the RTCL register in
the 601 effectively counts at 1GHz (it doesn't actually, but it
increases by 128 every 128ns), and the shift value was 32, that meant
the multiplier value had to be 2^32, which won't fit in an unsigned
long on 32-bit.  The same problem would arise on any platform where
the timebase frequency was 1GHz or more (not that we actually have any
such machines today).

This fixes it by reducing the shift value to 16.  Doing the
calculations with a resolution of 2^-16 nanoseconds (15 femtoseconds)
should be quite adequate.  :)

Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/time.c