blob: d204b726a185e69091286cef0ade9216f091de58 [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 = {
109 .name = "decrementer",
110 .rating = 200,
Tony Breedsd831d0b2007-09-21 13:26:03 +1000111 .irq = 0,
112 .set_next_event = decrementer_set_next_event,
113 .set_mode = decrementer_set_mode,
114 .features = CLOCK_EVT_FEAT_ONESHOT,
115};
116
Milton Miller6e6b44e2007-12-14 15:52:15 +1100117struct decrementer_clock {
118 struct clock_event_device event;
119 u64 next_tb;
120};
121
122static DEFINE_PER_CPU(struct decrementer_clock, decrementers);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#ifdef CONFIG_PPC_ISERIES
Tony Breeds71712b42007-06-22 16:54:30 +1000125static unsigned long __initdata iSeries_recal_titan;
126static signed long __initdata iSeries_recal_tb;
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000127
128/* Forward declaration is only needed for iSereis compiles */
Michael Ellerman1c21a292008-05-08 14:27:19 +1000129static void __init clocksource_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif
131
132#define XSEC_PER_SEC (1024*1024)
133
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000134#ifdef CONFIG_PPC64
135#define SCALE_XSEC(xsec, max) (((xsec) * max) / XSEC_PER_SEC)
136#else
137/* compute ((xsec << 12) * max) >> 32 */
138#define SCALE_XSEC(xsec, max) mulhwu((xsec) << 12, max)
139#endif
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141unsigned long tb_ticks_per_jiffy;
142unsigned long tb_ticks_per_usec = 100; /* sane default */
143EXPORT_SYMBOL(tb_ticks_per_usec);
144unsigned long tb_ticks_per_sec;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100145EXPORT_SYMBOL(tb_ticks_per_sec); /* for cputime_t conversions */
Paul Mackerras092b8f32006-02-20 10:38:56 +1100146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147DEFINE_SPINLOCK(rtc_lock);
Benjamin Herrenschmidt6ae3db12005-06-27 14:36:35 -0700148EXPORT_SYMBOL_GPL(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Tony Breedsfc9069f2007-07-04 14:04:31 +1000150static u64 tb_to_ns_scale __read_mostly;
151static unsigned tb_to_ns_shift __read_mostly;
Heiko Schocher364a1242010-11-22 21:30:33 +0000152static u64 boot_tb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154extern struct timezone sys_tz;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000155static long timezone_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000157unsigned long ppc_proc_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500158EXPORT_SYMBOL_GPL(ppc_proc_freq);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000159unsigned long ppc_tb_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500160EXPORT_SYMBOL_GPL(ppc_tb_freq);
Paul Mackerras96c44502005-10-23 17:14:56 +1000161
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100162#ifdef CONFIG_VIRT_CPU_ACCOUNTING
163/*
164 * Factors for converting from cputime_t (timebase ticks) to
165 * jiffies, milliseconds, seconds, and clock_t (1/USER_HZ seconds).
166 * These are all stored as 0.64 fixed-point binary fractions.
167 */
168u64 __cputime_jiffies_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100169EXPORT_SYMBOL(__cputime_jiffies_factor);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100170u64 __cputime_msec_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100171EXPORT_SYMBOL(__cputime_msec_factor);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100172u64 __cputime_sec_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100173EXPORT_SYMBOL(__cputime_sec_factor);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100174u64 __cputime_clockt_factor;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100175EXPORT_SYMBOL(__cputime_clockt_factor);
Michael Neuling06b8e872008-02-06 01:36:12 -0800176DEFINE_PER_CPU(unsigned long, cputime_last_delta);
177DEFINE_PER_CPU(unsigned long, cputime_scaled_last_delta);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100178
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200179cputime_t cputime_one_jiffy;
180
Paul Mackerras872e4392010-08-31 01:59:53 +0000181void (*dtl_consumer)(struct dtl_entry *, u64);
182
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100183static void calc_cputime_factors(void)
184{
185 struct div_result res;
186
187 div128_by_32(HZ, 0, tb_ticks_per_sec, &res);
188 __cputime_jiffies_factor = res.result_low;
189 div128_by_32(1000, 0, tb_ticks_per_sec, &res);
190 __cputime_msec_factor = res.result_low;
191 div128_by_32(1, 0, tb_ticks_per_sec, &res);
192 __cputime_sec_factor = res.result_low;
193 div128_by_32(USER_HZ, 0, tb_ticks_per_sec, &res);
194 __cputime_clockt_factor = res.result_low;
195}
196
197/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000198 * Read the SPURR on systems that have it, otherwise the PURR,
199 * or if that doesn't exist return the timebase value passed in.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100200 */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000201static u64 read_spurr(u64 tb)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100202{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000203 if (cpu_has_feature(CPU_FTR_SPURR))
204 return mfspr(SPRN_SPURR);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100205 if (cpu_has_feature(CPU_FTR_PURR))
206 return mfspr(SPRN_PURR);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000207 return tb;
208}
209
210#ifdef CONFIG_PPC_SPLPAR
211
212/*
213 * Scan the dispatch trace log and count up the stolen time.
214 * Should be called with interrupts disabled.
215 */
216static u64 scan_dispatch_log(u64 stop_tb)
217{
Paul Mackerras872e4392010-08-31 01:59:53 +0000218 u64 i = local_paca->dtl_ridx;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000219 struct dtl_entry *dtl = local_paca->dtl_curr;
220 struct dtl_entry *dtl_end = local_paca->dispatch_log_end;
221 struct lppaca *vpa = local_paca->lppaca_ptr;
222 u64 tb_delta;
223 u64 stolen = 0;
224 u64 dtb;
225
Anton Blanchard84ffae52011-04-07 21:44:21 +0000226 if (!dtl)
227 return 0;
228
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000229 if (i == vpa->dtl_idx)
230 return 0;
231 while (i < vpa->dtl_idx) {
Paul Mackerras872e4392010-08-31 01:59:53 +0000232 if (dtl_consumer)
233 dtl_consumer(dtl, i);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000234 dtb = dtl->timebase;
235 tb_delta = dtl->enqueue_to_dispatch_time +
236 dtl->ready_to_enqueue_time;
237 barrier();
238 if (i + N_DISPATCH_LOG < vpa->dtl_idx) {
239 /* buffer has overflowed */
240 i = vpa->dtl_idx - N_DISPATCH_LOG;
241 dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG);
242 continue;
243 }
244 if (dtb > stop_tb)
245 break;
246 stolen += tb_delta;
247 ++i;
248 ++dtl;
249 if (dtl == dtl_end)
250 dtl = local_paca->dispatch_log;
251 }
252 local_paca->dtl_ridx = i;
253 local_paca->dtl_curr = dtl;
254 return stolen;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100255}
256
257/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000258 * Accumulate stolen time by scanning the dispatch trace log.
259 * Called on entry from user mode.
Michael Neuling4603ac12007-10-18 03:06:37 -0700260 */
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000261void accumulate_stolen_time(void)
Michael Neuling4603ac12007-10-18 03:06:37 -0700262{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000263 u64 sst, ust;
264
Tejun Heob18ae082011-01-03 03:49:25 +0000265 u8 save_soft_enabled = local_paca->soft_enabled;
266 u8 save_hard_enabled = local_paca->hard_enabled;
267
268 /* We are called early in the exception entry, before
269 * soft/hard_enabled are sync'ed to the expected state
270 * for the exception. We are hard disabled but the PACA
271 * needs to reflect that so various debug stuff doesn't
272 * complain
273 */
274 local_paca->soft_enabled = 0;
275 local_paca->hard_enabled = 0;
276
277 sst = scan_dispatch_log(local_paca->starttime_user);
278 ust = scan_dispatch_log(local_paca->starttime);
279 local_paca->system_time -= sst;
280 local_paca->user_time -= ust;
281 local_paca->stolen_time += ust + sst;
282
283 local_paca->soft_enabled = save_soft_enabled;
284 local_paca->hard_enabled = save_hard_enabled;
Michael Neuling4603ac12007-10-18 03:06:37 -0700285}
286
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000287static inline u64 calculate_stolen_time(u64 stop_tb)
288{
289 u64 stolen = 0;
290
291 if (get_paca()->dtl_ridx != get_paca()->lppaca_ptr->dtl_idx) {
292 stolen = scan_dispatch_log(stop_tb);
293 get_paca()->system_time -= stolen;
294 }
295
296 stolen += get_paca()->stolen_time;
297 get_paca()->stolen_time = 0;
298 return stolen;
299}
300
301#else /* CONFIG_PPC_SPLPAR */
302static inline u64 calculate_stolen_time(u64 stop_tb)
303{
304 return 0;
305}
306
307#endif /* CONFIG_PPC_SPLPAR */
308
Michael Neuling4603ac12007-10-18 03:06:37 -0700309/*
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100310 * Account time for a transition between system, hard irq
311 * or soft irq state.
312 */
313void account_system_vtime(struct task_struct *tsk)
314{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000315 u64 now, nowscaled, delta, deltascaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100316 unsigned long flags;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000317 u64 stolen, udelta, sys_scaled, user_scaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100318
319 local_irq_save(flags);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000320 now = mftb();
Michael Neuling4603ac12007-10-18 03:06:37 -0700321 nowscaled = read_spurr(now);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000322 get_paca()->system_time += now - get_paca()->starttime;
323 get_paca()->starttime = now;
Michael Neuling4603ac12007-10-18 03:06:37 -0700324 deltascaled = nowscaled - get_paca()->startspurr;
325 get_paca()->startspurr = nowscaled;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000326
327 stolen = calculate_stolen_time(now);
328
329 delta = get_paca()->system_time;
330 get_paca()->system_time = 0;
331 udelta = get_paca()->user_time - get_paca()->utime_sspurr;
332 get_paca()->utime_sspurr = get_paca()->user_time;
333
334 /*
335 * Because we don't read the SPURR on every kernel entry/exit,
336 * deltascaled includes both user and system SPURR ticks.
337 * Apportion these ticks to system SPURR ticks and user
338 * SPURR ticks in the same ratio as the system time (delta)
339 * and user time (udelta) values obtained from the timebase
340 * over the same interval. The system ticks get accounted here;
341 * the user ticks get saved up in paca->user_time_scaled to be
342 * used by account_process_tick.
343 */
344 sys_scaled = delta;
345 user_scaled = udelta;
346 if (deltascaled != delta + udelta) {
347 if (udelta) {
348 sys_scaled = deltascaled * delta / (delta + udelta);
349 user_scaled = deltascaled - sys_scaled;
350 } else {
351 sys_scaled = deltascaled;
352 }
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100353 }
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000354 get_paca()->user_time_scaled += user_scaled;
355
Anton Blanchardad5d1c82011-03-20 15:28:03 +0000356 if (in_interrupt() || idle_task(smp_processor_id()) != tsk) {
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000357 account_system_time(tsk, 0, delta, sys_scaled);
358 if (stolen)
359 account_steal_time(stolen);
360 } else {
361 account_idle_time(delta + stolen);
362 }
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100363 local_irq_restore(flags);
364}
Alexander Graf4ab79aa2009-10-30 05:47:19 +0000365EXPORT_SYMBOL_GPL(account_system_vtime);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100366
367/*
368 * Transfer the user and system times accumulated in the paca
369 * by the exception entry and exit code to the generic process
370 * user and system time records.
371 * Must be called with interrupts disabled.
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000372 * Assumes that account_system_vtime() has been called recently
373 * (i.e. since the last entry from usermode) so that
374 * get_paca()->user_time_scaled is up to date.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100375 */
Paul Mackerrasfa13a5a2007-11-09 22:39:38 +0100376void account_process_tick(struct task_struct *tsk, int user_tick)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100377{
Michael Neuling4603ac12007-10-18 03:06:37 -0700378 cputime_t utime, utimescaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100379
380 utime = get_paca()->user_time;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000381 utimescaled = get_paca()->user_time_scaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100382 get_paca()->user_time = 0;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000383 get_paca()->user_time_scaled = 0;
384 get_paca()->utime_sspurr = 0;
Martin Schwidefsky457533a2008-12-31 15:11:37 +0100385 account_user_time(tsk, utime, utimescaled);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100386}
387
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100388#else /* ! CONFIG_VIRT_CPU_ACCOUNTING */
389#define calc_cputime_factors()
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100390#endif
391
Paul Mackerras6defa382005-11-18 13:44:17 +1100392void __delay(unsigned long loops)
393{
394 unsigned long start;
395 int diff;
396
397 if (__USE_RTC()) {
398 start = get_rtcl();
399 do {
400 /* the RTCL register wraps at 1000000000 */
401 diff = get_rtcl() - start;
402 if (diff < 0)
403 diff += 1000000000;
404 } while (diff < loops);
405 } else {
406 start = get_tbl();
407 while (get_tbl() - start < loops)
408 HMT_low();
409 HMT_medium();
410 }
411}
412EXPORT_SYMBOL(__delay);
413
414void udelay(unsigned long usecs)
415{
416 __delay(tb_ticks_per_usec * usecs);
417}
418EXPORT_SYMBOL(udelay);
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#ifdef CONFIG_SMP
421unsigned long profile_pc(struct pt_regs *regs)
422{
423 unsigned long pc = instruction_pointer(regs);
424
425 if (in_lock_functions(pc))
426 return regs->link;
427
428 return pc;
429}
430EXPORT_SYMBOL(profile_pc);
431#endif
432
433#ifdef CONFIG_PPC_ISERIES
434
435/*
436 * This function recalibrates the timebase based on the 49-bit time-of-day
437 * value in the Titan chip. The Titan is much more accurate than the value
438 * returned by the service processor for the timebase frequency.
439 */
440
Tony Breeds71712b42007-06-22 16:54:30 +1000441static int __init iSeries_tb_recal(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 unsigned long titan, tb;
Tony Breeds71712b42007-06-22 16:54:30 +1000444
445 /* Make sure we only run on iSeries */
446 if (!firmware_has_feature(FW_FEATURE_ISERIES))
447 return -ENODEV;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 tb = get_tb();
450 titan = HvCallXm_loadTod();
451 if ( iSeries_recal_titan ) {
452 unsigned long tb_ticks = tb - iSeries_recal_tb;
453 unsigned long titan_usec = (titan - iSeries_recal_titan) >> 12;
454 unsigned long new_tb_ticks_per_sec = (tb_ticks * USEC_PER_SEC)/titan_usec;
Julia Lawall14ea58a2009-08-01 22:48:27 +0000455 unsigned long new_tb_ticks_per_jiffy =
456 DIV_ROUND_CLOSEST(new_tb_ticks_per_sec, HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 long tick_diff = new_tb_ticks_per_jiffy - tb_ticks_per_jiffy;
458 char sign = '+';
459 /* make sure tb_ticks_per_sec and tb_ticks_per_jiffy are consistent */
460 new_tb_ticks_per_sec = new_tb_ticks_per_jiffy * HZ;
461
462 if ( tick_diff < 0 ) {
463 tick_diff = -tick_diff;
464 sign = '-';
465 }
466 if ( tick_diff ) {
467 if ( tick_diff < tb_ticks_per_jiffy/25 ) {
468 printk( "Titan recalibrate: new tb_ticks_per_jiffy = %lu (%c%ld)\n",
469 new_tb_ticks_per_jiffy, sign, tick_diff );
470 tb_ticks_per_jiffy = new_tb_ticks_per_jiffy;
471 tb_ticks_per_sec = new_tb_ticks_per_sec;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100472 calc_cputime_factors();
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100473 vdso_data->tb_ticks_per_sec = tb_ticks_per_sec;
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200474 setup_cputime_one_jiffy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 else {
477 printk( "Titan recalibrate: FAILED (difference > 4 percent)\n"
478 " new tb_ticks_per_jiffy = %lu\n"
479 " old tb_ticks_per_jiffy = %lu\n",
480 new_tb_ticks_per_jiffy, tb_ticks_per_jiffy );
481 }
482 }
483 }
484 iSeries_recal_titan = titan;
485 iSeries_recal_tb = tb;
Tony Breeds71712b42007-06-22 16:54:30 +1000486
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000487 /* Called here as now we know accurate values for the timebase */
488 clocksource_init();
Tony Breeds71712b42007-06-22 16:54:30 +1000489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
Tony Breeds71712b42007-06-22 16:54:30 +1000491late_initcall(iSeries_tb_recal);
492
493/* Called from platform early init */
494void __init iSeries_time_init_early(void)
495{
496 iSeries_recal_tb = get_tb();
497 iSeries_recal_titan = HvCallXm_loadTod();
498}
499#endif /* CONFIG_PPC_ISERIES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800501#ifdef CONFIG_IRQ_WORK
Paul Mackerras105988c2009-06-17 21:50:04 +1000502
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000503/*
504 * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable...
505 */
506#ifdef CONFIG_PPC64
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800507static inline unsigned long test_irq_work_pending(void)
Paul Mackerras105988c2009-06-17 21:50:04 +1000508{
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000509 unsigned long x;
510
511 asm volatile("lbz %0,%1(13)"
512 : "=r" (x)
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800513 : "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000514 return x;
Paul Mackerras105988c2009-06-17 21:50:04 +1000515}
516
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800517static inline void set_irq_work_pending_flag(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000518{
519 asm volatile("stb %0,%1(13)" : :
520 "r" (1),
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
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800524static inline void clear_irq_work_pending(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000525{
526 asm volatile("stb %0,%1(13)" : :
527 "r" (0),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800528 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000529}
530
531#else /* 32-bit */
532
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800533DEFINE_PER_CPU(u8, irq_work_pending);
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000534
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800535#define set_irq_work_pending_flag() __get_cpu_var(irq_work_pending) = 1
536#define test_irq_work_pending() __get_cpu_var(irq_work_pending)
537#define clear_irq_work_pending() __get_cpu_var(irq_work_pending) = 0
Paul Mackerras105988c2009-06-17 21:50:04 +1000538
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000539#endif /* 32 vs 64 bit */
540
Peter Zijlstra4f8b50b2011-06-27 17:22:43 +0200541void arch_irq_work_raise(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000542{
543 preempt_disable();
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800544 set_irq_work_pending_flag();
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000545 set_dec(1);
546 preempt_enable();
547}
548
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800549#else /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000550
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800551#define test_irq_work_pending() 0
552#define clear_irq_work_pending()
Paul Mackerras105988c2009-06-17 21:50:04 +1000553
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800554#endif /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/*
557 * For iSeries shared processors, we have to let the hypervisor
558 * set the hardware decrementer. We set a virtual decrementer
559 * in the lppaca and call the hypervisor if the virtual
560 * decrementer is less than the current value in the hardware
561 * decrementer. (almost always the new decrementer value will
562 * be greater than the current hardware decementer so the hypervisor
563 * call will not be needed)
564 */
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566/*
567 * timer_interrupt - gets called when the decrementer overflows,
568 * with interrupts disabled.
569 */
Kumar Galac7aeffc2005-09-19 09:30:27 -0500570void timer_interrupt(struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
David Howells7d12e782006-10-05 14:55:46 +0100572 struct pt_regs *old_regs;
Milton Miller6e6b44e2007-12-14 15:52:15 +1100573 struct decrementer_clock *decrementer = &__get_cpu_var(decrementers);
574 struct clock_event_device *evt = &decrementer->event;
Paul Mackerrasd9680142007-10-09 09:59:17 +1000575 u64 now;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000576
Benjamin Herrenschmidt963e5d32011-03-29 14:51:10 +1100577 /* Ensure a positive value is written to the decrementer, or else
578 * some CPUs will continue to take decrementer exceptions.
579 */
580 set_dec(DECREMENTER_MAX);
581
582 /* Some implementations of hotplug will get timer interrupts while
583 * offline, just ignore these
584 */
585 if (!cpu_online(smp_processor_id()))
586 return;
587
Anton Blanchard6795b852009-10-26 18:49:14 +0000588 trace_timer_interrupt_entry(regs);
589
Anton Blanchard89713ed2010-01-31 20:34:06 +0000590 __get_cpu_var(irq_stat).timer_irqs++;
591
Paul Mackerrasb0d278b2010-08-10 20:38:23 +0000592#if defined(CONFIG_PPC32) && defined(CONFIG_PMAC)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000593 if (atomic_read(&ppc_n_lost_interrupts) != 0)
594 do_IRQ(regs);
595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
David Howells7d12e782006-10-05 14:55:46 +0100597 old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 irq_enter();
599
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800600 if (test_irq_work_pending()) {
601 clear_irq_work_pending();
602 irq_work_run();
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000603 }
604
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000605#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell501b6d22006-11-21 15:10:20 +1100606 if (firmware_has_feature(FW_FEATURE_ISERIES))
607 get_lppaca()->int_dword.fields.decr_int = 0;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000608#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Paul Mackerrasb0d278b2010-08-10 20:38:23 +0000610 now = get_tb_or_rtc();
611 if (now >= decrementer->next_tb) {
612 decrementer->next_tb = ~(u64)0;
613 if (evt->event_handler)
614 evt->event_handler(evt);
615 } else {
616 now = decrementer->next_tb - now;
617 if (now <= DECREMENTER_MAX)
618 set_dec((int)now);
619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621#ifdef CONFIG_PPC_ISERIES
Stephen Rothwell501b6d22006-11-21 15:10:20 +1100622 if (firmware_has_feature(FW_FEATURE_ISERIES) && hvlpevent_is_pending())
Olaf Hering35a84c22006-10-07 22:08:26 +1000623 process_hvlpevents();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624#endif
625
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000626#ifdef CONFIG_PPC64
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000627 /* collect purr register values often, for accurate calculations */
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000628 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array);
630 cu->current_tb = mfspr(SPRN_PURR);
631 }
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000632#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 irq_exit();
David Howells7d12e782006-10-05 14:55:46 +0100635 set_irq_regs(old_regs);
Anton Blanchard6795b852009-10-26 18:49:14 +0000636
637 trace_timer_interrupt_exit(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Scott Wood7ac5dde2007-12-13 04:35:19 +1100640#ifdef CONFIG_SUSPEND
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000641static void generic_suspend_disable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100642{
Scott Wood7ac5dde2007-12-13 04:35:19 +1100643 /* Disable the decrementer, so that it doesn't interfere
644 * with suspending.
645 */
646
647 set_dec(0x7fffffff);
648 local_irq_disable();
649 set_dec(0x7fffffff);
650}
651
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000652static void generic_suspend_enable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100653{
Scott Wood7ac5dde2007-12-13 04:35:19 +1100654 local_irq_enable();
Scott Wood7ac5dde2007-12-13 04:35:19 +1100655}
656
657/* Overrides the weak version in kernel/power/main.c */
658void arch_suspend_disable_irqs(void)
659{
660 if (ppc_md.suspend_disable_irqs)
661 ppc_md.suspend_disable_irqs();
662 generic_suspend_disable_irqs();
663}
664
665/* Overrides the weak version in kernel/power/main.c */
666void arch_suspend_enable_irqs(void)
667{
668 generic_suspend_enable_irqs();
669 if (ppc_md.suspend_enable_irqs)
670 ppc_md.suspend_enable_irqs();
671}
672#endif
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/*
675 * Scheduler clock - returns current time in nanosec units.
676 *
677 * Note: mulhdu(a, b) (multiply high double unsigned) returns
678 * the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b
679 * are 64-bit unsigned numbers.
680 */
681unsigned long long sched_clock(void)
682{
Paul Mackerras96c44502005-10-23 17:14:56 +1000683 if (__USE_RTC())
684 return get_rtc();
Tony Breedsfc9069f2007-07-04 14:04:31 +1000685 return mulhdu(get_tb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000688static int __init get_freq(char *name, int cells, unsigned long *val)
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000689{
690 struct device_node *cpu;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000691 const unsigned int *fp;
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000692 int found = 0;
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000693
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000694 /* The cpu node should have timebase and clock frequency properties */
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000695 cpu = of_find_node_by_type(NULL, "cpu");
696
Olaf Heringd8a81882006-02-04 10:34:56 +0100697 if (cpu) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000698 fp = of_get_property(cpu, name, NULL);
Olaf Heringd8a81882006-02-04 10:34:56 +0100699 if (fp) {
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000700 found = 1;
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000701 *val = of_read_ulong(fp, cells);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000702 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000703
704 of_node_put(cpu);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000705 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000706
707 return found;
708}
709
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000710/* should become __cpuinit when secondary_cpu_time_init also is */
711void start_cpu_decrementer(void)
712{
713#if defined(CONFIG_BOOKE) || defined(CONFIG_40x)
714 /* Clear any pending timer interrupts */
715 mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_DIS | TSR_FIS);
716
717 /* Enable decrementer interrupt */
718 mtspr(SPRN_TCR, TCR_DIE);
719#endif /* defined(CONFIG_BOOKE) || defined(CONFIG_40x) */
720}
721
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000722void __init generic_calibrate_decr(void)
723{
724 ppc_tb_freq = DEFAULT_TB_FREQ; /* hardcoded default */
725
726 if (!get_freq("ibm,extended-timebase-frequency", 2, &ppc_tb_freq) &&
727 !get_freq("timebase-frequency", 1, &ppc_tb_freq)) {
728
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000729 printk(KERN_ERR "WARNING: Estimating decrementer frequency "
730 "(not found)\n");
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000731 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000732
733 ppc_proc_freq = DEFAULT_PROC_FREQ; /* hardcoded default */
734
735 if (!get_freq("ibm,extended-clock-frequency", 2, &ppc_proc_freq) &&
736 !get_freq("clock-frequency", 1, &ppc_proc_freq)) {
737
738 printk(KERN_ERR "WARNING: Estimating processor frequency "
739 "(not found)\n");
740 }
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000741}
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000742
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000743int update_persistent_clock(struct timespec now)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000744{
745 struct rtc_time tm;
746
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000747 if (!ppc_md.set_rtc_time)
748 return 0;
749
750 to_tm(now.tv_sec + 1 + timezone_offset, &tm);
751 tm.tm_year -= 1900;
752 tm.tm_mon -= 1;
753
754 return ppc_md.set_rtc_time(&tm);
755}
756
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000757static void __read_persistent_clock(struct timespec *ts)
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000758{
759 struct rtc_time tm;
760 static int first = 1;
761
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200762 ts->tv_nsec = 0;
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000763 /* XXX this is a litle fragile but will work okay in the short term */
764 if (first) {
765 first = 0;
766 if (ppc_md.time_init)
767 timezone_offset = ppc_md.time_init();
768
769 /* get_boot_time() isn't guaranteed to be safe to call late */
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200770 if (ppc_md.get_boot_time) {
771 ts->tv_sec = ppc_md.get_boot_time() - timezone_offset;
772 return;
773 }
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000774 }
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200775 if (!ppc_md.get_rtc_time) {
776 ts->tv_sec = 0;
777 return;
778 }
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000779 ppc_md.get_rtc_time(&tm);
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000780
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200781 ts->tv_sec = mktime(tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
782 tm.tm_hour, tm.tm_min, tm.tm_sec);
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000783}
784
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000785void read_persistent_clock(struct timespec *ts)
786{
787 __read_persistent_clock(ts);
788
789 /* Sanitize it in case real time clock is set below EPOCH */
790 if (ts->tv_sec < 0) {
791 ts->tv_sec = 0;
792 ts->tv_nsec = 0;
793 }
794
795}
796
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000797/* clocksource code */
Magnus Damm8e196082009-04-21 12:24:00 -0700798static cycle_t rtc_read(struct clocksource *cs)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000799{
800 return (cycle_t)get_rtc();
801}
802
Magnus Damm8e196082009-04-21 12:24:00 -0700803static cycle_t timebase_read(struct clocksource *cs)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000804{
805 return (cycle_t)get_tb();
806}
807
John Stultz76158562010-07-13 17:56:23 -0700808void update_vsyscall(struct timespec *wall_time, struct timespec *wtm,
809 struct clocksource *clock, u32 mult)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000810{
John Stultzb0797b62010-07-13 17:56:21 -0700811 u64 new_tb_to_xs, new_stamp_xsec;
Paul Mackerras0e469db2010-06-20 19:03:08 +0000812 u32 frac_sec;
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000813
814 if (clock != &clocksource_timebase)
815 return;
816
817 /* Make userspace gettimeofday spin until we're done. */
818 ++vdso_data->tb_update_count;
819 smp_mb();
820
Anton Blanchard11b86332011-11-23 20:07:19 +0000821 /* 19342813113834067 ~= 2^(20+64) / 1e9 */
822 new_tb_to_xs = (u64) mult * (19342813113834067ULL >> clock->shift);
John Stultz06d518e2010-07-13 17:56:22 -0700823 new_stamp_xsec = (u64) wall_time->tv_nsec * XSEC_PER_SEC;
John Stultzb0797b62010-07-13 17:56:21 -0700824 do_div(new_stamp_xsec, 1000000000);
John Stultz06d518e2010-07-13 17:56:22 -0700825 new_stamp_xsec += (u64) wall_time->tv_sec * XSEC_PER_SEC;
John Stultzb0797b62010-07-13 17:56:21 -0700826
Paul Mackerras0e469db2010-06-20 19:03:08 +0000827 BUG_ON(wall_time->tv_nsec >= NSEC_PER_SEC);
828 /* this is tv_nsec / 1e9 as a 0.32 fraction */
829 frac_sec = ((u64) wall_time->tv_nsec * 18446744073ULL) >> 32;
Thomas Gleixner47916be2010-07-28 21:49:22 +0200830
John Stultzb0797b62010-07-13 17:56:21 -0700831 /*
832 * tb_update_count is used to allow the userspace gettimeofday code
833 * to assure itself that it sees a consistent view of the tb_to_xs and
834 * stamp_xsec variables. It reads the tb_update_count, then reads
835 * tb_to_xs and stamp_xsec and then reads tb_update_count again. If
836 * the two values of tb_update_count match and are even then the
837 * tb_to_xs and stamp_xsec values are consistent. If not, then it
838 * loops back and reads them again until this criteria is met.
839 * We expect the caller to have done the first increment of
840 * vdso_data->tb_update_count already.
841 */
842 vdso_data->tb_orig_stamp = clock->cycle_last;
843 vdso_data->stamp_xsec = new_stamp_xsec;
844 vdso_data->tb_to_xs = new_tb_to_xs;
John Stultz76158562010-07-13 17:56:23 -0700845 vdso_data->wtom_clock_sec = wtm->tv_sec;
846 vdso_data->wtom_clock_nsec = wtm->tv_nsec;
John Stultz06d518e2010-07-13 17:56:22 -0700847 vdso_data->stamp_xtime = *wall_time;
Thomas Gleixner47916be2010-07-28 21:49:22 +0200848 vdso_data->stamp_sec_fraction = frac_sec;
John Stultzb0797b62010-07-13 17:56:21 -0700849 smp_wmb();
850 ++(vdso_data->tb_update_count);
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000851}
852
853void update_vsyscall_tz(void)
854{
855 /* Make userspace gettimeofday spin until we're done. */
856 ++vdso_data->tb_update_count;
857 smp_mb();
858 vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
859 vdso_data->tz_dsttime = sys_tz.tz_dsttime;
860 smp_mb();
861 ++vdso_data->tb_update_count;
862}
863
Michael Ellerman1c21a292008-05-08 14:27:19 +1000864static void __init clocksource_init(void)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000865{
866 struct clocksource *clock;
867
868 if (__USE_RTC())
869 clock = &clocksource_rtc;
870 else
871 clock = &clocksource_timebase;
872
Anton Blanchard11b86332011-11-23 20:07:19 +0000873 if (clocksource_register_hz(clock, tb_ticks_per_sec)) {
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000874 printk(KERN_ERR "clocksource: %s is already registered\n",
875 clock->name);
876 return;
877 }
878
879 printk(KERN_INFO "clocksource: %s mult[%x] shift[%d] registered\n",
880 clock->name, clock->mult, clock->shift);
881}
882
Anton Blanchard37fb9a02011-11-23 20:07:17 +0000883void decrementer_check_overflow(void)
884{
885 u64 now = get_tb_or_rtc();
886 struct decrementer_clock *decrementer = &__get_cpu_var(decrementers);
887
888 if (now >= decrementer->next_tb)
889 set_dec(1);
890}
891
Tony Breedsd831d0b2007-09-21 13:26:03 +1000892static int decrementer_set_next_event(unsigned long evt,
893 struct clock_event_device *dev)
894{
Milton Miller6e6b44e2007-12-14 15:52:15 +1100895 __get_cpu_var(decrementers).next_tb = get_tb_or_rtc() + evt;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000896 set_dec(evt);
897 return 0;
898}
899
900static void decrementer_set_mode(enum clock_event_mode mode,
901 struct clock_event_device *dev)
902{
903 if (mode != CLOCK_EVT_MODE_ONESHOT)
904 decrementer_set_next_event(DECREMENTER_MAX, dev);
905}
906
907static void register_decrementer_clockevent(int cpu)
908{
Milton Miller6e6b44e2007-12-14 15:52:15 +1100909 struct clock_event_device *dec = &per_cpu(decrementers, cpu).event;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000910
911 *dec = decrementer_clockevent;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030912 dec->cpumask = cpumask_of(cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000913
Anton Blanchardb919ee82010-02-07 19:26:29 +0000914 printk_once(KERN_DEBUG "clockevent: %s mult[%x] shift[%d] cpu[%d]\n",
915 dec->name, dec->mult, dec->shift, cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000916
917 clockevents_register_device(dec);
918}
919
Milton Millerc4818872007-12-14 15:52:10 +1100920static void __init init_decrementer_clockevent(void)
Tony Breedsd831d0b2007-09-21 13:26:03 +1000921{
922 int cpu = smp_processor_id();
923
Anton Blanchardd8afc6f2011-11-23 20:07:18 +0000924 clockevents_calc_mult_shift(&decrementer_clockevent, ppc_tb_freq, 4);
925
Tony Breedsd831d0b2007-09-21 13:26:03 +1000926 decrementer_clockevent.max_delta_ns =
927 clockevent_delta2ns(DECREMENTER_MAX, &decrementer_clockevent);
Paul Mackerras43875cc2007-10-31 22:25:35 +1100928 decrementer_clockevent.min_delta_ns =
929 clockevent_delta2ns(2, &decrementer_clockevent);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000930
931 register_decrementer_clockevent(cpu);
932}
933
934void secondary_cpu_time_init(void)
935{
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000936 /* Start the decrementer on CPUs that have manual control
937 * such as BookE
938 */
939 start_cpu_decrementer();
940
Tony Breedsd831d0b2007-09-21 13:26:03 +1000941 /* FIME: Should make unrelatred change to move snapshot_timebase
942 * call here ! */
943 register_decrementer_clockevent(smp_processor_id());
944}
945
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000946/* This function is only called on the boot processor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947void __init time_init(void)
948{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct div_result res;
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000950 u64 scale;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000951 unsigned shift;
952
Paul Mackerras96c44502005-10-23 17:14:56 +1000953 if (__USE_RTC()) {
954 /* 601 processor: dec counts down by 128 every 128ns */
955 ppc_tb_freq = 1000000000;
Paul Mackerras96c44502005-10-23 17:14:56 +1000956 } else {
957 /* Normal PowerPC with timebase register */
958 ppc_md.calibrate_decr();
Olof Johansson224ad802006-04-12 15:20:27 -0500959 printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n",
Paul Mackerras96c44502005-10-23 17:14:56 +1000960 ppc_tb_freq / 1000000, ppc_tb_freq % 1000000);
Olof Johansson224ad802006-04-12 15:20:27 -0500961 printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n",
Paul Mackerras96c44502005-10-23 17:14:56 +1000962 ppc_proc_freq / 1000000, ppc_proc_freq % 1000000);
Paul Mackerras96c44502005-10-23 17:14:56 +1000963 }
Paul Mackerras374e99d2005-10-20 21:04:51 +1000964
965 tb_ticks_per_jiffy = ppc_tb_freq / HZ;
Paul Mackerras092b8f32006-02-20 10:38:56 +1100966 tb_ticks_per_sec = ppc_tb_freq;
Paul Mackerras374e99d2005-10-20 21:04:51 +1000967 tb_ticks_per_usec = ppc_tb_freq / 1000000;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100968 calc_cputime_factors();
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200969 setup_cputime_one_jiffy();
Paul Mackerras092b8f32006-02-20 10:38:56 +1100970
971 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 * Compute scale factor for sched_clock.
973 * The calibrate_decr() function has set tb_ticks_per_sec,
974 * which is the timebase frequency.
975 * We compute 1e9 * 2^64 / tb_ticks_per_sec and interpret
976 * the 128-bit result as a 64.64 fixed-point number.
977 * We then shift that number right until it is less than 1.0,
978 * giving us the scale factor and shift count to use in
979 * sched_clock().
980 */
981 div128_by_32(1000000000, 0, tb_ticks_per_sec, &res);
982 scale = res.result_low;
983 for (shift = 0; res.result_high != 0; ++shift) {
984 scale = (scale >> 1) | (res.result_high << 63);
985 res.result_high >>= 1;
986 }
987 tb_to_ns_scale = scale;
988 tb_to_ns_shift = shift;
Tony Breedsfc9069f2007-07-04 14:04:31 +1000989 /* Save the current timebase to pretty up CONFIG_PRINTK_TIME */
Benjamin Herrenschmidtc27da3392007-09-19 14:21:56 +1000990 boot_tb = get_tb_or_rtc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Paul Mackerras092b8f32006-02-20 10:38:56 +1100992 /* If platform provided a timezone (pmac), we correct the time */
993 if (timezone_offset) {
994 sys_tz.tz_minuteswest = -timezone_offset / 60;
995 sys_tz.tz_dsttime = 0;
Paul Mackerras092b8f32006-02-20 10:38:56 +1100996 }
997
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100998 vdso_data->tb_update_count = 0;
999 vdso_data->tb_ticks_per_sec = tb_ticks_per_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +10001001 /* Start the decrementer on CPUs that have manual control
1002 * such as BookE
1003 */
1004 start_cpu_decrementer();
1005
Tony Breeds4a4cfe32007-09-22 07:35:52 +10001006 /* Register the clocksource, if we're not running on iSeries */
1007 if (!firmware_has_feature(FW_FEATURE_ISERIES))
1008 clocksource_init();
1009
Tony Breedsd831d0b2007-09-21 13:26:03 +10001010 init_decrementer_clockevent();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014#define FEBRUARY 2
1015#define STARTOFTIME 1970
1016#define SECDAY 86400L
1017#define SECYR (SECDAY * 365)
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001018#define leapyear(year) ((year) % 4 == 0 && \
1019 ((year) % 100 != 0 || (year) % 400 == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020#define days_in_year(a) (leapyear(a) ? 366 : 365)
1021#define days_in_month(a) (month_days[(a) - 1])
1022
1023static int month_days[12] = {
1024 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
1025};
1026
1027/*
1028 * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
1029 */
1030void GregorianDay(struct rtc_time * tm)
1031{
1032 int leapsToDate;
1033 int lastYear;
1034 int day;
1035 int MonthOffset[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
1036
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001037 lastYear = tm->tm_year - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 /*
1040 * Number of leap corrections to apply up to end of last year
1041 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001042 leapsToDate = lastYear / 4 - lastYear / 100 + lastYear / 400;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /*
1045 * This year is a leap year if it is divisible by 4 except when it is
1046 * divisible by 100 unless it is divisible by 400
1047 *
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001048 * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001050 day = tm->tm_mon > 2 && leapyear(tm->tm_year);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] +
1053 tm->tm_mday;
1054
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001055 tm->tm_wday = day % 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
1058void to_tm(int tim, struct rtc_time * tm)
1059{
1060 register int i;
1061 register long hms, day;
1062
1063 day = tim / SECDAY;
1064 hms = tim % SECDAY;
1065
1066 /* Hours, minutes, seconds are easy */
1067 tm->tm_hour = hms / 3600;
1068 tm->tm_min = (hms % 3600) / 60;
1069 tm->tm_sec = (hms % 3600) % 60;
1070
1071 /* Number of years in days */
1072 for (i = STARTOFTIME; day >= days_in_year(i); i++)
1073 day -= days_in_year(i);
1074 tm->tm_year = i;
1075
1076 /* Number of months in days left */
1077 if (leapyear(tm->tm_year))
1078 days_in_month(FEBRUARY) = 29;
1079 for (i = 1; day >= days_in_month(i); i++)
1080 day -= days_in_month(i);
1081 days_in_month(FEBRUARY) = 28;
1082 tm->tm_mon = i;
1083
1084 /* Days are what is left over (+1) from all that. */
1085 tm->tm_mday = day + 1;
1086
1087 /*
1088 * Determine the day of week
1089 */
1090 GregorianDay(tm);
1091}
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/*
1094 * Divide a 128-bit dividend by a 32-bit divisor, leaving a 128 bit
1095 * result.
1096 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001097void div128_by_32(u64 dividend_high, u64 dividend_low,
1098 unsigned divisor, struct div_result *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001100 unsigned long a, b, c, d;
1101 unsigned long w, x, y, z;
1102 u64 ra, rb, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 a = dividend_high >> 32;
1105 b = dividend_high & 0xffffffff;
1106 c = dividend_low >> 32;
1107 d = dividend_low & 0xffffffff;
1108
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001109 w = a / divisor;
1110 ra = ((u64)(a - (w * divisor)) << 32) + b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001112 rb = ((u64) do_div(ra, divisor) << 32) + c;
1113 x = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001115 rc = ((u64) do_div(rb, divisor) << 32) + d;
1116 y = rb;
1117
1118 do_div(rc, divisor);
1119 z = rc;
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001120
1121 dr->result_high = ((u64)w << 32) + x;
1122 dr->result_low = ((u64)y << 32) + z;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124}
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001125
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +00001126/* We don't need to calibrate delay, we use the CPU timebase for that */
1127void calibrate_delay(void)
1128{
1129 /* Some generic code (such as spinlock debug) use loops_per_jiffy
1130 * as the number of __delay(1) in a jiffy, so make it so
1131 */
1132 loops_per_jiffy = tb_ticks_per_jiffy;
1133}
1134
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001135static int __init rtc_init(void)
1136{
1137 struct platform_device *pdev;
1138
1139 if (!ppc_md.get_rtc_time)
1140 return -ENODEV;
1141
1142 pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
1143 if (IS_ERR(pdev))
1144 return PTR_ERR(pdev);
1145
1146 return 0;
1147}
1148
1149module_init(rtc_init);