rtc: Allow rtc drivers to specify the tv_nsec value for ntp
authorJason Gunthorpe <jgunthorpe@obsidianresearch.com>
Fri, 13 Oct 2017 17:54:33 +0000 (11:54 -0600)
committerJohn Stultz <john.stultz@linaro.org>
Mon, 30 Oct 2017 22:03:24 +0000 (15:03 -0700)
commit0f295b0650c90362b4111f46d7f9149a0a4191be
tree4589b6e58d710ac1f2967317305c6c8fc28903d3
parent9e66317d3c92ddaab330c125dfe9d06eee268aff
rtc: Allow rtc drivers to specify the tv_nsec value for ntp

ntp is currently hardwired to try and call the rtc set when wall clock
tv_nsec is 0.5 seconds. This historical behaviour works well with certain
PC RTCs, but is not universal to all rtc hardware.

Change how this works by introducing the driver specific concept of
set_offset_nsec, the delay between current wall clock time and the target
time to set (with a 0 tv_nsecs).

For x86-style CMOS set_offset_nsec should be -0.5 s which causes the last
second to be written 0.5 s after it has started.

For compat with the old rtc_set_ntp_time, the value is defaulted to
+ 0.5 s, which causes the next second to be written 0.5s before it starts,
as things were before this patch.

Testing shows many non-x86 RTCs would like set_offset_nsec ~= 0,
so ultimately each RTC driver should set the set_offset_nsec according
to its needs, and non x86 architectures should stop using
update_persistent_clock64 in order to access this feature.
Future patches will revise the drivers as needed.

Since CMOS and RTC now have very different handling they are split
into two dedicated code paths, sharing the support code, and ifdefs
are replaced with IS_ENABLED.

Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Miroslav Lichvar <mlichvar@redhat.com>
Cc: Richard Cochran <richardcochran@gmail.com>
Cc: Prarit Bhargava <prarit@redhat.com>
Cc: Stephen Boyd <stephen.boyd@linaro.org>
Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
drivers/rtc/class.c
drivers/rtc/systohc.c
include/linux/rtc.h
kernel/time/ntp.c