blob: c018ffc599377a7f574381cd221e7a54e8c572b9 [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>
Stephen Boyda08ca5d2013-07-18 16:21:16 -070011#include <linux/ktime.h>
Russell King112f38a42010-12-15 19:23:07 +000012#include <linux/kernel.h>
Russell Kinga42c3622012-09-09 18:39:28 +010013#include <linux/moduleparam.h>
Russell King112f38a42010-12-15 19:23:07 +000014#include <linux/sched.h>
Russell Kingf153d012012-02-04 12:31:27 +000015#include <linux/syscore_ops.h>
Stephen Boyda08ca5d2013-07-18 16:21:16 -070016#include <linux/hrtimer.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070017#include <linux/sched_clock.h>
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070018#include <linux/seqlock.h>
Russell King112f38a42010-12-15 19:23:07 +000019
Marc Zyngier2f0778af2011-12-15 12:19:23 +010020struct clock_data {
Stephen Boyda08ca5d2013-07-18 16:21:16 -070021 ktime_t wrap_kt;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010022 u64 epoch_ns;
23 u32 epoch_cyc;
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070024 seqcount_t seq;
Rob Herringc1157392013-02-08 16:14:59 -060025 unsigned long rate;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010026 u32 mult;
27 u32 shift;
Colin Cross237ec6f2012-08-07 19:05:10 +010028 bool suspended;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010029};
30
Stephen Boyda08ca5d2013-07-18 16:21:16 -070031static struct hrtimer sched_clock_timer;
Russell Kinga42c3622012-09-09 18:39:28 +010032static int irqtime = -1;
33
34core_param(irqtime, irqtime, int, 0400);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010035
36static struct clock_data cd = {
37 .mult = NSEC_PER_SEC / HZ,
38};
39
40static u32 __read_mostly sched_clock_mask = 0xffffffff;
41
42static u32 notrace jiffy_sched_clock_read(void)
43{
44 return (u32)(jiffies - INITIAL_JIFFIES);
45}
46
47static u32 __read_mostly (*read_sched_clock)(void) = jiffy_sched_clock_read;
48
Stephen Boydcea15092013-04-18 17:33:40 +010049static inline u64 notrace cyc_to_ns(u64 cyc, u32 mult, u32 shift)
Marc Zyngier2f0778af2011-12-15 12:19:23 +010050{
51 return (cyc * mult) >> shift;
52}
53
Stephen Boyd336ae112013-06-17 15:40:58 -070054static unsigned long long notrace sched_clock_32(void)
Marc Zyngier2f0778af2011-12-15 12:19:23 +010055{
56 u64 epoch_ns;
57 u32 epoch_cyc;
Stephen Boyd336ae112013-06-17 15:40:58 -070058 u32 cyc;
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070059 unsigned long seq;
Stephen Boyd336ae112013-06-17 15:40:58 -070060
61 if (cd.suspended)
62 return cd.epoch_ns;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010063
Marc Zyngier2f0778af2011-12-15 12:19:23 +010064 do {
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070065 seq = read_seqcount_begin(&cd.seq);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010066 epoch_cyc = cd.epoch_cyc;
Marc Zyngier2f0778af2011-12-15 12:19:23 +010067 epoch_ns = cd.epoch_ns;
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070068 } while (read_seqcount_retry(&cd.seq, seq));
Marc Zyngier2f0778af2011-12-15 12:19:23 +010069
Stephen Boyd336ae112013-06-17 15:40:58 -070070 cyc = read_sched_clock();
71 cyc = (cyc - epoch_cyc) & sched_clock_mask;
72 return epoch_ns + cyc_to_ns(cyc, cd.mult, cd.shift);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010073}
74
75/*
76 * Atomically update the sched_clock epoch.
77 */
78static void notrace update_sched_clock(void)
79{
80 unsigned long flags;
81 u32 cyc;
82 u64 ns;
83
84 cyc = read_sched_clock();
85 ns = cd.epoch_ns +
86 cyc_to_ns((cyc - cd.epoch_cyc) & sched_clock_mask,
87 cd.mult, cd.shift);
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070088
Marc Zyngier2f0778af2011-12-15 12:19:23 +010089 raw_local_irq_save(flags);
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070090 write_seqcount_begin(&cd.seq);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010091 cd.epoch_ns = ns;
Joonsoo Kim7c4e9ce2013-02-09 05:52:45 +010092 cd.epoch_cyc = cyc;
Stephen Boyd85c3d2d2013-07-18 16:21:15 -070093 write_seqcount_end(&cd.seq);
Marc Zyngier2f0778af2011-12-15 12:19:23 +010094 raw_local_irq_restore(flags);
95}
Russell King112f38a42010-12-15 19:23:07 +000096
Stephen Boyda08ca5d2013-07-18 16:21:16 -070097static enum hrtimer_restart sched_clock_poll(struct hrtimer *hrt)
Russell King112f38a42010-12-15 19:23:07 +000098{
Marc Zyngier2f0778af2011-12-15 12:19:23 +010099 update_sched_clock();
Stephen Boyda08ca5d2013-07-18 16:21:16 -0700100 hrtimer_forward_now(hrt, cd.wrap_kt);
101 return HRTIMER_RESTART;
Russell King112f38a42010-12-15 19:23:07 +0000102}
103
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100104void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate)
Russell King112f38a42010-12-15 19:23:07 +0000105{
Stephen Boyda08ca5d2013-07-18 16:21:16 -0700106 unsigned long r;
Russell King112f38a42010-12-15 19:23:07 +0000107 u64 res, wrap;
108 char r_unit;
109
Rob Herringc1157392013-02-08 16:14:59 -0600110 if (cd.rate > rate)
111 return;
112
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100113 BUG_ON(bits > 32);
114 WARN_ON(!irqs_disabled());
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100115 read_sched_clock = read;
116 sched_clock_mask = (1 << bits) - 1;
Rob Herringc1157392013-02-08 16:14:59 -0600117 cd.rate = rate;
Russell King112f38a42010-12-15 19:23:07 +0000118
119 /* calculate the mult/shift to convert counter ticks to ns. */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100120 clocks_calc_mult_shift(&cd.mult, &cd.shift, rate, NSEC_PER_SEC, 0);
Russell King112f38a42010-12-15 19:23:07 +0000121
122 r = rate;
123 if (r >= 4000000) {
124 r /= 1000000;
125 r_unit = 'M';
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100126 } else if (r >= 1000) {
Russell King112f38a42010-12-15 19:23:07 +0000127 r /= 1000;
128 r_unit = 'k';
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100129 } else
130 r_unit = ' ';
Russell King112f38a42010-12-15 19:23:07 +0000131
132 /* calculate how many ns until we wrap */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100133 wrap = cyc_to_ns((1ULL << bits) - 1, cd.mult, cd.shift);
Stephen Boyda08ca5d2013-07-18 16:21:16 -0700134 cd.wrap_kt = ns_to_ktime(wrap - (wrap >> 3));
Russell King112f38a42010-12-15 19:23:07 +0000135
136 /* calculate the ns resolution of this counter */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100137 res = cyc_to_ns(1ULL, cd.mult, cd.shift);
Stephen Boyda08ca5d2013-07-18 16:21:16 -0700138 pr_info("sched_clock: %u bits at %lu%cHz, resolution %lluns, wraps every %lluns\n",
139 bits, r, r_unit, res, wrap);
Russell King112f38a42010-12-15 19:23:07 +0000140
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100141 update_sched_clock();
Russell King112f38a42010-12-15 19:23:07 +0000142
143 /*
144 * Ensure that sched_clock() starts off at 0ns
145 */
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100146 cd.epoch_ns = 0;
147
Russell Kinga42c3622012-09-09 18:39:28 +0100148 /* Enable IRQ time accounting if we have a fast enough sched_clock */
149 if (irqtime > 0 || (irqtime == -1 && rate >= 1000000))
150 enable_sched_clock_irqtime();
151
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100152 pr_debug("Registered %pF as sched_clock source\n", read);
153}
154
Rob Herring7e48c0b2013-04-01 13:53:38 -0500155unsigned long long __read_mostly (*sched_clock_func)(void) = sched_clock_32;
156
157unsigned long long notrace sched_clock(void)
158{
159 return sched_clock_func();
160}
161
Russell King211baa702011-01-11 16:23:04 +0000162void __init sched_clock_postinit(void)
163{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100164 /*
165 * If no sched_clock function has been provided at that point,
166 * make it the final one one.
167 */
168 if (read_sched_clock == jiffy_sched_clock_read)
169 setup_sched_clock(jiffy_sched_clock_read, 32, HZ);
170
Stephen Boyda08ca5d2013-07-18 16:21:16 -0700171 update_sched_clock();
172
173 /*
174 * Start the timer to keep sched_clock() properly updated and
175 * sets the initial epoch.
176 */
177 hrtimer_init(&sched_clock_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
178 sched_clock_timer.function = sched_clock_poll;
179 hrtimer_start(&sched_clock_timer, cd.wrap_kt, HRTIMER_MODE_REL);
Russell King211baa702011-01-11 16:23:04 +0000180}
Russell Kingf153d012012-02-04 12:31:27 +0000181
182static int sched_clock_suspend(void)
183{
Stephen Boyda08ca5d2013-07-18 16:21:16 -0700184 sched_clock_poll(&sched_clock_timer);
Felipe Balbi 26a4dae52012-10-23 19:00:03 +0100185 cd.suspended = true;
Russell Kingf153d012012-02-04 12:31:27 +0000186 return 0;
187}
188
Colin Cross237ec6f2012-08-07 19:05:10 +0100189static void sched_clock_resume(void)
190{
Felipe Balbi 26a4dae52012-10-23 19:00:03 +0100191 cd.epoch_cyc = read_sched_clock();
Felipe Balbi 26a4dae52012-10-23 19:00:03 +0100192 cd.suspended = false;
Colin Cross237ec6f2012-08-07 19:05:10 +0100193}
194
Russell Kingf153d012012-02-04 12:31:27 +0000195static struct syscore_ops sched_clock_ops = {
196 .suspend = sched_clock_suspend,
Colin Cross237ec6f2012-08-07 19:05:10 +0100197 .resume = sched_clock_resume,
Russell Kingf153d012012-02-04 12:31:27 +0000198};
199
200static int __init sched_clock_syscore_init(void)
201{
202 register_syscore_ops(&sched_clock_ops);
203 return 0;
204}
205device_initcall(sched_clock_syscore_init);