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