Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Common time routines among all ppc machines. |
| 4 | * |
| 5 | * Written by Cort Dougan (cort@cs.nmt.edu) to merge |
| 6 | * Paul Mackerras' version and mine for PReP and Pmac. |
| 7 | * MPC8xx/MBX changes by Dan Malek (dmalek@jlc.net). |
| 8 | * Converted for 64-bit by Mike Corrigan (mikejc@us.ibm.com) |
| 9 | * |
| 10 | * First round of bugfixes by Gabriel Paubert (paubert@iram.es) |
| 11 | * to make clock more stable (2.4.0-test5). The only thing |
| 12 | * that this code assumes is that the timebases have been synchronized |
| 13 | * by firmware on SMP and are never stopped (never do sleep |
| 14 | * on SMP then, nap and doze are OK). |
| 15 | * |
| 16 | * Speeded up do_gettimeofday by getting rid of references to |
| 17 | * xtime (which required locks for consistency). (mikejc@us.ibm.com) |
| 18 | * |
| 19 | * TODO (not necessarily in this file): |
| 20 | * - improve precision and reproducibility of timebase frequency |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 21 | * measurement at boot time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | */ |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/errno.h> |
Paul Gortmaker | 4b16f8e | 2011-07-22 18:24:23 -0400 | [diff] [blame] | 31 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/sched.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 33 | #include <linux/sched/clock.h> |
Wan Jiabing | e225c4d | 2021-03-23 14:29:05 +0800 | [diff] [blame] | 34 | #include <linux/sched/cputime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/kernel.h> |
| 36 | #include <linux/param.h> |
| 37 | #include <linux/string.h> |
| 38 | #include <linux/mm.h> |
| 39 | #include <linux/interrupt.h> |
| 40 | #include <linux/timex.h> |
| 41 | #include <linux/kernel_stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/time.h> |
| 43 | #include <linux/init.h> |
| 44 | #include <linux/profile.h> |
| 45 | #include <linux/cpu.h> |
| 46 | #include <linux/security.h> |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 47 | #include <linux/percpu.h> |
| 48 | #include <linux/rtc.h> |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 49 | #include <linux/jiffies.h> |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 50 | #include <linux/posix-timers.h> |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 51 | #include <linux/irq.h> |
Benjamin Herrenschmidt | 177996e | 2009-06-09 21:12:00 +0000 | [diff] [blame] | 52 | #include <linux/delay.h> |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 53 | #include <linux/irq_work.h> |
Geert Uytterhoeven | 6008306 | 2020-02-13 09:38:04 +0100 | [diff] [blame] | 54 | #include <linux/of_clk.h> |
Daniel Axtens | 7f92bc5 | 2016-01-06 11:45:51 +1100 | [diff] [blame] | 55 | #include <linux/suspend.h> |
Nicholas Piggin | 4e287e6 | 2017-06-06 23:08:32 +1000 | [diff] [blame] | 56 | #include <linux/processor.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 | |
Nicholas Piggin | 3a96570 | 2021-01-30 23:08:38 +1000 | [diff] [blame] | 59 | #include <asm/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <asm/nvram.h> |
| 62 | #include <asm/cache.h> |
| 63 | #include <asm/machdep.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 64 | #include <linux/uaccess.h> |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 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> |
Daniel Axtens | 0545d54 | 2016-09-06 15:32:43 +1000 | [diff] [blame] | 72 | #include <asm/asm-prototypes.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 74 | /* powerpc clocksource/clockevent code */ |
| 75 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 76 | #include <linux/clockchips.h> |
John Stultz | 189374a | 2012-09-04 15:27:48 -0400 | [diff] [blame] | 77 | #include <linux/timekeeper_internal.h> |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 78 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 79 | static u64 timebase_read(struct clocksource *); |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 80 | static struct clocksource clocksource_timebase = { |
| 81 | .name = "timebase", |
| 82 | .rating = 400, |
| 83 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 84 | .mask = CLOCKSOURCE_MASK(64), |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 85 | .read = timebase_read, |
Christophe Leroy | ab037dd | 2020-11-27 00:10:05 +1100 | [diff] [blame] | 86 | .vdso_clock_mode = VDSO_CLOCKMODE_ARCHTIMER, |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 87 | }; |
| 88 | |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 89 | #define DECREMENTER_DEFAULT_MAX 0x7FFFFFFF |
| 90 | u64 decrementer_max = DECREMENTER_DEFAULT_MAX; |
Nicholas Piggin | 9581991 | 2021-11-23 19:51:43 +1000 | [diff] [blame] | 91 | EXPORT_SYMBOL_GPL(decrementer_max); /* for KVM HDEC */ |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 92 | |
| 93 | static int decrementer_set_next_event(unsigned long evt, |
| 94 | struct clock_event_device *dev); |
Viresh Kumar | 37a13e7 | 2015-07-16 16:56:25 +0530 | [diff] [blame] | 95 | static int decrementer_shutdown(struct clock_event_device *evt); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 96 | |
Bharat Bhushan | 6e35994 | 2012-04-18 06:01:19 +0000 | [diff] [blame] | 97 | struct clock_event_device decrementer_clockevent = { |
Viresh Kumar | 37a13e7 | 2015-07-16 16:56:25 +0530 | [diff] [blame] | 98 | .name = "decrementer", |
| 99 | .rating = 200, |
| 100 | .irq = 0, |
| 101 | .set_next_event = decrementer_set_next_event, |
Anton Blanchard | 81759360 | 2018-10-02 09:01:05 +1000 | [diff] [blame] | 102 | .set_state_oneshot_stopped = decrementer_shutdown, |
Viresh Kumar | 37a13e7 | 2015-07-16 16:56:25 +0530 | [diff] [blame] | 103 | .set_state_shutdown = decrementer_shutdown, |
| 104 | .tick_resume = decrementer_shutdown, |
| 105 | .features = CLOCK_EVT_FEAT_ONESHOT | |
| 106 | CLOCK_EVT_FEAT_C3STOP, |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 107 | }; |
Bharat Bhushan | 6e35994 | 2012-04-18 06:01:19 +0000 | [diff] [blame] | 108 | EXPORT_SYMBOL(decrementer_clockevent); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 109 | |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame] | 110 | DEFINE_PER_CPU(u64, decrementers_next_tb); |
Nicholas Piggin | 4ebbd07 | 2021-11-23 19:51:42 +1000 | [diff] [blame] | 111 | EXPORT_SYMBOL_GPL(decrementers_next_tb); |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame] | 112 | static DEFINE_PER_CPU(struct clock_event_device, decrementers); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | #define XSEC_PER_SEC (1024*1024) |
| 115 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 116 | #ifdef CONFIG_PPC64 |
| 117 | #define SCALE_XSEC(xsec, max) (((xsec) * max) / XSEC_PER_SEC) |
| 118 | #else |
| 119 | /* compute ((xsec << 12) * max) >> 32 */ |
| 120 | #define SCALE_XSEC(xsec, max) mulhwu((xsec) << 12, max) |
| 121 | #endif |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | unsigned long tb_ticks_per_jiffy; |
| 124 | unsigned long tb_ticks_per_usec = 100; /* sane default */ |
| 125 | EXPORT_SYMBOL(tb_ticks_per_usec); |
| 126 | unsigned long tb_ticks_per_sec; |
Paul Mackerras | 2cf82c0 | 2006-02-27 15:41:47 +1100 | [diff] [blame] | 127 | EXPORT_SYMBOL(tb_ticks_per_sec); /* for cputime_t conversions */ |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | DEFINE_SPINLOCK(rtc_lock); |
Benjamin Herrenschmidt | 6ae3db1 | 2005-06-27 14:36:35 -0700 | [diff] [blame] | 130 | EXPORT_SYMBOL_GPL(rtc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Tony Breeds | fc9069fe | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 132 | static u64 tb_to_ns_scale __read_mostly; |
| 133 | static unsigned tb_to_ns_shift __read_mostly; |
Heiko Schocher | 364a124 | 2010-11-22 21:30:33 +0000 | [diff] [blame] | 134 | static u64 boot_tb __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | extern struct timezone sys_tz; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 137 | static long timezone_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 139 | unsigned long ppc_proc_freq; |
Timur Tabi | 55ec2fc | 2010-09-20 11:23:41 -0500 | [diff] [blame] | 140 | EXPORT_SYMBOL_GPL(ppc_proc_freq); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 141 | unsigned long ppc_tb_freq; |
Timur Tabi | 55ec2fc | 2010-09-20 11:23:41 -0500 | [diff] [blame] | 142 | EXPORT_SYMBOL_GPL(ppc_tb_freq); |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 143 | |
Mahesh Salgaonkar | de26912 | 2019-03-05 01:12:19 +0530 | [diff] [blame] | 144 | bool tb_invalid; |
| 145 | |
Frederic Weisbecker | abf917c | 2012-07-25 07:56:04 +0200 | [diff] [blame] | 146 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 147 | /* |
Frederic Weisbecker | e7f340c | 2017-01-31 04:09:48 +0100 | [diff] [blame] | 148 | * Factor for converting from cputime_t (timebase ticks) to |
| 149 | * microseconds. This is stored as 0.64 fixed-point binary fraction. |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 150 | */ |
Andreas Schwab | 9f5072d | 2011-12-09 11:35:08 +0000 | [diff] [blame] | 151 | u64 __cputime_usec_factor; |
| 152 | EXPORT_SYMBOL(__cputime_usec_factor); |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 153 | |
Christophe Leroy | c223c90 | 2016-05-17 08:33:46 +0200 | [diff] [blame] | 154 | #ifdef CONFIG_PPC_SPLPAR |
Paul Mackerras | 872e439 | 2010-08-31 01:59:53 +0000 | [diff] [blame] | 155 | void (*dtl_consumer)(struct dtl_entry *, u64); |
Christophe Leroy | c223c90 | 2016-05-17 08:33:46 +0200 | [diff] [blame] | 156 | #endif |
| 157 | |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 158 | static void calc_cputime_factors(void) |
| 159 | { |
| 160 | struct div_result res; |
| 161 | |
Andreas Schwab | 9f5072d | 2011-12-09 11:35:08 +0000 | [diff] [blame] | 162 | div128_by_32(1000000, 0, tb_ticks_per_sec, &res); |
| 163 | __cputime_usec_factor = res.result_low; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /* |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 167 | * Read the SPURR on systems that have it, otherwise the PURR, |
| 168 | * or if that doesn't exist return the timebase value passed in. |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 169 | */ |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 170 | static inline unsigned long read_spurr(unsigned long tb) |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 171 | { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 172 | if (cpu_has_feature(CPU_FTR_SPURR)) |
| 173 | return mfspr(SPRN_SPURR); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 174 | if (cpu_has_feature(CPU_FTR_PURR)) |
| 175 | return mfspr(SPRN_PURR); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 176 | return tb; |
| 177 | } |
| 178 | |
| 179 | #ifdef CONFIG_PPC_SPLPAR |
| 180 | |
Peter Zijlstra | d6bdceb | 2020-05-29 22:41:01 +0200 | [diff] [blame] | 181 | #include <asm/dtl.h> |
| 182 | |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 183 | /* |
| 184 | * Scan the dispatch trace log and count up the stolen time. |
| 185 | * Should be called with interrupts disabled. |
| 186 | */ |
| 187 | static u64 scan_dispatch_log(u64 stop_tb) |
| 188 | { |
Paul Mackerras | 872e439 | 2010-08-31 01:59:53 +0000 | [diff] [blame] | 189 | u64 i = local_paca->dtl_ridx; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 190 | struct dtl_entry *dtl = local_paca->dtl_curr; |
| 191 | struct dtl_entry *dtl_end = local_paca->dispatch_log_end; |
| 192 | struct lppaca *vpa = local_paca->lppaca_ptr; |
| 193 | u64 tb_delta; |
| 194 | u64 stolen = 0; |
| 195 | u64 dtb; |
| 196 | |
Anton Blanchard | 84ffae5 | 2011-04-07 21:44:21 +0000 | [diff] [blame] | 197 | if (!dtl) |
| 198 | return 0; |
| 199 | |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 200 | if (i == be64_to_cpu(vpa->dtl_idx)) |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 201 | return 0; |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 202 | while (i < be64_to_cpu(vpa->dtl_idx)) { |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 203 | dtb = be64_to_cpu(dtl->timebase); |
| 204 | tb_delta = be32_to_cpu(dtl->enqueue_to_dispatch_time) + |
| 205 | be32_to_cpu(dtl->ready_to_enqueue_time); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 206 | barrier(); |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 207 | if (i + N_DISPATCH_LOG < be64_to_cpu(vpa->dtl_idx)) { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 208 | /* buffer has overflowed */ |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 209 | i = be64_to_cpu(vpa->dtl_idx) - N_DISPATCH_LOG; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 210 | dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG); |
| 211 | continue; |
| 212 | } |
| 213 | if (dtb > stop_tb) |
| 214 | break; |
Anton Blanchard | 84b0738 | 2013-11-17 11:39:05 +1100 | [diff] [blame] | 215 | if (dtl_consumer) |
| 216 | dtl_consumer(dtl, i); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 217 | stolen += tb_delta; |
| 218 | ++i; |
| 219 | ++dtl; |
| 220 | if (dtl == dtl_end) |
| 221 | dtl = local_paca->dispatch_log; |
| 222 | } |
| 223 | local_paca->dtl_ridx = i; |
| 224 | local_paca->dtl_curr = dtl; |
| 225 | return stolen; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | /* |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 229 | * Accumulate stolen time by scanning the dispatch trace log. |
| 230 | * Called on entry from user mode. |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 231 | */ |
Michael Ellerman | eb8e20f | 2019-10-13 21:23:51 +1100 | [diff] [blame] | 232 | void notrace accumulate_stolen_time(void) |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 233 | { |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 234 | u64 sst, ust; |
Christophe Leroy | c223c90 | 2016-05-17 08:33:46 +0200 | [diff] [blame] | 235 | struct cpu_accounting_data *acct = &local_paca->accounting; |
Tejun Heo | b18ae08 | 2011-01-03 03:49:25 +0000 | [diff] [blame] | 236 | |
Christophe Leroy | c223c90 | 2016-05-17 08:33:46 +0200 | [diff] [blame] | 237 | sst = scan_dispatch_log(acct->starttime_user); |
| 238 | ust = scan_dispatch_log(acct->starttime); |
Frederic Weisbecker | 8c8b73c | 2017-01-05 18:11:45 +0100 | [diff] [blame] | 239 | acct->stime -= sst; |
| 240 | acct->utime -= ust; |
Frederic Weisbecker | f828c3d | 2017-01-05 18:11:46 +0100 | [diff] [blame] | 241 | acct->steal_time += ust + sst; |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 244 | static inline u64 calculate_stolen_time(u64 stop_tb) |
| 245 | { |
Aneesh Kumar K.V | a6201da | 2018-04-02 13:03:37 +0530 | [diff] [blame] | 246 | if (!firmware_has_feature(FW_FEATURE_SPLPAR)) |
| 247 | return 0; |
| 248 | |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 249 | if (get_paca()->dtl_ridx != be64_to_cpu(get_lppaca()->dtl_idx)) |
| 250 | return scan_dispatch_log(stop_tb); |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 251 | |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 252 | return 0; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | #else /* CONFIG_PPC_SPLPAR */ |
| 256 | static inline u64 calculate_stolen_time(u64 stop_tb) |
| 257 | { |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | #endif /* CONFIG_PPC_SPLPAR */ |
| 262 | |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 263 | /* |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 264 | * Account time for a transition between system, hard irq |
| 265 | * or soft irq state. |
| 266 | */ |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 267 | static unsigned long vtime_delta_scaled(struct cpu_accounting_data *acct, |
| 268 | unsigned long now, unsigned long stime) |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 269 | { |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 270 | unsigned long stime_scaled = 0; |
| 271 | #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 272 | unsigned long nowscaled, deltascaled; |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 273 | unsigned long utime, utime_scaled; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 274 | |
Michael Neuling | 4603ac1 | 2007-10-18 03:06:37 -0700 | [diff] [blame] | 275 | nowscaled = read_spurr(now); |
Christophe Leroy | c223c90 | 2016-05-17 08:33:46 +0200 | [diff] [blame] | 276 | deltascaled = nowscaled - acct->startspurr; |
| 277 | acct->startspurr = nowscaled; |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 278 | utime = acct->utime - acct->utime_sspurr; |
Frederic Weisbecker | 8c8b73c | 2017-01-05 18:11:45 +0100 | [diff] [blame] | 279 | acct->utime_sspurr = acct->utime; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 280 | |
| 281 | /* |
| 282 | * Because we don't read the SPURR on every kernel entry/exit, |
| 283 | * deltascaled includes both user and system SPURR ticks. |
| 284 | * Apportion these ticks to system SPURR ticks and user |
| 285 | * SPURR ticks in the same ratio as the system time (delta) |
| 286 | * and user time (udelta) values obtained from the timebase |
| 287 | * over the same interval. The system ticks get accounted here; |
| 288 | * the user ticks get saved up in paca->user_time_scaled to be |
| 289 | * used by account_process_tick. |
| 290 | */ |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 291 | stime_scaled = stime; |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 292 | utime_scaled = utime; |
| 293 | if (deltascaled != stime + utime) { |
| 294 | if (utime) { |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 295 | stime_scaled = deltascaled * stime / (stime + utime); |
| 296 | utime_scaled = deltascaled - stime_scaled; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 297 | } else { |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 298 | stime_scaled = deltascaled; |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 299 | } |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 300 | } |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 301 | acct->utime_scaled += utime_scaled; |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 302 | #endif |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 303 | |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 304 | return stime_scaled; |
| 305 | } |
| 306 | |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 307 | static unsigned long vtime_delta(struct cpu_accounting_data *acct, |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 308 | unsigned long *stime_scaled, |
| 309 | unsigned long *steal_time) |
| 310 | { |
| 311 | unsigned long now, stime; |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 312 | |
| 313 | WARN_ON_ONCE(!irqs_disabled()); |
| 314 | |
| 315 | now = mftb(); |
| 316 | stime = now - acct->starttime; |
| 317 | acct->starttime = now; |
| 318 | |
| 319 | *stime_scaled = vtime_delta_scaled(acct, now, stime); |
| 320 | |
| 321 | *steal_time = calculate_stolen_time(now); |
| 322 | |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 323 | return stime; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 324 | } |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 325 | |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 326 | static void vtime_delta_kernel(struct cpu_accounting_data *acct, |
| 327 | unsigned long *stime, unsigned long *stime_scaled) |
| 328 | { |
| 329 | unsigned long steal_time; |
| 330 | |
| 331 | *stime = vtime_delta(acct, stime_scaled, &steal_time); |
| 332 | *stime -= min(*stime, steal_time); |
| 333 | acct->steal_time += steal_time; |
| 334 | } |
| 335 | |
Frederic Weisbecker | f83eeb1 | 2019-10-03 18:17:44 +0200 | [diff] [blame] | 336 | void vtime_account_kernel(struct task_struct *tsk) |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 337 | { |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 338 | struct cpu_accounting_data *acct = get_accounting(tsk); |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 339 | unsigned long stime, stime_scaled; |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 340 | |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 341 | vtime_delta_kernel(acct, &stime, &stime_scaled); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 342 | |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 343 | if (tsk->flags & PF_VCPU) { |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 344 | acct->gtime += stime; |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 345 | #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 346 | acct->utime_scaled += stime_scaled; |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 347 | #endif |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 348 | } else { |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 349 | acct->stime += stime; |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 350 | #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 351 | acct->stime_scaled += stime_scaled; |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 352 | #endif |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 353 | } |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 354 | } |
Frederic Weisbecker | f83eeb1 | 2019-10-03 18:17:44 +0200 | [diff] [blame] | 355 | EXPORT_SYMBOL_GPL(vtime_account_kernel); |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 356 | |
Frederic Weisbecker | fd25b4c | 2012-11-13 18:21:22 +0100 | [diff] [blame] | 357 | void vtime_account_idle(struct task_struct *tsk) |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 358 | { |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 359 | unsigned long stime, stime_scaled, steal_time; |
| 360 | struct cpu_accounting_data *acct = get_accounting(tsk); |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 361 | |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 362 | stime = vtime_delta(acct, &stime_scaled, &steal_time); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 363 | acct->idle_time += stime + steal_time; |
Frederic Weisbecker | a7e1a9e | 2012-09-08 16:14:02 +0200 | [diff] [blame] | 364 | } |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 365 | |
Frederic Weisbecker | 8a6a592 | 2020-12-02 12:57:30 +0100 | [diff] [blame] | 366 | static void vtime_account_irq_field(struct cpu_accounting_data *acct, |
| 367 | unsigned long *field) |
| 368 | { |
| 369 | unsigned long stime, stime_scaled; |
| 370 | |
| 371 | vtime_delta_kernel(acct, &stime, &stime_scaled); |
| 372 | *field += stime; |
| 373 | #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME |
| 374 | acct->stime_scaled += stime_scaled; |
| 375 | #endif |
| 376 | } |
| 377 | |
| 378 | void vtime_account_softirq(struct task_struct *tsk) |
| 379 | { |
| 380 | struct cpu_accounting_data *acct = get_accounting(tsk); |
| 381 | vtime_account_irq_field(acct, &acct->softirq_time); |
| 382 | } |
| 383 | |
| 384 | void vtime_account_hardirq(struct task_struct *tsk) |
| 385 | { |
| 386 | struct cpu_accounting_data *acct = get_accounting(tsk); |
| 387 | vtime_account_irq_field(acct, &acct->hardirq_time); |
| 388 | } |
| 389 | |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 390 | static void vtime_flush_scaled(struct task_struct *tsk, |
| 391 | struct cpu_accounting_data *acct) |
| 392 | { |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 393 | #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 394 | if (acct->utime_scaled) |
| 395 | tsk->utimescaled += cputime_to_nsecs(acct->utime_scaled); |
| 396 | if (acct->stime_scaled) |
| 397 | tsk->stimescaled += cputime_to_nsecs(acct->stime_scaled); |
| 398 | |
| 399 | acct->utime_scaled = 0; |
| 400 | acct->utime_sspurr = 0; |
| 401 | acct->stime_scaled = 0; |
Christophe Leroy | abcff86 | 2018-08-02 07:53:59 +0000 | [diff] [blame] | 402 | #endif |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 405 | /* |
Frederic Weisbecker | c8d7dab | 2017-01-05 18:11:50 +0100 | [diff] [blame] | 406 | * Account the whole cputime accumulated in the paca |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 407 | * Must be called with interrupts disabled. |
Frederic Weisbecker | f83eeb1 | 2019-10-03 18:17:44 +0200 | [diff] [blame] | 408 | * Assumes that vtime_account_kernel/idle() has been called |
Frederic Weisbecker | bcebdf8 | 2012-11-13 23:51:06 +0100 | [diff] [blame] | 409 | * recently (i.e. since the last entry from usermode) so that |
Paul Mackerras | cf9efce | 2010-08-26 19:56:43 +0000 | [diff] [blame] | 410 | * get_paca()->user_time_scaled is up to date. |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 411 | */ |
Frederic Weisbecker | c8d7dab | 2017-01-05 18:11:50 +0100 | [diff] [blame] | 412 | void vtime_flush(struct task_struct *tsk) |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 413 | { |
Christophe Leroy | c223c90 | 2016-05-17 08:33:46 +0200 | [diff] [blame] | 414 | struct cpu_accounting_data *acct = get_accounting(tsk); |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 415 | |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 416 | if (acct->utime) |
Frederic Weisbecker | 23244a5 | 2017-01-31 04:09:37 +0100 | [diff] [blame] | 417 | account_user_time(tsk, cputime_to_nsecs(acct->utime)); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 418 | |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 419 | if (acct->gtime) |
Frederic Weisbecker | fb8b049 | 2017-01-31 04:09:40 +0100 | [diff] [blame] | 420 | account_guest_time(tsk, cputime_to_nsecs(acct->gtime)); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 421 | |
Christophe Leroy | 51eeef9 | 2018-08-02 07:54:01 +0000 | [diff] [blame] | 422 | if (IS_ENABLED(CONFIG_PPC_SPLPAR) && acct->steal_time) { |
Frederic Weisbecker | be9095e | 2017-01-31 04:09:38 +0100 | [diff] [blame] | 423 | account_steal_time(cputime_to_nsecs(acct->steal_time)); |
Christophe Leroy | 51eeef9 | 2018-08-02 07:54:01 +0000 | [diff] [blame] | 424 | acct->steal_time = 0; |
| 425 | } |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 426 | |
| 427 | if (acct->idle_time) |
Frederic Weisbecker | 18b43a9 | 2017-01-31 04:09:39 +0100 | [diff] [blame] | 428 | account_idle_time(cputime_to_nsecs(acct->idle_time)); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 429 | |
| 430 | if (acct->stime) |
Frederic Weisbecker | fb8b049 | 2017-01-31 04:09:40 +0100 | [diff] [blame] | 431 | account_system_index_time(tsk, cputime_to_nsecs(acct->stime), |
| 432 | CPUTIME_SYSTEM); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 433 | |
| 434 | if (acct->hardirq_time) |
Frederic Weisbecker | fb8b049 | 2017-01-31 04:09:40 +0100 | [diff] [blame] | 435 | account_system_index_time(tsk, cputime_to_nsecs(acct->hardirq_time), |
| 436 | CPUTIME_IRQ); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 437 | if (acct->softirq_time) |
Frederic Weisbecker | fb8b049 | 2017-01-31 04:09:40 +0100 | [diff] [blame] | 438 | account_system_index_time(tsk, cputime_to_nsecs(acct->softirq_time), |
| 439 | CPUTIME_SOFTIRQ); |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 440 | |
Christophe Leroy | b38a181 | 2018-08-02 07:53:57 +0000 | [diff] [blame] | 441 | vtime_flush_scaled(tsk, acct); |
| 442 | |
Frederic Weisbecker | 8c8b73c | 2017-01-05 18:11:45 +0100 | [diff] [blame] | 443 | acct->utime = 0; |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 444 | acct->gtime = 0; |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 445 | acct->idle_time = 0; |
| 446 | acct->stime = 0; |
Frederic Weisbecker | a19ff1a | 2017-01-05 18:11:47 +0100 | [diff] [blame] | 447 | acct->hardirq_time = 0; |
| 448 | acct->softirq_time = 0; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 449 | } |
| 450 | |
Frederic Weisbecker | abf917c | 2012-07-25 07:56:04 +0200 | [diff] [blame] | 451 | #else /* ! CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */ |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 452 | #define calc_cputime_factors() |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 453 | #endif |
| 454 | |
Paul Mackerras | 6defa38 | 2005-11-18 13:44:17 +1100 | [diff] [blame] | 455 | void __delay(unsigned long loops) |
| 456 | { |
| 457 | unsigned long start; |
Paul Mackerras | 6defa38 | 2005-11-18 13:44:17 +1100 | [diff] [blame] | 458 | |
Nicholas Piggin | 4e287e6 | 2017-06-06 23:08:32 +1000 | [diff] [blame] | 459 | spin_begin(); |
Christophe Leroy | a4c5a35 | 2020-09-29 06:48:38 +0000 | [diff] [blame] | 460 | if (tb_invalid) { |
Mahesh Salgaonkar | de26912 | 2019-03-05 01:12:19 +0530 | [diff] [blame] | 461 | /* |
| 462 | * TB is in error state and isn't ticking anymore. |
| 463 | * HMI handler was unable to recover from TB error. |
| 464 | * Return immediately, so that kernel won't get stuck here. |
| 465 | */ |
| 466 | spin_cpu_relax(); |
Paul Mackerras | 6defa38 | 2005-11-18 13:44:17 +1100 | [diff] [blame] | 467 | } else { |
Christophe Leroy | 942e891 | 2020-10-01 12:42:41 +0000 | [diff] [blame] | 468 | start = mftb(); |
| 469 | while (mftb() - start < loops) |
Nicholas Piggin | 4e287e6 | 2017-06-06 23:08:32 +1000 | [diff] [blame] | 470 | spin_cpu_relax(); |
Paul Mackerras | 6defa38 | 2005-11-18 13:44:17 +1100 | [diff] [blame] | 471 | } |
Nicholas Piggin | 4e287e6 | 2017-06-06 23:08:32 +1000 | [diff] [blame] | 472 | spin_end(); |
Paul Mackerras | 6defa38 | 2005-11-18 13:44:17 +1100 | [diff] [blame] | 473 | } |
| 474 | EXPORT_SYMBOL(__delay); |
| 475 | |
| 476 | void udelay(unsigned long usecs) |
| 477 | { |
| 478 | __delay(tb_ticks_per_usec * usecs); |
| 479 | } |
| 480 | EXPORT_SYMBOL(udelay); |
| 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | #ifdef CONFIG_SMP |
| 483 | unsigned long profile_pc(struct pt_regs *regs) |
| 484 | { |
| 485 | unsigned long pc = instruction_pointer(regs); |
| 486 | |
| 487 | if (in_lock_functions(pc)) |
| 488 | return regs->link; |
| 489 | |
| 490 | return pc; |
| 491 | } |
| 492 | EXPORT_SYMBOL(profile_pc); |
| 493 | #endif |
| 494 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 495 | #ifdef CONFIG_IRQ_WORK |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 496 | |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 497 | /* |
| 498 | * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable... |
| 499 | */ |
| 500 | #ifdef CONFIG_PPC64 |
Nicholas Piggin | 25aa145 | 2021-11-23 19:51:45 +1000 | [diff] [blame] | 501 | static inline unsigned long test_irq_work_pending(void) |
| 502 | { |
| 503 | unsigned long x; |
| 504 | |
| 505 | asm volatile("lbz %0,%1(13)" |
| 506 | : "=r" (x) |
| 507 | : "i" (offsetof(struct paca_struct, irq_work_pending))); |
| 508 | return x; |
| 509 | } |
| 510 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 511 | static inline void set_irq_work_pending_flag(void) |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 512 | { |
| 513 | asm volatile("stb %0,%1(13)" : : |
| 514 | "r" (1), |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 515 | "i" (offsetof(struct paca_struct, irq_work_pending))); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 518 | static inline void clear_irq_work_pending(void) |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 519 | { |
| 520 | asm volatile("stb %0,%1(13)" : : |
| 521 | "r" (0), |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 522 | "i" (offsetof(struct paca_struct, irq_work_pending))); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | #else /* 32-bit */ |
| 526 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 527 | DEFINE_PER_CPU(u8, irq_work_pending); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 528 | |
Christoph Lameter | 69111ba | 2014-10-21 15:23:25 -0500 | [diff] [blame] | 529 | #define set_irq_work_pending_flag() __this_cpu_write(irq_work_pending, 1) |
| 530 | #define test_irq_work_pending() __this_cpu_read(irq_work_pending) |
| 531 | #define clear_irq_work_pending() __this_cpu_write(irq_work_pending, 0) |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 532 | |
Nicholas Piggin | abc3fce | 2020-04-02 22:04:01 +1000 | [diff] [blame] | 533 | #endif /* 32 vs 64 bit */ |
| 534 | |
Peter Zijlstra | 4f8b50b | 2011-06-27 17:22:43 +0200 | [diff] [blame] | 535 | void arch_irq_work_raise(void) |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 536 | { |
Nicholas Piggin | abc3fce | 2020-04-02 22:04:01 +1000 | [diff] [blame] | 537 | /* |
| 538 | * 64-bit code that uses irq soft-mask can just cause an immediate |
| 539 | * interrupt here that gets soft masked, if this is called under |
| 540 | * local_irq_disable(). It might be possible to prevent that happening |
| 541 | * by noticing interrupts are disabled and setting decrementer pending |
| 542 | * to be replayed when irqs are enabled. The problem there is that |
| 543 | * tracing can call irq_work_raise, including in code that does low |
| 544 | * level manipulations of irq soft-mask state (e.g., trace_hardirqs_on) |
| 545 | * which could get tangled up if we're messing with the same state |
| 546 | * here. |
| 547 | */ |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 548 | preempt_disable(); |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 549 | set_irq_work_pending_flag(); |
Paul Mackerras | 0fe1ac4 | 2010-04-13 20:46:04 +0000 | [diff] [blame] | 550 | set_dec(1); |
| 551 | preempt_enable(); |
| 552 | } |
| 553 | |
Nicholas Piggin | 25aa145 | 2021-11-23 19:51:45 +1000 | [diff] [blame] | 554 | static void set_dec_or_work(u64 val) |
| 555 | { |
| 556 | set_dec(val); |
| 557 | /* We may have raced with new irq work */ |
| 558 | if (unlikely(test_irq_work_pending())) |
| 559 | set_dec(1); |
| 560 | } |
| 561 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 562 | #else /* CONFIG_IRQ_WORK */ |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 563 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 564 | #define test_irq_work_pending() 0 |
| 565 | #define clear_irq_work_pending() |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 566 | |
Nicholas Piggin | 25aa145 | 2021-11-23 19:51:45 +1000 | [diff] [blame] | 567 | static void set_dec_or_work(u64 val) |
| 568 | { |
| 569 | set_dec(val); |
| 570 | } |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 571 | #endif /* CONFIG_IRQ_WORK */ |
Paul Mackerras | 105988c | 2009-06-17 21:50:04 +1000 | [diff] [blame] | 572 | |
Nicholas Piggin | 25aa145 | 2021-11-23 19:51:45 +1000 | [diff] [blame] | 573 | #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE |
| 574 | void timer_rearm_host_dec(u64 now) |
| 575 | { |
| 576 | u64 *next_tb = this_cpu_ptr(&decrementers_next_tb); |
| 577 | |
| 578 | WARN_ON_ONCE(!arch_irqs_disabled()); |
| 579 | WARN_ON_ONCE(mfmsr() & MSR_EE); |
| 580 | |
| 581 | if (now >= *next_tb) { |
| 582 | local_paca->irq_happened |= PACA_IRQ_DEC; |
| 583 | } else { |
| 584 | now = *next_tb - now; |
| 585 | if (now <= decrementer_max) |
| 586 | set_dec_or_work(now); |
| 587 | } |
| 588 | } |
| 589 | EXPORT_SYMBOL_GPL(timer_rearm_host_dec); |
| 590 | #endif |
| 591 | |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 592 | /* |
| 593 | * timer_interrupt - gets called when the decrementer overflows, |
| 594 | * with interrupts disabled. |
| 595 | */ |
Nicholas Piggin | 3a96570 | 2021-01-30 23:08:38 +1000 | [diff] [blame] | 596 | DEFINE_INTERRUPT_HANDLER_ASYNC(timer_interrupt) |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 597 | { |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 598 | struct clock_event_device *evt = this_cpu_ptr(&decrementers); |
Christoph Lameter | 69111ba | 2014-10-21 15:23:25 -0500 | [diff] [blame] | 599 | u64 *next_tb = this_cpu_ptr(&decrementers_next_tb); |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 600 | struct pt_regs *old_regs; |
| 601 | u64 now; |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 602 | |
Nicholas Piggin | 59d512e | 2020-11-07 11:43:36 +1000 | [diff] [blame] | 603 | /* |
| 604 | * Some implementations of hotplug will get timer interrupts while |
| 605 | * offline, just ignore these. |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 606 | */ |
Nicholas Piggin | a7cba02 | 2018-05-05 03:19:32 +1000 | [diff] [blame] | 607 | if (unlikely(!cpu_online(smp_processor_id()))) { |
Nicholas Piggin | a7cba02 | 2018-05-05 03:19:32 +1000 | [diff] [blame] | 608 | set_dec(decrementer_max); |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 609 | return; |
| 610 | } |
| 611 | |
Nicholas Piggin | 0faf20a | 2021-09-23 00:54:50 +1000 | [diff] [blame] | 612 | /* Conditionally hard-enable interrupts. */ |
| 613 | if (should_hard_irq_enable()) { |
| 614 | /* |
| 615 | * Ensure a positive value is written to the decrementer, or |
| 616 | * else some CPUs will continue to take decrementer exceptions. |
| 617 | * When the PPC_WATCHDOG (decrementer based) is configured, |
| 618 | * keep this at most 31 bits, which is about 4 seconds on most |
| 619 | * systems, which gives the watchdog a chance of catching timer |
| 620 | * interrupt hard lockups. |
| 621 | */ |
| 622 | if (IS_ENABLED(CONFIG_PPC_WATCHDOG)) |
| 623 | set_dec(0x7fffffff); |
| 624 | else |
| 625 | set_dec(decrementer_max); |
Nicholas Piggin | a7cba02 | 2018-05-05 03:19:32 +1000 | [diff] [blame] | 626 | |
Nicholas Piggin | 0faf20a | 2021-09-23 00:54:50 +1000 | [diff] [blame] | 627 | do_hard_irq_enable(); |
| 628 | } |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 629 | |
Paul Bolle | 6e0fdf9 | 2014-05-20 22:24:58 +0200 | [diff] [blame] | 630 | #if defined(CONFIG_PPC32) && defined(CONFIG_PPC_PMAC) |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 631 | if (atomic_read(&ppc_n_lost_interrupts) != 0) |
Christophe Leroy | 9869416 | 2021-08-10 16:13:16 +0000 | [diff] [blame] | 632 | __do_IRQ(regs); |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 633 | #endif |
| 634 | |
| 635 | old_regs = set_irq_regs(regs); |
Nicholas Piggin | 1b1b6a6 | 2021-01-30 23:08:44 +1000 | [diff] [blame] | 636 | |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 637 | trace_timer_interrupt_entry(regs); |
Preeti U Murthy | 1b78395 | 2014-02-26 05:38:01 +0530 | [diff] [blame] | 638 | |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 639 | if (test_irq_work_pending()) { |
| 640 | clear_irq_work_pending(); |
| 641 | irq_work_run(); |
| 642 | } |
| 643 | |
Christophe Leroy | 6601ec1 | 2020-09-29 06:48:39 +0000 | [diff] [blame] | 644 | now = get_tb(); |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 645 | if (now >= *next_tb) { |
| 646 | *next_tb = ~(u64)0; |
| 647 | if (evt->event_handler) |
| 648 | evt->event_handler(evt); |
| 649 | __this_cpu_inc(irq_stat.timer_irqs_event); |
| 650 | } else { |
| 651 | now = *next_tb - now; |
| 652 | if (now <= decrementer_max) |
Nicholas Piggin | 25aa145 | 2021-11-23 19:51:45 +1000 | [diff] [blame] | 653 | set_dec_or_work(now); |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 654 | __this_cpu_inc(irq_stat.timer_irqs_others); |
| 655 | } |
| 656 | |
| 657 | trace_timer_interrupt_exit(regs); |
Nicholas Piggin | 1b1b6a6 | 2021-01-30 23:08:44 +1000 | [diff] [blame] | 658 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 659 | set_irq_regs(old_regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
Al Viro | 9445aa1 | 2016-01-13 23:33:46 -0500 | [diff] [blame] | 661 | EXPORT_SYMBOL(timer_interrupt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
Nicholas Piggin | bc90711 | 2018-05-05 03:19:33 +1000 | [diff] [blame] | 663 | #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 664 | void timer_broadcast_interrupt(void) |
| 665 | { |
| 666 | u64 *next_tb = this_cpu_ptr(&decrementers_next_tb); |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 667 | |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 668 | *next_tb = ~(u64)0; |
| 669 | tick_receive_broadcast(); |
Nicholas Piggin | e360cd3 | 2018-05-05 03:19:35 +1000 | [diff] [blame] | 670 | __this_cpu_inc(irq_stat.broadcast_irqs_event); |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 671 | } |
Nicholas Piggin | bc90711 | 2018-05-05 03:19:33 +1000 | [diff] [blame] | 672 | #endif |
Nicholas Piggin | 3f98462 | 2018-05-05 03:19:31 +1000 | [diff] [blame] | 673 | |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 674 | #ifdef CONFIG_SUSPEND |
Christophe Leroy | e606a2f4 | 2021-08-31 08:29:35 +0000 | [diff] [blame] | 675 | /* Overrides the weak version in kernel/power/main.c */ |
| 676 | void arch_suspend_disable_irqs(void) |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 677 | { |
Christophe Leroy | e606a2f4 | 2021-08-31 08:29:35 +0000 | [diff] [blame] | 678 | if (ppc_md.suspend_disable_irqs) |
| 679 | ppc_md.suspend_disable_irqs(); |
| 680 | |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 681 | /* Disable the decrementer, so that it doesn't interfere |
| 682 | * with suspending. |
| 683 | */ |
| 684 | |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 685 | set_dec(decrementer_max); |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 686 | local_irq_disable(); |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 687 | set_dec(decrementer_max); |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 688 | } |
| 689 | |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 690 | /* Overrides the weak version in kernel/power/main.c */ |
| 691 | void arch_suspend_enable_irqs(void) |
| 692 | { |
Christophe Leroy | e606a2f4 | 2021-08-31 08:29:35 +0000 | [diff] [blame] | 693 | local_irq_enable(); |
| 694 | |
Scott Wood | 7ac5dde | 2007-12-13 04:35:19 +1100 | [diff] [blame] | 695 | if (ppc_md.suspend_enable_irqs) |
| 696 | ppc_md.suspend_enable_irqs(); |
| 697 | } |
| 698 | #endif |
| 699 | |
Paul Mackerras | b6c295d | 2015-03-28 14:21:02 +1100 | [diff] [blame] | 700 | unsigned long long tb_to_ns(unsigned long long ticks) |
| 701 | { |
| 702 | return mulhdu(ticks, tb_to_ns_scale) << tb_to_ns_shift; |
| 703 | } |
| 704 | EXPORT_SYMBOL_GPL(tb_to_ns); |
| 705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | /* |
| 707 | * Scheduler clock - returns current time in nanosec units. |
| 708 | * |
| 709 | * Note: mulhdu(a, b) (multiply high double unsigned) returns |
| 710 | * the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b |
| 711 | * are 64-bit unsigned numbers. |
| 712 | */ |
Santosh Sivaraj | 6b847d7 | 2017-06-20 13:14:47 +0530 | [diff] [blame] | 713 | notrace unsigned long long sched_clock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { |
Tony Breeds | fc9069fe | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 715 | 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] | 716 | } |
| 717 | |
Cyril Bur | 4be1b29 | 2015-02-12 15:01:28 -0800 | [diff] [blame] | 718 | |
| 719 | #ifdef CONFIG_PPC_PSERIES |
| 720 | |
| 721 | /* |
| 722 | * Running clock - attempts to give a view of time passing for a virtualised |
| 723 | * kernels. |
| 724 | * Uses the VTB register if available otherwise a next best guess. |
| 725 | */ |
| 726 | unsigned long long running_clock(void) |
| 727 | { |
| 728 | /* |
| 729 | * Don't read the VTB as a host since KVM does not switch in host |
| 730 | * timebase into the VTB when it takes a guest off the CPU, reading the |
| 731 | * VTB would result in reading 'last switched out' guest VTB. |
| 732 | * |
| 733 | * Host kernels are often compiled with CONFIG_PPC_PSERIES checked, it |
| 734 | * would be unsafe to rely only on the #ifdef above. |
| 735 | */ |
| 736 | if (firmware_has_feature(FW_FEATURE_LPAR) && |
| 737 | cpu_has_feature(CPU_FTR_ARCH_207S)) |
| 738 | return mulhdu(get_vtb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift; |
| 739 | |
| 740 | /* |
| 741 | * This is a next best approximation without a VTB. |
| 742 | * On a host which is running bare metal there should never be any stolen |
| 743 | * time and on a host which doesn't do any virtualisation TB *should* equal |
| 744 | * VTB so it makes no difference anyway. |
| 745 | */ |
Frédéric Weisbecker | 9f3768e | 2017-02-21 16:18:41 +0100 | [diff] [blame] | 746 | return local_clock() - kcpustat_this_cpu->cpustat[CPUTIME_STEAL]; |
Cyril Bur | 4be1b29 | 2015-02-12 15:01:28 -0800 | [diff] [blame] | 747 | } |
| 748 | #endif |
| 749 | |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 750 | static int __init get_freq(char *name, int cells, unsigned long *val) |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 751 | { |
| 752 | struct device_node *cpu; |
Anton Blanchard | 6f7aba7 | 2013-08-07 02:01:34 +1000 | [diff] [blame] | 753 | const __be32 *fp; |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 754 | int found = 0; |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 755 | |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 756 | /* The cpu node should have timebase and clock frequency properties */ |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 757 | cpu = of_find_node_by_type(NULL, "cpu"); |
| 758 | |
Olaf Hering | d8a8188 | 2006-02-04 10:34:56 +0100 | [diff] [blame] | 759 | if (cpu) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 760 | fp = of_get_property(cpu, name, NULL); |
Olaf Hering | d8a8188 | 2006-02-04 10:34:56 +0100 | [diff] [blame] | 761 | if (fp) { |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 762 | found = 1; |
Paul Mackerras | a4dc7ff | 2006-09-19 14:06:27 +1000 | [diff] [blame] | 763 | *val = of_read_ulong(fp, cells); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 764 | } |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 765 | |
| 766 | of_node_put(cpu); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 767 | } |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 768 | |
| 769 | return found; |
| 770 | } |
| 771 | |
Anton Blanchard | e51df2c | 2014-08-20 08:55:18 +1000 | [diff] [blame] | 772 | static void start_cpu_decrementer(void) |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 773 | { |
Christophe Leroy | 047a6fd | 2021-10-19 09:29:25 +0200 | [diff] [blame] | 774 | #ifdef CONFIG_BOOKE_OR_40x |
Ivan Mikhaylov | 6e2f03e | 2017-05-19 18:47:05 +0300 | [diff] [blame] | 775 | unsigned int tcr; |
| 776 | |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 777 | /* Clear any pending timer interrupts */ |
| 778 | mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_DIS | TSR_FIS); |
| 779 | |
Ivan Mikhaylov | 6e2f03e | 2017-05-19 18:47:05 +0300 | [diff] [blame] | 780 | tcr = mfspr(SPRN_TCR); |
| 781 | /* |
| 782 | * The watchdog may have already been enabled by u-boot. So leave |
| 783 | * TRC[WP] (Watchdog Period) alone. |
| 784 | */ |
| 785 | tcr &= TCR_WP_MASK; /* Clear all bits except for TCR[WP] */ |
| 786 | tcr |= TCR_DIE; /* Enable decrementer */ |
| 787 | mtspr(SPRN_TCR, tcr); |
| 788 | #endif |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 789 | } |
| 790 | |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 791 | void __init generic_calibrate_decr(void) |
| 792 | { |
| 793 | ppc_tb_freq = DEFAULT_TB_FREQ; /* hardcoded default */ |
| 794 | |
| 795 | if (!get_freq("ibm,extended-timebase-frequency", 2, &ppc_tb_freq) && |
| 796 | !get_freq("timebase-frequency", 1, &ppc_tb_freq)) { |
| 797 | |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 798 | printk(KERN_ERR "WARNING: Estimating decrementer frequency " |
| 799 | "(not found)\n"); |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 800 | } |
Anton Blanchard | 0bb474a4 | 2006-06-20 18:47:26 +1000 | [diff] [blame] | 801 | |
| 802 | ppc_proc_freq = DEFAULT_PROC_FREQ; /* hardcoded default */ |
| 803 | |
| 804 | if (!get_freq("ibm,extended-clock-frequency", 2, &ppc_proc_freq) && |
| 805 | !get_freq("clock-frequency", 1, &ppc_proc_freq)) { |
| 806 | |
| 807 | printk(KERN_ERR "WARNING: Estimating processor frequency " |
| 808 | "(not found)\n"); |
| 809 | } |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 810 | } |
Arnd Bergmann | 10f7e7c | 2005-06-23 09:43:07 +1000 | [diff] [blame] | 811 | |
Arnd Bergmann | 5235afa | 2018-04-23 10:36:41 +0200 | [diff] [blame] | 812 | int update_persistent_clock64(struct timespec64 now) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 813 | { |
| 814 | struct rtc_time tm; |
| 815 | |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 816 | if (!ppc_md.set_rtc_time) |
Jason Gunthorpe | 023f333 | 2012-12-17 14:30:53 -0700 | [diff] [blame] | 817 | return -ENODEV; |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 818 | |
Arnd Bergmann | 5235afa | 2018-04-23 10:36:41 +0200 | [diff] [blame] | 819 | rtc_time64_to_tm(now.tv_sec + 1 + timezone_offset, &tm); |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 820 | |
| 821 | return ppc_md.set_rtc_time(&tm); |
| 822 | } |
| 823 | |
Arnd Bergmann | 5bfd643 | 2018-04-23 10:36:40 +0200 | [diff] [blame] | 824 | static void __read_persistent_clock(struct timespec64 *ts) |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 825 | { |
| 826 | struct rtc_time tm; |
| 827 | static int first = 1; |
| 828 | |
Martin Schwidefsky | d90246c | 2009-08-22 22:23:13 +0200 | [diff] [blame] | 829 | ts->tv_nsec = 0; |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 830 | /* XXX this is a litle fragile but will work okay in the short term */ |
| 831 | if (first) { |
| 832 | first = 0; |
| 833 | if (ppc_md.time_init) |
| 834 | timezone_offset = ppc_md.time_init(); |
| 835 | |
| 836 | /* get_boot_time() isn't guaranteed to be safe to call late */ |
Martin Schwidefsky | d90246c | 2009-08-22 22:23:13 +0200 | [diff] [blame] | 837 | if (ppc_md.get_boot_time) { |
| 838 | ts->tv_sec = ppc_md.get_boot_time() - timezone_offset; |
| 839 | return; |
| 840 | } |
Tony Breeds | aa3be5f | 2007-09-21 13:26:02 +1000 | [diff] [blame] | 841 | } |
Martin Schwidefsky | d90246c | 2009-08-22 22:23:13 +0200 | [diff] [blame] | 842 | if (!ppc_md.get_rtc_time) { |
| 843 | ts->tv_sec = 0; |
| 844 | return; |
| 845 | } |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 846 | ppc_md.get_rtc_time(&tm); |
Benjamin Herrenschmidt | 978d7eb | 2009-11-01 19:11:03 +0000 | [diff] [blame] | 847 | |
Arnd Bergmann | 5bfd643 | 2018-04-23 10:36:40 +0200 | [diff] [blame] | 848 | ts->tv_sec = rtc_tm_to_time64(&tm); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 849 | } |
| 850 | |
Arnd Bergmann | 5bfd643 | 2018-04-23 10:36:40 +0200 | [diff] [blame] | 851 | void read_persistent_clock64(struct timespec64 *ts) |
Benjamin Herrenschmidt | 978d7eb | 2009-11-01 19:11:03 +0000 | [diff] [blame] | 852 | { |
| 853 | __read_persistent_clock(ts); |
| 854 | |
| 855 | /* Sanitize it in case real time clock is set below EPOCH */ |
| 856 | if (ts->tv_sec < 0) { |
| 857 | ts->tv_sec = 0; |
| 858 | ts->tv_nsec = 0; |
| 859 | } |
| 860 | |
| 861 | } |
| 862 | |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 863 | /* clocksource code */ |
Santosh Sivaraj | 6b847d7 | 2017-06-20 13:14:47 +0530 | [diff] [blame] | 864 | static notrace u64 timebase_read(struct clocksource *cs) |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 865 | { |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 866 | return (u64)get_tb(); |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 867 | } |
| 868 | |
Michael Ellerman | 1c21a29 | 2008-05-08 14:27:19 +1000 | [diff] [blame] | 869 | static void __init clocksource_init(void) |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 870 | { |
Christophe Leroy | a4c5a35 | 2020-09-29 06:48:38 +0000 | [diff] [blame] | 871 | struct clocksource *clock = &clocksource_timebase; |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 872 | |
Anton Blanchard | 11b8633 | 2011-11-23 20:07:19 +0000 | [diff] [blame] | 873 | if (clocksource_register_hz(clock, tb_ticks_per_sec)) { |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 874 | 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 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 883 | static int decrementer_set_next_event(unsigned long evt, |
| 884 | struct clock_event_device *dev) |
| 885 | { |
Christophe Leroy | 6601ec1 | 2020-09-29 06:48:39 +0000 | [diff] [blame] | 886 | __this_cpu_write(decrementers_next_tb, get_tb() + evt); |
Nicholas Piggin | 25aa145 | 2021-11-23 19:51:45 +1000 | [diff] [blame] | 887 | set_dec_or_work(evt); |
Benjamin Herrenschmidt | 0215f7d | 2014-01-14 17:11:39 +1100 | [diff] [blame] | 888 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 889 | return 0; |
| 890 | } |
| 891 | |
Viresh Kumar | 37a13e7 | 2015-07-16 16:56:25 +0530 | [diff] [blame] | 892 | static int decrementer_shutdown(struct clock_event_device *dev) |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 893 | { |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 894 | decrementer_set_next_event(decrementer_max, dev); |
Viresh Kumar | 37a13e7 | 2015-07-16 16:56:25 +0530 | [diff] [blame] | 895 | return 0; |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | static void register_decrementer_clockevent(int cpu) |
| 899 | { |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame] | 900 | struct clock_event_device *dec = &per_cpu(decrementers, cpu); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 901 | |
| 902 | *dec = decrementer_clockevent; |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 903 | dec->cpumask = cpumask_of(cpu); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 904 | |
Anton Blanchard | 8b78fdb | 2018-10-02 09:01:04 +1000 | [diff] [blame] | 905 | clockevents_config_and_register(dec, ppc_tb_freq, 2, decrementer_max); |
| 906 | |
Anton Blanchard | b919ee8 | 2010-02-07 19:26:29 +0000 | [diff] [blame] | 907 | printk_once(KERN_DEBUG "clockevent: %s mult[%x] shift[%d] cpu[%d]\n", |
| 908 | dec->name, dec->mult, dec->shift, cpu); |
Michael Ellerman | b4d16ab | 2018-10-17 23:39:41 +1100 | [diff] [blame] | 909 | |
| 910 | /* Set values for KVM, see kvm_emulate_dec() */ |
| 911 | decrementer_clockevent.mult = dec->mult; |
| 912 | decrementer_clockevent.shift = dec->shift; |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 913 | } |
| 914 | |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 915 | static void enable_large_decrementer(void) |
| 916 | { |
| 917 | if (!cpu_has_feature(CPU_FTR_ARCH_300)) |
| 918 | return; |
| 919 | |
| 920 | if (decrementer_max <= DECREMENTER_DEFAULT_MAX) |
| 921 | return; |
| 922 | |
| 923 | /* |
| 924 | * If we're running as the hypervisor we need to enable the LD manually |
| 925 | * otherwise firmware should have done it for us. |
| 926 | */ |
| 927 | if (cpu_has_feature(CPU_FTR_HVMODE)) |
| 928 | mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_LD); |
| 929 | } |
| 930 | |
| 931 | static void __init set_decrementer_max(void) |
| 932 | { |
| 933 | struct device_node *cpu; |
| 934 | u32 bits = 32; |
| 935 | |
| 936 | /* Prior to ISAv3 the decrementer is always 32 bit */ |
| 937 | if (!cpu_has_feature(CPU_FTR_ARCH_300)) |
| 938 | return; |
| 939 | |
| 940 | cpu = of_find_node_by_type(NULL, "cpu"); |
| 941 | |
| 942 | if (of_property_read_u32(cpu, "ibm,dec-bits", &bits) == 0) { |
| 943 | if (bits > 64 || bits < 32) { |
| 944 | pr_warn("time_init: firmware supplied invalid ibm,dec-bits"); |
| 945 | bits = 32; |
| 946 | } |
| 947 | |
| 948 | /* calculate the signed maximum given this many bits */ |
| 949 | decrementer_max = (1ul << (bits - 1)) - 1; |
| 950 | } |
| 951 | |
| 952 | of_node_put(cpu); |
| 953 | |
| 954 | pr_info("time_init: %u bit decrementer (max: %llx)\n", |
| 955 | bits, decrementer_max); |
| 956 | } |
| 957 | |
Milton Miller | c481887 | 2007-12-14 15:52:10 +1100 | [diff] [blame] | 958 | static void __init init_decrementer_clockevent(void) |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 959 | { |
Anton Blanchard | 8b78fdb | 2018-10-02 09:01:04 +1000 | [diff] [blame] | 960 | register_decrementer_clockevent(smp_processor_id()); |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 961 | } |
| 962 | |
| 963 | void secondary_cpu_time_init(void) |
| 964 | { |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 965 | /* Enable and test the large decrementer for this cpu */ |
| 966 | enable_large_decrementer(); |
| 967 | |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 968 | /* Start the decrementer on CPUs that have manual control |
| 969 | * such as BookE |
| 970 | */ |
| 971 | start_cpu_decrementer(); |
| 972 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 973 | /* FIME: Should make unrelatred change to move snapshot_timebase |
| 974 | * call here ! */ |
| 975 | register_decrementer_clockevent(smp_processor_id()); |
| 976 | } |
| 977 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 978 | /* This function is only called on the boot processor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | void __init time_init(void) |
| 980 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | struct div_result res; |
Paul Mackerras | d75d68c | 2010-06-20 19:04:14 +0000 | [diff] [blame] | 982 | u64 scale; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 983 | unsigned shift; |
| 984 | |
Christophe Leroy | a4c5a35 | 2020-09-29 06:48:38 +0000 | [diff] [blame] | 985 | /* Normal PowerPC with timebase register */ |
| 986 | ppc_md.calibrate_decr(); |
| 987 | printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n", |
| 988 | ppc_tb_freq / 1000000, ppc_tb_freq % 1000000); |
| 989 | printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n", |
| 990 | ppc_proc_freq / 1000000, ppc_proc_freq % 1000000); |
Paul Mackerras | 374e99d | 2005-10-20 21:04:51 +1000 | [diff] [blame] | 991 | |
| 992 | tb_ticks_per_jiffy = ppc_tb_freq / HZ; |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 993 | tb_ticks_per_sec = ppc_tb_freq; |
Paul Mackerras | 374e99d | 2005-10-20 21:04:51 +1000 | [diff] [blame] | 994 | tb_ticks_per_usec = ppc_tb_freq / 1000000; |
Paul Mackerras | c6622f6 | 2006-02-24 10:06:59 +1100 | [diff] [blame] | 995 | calc_cputime_factors(); |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 996 | |
| 997 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | * Compute scale factor for sched_clock. |
| 999 | * The calibrate_decr() function has set tb_ticks_per_sec, |
| 1000 | * which is the timebase frequency. |
| 1001 | * We compute 1e9 * 2^64 / tb_ticks_per_sec and interpret |
| 1002 | * the 128-bit result as a 64.64 fixed-point number. |
| 1003 | * We then shift that number right until it is less than 1.0, |
| 1004 | * giving us the scale factor and shift count to use in |
| 1005 | * sched_clock(). |
| 1006 | */ |
| 1007 | div128_by_32(1000000000, 0, tb_ticks_per_sec, &res); |
| 1008 | scale = res.result_low; |
| 1009 | for (shift = 0; res.result_high != 0; ++shift) { |
| 1010 | scale = (scale >> 1) | (res.result_high << 63); |
| 1011 | res.result_high >>= 1; |
| 1012 | } |
| 1013 | tb_to_ns_scale = scale; |
| 1014 | tb_to_ns_shift = shift; |
Tony Breeds | fc9069fe | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 1015 | /* Save the current timebase to pretty up CONFIG_PRINTK_TIME */ |
Christophe Leroy | 6601ec1 | 2020-09-29 06:48:39 +0000 | [diff] [blame] | 1016 | boot_tb = get_tb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 1018 | /* If platform provided a timezone (pmac), we correct the time */ |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 1019 | if (timezone_offset) { |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 1020 | sys_tz.tz_minuteswest = -timezone_offset / 60; |
| 1021 | sys_tz.tz_dsttime = 0; |
Anton Blanchard | 621692c | 2011-11-23 20:07:21 +0000 | [diff] [blame] | 1022 | } |
Paul Mackerras | 092b8f3 | 2006-02-20 10:38:56 +1100 | [diff] [blame] | 1023 | |
Benjamin Herrenschmidt | a7f290d | 2005-11-11 21:15:21 +1100 | [diff] [blame] | 1024 | vdso_data->tb_ticks_per_sec = tb_ticks_per_sec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame] | 1026 | /* initialise and enable the large decrementer (if we have one) */ |
| 1027 | set_decrementer_max(); |
| 1028 | enable_large_decrementer(); |
| 1029 | |
Benjamin Herrenschmidt | 77c0a70 | 2009-08-28 14:25:04 +1000 | [diff] [blame] | 1030 | /* Start the decrementer on CPUs that have manual control |
| 1031 | * such as BookE |
| 1032 | */ |
| 1033 | start_cpu_decrementer(); |
| 1034 | |
Stephen Rothwell | f533927 | 2012-03-15 18:18:00 +0000 | [diff] [blame] | 1035 | /* Register the clocksource */ |
| 1036 | clocksource_init(); |
Tony Breeds | 4a4cfe3 | 2007-09-22 07:35:52 +1000 | [diff] [blame] | 1037 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 1038 | init_decrementer_clockevent(); |
Preeti U Murthy | 0d94873 | 2014-02-26 05:39:06 +0530 | [diff] [blame] | 1039 | tick_setup_hrtimer_broadcast(); |
Kevin Hao | f0d3730 | 2014-12-03 16:53:52 +0800 | [diff] [blame] | 1040 | |
Kevin Hao | f0d3730 | 2014-12-03 16:53:52 +0800 | [diff] [blame] | 1041 | of_clk_init(NULL); |
Pingfan Liu | b709e32 | 2020-10-22 14:51:19 +0800 | [diff] [blame] | 1042 | enable_sched_clock_irqtime(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | /* |
| 1046 | * Divide a 128-bit dividend by a 32-bit divisor, leaving a 128 bit |
| 1047 | * result. |
| 1048 | */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1049 | void div128_by_32(u64 dividend_high, u64 dividend_low, |
| 1050 | unsigned divisor, struct div_result *dr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | { |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1052 | unsigned long a, b, c, d; |
| 1053 | unsigned long w, x, y, z; |
| 1054 | u64 ra, rb, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
| 1056 | a = dividend_high >> 32; |
| 1057 | b = dividend_high & 0xffffffff; |
| 1058 | c = dividend_low >> 32; |
| 1059 | d = dividend_low & 0xffffffff; |
| 1060 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1061 | w = a / divisor; |
| 1062 | ra = ((u64)(a - (w * divisor)) << 32) + b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1064 | rb = ((u64) do_div(ra, divisor) << 32) + c; |
| 1065 | x = ra; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1067 | rc = ((u64) do_div(rb, divisor) << 32) + d; |
| 1068 | y = rb; |
| 1069 | |
| 1070 | do_div(rc, divisor); |
| 1071 | z = rc; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1072 | |
| 1073 | dr->result_high = ((u64)w << 32) + x; |
| 1074 | dr->result_low = ((u64)y << 32) + z; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | |
| 1076 | } |
Geert Uytterhoeven | bcd68a7 | 2009-02-19 16:50:46 +0100 | [diff] [blame] | 1077 | |
Benjamin Herrenschmidt | 177996e | 2009-06-09 21:12:00 +0000 | [diff] [blame] | 1078 | /* We don't need to calibrate delay, we use the CPU timebase for that */ |
| 1079 | void calibrate_delay(void) |
| 1080 | { |
| 1081 | /* Some generic code (such as spinlock debug) use loops_per_jiffy |
| 1082 | * as the number of __delay(1) in a jiffy, so make it so |
| 1083 | */ |
| 1084 | loops_per_jiffy = tb_ticks_per_jiffy; |
| 1085 | } |
| 1086 | |
Arnd Bergmann | 169047f | 2016-05-30 20:58:00 +0200 | [diff] [blame] | 1087 | #if IS_ENABLED(CONFIG_RTC_DRV_GENERIC) |
| 1088 | static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm) |
| 1089 | { |
| 1090 | ppc_md.get_rtc_time(tm); |
Alexandre Belloni | 890ae79 | 2018-02-21 22:46:33 +0100 | [diff] [blame] | 1091 | return 0; |
Arnd Bergmann | 169047f | 2016-05-30 20:58:00 +0200 | [diff] [blame] | 1092 | } |
| 1093 | |
| 1094 | static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm) |
| 1095 | { |
| 1096 | if (!ppc_md.set_rtc_time) |
| 1097 | return -EOPNOTSUPP; |
| 1098 | |
| 1099 | if (ppc_md.set_rtc_time(tm) < 0) |
| 1100 | return -EOPNOTSUPP; |
| 1101 | |
| 1102 | return 0; |
| 1103 | } |
| 1104 | |
| 1105 | static const struct rtc_class_ops rtc_generic_ops = { |
| 1106 | .read_time = rtc_generic_get_time, |
| 1107 | .set_time = rtc_generic_set_time, |
| 1108 | }; |
| 1109 | |
Geert Uytterhoeven | bcd68a7 | 2009-02-19 16:50:46 +0100 | [diff] [blame] | 1110 | static int __init rtc_init(void) |
| 1111 | { |
| 1112 | struct platform_device *pdev; |
| 1113 | |
| 1114 | if (!ppc_md.get_rtc_time) |
| 1115 | return -ENODEV; |
| 1116 | |
Arnd Bergmann | 169047f | 2016-05-30 20:58:00 +0200 | [diff] [blame] | 1117 | pdev = platform_device_register_data(NULL, "rtc-generic", -1, |
| 1118 | &rtc_generic_ops, |
| 1119 | sizeof(rtc_generic_ops)); |
Geert Uytterhoeven | bcd68a7 | 2009-02-19 16:50:46 +0100 | [diff] [blame] | 1120 | |
Rusty Russell | 8c6ffba | 2013-07-15 11:20:32 +0930 | [diff] [blame] | 1121 | return PTR_ERR_OR_ZERO(pdev); |
Geert Uytterhoeven | bcd68a7 | 2009-02-19 16:50:46 +0100 | [diff] [blame] | 1122 | } |
| 1123 | |
Paul Gortmaker | 8f6b951 | 2015-05-01 20:05:49 -0400 | [diff] [blame] | 1124 | device_initcall(rtc_init); |
Arnd Bergmann | 169047f | 2016-05-30 20:58:00 +0200 | [diff] [blame] | 1125 | #endif |