john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/time/ntp.c |
| 3 | * |
| 4 | * NTP state machine interfaces and logic. |
| 5 | * |
| 6 | * This code was mainly moved from kernel/timer.c and kernel/time.c |
| 7 | * Please see those files for relevant copyright info and historical |
| 8 | * changelogs. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/mm.h> |
| 12 | #include <linux/time.h> |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 13 | #include <linux/timer.h> |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 14 | #include <linux/timex.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 15 | #include <linux/jiffies.h> |
| 16 | #include <linux/hrtimer.h> |
Alexey Dobriyan | aa0ac36 | 2007-07-15 23:40:39 -0700 | [diff] [blame] | 17 | #include <linux/capability.h> |
Roman Zippel | 71abb3a | 2008-05-01 04:34:26 -0700 | [diff] [blame] | 18 | #include <linux/math64.h> |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 19 | #include <linux/clocksource.h> |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 20 | #include <asm/timex.h> |
| 21 | |
Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 22 | /* |
| 23 | * Timekeeping variables |
| 24 | */ |
| 25 | unsigned long tick_usec = TICK_USEC; /* USER_HZ period (usec) */ |
| 26 | unsigned long tick_nsec; /* ACTHZ period (nsec) */ |
Roman Zippel | 8383c42 | 2008-05-01 04:34:39 -0700 | [diff] [blame] | 27 | u64 tick_length; |
| 28 | static u64 tick_length_base; |
Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 29 | |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 30 | static struct hrtimer leap_timer; |
| 31 | |
Roman Zippel | 8f807f8 | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 32 | #define MAX_TICKADJ 500 /* microsecs */ |
| 33 | #define MAX_TICKADJ_SCALED (((u64)(MAX_TICKADJ * NSEC_PER_USEC) << \ |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 34 | NTP_SCALE_SHIFT) / NTP_INTERVAL_FREQ) |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * phase-lock loop variables |
| 38 | */ |
| 39 | /* TIME_ERROR prevents overwriting the CMOS clock */ |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 40 | static int time_state = TIME_OK; /* clock synchronization status */ |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 41 | int time_status = STA_UNSYNC; /* clock status bits */ |
Roman Zippel | 153b5d0 | 2008-05-01 04:34:37 -0700 | [diff] [blame] | 42 | static long time_tai; /* TAI offset (s) */ |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 43 | static s64 time_offset; /* time adjustment (ns) */ |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 44 | static long time_constant = 2; /* pll time constant */ |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 45 | long time_maxerror = NTP_PHASE_LIMIT; /* maximum error (us) */ |
| 46 | long time_esterror = NTP_PHASE_LIMIT; /* estimated error (us) */ |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 47 | static s64 time_freq; /* frequency offset (scaled ns/s)*/ |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 48 | static long time_reftime; /* time at last adjustment (s) */ |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 49 | long time_adjust; |
Roman Zippel | 10a398d | 2008-03-04 15:14:26 -0800 | [diff] [blame] | 50 | static long ntp_tick_adj; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 51 | |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 52 | static void ntp_update_frequency(void) |
| 53 | { |
john stultz | f4304ab | 2007-02-16 01:27:26 -0800 | [diff] [blame] | 54 | u64 second_length = (u64)(tick_usec * NSEC_PER_USEC * USER_HZ) |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 55 | << NTP_SCALE_SHIFT; |
| 56 | second_length += (s64)ntp_tick_adj << NTP_SCALE_SHIFT; |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 57 | second_length += time_freq; |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 58 | |
john stultz | f4304ab | 2007-02-16 01:27:26 -0800 | [diff] [blame] | 59 | tick_length_base = second_length; |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 60 | |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 61 | tick_nsec = div_u64(second_length, HZ) >> NTP_SCALE_SHIFT; |
Roman Zippel | 71abb3a | 2008-05-01 04:34:26 -0700 | [diff] [blame] | 62 | tick_length_base = div_u64(tick_length_base, NTP_INTERVAL_FREQ); |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 65 | static void ntp_update_offset(long offset) |
| 66 | { |
| 67 | long mtemp; |
| 68 | s64 freq_adj; |
| 69 | |
| 70 | if (!(time_status & STA_PLL)) |
| 71 | return; |
| 72 | |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 73 | if (!(time_status & STA_NANO)) |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 74 | offset *= NSEC_PER_USEC; |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Scale the phase adjustment and |
| 78 | * clamp to the operating range. |
| 79 | */ |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 80 | offset = min(offset, MAXPHASE); |
| 81 | offset = max(offset, -MAXPHASE); |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 82 | |
| 83 | /* |
| 84 | * Select how the frequency is to be controlled |
| 85 | * and in which mode (PLL or FLL). |
| 86 | */ |
| 87 | if (time_status & STA_FREQHOLD || time_reftime == 0) |
| 88 | time_reftime = xtime.tv_sec; |
| 89 | mtemp = xtime.tv_sec - time_reftime; |
| 90 | time_reftime = xtime.tv_sec; |
| 91 | |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 92 | freq_adj = (s64)offset * mtemp; |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 93 | freq_adj <<= NTP_SCALE_SHIFT - 2 * (SHIFT_PLL + 2 + time_constant); |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 94 | time_status &= ~STA_MODE; |
| 95 | if (mtemp >= MINSEC && (time_status & STA_FLL || mtemp > MAXSEC)) { |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 96 | freq_adj += div_s64((s64)offset << (NTP_SCALE_SHIFT - SHIFT_FLL), |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 97 | mtemp); |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 98 | time_status |= STA_MODE; |
| 99 | } |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 100 | freq_adj += time_freq; |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 101 | freq_adj = min(freq_adj, MAXFREQ_SCALED); |
| 102 | time_freq = max(freq_adj, -MAXFREQ_SCALED); |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 103 | |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 104 | time_offset = div_s64((s64)offset << NTP_SCALE_SHIFT, NTP_INTERVAL_FREQ); |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 107 | /** |
| 108 | * ntp_clear - Clears the NTP state variables |
| 109 | * |
| 110 | * Must be called while holding a write on the xtime_lock |
| 111 | */ |
| 112 | void ntp_clear(void) |
| 113 | { |
| 114 | time_adjust = 0; /* stop active adjtime() */ |
| 115 | time_status |= STA_UNSYNC; |
| 116 | time_maxerror = NTP_PHASE_LIMIT; |
| 117 | time_esterror = NTP_PHASE_LIMIT; |
| 118 | |
| 119 | ntp_update_frequency(); |
| 120 | |
| 121 | tick_length = tick_length_base; |
Roman Zippel | 3d3675c | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 122 | time_offset = 0; |
Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 123 | } |
| 124 | |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 125 | /* |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 126 | * Leap second processing. If in leap-insert state at the end of the |
| 127 | * day, the system clock is set back one second; if in leap-delete |
| 128 | * state, the system clock is set ahead one second. |
| 129 | */ |
| 130 | static enum hrtimer_restart ntp_leap_second(struct hrtimer *timer) |
| 131 | { |
| 132 | enum hrtimer_restart res = HRTIMER_NORESTART; |
| 133 | |
| 134 | write_seqlock_irq(&xtime_lock); |
| 135 | |
| 136 | switch (time_state) { |
| 137 | case TIME_OK: |
| 138 | break; |
| 139 | case TIME_INS: |
| 140 | xtime.tv_sec--; |
| 141 | wall_to_monotonic.tv_sec++; |
| 142 | time_state = TIME_OOP; |
| 143 | printk(KERN_NOTICE "Clock: " |
| 144 | "inserting leap second 23:59:60 UTC\n"); |
Arjan van de Ven | cc584b2 | 2008-09-01 15:02:30 -0700 | [diff] [blame^] | 145 | hrtimer_add_expires_ns(&leap_timer, NSEC_PER_SEC); |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 146 | res = HRTIMER_RESTART; |
| 147 | break; |
| 148 | case TIME_DEL: |
| 149 | xtime.tv_sec++; |
| 150 | time_tai--; |
| 151 | wall_to_monotonic.tv_sec--; |
| 152 | time_state = TIME_WAIT; |
| 153 | printk(KERN_NOTICE "Clock: " |
| 154 | "deleting leap second 23:59:59 UTC\n"); |
| 155 | break; |
| 156 | case TIME_OOP: |
| 157 | time_tai++; |
| 158 | time_state = TIME_WAIT; |
| 159 | /* fall through */ |
| 160 | case TIME_WAIT: |
| 161 | if (!(time_status & (STA_INS | STA_DEL))) |
| 162 | time_state = TIME_OK; |
| 163 | break; |
| 164 | } |
| 165 | update_vsyscall(&xtime, clock); |
| 166 | |
| 167 | write_sequnlock_irq(&xtime_lock); |
| 168 | |
| 169 | return res; |
| 170 | } |
| 171 | |
| 172 | /* |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 173 | * this routine handles the overflow of the microsecond field |
| 174 | * |
| 175 | * The tricky bits of code to handle the accurate clock support |
| 176 | * were provided by Dave Mills (Mills@UDEL.EDU) of NTP fame. |
| 177 | * They were originally developed for SUN and DEC kernels. |
| 178 | * All the kudos should go to Dave for this stuff. |
| 179 | */ |
| 180 | void second_overflow(void) |
| 181 | { |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 182 | s64 time_adj; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 183 | |
| 184 | /* Bump the maxerror field */ |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 185 | time_maxerror += MAXFREQ / NSEC_PER_USEC; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 186 | if (time_maxerror > NTP_PHASE_LIMIT) { |
| 187 | time_maxerror = NTP_PHASE_LIMIT; |
| 188 | time_status |= STA_UNSYNC; |
| 189 | } |
| 190 | |
| 191 | /* |
Roman Zippel | f199239 | 2006-09-30 23:28:28 -0700 | [diff] [blame] | 192 | * Compute the phase adjustment for the next second. The offset is |
| 193 | * reduced by a fixed factor times the time constant. |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 194 | */ |
Roman Zippel | b0ee755 | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 195 | tick_length = tick_length_base; |
Roman Zippel | f199239 | 2006-09-30 23:28:28 -0700 | [diff] [blame] | 196 | time_adj = shift_right(time_offset, SHIFT_PLL + time_constant); |
Roman Zippel | 3d3675c | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 197 | time_offset -= time_adj; |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 198 | tick_length += time_adj; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 199 | |
Roman Zippel | 8f807f8 | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 200 | if (unlikely(time_adjust)) { |
| 201 | if (time_adjust > MAX_TICKADJ) { |
| 202 | time_adjust -= MAX_TICKADJ; |
| 203 | tick_length += MAX_TICKADJ_SCALED; |
| 204 | } else if (time_adjust < -MAX_TICKADJ) { |
| 205 | time_adjust += MAX_TICKADJ; |
| 206 | tick_length -= MAX_TICKADJ_SCALED; |
| 207 | } else { |
Roman Zippel | 8f807f8 | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 208 | tick_length += (s64)(time_adjust * NSEC_PER_USEC / |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 209 | NTP_INTERVAL_FREQ) << NTP_SCALE_SHIFT; |
Jim Houston | bb1d860 | 2006-10-28 10:38:56 -0700 | [diff] [blame] | 210 | time_adjust = 0; |
Roman Zippel | 8f807f8 | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 211 | } |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 212 | } |
| 213 | } |
| 214 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 215 | #ifdef CONFIG_GENERIC_CMOS_UPDATE |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 216 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 217 | /* Disable the cmos update - used by virtualization and embedded */ |
| 218 | int no_sync_cmos_clock __read_mostly; |
| 219 | |
| 220 | static void sync_cmos_clock(unsigned long dummy); |
| 221 | |
| 222 | static DEFINE_TIMER(sync_cmos_timer, sync_cmos_clock, 0, 0); |
| 223 | |
| 224 | static void sync_cmos_clock(unsigned long dummy) |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 225 | { |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 226 | struct timespec now, next; |
| 227 | int fail = 1; |
| 228 | |
| 229 | /* |
| 230 | * If we have an externally synchronized Linux clock, then update |
| 231 | * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be |
| 232 | * called as close as possible to 500 ms before the new second starts. |
| 233 | * This code is run on a timer. If the clock is set, that timer |
| 234 | * may not expire at the correct time. Thus, we adjust... |
| 235 | */ |
| 236 | if (!ntp_synced()) |
| 237 | /* |
| 238 | * Not synced, exit, do not restart a timer (if one is |
| 239 | * running, let it run out). |
| 240 | */ |
| 241 | return; |
| 242 | |
| 243 | getnstimeofday(&now); |
David P. Reed | fa6a1a5 | 2007-11-14 17:49:21 -0500 | [diff] [blame] | 244 | if (abs(now.tv_nsec - (NSEC_PER_SEC / 2)) <= tick_nsec / 2) |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 245 | fail = update_persistent_clock(now); |
| 246 | |
| 247 | next.tv_nsec = (NSEC_PER_SEC / 2) - now.tv_nsec; |
| 248 | if (next.tv_nsec <= 0) |
| 249 | next.tv_nsec += NSEC_PER_SEC; |
| 250 | |
| 251 | if (!fail) |
| 252 | next.tv_sec = 659; |
| 253 | else |
| 254 | next.tv_sec = 0; |
| 255 | |
| 256 | if (next.tv_nsec >= NSEC_PER_SEC) { |
| 257 | next.tv_sec++; |
| 258 | next.tv_nsec -= NSEC_PER_SEC; |
| 259 | } |
| 260 | mod_timer(&sync_cmos_timer, jiffies + timespec_to_jiffies(&next)); |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 263 | static void notify_cmos_timer(void) |
| 264 | { |
Tony Breeds | 298a5df | 2007-09-11 15:24:03 -0700 | [diff] [blame] | 265 | if (!no_sync_cmos_clock) |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 266 | mod_timer(&sync_cmos_timer, jiffies + 1); |
| 267 | } |
| 268 | |
| 269 | #else |
| 270 | static inline void notify_cmos_timer(void) { } |
| 271 | #endif |
| 272 | |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 273 | /* adjtimex mainly allows reading (and writing, if superuser) of |
| 274 | * kernel time-keeping variables. used by xntpd. |
| 275 | */ |
| 276 | int do_adjtimex(struct timex *txc) |
| 277 | { |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 278 | struct timespec ts; |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 279 | long save_adjust, sec; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 280 | int result; |
| 281 | |
| 282 | /* In order to modify anything, you gotta be super-user! */ |
| 283 | if (txc->modes && !capable(CAP_SYS_TIME)) |
| 284 | return -EPERM; |
| 285 | |
| 286 | /* Now we validate the data before disabling interrupts */ |
| 287 | |
John Stultz | 52bfb36 | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 288 | if ((txc->modes & ADJ_OFFSET_SINGLESHOT) == ADJ_OFFSET_SINGLESHOT) { |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 289 | /* singleshot must not be used with any other mode bits */ |
| 290 | if (txc->modes & ~ADJ_OFFSET_SS_READ) |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 291 | return -EINVAL; |
John Stultz | 52bfb36 | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 292 | } |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 293 | |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 294 | /* if the quartz is off by more than 10% something is VERY wrong ! */ |
| 295 | if (txc->modes & ADJ_TICK) |
| 296 | if (txc->tick < 900000/USER_HZ || |
| 297 | txc->tick > 1100000/USER_HZ) |
| 298 | return -EINVAL; |
| 299 | |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 300 | if (time_state != TIME_OK && txc->modes & ADJ_STATUS) |
| 301 | hrtimer_cancel(&leap_timer); |
| 302 | getnstimeofday(&ts); |
| 303 | |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 304 | write_seqlock_irq(&xtime_lock); |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 305 | |
| 306 | /* Save for later - semantics of adjtime is to return old value */ |
Roman Zippel | 8f807f8 | 2006-09-30 23:28:25 -0700 | [diff] [blame] | 307 | save_adjust = time_adjust; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 308 | |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 309 | /* If there are input parameters, then process them */ |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 310 | if (txc->modes) { |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 311 | if (txc->modes & ADJ_STATUS) { |
| 312 | if ((time_status & STA_PLL) && |
| 313 | !(txc->status & STA_PLL)) { |
| 314 | time_state = TIME_OK; |
| 315 | time_status = STA_UNSYNC; |
| 316 | } |
| 317 | /* only set allowed bits */ |
| 318 | time_status &= STA_RONLY; |
| 319 | time_status |= txc->status & ~STA_RONLY; |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 320 | |
| 321 | switch (time_state) { |
| 322 | case TIME_OK: |
| 323 | start_timer: |
| 324 | sec = ts.tv_sec; |
| 325 | if (time_status & STA_INS) { |
| 326 | time_state = TIME_INS; |
| 327 | sec += 86400 - sec % 86400; |
| 328 | hrtimer_start(&leap_timer, ktime_set(sec, 0), HRTIMER_MODE_ABS); |
| 329 | } else if (time_status & STA_DEL) { |
| 330 | time_state = TIME_DEL; |
| 331 | sec += 86400 - (sec + 1) % 86400; |
| 332 | hrtimer_start(&leap_timer, ktime_set(sec, 0), HRTIMER_MODE_ABS); |
| 333 | } |
| 334 | break; |
| 335 | case TIME_INS: |
| 336 | case TIME_DEL: |
| 337 | time_state = TIME_OK; |
| 338 | goto start_timer; |
| 339 | break; |
| 340 | case TIME_WAIT: |
| 341 | if (!(time_status & (STA_INS | STA_DEL))) |
| 342 | time_state = TIME_OK; |
| 343 | break; |
| 344 | case TIME_OOP: |
| 345 | hrtimer_restart(&leap_timer); |
| 346 | break; |
| 347 | } |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | if (txc->modes & ADJ_NANO) |
| 351 | time_status |= STA_NANO; |
| 352 | if (txc->modes & ADJ_MICRO) |
| 353 | time_status &= ~STA_NANO; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 354 | |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 355 | if (txc->modes & ADJ_FREQUENCY) { |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 356 | time_freq = (s64)txc->freq * PPM_SCALE; |
| 357 | time_freq = min(time_freq, MAXFREQ_SCALED); |
| 358 | time_freq = max(time_freq, -MAXFREQ_SCALED); |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 359 | } |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 360 | |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 361 | if (txc->modes & ADJ_MAXERROR) |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 362 | time_maxerror = txc->maxerror; |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 363 | if (txc->modes & ADJ_ESTERROR) |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 364 | time_esterror = txc->esterror; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 365 | |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 366 | if (txc->modes & ADJ_TIMECONST) { |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 367 | time_constant = txc->constant; |
| 368 | if (!(time_status & STA_NANO)) |
| 369 | time_constant += 4; |
| 370 | time_constant = min(time_constant, (long)MAXTC); |
| 371 | time_constant = max(time_constant, 0l); |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 372 | } |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 373 | |
Roman Zippel | 153b5d0 | 2008-05-01 04:34:37 -0700 | [diff] [blame] | 374 | if (txc->modes & ADJ_TAI && txc->constant > 0) |
| 375 | time_tai = txc->constant; |
| 376 | |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 377 | if (txc->modes & ADJ_OFFSET) { |
| 378 | if (txc->modes == ADJ_OFFSET_SINGLESHOT) |
| 379 | /* adjtime() is independent from ntp_adjtime() */ |
| 380 | time_adjust = txc->offset; |
| 381 | else |
| 382 | ntp_update_offset(txc->offset); |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 383 | } |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 384 | if (txc->modes & ADJ_TICK) |
| 385 | tick_usec = txc->tick; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 386 | |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 387 | if (txc->modes & (ADJ_TICK|ADJ_FREQUENCY|ADJ_OFFSET)) |
| 388 | ntp_update_frequency(); |
| 389 | } |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 390 | |
| 391 | result = time_state; /* mostly `TIME_OK' */ |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 392 | if (time_status & (STA_UNSYNC|STA_CLOCKERR)) |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 393 | result = TIME_ERROR; |
| 394 | |
John Stultz | 52bfb36 | 2007-11-26 20:42:19 +0100 | [diff] [blame] | 395 | if ((txc->modes == ADJ_OFFSET_SINGLESHOT) || |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 396 | (txc->modes == ADJ_OFFSET_SS_READ)) |
john stultz | d62ac21 | 2007-03-26 21:32:26 -0800 | [diff] [blame] | 397 | txc->offset = save_adjust; |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 398 | else { |
Roman Zippel | 9f14f66 | 2008-05-01 04:34:36 -0700 | [diff] [blame] | 399 | txc->offset = shift_right(time_offset * NTP_INTERVAL_FREQ, |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 400 | NTP_SCALE_SHIFT); |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 401 | if (!(time_status & STA_NANO)) |
| 402 | txc->offset /= NSEC_PER_USEC; |
| 403 | } |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 404 | txc->freq = shift_right((s32)(time_freq >> PPM_SCALE_INV_SHIFT) * |
| 405 | (s64)PPM_SCALE_INV, |
Roman Zippel | 7fc5c78 | 2008-05-01 04:34:38 -0700 | [diff] [blame] | 406 | NTP_SCALE_SHIFT); |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 407 | txc->maxerror = time_maxerror; |
| 408 | txc->esterror = time_esterror; |
| 409 | txc->status = time_status; |
| 410 | txc->constant = time_constant; |
Adrian Bunk | 70bc42f | 2006-09-30 23:28:29 -0700 | [diff] [blame] | 411 | txc->precision = 1; |
Roman Zippel | 074b3b8 | 2008-05-01 04:34:34 -0700 | [diff] [blame] | 412 | txc->tolerance = MAXFREQ_SCALED / PPM_SCALE; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 413 | txc->tick = tick_usec; |
Roman Zippel | 153b5d0 | 2008-05-01 04:34:37 -0700 | [diff] [blame] | 414 | txc->tai = time_tai; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 415 | |
| 416 | /* PPS is not implemented, so these are zero */ |
| 417 | txc->ppsfreq = 0; |
| 418 | txc->jitter = 0; |
| 419 | txc->shift = 0; |
| 420 | txc->stabil = 0; |
| 421 | txc->jitcnt = 0; |
| 422 | txc->calcnt = 0; |
| 423 | txc->errcnt = 0; |
| 424 | txc->stbcnt = 0; |
| 425 | write_sequnlock_irq(&xtime_lock); |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 426 | |
Roman Zippel | eea83d8 | 2008-05-01 04:34:33 -0700 | [diff] [blame] | 427 | txc->time.tv_sec = ts.tv_sec; |
| 428 | txc->time.tv_usec = ts.tv_nsec; |
| 429 | if (!(time_status & STA_NANO)) |
| 430 | txc->time.tv_usec /= NSEC_PER_USEC; |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 431 | |
Thomas Gleixner | 8264445 | 2007-07-21 04:37:37 -0700 | [diff] [blame] | 432 | notify_cmos_timer(); |
Roman Zippel | ee9851b | 2008-05-01 04:34:32 -0700 | [diff] [blame] | 433 | |
| 434 | return result; |
john stultz | 4c7ee8d | 2006-09-30 23:28:22 -0700 | [diff] [blame] | 435 | } |
Roman Zippel | 10a398d | 2008-03-04 15:14:26 -0800 | [diff] [blame] | 436 | |
| 437 | static int __init ntp_tick_adj_setup(char *str) |
| 438 | { |
| 439 | ntp_tick_adj = simple_strtol(str, NULL, 0); |
| 440 | return 1; |
| 441 | } |
| 442 | |
| 443 | __setup("ntp_tick_adj=", ntp_tick_adj_setup); |
Roman Zippel | 7dffa3c | 2008-05-01 04:34:41 -0700 | [diff] [blame] | 444 | |
| 445 | void __init ntp_init(void) |
| 446 | { |
| 447 | ntp_clear(); |
| 448 | hrtimer_init(&leap_timer, CLOCK_REALTIME, HRTIMER_MODE_ABS); |
| 449 | leap_timer.function = ntp_leap_second; |
| 450 | } |