blob: f81c81b92f0e9706f24151bc8cecc71ff2e21418 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Common time routines among all ppc machines.
3 *
4 * Written by Cort Dougan (cort@cs.nmt.edu) to merge
5 * Paul Mackerras' version and mine for PReP and Pmac.
6 * MPC8xx/MBX changes by Dan Malek (dmalek@jlc.net).
7 * Converted for 64-bit by Mike Corrigan (mikejc@us.ibm.com)
8 *
9 * First round of bugfixes by Gabriel Paubert (paubert@iram.es)
10 * to make clock more stable (2.4.0-test5). The only thing
11 * that this code assumes is that the timebases have been synchronized
12 * by firmware on SMP and are never stopped (never do sleep
13 * on SMP then, nap and doze are OK).
14 *
15 * Speeded up do_gettimeofday by getting rid of references to
16 * xtime (which required locks for consistency). (mikejc@us.ibm.com)
17 *
18 * TODO (not necessarily in this file):
19 * - improve precision and reproducibility of timebase frequency
20 * measurement at boot time. (for iSeries, we calibrate the timebase
21 * against the Titan chip's clock.)
22 * - for astronomical applications: add a new function to get
23 * non ambiguous timestamps even around leap seconds. This needs
24 * a new timestamp format and a good name.
25 *
26 * 1997-09-10 Updated NTP code according to technical memorandum Jan '96
27 * "A Kernel Model for Precision Timekeeping" by Dave Mills
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/errno.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040036#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/sched.h>
38#include <linux/kernel.h>
39#include <linux/param.h>
40#include <linux/string.h>
41#include <linux/mm.h>
42#include <linux/interrupt.h>
43#include <linux/timex.h>
44#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/time.h>
46#include <linux/init.h>
47#include <linux/profile.h>
48#include <linux/cpu.h>
49#include <linux/security.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100050#include <linux/percpu.h>
51#include <linux/rtc.h>
Paul Mackerras092b8f32006-02-20 10:38:56 +110052#include <linux/jiffies.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110053#include <linux/posix-timers.h>
David Howells7d12e782006-10-05 14:55:46 +010054#include <linux/irq.h>
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +000055#include <linux/delay.h>
Peter Zijlstrae360adb2010-10-14 14:01:34 +080056#include <linux/irq_work.h>
Anton Blanchard6795b852009-10-26 18:49:14 +000057#include <asm/trace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/io.h>
60#include <asm/processor.h>
61#include <asm/nvram.h>
62#include <asm/cache.h>
63#include <asm/machdep.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100064#include <asm/uaccess.h>
65#include <asm/time.h>
66#include <asm/prom.h>
67#include <asm/irq.h>
68#include <asm/div64.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110069#include <asm/smp.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110070#include <asm/vdso_datapage.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100071#include <asm/firmware.h>
Michael Neuling06b8e872008-02-06 01:36:12 -080072#include <asm/cputime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#ifdef CONFIG_PPC_ISERIES
Kelly Daly8875ccf2005-11-02 14:13:34 +110074#include <asm/iseries/it_lp_queue.h>
Kelly Daly8021b8a2005-11-02 11:41:12 +110075#include <asm/iseries/hv_call_xm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Tony Breeds4a4cfe32007-09-22 07:35:52 +100078/* powerpc clocksource/clockevent code */
79
Tony Breedsd831d0b2007-09-21 13:26:03 +100080#include <linux/clockchips.h>
Tony Breeds4a4cfe32007-09-22 07:35:52 +100081#include <linux/clocksource.h>
82
Magnus Damm8e196082009-04-21 12:24:00 -070083static cycle_t rtc_read(struct clocksource *);
Tony Breeds4a4cfe32007-09-22 07:35:52 +100084static struct clocksource clocksource_rtc = {
85 .name = "rtc",
86 .rating = 400,
87 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
88 .mask = CLOCKSOURCE_MASK(64),
Tony Breeds4a4cfe32007-09-22 07:35:52 +100089 .read = rtc_read,
90};
91
Magnus Damm8e196082009-04-21 12:24:00 -070092static cycle_t timebase_read(struct clocksource *);
Tony Breeds4a4cfe32007-09-22 07:35:52 +100093static struct clocksource clocksource_timebase = {
94 .name = "timebase",
95 .rating = 400,
96 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
97 .mask = CLOCKSOURCE_MASK(64),
Tony Breeds4a4cfe32007-09-22 07:35:52 +100098 .read = timebase_read,
99};
100
Tony Breedsd831d0b2007-09-21 13:26:03 +1000101#define DECREMENTER_MAX 0x7fffffff
102
103static int decrementer_set_next_event(unsigned long evt,
104 struct clock_event_device *dev);
105static void decrementer_set_mode(enum clock_event_mode mode,
106 struct clock_event_device *dev);
107
108static struct clock_event_device decrementer_clockevent = {
Anton Blanchard621692c2011-11-23 20:07:21 +0000109 .name = "decrementer",
110 .rating = 200,
111 .irq = 0,
112 .set_next_event = decrementer_set_next_event,
113 .set_mode = decrementer_set_mode,
114 .features = CLOCK_EVT_FEAT_ONESHOT,
Tony Breedsd831d0b2007-09-21 13:26:03 +1000115};
116
Anton Blanchard7df10272011-11-23 20:07:22 +0000117DEFINE_PER_CPU(u64, decrementers_next_tb);
118static DEFINE_PER_CPU(struct clock_event_device, decrementers);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef CONFIG_PPC_ISERIES
Tony Breeds71712b42007-06-22 16:54:30 +1000121static unsigned long __initdata iSeries_recal_titan;
122static signed long __initdata iSeries_recal_tb;
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000123
124/* Forward declaration is only needed for iSereis compiles */
Michael Ellerman1c21a292008-05-08 14:27:19 +1000125static void __init clocksource_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif
127
128#define XSEC_PER_SEC (1024*1024)
129
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000130#ifdef CONFIG_PPC64
131#define SCALE_XSEC(xsec, max) (((xsec) * max) / XSEC_PER_SEC)
132#else
133/* compute ((xsec << 12) * max) >> 32 */
134#define SCALE_XSEC(xsec, max) mulhwu((xsec) << 12, max)
135#endif
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137unsigned long tb_ticks_per_jiffy;
138unsigned long tb_ticks_per_usec = 100; /* sane default */
139EXPORT_SYMBOL(tb_ticks_per_usec);
140unsigned long tb_ticks_per_sec;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100141EXPORT_SYMBOL(tb_ticks_per_sec); /* for cputime_t conversions */
Paul Mackerras092b8f32006-02-20 10:38:56 +1100142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143DEFINE_SPINLOCK(rtc_lock);
Benjamin Herrenschmidt6ae3db12005-06-27 14:36:35 -0700144EXPORT_SYMBOL_GPL(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000146static u64 tb_to_ns_scale __read_mostly;
147static unsigned tb_to_ns_shift __read_mostly;
Heiko Schocher364a1242010-11-22 21:30:33 +0000148static u64 boot_tb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150extern struct timezone sys_tz;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000151static long timezone_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000153unsigned long ppc_proc_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500154EXPORT_SYMBOL_GPL(ppc_proc_freq);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000155unsigned long ppc_tb_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500156EXPORT_SYMBOL_GPL(ppc_tb_freq);
Paul Mackerras96c44502005-10-23 17:14:56 +1000157
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100158#ifdef CONFIG_VIRT_CPU_ACCOUNTING
159/*
160 * Factors for converting from cputime_t (timebase ticks) to
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000161 * jiffies, microseconds, seconds, and clock_t (1/USER_HZ seconds).
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100162 * These are all stored as 0.64 fixed-point binary fractions.
163 */
164u64 __cputime_jiffies_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100165EXPORT_SYMBOL(__cputime_jiffies_factor);
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000166u64 __cputime_usec_factor;
167EXPORT_SYMBOL(__cputime_usec_factor);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100168u64 __cputime_sec_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100169EXPORT_SYMBOL(__cputime_sec_factor);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100170u64 __cputime_clockt_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100171EXPORT_SYMBOL(__cputime_clockt_factor);
Michael Neuling06b8e872008-02-06 01:36:12 -0800172DEFINE_PER_CPU(unsigned long, cputime_last_delta);
173DEFINE_PER_CPU(unsigned long, cputime_scaled_last_delta);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100174
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200175cputime_t cputime_one_jiffy;
176
Paul Mackerras872e4392010-08-31 01:59:53 +0000177void (*dtl_consumer)(struct dtl_entry *, u64);
178
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100179static void calc_cputime_factors(void)
180{
181 struct div_result res;
182
183 div128_by_32(HZ, 0, tb_ticks_per_sec, &res);
184 __cputime_jiffies_factor = res.result_low;
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000185 div128_by_32(1000000, 0, tb_ticks_per_sec, &res);
186 __cputime_usec_factor = res.result_low;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100187 div128_by_32(1, 0, tb_ticks_per_sec, &res);
188 __cputime_sec_factor = res.result_low;
189 div128_by_32(USER_HZ, 0, tb_ticks_per_sec, &res);
190 __cputime_clockt_factor = res.result_low;
191}
192
193/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000194 * Read the SPURR on systems that have it, otherwise the PURR,
195 * or if that doesn't exist return the timebase value passed in.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100196 */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000197static u64 read_spurr(u64 tb)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100198{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000199 if (cpu_has_feature(CPU_FTR_SPURR))
200 return mfspr(SPRN_SPURR);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100201 if (cpu_has_feature(CPU_FTR_PURR))
202 return mfspr(SPRN_PURR);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000203 return tb;
204}
205
206#ifdef CONFIG_PPC_SPLPAR
207
208/*
209 * Scan the dispatch trace log and count up the stolen time.
210 * Should be called with interrupts disabled.
211 */
212static u64 scan_dispatch_log(u64 stop_tb)
213{
Paul Mackerras872e4392010-08-31 01:59:53 +0000214 u64 i = local_paca->dtl_ridx;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000215 struct dtl_entry *dtl = local_paca->dtl_curr;
216 struct dtl_entry *dtl_end = local_paca->dispatch_log_end;
217 struct lppaca *vpa = local_paca->lppaca_ptr;
218 u64 tb_delta;
219 u64 stolen = 0;
220 u64 dtb;
221
Anton Blanchard84ffae52011-04-07 21:44:21 +0000222 if (!dtl)
223 return 0;
224
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000225 if (i == vpa->dtl_idx)
226 return 0;
227 while (i < vpa->dtl_idx) {
Paul Mackerras872e4392010-08-31 01:59:53 +0000228 if (dtl_consumer)
229 dtl_consumer(dtl, i);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000230 dtb = dtl->timebase;
231 tb_delta = dtl->enqueue_to_dispatch_time +
232 dtl->ready_to_enqueue_time;
233 barrier();
234 if (i + N_DISPATCH_LOG < vpa->dtl_idx) {
235 /* buffer has overflowed */
236 i = vpa->dtl_idx - N_DISPATCH_LOG;
237 dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG);
238 continue;
239 }
240 if (dtb > stop_tb)
241 break;
242 stolen += tb_delta;
243 ++i;
244 ++dtl;
245 if (dtl == dtl_end)
246 dtl = local_paca->dispatch_log;
247 }
248 local_paca->dtl_ridx = i;
249 local_paca->dtl_curr = dtl;
250 return stolen;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100251}
252
253/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000254 * Accumulate stolen time by scanning the dispatch trace log.
255 * Called on entry from user mode.
Michael Neuling4603ac12007-10-18 03:06:37 -0700256 */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000257void accumulate_stolen_time(void)
Michael Neuling4603ac12007-10-18 03:06:37 -0700258{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000259 u64 sst, ust;
260
Tejun Heob18ae082011-01-03 03:49:25 +0000261 u8 save_soft_enabled = local_paca->soft_enabled;
Tejun Heob18ae082011-01-03 03:49:25 +0000262
263 /* We are called early in the exception entry, before
264 * soft/hard_enabled are sync'ed to the expected state
265 * for the exception. We are hard disabled but the PACA
266 * needs to reflect that so various debug stuff doesn't
267 * complain
268 */
269 local_paca->soft_enabled = 0;
Tejun Heob18ae082011-01-03 03:49:25 +0000270
271 sst = scan_dispatch_log(local_paca->starttime_user);
272 ust = scan_dispatch_log(local_paca->starttime);
273 local_paca->system_time -= sst;
274 local_paca->user_time -= ust;
275 local_paca->stolen_time += ust + sst;
276
277 local_paca->soft_enabled = save_soft_enabled;
Michael Neuling4603ac12007-10-18 03:06:37 -0700278}
279
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000280static inline u64 calculate_stolen_time(u64 stop_tb)
281{
282 u64 stolen = 0;
283
284 if (get_paca()->dtl_ridx != get_paca()->lppaca_ptr->dtl_idx) {
285 stolen = scan_dispatch_log(stop_tb);
286 get_paca()->system_time -= stolen;
287 }
288
289 stolen += get_paca()->stolen_time;
290 get_paca()->stolen_time = 0;
291 return stolen;
292}
293
294#else /* CONFIG_PPC_SPLPAR */
295static inline u64 calculate_stolen_time(u64 stop_tb)
296{
297 return 0;
298}
299
300#endif /* CONFIG_PPC_SPLPAR */
301
Michael Neuling4603ac12007-10-18 03:06:37 -0700302/*
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100303 * Account time for a transition between system, hard irq
304 * or soft irq state.
305 */
306void account_system_vtime(struct task_struct *tsk)
307{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000308 u64 now, nowscaled, delta, deltascaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100309 unsigned long flags;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000310 u64 stolen, udelta, sys_scaled, user_scaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100311
312 local_irq_save(flags);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000313 now = mftb();
Michael Neuling4603ac12007-10-18 03:06:37 -0700314 nowscaled = read_spurr(now);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000315 get_paca()->system_time += now - get_paca()->starttime;
316 get_paca()->starttime = now;
Michael Neuling4603ac12007-10-18 03:06:37 -0700317 deltascaled = nowscaled - get_paca()->startspurr;
318 get_paca()->startspurr = nowscaled;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000319
320 stolen = calculate_stolen_time(now);
321
322 delta = get_paca()->system_time;
323 get_paca()->system_time = 0;
324 udelta = get_paca()->user_time - get_paca()->utime_sspurr;
325 get_paca()->utime_sspurr = get_paca()->user_time;
326
327 /*
328 * Because we don't read the SPURR on every kernel entry/exit,
329 * deltascaled includes both user and system SPURR ticks.
330 * Apportion these ticks to system SPURR ticks and user
331 * SPURR ticks in the same ratio as the system time (delta)
332 * and user time (udelta) values obtained from the timebase
333 * over the same interval. The system ticks get accounted here;
334 * the user ticks get saved up in paca->user_time_scaled to be
335 * used by account_process_tick.
336 */
337 sys_scaled = delta;
338 user_scaled = udelta;
339 if (deltascaled != delta + udelta) {
340 if (udelta) {
341 sys_scaled = deltascaled * delta / (delta + udelta);
342 user_scaled = deltascaled - sys_scaled;
343 } else {
344 sys_scaled = deltascaled;
345 }
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100346 }
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000347 get_paca()->user_time_scaled += user_scaled;
348
Anton Blanchardad5d1c82011-03-20 15:28:03 +0000349 if (in_interrupt() || idle_task(smp_processor_id()) != tsk) {
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000350 account_system_time(tsk, 0, delta, sys_scaled);
351 if (stolen)
352 account_steal_time(stolen);
353 } else {
354 account_idle_time(delta + stolen);
355 }
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100356 local_irq_restore(flags);
357}
Alexander Graf4ab79aa2009-10-30 05:47:19 +0000358EXPORT_SYMBOL_GPL(account_system_vtime);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100359
360/*
361 * Transfer the user and system times accumulated in the paca
362 * by the exception entry and exit code to the generic process
363 * user and system time records.
364 * Must be called with interrupts disabled.
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000365 * Assumes that account_system_vtime() has been called recently
366 * (i.e. since the last entry from usermode) so that
367 * get_paca()->user_time_scaled is up to date.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100368 */
Paul Mackerrasfa13a5a2007-11-09 22:39:38 +0100369void account_process_tick(struct task_struct *tsk, int user_tick)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100370{
Michael Neuling4603ac12007-10-18 03:06:37 -0700371 cputime_t utime, utimescaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100372
373 utime = get_paca()->user_time;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000374 utimescaled = get_paca()->user_time_scaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100375 get_paca()->user_time = 0;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000376 get_paca()->user_time_scaled = 0;
377 get_paca()->utime_sspurr = 0;
Martin Schwidefsky457533a2008-12-31 15:11:37 +0100378 account_user_time(tsk, utime, utimescaled);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100379}
380
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100381#else /* ! CONFIG_VIRT_CPU_ACCOUNTING */
382#define calc_cputime_factors()
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100383#endif
384
Paul Mackerras6defa382005-11-18 13:44:17 +1100385void __delay(unsigned long loops)
386{
387 unsigned long start;
388 int diff;
389
390 if (__USE_RTC()) {
391 start = get_rtcl();
392 do {
393 /* the RTCL register wraps at 1000000000 */
394 diff = get_rtcl() - start;
395 if (diff < 0)
396 diff += 1000000000;
397 } while (diff < loops);
398 } else {
399 start = get_tbl();
400 while (get_tbl() - start < loops)
401 HMT_low();
402 HMT_medium();
403 }
404}
405EXPORT_SYMBOL(__delay);
406
407void udelay(unsigned long usecs)
408{
409 __delay(tb_ticks_per_usec * usecs);
410}
411EXPORT_SYMBOL(udelay);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#ifdef CONFIG_SMP
414unsigned long profile_pc(struct pt_regs *regs)
415{
416 unsigned long pc = instruction_pointer(regs);
417
418 if (in_lock_functions(pc))
419 return regs->link;
420
421 return pc;
422}
423EXPORT_SYMBOL(profile_pc);
424#endif
425
426#ifdef CONFIG_PPC_ISERIES
427
428/*
429 * This function recalibrates the timebase based on the 49-bit time-of-day
430 * value in the Titan chip. The Titan is much more accurate than the value
Anton Blanchard621692c2011-11-23 20:07:21 +0000431 * returned by the service processor for the timebase frequency.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 */
433
Tony Breeds71712b42007-06-22 16:54:30 +1000434static int __init iSeries_tb_recal(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 unsigned long titan, tb;
Tony Breeds71712b42007-06-22 16:54:30 +1000437
438 /* Make sure we only run on iSeries */
439 if (!firmware_has_feature(FW_FEATURE_ISERIES))
440 return -ENODEV;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 tb = get_tb();
443 titan = HvCallXm_loadTod();
444 if ( iSeries_recal_titan ) {
445 unsigned long tb_ticks = tb - iSeries_recal_tb;
446 unsigned long titan_usec = (titan - iSeries_recal_titan) >> 12;
447 unsigned long new_tb_ticks_per_sec = (tb_ticks * USEC_PER_SEC)/titan_usec;
Julia Lawall14ea58a2009-08-01 22:48:27 +0000448 unsigned long new_tb_ticks_per_jiffy =
449 DIV_ROUND_CLOSEST(new_tb_ticks_per_sec, HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 long tick_diff = new_tb_ticks_per_jiffy - tb_ticks_per_jiffy;
451 char sign = '+';
452 /* make sure tb_ticks_per_sec and tb_ticks_per_jiffy are consistent */
453 new_tb_ticks_per_sec = new_tb_ticks_per_jiffy * HZ;
454
455 if ( tick_diff < 0 ) {
456 tick_diff = -tick_diff;
457 sign = '-';
458 }
459 if ( tick_diff ) {
460 if ( tick_diff < tb_ticks_per_jiffy/25 ) {
461 printk( "Titan recalibrate: new tb_ticks_per_jiffy = %lu (%c%ld)\n",
462 new_tb_ticks_per_jiffy, sign, tick_diff );
463 tb_ticks_per_jiffy = new_tb_ticks_per_jiffy;
464 tb_ticks_per_sec = new_tb_ticks_per_sec;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100465 calc_cputime_factors();
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100466 vdso_data->tb_ticks_per_sec = tb_ticks_per_sec;
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200467 setup_cputime_one_jiffy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 else {
470 printk( "Titan recalibrate: FAILED (difference > 4 percent)\n"
471 " new tb_ticks_per_jiffy = %lu\n"
472 " old tb_ticks_per_jiffy = %lu\n",
473 new_tb_ticks_per_jiffy, tb_ticks_per_jiffy );
474 }
475 }
476 }
477 iSeries_recal_titan = titan;
478 iSeries_recal_tb = tb;
Tony Breeds71712b42007-06-22 16:54:30 +1000479
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000480 /* Called here as now we know accurate values for the timebase */
481 clocksource_init();
Tony Breeds71712b42007-06-22 16:54:30 +1000482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
Tony Breeds71712b42007-06-22 16:54:30 +1000484late_initcall(iSeries_tb_recal);
485
486/* Called from platform early init */
487void __init iSeries_time_init_early(void)
488{
489 iSeries_recal_tb = get_tb();
490 iSeries_recal_titan = HvCallXm_loadTod();
491}
492#endif /* CONFIG_PPC_ISERIES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800494#ifdef CONFIG_IRQ_WORK
Paul Mackerras105988c2009-06-17 21:50:04 +1000495
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000496/*
497 * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable...
498 */
499#ifdef CONFIG_PPC64
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800500static inline unsigned long test_irq_work_pending(void)
Paul Mackerras105988c2009-06-17 21:50:04 +1000501{
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000502 unsigned long x;
503
504 asm volatile("lbz %0,%1(13)"
505 : "=r" (x)
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800506 : "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000507 return x;
Paul Mackerras105988c2009-06-17 21:50:04 +1000508}
509
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800510static inline void set_irq_work_pending_flag(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000511{
512 asm volatile("stb %0,%1(13)" : :
513 "r" (1),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800514 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000515}
516
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800517static inline void clear_irq_work_pending(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000518{
519 asm volatile("stb %0,%1(13)" : :
520 "r" (0),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800521 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000522}
523
524#else /* 32-bit */
525
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800526DEFINE_PER_CPU(u8, irq_work_pending);
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000527
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800528#define set_irq_work_pending_flag() __get_cpu_var(irq_work_pending) = 1
529#define test_irq_work_pending() __get_cpu_var(irq_work_pending)
530#define clear_irq_work_pending() __get_cpu_var(irq_work_pending) = 0
Paul Mackerras105988c2009-06-17 21:50:04 +1000531
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000532#endif /* 32 vs 64 bit */
533
Peter Zijlstra4f8b50b2011-06-27 17:22:43 +0200534void arch_irq_work_raise(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000535{
536 preempt_disable();
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800537 set_irq_work_pending_flag();
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000538 set_dec(1);
539 preempt_enable();
540}
541
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800542#else /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000543
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800544#define test_irq_work_pending() 0
545#define clear_irq_work_pending()
Paul Mackerras105988c2009-06-17 21:50:04 +1000546
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800547#endif /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * For iSeries shared processors, we have to let the hypervisor
551 * set the hardware decrementer. We set a virtual decrementer
552 * in the lppaca and call the hypervisor if the virtual
553 * decrementer is less than the current value in the hardware
554 * decrementer. (almost always the new decrementer value will
555 * be greater than the current hardware decementer so the hypervisor
556 * call will not be needed)
557 */
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/*
560 * timer_interrupt - gets called when the decrementer overflows,
561 * with interrupts disabled.
562 */
Kumar Galac7aeffc2005-09-19 09:30:27 -0500563void timer_interrupt(struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
David Howells7d12e782006-10-05 14:55:46 +0100565 struct pt_regs *old_regs;
Anton Blanchard7df10272011-11-23 20:07:22 +0000566 u64 *next_tb = &__get_cpu_var(decrementers_next_tb);
567 struct clock_event_device *evt = &__get_cpu_var(decrementers);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000568
Benjamin Herrenschmidt963e5d32011-03-29 14:51:10 +1100569 /* Ensure a positive value is written to the decrementer, or else
570 * some CPUs will continue to take decrementer exceptions.
571 */
572 set_dec(DECREMENTER_MAX);
573
574 /* Some implementations of hotplug will get timer interrupts while
575 * offline, just ignore these
576 */
577 if (!cpu_online(smp_processor_id()))
578 return;
579
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100580 /* Conditionally hard-enable interrupts now that the DEC has been
581 * bumped to its maximum value
582 */
583 may_hard_irq_enable();
584
Anton Blanchard6795b852009-10-26 18:49:14 +0000585 trace_timer_interrupt_entry(regs);
586
Anton Blanchard89713ed2010-01-31 20:34:06 +0000587 __get_cpu_var(irq_stat).timer_irqs++;
588
Paul Mackerrasb0d278b2010-08-10 20:38:23 +0000589#if defined(CONFIG_PPC32) && defined(CONFIG_PMAC)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000590 if (atomic_read(&ppc_n_lost_interrupts) != 0)
591 do_IRQ(regs);
592#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
David Howells7d12e782006-10-05 14:55:46 +0100594 old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 irq_enter();
596
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800597 if (test_irq_work_pending()) {
598 clear_irq_work_pending();
599 irq_work_run();
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000600 }
601
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000602#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell501b6d22006-11-21 15:10:20 +1100603 if (firmware_has_feature(FW_FEATURE_ISERIES))
604 get_lppaca()->int_dword.fields.decr_int = 0;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Anton Blanchard7df10272011-11-23 20:07:22 +0000607 *next_tb = ~(u64)0;
Anton Blanchard68568ad2011-11-23 20:07:20 +0000608 if (evt->event_handler)
609 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell501b6d22006-11-21 15:10:20 +1100612 if (firmware_has_feature(FW_FEATURE_ISERIES) && hvlpevent_is_pending())
Olaf Hering35a84c22006-10-07 22:08:26 +1000613 process_hvlpevents();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#endif
615
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000616#ifdef CONFIG_PPC64
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000617 /* collect purr register values often, for accurate calculations */
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000618 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array);
620 cu->current_tb = mfspr(SPRN_PURR);
621 }
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000622#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 irq_exit();
David Howells7d12e782006-10-05 14:55:46 +0100625 set_irq_regs(old_regs);
Anton Blanchard6795b852009-10-26 18:49:14 +0000626
627 trace_timer_interrupt_exit(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Scott Wood7ac5dde2007-12-13 04:35:19 +1100630#ifdef CONFIG_SUSPEND
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000631static void generic_suspend_disable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100632{
Scott Wood7ac5dde2007-12-13 04:35:19 +1100633 /* Disable the decrementer, so that it doesn't interfere
634 * with suspending.
635 */
636
Anton Blanchard621692c2011-11-23 20:07:21 +0000637 set_dec(DECREMENTER_MAX);
Scott Wood7ac5dde2007-12-13 04:35:19 +1100638 local_irq_disable();
Anton Blanchard621692c2011-11-23 20:07:21 +0000639 set_dec(DECREMENTER_MAX);
Scott Wood7ac5dde2007-12-13 04:35:19 +1100640}
641
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000642static void generic_suspend_enable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100643{
Scott Wood7ac5dde2007-12-13 04:35:19 +1100644 local_irq_enable();
Scott Wood7ac5dde2007-12-13 04:35:19 +1100645}
646
647/* Overrides the weak version in kernel/power/main.c */
648void arch_suspend_disable_irqs(void)
649{
650 if (ppc_md.suspend_disable_irqs)
651 ppc_md.suspend_disable_irqs();
652 generic_suspend_disable_irqs();
653}
654
655/* Overrides the weak version in kernel/power/main.c */
656void arch_suspend_enable_irqs(void)
657{
658 generic_suspend_enable_irqs();
659 if (ppc_md.suspend_enable_irqs)
660 ppc_md.suspend_enable_irqs();
661}
662#endif
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/*
665 * Scheduler clock - returns current time in nanosec units.
666 *
667 * Note: mulhdu(a, b) (multiply high double unsigned) returns
668 * the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b
669 * are 64-bit unsigned numbers.
670 */
671unsigned long long sched_clock(void)
672{
Paul Mackerras96c44502005-10-23 17:14:56 +1000673 if (__USE_RTC())
674 return get_rtc();
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000675 return mulhdu(get_tb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000678static int __init get_freq(char *name, int cells, unsigned long *val)
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000679{
680 struct device_node *cpu;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000681 const unsigned int *fp;
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000682 int found = 0;
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000683
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000684 /* The cpu node should have timebase and clock frequency properties */
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000685 cpu = of_find_node_by_type(NULL, "cpu");
686
Olaf Heringd8a81882006-02-04 10:34:56 +0100687 if (cpu) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000688 fp = of_get_property(cpu, name, NULL);
Olaf Heringd8a81882006-02-04 10:34:56 +0100689 if (fp) {
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000690 found = 1;
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000691 *val = of_read_ulong(fp, cells);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000692 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000693
694 of_node_put(cpu);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000695 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000696
697 return found;
698}
699
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000700/* should become __cpuinit when secondary_cpu_time_init also is */
701void start_cpu_decrementer(void)
702{
703#if defined(CONFIG_BOOKE) || defined(CONFIG_40x)
704 /* Clear any pending timer interrupts */
705 mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_DIS | TSR_FIS);
706
707 /* Enable decrementer interrupt */
708 mtspr(SPRN_TCR, TCR_DIE);
709#endif /* defined(CONFIG_BOOKE) || defined(CONFIG_40x) */
710}
711
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000712void __init generic_calibrate_decr(void)
713{
714 ppc_tb_freq = DEFAULT_TB_FREQ; /* hardcoded default */
715
716 if (!get_freq("ibm,extended-timebase-frequency", 2, &ppc_tb_freq) &&
717 !get_freq("timebase-frequency", 1, &ppc_tb_freq)) {
718
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000719 printk(KERN_ERR "WARNING: Estimating decrementer frequency "
720 "(not found)\n");
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000721 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000722
723 ppc_proc_freq = DEFAULT_PROC_FREQ; /* hardcoded default */
724
725 if (!get_freq("ibm,extended-clock-frequency", 2, &ppc_proc_freq) &&
726 !get_freq("clock-frequency", 1, &ppc_proc_freq)) {
727
728 printk(KERN_ERR "WARNING: Estimating processor frequency "
729 "(not found)\n");
730 }
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000731}
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000732
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000733int update_persistent_clock(struct timespec now)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000734{
735 struct rtc_time tm;
736
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000737 if (!ppc_md.set_rtc_time)
738 return 0;
739
740 to_tm(now.tv_sec + 1 + timezone_offset, &tm);
741 tm.tm_year -= 1900;
742 tm.tm_mon -= 1;
743
744 return ppc_md.set_rtc_time(&tm);
745}
746
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000747static void __read_persistent_clock(struct timespec *ts)
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000748{
749 struct rtc_time tm;
750 static int first = 1;
751
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200752 ts->tv_nsec = 0;
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000753 /* XXX this is a litle fragile but will work okay in the short term */
754 if (first) {
755 first = 0;
756 if (ppc_md.time_init)
757 timezone_offset = ppc_md.time_init();
758
759 /* get_boot_time() isn't guaranteed to be safe to call late */
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200760 if (ppc_md.get_boot_time) {
761 ts->tv_sec = ppc_md.get_boot_time() - timezone_offset;
762 return;
763 }
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000764 }
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200765 if (!ppc_md.get_rtc_time) {
766 ts->tv_sec = 0;
767 return;
768 }
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000769 ppc_md.get_rtc_time(&tm);
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000770
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200771 ts->tv_sec = mktime(tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
772 tm.tm_hour, tm.tm_min, tm.tm_sec);
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000773}
774
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000775void read_persistent_clock(struct timespec *ts)
776{
777 __read_persistent_clock(ts);
778
779 /* Sanitize it in case real time clock is set below EPOCH */
780 if (ts->tv_sec < 0) {
781 ts->tv_sec = 0;
782 ts->tv_nsec = 0;
783 }
784
785}
786
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000787/* clocksource code */
Magnus Damm8e196082009-04-21 12:24:00 -0700788static cycle_t rtc_read(struct clocksource *cs)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000789{
790 return (cycle_t)get_rtc();
791}
792
Magnus Damm8e196082009-04-21 12:24:00 -0700793static cycle_t timebase_read(struct clocksource *cs)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000794{
795 return (cycle_t)get_tb();
796}
797
John Stultz76158562010-07-13 17:56:23 -0700798void update_vsyscall(struct timespec *wall_time, struct timespec *wtm,
799 struct clocksource *clock, u32 mult)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000800{
John Stultzb0797b62010-07-13 17:56:21 -0700801 u64 new_tb_to_xs, new_stamp_xsec;
Paul Mackerras0e469db2010-06-20 19:03:08 +0000802 u32 frac_sec;
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000803
804 if (clock != &clocksource_timebase)
805 return;
806
807 /* Make userspace gettimeofday spin until we're done. */
808 ++vdso_data->tb_update_count;
809 smp_mb();
810
Anton Blanchard11b86332011-11-23 20:07:19 +0000811 /* 19342813113834067 ~= 2^(20+64) / 1e9 */
812 new_tb_to_xs = (u64) mult * (19342813113834067ULL >> clock->shift);
John Stultz06d518e2010-07-13 17:56:22 -0700813 new_stamp_xsec = (u64) wall_time->tv_nsec * XSEC_PER_SEC;
John Stultzb0797b62010-07-13 17:56:21 -0700814 do_div(new_stamp_xsec, 1000000000);
John Stultz06d518e2010-07-13 17:56:22 -0700815 new_stamp_xsec += (u64) wall_time->tv_sec * XSEC_PER_SEC;
John Stultzb0797b62010-07-13 17:56:21 -0700816
Paul Mackerras0e469db2010-06-20 19:03:08 +0000817 BUG_ON(wall_time->tv_nsec >= NSEC_PER_SEC);
818 /* this is tv_nsec / 1e9 as a 0.32 fraction */
819 frac_sec = ((u64) wall_time->tv_nsec * 18446744073ULL) >> 32;
Thomas Gleixner47916be2010-07-28 21:49:22 +0200820
John Stultzb0797b62010-07-13 17:56:21 -0700821 /*
822 * tb_update_count is used to allow the userspace gettimeofday code
823 * to assure itself that it sees a consistent view of the tb_to_xs and
824 * stamp_xsec variables. It reads the tb_update_count, then reads
825 * tb_to_xs and stamp_xsec and then reads tb_update_count again. If
826 * the two values of tb_update_count match and are even then the
827 * tb_to_xs and stamp_xsec values are consistent. If not, then it
828 * loops back and reads them again until this criteria is met.
829 * We expect the caller to have done the first increment of
830 * vdso_data->tb_update_count already.
831 */
832 vdso_data->tb_orig_stamp = clock->cycle_last;
833 vdso_data->stamp_xsec = new_stamp_xsec;
834 vdso_data->tb_to_xs = new_tb_to_xs;
John Stultz76158562010-07-13 17:56:23 -0700835 vdso_data->wtom_clock_sec = wtm->tv_sec;
836 vdso_data->wtom_clock_nsec = wtm->tv_nsec;
John Stultz06d518e2010-07-13 17:56:22 -0700837 vdso_data->stamp_xtime = *wall_time;
Thomas Gleixner47916be2010-07-28 21:49:22 +0200838 vdso_data->stamp_sec_fraction = frac_sec;
John Stultzb0797b62010-07-13 17:56:21 -0700839 smp_wmb();
840 ++(vdso_data->tb_update_count);
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000841}
842
843void update_vsyscall_tz(void)
844{
845 /* Make userspace gettimeofday spin until we're done. */
846 ++vdso_data->tb_update_count;
847 smp_mb();
848 vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
849 vdso_data->tz_dsttime = sys_tz.tz_dsttime;
850 smp_mb();
851 ++vdso_data->tb_update_count;
852}
853
Michael Ellerman1c21a292008-05-08 14:27:19 +1000854static void __init clocksource_init(void)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000855{
856 struct clocksource *clock;
857
858 if (__USE_RTC())
859 clock = &clocksource_rtc;
860 else
861 clock = &clocksource_timebase;
862
Anton Blanchard11b86332011-11-23 20:07:19 +0000863 if (clocksource_register_hz(clock, tb_ticks_per_sec)) {
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000864 printk(KERN_ERR "clocksource: %s is already registered\n",
865 clock->name);
866 return;
867 }
868
869 printk(KERN_INFO "clocksource: %s mult[%x] shift[%d] registered\n",
870 clock->name, clock->mult, clock->shift);
871}
872
Tony Breedsd831d0b2007-09-21 13:26:03 +1000873static int decrementer_set_next_event(unsigned long evt,
874 struct clock_event_device *dev)
875{
Anton Blanchard7df10272011-11-23 20:07:22 +0000876 __get_cpu_var(decrementers_next_tb) = get_tb_or_rtc() + evt;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000877 set_dec(evt);
878 return 0;
879}
880
881static void decrementer_set_mode(enum clock_event_mode mode,
882 struct clock_event_device *dev)
883{
884 if (mode != CLOCK_EVT_MODE_ONESHOT)
885 decrementer_set_next_event(DECREMENTER_MAX, dev);
886}
887
888static void register_decrementer_clockevent(int cpu)
889{
Anton Blanchard7df10272011-11-23 20:07:22 +0000890 struct clock_event_device *dec = &per_cpu(decrementers, cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000891
892 *dec = decrementer_clockevent;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030893 dec->cpumask = cpumask_of(cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000894
Anton Blanchardb919ee82010-02-07 19:26:29 +0000895 printk_once(KERN_DEBUG "clockevent: %s mult[%x] shift[%d] cpu[%d]\n",
896 dec->name, dec->mult, dec->shift, cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000897
898 clockevents_register_device(dec);
899}
900
Milton Millerc4818872007-12-14 15:52:10 +1100901static void __init init_decrementer_clockevent(void)
Tony Breedsd831d0b2007-09-21 13:26:03 +1000902{
903 int cpu = smp_processor_id();
904
Anton Blanchardd8afc6f2011-11-23 20:07:18 +0000905 clockevents_calc_mult_shift(&decrementer_clockevent, ppc_tb_freq, 4);
906
Tony Breedsd831d0b2007-09-21 13:26:03 +1000907 decrementer_clockevent.max_delta_ns =
908 clockevent_delta2ns(DECREMENTER_MAX, &decrementer_clockevent);
Paul Mackerras43875cc2007-10-31 22:25:35 +1100909 decrementer_clockevent.min_delta_ns =
910 clockevent_delta2ns(2, &decrementer_clockevent);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000911
912 register_decrementer_clockevent(cpu);
913}
914
915void secondary_cpu_time_init(void)
916{
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000917 /* Start the decrementer on CPUs that have manual control
918 * such as BookE
919 */
920 start_cpu_decrementer();
921
Tony Breedsd831d0b2007-09-21 13:26:03 +1000922 /* FIME: Should make unrelatred change to move snapshot_timebase
923 * call here ! */
924 register_decrementer_clockevent(smp_processor_id());
925}
926
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000927/* This function is only called on the boot processor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928void __init time_init(void)
929{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct div_result res;
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000931 u64 scale;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000932 unsigned shift;
933
Paul Mackerras96c44502005-10-23 17:14:56 +1000934 if (__USE_RTC()) {
935 /* 601 processor: dec counts down by 128 every 128ns */
936 ppc_tb_freq = 1000000000;
Paul Mackerras96c44502005-10-23 17:14:56 +1000937 } else {
938 /* Normal PowerPC with timebase register */
939 ppc_md.calibrate_decr();
Olof Johansson224ad802006-04-12 15:20:27 -0500940 printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n",
Paul Mackerras96c44502005-10-23 17:14:56 +1000941 ppc_tb_freq / 1000000, ppc_tb_freq % 1000000);
Olof Johansson224ad802006-04-12 15:20:27 -0500942 printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n",
Paul Mackerras96c44502005-10-23 17:14:56 +1000943 ppc_proc_freq / 1000000, ppc_proc_freq % 1000000);
Paul Mackerras96c44502005-10-23 17:14:56 +1000944 }
Paul Mackerras374e99d2005-10-20 21:04:51 +1000945
946 tb_ticks_per_jiffy = ppc_tb_freq / HZ;
Paul Mackerras092b8f32006-02-20 10:38:56 +1100947 tb_ticks_per_sec = ppc_tb_freq;
Paul Mackerras374e99d2005-10-20 21:04:51 +1000948 tb_ticks_per_usec = ppc_tb_freq / 1000000;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100949 calc_cputime_factors();
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200950 setup_cputime_one_jiffy();
Paul Mackerras092b8f32006-02-20 10:38:56 +1100951
952 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 * Compute scale factor for sched_clock.
954 * The calibrate_decr() function has set tb_ticks_per_sec,
955 * which is the timebase frequency.
956 * We compute 1e9 * 2^64 / tb_ticks_per_sec and interpret
957 * the 128-bit result as a 64.64 fixed-point number.
958 * We then shift that number right until it is less than 1.0,
959 * giving us the scale factor and shift count to use in
960 * sched_clock().
961 */
962 div128_by_32(1000000000, 0, tb_ticks_per_sec, &res);
963 scale = res.result_low;
964 for (shift = 0; res.result_high != 0; ++shift) {
965 scale = (scale >> 1) | (res.result_high << 63);
966 res.result_high >>= 1;
967 }
968 tb_to_ns_scale = scale;
969 tb_to_ns_shift = shift;
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000970 /* Save the current timebase to pretty up CONFIG_PRINTK_TIME */
Benjamin Herrenschmidtc27da3392007-09-19 14:21:56 +1000971 boot_tb = get_tb_or_rtc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Paul Mackerras092b8f32006-02-20 10:38:56 +1100973 /* If platform provided a timezone (pmac), we correct the time */
Anton Blanchard621692c2011-11-23 20:07:21 +0000974 if (timezone_offset) {
Paul Mackerras092b8f32006-02-20 10:38:56 +1100975 sys_tz.tz_minuteswest = -timezone_offset / 60;
976 sys_tz.tz_dsttime = 0;
Anton Blanchard621692c2011-11-23 20:07:21 +0000977 }
Paul Mackerras092b8f32006-02-20 10:38:56 +1100978
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100979 vdso_data->tb_update_count = 0;
980 vdso_data->tb_ticks_per_sec = tb_ticks_per_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000982 /* Start the decrementer on CPUs that have manual control
983 * such as BookE
984 */
985 start_cpu_decrementer();
986
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000987 /* Register the clocksource, if we're not running on iSeries */
988 if (!firmware_has_feature(FW_FEATURE_ISERIES))
989 clocksource_init();
990
Tony Breedsd831d0b2007-09-21 13:26:03 +1000991 init_decrementer_clockevent();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995#define FEBRUARY 2
996#define STARTOFTIME 1970
997#define SECDAY 86400L
998#define SECYR (SECDAY * 365)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000999#define leapyear(year) ((year) % 4 == 0 && \
1000 ((year) % 100 != 0 || (year) % 400 == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001#define days_in_year(a) (leapyear(a) ? 366 : 365)
1002#define days_in_month(a) (month_days[(a) - 1])
1003
1004static int month_days[12] = {
1005 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
1006};
1007
1008/*
1009 * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
1010 */
1011void GregorianDay(struct rtc_time * tm)
1012{
1013 int leapsToDate;
1014 int lastYear;
1015 int day;
1016 int MonthOffset[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
1017
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001018 lastYear = tm->tm_year - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /*
1021 * Number of leap corrections to apply up to end of last year
1022 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001023 leapsToDate = lastYear / 4 - lastYear / 100 + lastYear / 400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /*
1026 * This year is a leap year if it is divisible by 4 except when it is
1027 * divisible by 100 unless it is divisible by 400
1028 *
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001029 * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001031 day = tm->tm_mon > 2 && leapyear(tm->tm_year);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] +
1034 tm->tm_mday;
1035
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001036 tm->tm_wday = day % 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039void to_tm(int tim, struct rtc_time * tm)
1040{
1041 register int i;
1042 register long hms, day;
1043
1044 day = tim / SECDAY;
1045 hms = tim % SECDAY;
1046
1047 /* Hours, minutes, seconds are easy */
1048 tm->tm_hour = hms / 3600;
1049 tm->tm_min = (hms % 3600) / 60;
1050 tm->tm_sec = (hms % 3600) % 60;
1051
1052 /* Number of years in days */
1053 for (i = STARTOFTIME; day >= days_in_year(i); i++)
1054 day -= days_in_year(i);
1055 tm->tm_year = i;
1056
1057 /* Number of months in days left */
1058 if (leapyear(tm->tm_year))
1059 days_in_month(FEBRUARY) = 29;
1060 for (i = 1; day >= days_in_month(i); i++)
1061 day -= days_in_month(i);
1062 days_in_month(FEBRUARY) = 28;
1063 tm->tm_mon = i;
1064
1065 /* Days are what is left over (+1) from all that. */
1066 tm->tm_mday = day + 1;
1067
1068 /*
1069 * Determine the day of week
1070 */
1071 GregorianDay(tm);
1072}
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074/*
1075 * Divide a 128-bit dividend by a 32-bit divisor, leaving a 128 bit
1076 * result.
1077 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001078void div128_by_32(u64 dividend_high, u64 dividend_low,
1079 unsigned divisor, struct div_result *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001081 unsigned long a, b, c, d;
1082 unsigned long w, x, y, z;
1083 u64 ra, rb, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 a = dividend_high >> 32;
1086 b = dividend_high & 0xffffffff;
1087 c = dividend_low >> 32;
1088 d = dividend_low & 0xffffffff;
1089
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001090 w = a / divisor;
1091 ra = ((u64)(a - (w * divisor)) << 32) + b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001093 rb = ((u64) do_div(ra, divisor) << 32) + c;
1094 x = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001096 rc = ((u64) do_div(rb, divisor) << 32) + d;
1097 y = rb;
1098
1099 do_div(rc, divisor);
1100 z = rc;
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001101
1102 dr->result_high = ((u64)w << 32) + x;
1103 dr->result_low = ((u64)y << 32) + z;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105}
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001106
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +00001107/* We don't need to calibrate delay, we use the CPU timebase for that */
1108void calibrate_delay(void)
1109{
1110 /* Some generic code (such as spinlock debug) use loops_per_jiffy
1111 * as the number of __delay(1) in a jiffy, so make it so
1112 */
1113 loops_per_jiffy = tb_ticks_per_jiffy;
1114}
1115
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001116static int __init rtc_init(void)
1117{
1118 struct platform_device *pdev;
1119
1120 if (!ppc_md.get_rtc_time)
1121 return -ENODEV;
1122
1123 pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
1124 if (IS_ERR(pdev))
1125 return PTR_ERR(pdev);
1126
1127 return 0;
1128}
1129
1130module_init(rtc_init);