]> git.karo-electronics.de Git - karo-tx-linux.git/commit
clocksource: em_sti: Compute rate before registration
authorNicolai Stange <nicstange@gmail.com>
Mon, 6 Feb 2017 21:12:02 +0000 (22:12 +0100)
committerJohn Stultz <john.stultz@linaro.org>
Thu, 23 Mar 2017 19:14:03 +0000 (12:14 -0700)
commit4e53aa2fde4124878fc6b2183d6e8ec46e12ceb0
treef1c4272d0e0881e88111b05be2cb3ac3288c7ba7
parent3814ae092d36da04d5fbaf777c1564dc4ee68559
clocksource: em_sti: Compute rate before registration

With the upcoming NTP correction related rate adjustments to be implemented
in the clockevents core, the latter needs to get informed about every rate
change of a clockevent device made after its registration.

Currently, em_sti violates this requirement in that it registers its
clockevent device with a dummy rate and sets its final rate through
clockevents_config() called from its ->set_state_oneshot().

This patch moves the setting of the clockevent device's rate to its
registration.

I checked all current em_sti users in arch/arm/mach-shmobile and right now,
none of them changes any rate in any clock tree relevant to em_sti after
their respective time_init(). Since all em_sti instances are created after
time_init(), none of them should ever observe any clock rate changes.

- Determine the ->rate value in em_sti_probe() at device probing rather
  than at first usage.
- Set the clockevent device's rate at its registration.
- Although not strictly necessary for the upcoming clockevent core changes,
  set the clocksource's rate at its registration for consistency.

Signed-off-by: Nicolai Stange <nicstange@gmail.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
drivers/clocksource/em_sti.c