blob: b4a68ffcd06bb876231f2893de69f30a8fe854d9 [file] [log] [blame]
Jason Gunthorpe023f3332012-12-17 14:30:53 -07001/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published by
4 * the Free Software Foundation.
5 *
6 */
7#include <linux/rtc.h>
8#include <linux/time.h>
9
10/**
11 * rtc_set_ntp_time - Save NTP synchronized time to the RTC
12 * @now: Current time of day
13 *
Xunlei Pang3c00a1f2015-04-01 20:34:23 -070014 * Replacement for the NTP platform function update_persistent_clock64
Jason Gunthorpe023f3332012-12-17 14:30:53 -070015 * that stores time for later retrieval by rtc_hctosys.
16 *
17 * Returns 0 on successful RTC update, -ENODEV if a RTC update is not
18 * possible at all, and various other -errno for specific temporary failure
19 * cases.
20 *
21 * If temporary failure is indicated the caller should try again 'soon'
22 */
Xunlei Pang9a4a4452015-01-22 02:31:55 +000023int rtc_set_ntp_time(struct timespec64 now)
Jason Gunthorpe023f3332012-12-17 14:30:53 -070024{
25 struct rtc_device *rtc;
26 struct rtc_time tm;
27 int err = -ENODEV;
28
29 if (now.tv_nsec < (NSEC_PER_SEC >> 1))
Xunlei Pang9a4a4452015-01-22 02:31:55 +000030 rtc_time64_to_tm(now.tv_sec, &tm);
Jason Gunthorpe023f3332012-12-17 14:30:53 -070031 else
Xunlei Pang9a4a4452015-01-22 02:31:55 +000032 rtc_time64_to_tm(now.tv_sec + 1, &tm);
Jason Gunthorpe023f3332012-12-17 14:30:53 -070033
Xunlei Pang9c5150b2015-06-12 11:10:16 +080034 rtc = rtc_class_open(CONFIG_RTC_SYSTOHC_DEVICE);
Jason Gunthorpe023f3332012-12-17 14:30:53 -070035 if (rtc) {
36 /* rtc_hctosys exclusively uses UTC, so we call set_time here,
37 * not set_mmss. */
Xunlei Pang8e4ff1a2015-04-01 20:34:27 -070038 if (rtc->ops &&
39 (rtc->ops->set_time ||
40 rtc->ops->set_mmss64 ||
41 rtc->ops->set_mmss))
Jason Gunthorpe023f3332012-12-17 14:30:53 -070042 err = rtc_set_time(rtc, &tm);
43 rtc_class_close(rtc);
44 }
45
46 return err;
47}