blob: 7ec82c1c61c5f13b3f031b09f5b71edb7b7b8fcd [file] [log] [blame]
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001/*
2 * sched_clock for unstable cpu clocks
3 *
4 * Copyright (C) 2008 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
5 *
Steven Rostedtc300ba22008-07-09 00:15:33 -04006 * Updates and enhancements:
7 * Copyright (C) 2008 Red Hat, Inc. Steven Rostedt <srostedt@redhat.com>
8 *
Peter Zijlstra3e51f332008-05-03 18:29:28 +02009 * Based on code by:
10 * Ingo Molnar <mingo@redhat.com>
11 * Guillaume Chazarain <guichaz@gmail.com>
12 *
13 * Create a semi stable clock from a mixture of other events, including:
14 * - gtod
Peter Zijlstra3e51f332008-05-03 18:29:28 +020015 * - sched_clock()
16 * - explicit idle events
17 *
18 * We use gtod as base and the unstable clock deltas. The deltas are filtered,
Peter Zijlstra354879b2008-08-25 17:15:34 +020019 * making it monotonic and keeping it within an expected window.
Peter Zijlstra3e51f332008-05-03 18:29:28 +020020 *
21 * Furthermore, explicit sleep and wakeup hooks allow us to account for time
22 * that is otherwise invisible (TSC gets stopped).
23 *
24 * The clock: sched_clock_cpu() is monotonic per cpu, and should be somewhat
Peter Zijlstra354879b2008-08-25 17:15:34 +020025 * consistent between cpus (never more than 2 jiffies difference).
Peter Zijlstra3e51f332008-05-03 18:29:28 +020026 */
Peter Zijlstra3e51f332008-05-03 18:29:28 +020027#include <linux/spinlock.h>
Ingo Molnar6409c4d2008-05-12 21:21:14 +020028#include <linux/hardirq.h>
Peter Zijlstra3e51f332008-05-03 18:29:28 +020029#include <linux/module.h>
Ingo Molnarb3425012009-02-26 20:20:29 +010030#include <linux/percpu.h>
31#include <linux/ktime.h>
32#include <linux/sched.h>
Peter Zijlstra3e51f332008-05-03 18:29:28 +020033
Hugh Dickins2c3d1032008-07-25 19:45:00 +010034/*
35 * Scheduler clock - returns current time in nanosec units.
36 * This is default implementation.
37 * Architectures and sub-architectures can override this.
38 */
39unsigned long long __attribute__((weak)) sched_clock(void)
40{
41 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
42}
Peter Zijlstra3e51f332008-05-03 18:29:28 +020043
Peter Zijlstrac1955a32008-08-11 08:59:03 +020044static __read_mostly int sched_clock_running;
45
Peter Zijlstra3e51f332008-05-03 18:29:28 +020046#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
Ingo Molnarb3425012009-02-26 20:20:29 +010047__read_mostly int sched_clock_stable;
48#else
49static const int sched_clock_stable = 1;
50#endif
Peter Zijlstra3e51f332008-05-03 18:29:28 +020051
52struct sched_clock_data {
53 /*
54 * Raw spinlock - this is a special case: this might be called
55 * from within instrumentation code so we dont want to do any
56 * instrumentation ourselves.
57 */
58 raw_spinlock_t lock;
59
Peter Zijlstra3e51f332008-05-03 18:29:28 +020060 u64 tick_raw;
61 u64 tick_gtod;
62 u64 clock;
63};
64
65static DEFINE_PER_CPU_SHARED_ALIGNED(struct sched_clock_data, sched_clock_data);
66
67static inline struct sched_clock_data *this_scd(void)
68{
69 return &__get_cpu_var(sched_clock_data);
70}
71
72static inline struct sched_clock_data *cpu_sdc(int cpu)
73{
74 return &per_cpu(sched_clock_data, cpu);
75}
76
77void sched_clock_init(void)
78{
79 u64 ktime_now = ktime_to_ns(ktime_get());
Peter Zijlstra3e51f332008-05-03 18:29:28 +020080 int cpu;
81
82 for_each_possible_cpu(cpu) {
83 struct sched_clock_data *scd = cpu_sdc(cpu);
84
85 scd->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
Peter Zijlstraa3817592008-05-29 10:07:15 +020086 scd->tick_raw = 0;
Peter Zijlstra3e51f332008-05-03 18:29:28 +020087 scd->tick_gtod = ktime_now;
88 scd->clock = ktime_now;
89 }
Peter Zijlstraa3817592008-05-29 10:07:15 +020090
91 sched_clock_running = 1;
Peter Zijlstra3e51f332008-05-03 18:29:28 +020092}
93
94/*
Ingo Molnarb3425012009-02-26 20:20:29 +010095 * min, max except they take wrapping into account
Peter Zijlstra354879b2008-08-25 17:15:34 +020096 */
97
98static inline u64 wrap_min(u64 x, u64 y)
99{
100 return (s64)(x - y) < 0 ? x : y;
101}
102
103static inline u64 wrap_max(u64 x, u64 y)
104{
105 return (s64)(x - y) > 0 ? x : y;
106}
107
108/*
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200109 * update the percpu scd from the raw @now value
110 *
111 * - filter out backward motion
Peter Zijlstra354879b2008-08-25 17:15:34 +0200112 * - use the GTOD tick value to create a window to filter crazy TSC values
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200113 */
Ingo Molnar56b90612008-07-30 10:15:55 +0200114static u64 __update_sched_clock(struct sched_clock_data *scd, u64 now)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200115{
Ingo Molnar18e4e362008-07-30 10:13:35 +0200116 s64 delta = now - scd->tick_raw;
Peter Zijlstra354879b2008-08-25 17:15:34 +0200117 u64 clock, min_clock, max_clock;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200118
119 WARN_ON_ONCE(!irqs_disabled());
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200120
Peter Zijlstra354879b2008-08-25 17:15:34 +0200121 if (unlikely(delta < 0))
122 delta = 0;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200123
Ingo Molnarb3425012009-02-26 20:20:29 +0100124 if (unlikely(!sched_clock_running))
125 return 0ull;
126
Peter Zijlstra354879b2008-08-25 17:15:34 +0200127 /*
128 * scd->clock = clamp(scd->tick_gtod + delta,
Ingo Molnarb3425012009-02-26 20:20:29 +0100129 * max(scd->tick_gtod, scd->clock),
130 * scd->tick_gtod + TICK_NSEC);
Peter Zijlstra354879b2008-08-25 17:15:34 +0200131 */
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200132
Peter Zijlstra354879b2008-08-25 17:15:34 +0200133 clock = scd->tick_gtod + delta;
134 min_clock = wrap_max(scd->tick_gtod, scd->clock);
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100135 max_clock = wrap_max(scd->clock, scd->tick_gtod + TICK_NSEC);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200136
Peter Zijlstra354879b2008-08-25 17:15:34 +0200137 clock = wrap_max(clock, min_clock);
138 clock = wrap_min(clock, max_clock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200139
Ingo Molnare4e4e532008-04-14 08:50:02 +0200140 scd->clock = clock;
Ingo Molnar56b90612008-07-30 10:15:55 +0200141
Peter Zijlstra354879b2008-08-25 17:15:34 +0200142 return scd->clock;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200143}
144
145static void lock_double_clock(struct sched_clock_data *data1,
146 struct sched_clock_data *data2)
147{
148 if (data1 < data2) {
149 __raw_spin_lock(&data1->lock);
150 __raw_spin_lock(&data2->lock);
151 } else {
152 __raw_spin_lock(&data2->lock);
153 __raw_spin_lock(&data1->lock);
154 }
155}
156
157u64 sched_clock_cpu(int cpu)
158{
Ingo Molnar4a273f22008-07-30 10:22:07 +0200159 u64 now, clock, this_clock, remote_clock;
Ingo Molnarb3425012009-02-26 20:20:29 +0100160 struct sched_clock_data *scd;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200161
Ingo Molnarb3425012009-02-26 20:20:29 +0100162 if (sched_clock_stable)
163 return sched_clock();
Peter Zijlstraa3817592008-05-29 10:07:15 +0200164
Ingo Molnarb3425012009-02-26 20:20:29 +0100165 scd = cpu_sdc(cpu);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200166
Ingo Molnar6409c4d2008-05-12 21:21:14 +0200167 /*
168 * Normally this is not called in NMI context - but if it is,
169 * trying to do any locking here is totally lethal.
170 */
171 if (unlikely(in_nmi()))
172 return scd->clock;
173
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200174 if (unlikely(!sched_clock_running))
175 return 0ull;
176
177 WARN_ON_ONCE(!irqs_disabled());
178 now = sched_clock();
179
180 if (cpu != raw_smp_processor_id()) {
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200181 struct sched_clock_data *my_scd = this_scd();
182
183 lock_double_clock(scd, my_scd);
184
Ingo Molnar4a273f22008-07-30 10:22:07 +0200185 this_clock = __update_sched_clock(my_scd, now);
186 remote_clock = scd->clock;
187
188 /*
189 * Use the opportunity that we have both locks
190 * taken to couple the two clocks: we take the
191 * larger time as the latest time for both
192 * runqueues. (this creates monotonic movement)
193 */
Peter Zijlstra354879b2008-08-25 17:15:34 +0200194 if (likely((s64)(remote_clock - this_clock) < 0)) {
Ingo Molnar4a273f22008-07-30 10:22:07 +0200195 clock = this_clock;
196 scd->clock = clock;
197 } else {
198 /*
199 * Should be rare, but possible:
200 */
201 clock = remote_clock;
202 my_scd->clock = remote_clock;
203 }
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200204
205 __raw_spin_unlock(&my_scd->lock);
206 } else {
207 __raw_spin_lock(&scd->lock);
Ingo Molnar4a273f22008-07-30 10:22:07 +0200208 clock = __update_sched_clock(scd, now);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200209 }
210
Ingo Molnare4e4e532008-04-14 08:50:02 +0200211 __raw_spin_unlock(&scd->lock);
212
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200213 return clock;
214}
215
Ingo Molnarb3425012009-02-26 20:20:29 +0100216#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
217
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200218void sched_clock_tick(void)
219{
220 struct sched_clock_data *scd = this_scd();
221 u64 now, now_gtod;
222
Peter Zijlstraa3817592008-05-29 10:07:15 +0200223 if (unlikely(!sched_clock_running))
224 return;
225
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200226 WARN_ON_ONCE(!irqs_disabled());
227
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200228 now_gtod = ktime_to_ns(ktime_get());
Steven Rostedta83bc472008-07-09 00:15:32 -0400229 now = sched_clock();
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200230
231 __raw_spin_lock(&scd->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200232 scd->tick_raw = now;
233 scd->tick_gtod = now_gtod;
Peter Zijlstra354879b2008-08-25 17:15:34 +0200234 __update_sched_clock(scd, now);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200235 __raw_spin_unlock(&scd->lock);
236}
237
238/*
239 * We are going deep-idle (irqs are disabled):
240 */
241void sched_clock_idle_sleep_event(void)
242{
243 sched_clock_cpu(smp_processor_id());
244}
245EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
246
247/*
248 * We just idled delta nanoseconds (called with irqs disabled):
249 */
250void sched_clock_idle_wakeup_event(u64 delta_ns)
251{
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100252 if (timekeeping_suspended)
253 return;
254
Peter Zijlstra354879b2008-08-25 17:15:34 +0200255 sched_clock_tick();
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200256 touch_softlockup_watchdog();
257}
258EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
259
Ingo Molnarb3425012009-02-26 20:20:29 +0100260#endif /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200261
Peter Zijlstra76a2a6e2008-06-27 13:41:15 +0200262unsigned long long cpu_clock(int cpu)
263{
264 unsigned long long clock;
265 unsigned long flags;
266
Ingo Molnar2d452c92008-06-29 15:01:59 +0200267 local_irq_save(flags);
Peter Zijlstra76a2a6e2008-06-27 13:41:15 +0200268 clock = sched_clock_cpu(cpu);
Ingo Molnar2d452c92008-06-29 15:01:59 +0200269 local_irq_restore(flags);
Peter Zijlstra76a2a6e2008-06-27 13:41:15 +0200270
271 return clock;
272}
Ingo Molnar4c9fe8a2008-06-27 14:49:35 +0200273EXPORT_SYMBOL_GPL(cpu_clock);