blob: cd0b8b71ecddc15b9250b326b1e03a36b26e96c2 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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 Rothwellf5339272012-03-15 18:18:00 +000021 * measurement at boot time.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * - 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 Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040031#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/sched.h>
Ingo Molnare6017572017-02-01 16:36:40 +010033#include <linux/sched/clock.h>
Wan Jiabinge225c4d2021-03-23 14:29:05 +080034#include <linux/sched/cputime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#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 Torvalds1da177e2005-04-16 15:20:36 -070042#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 Mackerrasf2783c12005-10-20 09:23:26 +100047#include <linux/percpu.h>
48#include <linux/rtc.h>
Paul Mackerras092b8f32006-02-20 10:38:56 +110049#include <linux/jiffies.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110050#include <linux/posix-timers.h>
David Howells7d12e782006-10-05 14:55:46 +010051#include <linux/irq.h>
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +000052#include <linux/delay.h>
Peter Zijlstrae360adb2010-10-14 14:01:34 +080053#include <linux/irq_work.h>
Geert Uytterhoeven60083062020-02-13 09:38:04 +010054#include <linux/of_clk.h>
Daniel Axtens7f92bc52016-01-06 11:45:51 +110055#include <linux/suspend.h>
Nicholas Piggin4e287e62017-06-06 23:08:32 +100056#include <linux/processor.h>
Anton Blanchard6795b852009-10-26 18:49:14 +000057#include <asm/trace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Nicholas Piggin3a965702021-01-30 23:08:38 +100059#include <asm/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/nvram.h>
62#include <asm/cache.h>
63#include <asm/machdep.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080064#include <linux/uaccess.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100065#include <asm/time.h>
66#include <asm/prom.h>
67#include <asm/irq.h>
68#include <asm/div64.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110069#include <asm/smp.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110070#include <asm/vdso_datapage.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100071#include <asm/firmware.h>
Daniel Axtens0545d542016-09-06 15:32:43 +100072#include <asm/asm-prototypes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Tony Breeds4a4cfe32007-09-22 07:35:52 +100074/* powerpc clocksource/clockevent code */
75
Tony Breedsd831d0b2007-09-21 13:26:03 +100076#include <linux/clockchips.h>
John Stultz189374a2012-09-04 15:27:48 -040077#include <linux/timekeeper_internal.h>
Tony Breeds4a4cfe32007-09-22 07:35:52 +100078
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010079static u64 timebase_read(struct clocksource *);
Tony Breeds4a4cfe32007-09-22 07:35:52 +100080static struct clocksource clocksource_timebase = {
81 .name = "timebase",
82 .rating = 400,
83 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
84 .mask = CLOCKSOURCE_MASK(64),
Tony Breeds4a4cfe32007-09-22 07:35:52 +100085 .read = timebase_read,
Christophe Leroyab037dd2020-11-27 00:10:05 +110086 .vdso_clock_mode = VDSO_CLOCKMODE_ARCHTIMER,
Tony Breeds4a4cfe32007-09-22 07:35:52 +100087};
88
Oliver O'Halloran799010242016-07-01 16:20:39 +100089#define DECREMENTER_DEFAULT_MAX 0x7FFFFFFF
90u64 decrementer_max = DECREMENTER_DEFAULT_MAX;
Nicholas Piggin95819912021-11-23 19:51:43 +100091EXPORT_SYMBOL_GPL(decrementer_max); /* for KVM HDEC */
Tony Breedsd831d0b2007-09-21 13:26:03 +100092
93static int decrementer_set_next_event(unsigned long evt,
94 struct clock_event_device *dev);
Viresh Kumar37a13e72015-07-16 16:56:25 +053095static int decrementer_shutdown(struct clock_event_device *evt);
Tony Breedsd831d0b2007-09-21 13:26:03 +100096
Bharat Bhushan6e359942012-04-18 06:01:19 +000097struct clock_event_device decrementer_clockevent = {
Viresh Kumar37a13e72015-07-16 16:56:25 +053098 .name = "decrementer",
99 .rating = 200,
100 .irq = 0,
101 .set_next_event = decrementer_set_next_event,
Anton Blanchard817593602018-10-02 09:01:05 +1000102 .set_state_oneshot_stopped = decrementer_shutdown,
Viresh Kumar37a13e72015-07-16 16:56:25 +0530103 .set_state_shutdown = decrementer_shutdown,
104 .tick_resume = decrementer_shutdown,
105 .features = CLOCK_EVT_FEAT_ONESHOT |
106 CLOCK_EVT_FEAT_C3STOP,
Tony Breedsd831d0b2007-09-21 13:26:03 +1000107};
Bharat Bhushan6e359942012-04-18 06:01:19 +0000108EXPORT_SYMBOL(decrementer_clockevent);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000109
Anton Blanchard7df10272011-11-23 20:07:22 +0000110DEFINE_PER_CPU(u64, decrementers_next_tb);
Nicholas Piggin4ebbd072021-11-23 19:51:42 +1000111EXPORT_SYMBOL_GPL(decrementers_next_tb);
Anton Blanchard7df10272011-11-23 20:07:22 +0000112static DEFINE_PER_CPU(struct clock_event_device, decrementers);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define XSEC_PER_SEC (1024*1024)
115
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000116#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 Torvalds1da177e2005-04-16 15:20:36 -0700123unsigned long tb_ticks_per_jiffy;
124unsigned long tb_ticks_per_usec = 100; /* sane default */
125EXPORT_SYMBOL(tb_ticks_per_usec);
126unsigned long tb_ticks_per_sec;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100127EXPORT_SYMBOL(tb_ticks_per_sec); /* for cputime_t conversions */
Paul Mackerras092b8f32006-02-20 10:38:56 +1100128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129DEFINE_SPINLOCK(rtc_lock);
Benjamin Herrenschmidt6ae3db12005-06-27 14:36:35 -0700130EXPORT_SYMBOL_GPL(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000132static u64 tb_to_ns_scale __read_mostly;
133static unsigned tb_to_ns_shift __read_mostly;
Heiko Schocher364a1242010-11-22 21:30:33 +0000134static u64 boot_tb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136extern struct timezone sys_tz;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000137static long timezone_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000139unsigned long ppc_proc_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500140EXPORT_SYMBOL_GPL(ppc_proc_freq);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000141unsigned long ppc_tb_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500142EXPORT_SYMBOL_GPL(ppc_tb_freq);
Paul Mackerras96c44502005-10-23 17:14:56 +1000143
Mahesh Salgaonkarde269122019-03-05 01:12:19 +0530144bool tb_invalid;
145
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200146#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100147/*
Frederic Weisbeckere7f340c2017-01-31 04:09:48 +0100148 * Factor for converting from cputime_t (timebase ticks) to
149 * microseconds. This is stored as 0.64 fixed-point binary fraction.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100150 */
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000151u64 __cputime_usec_factor;
152EXPORT_SYMBOL(__cputime_usec_factor);
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200153
Christophe Leroyc223c902016-05-17 08:33:46 +0200154#ifdef CONFIG_PPC_SPLPAR
Paul Mackerras872e4392010-08-31 01:59:53 +0000155void (*dtl_consumer)(struct dtl_entry *, u64);
Christophe Leroyc223c902016-05-17 08:33:46 +0200156#endif
157
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100158static void calc_cputime_factors(void)
159{
160 struct div_result res;
161
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000162 div128_by_32(1000000, 0, tb_ticks_per_sec, &res);
163 __cputime_usec_factor = res.result_low;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100164}
165
166/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000167 * 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 Mackerrasc6622f62006-02-24 10:06:59 +1100169 */
Christophe Leroyabcff862018-08-02 07:53:59 +0000170static inline unsigned long read_spurr(unsigned long tb)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100171{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000172 if (cpu_has_feature(CPU_FTR_SPURR))
173 return mfspr(SPRN_SPURR);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100174 if (cpu_has_feature(CPU_FTR_PURR))
175 return mfspr(SPRN_PURR);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000176 return tb;
177}
178
179#ifdef CONFIG_PPC_SPLPAR
180
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +0200181#include <asm/dtl.h>
182
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000183/*
184 * Scan the dispatch trace log and count up the stolen time.
185 * Should be called with interrupts disabled.
186 */
187static u64 scan_dispatch_log(u64 stop_tb)
188{
Paul Mackerras872e4392010-08-31 01:59:53 +0000189 u64 i = local_paca->dtl_ridx;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000190 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 Blanchard84ffae52011-04-07 21:44:21 +0000197 if (!dtl)
198 return 0;
199
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000200 if (i == be64_to_cpu(vpa->dtl_idx))
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000201 return 0;
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000202 while (i < be64_to_cpu(vpa->dtl_idx)) {
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000203 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 Mackerrascf9efce2010-08-26 19:56:43 +0000206 barrier();
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000207 if (i + N_DISPATCH_LOG < be64_to_cpu(vpa->dtl_idx)) {
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000208 /* buffer has overflowed */
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000209 i = be64_to_cpu(vpa->dtl_idx) - N_DISPATCH_LOG;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000210 dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG);
211 continue;
212 }
213 if (dtb > stop_tb)
214 break;
Anton Blanchard84b07382013-11-17 11:39:05 +1100215 if (dtl_consumer)
216 dtl_consumer(dtl, i);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000217 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 Mackerrasc6622f62006-02-24 10:06:59 +1100226}
227
228/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000229 * Accumulate stolen time by scanning the dispatch trace log.
230 * Called on entry from user mode.
Michael Neuling4603ac12007-10-18 03:06:37 -0700231 */
Michael Ellermaneb8e20f2019-10-13 21:23:51 +1100232void notrace accumulate_stolen_time(void)
Michael Neuling4603ac12007-10-18 03:06:37 -0700233{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000234 u64 sst, ust;
Christophe Leroyc223c902016-05-17 08:33:46 +0200235 struct cpu_accounting_data *acct = &local_paca->accounting;
Tejun Heob18ae082011-01-03 03:49:25 +0000236
Christophe Leroyc223c902016-05-17 08:33:46 +0200237 sst = scan_dispatch_log(acct->starttime_user);
238 ust = scan_dispatch_log(acct->starttime);
Frederic Weisbecker8c8b73c2017-01-05 18:11:45 +0100239 acct->stime -= sst;
240 acct->utime -= ust;
Frederic Weisbeckerf828c3d2017-01-05 18:11:46 +0100241 acct->steal_time += ust + sst;
Michael Neuling4603ac12007-10-18 03:06:37 -0700242}
243
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000244static inline u64 calculate_stolen_time(u64 stop_tb)
245{
Aneesh Kumar K.Va6201da2018-04-02 13:03:37 +0530246 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
247 return 0;
248
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100249 if (get_paca()->dtl_ridx != be64_to_cpu(get_lppaca()->dtl_idx))
250 return scan_dispatch_log(stop_tb);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000251
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100252 return 0;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000253}
254
255#else /* CONFIG_PPC_SPLPAR */
256static inline u64 calculate_stolen_time(u64 stop_tb)
257{
258 return 0;
259}
260
261#endif /* CONFIG_PPC_SPLPAR */
262
Michael Neuling4603ac12007-10-18 03:06:37 -0700263/*
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100264 * Account time for a transition between system, hard irq
265 * or soft irq state.
266 */
Christophe Leroyb38a1812018-08-02 07:53:57 +0000267static unsigned long vtime_delta_scaled(struct cpu_accounting_data *acct,
268 unsigned long now, unsigned long stime)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100269{
Christophe Leroyabcff862018-08-02 07:53:59 +0000270 unsigned long stime_scaled = 0;
271#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Christophe Leroyb38a1812018-08-02 07:53:57 +0000272 unsigned long nowscaled, deltascaled;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100273 unsigned long utime, utime_scaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100274
Michael Neuling4603ac12007-10-18 03:06:37 -0700275 nowscaled = read_spurr(now);
Christophe Leroyc223c902016-05-17 08:33:46 +0200276 deltascaled = nowscaled - acct->startspurr;
277 acct->startspurr = nowscaled;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100278 utime = acct->utime - acct->utime_sspurr;
Frederic Weisbecker8c8b73c2017-01-05 18:11:45 +0100279 acct->utime_sspurr = acct->utime;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000280
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 Leroyb38a1812018-08-02 07:53:57 +0000291 stime_scaled = stime;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100292 utime_scaled = utime;
293 if (deltascaled != stime + utime) {
294 if (utime) {
Christophe Leroyb38a1812018-08-02 07:53:57 +0000295 stime_scaled = deltascaled * stime / (stime + utime);
296 utime_scaled = deltascaled - stime_scaled;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000297 } else {
Christophe Leroyb38a1812018-08-02 07:53:57 +0000298 stime_scaled = deltascaled;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000299 }
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100300 }
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100301 acct->utime_scaled += utime_scaled;
Christophe Leroyabcff862018-08-02 07:53:59 +0000302#endif
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000303
Christophe Leroyb38a1812018-08-02 07:53:57 +0000304 return stime_scaled;
305}
306
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100307static unsigned long vtime_delta(struct cpu_accounting_data *acct,
Christophe Leroyb38a1812018-08-02 07:53:57 +0000308 unsigned long *stime_scaled,
309 unsigned long *steal_time)
310{
311 unsigned long now, stime;
Christophe Leroyb38a1812018-08-02 07:53:57 +0000312
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 Weisbeckera19ff1a2017-01-05 18:11:47 +0100323 return stime;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100324}
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200325
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100326static 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 Weisbeckerf83eeb12019-10-03 18:17:44 +0200336void vtime_account_kernel(struct task_struct *tsk)
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200337{
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100338 struct cpu_accounting_data *acct = get_accounting(tsk);
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100339 unsigned long stime, stime_scaled;
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200340
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100341 vtime_delta_kernel(acct, &stime, &stime_scaled);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100342
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100343 if (tsk->flags & PF_VCPU) {
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100344 acct->gtime += stime;
Christophe Leroyabcff862018-08-02 07:53:59 +0000345#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100346 acct->utime_scaled += stime_scaled;
Christophe Leroyabcff862018-08-02 07:53:59 +0000347#endif
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100348 } else {
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100349 acct->stime += stime;
Christophe Leroyabcff862018-08-02 07:53:59 +0000350#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100351 acct->stime_scaled += stime_scaled;
Christophe Leroyabcff862018-08-02 07:53:59 +0000352#endif
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100353 }
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200354}
Frederic Weisbeckerf83eeb12019-10-03 18:17:44 +0200355EXPORT_SYMBOL_GPL(vtime_account_kernel);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200356
Frederic Weisbeckerfd25b4c2012-11-13 18:21:22 +0100357void vtime_account_idle(struct task_struct *tsk)
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200358{
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100359 unsigned long stime, stime_scaled, steal_time;
360 struct cpu_accounting_data *acct = get_accounting(tsk);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200361
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100362 stime = vtime_delta(acct, &stime_scaled, &steal_time);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100363 acct->idle_time += stime + steal_time;
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200364}
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100365
Frederic Weisbecker8a6a5922020-12-02 12:57:30 +0100366static 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
378void 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
384void 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 Leroyb38a1812018-08-02 07:53:57 +0000390static void vtime_flush_scaled(struct task_struct *tsk,
391 struct cpu_accounting_data *acct)
392{
Christophe Leroyabcff862018-08-02 07:53:59 +0000393#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Christophe Leroyb38a1812018-08-02 07:53:57 +0000394 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 Leroyabcff862018-08-02 07:53:59 +0000402#endif
Christophe Leroyb38a1812018-08-02 07:53:57 +0000403}
404
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100405/*
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +0100406 * Account the whole cputime accumulated in the paca
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100407 * Must be called with interrupts disabled.
Frederic Weisbeckerf83eeb12019-10-03 18:17:44 +0200408 * Assumes that vtime_account_kernel/idle() has been called
Frederic Weisbeckerbcebdf82012-11-13 23:51:06 +0100409 * recently (i.e. since the last entry from usermode) so that
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000410 * get_paca()->user_time_scaled is up to date.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100411 */
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +0100412void vtime_flush(struct task_struct *tsk)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100413{
Christophe Leroyc223c902016-05-17 08:33:46 +0200414 struct cpu_accounting_data *acct = get_accounting(tsk);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100415
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100416 if (acct->utime)
Frederic Weisbecker23244a52017-01-31 04:09:37 +0100417 account_user_time(tsk, cputime_to_nsecs(acct->utime));
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100418
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100419 if (acct->gtime)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100420 account_guest_time(tsk, cputime_to_nsecs(acct->gtime));
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100421
Christophe Leroy51eeef92018-08-02 07:54:01 +0000422 if (IS_ENABLED(CONFIG_PPC_SPLPAR) && acct->steal_time) {
Frederic Weisbeckerbe9095e2017-01-31 04:09:38 +0100423 account_steal_time(cputime_to_nsecs(acct->steal_time));
Christophe Leroy51eeef92018-08-02 07:54:01 +0000424 acct->steal_time = 0;
425 }
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100426
427 if (acct->idle_time)
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100428 account_idle_time(cputime_to_nsecs(acct->idle_time));
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100429
430 if (acct->stime)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100431 account_system_index_time(tsk, cputime_to_nsecs(acct->stime),
432 CPUTIME_SYSTEM);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100433
434 if (acct->hardirq_time)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100435 account_system_index_time(tsk, cputime_to_nsecs(acct->hardirq_time),
436 CPUTIME_IRQ);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100437 if (acct->softirq_time)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100438 account_system_index_time(tsk, cputime_to_nsecs(acct->softirq_time),
439 CPUTIME_SOFTIRQ);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100440
Christophe Leroyb38a1812018-08-02 07:53:57 +0000441 vtime_flush_scaled(tsk, acct);
442
Frederic Weisbecker8c8b73c2017-01-05 18:11:45 +0100443 acct->utime = 0;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100444 acct->gtime = 0;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100445 acct->idle_time = 0;
446 acct->stime = 0;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100447 acct->hardirq_time = 0;
448 acct->softirq_time = 0;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100449}
450
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200451#else /* ! CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100452#define calc_cputime_factors()
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100453#endif
454
Paul Mackerras6defa382005-11-18 13:44:17 +1100455void __delay(unsigned long loops)
456{
457 unsigned long start;
Paul Mackerras6defa382005-11-18 13:44:17 +1100458
Nicholas Piggin4e287e62017-06-06 23:08:32 +1000459 spin_begin();
Christophe Leroya4c5a352020-09-29 06:48:38 +0000460 if (tb_invalid) {
Mahesh Salgaonkarde269122019-03-05 01:12:19 +0530461 /*
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 Mackerras6defa382005-11-18 13:44:17 +1100467 } else {
Christophe Leroy942e8912020-10-01 12:42:41 +0000468 start = mftb();
469 while (mftb() - start < loops)
Nicholas Piggin4e287e62017-06-06 23:08:32 +1000470 spin_cpu_relax();
Paul Mackerras6defa382005-11-18 13:44:17 +1100471 }
Nicholas Piggin4e287e62017-06-06 23:08:32 +1000472 spin_end();
Paul Mackerras6defa382005-11-18 13:44:17 +1100473}
474EXPORT_SYMBOL(__delay);
475
476void udelay(unsigned long usecs)
477{
478 __delay(tb_ticks_per_usec * usecs);
479}
480EXPORT_SYMBOL(udelay);
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#ifdef CONFIG_SMP
483unsigned 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}
492EXPORT_SYMBOL(profile_pc);
493#endif
494
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800495#ifdef CONFIG_IRQ_WORK
Paul Mackerras105988c2009-06-17 21:50:04 +1000496
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000497/*
498 * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable...
499 */
500#ifdef CONFIG_PPC64
Nicholas Piggin25aa1452021-11-23 19:51:45 +1000501static 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 Zijlstrae360adb2010-10-14 14:01:34 +0800511static inline void set_irq_work_pending_flag(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000512{
513 asm volatile("stb %0,%1(13)" : :
514 "r" (1),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800515 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000516}
517
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800518static inline void clear_irq_work_pending(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000519{
520 asm volatile("stb %0,%1(13)" : :
521 "r" (0),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800522 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000523}
524
525#else /* 32-bit */
526
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800527DEFINE_PER_CPU(u8, irq_work_pending);
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000528
Christoph Lameter69111ba2014-10-21 15:23:25 -0500529#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 Mackerras105988c2009-06-17 21:50:04 +1000532
Nicholas Pigginabc3fce2020-04-02 22:04:01 +1000533#endif /* 32 vs 64 bit */
534
Peter Zijlstra4f8b50b2011-06-27 17:22:43 +0200535void arch_irq_work_raise(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000536{
Nicholas Pigginabc3fce2020-04-02 22:04:01 +1000537 /*
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 Mackerras0fe1ac42010-04-13 20:46:04 +0000548 preempt_disable();
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800549 set_irq_work_pending_flag();
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000550 set_dec(1);
551 preempt_enable();
552}
553
Nicholas Piggin25aa1452021-11-23 19:51:45 +1000554static 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 Zijlstrae360adb2010-10-14 14:01:34 +0800562#else /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000563
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800564#define test_irq_work_pending() 0
565#define clear_irq_work_pending()
Paul Mackerras105988c2009-06-17 21:50:04 +1000566
Nicholas Piggin25aa1452021-11-23 19:51:45 +1000567static void set_dec_or_work(u64 val)
568{
569 set_dec(val);
570}
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800571#endif /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000572
Nicholas Piggin25aa1452021-11-23 19:51:45 +1000573#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
574void 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}
589EXPORT_SYMBOL_GPL(timer_rearm_host_dec);
590#endif
591
Preeti U Murthy1b783952014-02-26 05:38:01 +0530592/*
593 * timer_interrupt - gets called when the decrementer overflows,
594 * with interrupts disabled.
595 */
Nicholas Piggin3a965702021-01-30 23:08:38 +1000596DEFINE_INTERRUPT_HANDLER_ASYNC(timer_interrupt)
Preeti U Murthy1b783952014-02-26 05:38:01 +0530597{
Nicholas Piggin3f984622018-05-05 03:19:31 +1000598 struct clock_event_device *evt = this_cpu_ptr(&decrementers);
Christoph Lameter69111ba2014-10-21 15:23:25 -0500599 u64 *next_tb = this_cpu_ptr(&decrementers_next_tb);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000600 struct pt_regs *old_regs;
601 u64 now;
Preeti U Murthy1b783952014-02-26 05:38:01 +0530602
Nicholas Piggin59d512e2020-11-07 11:43:36 +1000603 /*
604 * Some implementations of hotplug will get timer interrupts while
605 * offline, just ignore these.
Preeti U Murthy1b783952014-02-26 05:38:01 +0530606 */
Nicholas Piggina7cba022018-05-05 03:19:32 +1000607 if (unlikely(!cpu_online(smp_processor_id()))) {
Nicholas Piggina7cba022018-05-05 03:19:32 +1000608 set_dec(decrementer_max);
Preeti U Murthy1b783952014-02-26 05:38:01 +0530609 return;
610 }
611
Nicholas Piggin0faf20a2021-09-23 00:54:50 +1000612 /* 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 Piggina7cba022018-05-05 03:19:32 +1000626
Nicholas Piggin0faf20a2021-09-23 00:54:50 +1000627 do_hard_irq_enable();
628 }
Preeti U Murthy1b783952014-02-26 05:38:01 +0530629
Paul Bolle6e0fdf92014-05-20 22:24:58 +0200630#if defined(CONFIG_PPC32) && defined(CONFIG_PPC_PMAC)
Preeti U Murthy1b783952014-02-26 05:38:01 +0530631 if (atomic_read(&ppc_n_lost_interrupts) != 0)
Christophe Leroy98694162021-08-10 16:13:16 +0000632 __do_IRQ(regs);
Preeti U Murthy1b783952014-02-26 05:38:01 +0530633#endif
634
635 old_regs = set_irq_regs(regs);
Nicholas Piggin1b1b6a62021-01-30 23:08:44 +1000636
Nicholas Piggin3f984622018-05-05 03:19:31 +1000637 trace_timer_interrupt_entry(regs);
Preeti U Murthy1b783952014-02-26 05:38:01 +0530638
Nicholas Piggin3f984622018-05-05 03:19:31 +1000639 if (test_irq_work_pending()) {
640 clear_irq_work_pending();
641 irq_work_run();
642 }
643
Christophe Leroy6601ec12020-09-29 06:48:39 +0000644 now = get_tb();
Nicholas Piggin3f984622018-05-05 03:19:31 +1000645 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;
Nicholas Piggin8defc2a2022-01-25 00:39:28 +1000652 if (now > decrementer_max)
653 now = decrementer_max;
654 set_dec_or_work(now);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000655 __this_cpu_inc(irq_stat.timer_irqs_others);
656 }
657
658 trace_timer_interrupt_exit(regs);
Nicholas Piggin1b1b6a62021-01-30 23:08:44 +1000659
David Howells7d12e782006-10-05 14:55:46 +0100660 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
Al Viro9445aa12016-01-13 23:33:46 -0500662EXPORT_SYMBOL(timer_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Nicholas Pigginbc907112018-05-05 03:19:33 +1000664#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
Nicholas Piggin3f984622018-05-05 03:19:31 +1000665void timer_broadcast_interrupt(void)
666{
667 u64 *next_tb = this_cpu_ptr(&decrementers_next_tb);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000668
Nicholas Piggin3f984622018-05-05 03:19:31 +1000669 *next_tb = ~(u64)0;
670 tick_receive_broadcast();
Nicholas Piggine360cd32018-05-05 03:19:35 +1000671 __this_cpu_inc(irq_stat.broadcast_irqs_event);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000672}
Nicholas Pigginbc907112018-05-05 03:19:33 +1000673#endif
Nicholas Piggin3f984622018-05-05 03:19:31 +1000674
Scott Wood7ac5dde2007-12-13 04:35:19 +1100675#ifdef CONFIG_SUSPEND
Christophe Leroye606a2f42021-08-31 08:29:35 +0000676/* Overrides the weak version in kernel/power/main.c */
677void arch_suspend_disable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100678{
Christophe Leroye606a2f42021-08-31 08:29:35 +0000679 if (ppc_md.suspend_disable_irqs)
680 ppc_md.suspend_disable_irqs();
681
Scott Wood7ac5dde2007-12-13 04:35:19 +1100682 /* Disable the decrementer, so that it doesn't interfere
683 * with suspending.
684 */
685
Oliver O'Halloran799010242016-07-01 16:20:39 +1000686 set_dec(decrementer_max);
Scott Wood7ac5dde2007-12-13 04:35:19 +1100687 local_irq_disable();
Oliver O'Halloran799010242016-07-01 16:20:39 +1000688 set_dec(decrementer_max);
Scott Wood7ac5dde2007-12-13 04:35:19 +1100689}
690
Scott Wood7ac5dde2007-12-13 04:35:19 +1100691/* Overrides the weak version in kernel/power/main.c */
692void arch_suspend_enable_irqs(void)
693{
Christophe Leroye606a2f42021-08-31 08:29:35 +0000694 local_irq_enable();
695
Scott Wood7ac5dde2007-12-13 04:35:19 +1100696 if (ppc_md.suspend_enable_irqs)
697 ppc_md.suspend_enable_irqs();
698}
699#endif
700
Paul Mackerrasb6c295d2015-03-28 14:21:02 +1100701unsigned long long tb_to_ns(unsigned long long ticks)
702{
703 return mulhdu(ticks, tb_to_ns_scale) << tb_to_ns_shift;
704}
705EXPORT_SYMBOL_GPL(tb_to_ns);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/*
708 * Scheduler clock - returns current time in nanosec units.
709 *
710 * Note: mulhdu(a, b) (multiply high double unsigned) returns
711 * the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b
712 * are 64-bit unsigned numbers.
713 */
Santosh Sivaraj6b847d72017-06-20 13:14:47 +0530714notrace unsigned long long sched_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000716 return mulhdu(get_tb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Cyril Bur4be1b292015-02-12 15:01:28 -0800719
720#ifdef CONFIG_PPC_PSERIES
721
722/*
723 * Running clock - attempts to give a view of time passing for a virtualised
724 * kernels.
725 * Uses the VTB register if available otherwise a next best guess.
726 */
727unsigned long long running_clock(void)
728{
729 /*
730 * Don't read the VTB as a host since KVM does not switch in host
731 * timebase into the VTB when it takes a guest off the CPU, reading the
732 * VTB would result in reading 'last switched out' guest VTB.
733 *
734 * Host kernels are often compiled with CONFIG_PPC_PSERIES checked, it
735 * would be unsafe to rely only on the #ifdef above.
736 */
737 if (firmware_has_feature(FW_FEATURE_LPAR) &&
738 cpu_has_feature(CPU_FTR_ARCH_207S))
739 return mulhdu(get_vtb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift;
740
741 /*
742 * This is a next best approximation without a VTB.
743 * On a host which is running bare metal there should never be any stolen
744 * time and on a host which doesn't do any virtualisation TB *should* equal
745 * VTB so it makes no difference anyway.
746 */
Frédéric Weisbecker9f3768e2017-02-21 16:18:41 +0100747 return local_clock() - kcpustat_this_cpu->cpustat[CPUTIME_STEAL];
Cyril Bur4be1b292015-02-12 15:01:28 -0800748}
749#endif
750
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000751static int __init get_freq(char *name, int cells, unsigned long *val)
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000752{
753 struct device_node *cpu;
Anton Blanchard6f7aba72013-08-07 02:01:34 +1000754 const __be32 *fp;
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000755 int found = 0;
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000756
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000757 /* The cpu node should have timebase and clock frequency properties */
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000758 cpu = of_find_node_by_type(NULL, "cpu");
759
Olaf Heringd8a81882006-02-04 10:34:56 +0100760 if (cpu) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000761 fp = of_get_property(cpu, name, NULL);
Olaf Heringd8a81882006-02-04 10:34:56 +0100762 if (fp) {
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000763 found = 1;
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000764 *val = of_read_ulong(fp, cells);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000765 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000766
767 of_node_put(cpu);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000768 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000769
770 return found;
771}
772
Anton Blancharde51df2c2014-08-20 08:55:18 +1000773static void start_cpu_decrementer(void)
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000774{
Christophe Leroy047a6fd2021-10-19 09:29:25 +0200775#ifdef CONFIG_BOOKE_OR_40x
Ivan Mikhaylov6e2f03e2017-05-19 18:47:05 +0300776 unsigned int tcr;
777
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000778 /* Clear any pending timer interrupts */
779 mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_DIS | TSR_FIS);
780
Ivan Mikhaylov6e2f03e2017-05-19 18:47:05 +0300781 tcr = mfspr(SPRN_TCR);
782 /*
783 * The watchdog may have already been enabled by u-boot. So leave
784 * TRC[WP] (Watchdog Period) alone.
785 */
786 tcr &= TCR_WP_MASK; /* Clear all bits except for TCR[WP] */
787 tcr |= TCR_DIE; /* Enable decrementer */
788 mtspr(SPRN_TCR, tcr);
789#endif
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000790}
791
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000792void __init generic_calibrate_decr(void)
793{
794 ppc_tb_freq = DEFAULT_TB_FREQ; /* hardcoded default */
795
796 if (!get_freq("ibm,extended-timebase-frequency", 2, &ppc_tb_freq) &&
797 !get_freq("timebase-frequency", 1, &ppc_tb_freq)) {
798
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000799 printk(KERN_ERR "WARNING: Estimating decrementer frequency "
800 "(not found)\n");
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000801 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000802
803 ppc_proc_freq = DEFAULT_PROC_FREQ; /* hardcoded default */
804
805 if (!get_freq("ibm,extended-clock-frequency", 2, &ppc_proc_freq) &&
806 !get_freq("clock-frequency", 1, &ppc_proc_freq)) {
807
808 printk(KERN_ERR "WARNING: Estimating processor frequency "
809 "(not found)\n");
810 }
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000811}
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000812
Arnd Bergmann5235afa2018-04-23 10:36:41 +0200813int update_persistent_clock64(struct timespec64 now)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000814{
815 struct rtc_time tm;
816
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000817 if (!ppc_md.set_rtc_time)
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700818 return -ENODEV;
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000819
Arnd Bergmann5235afa2018-04-23 10:36:41 +0200820 rtc_time64_to_tm(now.tv_sec + 1 + timezone_offset, &tm);
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000821
822 return ppc_md.set_rtc_time(&tm);
823}
824
Arnd Bergmann5bfd6432018-04-23 10:36:40 +0200825static void __read_persistent_clock(struct timespec64 *ts)
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000826{
827 struct rtc_time tm;
828 static int first = 1;
829
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200830 ts->tv_nsec = 0;
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000831 /* XXX this is a litle fragile but will work okay in the short term */
832 if (first) {
833 first = 0;
834 if (ppc_md.time_init)
835 timezone_offset = ppc_md.time_init();
836
837 /* get_boot_time() isn't guaranteed to be safe to call late */
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200838 if (ppc_md.get_boot_time) {
839 ts->tv_sec = ppc_md.get_boot_time() - timezone_offset;
840 return;
841 }
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000842 }
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200843 if (!ppc_md.get_rtc_time) {
844 ts->tv_sec = 0;
845 return;
846 }
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000847 ppc_md.get_rtc_time(&tm);
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000848
Arnd Bergmann5bfd6432018-04-23 10:36:40 +0200849 ts->tv_sec = rtc_tm_to_time64(&tm);
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000850}
851
Arnd Bergmann5bfd6432018-04-23 10:36:40 +0200852void read_persistent_clock64(struct timespec64 *ts)
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000853{
854 __read_persistent_clock(ts);
855
856 /* Sanitize it in case real time clock is set below EPOCH */
857 if (ts->tv_sec < 0) {
858 ts->tv_sec = 0;
859 ts->tv_nsec = 0;
860 }
861
862}
863
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000864/* clocksource code */
Santosh Sivaraj6b847d72017-06-20 13:14:47 +0530865static notrace u64 timebase_read(struct clocksource *cs)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000866{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100867 return (u64)get_tb();
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000868}
869
Michael Ellerman1c21a292008-05-08 14:27:19 +1000870static void __init clocksource_init(void)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000871{
Christophe Leroya4c5a352020-09-29 06:48:38 +0000872 struct clocksource *clock = &clocksource_timebase;
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000873
Anton Blanchard11b86332011-11-23 20:07:19 +0000874 if (clocksource_register_hz(clock, tb_ticks_per_sec)) {
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000875 printk(KERN_ERR "clocksource: %s is already registered\n",
876 clock->name);
877 return;
878 }
879
880 printk(KERN_INFO "clocksource: %s mult[%x] shift[%d] registered\n",
881 clock->name, clock->mult, clock->shift);
882}
883
Tony Breedsd831d0b2007-09-21 13:26:03 +1000884static int decrementer_set_next_event(unsigned long evt,
885 struct clock_event_device *dev)
886{
Christophe Leroy6601ec12020-09-29 06:48:39 +0000887 __this_cpu_write(decrementers_next_tb, get_tb() + evt);
Nicholas Piggin25aa1452021-11-23 19:51:45 +1000888 set_dec_or_work(evt);
Benjamin Herrenschmidt0215f7d2014-01-14 17:11:39 +1100889
Tony Breedsd831d0b2007-09-21 13:26:03 +1000890 return 0;
891}
892
Viresh Kumar37a13e72015-07-16 16:56:25 +0530893static int decrementer_shutdown(struct clock_event_device *dev)
Tony Breedsd831d0b2007-09-21 13:26:03 +1000894{
Oliver O'Halloran799010242016-07-01 16:20:39 +1000895 decrementer_set_next_event(decrementer_max, dev);
Viresh Kumar37a13e72015-07-16 16:56:25 +0530896 return 0;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000897}
898
899static void register_decrementer_clockevent(int cpu)
900{
Anton Blanchard7df10272011-11-23 20:07:22 +0000901 struct clock_event_device *dec = &per_cpu(decrementers, cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000902
903 *dec = decrementer_clockevent;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030904 dec->cpumask = cpumask_of(cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000905
Anton Blanchard8b78fdb2018-10-02 09:01:04 +1000906 clockevents_config_and_register(dec, ppc_tb_freq, 2, decrementer_max);
907
Anton Blanchardb919ee82010-02-07 19:26:29 +0000908 printk_once(KERN_DEBUG "clockevent: %s mult[%x] shift[%d] cpu[%d]\n",
909 dec->name, dec->mult, dec->shift, cpu);
Michael Ellermanb4d16ab2018-10-17 23:39:41 +1100910
911 /* Set values for KVM, see kvm_emulate_dec() */
912 decrementer_clockevent.mult = dec->mult;
913 decrementer_clockevent.shift = dec->shift;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000914}
915
Oliver O'Halloran799010242016-07-01 16:20:39 +1000916static void enable_large_decrementer(void)
917{
918 if (!cpu_has_feature(CPU_FTR_ARCH_300))
919 return;
920
921 if (decrementer_max <= DECREMENTER_DEFAULT_MAX)
922 return;
923
924 /*
925 * If we're running as the hypervisor we need to enable the LD manually
926 * otherwise firmware should have done it for us.
927 */
928 if (cpu_has_feature(CPU_FTR_HVMODE))
929 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_LD);
930}
931
932static void __init set_decrementer_max(void)
933{
934 struct device_node *cpu;
935 u32 bits = 32;
936
937 /* Prior to ISAv3 the decrementer is always 32 bit */
938 if (!cpu_has_feature(CPU_FTR_ARCH_300))
939 return;
940
941 cpu = of_find_node_by_type(NULL, "cpu");
942
943 if (of_property_read_u32(cpu, "ibm,dec-bits", &bits) == 0) {
944 if (bits > 64 || bits < 32) {
945 pr_warn("time_init: firmware supplied invalid ibm,dec-bits");
946 bits = 32;
947 }
948
949 /* calculate the signed maximum given this many bits */
950 decrementer_max = (1ul << (bits - 1)) - 1;
951 }
952
953 of_node_put(cpu);
954
955 pr_info("time_init: %u bit decrementer (max: %llx)\n",
956 bits, decrementer_max);
957}
958
Milton Millerc4818872007-12-14 15:52:10 +1100959static void __init init_decrementer_clockevent(void)
Tony Breedsd831d0b2007-09-21 13:26:03 +1000960{
Anton Blanchard8b78fdb2018-10-02 09:01:04 +1000961 register_decrementer_clockevent(smp_processor_id());
Tony Breedsd831d0b2007-09-21 13:26:03 +1000962}
963
964void secondary_cpu_time_init(void)
965{
Oliver O'Halloran799010242016-07-01 16:20:39 +1000966 /* Enable and test the large decrementer for this cpu */
967 enable_large_decrementer();
968
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000969 /* Start the decrementer on CPUs that have manual control
970 * such as BookE
971 */
972 start_cpu_decrementer();
973
Tony Breedsd831d0b2007-09-21 13:26:03 +1000974 /* FIME: Should make unrelatred change to move snapshot_timebase
975 * call here ! */
976 register_decrementer_clockevent(smp_processor_id());
977}
978
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000979/* This function is only called on the boot processor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980void __init time_init(void)
981{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct div_result res;
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000983 u64 scale;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000984 unsigned shift;
985
Christophe Leroya4c5a352020-09-29 06:48:38 +0000986 /* Normal PowerPC with timebase register */
987 ppc_md.calibrate_decr();
988 printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n",
989 ppc_tb_freq / 1000000, ppc_tb_freq % 1000000);
990 printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n",
991 ppc_proc_freq / 1000000, ppc_proc_freq % 1000000);
Paul Mackerras374e99d2005-10-20 21:04:51 +1000992
993 tb_ticks_per_jiffy = ppc_tb_freq / HZ;
Paul Mackerras092b8f32006-02-20 10:38:56 +1100994 tb_ticks_per_sec = ppc_tb_freq;
Paul Mackerras374e99d2005-10-20 21:04:51 +1000995 tb_ticks_per_usec = ppc_tb_freq / 1000000;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100996 calc_cputime_factors();
Paul Mackerras092b8f32006-02-20 10:38:56 +1100997
998 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 * Compute scale factor for sched_clock.
1000 * The calibrate_decr() function has set tb_ticks_per_sec,
1001 * which is the timebase frequency.
1002 * We compute 1e9 * 2^64 / tb_ticks_per_sec and interpret
1003 * the 128-bit result as a 64.64 fixed-point number.
1004 * We then shift that number right until it is less than 1.0,
1005 * giving us the scale factor and shift count to use in
1006 * sched_clock().
1007 */
1008 div128_by_32(1000000000, 0, tb_ticks_per_sec, &res);
1009 scale = res.result_low;
1010 for (shift = 0; res.result_high != 0; ++shift) {
1011 scale = (scale >> 1) | (res.result_high << 63);
1012 res.result_high >>= 1;
1013 }
1014 tb_to_ns_scale = scale;
1015 tb_to_ns_shift = shift;
Tony Breedsfc9069fe2007-07-04 14:04:31 +10001016 /* Save the current timebase to pretty up CONFIG_PRINTK_TIME */
Christophe Leroy6601ec12020-09-29 06:48:39 +00001017 boot_tb = get_tb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Paul Mackerras092b8f32006-02-20 10:38:56 +11001019 /* If platform provided a timezone (pmac), we correct the time */
Anton Blanchard621692c2011-11-23 20:07:21 +00001020 if (timezone_offset) {
Paul Mackerras092b8f32006-02-20 10:38:56 +11001021 sys_tz.tz_minuteswest = -timezone_offset / 60;
1022 sys_tz.tz_dsttime = 0;
Anton Blanchard621692c2011-11-23 20:07:21 +00001023 }
Paul Mackerras092b8f32006-02-20 10:38:56 +11001024
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +11001025 vdso_data->tb_ticks_per_sec = tb_ticks_per_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Oliver O'Halloran799010242016-07-01 16:20:39 +10001027 /* initialise and enable the large decrementer (if we have one) */
1028 set_decrementer_max();
1029 enable_large_decrementer();
1030
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +10001031 /* Start the decrementer on CPUs that have manual control
1032 * such as BookE
1033 */
1034 start_cpu_decrementer();
1035
Stephen Rothwellf5339272012-03-15 18:18:00 +00001036 /* Register the clocksource */
1037 clocksource_init();
Tony Breeds4a4cfe32007-09-22 07:35:52 +10001038
Tony Breedsd831d0b2007-09-21 13:26:03 +10001039 init_decrementer_clockevent();
Preeti U Murthy0d948732014-02-26 05:39:06 +05301040 tick_setup_hrtimer_broadcast();
Kevin Haof0d37302014-12-03 16:53:52 +08001041
Kevin Haof0d37302014-12-03 16:53:52 +08001042 of_clk_init(NULL);
Pingfan Liub709e322020-10-22 14:51:19 +08001043 enable_sched_clock_irqtime();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046/*
1047 * Divide a 128-bit dividend by a 32-bit divisor, leaving a 128 bit
1048 * result.
1049 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001050void div128_by_32(u64 dividend_high, u64 dividend_low,
1051 unsigned divisor, struct div_result *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001053 unsigned long a, b, c, d;
1054 unsigned long w, x, y, z;
1055 u64 ra, rb, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 a = dividend_high >> 32;
1058 b = dividend_high & 0xffffffff;
1059 c = dividend_low >> 32;
1060 d = dividend_low & 0xffffffff;
1061
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001062 w = a / divisor;
1063 ra = ((u64)(a - (w * divisor)) << 32) + b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001065 rb = ((u64) do_div(ra, divisor) << 32) + c;
1066 x = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001068 rc = ((u64) do_div(rb, divisor) << 32) + d;
1069 y = rb;
1070
1071 do_div(rc, divisor);
1072 z = rc;
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001073
1074 dr->result_high = ((u64)w << 32) + x;
1075 dr->result_low = ((u64)y << 32) + z;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077}
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001078
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +00001079/* We don't need to calibrate delay, we use the CPU timebase for that */
1080void calibrate_delay(void)
1081{
1082 /* Some generic code (such as spinlock debug) use loops_per_jiffy
1083 * as the number of __delay(1) in a jiffy, so make it so
1084 */
1085 loops_per_jiffy = tb_ticks_per_jiffy;
1086}
1087
Arnd Bergmann169047f2016-05-30 20:58:00 +02001088#if IS_ENABLED(CONFIG_RTC_DRV_GENERIC)
1089static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
1090{
1091 ppc_md.get_rtc_time(tm);
Alexandre Belloni890ae792018-02-21 22:46:33 +01001092 return 0;
Arnd Bergmann169047f2016-05-30 20:58:00 +02001093}
1094
1095static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
1096{
1097 if (!ppc_md.set_rtc_time)
1098 return -EOPNOTSUPP;
1099
1100 if (ppc_md.set_rtc_time(tm) < 0)
1101 return -EOPNOTSUPP;
1102
1103 return 0;
1104}
1105
1106static const struct rtc_class_ops rtc_generic_ops = {
1107 .read_time = rtc_generic_get_time,
1108 .set_time = rtc_generic_set_time,
1109};
1110
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001111static int __init rtc_init(void)
1112{
1113 struct platform_device *pdev;
1114
1115 if (!ppc_md.get_rtc_time)
1116 return -ENODEV;
1117
Arnd Bergmann169047f2016-05-30 20:58:00 +02001118 pdev = platform_device_register_data(NULL, "rtc-generic", -1,
1119 &rtc_generic_ops,
1120 sizeof(rtc_generic_ops));
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001121
Rusty Russell8c6ffba2013-07-15 11:20:32 +09301122 return PTR_ERR_OR_ZERO(pdev);
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001123}
1124
Paul Gortmaker8f6b9512015-05-01 20:05:49 -04001125device_initcall(rtc_init);
Arnd Bergmann169047f2016-05-30 20:58:00 +02001126#endif