smp_twd fix for adapting to cpu frequency change
Viresh Kumar
viresh.kumar at linaro.org
Thu May 14 20:24:36 PDT 2015
On 14-05-15, 15:48, Russell King - ARM Linux wrote:
> This is not correct.
>
> int __clockevents_update_freq(struct clock_event_device *dev, u32 freq)
> {
> clockevents_config(dev, freq);
>
> if (dev->state == CLOCK_EVT_STATE_ONESHOT)
> return clockevents_program_event(dev, dev->next_event, false);
>
> if (dev->state == CLOCK_EVT_STATE_PERIODIC)
> return __clockevents_set_state(dev, CLOCK_EVT_STATE_PERIODIC);
>
> The last two lines re-set the mode to periodic, which cause the ->set_mode
> (or its replacement) to be called. When the driver's ->set_mode method is
> called, it is supposed to write the periodic timeout to the hardware.
>
> So, this has the side effect of updating the hardware with the new timeout
> value.
>
> The downside to this is that if you keep changing the clock rate before
> the TWD expires, you'll never see an interrupt from it, as you'll always
> re-start a new period from the beginning on every clock frequency change.
Ahh, this was correct when it was discussed earlier.
Commit fe79a9ba1196 ("clockevents: Adjust timer interval when
frequency changes"), fixed this in clockevents core.
--
viresh
More information about the linux-arm-kernel
mailing list