| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 1 | /* | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 2 | * NTP state machine interfaces and logic. | 
|  | 3 | * | 
|  | 4 | * This code was mainly moved from kernel/timer.c and kernel/time.c | 
|  | 5 | * Please see those files for relevant copyright info and historical | 
|  | 6 | * changelogs. | 
|  | 7 | */ | 
| Alexey Dobriyan | aa0ac36 | 2007-07-15 23:40:39 -0700 | [diff] [blame] | 8 | #include <linux/capability.h> | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 9 | #include <linux/clocksource.h> | 
| Maciej W. Rozycki | eb3f938 | 2008-09-22 14:42:40 -0700 | [diff] [blame] | 10 | #include <linux/workqueue.h> | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 11 | #include <linux/hrtimer.h> | 
|  | 12 | #include <linux/jiffies.h> | 
|  | 13 | #include <linux/math64.h> | 
|  | 14 | #include <linux/timex.h> | 
|  | 15 | #include <linux/time.h> | 
|  | 16 | #include <linux/mm.h> | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 17 |  | 
| Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 18 | /* | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 19 | * NTP timekeeping variables: | 
| Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 20 | */ | 
| Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 21 |  | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 22 | /* USER_HZ period (usecs): */ | 
|  | 23 | unsigned long			tick_usec = TICK_USEC; | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 24 |  | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 25 | /* ACTHZ period (nsecs): */ | 
|  | 26 | unsigned long			tick_nsec; | 
|  | 27 |  | 
|  | 28 | u64				tick_length; | 
|  | 29 | static u64			tick_length_base; | 
|  | 30 |  | 
|  | 31 | static struct hrtimer		leap_timer; | 
|  | 32 |  | 
| Ingo Molnar | bbd1267 | 2009-02-22 12:11:11 +0100 | [diff] [blame] | 33 | #define MAX_TICKADJ		500LL		/* usecs */ | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 34 | #define MAX_TICKADJ_SCALED \ | 
| Ingo Molnar | bbd1267 | 2009-02-22 12:11:11 +0100 | [diff] [blame] | 35 | (((MAX_TICKADJ * NSEC_PER_USEC) << NTP_SCALE_SHIFT) / NTP_INTERVAL_FREQ) | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 36 |  | 
|  | 37 | /* | 
|  | 38 | * phase-lock loop variables | 
|  | 39 | */ | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 40 |  | 
|  | 41 | /* | 
|  | 42 | * clock synchronization status | 
|  | 43 | * | 
|  | 44 | * (TIME_ERROR prevents overwriting the CMOS clock) | 
|  | 45 | */ | 
|  | 46 | static int			time_state = TIME_OK; | 
|  | 47 |  | 
|  | 48 | /* clock status bits:							*/ | 
|  | 49 | int				time_status = STA_UNSYNC; | 
|  | 50 |  | 
|  | 51 | /* TAI offset (secs):							*/ | 
|  | 52 | static long			time_tai; | 
|  | 53 |  | 
|  | 54 | /* time adjustment (nsecs):						*/ | 
|  | 55 | static s64			time_offset; | 
|  | 56 |  | 
|  | 57 | /* pll time constant:							*/ | 
|  | 58 | static long			time_constant = 2; | 
|  | 59 |  | 
|  | 60 | /* maximum error (usecs):						*/ | 
| john stultz | 1f5b8f8 | 2010-01-28 15:02:41 -0800 | [diff] [blame] | 61 | static long			time_maxerror = NTP_PHASE_LIMIT; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 62 |  | 
|  | 63 | /* estimated error (usecs):						*/ | 
| john stultz | 1f5b8f8 | 2010-01-28 15:02:41 -0800 | [diff] [blame] | 64 | static long			time_esterror = NTP_PHASE_LIMIT; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 65 |  | 
|  | 66 | /* frequency offset (scaled nsecs/secs):				*/ | 
|  | 67 | static s64			time_freq; | 
|  | 68 |  | 
|  | 69 | /* time at last adjustment (secs):					*/ | 
|  | 70 | static long			time_reftime; | 
|  | 71 |  | 
| John Stultz | e1292ba | 2010-03-18 20:19:27 -0700 | [diff] [blame] | 72 | static long			time_adjust; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 73 |  | 
| Ingo Molnar | 069569e | 2009-02-22 16:03:37 +0100 | [diff] [blame] | 74 | /* constant (boot-param configurable) NTP tick adjustment (upscaled)	*/ | 
|  | 75 | static s64			ntp_tick_adj; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 76 |  | 
|  | 77 | /* | 
|  | 78 | * NTP methods: | 
|  | 79 | */ | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 80 |  | 
| Ingo Molnar | 9ce616a | 2009-02-22 12:42:59 +0100 | [diff] [blame] | 81 | /* | 
|  | 82 | * Update (tick_length, tick_length_base, tick_nsec), based | 
|  | 83 | * on (tick_usec, ntp_tick_adj, time_freq): | 
|  | 84 | */ | 
| Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 85 | static void ntp_update_frequency(void) | 
|  | 86 | { | 
| Ingo Molnar | 9ce616a | 2009-02-22 12:42:59 +0100 | [diff] [blame] | 87 | u64 second_length; | 
| Ingo Molnar | bc26c31 | 2009-02-22 12:17:36 +0100 | [diff] [blame] | 88 | u64 new_base; | 
| Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 89 |  | 
| Ingo Molnar | 9ce616a | 2009-02-22 12:42:59 +0100 | [diff] [blame] | 90 | second_length		 = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ) | 
|  | 91 | << NTP_SCALE_SHIFT; | 
|  | 92 |  | 
| Ingo Molnar | 069569e | 2009-02-22 16:03:37 +0100 | [diff] [blame] | 93 | second_length		+= ntp_tick_adj; | 
| Ingo Molnar | 9ce616a | 2009-02-22 12:42:59 +0100 | [diff] [blame] | 94 | second_length		+= time_freq; | 
|  | 95 |  | 
| Ingo Molnar | 9ce616a | 2009-02-22 12:42:59 +0100 | [diff] [blame] | 96 | tick_nsec		 = div_u64(second_length, HZ) >> NTP_SCALE_SHIFT; | 
| Ingo Molnar | bc26c31 | 2009-02-22 12:17:36 +0100 | [diff] [blame] | 97 | new_base		 = div_u64(second_length, NTP_INTERVAL_FREQ); | 
| john stultz | fdcedf7 | 2009-02-18 16:02:22 -0800 | [diff] [blame] | 98 |  | 
|  | 99 | /* | 
|  | 100 | * Don't wait for the next second_overflow, apply | 
| Ingo Molnar | bc26c31 | 2009-02-22 12:17:36 +0100 | [diff] [blame] | 101 | * the change to the tick length immediately: | 
| john stultz | fdcedf7 | 2009-02-18 16:02:22 -0800 | [diff] [blame] | 102 | */ | 
| Ingo Molnar | bc26c31 | 2009-02-22 12:17:36 +0100 | [diff] [blame] | 103 | tick_length		+= new_base - tick_length_base; | 
|  | 104 | tick_length_base	 = new_base; | 
| Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 105 | } | 
|  | 106 |  | 
| Ingo Molnar | 478b7aa | 2009-02-22 13:22:23 +0100 | [diff] [blame] | 107 | static inline s64 ntp_update_offset_fll(s64 offset64, long secs) | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 108 | { | 
|  | 109 | time_status &= ~STA_MODE; | 
|  | 110 |  | 
|  | 111 | if (secs < MINSEC) | 
| Ingo Molnar | 478b7aa | 2009-02-22 13:22:23 +0100 | [diff] [blame] | 112 | return 0; | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 113 |  | 
|  | 114 | if (!(time_status & STA_FLL) && (secs <= MAXSEC)) | 
| Ingo Molnar | 478b7aa | 2009-02-22 13:22:23 +0100 | [diff] [blame] | 115 | return 0; | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 116 |  | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 117 | time_status |= STA_MODE; | 
|  | 118 |  | 
| Ingo Molnar | 478b7aa | 2009-02-22 13:22:23 +0100 | [diff] [blame] | 119 | return div_s64(offset64 << (NTP_SCALE_SHIFT - SHIFT_FLL), secs); | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 122 | static void ntp_update_offset(long offset) | 
|  | 123 | { | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 124 | s64 freq_adj; | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 125 | s64 offset64; | 
|  | 126 | long secs; | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 127 |  | 
|  | 128 | if (!(time_status & STA_PLL)) | 
|  | 129 | return; | 
|  | 130 |  | 
| Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 131 | if (!(time_status & STA_NANO)) | 
| Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 132 | offset *= NSEC_PER_USEC; | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 133 |  | 
|  | 134 | /* | 
|  | 135 | * Scale the phase adjustment and | 
|  | 136 | * clamp to the operating range. | 
|  | 137 | */ | 
| Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 138 | offset = min(offset, MAXPHASE); | 
|  | 139 | offset = max(offset, -MAXPHASE); | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 140 |  | 
|  | 141 | /* | 
|  | 142 | * Select how the frequency is to be controlled | 
|  | 143 | * and in which mode (PLL or FLL). | 
|  | 144 | */ | 
| John Stultz | 7e1b584 | 2010-01-28 20:20:44 -0800 | [diff] [blame] | 145 | secs = get_seconds() - time_reftime; | 
| Ingo Molnar | 10dd31a | 2009-02-22 13:38:40 +0100 | [diff] [blame] | 146 | if (unlikely(time_status & STA_FREQHOLD)) | 
| Ingo Molnar | c7986ac | 2009-02-22 13:29:09 +0100 | [diff] [blame] | 147 | secs = 0; | 
|  | 148 |  | 
| John Stultz | 7e1b584 | 2010-01-28 20:20:44 -0800 | [diff] [blame] | 149 | time_reftime = get_seconds(); | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 150 |  | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 151 | offset64    = offset; | 
|  | 152 | freq_adj    = (offset64 * secs) << | 
|  | 153 | (NTP_SCALE_SHIFT - 2 * (SHIFT_PLL + 2 + time_constant)); | 
| Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 154 |  | 
| Ingo Molnar | 478b7aa | 2009-02-22 13:22:23 +0100 | [diff] [blame] | 155 | freq_adj    += ntp_update_offset_fll(offset64, secs); | 
| Ingo Molnar | f939890 | 2009-02-22 12:57:49 +0100 | [diff] [blame] | 156 |  | 
|  | 157 | freq_adj    = min(freq_adj + time_freq, MAXFREQ_SCALED); | 
|  | 158 |  | 
|  | 159 | time_freq   = max(freq_adj, -MAXFREQ_SCALED); | 
|  | 160 |  | 
|  | 161 | time_offset = div_s64(offset64 << NTP_SCALE_SHIFT, NTP_INTERVAL_FREQ); | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 162 | } | 
|  | 163 |  | 
| Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 164 | /** | 
|  | 165 | * ntp_clear - Clears the NTP state variables | 
|  | 166 | * | 
|  | 167 | * Must be called while holding a write on the xtime_lock | 
|  | 168 | */ | 
|  | 169 | void ntp_clear(void) | 
|  | 170 | { | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 171 | time_adjust	= 0;		/* stop active adjtime() */ | 
|  | 172 | time_status	|= STA_UNSYNC; | 
|  | 173 | time_maxerror	= NTP_PHASE_LIMIT; | 
|  | 174 | time_esterror	= NTP_PHASE_LIMIT; | 
| Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 175 |  | 
|  | 176 | ntp_update_frequency(); | 
|  | 177 |  | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 178 | tick_length	= tick_length_base; | 
|  | 179 | time_offset	= 0; | 
| Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 180 | } | 
|  | 181 |  | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 182 | /* | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 183 | * Leap second processing. If in leap-insert state at the end of the | 
|  | 184 | * day, the system clock is set back one second; if in leap-delete | 
|  | 185 | * state, the system clock is set ahead one second. | 
|  | 186 | */ | 
|  | 187 | static enum hrtimer_restart ntp_leap_second(struct hrtimer *timer) | 
|  | 188 | { | 
|  | 189 | enum hrtimer_restart res = HRTIMER_NORESTART; | 
|  | 190 |  | 
| Peter Zijlstra | ca10949 | 2008-11-25 12:43:51 +0100 | [diff] [blame] | 191 | write_seqlock(&xtime_lock); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 192 |  | 
|  | 193 | switch (time_state) { | 
|  | 194 | case TIME_OK: | 
|  | 195 | break; | 
|  | 196 | case TIME_INS: | 
| John Stultz | 31089c1 | 2009-08-14 15:47:18 +0200 | [diff] [blame] | 197 | timekeeping_leap_insert(-1); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 198 | time_state = TIME_OOP; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 199 | printk(KERN_NOTICE | 
|  | 200 | "Clock: inserting leap second 23:59:60 UTC\n"); | 
| Arjan van de Ven | cc584b2 | 2008-09-01 15:02:30 -0700 | [diff] [blame] | 201 | hrtimer_add_expires_ns(&leap_timer, NSEC_PER_SEC); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 202 | res = HRTIMER_RESTART; | 
|  | 203 | break; | 
|  | 204 | case TIME_DEL: | 
| John Stultz | 31089c1 | 2009-08-14 15:47:18 +0200 | [diff] [blame] | 205 | timekeeping_leap_insert(1); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 206 | time_tai--; | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 207 | time_state = TIME_WAIT; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 208 | printk(KERN_NOTICE | 
|  | 209 | "Clock: deleting leap second 23:59:59 UTC\n"); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 210 | break; | 
|  | 211 | case TIME_OOP: | 
|  | 212 | time_tai++; | 
|  | 213 | time_state = TIME_WAIT; | 
|  | 214 | /* fall through */ | 
|  | 215 | case TIME_WAIT: | 
|  | 216 | if (!(time_status & (STA_INS | STA_DEL))) | 
|  | 217 | time_state = TIME_OK; | 
|  | 218 | break; | 
|  | 219 | } | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 220 |  | 
| Peter Zijlstra | ca10949 | 2008-11-25 12:43:51 +0100 | [diff] [blame] | 221 | write_sequnlock(&xtime_lock); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 222 |  | 
|  | 223 | return res; | 
|  | 224 | } | 
|  | 225 |  | 
|  | 226 | /* | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 227 | * this routine handles the overflow of the microsecond field | 
|  | 228 | * | 
|  | 229 | * The tricky bits of code to handle the accurate clock support | 
|  | 230 | * were provided by Dave Mills (Mills@UDEL.EDU) of NTP fame. | 
|  | 231 | * They were originally developed for SUN and DEC kernels. | 
|  | 232 | * All the kudos should go to Dave for this stuff. | 
|  | 233 | */ | 
|  | 234 | void second_overflow(void) | 
|  | 235 | { | 
| Ingo Molnar | 39854fe | 2009-02-22 16:06:58 +0100 | [diff] [blame] | 236 | s64 delta; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 237 |  | 
|  | 238 | /* Bump the maxerror field */ | 
| Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 239 | time_maxerror += MAXFREQ / NSEC_PER_USEC; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 240 | if (time_maxerror > NTP_PHASE_LIMIT) { | 
|  | 241 | time_maxerror = NTP_PHASE_LIMIT; | 
|  | 242 | time_status |= STA_UNSYNC; | 
|  | 243 | } | 
|  | 244 |  | 
|  | 245 | /* | 
| Roman Zippel | f199239 | 2006-09-30 23:28:28 -0700 | [diff] [blame] | 246 | * Compute the phase adjustment for the next second. The offset is | 
|  | 247 | * reduced by a fixed factor times the time constant. | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 248 | */ | 
| Ingo Molnar | 39854fe | 2009-02-22 16:06:58 +0100 | [diff] [blame] | 249 | tick_length	 = tick_length_base; | 
|  | 250 |  | 
|  | 251 | delta		 = shift_right(time_offset, SHIFT_PLL + time_constant); | 
|  | 252 | time_offset	-= delta; | 
|  | 253 | tick_length	+= delta; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 254 |  | 
| Ingo Molnar | 3c972c2 | 2009-02-22 12:06:57 +0100 | [diff] [blame] | 255 | if (!time_adjust) | 
|  | 256 | return; | 
|  | 257 |  | 
|  | 258 | if (time_adjust > MAX_TICKADJ) { | 
|  | 259 | time_adjust -= MAX_TICKADJ; | 
|  | 260 | tick_length += MAX_TICKADJ_SCALED; | 
|  | 261 | return; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 262 | } | 
| Ingo Molnar | 3c972c2 | 2009-02-22 12:06:57 +0100 | [diff] [blame] | 263 |  | 
|  | 264 | if (time_adjust < -MAX_TICKADJ) { | 
|  | 265 | time_adjust += MAX_TICKADJ; | 
|  | 266 | tick_length -= MAX_TICKADJ_SCALED; | 
|  | 267 | return; | 
|  | 268 | } | 
|  | 269 |  | 
|  | 270 | tick_length += (s64)(time_adjust * NSEC_PER_USEC / NTP_INTERVAL_FREQ) | 
|  | 271 | << NTP_SCALE_SHIFT; | 
|  | 272 | time_adjust = 0; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 273 | } | 
|  | 274 |  | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 275 | #ifdef CONFIG_GENERIC_CMOS_UPDATE | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 276 |  | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 277 | /* Disable the cmos update - used by virtualization and embedded */ | 
|  | 278 | int no_sync_cmos_clock  __read_mostly; | 
|  | 279 |  | 
| Maciej W. Rozycki | eb3f938 | 2008-09-22 14:42:40 -0700 | [diff] [blame] | 280 | static void sync_cmos_clock(struct work_struct *work); | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 281 |  | 
| Maciej W. Rozycki | eb3f938 | 2008-09-22 14:42:40 -0700 | [diff] [blame] | 282 | static DECLARE_DELAYED_WORK(sync_cmos_work, sync_cmos_clock); | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 283 |  | 
| Maciej W. Rozycki | eb3f938 | 2008-09-22 14:42:40 -0700 | [diff] [blame] | 284 | static void sync_cmos_clock(struct work_struct *work) | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 285 | { | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 286 | struct timespec now, next; | 
|  | 287 | int fail = 1; | 
|  | 288 |  | 
|  | 289 | /* | 
|  | 290 | * If we have an externally synchronized Linux clock, then update | 
|  | 291 | * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be | 
|  | 292 | * called as close as possible to 500 ms before the new second starts. | 
|  | 293 | * This code is run on a timer.  If the clock is set, that timer | 
|  | 294 | * may not expire at the correct time.  Thus, we adjust... | 
|  | 295 | */ | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 296 | if (!ntp_synced()) { | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 297 | /* | 
|  | 298 | * Not synced, exit, do not restart a timer (if one is | 
|  | 299 | * running, let it run out). | 
|  | 300 | */ | 
|  | 301 | return; | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 302 | } | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 303 |  | 
|  | 304 | getnstimeofday(&now); | 
| David P. Reed | fa6a1a5 | 2007-11-14 17:49:21 -0500 | [diff] [blame] | 305 | if (abs(now.tv_nsec - (NSEC_PER_SEC / 2)) <= tick_nsec / 2) | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 306 | fail = update_persistent_clock(now); | 
|  | 307 |  | 
| Maciej W. Rozycki | 4ff4b9e | 2008-09-05 14:05:31 -0700 | [diff] [blame] | 308 | next.tv_nsec = (NSEC_PER_SEC / 2) - now.tv_nsec - (TICK_NSEC / 2); | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 309 | if (next.tv_nsec <= 0) | 
|  | 310 | next.tv_nsec += NSEC_PER_SEC; | 
|  | 311 |  | 
|  | 312 | if (!fail) | 
|  | 313 | next.tv_sec = 659; | 
|  | 314 | else | 
|  | 315 | next.tv_sec = 0; | 
|  | 316 |  | 
|  | 317 | if (next.tv_nsec >= NSEC_PER_SEC) { | 
|  | 318 | next.tv_sec++; | 
|  | 319 | next.tv_nsec -= NSEC_PER_SEC; | 
|  | 320 | } | 
| Maciej W. Rozycki | eb3f938 | 2008-09-22 14:42:40 -0700 | [diff] [blame] | 321 | schedule_delayed_work(&sync_cmos_work, timespec_to_jiffies(&next)); | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 322 | } | 
|  | 323 |  | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 324 | static void notify_cmos_timer(void) | 
|  | 325 | { | 
| Tony Breeds | 298a5df | 2007-09-11 15:24:03 -0700 | [diff] [blame] | 326 | if (!no_sync_cmos_clock) | 
| Maciej W. Rozycki | eb3f938 | 2008-09-22 14:42:40 -0700 | [diff] [blame] | 327 | schedule_delayed_work(&sync_cmos_work, 0); | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 328 | } | 
|  | 329 |  | 
|  | 330 | #else | 
|  | 331 | static inline void notify_cmos_timer(void) { } | 
|  | 332 | #endif | 
|  | 333 |  | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 334 | /* | 
|  | 335 | * Start the leap seconds timer: | 
|  | 336 | */ | 
|  | 337 | static inline void ntp_start_leap_timer(struct timespec *ts) | 
|  | 338 | { | 
|  | 339 | long now = ts->tv_sec; | 
|  | 340 |  | 
|  | 341 | if (time_status & STA_INS) { | 
|  | 342 | time_state = TIME_INS; | 
|  | 343 | now += 86400 - now % 86400; | 
|  | 344 | hrtimer_start(&leap_timer, ktime_set(now, 0), HRTIMER_MODE_ABS); | 
|  | 345 |  | 
|  | 346 | return; | 
|  | 347 | } | 
|  | 348 |  | 
|  | 349 | if (time_status & STA_DEL) { | 
|  | 350 | time_state = TIME_DEL; | 
|  | 351 | now += 86400 - (now + 1) % 86400; | 
|  | 352 | hrtimer_start(&leap_timer, ktime_set(now, 0), HRTIMER_MODE_ABS); | 
|  | 353 | } | 
|  | 354 | } | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 355 |  | 
|  | 356 | /* | 
|  | 357 | * Propagate a new txc->status value into the NTP state: | 
|  | 358 | */ | 
|  | 359 | static inline void process_adj_status(struct timex *txc, struct timespec *ts) | 
|  | 360 | { | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 361 | if ((time_status & STA_PLL) && !(txc->status & STA_PLL)) { | 
|  | 362 | time_state = TIME_OK; | 
|  | 363 | time_status = STA_UNSYNC; | 
|  | 364 | } | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 365 |  | 
|  | 366 | /* | 
|  | 367 | * If we turn on PLL adjustments then reset the | 
|  | 368 | * reference time to current time. | 
|  | 369 | */ | 
|  | 370 | if (!(time_status & STA_PLL) && (txc->status & STA_PLL)) | 
| John Stultz | 7e1b584 | 2010-01-28 20:20:44 -0800 | [diff] [blame] | 371 | time_reftime = get_seconds(); | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 372 |  | 
| John Stultz | a2a5ac8 | 2009-02-26 09:46:14 -0800 | [diff] [blame] | 373 | /* only set allowed bits */ | 
|  | 374 | time_status &= STA_RONLY; | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 375 | time_status |= txc->status & ~STA_RONLY; | 
|  | 376 |  | 
|  | 377 | switch (time_state) { | 
|  | 378 | case TIME_OK: | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 379 | ntp_start_leap_timer(ts); | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 380 | break; | 
|  | 381 | case TIME_INS: | 
|  | 382 | case TIME_DEL: | 
|  | 383 | time_state = TIME_OK; | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 384 | ntp_start_leap_timer(ts); | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 385 | case TIME_WAIT: | 
|  | 386 | if (!(time_status & (STA_INS | STA_DEL))) | 
|  | 387 | time_state = TIME_OK; | 
|  | 388 | break; | 
|  | 389 | case TIME_OOP: | 
|  | 390 | hrtimer_restart(&leap_timer); | 
|  | 391 | break; | 
|  | 392 | } | 
|  | 393 | } | 
|  | 394 | /* | 
|  | 395 | * Called with the xtime lock held, so we can access and modify | 
|  | 396 | * all the global NTP state: | 
|  | 397 | */ | 
|  | 398 | static inline void process_adjtimex_modes(struct timex *txc, struct timespec *ts) | 
|  | 399 | { | 
|  | 400 | if (txc->modes & ADJ_STATUS) | 
|  | 401 | process_adj_status(txc, ts); | 
|  | 402 |  | 
|  | 403 | if (txc->modes & ADJ_NANO) | 
|  | 404 | time_status |= STA_NANO; | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 405 |  | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 406 | if (txc->modes & ADJ_MICRO) | 
|  | 407 | time_status &= ~STA_NANO; | 
|  | 408 |  | 
|  | 409 | if (txc->modes & ADJ_FREQUENCY) { | 
| Ingo Molnar | 2b9d149 | 2009-02-22 15:48:43 +0100 | [diff] [blame] | 410 | time_freq = txc->freq * PPM_SCALE; | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 411 | time_freq = min(time_freq, MAXFREQ_SCALED); | 
|  | 412 | time_freq = max(time_freq, -MAXFREQ_SCALED); | 
|  | 413 | } | 
|  | 414 |  | 
|  | 415 | if (txc->modes & ADJ_MAXERROR) | 
|  | 416 | time_maxerror = txc->maxerror; | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 417 |  | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 418 | if (txc->modes & ADJ_ESTERROR) | 
|  | 419 | time_esterror = txc->esterror; | 
|  | 420 |  | 
|  | 421 | if (txc->modes & ADJ_TIMECONST) { | 
|  | 422 | time_constant = txc->constant; | 
|  | 423 | if (!(time_status & STA_NANO)) | 
|  | 424 | time_constant += 4; | 
|  | 425 | time_constant = min(time_constant, (long)MAXTC); | 
|  | 426 | time_constant = max(time_constant, 0l); | 
|  | 427 | } | 
|  | 428 |  | 
|  | 429 | if (txc->modes & ADJ_TAI && txc->constant > 0) | 
|  | 430 | time_tai = txc->constant; | 
|  | 431 |  | 
|  | 432 | if (txc->modes & ADJ_OFFSET) | 
|  | 433 | ntp_update_offset(txc->offset); | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 434 |  | 
| Ingo Molnar | 80f2257 | 2009-02-22 15:15:32 +0100 | [diff] [blame] | 435 | if (txc->modes & ADJ_TICK) | 
|  | 436 | tick_usec = txc->tick; | 
|  | 437 |  | 
|  | 438 | if (txc->modes & (ADJ_TICK|ADJ_FREQUENCY|ADJ_OFFSET)) | 
|  | 439 | ntp_update_frequency(); | 
|  | 440 | } | 
|  | 441 |  | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 442 | /* | 
|  | 443 | * adjtimex mainly allows reading (and writing, if superuser) of | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 444 | * kernel time-keeping variables. used by xntpd. | 
|  | 445 | */ | 
|  | 446 | int do_adjtimex(struct timex *txc) | 
|  | 447 | { | 
| Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 448 | struct timespec ts; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 449 | int result; | 
|  | 450 |  | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 451 | /* Validate the data before disabling interrupts */ | 
|  | 452 | if (txc->modes & ADJ_ADJTIME) { | 
| Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 453 | /* singleshot must not be used with any other mode bits */ | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 454 | if (!(txc->modes & ADJ_OFFSET_SINGLESHOT)) | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 455 | return -EINVAL; | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 456 | if (!(txc->modes & ADJ_OFFSET_READONLY) && | 
|  | 457 | !capable(CAP_SYS_TIME)) | 
|  | 458 | return -EPERM; | 
|  | 459 | } else { | 
|  | 460 | /* In order to modify anything, you gotta be super-user! */ | 
|  | 461 | if (txc->modes && !capable(CAP_SYS_TIME)) | 
|  | 462 | return -EPERM; | 
|  | 463 |  | 
| Ingo Molnar | 53bbfa9 | 2008-02-20 07:58:42 +0100 | [diff] [blame] | 464 | /* | 
|  | 465 | * if the quartz is off by more than 10% then | 
|  | 466 | * something is VERY wrong! | 
|  | 467 | */ | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 468 | if (txc->modes & ADJ_TICK && | 
|  | 469 | (txc->tick <  900000/USER_HZ || | 
|  | 470 | txc->tick > 1100000/USER_HZ)) | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 471 | return -EINVAL; | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 472 |  | 
|  | 473 | if (txc->modes & ADJ_STATUS && time_state != TIME_OK) | 
|  | 474 | hrtimer_cancel(&leap_timer); | 
| John Stultz | 52bfb36 | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 475 | } | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 476 |  | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 477 | getnstimeofday(&ts); | 
|  | 478 |  | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 479 | write_seqlock_irq(&xtime_lock); | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 480 |  | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 481 | if (txc->modes & ADJ_ADJTIME) { | 
|  | 482 | long save_adjust = time_adjust; | 
|  | 483 |  | 
|  | 484 | if (!(txc->modes & ADJ_OFFSET_READONLY)) { | 
|  | 485 | /* adjtime() is independent from ntp_adjtime() */ | 
|  | 486 | time_adjust = txc->offset; | 
|  | 487 | ntp_update_frequency(); | 
|  | 488 | } | 
|  | 489 | txc->offset = save_adjust; | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 490 | } else { | 
|  | 491 |  | 
|  | 492 | /* If there are input parameters, then process them: */ | 
|  | 493 | if (txc->modes) | 
|  | 494 | process_adjtimex_modes(txc, &ts); | 
|  | 495 |  | 
|  | 496 | txc->offset = shift_right(time_offset * NTP_INTERVAL_FREQ, | 
|  | 497 | NTP_SCALE_SHIFT); | 
|  | 498 | if (!(time_status & STA_NANO)) | 
|  | 499 | txc->offset /= NSEC_PER_USEC; | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 500 | } | 
| Roman Zippel | 916c7a8 | 2008-08-20 16:46:08 -0700 | [diff] [blame] | 501 |  | 
| Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 502 | result = time_state;	/* mostly `TIME_OK' */ | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 503 | if (time_status & (STA_UNSYNC|STA_CLOCKERR)) | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 504 | result = TIME_ERROR; | 
|  | 505 |  | 
| Roman Zippel | d40e944 | 2008-09-22 14:42:44 -0700 | [diff] [blame] | 506 | txc->freq	   = shift_right((time_freq >> PPM_SCALE_INV_SHIFT) * | 
| Ingo Molnar | 2b9d149 | 2009-02-22 15:48:43 +0100 | [diff] [blame] | 507 | PPM_SCALE_INV, NTP_SCALE_SHIFT); | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 508 | txc->maxerror	   = time_maxerror; | 
|  | 509 | txc->esterror	   = time_esterror; | 
|  | 510 | txc->status	   = time_status; | 
|  | 511 | txc->constant	   = time_constant; | 
| Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 512 | txc->precision	   = 1; | 
| Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 513 | txc->tolerance	   = MAXFREQ_SCALED / PPM_SCALE; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 514 | txc->tick	   = tick_usec; | 
| Roman Zippel | 153b5d0 | 2008-05-01 04:34:37 -0700 | [diff] [blame] | 515 | txc->tai	   = time_tai; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 516 |  | 
|  | 517 | /* PPS is not implemented, so these are zero */ | 
|  | 518 | txc->ppsfreq	   = 0; | 
|  | 519 | txc->jitter	   = 0; | 
|  | 520 | txc->shift	   = 0; | 
|  | 521 | txc->stabil	   = 0; | 
|  | 522 | txc->jitcnt	   = 0; | 
|  | 523 | txc->calcnt	   = 0; | 
|  | 524 | txc->errcnt	   = 0; | 
|  | 525 | txc->stbcnt	   = 0; | 
| Ingo Molnar | e962916 | 2009-02-22 15:35:18 +0100 | [diff] [blame] | 526 |  | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 527 | write_sequnlock_irq(&xtime_lock); | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 528 |  | 
| Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 529 | txc->time.tv_sec = ts.tv_sec; | 
|  | 530 | txc->time.tv_usec = ts.tv_nsec; | 
|  | 531 | if (!(time_status & STA_NANO)) | 
|  | 532 | txc->time.tv_usec /= NSEC_PER_USEC; | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 533 |  | 
| Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 534 | notify_cmos_timer(); | 
| Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 535 |  | 
|  | 536 | return result; | 
| john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 537 | } | 
| Roman Zippel | 10a398d | 2008-03-04 15:14:26 -0800 | [diff] [blame] | 538 |  | 
|  | 539 | static int __init ntp_tick_adj_setup(char *str) | 
|  | 540 | { | 
|  | 541 | ntp_tick_adj = simple_strtol(str, NULL, 0); | 
| Ingo Molnar | 069569e | 2009-02-22 16:03:37 +0100 | [diff] [blame] | 542 | ntp_tick_adj <<= NTP_SCALE_SHIFT; | 
|  | 543 |  | 
| Roman Zippel | 10a398d | 2008-03-04 15:14:26 -0800 | [diff] [blame] | 544 | return 1; | 
|  | 545 | } | 
|  | 546 |  | 
|  | 547 | __setup("ntp_tick_adj=", ntp_tick_adj_setup); | 
| Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 548 |  | 
|  | 549 | void __init ntp_init(void) | 
|  | 550 | { | 
|  | 551 | ntp_clear(); | 
|  | 552 | hrtimer_init(&leap_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS); | 
|  | 553 | leap_timer.function = ntp_leap_second; | 
|  | 554 | } |