aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2013-06-02 02:39:40 -0400
committerJohn Stultz <john.stultz@linaro.org>2013-06-12 17:02:13 -0400
commit38ff87f77af0b5a93fc8581cff1d6e5692ab8970 (patch)
tree7a157528657400d0486cd4e74da98bad40992c3c /arch/arm/kernel
parentffbfb5e316f0db486798ccf1db36a577ffe79637 (diff)
sched_clock: Make ARM's sched_clock generic for all architectures
Nothing about the sched_clock implementation in the ARM port is specific to the architecture. Generalize the code so that other architectures can use it by selecting GENERIC_SCHED_CLOCK. Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> [jstultz: Merge minor collisions with other patches in my tree] Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r--arch/arm/kernel/Makefile2
-rw-r--r--arch/arm/kernel/arch_timer.c2
-rw-r--r--arch/arm/kernel/sched_clock.c216
-rw-r--r--arch/arm/kernel/time.c4
4 files changed, 3 insertions, 221 deletions
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile
index 5f3338eacad2..97cb0576d07c 100644
--- a/arch/arm/kernel/Makefile
+++ b/arch/arm/kernel/Makefile
@@ -16,7 +16,7 @@ CFLAGS_REMOVE_return_address.o = -pg
16# Object file lists. 16# Object file lists.
17 17
18obj-y := elf.o entry-armv.o entry-common.o irq.o opcodes.o \ 18obj-y := elf.o entry-armv.o entry-common.o irq.o opcodes.o \
19 process.o ptrace.o return_address.o sched_clock.o \ 19 process.o ptrace.o return_address.o \
20 setup.o signal.o stacktrace.o sys_arm.o time.o traps.o 20 setup.o signal.o stacktrace.o sys_arm.o time.o traps.o
21 21
22obj-$(CONFIG_ATAGS) += atags_parse.o 22obj-$(CONFIG_ATAGS) += atags_parse.o
diff --git a/arch/arm/kernel/arch_timer.c b/arch/arm/kernel/arch_timer.c
index 59dcdced6e30..221f07b11ccb 100644
--- a/arch/arm/kernel/arch_timer.c
+++ b/arch/arm/kernel/arch_timer.c
@@ -11,9 +11,9 @@
11#include <linux/init.h> 11#include <linux/init.h>
12#include <linux/types.h> 12#include <linux/types.h>
13#include <linux/errno.h> 13#include <linux/errno.h>
14#include <linux/sched_clock.h>
14 15
15#include <asm/delay.h> 16#include <asm/delay.h>
16#include <asm/sched_clock.h>
17 17
18#include <clocksource/arm_arch_timer.h> 18#include <clocksource/arm_arch_timer.h>
19 19
diff --git a/arch/arm/kernel/sched_clock.c b/arch/arm/kernel/sched_clock.c
deleted file mode 100644
index a781c59b93c0..000000000000
--- a/arch/arm/kernel/sched_clock.c
+++ /dev/null
@@ -1,216 +0,0 @@
1/*
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/moduleparam.h>
13#include <linux/sched.h>
14#include <linux/syscore_ops.h>
15#include <linux/timer.h>
16
17#include <asm/sched_clock.h>
18
19struct clock_data {
20 u64 epoch_ns;
21 u32 epoch_cyc;
22 u32 epoch_cyc_copy;
23 unsigned long rate;
24 u32 mult;
25 u32 shift;
26 bool suspended;
27};
28
29static void sched_clock_poll(unsigned long wrap_ticks);
30static DEFINE_TIMER(sched_clock_timer, sched_clock_poll, 0, 0);
31static int irqtime = -1;
32
33core_param(irqtime, irqtime, int, 0400);
34
35static struct clock_data cd = {
36 .mult = NSEC_PER_SEC / HZ,
37};
38
39static u32 __read_mostly sched_clock_mask = 0xffffffff;
40
41static u32 notrace jiffy_sched_clock_read(void)
42{
43 return (u32)(jiffies - INITIAL_JIFFIES);
44}
45
46static u32 __read_mostly (*read_sched_clock)(void) = jiffy_sched_clock_read;
47
48static inline u64 notrace cyc_to_ns(u64 cyc, u32 mult, u32 shift)
49{
50 return (cyc * mult) >> shift;
51}
52
53static unsigned long long notrace cyc_to_sched_clock(u32 cyc, u32 mask)
54{
55 u64 epoch_ns;
56 u32 epoch_cyc;
57
58 /*
59 * Load the epoch_cyc and epoch_ns atomically. We do this by
60 * ensuring that we always write epoch_cyc, epoch_ns and
61 * epoch_cyc_copy in strict order, and read them in strict order.
62 * If epoch_cyc and epoch_cyc_copy are not equal, then we're in
63 * the middle of an update, and we should repeat the load.
64 */
65 do {
66 epoch_cyc = cd.epoch_cyc;
67 smp_rmb();
68 epoch_ns = cd.epoch_ns;
69 smp_rmb();
70 } while (epoch_cyc != cd.epoch_cyc_copy);
71
72 return epoch_ns + cyc_to_ns((cyc - epoch_cyc) & mask, cd.mult, cd.shift);
73}
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);
88 /*
89 * Write epoch_cyc and epoch_ns in a way that the update is
90 * detectable in cyc_to_fixed_sched_clock().
91 */
92 raw_local_irq_save(flags);
93 cd.epoch_cyc_copy = cyc;
94 smp_wmb();
95 cd.epoch_ns = ns;
96 smp_wmb();
97 cd.epoch_cyc = cyc;
98 raw_local_irq_restore(flags);
99}
100
101static void sched_clock_poll(unsigned long wrap_ticks)
102{
103 mod_timer(&sched_clock_timer, round_jiffies(jiffies + wrap_ticks));
104 update_sched_clock();
105}
106
107void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate)
108{
109 unsigned long r, w;
110 u64 res, wrap;
111 char r_unit;
112
113 if (cd.rate > rate)
114 return;
115
116 BUG_ON(bits > 32);
117 WARN_ON(!irqs_disabled());
118 read_sched_clock = read;
119 sched_clock_mask = (1 << bits) - 1;
120 cd.rate = rate;
121
122 /* calculate the mult/shift to convert counter ticks to ns. */
123 clocks_calc_mult_shift(&cd.mult, &cd.shift, rate, NSEC_PER_SEC, 0);
124
125 r = rate;
126 if (r >= 4000000) {
127 r /= 1000000;
128 r_unit = 'M';
129 } else if (r >= 1000) {
130 r /= 1000;
131 r_unit = 'k';
132 } else
133 r_unit = ' ';
134
135 /* calculate how many ns until we wrap */
136 wrap = cyc_to_ns((1ULL << bits) - 1, cd.mult, cd.shift);
137 do_div(wrap, NSEC_PER_MSEC);
138 w = wrap;
139
140 /* calculate the ns resolution of this counter */
141 res = cyc_to_ns(1ULL, cd.mult, cd.shift);
142 pr_info("sched_clock: %u bits at %lu%cHz, resolution %lluns, wraps every %lums\n",
143 bits, r, r_unit, res, w);
144
145 /*
146 * Start the timer to keep sched_clock() properly updated and
147 * sets the initial epoch.
148 */
149 sched_clock_timer.data = msecs_to_jiffies(w - (w / 10));
150 update_sched_clock();
151
152 /*
153 * Ensure that sched_clock() starts off at 0ns
154 */
155 cd.epoch_ns = 0;
156
157 /* Enable IRQ time accounting if we have a fast enough sched_clock */
158 if (irqtime > 0 || (irqtime == -1 && rate >= 1000000))
159 enable_sched_clock_irqtime();
160
161 pr_debug("Registered %pF as sched_clock source\n", read);
162}
163
164static unsigned long long notrace sched_clock_32(void)
165{
166 u32 cyc = read_sched_clock();
167 return cyc_to_sched_clock(cyc, sched_clock_mask);
168}
169
170unsigned long long __read_mostly (*sched_clock_func)(void) = sched_clock_32;
171
172unsigned long long notrace sched_clock(void)
173{
174 if (cd.suspended)
175 return cd.epoch_ns;
176
177 return sched_clock_func();
178}
179
180void __init sched_clock_postinit(void)
181{
182 /*
183 * If no sched_clock function has been provided at that point,
184 * make it the final one one.
185 */
186 if (read_sched_clock == jiffy_sched_clock_read)
187 setup_sched_clock(jiffy_sched_clock_read, 32, HZ);
188
189 sched_clock_poll(sched_clock_timer.data);
190}
191
192static int sched_clock_suspend(void)
193{
194 sched_clock_poll(sched_clock_timer.data);
195 cd.suspended = true;
196 return 0;
197}
198
199static void sched_clock_resume(void)
200{
201 cd.epoch_cyc = read_sched_clock();
202 cd.epoch_cyc_copy = cd.epoch_cyc;
203 cd.suspended = false;
204}
205
206static struct syscore_ops sched_clock_ops = {
207 .suspend = sched_clock_suspend,
208 .resume = sched_clock_resume,
209};
210
211static int __init sched_clock_syscore_init(void)
212{
213 register_syscore_ops(&sched_clock_ops);
214 return 0;
215}
216device_initcall(sched_clock_syscore_init);
diff --git a/arch/arm/kernel/time.c b/arch/arm/kernel/time.c
index abff4e9aaee0..98aee3258398 100644
--- a/arch/arm/kernel/time.c
+++ b/arch/arm/kernel/time.c
@@ -24,9 +24,9 @@
24#include <linux/timer.h> 24#include <linux/timer.h>
25#include <linux/clocksource.h> 25#include <linux/clocksource.h>
26#include <linux/irq.h> 26#include <linux/irq.h>
27#include <linux/sched_clock.h>
27 28
28#include <asm/thread_info.h> 29#include <asm/thread_info.h>
29#include <asm/sched_clock.h>
30#include <asm/stacktrace.h> 30#include <asm/stacktrace.h>
31#include <asm/mach/arch.h> 31#include <asm/mach/arch.h>
32#include <asm/mach/time.h> 32#include <asm/mach/time.h>
@@ -120,6 +120,4 @@ void __init time_init(void)
120 machine_desc->init_time(); 120 machine_desc->init_time();
121 else 121 else
122 clocksource_of_init(); 122 clocksource_of_init();
123
124 sched_clock_postinit();
125} 123}