Re: [RFC 13/13] m68k: mac: convert to generic clockevent

From: Finn Thain
Date: Thu Nov 05 2020 - 22:12:30 EST


On Fri, 30 Oct 2020, Greg Ungerer wrote:

> >
> > > ...
> > > > The other 11 platforms in that category also have 'synthetic'
> > > > clocksources derived from a timer reload interrupt. In 3 cases,
> > > > the clocksource read method does not (or can not) check for a
> > > > pending counter reload interrupt. For these also, I see no
> > > > practical alternative to the approach you've taken in your RFC
> > > > patch:
> > > >
> > > > arch/m68k/68000/timers.c
> > > > arch/m68k/atari/time.c
> > > > arch/m68k/coldfire/timers.c
> > >
> > > Agreed. It's possible there is a way, but I don't see one either.
> > >
> >
> > For arch/m68k/68000/timers.c, I suppose we may be able to check for
> > the TMR1 bit in the Interrupt Status Register at 0xFFFFF30C or the
> > COMP bit in the Timer Status Register at 0xFFFFF60A. But testing that
> > patch could be difficult.
> >
> > I expect that equivalent flags are available in Coldfire registers,
> > making it possible to improve upon mcftmr_read_clk() and
> > m68328_read_clk() if need be -- that is, if it turns out that the
> > clocksource interrupt was subject to higher priority IRQs that would
> > slow down the clocksource or defeat its monotonicity.
> >
> > The other difficulty is a lack of hardware timers. There's only one
> > timer on MC68EZ328. On Atari, for now only Timer C is available though
> > Michael has said that it would be possible to free up Timer D. Some
> > Coldfire chips have only 2 timers and the second timer seems to be
> > allocated to profiling.
>
> FWIW, I would have no problem with ditching the profiling clock, and
> using both on ColdFire platforms that have this. I doubt anyone has used
> that profiling setup in a _very_ long time.
>

If we ditched the Coldfire profiling clock, it would be possible to
dedicate one hardware timer to the clocksource device and the other to the
(oneshot) clockevent device.

That's a win if it means that the clocksource can use the full counter
width (making timer interrupts less frequent and timer interrupt latency
less problematic) and run at higher frequency (making the clocksource more
precise).

Also, note that hrtimers won't work with a periodic clockevent device (as
in Arnd's RFC patch). If you want hrtimers, I think you'll need both
hardware timers or else re-implement the existing synthetic clocksource
using the same oneshot timer driving a new oneshot clockevent device.

Please note that the lack of a spare hardware timer is a separate issue to
the failure of mcftmr_read_clk() and m68328_read_clk() to check the timer
reload interrupt flag (which may make those clocksources needlessly
susceptible to issues caused by timer interrupt latency...).