Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/errno.h> |
Paul Gortmaker | 4b16f8e | 2011-07-22 18:24:23 -0400 | [diff] [blame] | 36 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #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 Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 50 | #include <linux/percpu.h> |
| 51 | #include <linux/rtc.h> |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 52 | #include <linux/jiffies.h> |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 53 | #include <linux/posix-timers.h> |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 54 | #include <linux/irq.h> |
Benjamin Herrenschmidt | 177996e | 2009-06-09 21:12:00 +0000 | [diff] [blame] | 55 | #include <linux/delay.h> |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 56 | #include <linux/irq_work.h> |
Anton Blanchard | 6795b85 | 2009-10-26 18:49:14 +0000 | [diff] [blame] | 57 | #include <asm/trace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #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 Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 64 | #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 Mackerras | 2249ca9 | 2005-11-07 13:18:13 +1100 | [diff] [blame] | 69 | #include <asm/smp.h> |
Benjamin Herrenschmidt | a7f290d | 2005-11-11 21:15:21 +1100 | [diff] [blame] | 70 | #include <asm/vdso_datapage.h> |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 71 | #include <asm/firmware.h> |
Michael Neuling | 06b8e87 | 2008-02-06 01:36:12 -0800 | [diff] [blame] | 72 | #include <asm/cputime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #ifdef CONFIG_PPC_ISERIES |
Kelly Daly | 8875ccf | 2005-11-02 14:13:34 +1100 | [diff] [blame] | 74 | #include <asm/iseries/it_lp_queue.h> |
Kelly Daly | 8021b8a | 2005-11-02 11:41:12 +1100 | [diff] [blame] | 75 | #include <asm/iseries/hv_call_xm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 78 | /* powerpc clocksource/clockevent code */ |
| 79 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 80 | #include <linux/clockchips.h> |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 81 | #include <linux/clocksource.h> |
| 82 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 83 | static cycle_t rtc_read(struct clocksource *); |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 84 | static struct clocksource clocksource_rtc = { |
| 85 | .name = "rtc", |
| 86 | .rating = 400, |
| 87 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 88 | .mask = CLOCKSOURCE_MASK(64), |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 89 | .read = rtc_read, |
| 90 | }; |
| 91 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 92 | static cycle_t timebase_read(struct clocksource *); |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 93 | static struct clocksource clocksource_timebase = { |
| 94 | .name = "timebase", |
| 95 | .rating = 400, |
| 96 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 97 | .mask = CLOCKSOURCE_MASK(64), |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 98 | .read = timebase_read, |
| 99 | }; |
| 100 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 101 | #define DECREMENTER_MAX 0x7fffffff |
| 102 | |
| 103 | static int decrementer_set_next_event(unsigned long evt, |
| 104 | struct clock_event_device *dev); |
| 105 | static void decrementer_set_mode(enum clock_event_mode mode, |
| 106 | struct clock_event_device *dev); |
| 107 | |
| 108 | static struct clock_event_device decrementer_clockevent = { |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 109 | .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 Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 115 | }; |
| 116 | |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame^] | 117 | DEFINE_PER_CPU(u64, decrementers_next_tb); |
| 118 | static DEFINE_PER_CPU(struct clock_event_device, decrementers); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #ifdef CONFIG_PPC_ISERIES |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 121 | static unsigned long __initdata iSeries_recal_titan; |
| 122 | static signed long __initdata iSeries_recal_tb; |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 123 | |
| 124 | /* Forward declaration is only needed for iSereis compiles */ |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 125 | static void __init clocksource_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #endif |
| 127 | |
| 128 | #define XSEC_PER_SEC (1024*1024) |
| 129 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 130 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | unsigned long tb_ticks_per_jiffy; |
| 138 | unsigned long tb_ticks_per_usec = 100; /* sane default */ |
| 139 | EXPORT_SYMBOL(tb_ticks_per_usec); |
| 140 | unsigned long tb_ticks_per_sec; |
Paul Mackerras | 2cf82c0 | 2006-02-27 15:41:47 +1100 | [diff] [blame] | 141 | EXPORT_SYMBOL(tb_ticks_per_sec); /* for cputime_t conversions */ |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | DEFINE_SPINLOCK(rtc_lock); |
Benjamin Herrenschmidt | 6ae3db1 | 2005-06-27 14:36:35 -0700 | [diff] [blame] | 144 | EXPORT_SYMBOL_GPL(rtc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Tony Breeds | fc9069f | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 146 | static u64 tb_to_ns_scale __read_mostly; |
| 147 | static unsigned tb_to_ns_shift __read_mostly; |
Heiko Schocher | 364a124 | 2010-11-22 21:30:33 +0000 | [diff] [blame] | 148 | static u64 boot_tb __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | extern struct timezone sys_tz; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 151 | static long timezone_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 153 | unsigned long ppc_proc_freq; |
Timur Tabi | 55ec2fc | 2010-09-20 11:23:41 -0500 | [diff] [blame] | 154 | EXPORT_SYMBOL_GPL(ppc_proc_freq); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 155 | unsigned long ppc_tb_freq; |
Timur Tabi | 55ec2fc | 2010-09-20 11:23:41 -0500 | [diff] [blame] | 156 | EXPORT_SYMBOL_GPL(ppc_tb_freq); |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 157 | |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 158 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING |
| 159 | /* |
| 160 | * Factors for converting from cputime_t (timebase ticks) to |
| 161 | * jiffies, milliseconds, seconds, and clock_t (1/USER_HZ seconds). |
| 162 | * These are all stored as 0.64 fixed-point binary fractions. |
| 163 | */ |
| 164 | u64 __cputime_jiffies_factor; |
Paul Mackerras | 2cf82c0 | 2006-02-27 15:41:47 +1100 | [diff] [blame] | 165 | EXPORT_SYMBOL(__cputime_jiffies_factor); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 166 | u64 __cputime_msec_factor; |
Paul Mackerras | 2cf82c0 | 2006-02-27 15:41:47 +1100 | [diff] [blame] | 167 | EXPORT_SYMBOL(__cputime_msec_factor); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 168 | u64 __cputime_sec_factor; |
Paul Mackerras | 2cf82c0 | 2006-02-27 15:41:47 +1100 | [diff] [blame] | 169 | EXPORT_SYMBOL(__cputime_sec_factor); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 170 | u64 __cputime_clockt_factor; |
Paul Mackerras | 2cf82c0 | 2006-02-27 15:41:47 +1100 | [diff] [blame] | 171 | EXPORT_SYMBOL(__cputime_clockt_factor); |
Michael Neuling | 06b8e87 | 2008-02-06 01:36:12 -0800 | [diff] [blame] | 172 | DEFINE_PER_CPU(unsigned long, cputime_last_delta); |
| 173 | DEFINE_PER_CPU(unsigned long, cputime_scaled_last_delta); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 174 | |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 175 | cputime_t cputime_one_jiffy; |
| 176 | |
Paul Mackerras | 872e439 | 2010-08-31 01:59:53 +0000 | [diff] [blame] | 177 | void (*dtl_consumer)(struct dtl_entry *, u64); |
| 178 | |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 179 | static 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; |
| 185 | div128_by_32(1000, 0, tb_ticks_per_sec, &res); |
| 186 | __cputime_msec_factor = res.result_low; |
| 187 | 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 Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 194 | * 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 Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 196 | */ |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 197 | static u64 read_spurr(u64 tb) |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 198 | { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 199 | if (cpu_has_feature(CPU_FTR_SPURR)) |
| 200 | return mfspr(SPRN_SPURR); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 201 | if (cpu_has_feature(CPU_FTR_PURR)) |
| 202 | return mfspr(SPRN_PURR); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 203 | 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 | */ |
| 212 | static u64 scan_dispatch_log(u64 stop_tb) |
| 213 | { |
Paul Mackerras | 872e439 | 2010-08-31 01:59:53 +0000 | [diff] [blame] | 214 | u64 i = local_paca->dtl_ridx; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 215 | 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 Blanchard | 84ffae5 | 2011-04-07 21:44:21 +0000 | [diff] [blame] | 222 | if (!dtl) |
| 223 | return 0; |
| 224 | |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 225 | if (i == vpa->dtl_idx) |
| 226 | return 0; |
| 227 | while (i < vpa->dtl_idx) { |
Paul Mackerras | 872e439 | 2010-08-31 01:59:53 +0000 | [diff] [blame] | 228 | if (dtl_consumer) |
| 229 | dtl_consumer(dtl, i); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 230 | 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 Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 254 | * Accumulate stolen time by scanning the dispatch trace log. |
| 255 | * Called on entry from user mode. |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 256 | */ |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 257 | void accumulate_stolen_time(void) |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 258 | { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 259 | u64 sst, ust; |
| 260 | |
Tejun Heo | b18ae08 | 2011-01-03 03:49:25 +0000 | [diff] [blame] | 261 | u8 save_soft_enabled = local_paca->soft_enabled; |
| 262 | u8 save_hard_enabled = local_paca->hard_enabled; |
| 263 | |
| 264 | /* We are called early in the exception entry, before |
| 265 | * soft/hard_enabled are sync'ed to the expected state |
| 266 | * for the exception. We are hard disabled but the PACA |
| 267 | * needs to reflect that so various debug stuff doesn't |
| 268 | * complain |
| 269 | */ |
| 270 | local_paca->soft_enabled = 0; |
| 271 | local_paca->hard_enabled = 0; |
| 272 | |
| 273 | sst = scan_dispatch_log(local_paca->starttime_user); |
| 274 | ust = scan_dispatch_log(local_paca->starttime); |
| 275 | local_paca->system_time -= sst; |
| 276 | local_paca->user_time -= ust; |
| 277 | local_paca->stolen_time += ust + sst; |
| 278 | |
| 279 | local_paca->soft_enabled = save_soft_enabled; |
| 280 | local_paca->hard_enabled = save_hard_enabled; |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 283 | static inline u64 calculate_stolen_time(u64 stop_tb) |
| 284 | { |
| 285 | u64 stolen = 0; |
| 286 | |
| 287 | if (get_paca()->dtl_ridx != get_paca()->lppaca_ptr->dtl_idx) { |
| 288 | stolen = scan_dispatch_log(stop_tb); |
| 289 | get_paca()->system_time -= stolen; |
| 290 | } |
| 291 | |
| 292 | stolen += get_paca()->stolen_time; |
| 293 | get_paca()->stolen_time = 0; |
| 294 | return stolen; |
| 295 | } |
| 296 | |
| 297 | #else /* CONFIG_PPC_SPLPAR */ |
| 298 | static inline u64 calculate_stolen_time(u64 stop_tb) |
| 299 | { |
| 300 | return 0; |
| 301 | } |
| 302 | |
| 303 | #endif /* CONFIG_PPC_SPLPAR */ |
| 304 | |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 305 | /* |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 306 | * Account time for a transition between system, hard irq |
| 307 | * or soft irq state. |
| 308 | */ |
| 309 | void account_system_vtime(struct task_struct *tsk) |
| 310 | { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 311 | u64 now, nowscaled, delta, deltascaled; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 312 | unsigned long flags; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 313 | u64 stolen, udelta, sys_scaled, user_scaled; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 314 | |
| 315 | local_irq_save(flags); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 316 | now = mftb(); |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 317 | nowscaled = read_spurr(now); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 318 | get_paca()->system_time += now - get_paca()->starttime; |
| 319 | get_paca()->starttime = now; |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 320 | deltascaled = nowscaled - get_paca()->startspurr; |
| 321 | get_paca()->startspurr = nowscaled; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 322 | |
| 323 | stolen = calculate_stolen_time(now); |
| 324 | |
| 325 | delta = get_paca()->system_time; |
| 326 | get_paca()->system_time = 0; |
| 327 | udelta = get_paca()->user_time - get_paca()->utime_sspurr; |
| 328 | get_paca()->utime_sspurr = get_paca()->user_time; |
| 329 | |
| 330 | /* |
| 331 | * Because we don't read the SPURR on every kernel entry/exit, |
| 332 | * deltascaled includes both user and system SPURR ticks. |
| 333 | * Apportion these ticks to system SPURR ticks and user |
| 334 | * SPURR ticks in the same ratio as the system time (delta) |
| 335 | * and user time (udelta) values obtained from the timebase |
| 336 | * over the same interval. The system ticks get accounted here; |
| 337 | * the user ticks get saved up in paca->user_time_scaled to be |
| 338 | * used by account_process_tick. |
| 339 | */ |
| 340 | sys_scaled = delta; |
| 341 | user_scaled = udelta; |
| 342 | if (deltascaled != delta + udelta) { |
| 343 | if (udelta) { |
| 344 | sys_scaled = deltascaled * delta / (delta + udelta); |
| 345 | user_scaled = deltascaled - sys_scaled; |
| 346 | } else { |
| 347 | sys_scaled = deltascaled; |
| 348 | } |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 349 | } |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 350 | get_paca()->user_time_scaled += user_scaled; |
| 351 | |
Anton Blanchard | ad5d1c8 | 2011-03-20 15:28:03 +0000 | [diff] [blame] | 352 | if (in_interrupt() || idle_task(smp_processor_id()) != tsk) { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 353 | account_system_time(tsk, 0, delta, sys_scaled); |
| 354 | if (stolen) |
| 355 | account_steal_time(stolen); |
| 356 | } else { |
| 357 | account_idle_time(delta + stolen); |
| 358 | } |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 359 | local_irq_restore(flags); |
| 360 | } |
Alexander Graf | 4ab79aa | 2009-10-30 05:47:19 +0000 | [diff] [blame] | 361 | EXPORT_SYMBOL_GPL(account_system_vtime); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 362 | |
| 363 | /* |
| 364 | * Transfer the user and system times accumulated in the paca |
| 365 | * by the exception entry and exit code to the generic process |
| 366 | * user and system time records. |
| 367 | * Must be called with interrupts disabled. |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 368 | * Assumes that account_system_vtime() has been called recently |
| 369 | * (i.e. since the last entry from usermode) so that |
| 370 | * get_paca()->user_time_scaled is up to date. |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 371 | */ |
Paul Mackerras | fa13a5a | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 372 | void account_process_tick(struct task_struct *tsk, int user_tick) |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 373 | { |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 374 | cputime_t utime, utimescaled; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 375 | |
| 376 | utime = get_paca()->user_time; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 377 | utimescaled = get_paca()->user_time_scaled; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 378 | get_paca()->user_time = 0; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 379 | get_paca()->user_time_scaled = 0; |
| 380 | get_paca()->utime_sspurr = 0; |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 381 | account_user_time(tsk, utime, utimescaled); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 382 | } |
| 383 | |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 384 | #else /* ! CONFIG_VIRT_CPU_ACCOUNTING */ |
| 385 | #define calc_cputime_factors() |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 386 | #endif |
| 387 | |
Paul Mackerras | 6defa38 | 2005-11-18 13:44:17 +1100 | [diff] [blame] | 388 | void __delay(unsigned long loops) |
| 389 | { |
| 390 | unsigned long start; |
| 391 | int diff; |
| 392 | |
| 393 | if (__USE_RTC()) { |
| 394 | start = get_rtcl(); |
| 395 | do { |
| 396 | /* the RTCL register wraps at 1000000000 */ |
| 397 | diff = get_rtcl() - start; |
| 398 | if (diff < 0) |
| 399 | diff += 1000000000; |
| 400 | } while (diff < loops); |
| 401 | } else { |
| 402 | start = get_tbl(); |
| 403 | while (get_tbl() - start < loops) |
| 404 | HMT_low(); |
| 405 | HMT_medium(); |
| 406 | } |
| 407 | } |
| 408 | EXPORT_SYMBOL(__delay); |
| 409 | |
| 410 | void udelay(unsigned long usecs) |
| 411 | { |
| 412 | __delay(tb_ticks_per_usec * usecs); |
| 413 | } |
| 414 | EXPORT_SYMBOL(udelay); |
| 415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | #ifdef CONFIG_SMP |
| 417 | unsigned long profile_pc(struct pt_regs *regs) |
| 418 | { |
| 419 | unsigned long pc = instruction_pointer(regs); |
| 420 | |
| 421 | if (in_lock_functions(pc)) |
| 422 | return regs->link; |
| 423 | |
| 424 | return pc; |
| 425 | } |
| 426 | EXPORT_SYMBOL(profile_pc); |
| 427 | #endif |
| 428 | |
| 429 | #ifdef CONFIG_PPC_ISERIES |
| 430 | |
| 431 | /* |
| 432 | * This function recalibrates the timebase based on the 49-bit time-of-day |
| 433 | * value in the Titan chip. The Titan is much more accurate than the value |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 434 | * returned by the service processor for the timebase frequency. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | */ |
| 436 | |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 437 | static int __init iSeries_tb_recal(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | unsigned long titan, tb; |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 440 | |
| 441 | /* Make sure we only run on iSeries */ |
| 442 | if (!firmware_has_feature(FW_FEATURE_ISERIES)) |
| 443 | return -ENODEV; |
| 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | tb = get_tb(); |
| 446 | titan = HvCallXm_loadTod(); |
| 447 | if ( iSeries_recal_titan ) { |
| 448 | unsigned long tb_ticks = tb - iSeries_recal_tb; |
| 449 | unsigned long titan_usec = (titan - iSeries_recal_titan) >> 12; |
| 450 | unsigned long new_tb_ticks_per_sec = (tb_ticks * USEC_PER_SEC)/titan_usec; |
Julia Lawall | 14ea58a | 2009-08-01 22:48:27 +0000 | [diff] [blame] | 451 | unsigned long new_tb_ticks_per_jiffy = |
| 452 | DIV_ROUND_CLOSEST(new_tb_ticks_per_sec, HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | long tick_diff = new_tb_ticks_per_jiffy - tb_ticks_per_jiffy; |
| 454 | char sign = '+'; |
| 455 | /* make sure tb_ticks_per_sec and tb_ticks_per_jiffy are consistent */ |
| 456 | new_tb_ticks_per_sec = new_tb_ticks_per_jiffy * HZ; |
| 457 | |
| 458 | if ( tick_diff < 0 ) { |
| 459 | tick_diff = -tick_diff; |
| 460 | sign = '-'; |
| 461 | } |
| 462 | if ( tick_diff ) { |
| 463 | if ( tick_diff < tb_ticks_per_jiffy/25 ) { |
| 464 | printk( "Titan recalibrate: new tb_ticks_per_jiffy = %lu (%c%ld)\n", |
| 465 | new_tb_ticks_per_jiffy, sign, tick_diff ); |
| 466 | tb_ticks_per_jiffy = new_tb_ticks_per_jiffy; |
| 467 | tb_ticks_per_sec = new_tb_ticks_per_sec; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 468 | calc_cputime_factors(); |
Benjamin Herrenschmidt | a7f290d | 2005-11-11 21:15:21 +1100 | [diff] [blame] | 469 | vdso_data->tb_ticks_per_sec = tb_ticks_per_sec; |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 470 | setup_cputime_one_jiffy(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
| 472 | else { |
| 473 | printk( "Titan recalibrate: FAILED (difference > 4 percent)\n" |
| 474 | " new tb_ticks_per_jiffy = %lu\n" |
| 475 | " old tb_ticks_per_jiffy = %lu\n", |
| 476 | new_tb_ticks_per_jiffy, tb_ticks_per_jiffy ); |
| 477 | } |
| 478 | } |
| 479 | } |
| 480 | iSeries_recal_titan = titan; |
| 481 | iSeries_recal_tb = tb; |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 482 | |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 483 | /* Called here as now we know accurate values for the timebase */ |
| 484 | clocksource_init(); |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 485 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 487 | late_initcall(iSeries_tb_recal); |
| 488 | |
| 489 | /* Called from platform early init */ |
| 490 | void __init iSeries_time_init_early(void) |
| 491 | { |
| 492 | iSeries_recal_tb = get_tb(); |
| 493 | iSeries_recal_titan = HvCallXm_loadTod(); |
| 494 | } |
| 495 | #endif /* CONFIG_PPC_ISERIES */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 497 | #ifdef CONFIG_IRQ_WORK |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 498 | |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 499 | /* |
| 500 | * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable... |
| 501 | */ |
| 502 | #ifdef CONFIG_PPC64 |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 503 | static inline unsigned long test_irq_work_pending(void) |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 504 | { |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 505 | unsigned long x; |
| 506 | |
| 507 | asm volatile("lbz %0,%1(13)" |
| 508 | : "=r" (x) |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 509 | : "i" (offsetof(struct paca_struct, irq_work_pending))); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 510 | return x; |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 511 | } |
| 512 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 513 | static inline void set_irq_work_pending_flag(void) |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 514 | { |
| 515 | asm volatile("stb %0,%1(13)" : : |
| 516 | "r" (1), |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 517 | "i" (offsetof(struct paca_struct, irq_work_pending))); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 520 | static inline void clear_irq_work_pending(void) |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 521 | { |
| 522 | asm volatile("stb %0,%1(13)" : : |
| 523 | "r" (0), |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 524 | "i" (offsetof(struct paca_struct, irq_work_pending))); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | #else /* 32-bit */ |
| 528 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 529 | DEFINE_PER_CPU(u8, irq_work_pending); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 530 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 531 | #define set_irq_work_pending_flag() __get_cpu_var(irq_work_pending) = 1 |
| 532 | #define test_irq_work_pending() __get_cpu_var(irq_work_pending) |
| 533 | #define clear_irq_work_pending() __get_cpu_var(irq_work_pending) = 0 |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 534 | |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 535 | #endif /* 32 vs 64 bit */ |
| 536 | |
Peter Zijlstra | 4f8b50b | 2011-06-27 17:22:43 +0200 | [diff] [blame] | 537 | void arch_irq_work_raise(void) |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 538 | { |
| 539 | preempt_disable(); |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 540 | set_irq_work_pending_flag(); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 541 | set_dec(1); |
| 542 | preempt_enable(); |
| 543 | } |
| 544 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 545 | #else /* CONFIG_IRQ_WORK */ |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 546 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 547 | #define test_irq_work_pending() 0 |
| 548 | #define clear_irq_work_pending() |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 549 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 550 | #endif /* CONFIG_IRQ_WORK */ |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | /* |
| 553 | * For iSeries shared processors, we have to let the hypervisor |
| 554 | * set the hardware decrementer. We set a virtual decrementer |
| 555 | * in the lppaca and call the hypervisor if the virtual |
| 556 | * decrementer is less than the current value in the hardware |
| 557 | * decrementer. (almost always the new decrementer value will |
| 558 | * be greater than the current hardware decementer so the hypervisor |
| 559 | * call will not be needed) |
| 560 | */ |
| 561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | /* |
| 563 | * timer_interrupt - gets called when the decrementer overflows, |
| 564 | * with interrupts disabled. |
| 565 | */ |
Kumar Gala | c7aeffc | 2005-09-19 09:30:27 -0500 | [diff] [blame] | 566 | void timer_interrupt(struct pt_regs * regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 568 | struct pt_regs *old_regs; |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame^] | 569 | u64 *next_tb = &__get_cpu_var(decrementers_next_tb); |
| 570 | struct clock_event_device *evt = &__get_cpu_var(decrementers); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 571 | |
Benjamin Herrenschmidt | 963e5d3 | 2011-03-29 14:51:10 +1100 | [diff] [blame] | 572 | /* Ensure a positive value is written to the decrementer, or else |
| 573 | * some CPUs will continue to take decrementer exceptions. |
| 574 | */ |
| 575 | set_dec(DECREMENTER_MAX); |
| 576 | |
| 577 | /* Some implementations of hotplug will get timer interrupts while |
| 578 | * offline, just ignore these |
| 579 | */ |
| 580 | if (!cpu_online(smp_processor_id())) |
| 581 | return; |
| 582 | |
Anton Blanchard | 6795b85 | 2009-10-26 18:49:14 +0000 | [diff] [blame] | 583 | trace_timer_interrupt_entry(regs); |
| 584 | |
Anton Blanchard | 89713ed | 2010-01-31 20:34:06 +0000 | [diff] [blame] | 585 | __get_cpu_var(irq_stat).timer_irqs++; |
| 586 | |
Paul Mackerras | b0d278b | 2010-08-10 20:38:23 +0000 | [diff] [blame] | 587 | #if defined(CONFIG_PPC32) && defined(CONFIG_PMAC) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 588 | if (atomic_read(&ppc_n_lost_interrupts) != 0) |
| 589 | do_IRQ(regs); |
| 590 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 592 | old_regs = set_irq_regs(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | irq_enter(); |
| 594 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 595 | if (test_irq_work_pending()) { |
| 596 | clear_irq_work_pending(); |
| 597 | irq_work_run(); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 598 | } |
| 599 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 600 | #ifdef CONFIG_PPC_ISERIES |
Stephen Rothwell | 501b6d2 | 2006-11-21 15:10:20 +1100 | [diff] [blame] | 601 | if (firmware_has_feature(FW_FEATURE_ISERIES)) |
| 602 | get_lppaca()->int_dword.fields.decr_int = 0; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 603 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame^] | 605 | *next_tb = ~(u64)0; |
Anton Blanchard | 68568ad | 2011-11-23 20:07:20 +0000 | [diff] [blame] | 606 | if (evt->event_handler) |
| 607 | evt->event_handler(evt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
| 609 | #ifdef CONFIG_PPC_ISERIES |
Stephen Rothwell | 501b6d2 | 2006-11-21 15:10:20 +1100 | [diff] [blame] | 610 | if (firmware_has_feature(FW_FEATURE_ISERIES) && hvlpevent_is_pending()) |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 611 | process_hvlpevents(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | #endif |
| 613 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 614 | #ifdef CONFIG_PPC64 |
Stephen Rothwell | 8d15a3e | 2005-08-03 14:40:16 +1000 | [diff] [blame] | 615 | /* collect purr register values often, for accurate calculations */ |
Stephen Rothwell | 1ababe1 | 2005-08-03 14:35:25 +1000 | [diff] [blame] | 616 | if (firmware_has_feature(FW_FEATURE_SPLPAR)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | struct cpu_usage *cu = &__get_cpu_var(cpu_usage_array); |
| 618 | cu->current_tb = mfspr(SPRN_PURR); |
| 619 | } |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 620 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
| 622 | irq_exit(); |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 623 | set_irq_regs(old_regs); |
Anton Blanchard | 6795b85 | 2009-10-26 18:49:14 +0000 | [diff] [blame] | 624 | |
| 625 | trace_timer_interrupt_exit(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 628 | #ifdef CONFIG_SUSPEND |
Paul Mackerras | d75d68c | 2010-06-20 19:04:14 +0000 | [diff] [blame] | 629 | static void generic_suspend_disable_irqs(void) |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 630 | { |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 631 | /* Disable the decrementer, so that it doesn't interfere |
| 632 | * with suspending. |
| 633 | */ |
| 634 | |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 635 | set_dec(DECREMENTER_MAX); |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 636 | local_irq_disable(); |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 637 | set_dec(DECREMENTER_MAX); |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 638 | } |
| 639 | |
Paul Mackerras | d75d68c | 2010-06-20 19:04:14 +0000 | [diff] [blame] | 640 | static void generic_suspend_enable_irqs(void) |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 641 | { |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 642 | local_irq_enable(); |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | /* Overrides the weak version in kernel/power/main.c */ |
| 646 | void arch_suspend_disable_irqs(void) |
| 647 | { |
| 648 | if (ppc_md.suspend_disable_irqs) |
| 649 | ppc_md.suspend_disable_irqs(); |
| 650 | generic_suspend_disable_irqs(); |
| 651 | } |
| 652 | |
| 653 | /* Overrides the weak version in kernel/power/main.c */ |
| 654 | void arch_suspend_enable_irqs(void) |
| 655 | { |
| 656 | generic_suspend_enable_irqs(); |
| 657 | if (ppc_md.suspend_enable_irqs) |
| 658 | ppc_md.suspend_enable_irqs(); |
| 659 | } |
| 660 | #endif |
| 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | /* |
| 663 | * Scheduler clock - returns current time in nanosec units. |
| 664 | * |
| 665 | * Note: mulhdu(a, b) (multiply high double unsigned) returns |
| 666 | * the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b |
| 667 | * are 64-bit unsigned numbers. |
| 668 | */ |
| 669 | unsigned long long sched_clock(void) |
| 670 | { |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 671 | if (__USE_RTC()) |
| 672 | return get_rtc(); |
Tony Breeds | fc9069f | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 673 | return mulhdu(get_tb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 676 | static int __init get_freq(char *name, int cells, unsigned long *val) |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 677 | { |
| 678 | struct device_node *cpu; |
Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 679 | const unsigned int *fp; |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 680 | int found = 0; |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 681 | |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 682 | /* The cpu node should have timebase and clock frequency properties */ |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 683 | cpu = of_find_node_by_type(NULL, "cpu"); |
| 684 | |
Olaf Hering | d8a8188 | 2006-02-04 10:34:56 +0100 | [diff] [blame] | 685 | if (cpu) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 686 | fp = of_get_property(cpu, name, NULL); |
Olaf Hering | d8a8188 | 2006-02-04 10:34:56 +0100 | [diff] [blame] | 687 | if (fp) { |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 688 | found = 1; |
Paul Mackerras | a4dc7ff | 2006-09-19 14:06:27 +1000 | [diff] [blame] | 689 | *val = of_read_ulong(fp, cells); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 690 | } |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 691 | |
| 692 | of_node_put(cpu); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 693 | } |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 694 | |
| 695 | return found; |
| 696 | } |
| 697 | |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 698 | /* should become __cpuinit when secondary_cpu_time_init also is */ |
| 699 | void start_cpu_decrementer(void) |
| 700 | { |
| 701 | #if defined(CONFIG_BOOKE) || defined(CONFIG_40x) |
| 702 | /* Clear any pending timer interrupts */ |
| 703 | mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_DIS | TSR_FIS); |
| 704 | |
| 705 | /* Enable decrementer interrupt */ |
| 706 | mtspr(SPRN_TCR, TCR_DIE); |
| 707 | #endif /* defined(CONFIG_BOOKE) || defined(CONFIG_40x) */ |
| 708 | } |
| 709 | |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 710 | void __init generic_calibrate_decr(void) |
| 711 | { |
| 712 | ppc_tb_freq = DEFAULT_TB_FREQ; /* hardcoded default */ |
| 713 | |
| 714 | if (!get_freq("ibm,extended-timebase-frequency", 2, &ppc_tb_freq) && |
| 715 | !get_freq("timebase-frequency", 1, &ppc_tb_freq)) { |
| 716 | |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 717 | printk(KERN_ERR "WARNING: Estimating decrementer frequency " |
| 718 | "(not found)\n"); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 719 | } |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 720 | |
| 721 | ppc_proc_freq = DEFAULT_PROC_FREQ; /* hardcoded default */ |
| 722 | |
| 723 | if (!get_freq("ibm,extended-clock-frequency", 2, &ppc_proc_freq) && |
| 724 | !get_freq("clock-frequency", 1, &ppc_proc_freq)) { |
| 725 | |
| 726 | printk(KERN_ERR "WARNING: Estimating processor frequency " |
| 727 | "(not found)\n"); |
| 728 | } |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 729 | } |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 730 | |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 731 | int update_persistent_clock(struct timespec now) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 732 | { |
| 733 | struct rtc_time tm; |
| 734 | |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 735 | if (!ppc_md.set_rtc_time) |
| 736 | return 0; |
| 737 | |
| 738 | to_tm(now.tv_sec + 1 + timezone_offset, &tm); |
| 739 | tm.tm_year -= 1900; |
| 740 | tm.tm_mon -= 1; |
| 741 | |
| 742 | return ppc_md.set_rtc_time(&tm); |
| 743 | } |
| 744 | |
Benjamin Herrenschmidt | 978d7eb | 2009-11-01 19:11:03 +0000 | [diff] [blame] | 745 | static void __read_persistent_clock(struct timespec *ts) |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 746 | { |
| 747 | struct rtc_time tm; |
| 748 | static int first = 1; |
| 749 | |
Martin Schwidefsky | d90246c | 2009-08-22 22:23:13 +0200 | [diff] [blame] | 750 | ts->tv_nsec = 0; |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 751 | /* XXX this is a litle fragile but will work okay in the short term */ |
| 752 | if (first) { |
| 753 | first = 0; |
| 754 | if (ppc_md.time_init) |
| 755 | timezone_offset = ppc_md.time_init(); |
| 756 | |
| 757 | /* get_boot_time() isn't guaranteed to be safe to call late */ |
Martin Schwidefsky | d90246c | 2009-08-22 22:23:13 +0200 | [diff] [blame] | 758 | if (ppc_md.get_boot_time) { |
| 759 | ts->tv_sec = ppc_md.get_boot_time() - timezone_offset; |
| 760 | return; |
| 761 | } |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 762 | } |
Martin Schwidefsky | d90246c | 2009-08-22 22:23:13 +0200 | [diff] [blame] | 763 | if (!ppc_md.get_rtc_time) { |
| 764 | ts->tv_sec = 0; |
| 765 | return; |
| 766 | } |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 767 | ppc_md.get_rtc_time(&tm); |
Benjamin Herrenschmidt | 978d7eb | 2009-11-01 19:11:03 +0000 | [diff] [blame] | 768 | |
Martin Schwidefsky | d4f587c | 2009-08-14 15:47:31 +0200 | [diff] [blame] | 769 | ts->tv_sec = mktime(tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday, |
| 770 | tm.tm_hour, tm.tm_min, tm.tm_sec); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 771 | } |
| 772 | |
Benjamin Herrenschmidt | 978d7eb | 2009-11-01 19:11:03 +0000 | [diff] [blame] | 773 | void read_persistent_clock(struct timespec *ts) |
| 774 | { |
| 775 | __read_persistent_clock(ts); |
| 776 | |
| 777 | /* Sanitize it in case real time clock is set below EPOCH */ |
| 778 | if (ts->tv_sec < 0) { |
| 779 | ts->tv_sec = 0; |
| 780 | ts->tv_nsec = 0; |
| 781 | } |
| 782 | |
| 783 | } |
| 784 | |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 785 | /* clocksource code */ |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 786 | static cycle_t rtc_read(struct clocksource *cs) |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 787 | { |
| 788 | return (cycle_t)get_rtc(); |
| 789 | } |
| 790 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 791 | static cycle_t timebase_read(struct clocksource *cs) |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 792 | { |
| 793 | return (cycle_t)get_tb(); |
| 794 | } |
| 795 | |
John Stultz | 7615856 | 2010-07-13 17:56:23 -0700 | [diff] [blame] | 796 | void update_vsyscall(struct timespec *wall_time, struct timespec *wtm, |
| 797 | struct clocksource *clock, u32 mult) |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 798 | { |
John Stultz | b0797b6 | 2010-07-13 17:56:21 -0700 | [diff] [blame] | 799 | u64 new_tb_to_xs, new_stamp_xsec; |
Paul Mackerras | 0e469db | 2010-06-20 19:03:08 +0000 | [diff] [blame] | 800 | u32 frac_sec; |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 801 | |
| 802 | if (clock != &clocksource_timebase) |
| 803 | return; |
| 804 | |
| 805 | /* Make userspace gettimeofday spin until we're done. */ |
| 806 | ++vdso_data->tb_update_count; |
| 807 | smp_mb(); |
| 808 | |
Anton Blanchard | 11b8633 | 2011-11-23 20:07:19 +0000 | [diff] [blame] | 809 | /* 19342813113834067 ~= 2^(20+64) / 1e9 */ |
| 810 | new_tb_to_xs = (u64) mult * (19342813113834067ULL >> clock->shift); |
John Stultz | 06d518e | 2010-07-13 17:56:22 -0700 | [diff] [blame] | 811 | new_stamp_xsec = (u64) wall_time->tv_nsec * XSEC_PER_SEC; |
John Stultz | b0797b6 | 2010-07-13 17:56:21 -0700 | [diff] [blame] | 812 | do_div(new_stamp_xsec, 1000000000); |
John Stultz | 06d518e | 2010-07-13 17:56:22 -0700 | [diff] [blame] | 813 | new_stamp_xsec += (u64) wall_time->tv_sec * XSEC_PER_SEC; |
John Stultz | b0797b6 | 2010-07-13 17:56:21 -0700 | [diff] [blame] | 814 | |
Paul Mackerras | 0e469db | 2010-06-20 19:03:08 +0000 | [diff] [blame] | 815 | BUG_ON(wall_time->tv_nsec >= NSEC_PER_SEC); |
| 816 | /* this is tv_nsec / 1e9 as a 0.32 fraction */ |
| 817 | frac_sec = ((u64) wall_time->tv_nsec * 18446744073ULL) >> 32; |
Thomas Gleixner | 47916be | 2010-07-28 21:49:22 +0200 | [diff] [blame] | 818 | |
John Stultz | b0797b6 | 2010-07-13 17:56:21 -0700 | [diff] [blame] | 819 | /* |
| 820 | * tb_update_count is used to allow the userspace gettimeofday code |
| 821 | * to assure itself that it sees a consistent view of the tb_to_xs and |
| 822 | * stamp_xsec variables. It reads the tb_update_count, then reads |
| 823 | * tb_to_xs and stamp_xsec and then reads tb_update_count again. If |
| 824 | * the two values of tb_update_count match and are even then the |
| 825 | * tb_to_xs and stamp_xsec values are consistent. If not, then it |
| 826 | * loops back and reads them again until this criteria is met. |
| 827 | * We expect the caller to have done the first increment of |
| 828 | * vdso_data->tb_update_count already. |
| 829 | */ |
| 830 | vdso_data->tb_orig_stamp = clock->cycle_last; |
| 831 | vdso_data->stamp_xsec = new_stamp_xsec; |
| 832 | vdso_data->tb_to_xs = new_tb_to_xs; |
John Stultz | 7615856 | 2010-07-13 17:56:23 -0700 | [diff] [blame] | 833 | vdso_data->wtom_clock_sec = wtm->tv_sec; |
| 834 | vdso_data->wtom_clock_nsec = wtm->tv_nsec; |
John Stultz | 06d518e | 2010-07-13 17:56:22 -0700 | [diff] [blame] | 835 | vdso_data->stamp_xtime = *wall_time; |
Thomas Gleixner | 47916be | 2010-07-28 21:49:22 +0200 | [diff] [blame] | 836 | vdso_data->stamp_sec_fraction = frac_sec; |
John Stultz | b0797b6 | 2010-07-13 17:56:21 -0700 | [diff] [blame] | 837 | smp_wmb(); |
| 838 | ++(vdso_data->tb_update_count); |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | void update_vsyscall_tz(void) |
| 842 | { |
| 843 | /* Make userspace gettimeofday spin until we're done. */ |
| 844 | ++vdso_data->tb_update_count; |
| 845 | smp_mb(); |
| 846 | vdso_data->tz_minuteswest = sys_tz.tz_minuteswest; |
| 847 | vdso_data->tz_dsttime = sys_tz.tz_dsttime; |
| 848 | smp_mb(); |
| 849 | ++vdso_data->tb_update_count; |
| 850 | } |
| 851 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 852 | static void __init clocksource_init(void) |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 853 | { |
| 854 | struct clocksource *clock; |
| 855 | |
| 856 | if (__USE_RTC()) |
| 857 | clock = &clocksource_rtc; |
| 858 | else |
| 859 | clock = &clocksource_timebase; |
| 860 | |
Anton Blanchard | 11b8633 | 2011-11-23 20:07:19 +0000 | [diff] [blame] | 861 | if (clocksource_register_hz(clock, tb_ticks_per_sec)) { |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 862 | printk(KERN_ERR "clocksource: %s is already registered\n", |
| 863 | clock->name); |
| 864 | return; |
| 865 | } |
| 866 | |
| 867 | printk(KERN_INFO "clocksource: %s mult[%x] shift[%d] registered\n", |
| 868 | clock->name, clock->mult, clock->shift); |
| 869 | } |
| 870 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 871 | static int decrementer_set_next_event(unsigned long evt, |
| 872 | struct clock_event_device *dev) |
| 873 | { |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame^] | 874 | __get_cpu_var(decrementers_next_tb) = get_tb_or_rtc() + evt; |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 875 | set_dec(evt); |
| 876 | return 0; |
| 877 | } |
| 878 | |
| 879 | static void decrementer_set_mode(enum clock_event_mode mode, |
| 880 | struct clock_event_device *dev) |
| 881 | { |
| 882 | if (mode != CLOCK_EVT_MODE_ONESHOT) |
| 883 | decrementer_set_next_event(DECREMENTER_MAX, dev); |
| 884 | } |
| 885 | |
| 886 | static void register_decrementer_clockevent(int cpu) |
| 887 | { |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame^] | 888 | struct clock_event_device *dec = &per_cpu(decrementers, cpu); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 889 | |
| 890 | *dec = decrementer_clockevent; |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 891 | dec->cpumask = cpumask_of(cpu); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 892 | |
Anton Blanchard | b919ee8 | 2010-02-07 19:26:29 +0000 | [diff] [blame] | 893 | printk_once(KERN_DEBUG "clockevent: %s mult[%x] shift[%d] cpu[%d]\n", |
| 894 | dec->name, dec->mult, dec->shift, cpu); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 895 | |
| 896 | clockevents_register_device(dec); |
| 897 | } |
| 898 | |
Milton Miller | c481887 | 2007-12-14 15:52:10 +1100 | [diff] [blame] | 899 | static void __init init_decrementer_clockevent(void) |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 900 | { |
| 901 | int cpu = smp_processor_id(); |
| 902 | |
Anton Blanchard | d8afc6f | 2011-11-23 20:07:18 +0000 | [diff] [blame] | 903 | clockevents_calc_mult_shift(&decrementer_clockevent, ppc_tb_freq, 4); |
| 904 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 905 | decrementer_clockevent.max_delta_ns = |
| 906 | clockevent_delta2ns(DECREMENTER_MAX, &decrementer_clockevent); |
Paul Mackerras | 43875cc | 2007-10-31 22:25:35 +1100 | [diff] [blame] | 907 | decrementer_clockevent.min_delta_ns = |
| 908 | clockevent_delta2ns(2, &decrementer_clockevent); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 909 | |
| 910 | register_decrementer_clockevent(cpu); |
| 911 | } |
| 912 | |
| 913 | void secondary_cpu_time_init(void) |
| 914 | { |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 915 | /* Start the decrementer on CPUs that have manual control |
| 916 | * such as BookE |
| 917 | */ |
| 918 | start_cpu_decrementer(); |
| 919 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 920 | /* FIME: Should make unrelatred change to move snapshot_timebase |
| 921 | * call here ! */ |
| 922 | register_decrementer_clockevent(smp_processor_id()); |
| 923 | } |
| 924 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 925 | /* This function is only called on the boot processor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | void __init time_init(void) |
| 927 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | struct div_result res; |
Paul Mackerras | d75d68c | 2010-06-20 19:04:14 +0000 | [diff] [blame] | 929 | u64 scale; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 930 | unsigned shift; |
| 931 | |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 932 | if (__USE_RTC()) { |
| 933 | /* 601 processor: dec counts down by 128 every 128ns */ |
| 934 | ppc_tb_freq = 1000000000; |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 935 | } else { |
| 936 | /* Normal PowerPC with timebase register */ |
| 937 | ppc_md.calibrate_decr(); |
Olof Johansson | 224ad80 | 2006-04-12 15:20:27 -0500 | [diff] [blame] | 938 | printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n", |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 939 | ppc_tb_freq / 1000000, ppc_tb_freq % 1000000); |
Olof Johansson | 224ad80 | 2006-04-12 15:20:27 -0500 | [diff] [blame] | 940 | printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n", |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 941 | ppc_proc_freq / 1000000, ppc_proc_freq % 1000000); |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 942 | } |
Paul Mackerras | 374e99d | 2005-10-20 21:04:51 +1000 | [diff] [blame] | 943 | |
| 944 | tb_ticks_per_jiffy = ppc_tb_freq / HZ; |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 945 | tb_ticks_per_sec = ppc_tb_freq; |
Paul Mackerras | 374e99d | 2005-10-20 21:04:51 +1000 | [diff] [blame] | 946 | tb_ticks_per_usec = ppc_tb_freq / 1000000; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 947 | calc_cputime_factors(); |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 948 | setup_cputime_one_jiffy(); |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 949 | |
| 950 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | * Compute scale factor for sched_clock. |
| 952 | * The calibrate_decr() function has set tb_ticks_per_sec, |
| 953 | * which is the timebase frequency. |
| 954 | * We compute 1e9 * 2^64 / tb_ticks_per_sec and interpret |
| 955 | * the 128-bit result as a 64.64 fixed-point number. |
| 956 | * We then shift that number right until it is less than 1.0, |
| 957 | * giving us the scale factor and shift count to use in |
| 958 | * sched_clock(). |
| 959 | */ |
| 960 | div128_by_32(1000000000, 0, tb_ticks_per_sec, &res); |
| 961 | scale = res.result_low; |
| 962 | for (shift = 0; res.result_high != 0; ++shift) { |
| 963 | scale = (scale >> 1) | (res.result_high << 63); |
| 964 | res.result_high >>= 1; |
| 965 | } |
| 966 | tb_to_ns_scale = scale; |
| 967 | tb_to_ns_shift = shift; |
Tony Breeds | fc9069f | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 968 | /* Save the current timebase to pretty up CONFIG_PRINTK_TIME */ |
Benjamin Herrenschmidt | c27da339 | 2007-09-19 14:21:56 +1000 | [diff] [blame] | 969 | boot_tb = get_tb_or_rtc(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 971 | /* If platform provided a timezone (pmac), we correct the time */ |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 972 | if (timezone_offset) { |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 973 | sys_tz.tz_minuteswest = -timezone_offset / 60; |
| 974 | sys_tz.tz_dsttime = 0; |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 975 | } |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 976 | |
Benjamin Herrenschmidt | a7f290d | 2005-11-11 21:15:21 +1100 | [diff] [blame] | 977 | vdso_data->tb_update_count = 0; |
| 978 | vdso_data->tb_ticks_per_sec = tb_ticks_per_sec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 980 | /* Start the decrementer on CPUs that have manual control |
| 981 | * such as BookE |
| 982 | */ |
| 983 | start_cpu_decrementer(); |
| 984 | |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 985 | /* Register the clocksource, if we're not running on iSeries */ |
| 986 | if (!firmware_has_feature(FW_FEATURE_ISERIES)) |
| 987 | clocksource_init(); |
| 988 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 989 | init_decrementer_clockevent(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | } |
| 991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | #define FEBRUARY 2 |
| 994 | #define STARTOFTIME 1970 |
| 995 | #define SECDAY 86400L |
| 996 | #define SECYR (SECDAY * 365) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 997 | #define leapyear(year) ((year) % 4 == 0 && \ |
| 998 | ((year) % 100 != 0 || (year) % 400 == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | #define days_in_year(a) (leapyear(a) ? 366 : 365) |
| 1000 | #define days_in_month(a) (month_days[(a) - 1]) |
| 1001 | |
| 1002 | static int month_days[12] = { |
| 1003 | 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 |
| 1004 | }; |
| 1005 | |
| 1006 | /* |
| 1007 | * This only works for the Gregorian calendar - i.e. after 1752 (in the UK) |
| 1008 | */ |
| 1009 | void GregorianDay(struct rtc_time * tm) |
| 1010 | { |
| 1011 | int leapsToDate; |
| 1012 | int lastYear; |
| 1013 | int day; |
| 1014 | int MonthOffset[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 }; |
| 1015 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1016 | lastYear = tm->tm_year - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
| 1018 | /* |
| 1019 | * Number of leap corrections to apply up to end of last year |
| 1020 | */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1021 | leapsToDate = lastYear / 4 - lastYear / 100 + lastYear / 400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | |
| 1023 | /* |
| 1024 | * This year is a leap year if it is divisible by 4 except when it is |
| 1025 | * divisible by 100 unless it is divisible by 400 |
| 1026 | * |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1027 | * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1029 | day = tm->tm_mon > 2 && leapyear(tm->tm_year); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
| 1031 | day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] + |
| 1032 | tm->tm_mday; |
| 1033 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1034 | tm->tm_wday = day % 7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | void to_tm(int tim, struct rtc_time * tm) |
| 1038 | { |
| 1039 | register int i; |
| 1040 | register long hms, day; |
| 1041 | |
| 1042 | day = tim / SECDAY; |
| 1043 | hms = tim % SECDAY; |
| 1044 | |
| 1045 | /* Hours, minutes, seconds are easy */ |
| 1046 | tm->tm_hour = hms / 3600; |
| 1047 | tm->tm_min = (hms % 3600) / 60; |
| 1048 | tm->tm_sec = (hms % 3600) % 60; |
| 1049 | |
| 1050 | /* Number of years in days */ |
| 1051 | for (i = STARTOFTIME; day >= days_in_year(i); i++) |
| 1052 | day -= days_in_year(i); |
| 1053 | tm->tm_year = i; |
| 1054 | |
| 1055 | /* Number of months in days left */ |
| 1056 | if (leapyear(tm->tm_year)) |
| 1057 | days_in_month(FEBRUARY) = 29; |
| 1058 | for (i = 1; day >= days_in_month(i); i++) |
| 1059 | day -= days_in_month(i); |
| 1060 | days_in_month(FEBRUARY) = 28; |
| 1061 | tm->tm_mon = i; |
| 1062 | |
| 1063 | /* Days are what is left over (+1) from all that. */ |
| 1064 | tm->tm_mday = day + 1; |
| 1065 | |
| 1066 | /* |
| 1067 | * Determine the day of week |
| 1068 | */ |
| 1069 | GregorianDay(tm); |
| 1070 | } |
| 1071 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | /* |
| 1073 | * Divide a 128-bit dividend by a 32-bit divisor, leaving a 128 bit |
| 1074 | * result. |
| 1075 | */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1076 | void div128_by_32(u64 dividend_high, u64 dividend_low, |
| 1077 | unsigned divisor, struct div_result *dr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | { |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1079 | unsigned long a, b, c, d; |
| 1080 | unsigned long w, x, y, z; |
| 1081 | u64 ra, rb, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | |
| 1083 | a = dividend_high >> 32; |
| 1084 | b = dividend_high & 0xffffffff; |
| 1085 | c = dividend_low >> 32; |
| 1086 | d = dividend_low & 0xffffffff; |
| 1087 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1088 | w = a / divisor; |
| 1089 | ra = ((u64)(a - (w * divisor)) << 32) + b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1091 | rb = ((u64) do_div(ra, divisor) << 32) + c; |
| 1092 | x = ra; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1094 | rc = ((u64) do_div(rb, divisor) << 32) + d; |
| 1095 | y = rb; |
| 1096 | |
| 1097 | do_div(rc, divisor); |
| 1098 | z = rc; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1099 | |
| 1100 | dr->result_high = ((u64)w << 32) + x; |
| 1101 | dr->result_low = ((u64)y << 32) + z; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | |
| 1103 | } |
Geert Uytterhoeven | bcd68a7 | 2009-02-19 16:50:46 +0100 | [diff] [blame] | 1104 | |
Benjamin Herrenschmidt | 177996e | 2009-06-09 21:12:00 +0000 | [diff] [blame] | 1105 | /* We don't need to calibrate delay, we use the CPU timebase for that */ |
| 1106 | void calibrate_delay(void) |
| 1107 | { |
| 1108 | /* Some generic code (such as spinlock debug) use loops_per_jiffy |
| 1109 | * as the number of __delay(1) in a jiffy, so make it so |
| 1110 | */ |
| 1111 | loops_per_jiffy = tb_ticks_per_jiffy; |
| 1112 | } |
| 1113 | |
Geert Uytterhoeven | bcd68a7 | 2009-02-19 16:50:46 +0100 | [diff] [blame] | 1114 | static int __init rtc_init(void) |
| 1115 | { |
| 1116 | struct platform_device *pdev; |
| 1117 | |
| 1118 | if (!ppc_md.get_rtc_time) |
| 1119 | return -ENODEV; |
| 1120 | |
| 1121 | pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0); |
| 1122 | if (IS_ERR(pdev)) |
| 1123 | return PTR_ERR(pdev); |
| 1124 | |
| 1125 | return 0; |
| 1126 | } |
| 1127 | |
| 1128 | module_init(rtc_init); |