New helper - current_umask()
[linux-2.6-block.git] / kernel / sched_clock.c
CommitLineData
3e51f33f
PZ
1/*
2 * sched_clock for unstable cpu clocks
3 *
4 * Copyright (C) 2008 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
5 *
c300ba25
SR
6 * Updates and enhancements:
7 * Copyright (C) 2008 Red Hat, Inc. Steven Rostedt <srostedt@redhat.com>
8 *
3e51f33f
PZ
9 * 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
3e51f33f
PZ
15 * - sched_clock()
16 * - explicit idle events
17 *
18 * We use gtod as base and the unstable clock deltas. The deltas are filtered,
354879bb 19 * making it monotonic and keeping it within an expected window.
3e51f33f
PZ
20 *
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
354879bb 25 * consistent between cpus (never more than 2 jiffies difference).
3e51f33f 26 */
3e51f33f 27#include <linux/spinlock.h>
3e51f33f 28#include <linux/module.h>
b342501c
IM
29#include <linux/percpu.h>
30#include <linux/ktime.h>
31#include <linux/sched.h>
3e51f33f 32
2c3d103b
HD
33/*
34 * Scheduler clock - returns current time in nanosec units.
35 * This is default implementation.
36 * Architectures and sub-architectures can override this.
37 */
38unsigned long long __attribute__((weak)) sched_clock(void)
39{
40 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
41}
3e51f33f 42
c1955a3d
PZ
43static __read_mostly int sched_clock_running;
44
3e51f33f 45#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
b342501c 46__read_mostly int sched_clock_stable;
3e51f33f
PZ
47
48struct sched_clock_data {
49 /*
50 * Raw spinlock - this is a special case: this might be called
51 * from within instrumentation code so we dont want to do any
52 * instrumentation ourselves.
53 */
54 raw_spinlock_t lock;
55
3e51f33f
PZ
56 u64 tick_raw;
57 u64 tick_gtod;
58 u64 clock;
59};
60
61static DEFINE_PER_CPU_SHARED_ALIGNED(struct sched_clock_data, sched_clock_data);
62
63static inline struct sched_clock_data *this_scd(void)
64{
65 return &__get_cpu_var(sched_clock_data);
66}
67
68static inline struct sched_clock_data *cpu_sdc(int cpu)
69{
70 return &per_cpu(sched_clock_data, cpu);
71}
72
73void sched_clock_init(void)
74{
75 u64 ktime_now = ktime_to_ns(ktime_get());
3e51f33f
PZ
76 int cpu;
77
78 for_each_possible_cpu(cpu) {
79 struct sched_clock_data *scd = cpu_sdc(cpu);
80
81 scd->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
a381759d 82 scd->tick_raw = 0;
3e51f33f
PZ
83 scd->tick_gtod = ktime_now;
84 scd->clock = ktime_now;
85 }
a381759d
PZ
86
87 sched_clock_running = 1;
3e51f33f
PZ
88}
89
354879bb 90/*
b342501c 91 * min, max except they take wrapping into account
354879bb
PZ
92 */
93
94static inline u64 wrap_min(u64 x, u64 y)
95{
96 return (s64)(x - y) < 0 ? x : y;
97}
98
99static inline u64 wrap_max(u64 x, u64 y)
100{
101 return (s64)(x - y) > 0 ? x : y;
102}
103
3e51f33f
PZ
104/*
105 * update the percpu scd from the raw @now value
106 *
107 * - filter out backward motion
354879bb 108 * - use the GTOD tick value to create a window to filter crazy TSC values
3e51f33f 109 */
56b90612 110static u64 __update_sched_clock(struct sched_clock_data *scd, u64 now)
3e51f33f 111{
18e4e36c 112 s64 delta = now - scd->tick_raw;
354879bb 113 u64 clock, min_clock, max_clock;
3e51f33f 114
354879bb
PZ
115 if (unlikely(delta < 0))
116 delta = 0;
3e51f33f 117
354879bb
PZ
118 /*
119 * scd->clock = clamp(scd->tick_gtod + delta,
b342501c
IM
120 * max(scd->tick_gtod, scd->clock),
121 * scd->tick_gtod + TICK_NSEC);
354879bb 122 */
3e51f33f 123
354879bb
PZ
124 clock = scd->tick_gtod + delta;
125 min_clock = wrap_max(scd->tick_gtod, scd->clock);
1c5745aa 126 max_clock = wrap_max(scd->clock, scd->tick_gtod + TICK_NSEC);
3e51f33f 127
354879bb
PZ
128 clock = wrap_max(clock, min_clock);
129 clock = wrap_min(clock, max_clock);
3e51f33f 130
e4e4e534 131 scd->clock = clock;
56b90612 132
354879bb 133 return scd->clock;
3e51f33f
PZ
134}
135
136static void lock_double_clock(struct sched_clock_data *data1,
137 struct sched_clock_data *data2)
138{
139 if (data1 < data2) {
140 __raw_spin_lock(&data1->lock);
141 __raw_spin_lock(&data2->lock);
142 } else {
143 __raw_spin_lock(&data2->lock);
144 __raw_spin_lock(&data1->lock);
145 }
146}
147
148u64 sched_clock_cpu(int cpu)
149{
4a273f20 150 u64 now, clock, this_clock, remote_clock;
b342501c 151 struct sched_clock_data *scd;
3e51f33f 152
b342501c
IM
153 if (sched_clock_stable)
154 return sched_clock();
a381759d 155
b342501c 156 scd = cpu_sdc(cpu);
3e51f33f
PZ
157 WARN_ON_ONCE(!irqs_disabled());
158 now = sched_clock();
159
160 if (cpu != raw_smp_processor_id()) {
3e51f33f
PZ
161 struct sched_clock_data *my_scd = this_scd();
162
163 lock_double_clock(scd, my_scd);
164
4a273f20
IM
165 this_clock = __update_sched_clock(my_scd, now);
166 remote_clock = scd->clock;
167
168 /*
169 * Use the opportunity that we have both locks
170 * taken to couple the two clocks: we take the
171 * larger time as the latest time for both
172 * runqueues. (this creates monotonic movement)
173 */
354879bb 174 if (likely((s64)(remote_clock - this_clock) < 0)) {
4a273f20
IM
175 clock = this_clock;
176 scd->clock = clock;
177 } else {
178 /*
179 * Should be rare, but possible:
180 */
181 clock = remote_clock;
182 my_scd->clock = remote_clock;
183 }
3e51f33f
PZ
184
185 __raw_spin_unlock(&my_scd->lock);
186 } else {
187 __raw_spin_lock(&scd->lock);
4a273f20 188 clock = __update_sched_clock(scd, now);
3e51f33f
PZ
189 }
190
e4e4e534
IM
191 __raw_spin_unlock(&scd->lock);
192
3e51f33f
PZ
193 return clock;
194}
195
196void sched_clock_tick(void)
197{
8325d9c0 198 struct sched_clock_data *scd;
3e51f33f
PZ
199 u64 now, now_gtod;
200
8325d9c0
PZ
201 if (sched_clock_stable)
202 return;
203
a381759d
PZ
204 if (unlikely(!sched_clock_running))
205 return;
206
3e51f33f
PZ
207 WARN_ON_ONCE(!irqs_disabled());
208
8325d9c0 209 scd = this_scd();
3e51f33f 210 now_gtod = ktime_to_ns(ktime_get());
a83bc47c 211 now = sched_clock();
3e51f33f
PZ
212
213 __raw_spin_lock(&scd->lock);
3e51f33f
PZ
214 scd->tick_raw = now;
215 scd->tick_gtod = now_gtod;
354879bb 216 __update_sched_clock(scd, now);
3e51f33f
PZ
217 __raw_spin_unlock(&scd->lock);
218}
219
220/*
221 * We are going deep-idle (irqs are disabled):
222 */
223void sched_clock_idle_sleep_event(void)
224{
225 sched_clock_cpu(smp_processor_id());
226}
227EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
228
229/*
230 * We just idled delta nanoseconds (called with irqs disabled):
231 */
232void sched_clock_idle_wakeup_event(u64 delta_ns)
233{
1c5745aa
TG
234 if (timekeeping_suspended)
235 return;
236
354879bb 237 sched_clock_tick();
3e51f33f
PZ
238 touch_softlockup_watchdog();
239}
240EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
241
8325d9c0
PZ
242#else /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */
243
244void sched_clock_init(void)
245{
246 sched_clock_running = 1;
247}
248
249u64 sched_clock_cpu(int cpu)
250{
251 if (unlikely(!sched_clock_running))
252 return 0;
253
254 return sched_clock();
255}
256
b342501c 257#endif /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */
3e51f33f 258
76a2a6ee
PZ
259unsigned long long cpu_clock(int cpu)
260{
261 unsigned long long clock;
262 unsigned long flags;
263
2d452c9b 264 local_irq_save(flags);
76a2a6ee 265 clock = sched_clock_cpu(cpu);
2d452c9b 266 local_irq_restore(flags);
76a2a6ee
PZ
267
268 return clock;
269}
4c9fe8ad 270EXPORT_SYMBOL_GPL(cpu_clock);