blob: bb97140c70e654af226aeac58f86723ee8b51cab [file] [log] [blame]
Russell King112f38a42010-12-15 19:23:07 +00001/*
2 * sched_clock.c: support for extending counters to full 64-bit ns counter
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#include <linux/clocksource.h>
9#include <linux/init.h>
10#include <linux/jiffies.h>
11#include <linux/kernel.h>
12#include <linux/sched.h>
Russell Kingf153d012012-02-04 12:31:27 +000013#include <linux/syscore_ops.h>
Russell King112f38a42010-12-15 19:23:07 +000014#include <linux/timer.h>
15
16#include <asm/sched_clock.h>
17
Marc Zyngier2f0778af2011-12-15 12:19:23 +010018struct clock_data {
19 u64 epoch_ns;
20 u32 epoch_cyc;
21 u32 epoch_cyc_copy;
22 u32 mult;
23 u32 shift;
Colin Cross2d30f632012-08-07 19:05:10 +010024 bool suspended;
25 bool needs_suspend;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010026};
27
Russell King112f38a42010-12-15 19:23:07 +000028static void sched_clock_poll(unsigned long wrap_ticks);
29static DEFINE_TIMER(sched_clock_timer, sched_clock_poll, 0, 0);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010030
31static struct clock_data cd = {
32 .mult = NSEC_PER_SEC / HZ,
33};
34
35static u32 __read_mostly sched_clock_mask = 0xffffffff;
36
37static u32 notrace jiffy_sched_clock_read(void)
38{
39 return (u32)(jiffies - INITIAL_JIFFIES);
40}
41
42static u32 __read_mostly (*read_sched_clock)(void) = jiffy_sched_clock_read;
43
44static inline u64 cyc_to_ns(u64 cyc, u32 mult, u32 shift)
45{
46 return (cyc * mult) >> shift;
47}
48
49static unsigned long long cyc_to_sched_clock(u32 cyc, u32 mask)
50{
51 u64 epoch_ns;
52 u32 epoch_cyc;
53
Colin Cross2d30f632012-08-07 19:05:10 +010054 if (cd.suspended)
55 return cd.epoch_ns;
56
Marc Zyngier2f0778af2011-12-15 12:19:23 +010057 /*
58 * Load the epoch_cyc and epoch_ns atomically. We do this by
59 * ensuring that we always write epoch_cyc, epoch_ns and
60 * epoch_cyc_copy in strict order, and read them in strict order.
61 * If epoch_cyc and epoch_cyc_copy are not equal, then we're in
62 * the middle of an update, and we should repeat the load.
63 */
64 do {
65 epoch_cyc = cd.epoch_cyc;
66 smp_rmb();
67 epoch_ns = cd.epoch_ns;
68 smp_rmb();
69 } while (epoch_cyc != cd.epoch_cyc_copy);
70
Stephen Boyd190b49b2013-06-17 15:40:58 -070071 cyc = read_sched_clock();
72 cyc = (cyc - epoch_cyc) & sched_clock_mask;
73 return epoch_ns + cyc_to_ns(cyc, cd.mult, cd.shift);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010074}
75
76/*
77 * Atomically update the sched_clock epoch.
78 */
79static void notrace update_sched_clock(void)
80{
81 unsigned long flags;
82 u32 cyc;
83 u64 ns;
84
85 cyc = read_sched_clock();
86 ns = cd.epoch_ns +
87 cyc_to_ns((cyc - cd.epoch_cyc) & sched_clock_mask,
88 cd.mult, cd.shift);
89 /*
90 * Write epoch_cyc and epoch_ns in a way that the update is
91 * detectable in cyc_to_fixed_sched_clock().
92 */
93 raw_local_irq_save(flags);
Joonsoo Kim27c30322013-02-09 05:52:45 +010094 cd.epoch_cyc_copy = cyc;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010095 smp_wmb();
96 cd.epoch_ns = ns;
97 smp_wmb();
Joonsoo Kim27c30322013-02-09 05:52:45 +010098 cd.epoch_cyc = cyc;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010099 raw_local_irq_restore(flags);
100}
Russell King112f38a42010-12-15 19:23:07 +0000101
102static void sched_clock_poll(unsigned long wrap_ticks)
103{
104 mod_timer(&sched_clock_timer, round_jiffies(jiffies + wrap_ticks));
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100105 update_sched_clock();
Russell King112f38a42010-12-15 19:23:07 +0000106}
107
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100108void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate)
Russell King112f38a42010-12-15 19:23:07 +0000109{
110 unsigned long r, w;
111 u64 res, wrap;
112 char r_unit;
113
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100114 BUG_ON(bits > 32);
115 WARN_ON(!irqs_disabled());
116 WARN_ON(read_sched_clock != jiffy_sched_clock_read);
117 read_sched_clock = read;
118 sched_clock_mask = (1 << bits) - 1;
Russell King112f38a42010-12-15 19:23:07 +0000119
120 /* calculate the mult/shift to convert counter ticks to ns. */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100121 clocks_calc_mult_shift(&cd.mult, &cd.shift, rate, NSEC_PER_SEC, 0);
Russell King112f38a42010-12-15 19:23:07 +0000122
123 r = rate;
124 if (r >= 4000000) {
125 r /= 1000000;
126 r_unit = 'M';
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100127 } else if (r >= 1000) {
Russell King112f38a42010-12-15 19:23:07 +0000128 r /= 1000;
129 r_unit = 'k';
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100130 } else
131 r_unit = ' ';
Russell King112f38a42010-12-15 19:23:07 +0000132
133 /* calculate how many ns until we wrap */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100134 wrap = cyc_to_ns((1ULL << bits) - 1, cd.mult, cd.shift);
Russell King112f38a42010-12-15 19:23:07 +0000135 do_div(wrap, NSEC_PER_MSEC);
136 w = wrap;
137
138 /* calculate the ns resolution of this counter */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100139 res = cyc_to_ns(1ULL, cd.mult, cd.shift);
Russell King112f38a42010-12-15 19:23:07 +0000140 pr_info("sched_clock: %u bits at %lu%cHz, resolution %lluns, wraps every %lums\n",
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100141 bits, r, r_unit, res, w);
Russell King112f38a42010-12-15 19:23:07 +0000142
143 /*
144 * Start the timer to keep sched_clock() properly updated and
145 * sets the initial epoch.
146 */
147 sched_clock_timer.data = msecs_to_jiffies(w - (w / 10));
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100148 update_sched_clock();
Russell King112f38a42010-12-15 19:23:07 +0000149
150 /*
151 * Ensure that sched_clock() starts off at 0ns
152 */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100153 cd.epoch_ns = 0;
154
155 pr_debug("Registered %pF as sched_clock source\n", read);
156}
157
158unsigned long long notrace sched_clock(void)
159{
160 u32 cyc = read_sched_clock();
161 return cyc_to_sched_clock(cyc, sched_clock_mask);
Russell King112f38a42010-12-15 19:23:07 +0000162}
Russell King211baa72011-01-11 16:23:04 +0000163
164void __init sched_clock_postinit(void)
165{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100166 /*
167 * If no sched_clock function has been provided at that point,
168 * make it the final one one.
169 */
170 if (read_sched_clock == jiffy_sched_clock_read)
171 setup_sched_clock(jiffy_sched_clock_read, 32, HZ);
172
Russell King211baa72011-01-11 16:23:04 +0000173 sched_clock_poll(sched_clock_timer.data);
174}
Russell Kingf153d012012-02-04 12:31:27 +0000175
176static int sched_clock_suspend(void)
177{
178 sched_clock_poll(sched_clock_timer.data);
Felipe Balbi 25575d132012-10-23 19:00:03 +0100179 cd.suspended = true;
Russell Kingf153d012012-02-04 12:31:27 +0000180 return 0;
181}
182
Colin Cross2d30f632012-08-07 19:05:10 +0100183static void sched_clock_resume(void)
184{
Felipe Balbi 25575d132012-10-23 19:00:03 +0100185 cd.epoch_cyc = read_sched_clock();
186 cd.epoch_cyc_copy = cd.epoch_cyc;
187 cd.suspended = false;
Colin Cross2d30f632012-08-07 19:05:10 +0100188}
189
Russell Kingf153d012012-02-04 12:31:27 +0000190static struct syscore_ops sched_clock_ops = {
191 .suspend = sched_clock_suspend,
Colin Cross2d30f632012-08-07 19:05:10 +0100192 .resume = sched_clock_resume,
Russell Kingf153d012012-02-04 12:31:27 +0000193};
194
195static int __init sched_clock_syscore_init(void)
196{
197 register_syscore_ops(&sched_clock_ops);
198 return 0;
199}
200device_initcall(sched_clock_syscore_init);