NTP: Add a CONFIG_RTC_SYSTOHC configuration
authorJason Gunthorpe <jgunthorpe@obsidianresearch.com>
Mon, 17 Dec 2012 21:30:53 +0000 (14:30 -0700)
committerJohn Stultz <john.stultz@linaro.org>
Wed, 16 Jan 2013 02:16:06 +0000 (18:16 -0800)
commit023f333a99cee9b5cd3268ff87298eb01a31f78e
treebf1d316ac4f4ad6ccd9f98206debece6f24a7a4f
parent503637375269e33f368fd3484a199beace01f36e
NTP: Add a CONFIG_RTC_SYSTOHC configuration

The purpose of this option is to allow ARM/etc systems that rely on the
class RTC subsystem to have the same kind of automatic NTP based
synchronization that we have on PC platforms. Today ARM does not
implement update_persistent_clock and makes extensive use of the class
RTC system.

When enabled CONFIG_RTC_SYSTOHC will provide a generic
rtc_update_persistent_clock that stores the current time in the RTC and
is intended complement the existing CONFIG_RTC_HCTOSYS option that loads
the RTC at boot.

Like with RTC_HCTOSYS the platform's update_persistent_clock is used
first, if it works. Platforms with mixed class RTC and non-RTC drivers
need to return ENODEV when class RTC should be used. Such an update for
PPC is included in this patch.

Long term, implementations of update_persistent_clock should migrate to
proper class RTC drivers and use CONFIG_RTC_SYSTOHC instead.

Tested on ARM kirkwood and PPC405

Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
arch/powerpc/kernel/time.c
drivers/rtc/Kconfig
drivers/rtc/Makefile
drivers/rtc/systohc.c [new file with mode: 0644]
include/linux/rtc.h
kernel/time/ntp.c