blob: 1152259a4ca0cd79379eba2c0c23bb3b8003780d [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01003 * sched_clock() for unstable CPU clocks
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004 *
Peter Zijlstra90eec102015-11-16 11:08:45 +01005 * Copyright (C) 2008 Red Hat, Inc., Peter Zijlstra
Peter Zijlstra3e51f332008-05-03 18:29:28 +02006 *
Steven Rostedtc300ba22008-07-09 00:15:33 -04007 * Updates and enhancements:
8 * Copyright (C) 2008 Red Hat, Inc. Steven Rostedt <srostedt@redhat.com>
9 *
Peter Zijlstra3e51f332008-05-03 18:29:28 +020010 * Based on code by:
11 * Ingo Molnar <mingo@redhat.com>
12 * Guillaume Chazarain <guichaz@gmail.com>
13 *
Peter Zijlstrac6763292010-05-25 10:48:51 +020014 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +010015 * What this file implements:
Peter Zijlstrac6763292010-05-25 10:48:51 +020016 *
17 * cpu_clock(i) provides a fast (execution time) high resolution
18 * clock with bounded drift between CPUs. The value of cpu_clock(i)
19 * is monotonic for constant i. The timestamp returned is in nanoseconds.
20 *
21 * ######################### BIG FAT WARNING ##########################
22 * # when comparing cpu_clock(i) to cpu_clock(j) for i != j, time can #
23 * # go backwards !! #
24 * ####################################################################
25 *
26 * There is no strict promise about the base, although it tends to start
27 * at 0 on boot (but people really shouldn't rely on that).
28 *
29 * cpu_clock(i) -- can be used from any context, including NMI.
Ingo Molnar97fb7a02018-03-03 14:01:12 +010030 * local_clock() -- is cpu_clock() on the current CPU.
Peter Zijlstrac6763292010-05-25 10:48:51 +020031 *
Peter Zijlstraef08f0f2013-11-28 19:31:23 +010032 * sched_clock_cpu(i)
33 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +010034 * How it is implemented:
Peter Zijlstrac6763292010-05-25 10:48:51 +020035 *
36 * The implementation either uses sched_clock() when
37 * !CONFIG_HAVE_UNSTABLE_SCHED_CLOCK, which means in that case the
38 * sched_clock() is assumed to provide these properties (mostly it means
39 * the architecture provides a globally synchronized highres time source).
40 *
41 * Otherwise it tries to create a semi stable clock from a mixture of other
42 * clocks, including:
43 *
44 * - GTOD (clock monotomic)
Peter Zijlstra3e51f332008-05-03 18:29:28 +020045 * - sched_clock()
46 * - explicit idle events
47 *
Peter Zijlstrac6763292010-05-25 10:48:51 +020048 * We use GTOD as base and use sched_clock() deltas to improve resolution. The
49 * deltas are filtered to provide monotonicity and keeping it within an
50 * expected window.
Peter Zijlstra3e51f332008-05-03 18:29:28 +020051 *
52 * Furthermore, explicit sleep and wakeup hooks allow us to account for time
53 * that is otherwise invisible (TSC gets stopped).
54 *
Peter Zijlstra3e51f332008-05-03 18:29:28 +020055 */
Ingo Molnar325ea102018-03-03 12:20:47 +010056#include "sched.h"
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -040057#include <linux/sched_clock.h>
Peter Zijlstra3e51f332008-05-03 18:29:28 +020058
Hugh Dickins2c3d1032008-07-25 19:45:00 +010059/*
60 * Scheduler clock - returns current time in nanosec units.
61 * This is default implementation.
62 * Architectures and sub-architectures can override this.
63 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -070064unsigned long long __weak sched_clock(void)
Hugh Dickins2c3d1032008-07-25 19:45:00 +010065{
Ron92d23f72009-05-08 22:54:49 +093066 return (unsigned long long)(jiffies - INITIAL_JIFFIES)
67 * (NSEC_PER_SEC / HZ);
Hugh Dickins2c3d1032008-07-25 19:45:00 +010068}
Divyesh Shahb6ac23af2010-04-15 08:54:59 +020069EXPORT_SYMBOL_GPL(sched_clock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +020070
Pavel Tatashin46457ea2018-07-19 16:55:43 -040071static DEFINE_STATIC_KEY_FALSE(sched_clock_running);
Peter Zijlstrac1955a32008-08-11 08:59:03 +020072
Peter Zijlstra3e51f332008-05-03 18:29:28 +020073#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
Peter Zijlstraacb04052017-01-19 14:36:33 +010074/*
75 * We must start with !__sched_clock_stable because the unstable -> stable
76 * transition is accurate, while the stable -> unstable transition is not.
77 *
78 * Similarly we start with __sched_clock_stable_early, thereby assuming we
79 * will become stable, such that there's only a single 1 -> 0 transition.
80 */
Peter Zijlstra555570d72016-12-15 13:21:58 +010081static DEFINE_STATIC_KEY_FALSE(__sched_clock_stable);
Peter Zijlstraacb04052017-01-19 14:36:33 +010082static int __sched_clock_stable_early = 1;
Peter Zijlstra35af99e2013-11-28 19:38:42 +010083
Peter Zijlstra5680d802016-12-15 13:36:17 +010084/*
Peter Zijlstra698eff62017-03-17 12:48:18 +010085 * We want: ktime_get_ns() + __gtod_offset == sched_clock() + __sched_clock_offset
Peter Zijlstra5680d802016-12-15 13:36:17 +010086 */
Peter Zijlstra698eff62017-03-17 12:48:18 +010087__read_mostly u64 __sched_clock_offset;
88static __read_mostly u64 __gtod_offset;
Peter Zijlstra5680d802016-12-15 13:36:17 +010089
90struct sched_clock_data {
91 u64 tick_raw;
92 u64 tick_gtod;
93 u64 clock;
94};
95
96static DEFINE_PER_CPU_SHARED_ALIGNED(struct sched_clock_data, sched_clock_data);
97
98static inline struct sched_clock_data *this_scd(void)
99{
100 return this_cpu_ptr(&sched_clock_data);
101}
102
103static inline struct sched_clock_data *cpu_sdc(int cpu)
104{
105 return &per_cpu(sched_clock_data, cpu);
106}
107
Peter Zijlstra35af99e2013-11-28 19:38:42 +0100108int sched_clock_stable(void)
109{
Peter Zijlstra555570d72016-12-15 13:21:58 +0100110 return static_branch_likely(&__sched_clock_stable);
Peter Zijlstrad375b4e2014-01-22 12:59:18 +0100111}
112
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200113static void __scd_stamp(struct sched_clock_data *scd)
114{
115 scd->tick_gtod = ktime_get_ns();
116 scd->tick_raw = sched_clock();
117}
118
Peter Zijlstrad375b4e2014-01-22 12:59:18 +0100119static void __set_sched_clock_stable(void)
120{
Peter Zijlstra45aea3212017-05-24 08:52:02 +0200121 struct sched_clock_data *scd;
Peter Zijlstra5680d802016-12-15 13:36:17 +0100122
123 /*
Peter Zijlstra45aea3212017-05-24 08:52:02 +0200124 * Since we're still unstable and the tick is already running, we have
125 * to disable IRQs in order to get a consistent scd->tick* reading.
126 */
127 local_irq_disable();
128 scd = this_scd();
129 /*
Peter Zijlstra5680d802016-12-15 13:36:17 +0100130 * Attempt to make the (initial) unstable->stable transition continuous.
131 */
Peter Zijlstra698eff62017-03-17 12:48:18 +0100132 __sched_clock_offset = (scd->tick_gtod + __gtod_offset) - (scd->tick_raw);
Peter Zijlstra45aea3212017-05-24 08:52:02 +0200133 local_irq_enable();
Peter Zijlstra5680d802016-12-15 13:36:17 +0100134
135 printk(KERN_INFO "sched_clock: Marking stable (%lld, %lld)->(%lld, %lld)\n",
Peter Zijlstra698eff62017-03-17 12:48:18 +0100136 scd->tick_gtod, __gtod_offset,
137 scd->tick_raw, __sched_clock_offset);
Peter Zijlstra5680d802016-12-15 13:36:17 +0100138
Peter Zijlstra555570d72016-12-15 13:21:58 +0100139 static_branch_enable(&__sched_clock_stable);
Frederic Weisbecker4f49b902015-07-22 17:03:52 +0200140 tick_dep_clear(TICK_DEP_BIT_CLOCK_UNSTABLE);
Peter Zijlstra35af99e2013-11-28 19:38:42 +0100141}
142
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200143/*
144 * If we ever get here, we're screwed, because we found out -- typically after
145 * the fact -- that TSC wasn't good. This means all our clocksources (including
146 * ktime) could have reported wrong values.
147 *
148 * What we do here is an attempt to fix up and continue sort of where we left
149 * off in a coherent manner.
150 *
151 * The only way to fully avoid random clock jumps is to boot with:
152 * "tsc=unstable".
153 */
Peter Zijlstra71fdb702017-03-13 13:46:21 +0100154static void __sched_clock_work(struct work_struct *work)
155{
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200156 struct sched_clock_data *scd;
157 int cpu;
158
159 /* take a current timestamp and set 'now' */
160 preempt_disable();
161 scd = this_scd();
162 __scd_stamp(scd);
163 scd->clock = scd->tick_gtod + __gtod_offset;
164 preempt_enable();
165
166 /* clone to all CPUs */
167 for_each_possible_cpu(cpu)
168 per_cpu(sched_clock_data, cpu) = *scd;
169
Peter Zijlstra7708d5f2017-04-21 12:52:52 +0200170 printk(KERN_WARNING "TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.\n");
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200171 printk(KERN_INFO "sched_clock: Marking unstable (%lld, %lld)<-(%lld, %lld)\n",
172 scd->tick_gtod, __gtod_offset,
173 scd->tick_raw, __sched_clock_offset);
174
Peter Zijlstra71fdb702017-03-13 13:46:21 +0100175 static_branch_disable(&__sched_clock_stable);
176}
177
178static DECLARE_WORK(sched_clock_work, __sched_clock_work);
179
180static void __clear_sched_clock_stable(void)
Peter Zijlstra35af99e2013-11-28 19:38:42 +0100181{
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200182 if (!sched_clock_stable())
183 return;
Peter Zijlstra5680d802016-12-15 13:36:17 +0100184
Frederic Weisbecker4f49b902015-07-22 17:03:52 +0200185 tick_dep_set(TICK_DEP_BIT_CLOCK_UNSTABLE);
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200186 schedule_work(&sched_clock_work);
Peter Zijlstra71fdb702017-03-13 13:46:21 +0100187}
Peter Zijlstra6577e422013-12-11 18:55:53 +0100188
189void clear_sched_clock_stable(void)
190{
Peter Zijlstrad375b4e2014-01-22 12:59:18 +0100191 __sched_clock_stable_early = 0;
192
Peter Zijlstra9881b022016-12-15 13:35:52 +0100193 smp_mb(); /* matches sched_clock_init_late() */
Peter Zijlstrad375b4e2014-01-22 12:59:18 +0100194
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400195 if (static_key_count(&sched_clock_running.key) == 2)
Peter Zijlstra71fdb702017-03-13 13:46:21 +0100196 __clear_sched_clock_stable();
Peter Zijlstra6577e422013-12-11 18:55:53 +0100197}
198
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400199static void __sched_clock_gtod_offset(void)
200{
Peter Zijlstra9407f5a2018-07-20 10:09:11 +0200201 struct sched_clock_data *scd = this_scd();
202
203 __scd_stamp(scd);
204 __gtod_offset = (scd->tick_raw + __sched_clock_offset) - scd->tick_gtod;
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400205}
206
207void __init sched_clock_init(void)
208{
Pavel Tatashin857baa82018-07-19 16:55:42 -0400209 /*
210 * Set __gtod_offset such that once we mark sched_clock_running,
211 * sched_clock_tick() continues where sched_clock() left off.
212 *
213 * Even if TSC is buggered, we're still UP at this point so it
214 * can't really be out of sync.
215 */
Peter Zijlstra9407f5a2018-07-20 10:09:11 +0200216 local_irq_disable();
Pavel Tatashin857baa82018-07-19 16:55:42 -0400217 __sched_clock_gtod_offset();
Peter Zijlstra9407f5a2018-07-20 10:09:11 +0200218 local_irq_enable();
Pavel Tatashin857baa82018-07-19 16:55:42 -0400219
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400220 static_branch_inc(&sched_clock_running);
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400221}
Peter Zijlstra2e44b7d2017-04-21 12:46:57 +0200222/*
223 * We run this as late_initcall() such that it runs after all built-in drivers,
224 * notably: acpi_processor and intel_idle, which can mark the TSC as unstable.
225 */
226static int __init sched_clock_init_late(void)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200227{
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400228 static_branch_inc(&sched_clock_running);
Peter Zijlstrad375b4e2014-01-22 12:59:18 +0100229 /*
230 * Ensure that it is impossible to not do a static_key update.
231 *
232 * Either {set,clear}_sched_clock_stable() must see sched_clock_running
233 * and do the update, or we must see their __sched_clock_stable_early
234 * and do the update, or both.
235 */
236 smp_mb(); /* matches {set,clear}_sched_clock_stable() */
237
238 if (__sched_clock_stable_early)
239 __set_sched_clock_stable();
Peter Zijlstra2e44b7d2017-04-21 12:46:57 +0200240
241 return 0;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200242}
Peter Zijlstra2e44b7d2017-04-21 12:46:57 +0200243late_initcall(sched_clock_init_late);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200244
245/*
Ingo Molnarb3425012009-02-26 20:20:29 +0100246 * min, max except they take wrapping into account
Peter Zijlstra354879b2008-08-25 17:15:34 +0200247 */
248
249static inline u64 wrap_min(u64 x, u64 y)
250{
251 return (s64)(x - y) < 0 ? x : y;
252}
253
254static inline u64 wrap_max(u64 x, u64 y)
255{
256 return (s64)(x - y) > 0 ? x : y;
257}
258
259/*
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200260 * update the percpu scd from the raw @now value
261 *
262 * - filter out backward motion
Peter Zijlstra354879b2008-08-25 17:15:34 +0200263 * - use the GTOD tick value to create a window to filter crazy TSC values
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200264 */
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200265static u64 sched_clock_local(struct sched_clock_data *scd)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200266{
Pavel Tatashin7b09cc52017-03-22 16:24:17 -0400267 u64 now, clock, old_clock, min_clock, max_clock, gtod;
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200268 s64 delta;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200269
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200270again:
271 now = sched_clock();
272 delta = now - scd->tick_raw;
Peter Zijlstra354879b2008-08-25 17:15:34 +0200273 if (unlikely(delta < 0))
274 delta = 0;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200275
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200276 old_clock = scd->clock;
277
Peter Zijlstra354879b2008-08-25 17:15:34 +0200278 /*
279 * scd->clock = clamp(scd->tick_gtod + delta,
Ingo Molnarb3425012009-02-26 20:20:29 +0100280 * max(scd->tick_gtod, scd->clock),
281 * scd->tick_gtod + TICK_NSEC);
Peter Zijlstra354879b2008-08-25 17:15:34 +0200282 */
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200283
Pavel Tatashin7b09cc52017-03-22 16:24:17 -0400284 gtod = scd->tick_gtod + __gtod_offset;
285 clock = gtod + delta;
286 min_clock = wrap_max(gtod, old_clock);
287 max_clock = wrap_max(old_clock, gtod + TICK_NSEC);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200288
Peter Zijlstra354879b2008-08-25 17:15:34 +0200289 clock = wrap_max(clock, min_clock);
290 clock = wrap_min(clock, max_clock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200291
Eric Dumazet152f9d02009-09-30 20:36:19 +0200292 if (cmpxchg64(&scd->clock, old_clock, clock) != old_clock)
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200293 goto again;
Ingo Molnar56b90612008-07-30 10:15:55 +0200294
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200295 return clock;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200296}
297
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200298static u64 sched_clock_remote(struct sched_clock_data *scd)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200299{
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200300 struct sched_clock_data *my_scd = this_scd();
301 u64 this_clock, remote_clock;
302 u64 *ptr, old_val, val;
303
Thomas Gleixnera1cbcaa2013-04-06 10:10:27 +0200304#if BITS_PER_LONG != 64
305again:
306 /*
307 * Careful here: The local and the remote clock values need to
308 * be read out atomic as we need to compare the values and
309 * then update either the local or the remote side. So the
310 * cmpxchg64 below only protects one readout.
311 *
312 * We must reread via sched_clock_local() in the retry case on
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100313 * 32-bit kernels as an NMI could use sched_clock_local() via the
Thomas Gleixnera1cbcaa2013-04-06 10:10:27 +0200314 * tracer and hit between the readout of
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100315 * the low 32-bit and the high 32-bit portion.
Thomas Gleixnera1cbcaa2013-04-06 10:10:27 +0200316 */
317 this_clock = sched_clock_local(my_scd);
318 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100319 * We must enforce atomic readout on 32-bit, otherwise the
320 * update on the remote CPU can hit inbetween the readout of
321 * the low 32-bit and the high 32-bit portion.
Thomas Gleixnera1cbcaa2013-04-06 10:10:27 +0200322 */
323 remote_clock = cmpxchg64(&scd->clock, 0, 0);
324#else
325 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100326 * On 64-bit kernels the read of [my]scd->clock is atomic versus the
327 * update, so we can avoid the above 32-bit dance.
Thomas Gleixnera1cbcaa2013-04-06 10:10:27 +0200328 */
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200329 sched_clock_local(my_scd);
330again:
331 this_clock = my_scd->clock;
332 remote_clock = scd->clock;
Thomas Gleixnera1cbcaa2013-04-06 10:10:27 +0200333#endif
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200334
335 /*
336 * Use the opportunity that we have both locks
337 * taken to couple the two clocks: we take the
338 * larger time as the latest time for both
339 * runqueues. (this creates monotonic movement)
340 */
341 if (likely((s64)(remote_clock - this_clock) < 0)) {
342 ptr = &scd->clock;
343 old_val = remote_clock;
344 val = this_clock;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200345 } else {
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200346 /*
347 * Should be rare, but possible:
348 */
349 ptr = &my_scd->clock;
350 old_val = this_clock;
351 val = remote_clock;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200352 }
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200353
Eric Dumazet152f9d02009-09-30 20:36:19 +0200354 if (cmpxchg64(ptr, old_val, val) != old_val)
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200355 goto again;
356
357 return val;
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200358}
359
Peter Zijlstrac6763292010-05-25 10:48:51 +0200360/*
361 * Similar to cpu_clock(), but requires local IRQs to be disabled.
362 *
363 * See cpu_clock().
364 */
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200365u64 sched_clock_cpu(int cpu)
366{
Ingo Molnarb3425012009-02-26 20:20:29 +0100367 struct sched_clock_data *scd;
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200368 u64 clock;
369
Peter Zijlstra35af99e2013-11-28 19:38:42 +0100370 if (sched_clock_stable())
Peter Zijlstra698eff62017-03-17 12:48:18 +0100371 return sched_clock() + __sched_clock_offset;
Peter Zijlstraa3817592008-05-29 10:07:15 +0200372
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400373 if (!static_branch_unlikely(&sched_clock_running))
Pavel Tatashin857baa82018-07-19 16:55:42 -0400374 return sched_clock();
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200375
Fernando Luis Vazquez Cao96b3d282014-03-06 14:25:28 +0900376 preempt_disable_notrace();
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200377 scd = cpu_sdc(cpu);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200378
Peter Zijlstradef0a9b2009-09-18 20:14:01 +0200379 if (cpu != smp_processor_id())
380 clock = sched_clock_remote(scd);
381 else
382 clock = sched_clock_local(scd);
Fernando Luis Vazquez Cao96b3d282014-03-06 14:25:28 +0900383 preempt_enable_notrace();
Ingo Molnare4e4e532008-04-14 08:50:02 +0200384
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200385 return clock;
386}
Daniel Lezcano2c923e92016-04-11 16:38:34 +0200387EXPORT_SYMBOL_GPL(sched_clock_cpu);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200388
389void sched_clock_tick(void)
390{
Peter Zijlstra8325d9c2009-02-26 21:40:16 +0100391 struct sched_clock_data *scd;
Peter Zijlstraa3817592008-05-29 10:07:15 +0200392
Peter Zijlstrab421b222017-04-21 12:14:13 +0200393 if (sched_clock_stable())
394 return;
395
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400396 if (!static_branch_unlikely(&sched_clock_running))
Peter Zijlstrab421b222017-04-21 12:14:13 +0200397 return;
398
Frederic Weisbecker2c11dba2017-11-06 16:01:27 +0100399 lockdep_assert_irqs_disabled();
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200400
Peter Zijlstra8325d9c2009-02-26 21:40:16 +0100401 scd = this_scd();
Peter Zijlstracf15ca82017-04-21 12:11:53 +0200402 __scd_stamp(scd);
Peter Zijlstrab421b222017-04-21 12:14:13 +0200403 sched_clock_local(scd);
404}
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200405
Peter Zijlstrab421b222017-04-21 12:14:13 +0200406void sched_clock_tick_stable(void)
407{
Peter Zijlstrab421b222017-04-21 12:14:13 +0200408 if (!sched_clock_stable())
409 return;
410
411 /*
412 * Called under watchdog_lock.
413 *
414 * The watchdog just found this TSC to (still) be stable, so now is a
415 * good moment to update our __gtod_offset. Because once we find the
416 * TSC to be unstable, any computation will be computing crap.
417 */
418 local_irq_disable();
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400419 __sched_clock_gtod_offset();
Peter Zijlstrab421b222017-04-21 12:14:13 +0200420 local_irq_enable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200421}
422
423/*
424 * We are going deep-idle (irqs are disabled):
425 */
426void sched_clock_idle_sleep_event(void)
427{
428 sched_clock_cpu(smp_processor_id());
429}
430EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
431
432/*
Peter Zijlstraf9fccdb2017-04-21 12:43:59 +0200433 * We just idled; resync with ktime.
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200434 */
Peter Zijlstraac1e8432017-04-21 12:26:23 +0200435void sched_clock_idle_wakeup_event(void)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200436{
Peter Zijlstraf9fccdb2017-04-21 12:43:59 +0200437 unsigned long flags;
438
439 if (sched_clock_stable())
Thomas Gleixner1c5745a2008-12-22 23:05:28 +0100440 return;
441
Peter Zijlstraf9fccdb2017-04-21 12:43:59 +0200442 if (unlikely(timekeeping_suspended))
443 return;
444
445 local_irq_save(flags);
Peter Zijlstra354879b2008-08-25 17:15:34 +0200446 sched_clock_tick();
Peter Zijlstraf9fccdb2017-04-21 12:43:59 +0200447 local_irq_restore(flags);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200448}
449EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
450
Peter Zijlstra8325d9c2009-02-26 21:40:16 +0100451#else /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */
452
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400453void __init sched_clock_init(void)
454{
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400455 static_branch_inc(&sched_clock_running);
Pavel Tatashinbd9f9432018-07-30 09:52:52 -0400456 local_irq_disable();
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400457 generic_sched_clock_init();
Pavel Tatashinbd9f9432018-07-30 09:52:52 -0400458 local_irq_enable();
Pavel Tatashin5d2a4e92018-07-19 16:55:41 -0400459}
460
Peter Zijlstra8325d9c2009-02-26 21:40:16 +0100461u64 sched_clock_cpu(int cpu)
462{
Pavel Tatashin46457ea2018-07-19 16:55:43 -0400463 if (!static_branch_unlikely(&sched_clock_running))
Peter Zijlstra8325d9c2009-02-26 21:40:16 +0100464 return 0;
465
466 return sched_clock();
467}
Peter Zijlstra9881b022016-12-15 13:35:52 +0100468
David Millerb9f8fcd2009-12-13 18:25:02 -0800469#endif /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */
470
Cyril Bur545a2bf2015-02-12 15:01:24 -0800471/*
472 * Running clock - returns the time that has elapsed while a guest has been
473 * running.
474 * On a guest this value should be local_clock minus the time the guest was
475 * suspended by the hypervisor (for any reason).
476 * On bare metal this function should return the same as local_clock.
477 * Architectures and sub-architectures can override this.
478 */
479u64 __weak running_clock(void)
480{
481 return local_clock();
482}