blob: 5f9c323049eba6e7a8cba8b83223bfe5689fa021 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/kernel.h>
35#include <linux/param.h>
36#include <linux/string.h>
37#include <linux/mm.h>
38#include <linux/interrupt.h>
39#include <linux/timex.h>
40#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/time.h>
42#include <linux/init.h>
43#include <linux/profile.h>
44#include <linux/cpu.h>
45#include <linux/security.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100046#include <linux/percpu.h>
47#include <linux/rtc.h>
Paul Mackerras092b8f32006-02-20 10:38:56 +110048#include <linux/jiffies.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110049#include <linux/posix-timers.h>
David Howells7d12e782006-10-05 14:55:46 +010050#include <linux/irq.h>
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +000051#include <linux/delay.h>
Peter Zijlstrae360adb2010-10-14 14:01:34 +080052#include <linux/irq_work.h>
Geert Uytterhoeven60083062020-02-13 09:38:04 +010053#include <linux/of_clk.h>
Daniel Axtens7f92bc52016-01-06 11:45:51 +110054#include <linux/suspend.h>
Ingo Molnar32ef5512017-02-05 11:48:36 +010055#include <linux/sched/cputime.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
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/nvram.h>
61#include <asm/cache.h>
62#include <asm/machdep.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080063#include <linux/uaccess.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100064#include <asm/time.h>
65#include <asm/prom.h>
66#include <asm/irq.h>
67#include <asm/div64.h>
Paul Mackerras2249ca92005-11-07 13:18:13 +110068#include <asm/smp.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110069#include <asm/vdso_datapage.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100070#include <asm/firmware.h>
Daniel Axtens0545d542016-09-06 15:32:43 +100071#include <asm/asm-prototypes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Tony Breeds4a4cfe32007-09-22 07:35:52 +100073/* powerpc clocksource/clockevent code */
74
Tony Breedsd831d0b2007-09-21 13:26:03 +100075#include <linux/clockchips.h>
John Stultz189374a2012-09-04 15:27:48 -040076#include <linux/timekeeper_internal.h>
Tony Breeds4a4cfe32007-09-22 07:35:52 +100077
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010078static u64 timebase_read(struct clocksource *);
Tony Breeds4a4cfe32007-09-22 07:35:52 +100079static struct clocksource clocksource_timebase = {
80 .name = "timebase",
81 .rating = 400,
82 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
83 .mask = CLOCKSOURCE_MASK(64),
Tony Breeds4a4cfe32007-09-22 07:35:52 +100084 .read = timebase_read,
Christophe Leroyab037dd2020-11-27 00:10:05 +110085 .vdso_clock_mode = VDSO_CLOCKMODE_ARCHTIMER,
Tony Breeds4a4cfe32007-09-22 07:35:52 +100086};
87
Oliver O'Halloran799010242016-07-01 16:20:39 +100088#define DECREMENTER_DEFAULT_MAX 0x7FFFFFFF
89u64 decrementer_max = DECREMENTER_DEFAULT_MAX;
Tony Breedsd831d0b2007-09-21 13:26:03 +100090
91static int decrementer_set_next_event(unsigned long evt,
92 struct clock_event_device *dev);
Viresh Kumar37a13e72015-07-16 16:56:25 +053093static int decrementer_shutdown(struct clock_event_device *evt);
Tony Breedsd831d0b2007-09-21 13:26:03 +100094
Bharat Bhushan6e359942012-04-18 06:01:19 +000095struct clock_event_device decrementer_clockevent = {
Viresh Kumar37a13e72015-07-16 16:56:25 +053096 .name = "decrementer",
97 .rating = 200,
98 .irq = 0,
99 .set_next_event = decrementer_set_next_event,
Anton Blanchard817593602018-10-02 09:01:05 +1000100 .set_state_oneshot_stopped = decrementer_shutdown,
Viresh Kumar37a13e72015-07-16 16:56:25 +0530101 .set_state_shutdown = decrementer_shutdown,
102 .tick_resume = decrementer_shutdown,
103 .features = CLOCK_EVT_FEAT_ONESHOT |
104 CLOCK_EVT_FEAT_C3STOP,
Tony Breedsd831d0b2007-09-21 13:26:03 +1000105};
Bharat Bhushan6e359942012-04-18 06:01:19 +0000106EXPORT_SYMBOL(decrementer_clockevent);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000107
Anton Blanchard7df10272011-11-23 20:07:22 +0000108DEFINE_PER_CPU(u64, decrementers_next_tb);
109static DEFINE_PER_CPU(struct clock_event_device, decrementers);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define XSEC_PER_SEC (1024*1024)
112
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000113#ifdef CONFIG_PPC64
114#define SCALE_XSEC(xsec, max) (((xsec) * max) / XSEC_PER_SEC)
115#else
116/* compute ((xsec << 12) * max) >> 32 */
117#define SCALE_XSEC(xsec, max) mulhwu((xsec) << 12, max)
118#endif
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120unsigned long tb_ticks_per_jiffy;
121unsigned long tb_ticks_per_usec = 100; /* sane default */
122EXPORT_SYMBOL(tb_ticks_per_usec);
123unsigned long tb_ticks_per_sec;
Paul Mackerras2cf82c02006-02-27 15:41:47 +1100124EXPORT_SYMBOL(tb_ticks_per_sec); /* for cputime_t conversions */
Paul Mackerras092b8f32006-02-20 10:38:56 +1100125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126DEFINE_SPINLOCK(rtc_lock);
Benjamin Herrenschmidt6ae3db12005-06-27 14:36:35 -0700127EXPORT_SYMBOL_GPL(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000129static u64 tb_to_ns_scale __read_mostly;
130static unsigned tb_to_ns_shift __read_mostly;
Heiko Schocher364a1242010-11-22 21:30:33 +0000131static u64 boot_tb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133extern struct timezone sys_tz;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000134static long timezone_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000136unsigned long ppc_proc_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500137EXPORT_SYMBOL_GPL(ppc_proc_freq);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000138unsigned long ppc_tb_freq;
Timur Tabi55ec2fc2010-09-20 11:23:41 -0500139EXPORT_SYMBOL_GPL(ppc_tb_freq);
Paul Mackerras96c44502005-10-23 17:14:56 +1000140
Mahesh Salgaonkarde269122019-03-05 01:12:19 +0530141bool tb_invalid;
142
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200143#ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100144/*
Frederic Weisbeckere7f340c2017-01-31 04:09:48 +0100145 * Factor for converting from cputime_t (timebase ticks) to
146 * microseconds. This is stored as 0.64 fixed-point binary fraction.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100147 */
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000148u64 __cputime_usec_factor;
149EXPORT_SYMBOL(__cputime_usec_factor);
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +0200150
Christophe Leroyc223c902016-05-17 08:33:46 +0200151#ifdef CONFIG_PPC_SPLPAR
Paul Mackerras872e4392010-08-31 01:59:53 +0000152void (*dtl_consumer)(struct dtl_entry *, u64);
Christophe Leroyc223c902016-05-17 08:33:46 +0200153#endif
154
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100155static void calc_cputime_factors(void)
156{
157 struct div_result res;
158
Andreas Schwab9f5072d2011-12-09 11:35:08 +0000159 div128_by_32(1000000, 0, tb_ticks_per_sec, &res);
160 __cputime_usec_factor = res.result_low;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100161}
162
163/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000164 * Read the SPURR on systems that have it, otherwise the PURR,
165 * or if that doesn't exist return the timebase value passed in.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100166 */
Christophe Leroyabcff862018-08-02 07:53:59 +0000167static inline unsigned long read_spurr(unsigned long tb)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100168{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000169 if (cpu_has_feature(CPU_FTR_SPURR))
170 return mfspr(SPRN_SPURR);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100171 if (cpu_has_feature(CPU_FTR_PURR))
172 return mfspr(SPRN_PURR);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000173 return tb;
174}
175
176#ifdef CONFIG_PPC_SPLPAR
177
Peter Zijlstrad6bdceb2020-05-29 22:41:01 +0200178#include <asm/dtl.h>
179
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000180/*
181 * Scan the dispatch trace log and count up the stolen time.
182 * Should be called with interrupts disabled.
183 */
184static u64 scan_dispatch_log(u64 stop_tb)
185{
Paul Mackerras872e4392010-08-31 01:59:53 +0000186 u64 i = local_paca->dtl_ridx;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000187 struct dtl_entry *dtl = local_paca->dtl_curr;
188 struct dtl_entry *dtl_end = local_paca->dispatch_log_end;
189 struct lppaca *vpa = local_paca->lppaca_ptr;
190 u64 tb_delta;
191 u64 stolen = 0;
192 u64 dtb;
193
Anton Blanchard84ffae52011-04-07 21:44:21 +0000194 if (!dtl)
195 return 0;
196
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000197 if (i == be64_to_cpu(vpa->dtl_idx))
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000198 return 0;
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000199 while (i < be64_to_cpu(vpa->dtl_idx)) {
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000200 dtb = be64_to_cpu(dtl->timebase);
201 tb_delta = be32_to_cpu(dtl->enqueue_to_dispatch_time) +
202 be32_to_cpu(dtl->ready_to_enqueue_time);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000203 barrier();
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000204 if (i + N_DISPATCH_LOG < be64_to_cpu(vpa->dtl_idx)) {
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000205 /* buffer has overflowed */
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +1000206 i = be64_to_cpu(vpa->dtl_idx) - N_DISPATCH_LOG;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000207 dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG);
208 continue;
209 }
210 if (dtb > stop_tb)
211 break;
Anton Blanchard84b07382013-11-17 11:39:05 +1100212 if (dtl_consumer)
213 dtl_consumer(dtl, i);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000214 stolen += tb_delta;
215 ++i;
216 ++dtl;
217 if (dtl == dtl_end)
218 dtl = local_paca->dispatch_log;
219 }
220 local_paca->dtl_ridx = i;
221 local_paca->dtl_curr = dtl;
222 return stolen;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100223}
224
225/*
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000226 * Accumulate stolen time by scanning the dispatch trace log.
227 * Called on entry from user mode.
Michael Neuling4603ac12007-10-18 03:06:37 -0700228 */
Michael Ellermaneb8e20f2019-10-13 21:23:51 +1100229void notrace accumulate_stolen_time(void)
Michael Neuling4603ac12007-10-18 03:06:37 -0700230{
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000231 u64 sst, ust;
Madhavan Srinivasan4e26bc42017-12-20 09:25:50 +0530232 unsigned long save_irq_soft_mask = irq_soft_mask_return();
Christophe Leroyc223c902016-05-17 08:33:46 +0200233 struct cpu_accounting_data *acct = &local_paca->accounting;
Tejun Heob18ae082011-01-03 03:49:25 +0000234
235 /* We are called early in the exception entry, before
236 * soft/hard_enabled are sync'ed to the expected state
237 * for the exception. We are hard disabled but the PACA
238 * needs to reflect that so various debug stuff doesn't
239 * complain
240 */
Madhavan Srinivasan4e26bc42017-12-20 09:25:50 +0530241 irq_soft_mask_set(IRQS_DISABLED);
Tejun Heob18ae082011-01-03 03:49:25 +0000242
Christophe Leroyc223c902016-05-17 08:33:46 +0200243 sst = scan_dispatch_log(acct->starttime_user);
244 ust = scan_dispatch_log(acct->starttime);
Frederic Weisbecker8c8b73c2017-01-05 18:11:45 +0100245 acct->stime -= sst;
246 acct->utime -= ust;
Frederic Weisbeckerf828c3d2017-01-05 18:11:46 +0100247 acct->steal_time += ust + sst;
Tejun Heob18ae082011-01-03 03:49:25 +0000248
Madhavan Srinivasan4e26bc42017-12-20 09:25:50 +0530249 irq_soft_mask_set(save_irq_soft_mask);
Michael Neuling4603ac12007-10-18 03:06:37 -0700250}
251
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000252static inline u64 calculate_stolen_time(u64 stop_tb)
253{
Aneesh Kumar K.Va6201da2018-04-02 13:03:37 +0530254 if (!firmware_has_feature(FW_FEATURE_SPLPAR))
255 return 0;
256
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100257 if (get_paca()->dtl_ridx != be64_to_cpu(get_lppaca()->dtl_idx))
258 return scan_dispatch_log(stop_tb);
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000259
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100260 return 0;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000261}
262
263#else /* CONFIG_PPC_SPLPAR */
264static inline u64 calculate_stolen_time(u64 stop_tb)
265{
266 return 0;
267}
268
269#endif /* CONFIG_PPC_SPLPAR */
270
Michael Neuling4603ac12007-10-18 03:06:37 -0700271/*
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100272 * Account time for a transition between system, hard irq
273 * or soft irq state.
274 */
Christophe Leroyb38a1812018-08-02 07:53:57 +0000275static unsigned long vtime_delta_scaled(struct cpu_accounting_data *acct,
276 unsigned long now, unsigned long stime)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100277{
Christophe Leroyabcff862018-08-02 07:53:59 +0000278 unsigned long stime_scaled = 0;
279#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Christophe Leroyb38a1812018-08-02 07:53:57 +0000280 unsigned long nowscaled, deltascaled;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100281 unsigned long utime, utime_scaled;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100282
Michael Neuling4603ac12007-10-18 03:06:37 -0700283 nowscaled = read_spurr(now);
Christophe Leroyc223c902016-05-17 08:33:46 +0200284 deltascaled = nowscaled - acct->startspurr;
285 acct->startspurr = nowscaled;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100286 utime = acct->utime - acct->utime_sspurr;
Frederic Weisbecker8c8b73c2017-01-05 18:11:45 +0100287 acct->utime_sspurr = acct->utime;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000288
289 /*
290 * Because we don't read the SPURR on every kernel entry/exit,
291 * deltascaled includes both user and system SPURR ticks.
292 * Apportion these ticks to system SPURR ticks and user
293 * SPURR ticks in the same ratio as the system time (delta)
294 * and user time (udelta) values obtained from the timebase
295 * over the same interval. The system ticks get accounted here;
296 * the user ticks get saved up in paca->user_time_scaled to be
297 * used by account_process_tick.
298 */
Christophe Leroyb38a1812018-08-02 07:53:57 +0000299 stime_scaled = stime;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100300 utime_scaled = utime;
301 if (deltascaled != stime + utime) {
302 if (utime) {
Christophe Leroyb38a1812018-08-02 07:53:57 +0000303 stime_scaled = deltascaled * stime / (stime + utime);
304 utime_scaled = deltascaled - stime_scaled;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000305 } else {
Christophe Leroyb38a1812018-08-02 07:53:57 +0000306 stime_scaled = deltascaled;
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000307 }
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100308 }
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100309 acct->utime_scaled += utime_scaled;
Christophe Leroyabcff862018-08-02 07:53:59 +0000310#endif
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000311
Christophe Leroyb38a1812018-08-02 07:53:57 +0000312 return stime_scaled;
313}
314
315static unsigned long vtime_delta(struct task_struct *tsk,
316 unsigned long *stime_scaled,
317 unsigned long *steal_time)
318{
319 unsigned long now, stime;
320 struct cpu_accounting_data *acct = get_accounting(tsk);
321
322 WARN_ON_ONCE(!irqs_disabled());
323
324 now = mftb();
325 stime = now - acct->starttime;
326 acct->starttime = now;
327
328 *stime_scaled = vtime_delta_scaled(acct, now, stime);
329
330 *steal_time = calculate_stolen_time(now);
331
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100332 return stime;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100333}
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200334
Frederic Weisbeckerf83eeb12019-10-03 18:17:44 +0200335void vtime_account_kernel(struct task_struct *tsk)
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200336{
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100337 unsigned long stime, stime_scaled, steal_time;
338 struct cpu_accounting_data *acct = get_accounting(tsk);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200339
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100340 stime = vtime_delta(tsk, &stime_scaled, &steal_time);
341
342 stime -= min(stime, steal_time);
343 acct->steal_time += steal_time;
344
345 if ((tsk->flags & PF_VCPU) && !irq_count()) {
346 acct->gtime += stime;
Christophe Leroyabcff862018-08-02 07:53:59 +0000347#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100348 acct->utime_scaled += stime_scaled;
Christophe Leroyabcff862018-08-02 07:53:59 +0000349#endif
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100350 } else {
351 if (hardirq_count())
352 acct->hardirq_time += stime;
353 else if (in_serving_softirq())
354 acct->softirq_time += stime;
355 else
356 acct->stime += stime;
357
Christophe Leroyabcff862018-08-02 07:53:59 +0000358#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100359 acct->stime_scaled += stime_scaled;
Christophe Leroyabcff862018-08-02 07:53:59 +0000360#endif
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100361 }
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200362}
Frederic Weisbeckerf83eeb12019-10-03 18:17:44 +0200363EXPORT_SYMBOL_GPL(vtime_account_kernel);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200364
Frederic Weisbeckerfd25b4c2012-11-13 18:21:22 +0100365void vtime_account_idle(struct task_struct *tsk)
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200366{
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100367 unsigned long stime, stime_scaled, steal_time;
368 struct cpu_accounting_data *acct = get_accounting(tsk);
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200369
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100370 stime = vtime_delta(tsk, &stime_scaled, &steal_time);
371 acct->idle_time += stime + steal_time;
Frederic Weisbeckera7e1a9e2012-09-08 16:14:02 +0200372}
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100373
Christophe Leroyb38a1812018-08-02 07:53:57 +0000374static void vtime_flush_scaled(struct task_struct *tsk,
375 struct cpu_accounting_data *acct)
376{
Christophe Leroyabcff862018-08-02 07:53:59 +0000377#ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
Christophe Leroyb38a1812018-08-02 07:53:57 +0000378 if (acct->utime_scaled)
379 tsk->utimescaled += cputime_to_nsecs(acct->utime_scaled);
380 if (acct->stime_scaled)
381 tsk->stimescaled += cputime_to_nsecs(acct->stime_scaled);
382
383 acct->utime_scaled = 0;
384 acct->utime_sspurr = 0;
385 acct->stime_scaled = 0;
Christophe Leroyabcff862018-08-02 07:53:59 +0000386#endif
Christophe Leroyb38a1812018-08-02 07:53:57 +0000387}
388
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100389/*
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +0100390 * Account the whole cputime accumulated in the paca
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100391 * Must be called with interrupts disabled.
Frederic Weisbeckerf83eeb12019-10-03 18:17:44 +0200392 * Assumes that vtime_account_kernel/idle() has been called
Frederic Weisbeckerbcebdf82012-11-13 23:51:06 +0100393 * recently (i.e. since the last entry from usermode) so that
Paul Mackerrascf9efce2010-08-26 19:56:43 +0000394 * get_paca()->user_time_scaled is up to date.
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100395 */
Frederic Weisbeckerc8d7dab2017-01-05 18:11:50 +0100396void vtime_flush(struct task_struct *tsk)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100397{
Christophe Leroyc223c902016-05-17 08:33:46 +0200398 struct cpu_accounting_data *acct = get_accounting(tsk);
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100399
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100400 if (acct->utime)
Frederic Weisbecker23244a52017-01-31 04:09:37 +0100401 account_user_time(tsk, cputime_to_nsecs(acct->utime));
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100402
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100403 if (acct->gtime)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100404 account_guest_time(tsk, cputime_to_nsecs(acct->gtime));
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100405
Christophe Leroy51eeef92018-08-02 07:54:01 +0000406 if (IS_ENABLED(CONFIG_PPC_SPLPAR) && acct->steal_time) {
Frederic Weisbeckerbe9095e2017-01-31 04:09:38 +0100407 account_steal_time(cputime_to_nsecs(acct->steal_time));
Christophe Leroy51eeef92018-08-02 07:54:01 +0000408 acct->steal_time = 0;
409 }
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100410
411 if (acct->idle_time)
Frederic Weisbecker18b43a92017-01-31 04:09:39 +0100412 account_idle_time(cputime_to_nsecs(acct->idle_time));
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100413
414 if (acct->stime)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100415 account_system_index_time(tsk, cputime_to_nsecs(acct->stime),
416 CPUTIME_SYSTEM);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100417
418 if (acct->hardirq_time)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100419 account_system_index_time(tsk, cputime_to_nsecs(acct->hardirq_time),
420 CPUTIME_IRQ);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100421 if (acct->softirq_time)
Frederic Weisbeckerfb8b0492017-01-31 04:09:40 +0100422 account_system_index_time(tsk, cputime_to_nsecs(acct->softirq_time),
423 CPUTIME_SOFTIRQ);
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100424
Christophe Leroyb38a1812018-08-02 07:53:57 +0000425 vtime_flush_scaled(tsk, acct);
426
Frederic Weisbecker8c8b73c2017-01-05 18:11:45 +0100427 acct->utime = 0;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100428 acct->gtime = 0;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100429 acct->idle_time = 0;
430 acct->stime = 0;
Frederic Weisbeckera19ff1a2017-01-05 18:11:47 +0100431 acct->hardirq_time = 0;
432 acct->softirq_time = 0;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100433}
434
Frederic Weisbeckerabf917c2012-07-25 07:56:04 +0200435#else /* ! CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100436#define calc_cputime_factors()
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100437#endif
438
Paul Mackerras6defa382005-11-18 13:44:17 +1100439void __delay(unsigned long loops)
440{
441 unsigned long start;
Paul Mackerras6defa382005-11-18 13:44:17 +1100442
Nicholas Piggin4e287e62017-06-06 23:08:32 +1000443 spin_begin();
Christophe Leroya4c5a352020-09-29 06:48:38 +0000444 if (tb_invalid) {
Mahesh Salgaonkarde269122019-03-05 01:12:19 +0530445 /*
446 * TB is in error state and isn't ticking anymore.
447 * HMI handler was unable to recover from TB error.
448 * Return immediately, so that kernel won't get stuck here.
449 */
450 spin_cpu_relax();
Paul Mackerras6defa382005-11-18 13:44:17 +1100451 } else {
Christophe Leroy942e8912020-10-01 12:42:41 +0000452 start = mftb();
453 while (mftb() - start < loops)
Nicholas Piggin4e287e62017-06-06 23:08:32 +1000454 spin_cpu_relax();
Paul Mackerras6defa382005-11-18 13:44:17 +1100455 }
Nicholas Piggin4e287e62017-06-06 23:08:32 +1000456 spin_end();
Paul Mackerras6defa382005-11-18 13:44:17 +1100457}
458EXPORT_SYMBOL(__delay);
459
460void udelay(unsigned long usecs)
461{
462 __delay(tb_ticks_per_usec * usecs);
463}
464EXPORT_SYMBOL(udelay);
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#ifdef CONFIG_SMP
467unsigned long profile_pc(struct pt_regs *regs)
468{
469 unsigned long pc = instruction_pointer(regs);
470
471 if (in_lock_functions(pc))
472 return regs->link;
473
474 return pc;
475}
476EXPORT_SYMBOL(profile_pc);
477#endif
478
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800479#ifdef CONFIG_IRQ_WORK
Paul Mackerras105988c2009-06-17 21:50:04 +1000480
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000481/*
482 * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable...
483 */
484#ifdef CONFIG_PPC64
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800485static inline unsigned long test_irq_work_pending(void)
Paul Mackerras105988c2009-06-17 21:50:04 +1000486{
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000487 unsigned long x;
488
489 asm volatile("lbz %0,%1(13)"
490 : "=r" (x)
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800491 : "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000492 return x;
Paul Mackerras105988c2009-06-17 21:50:04 +1000493}
494
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800495static inline void set_irq_work_pending_flag(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000496{
497 asm volatile("stb %0,%1(13)" : :
498 "r" (1),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800499 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000500}
501
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800502static inline void clear_irq_work_pending(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000503{
504 asm volatile("stb %0,%1(13)" : :
505 "r" (0),
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800506 "i" (offsetof(struct paca_struct, irq_work_pending)));
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000507}
508
509#else /* 32-bit */
510
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800511DEFINE_PER_CPU(u8, irq_work_pending);
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000512
Christoph Lameter69111ba2014-10-21 15:23:25 -0500513#define set_irq_work_pending_flag() __this_cpu_write(irq_work_pending, 1)
514#define test_irq_work_pending() __this_cpu_read(irq_work_pending)
515#define clear_irq_work_pending() __this_cpu_write(irq_work_pending, 0)
Paul Mackerras105988c2009-06-17 21:50:04 +1000516
Nicholas Pigginabc3fce2020-04-02 22:04:01 +1000517#endif /* 32 vs 64 bit */
518
Peter Zijlstra4f8b50b2011-06-27 17:22:43 +0200519void arch_irq_work_raise(void)
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000520{
Nicholas Pigginabc3fce2020-04-02 22:04:01 +1000521 /*
522 * 64-bit code that uses irq soft-mask can just cause an immediate
523 * interrupt here that gets soft masked, if this is called under
524 * local_irq_disable(). It might be possible to prevent that happening
525 * by noticing interrupts are disabled and setting decrementer pending
526 * to be replayed when irqs are enabled. The problem there is that
527 * tracing can call irq_work_raise, including in code that does low
528 * level manipulations of irq soft-mask state (e.g., trace_hardirqs_on)
529 * which could get tangled up if we're messing with the same state
530 * here.
531 */
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000532 preempt_disable();
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800533 set_irq_work_pending_flag();
Paul Mackerras0fe1ac42010-04-13 20:46:04 +0000534 set_dec(1);
535 preempt_enable();
536}
537
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800538#else /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000539
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800540#define test_irq_work_pending() 0
541#define clear_irq_work_pending()
Paul Mackerras105988c2009-06-17 21:50:04 +1000542
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800543#endif /* CONFIG_IRQ_WORK */
Paul Mackerras105988c2009-06-17 21:50:04 +1000544
Preeti U Murthy1b783952014-02-26 05:38:01 +0530545/*
546 * timer_interrupt - gets called when the decrementer overflows,
547 * with interrupts disabled.
548 */
Nicholas Piggin3f984622018-05-05 03:19:31 +1000549void timer_interrupt(struct pt_regs *regs)
Preeti U Murthy1b783952014-02-26 05:38:01 +0530550{
Nicholas Piggin3f984622018-05-05 03:19:31 +1000551 struct clock_event_device *evt = this_cpu_ptr(&decrementers);
Christoph Lameter69111ba2014-10-21 15:23:25 -0500552 u64 *next_tb = this_cpu_ptr(&decrementers_next_tb);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000553 struct pt_regs *old_regs;
554 u64 now;
Preeti U Murthy1b783952014-02-26 05:38:01 +0530555
Nicholas Piggin59d512e2020-11-07 11:43:36 +1000556 /*
557 * Some implementations of hotplug will get timer interrupts while
558 * offline, just ignore these.
Preeti U Murthy1b783952014-02-26 05:38:01 +0530559 */
Nicholas Piggina7cba022018-05-05 03:19:32 +1000560 if (unlikely(!cpu_online(smp_processor_id()))) {
Nicholas Piggina7cba022018-05-05 03:19:32 +1000561 set_dec(decrementer_max);
Preeti U Murthy1b783952014-02-26 05:38:01 +0530562 return;
563 }
564
Nicholas Piggina7cba022018-05-05 03:19:32 +1000565 /* Ensure a positive value is written to the decrementer, or else
566 * some CPUs will continue to take decrementer exceptions. When the
567 * PPC_WATCHDOG (decrementer based) is configured, keep this at most
568 * 31 bits, which is about 4 seconds on most systems, which gives
569 * the watchdog a chance of catching timer interrupt hard lockups.
570 */
571 if (IS_ENABLED(CONFIG_PPC_WATCHDOG))
572 set_dec(0x7fffffff);
573 else
574 set_dec(decrementer_max);
575
Preeti U Murthy1b783952014-02-26 05:38:01 +0530576 /* Conditionally hard-enable interrupts now that the DEC has been
577 * bumped to its maximum value
578 */
579 may_hard_irq_enable();
580
581
Paul Bolle6e0fdf92014-05-20 22:24:58 +0200582#if defined(CONFIG_PPC32) && defined(CONFIG_PPC_PMAC)
Preeti U Murthy1b783952014-02-26 05:38:01 +0530583 if (atomic_read(&ppc_n_lost_interrupts) != 0)
584 do_IRQ(regs);
585#endif
586
587 old_regs = set_irq_regs(regs);
588 irq_enter();
Nicholas Piggin3f984622018-05-05 03:19:31 +1000589 trace_timer_interrupt_entry(regs);
Preeti U Murthy1b783952014-02-26 05:38:01 +0530590
Nicholas Piggin3f984622018-05-05 03:19:31 +1000591 if (test_irq_work_pending()) {
592 clear_irq_work_pending();
593 irq_work_run();
594 }
595
Christophe Leroy6601ec12020-09-29 06:48:39 +0000596 now = get_tb();
Nicholas Piggin3f984622018-05-05 03:19:31 +1000597 if (now >= *next_tb) {
598 *next_tb = ~(u64)0;
599 if (evt->event_handler)
600 evt->event_handler(evt);
601 __this_cpu_inc(irq_stat.timer_irqs_event);
602 } else {
603 now = *next_tb - now;
604 if (now <= decrementer_max)
605 set_dec(now);
606 /* We may have raced with new irq work */
607 if (test_irq_work_pending())
608 set_dec(1);
609 __this_cpu_inc(irq_stat.timer_irqs_others);
610 }
611
612 trace_timer_interrupt_exit(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 irq_exit();
David Howells7d12e782006-10-05 14:55:46 +0100614 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
Al Viro9445aa12016-01-13 23:33:46 -0500616EXPORT_SYMBOL(timer_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Nicholas Pigginbc907112018-05-05 03:19:33 +1000618#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
Nicholas Piggin3f984622018-05-05 03:19:31 +1000619void timer_broadcast_interrupt(void)
620{
621 u64 *next_tb = this_cpu_ptr(&decrementers_next_tb);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000622
Nicholas Piggin3f984622018-05-05 03:19:31 +1000623 *next_tb = ~(u64)0;
624 tick_receive_broadcast();
Nicholas Piggine360cd32018-05-05 03:19:35 +1000625 __this_cpu_inc(irq_stat.broadcast_irqs_event);
Nicholas Piggin3f984622018-05-05 03:19:31 +1000626}
Nicholas Pigginbc907112018-05-05 03:19:33 +1000627#endif
Nicholas Piggin3f984622018-05-05 03:19:31 +1000628
Scott Wood7ac5dde2007-12-13 04:35:19 +1100629#ifdef CONFIG_SUSPEND
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000630static void generic_suspend_disable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100631{
Scott Wood7ac5dde2007-12-13 04:35:19 +1100632 /* Disable the decrementer, so that it doesn't interfere
633 * with suspending.
634 */
635
Oliver O'Halloran799010242016-07-01 16:20:39 +1000636 set_dec(decrementer_max);
Scott Wood7ac5dde2007-12-13 04:35:19 +1100637 local_irq_disable();
Oliver O'Halloran799010242016-07-01 16:20:39 +1000638 set_dec(decrementer_max);
Scott Wood7ac5dde2007-12-13 04:35:19 +1100639}
640
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000641static void generic_suspend_enable_irqs(void)
Scott Wood7ac5dde2007-12-13 04:35:19 +1100642{
Scott Wood7ac5dde2007-12-13 04:35:19 +1100643 local_irq_enable();
Scott Wood7ac5dde2007-12-13 04:35:19 +1100644}
645
646/* Overrides the weak version in kernel/power/main.c */
647void arch_suspend_disable_irqs(void)
648{
649 if (ppc_md.suspend_disable_irqs)
650 ppc_md.suspend_disable_irqs();
651 generic_suspend_disable_irqs();
652}
653
654/* Overrides the weak version in kernel/power/main.c */
655void arch_suspend_enable_irqs(void)
656{
657 generic_suspend_enable_irqs();
658 if (ppc_md.suspend_enable_irqs)
659 ppc_md.suspend_enable_irqs();
660}
661#endif
662
Paul Mackerrasb6c295d2015-03-28 14:21:02 +1100663unsigned long long tb_to_ns(unsigned long long ticks)
664{
665 return mulhdu(ticks, tb_to_ns_scale) << tb_to_ns_shift;
666}
667EXPORT_SYMBOL_GPL(tb_to_ns);
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/*
670 * Scheduler clock - returns current time in nanosec units.
671 *
672 * Note: mulhdu(a, b) (multiply high double unsigned) returns
673 * the high 64 bits of a * b, i.e. (a * b) >> 64, where a and b
674 * are 64-bit unsigned numbers.
675 */
Santosh Sivaraj6b847d72017-06-20 13:14:47 +0530676notrace unsigned long long sched_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000678 return mulhdu(get_tb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Cyril Bur4be1b292015-02-12 15:01:28 -0800681
682#ifdef CONFIG_PPC_PSERIES
683
684/*
685 * Running clock - attempts to give a view of time passing for a virtualised
686 * kernels.
687 * Uses the VTB register if available otherwise a next best guess.
688 */
689unsigned long long running_clock(void)
690{
691 /*
692 * Don't read the VTB as a host since KVM does not switch in host
693 * timebase into the VTB when it takes a guest off the CPU, reading the
694 * VTB would result in reading 'last switched out' guest VTB.
695 *
696 * Host kernels are often compiled with CONFIG_PPC_PSERIES checked, it
697 * would be unsafe to rely only on the #ifdef above.
698 */
699 if (firmware_has_feature(FW_FEATURE_LPAR) &&
700 cpu_has_feature(CPU_FTR_ARCH_207S))
701 return mulhdu(get_vtb() - boot_tb, tb_to_ns_scale) << tb_to_ns_shift;
702
703 /*
704 * This is a next best approximation without a VTB.
705 * On a host which is running bare metal there should never be any stolen
706 * time and on a host which doesn't do any virtualisation TB *should* equal
707 * VTB so it makes no difference anyway.
708 */
Frédéric Weisbecker9f3768e2017-02-21 16:18:41 +0100709 return local_clock() - kcpustat_this_cpu->cpustat[CPUTIME_STEAL];
Cyril Bur4be1b292015-02-12 15:01:28 -0800710}
711#endif
712
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000713static int __init get_freq(char *name, int cells, unsigned long *val)
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000714{
715 struct device_node *cpu;
Anton Blanchard6f7aba72013-08-07 02:01:34 +1000716 const __be32 *fp;
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000717 int found = 0;
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000718
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000719 /* The cpu node should have timebase and clock frequency properties */
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000720 cpu = of_find_node_by_type(NULL, "cpu");
721
Olaf Heringd8a81882006-02-04 10:34:56 +0100722 if (cpu) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000723 fp = of_get_property(cpu, name, NULL);
Olaf Heringd8a81882006-02-04 10:34:56 +0100724 if (fp) {
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000725 found = 1;
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000726 *val = of_read_ulong(fp, cells);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000727 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000728
729 of_node_put(cpu);
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000730 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000731
732 return found;
733}
734
Anton Blancharde51df2c2014-08-20 08:55:18 +1000735static void start_cpu_decrementer(void)
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000736{
737#if defined(CONFIG_BOOKE) || defined(CONFIG_40x)
Ivan Mikhaylov6e2f03e2017-05-19 18:47:05 +0300738 unsigned int tcr;
739
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000740 /* Clear any pending timer interrupts */
741 mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_DIS | TSR_FIS);
742
Ivan Mikhaylov6e2f03e2017-05-19 18:47:05 +0300743 tcr = mfspr(SPRN_TCR);
744 /*
745 * The watchdog may have already been enabled by u-boot. So leave
746 * TRC[WP] (Watchdog Period) alone.
747 */
748 tcr &= TCR_WP_MASK; /* Clear all bits except for TCR[WP] */
749 tcr |= TCR_DIE; /* Enable decrementer */
750 mtspr(SPRN_TCR, tcr);
751#endif
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000752}
753
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000754void __init generic_calibrate_decr(void)
755{
756 ppc_tb_freq = DEFAULT_TB_FREQ; /* hardcoded default */
757
758 if (!get_freq("ibm,extended-timebase-frequency", 2, &ppc_tb_freq) &&
759 !get_freq("timebase-frequency", 1, &ppc_tb_freq)) {
760
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000761 printk(KERN_ERR "WARNING: Estimating decrementer frequency "
762 "(not found)\n");
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000763 }
Anton Blanchard0bb474a42006-06-20 18:47:26 +1000764
765 ppc_proc_freq = DEFAULT_PROC_FREQ; /* hardcoded default */
766
767 if (!get_freq("ibm,extended-clock-frequency", 2, &ppc_proc_freq) &&
768 !get_freq("clock-frequency", 1, &ppc_proc_freq)) {
769
770 printk(KERN_ERR "WARNING: Estimating processor frequency "
771 "(not found)\n");
772 }
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000773}
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000774
Arnd Bergmann5235afa2018-04-23 10:36:41 +0200775int update_persistent_clock64(struct timespec64 now)
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000776{
777 struct rtc_time tm;
778
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000779 if (!ppc_md.set_rtc_time)
Jason Gunthorpe023f3332012-12-17 14:30:53 -0700780 return -ENODEV;
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000781
Arnd Bergmann5235afa2018-04-23 10:36:41 +0200782 rtc_time64_to_tm(now.tv_sec + 1 + timezone_offset, &tm);
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000783
784 return ppc_md.set_rtc_time(&tm);
785}
786
Arnd Bergmann5bfd6432018-04-23 10:36:40 +0200787static void __read_persistent_clock(struct timespec64 *ts)
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000788{
789 struct rtc_time tm;
790 static int first = 1;
791
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200792 ts->tv_nsec = 0;
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000793 /* XXX this is a litle fragile but will work okay in the short term */
794 if (first) {
795 first = 0;
796 if (ppc_md.time_init)
797 timezone_offset = ppc_md.time_init();
798
799 /* get_boot_time() isn't guaranteed to be safe to call late */
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200800 if (ppc_md.get_boot_time) {
801 ts->tv_sec = ppc_md.get_boot_time() - timezone_offset;
802 return;
803 }
Tony Breedsaa3be5f2007-09-21 13:26:02 +1000804 }
Martin Schwidefskyd90246c2009-08-22 22:23:13 +0200805 if (!ppc_md.get_rtc_time) {
806 ts->tv_sec = 0;
807 return;
808 }
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000809 ppc_md.get_rtc_time(&tm);
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000810
Arnd Bergmann5bfd6432018-04-23 10:36:40 +0200811 ts->tv_sec = rtc_tm_to_time64(&tm);
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000812}
813
Arnd Bergmann5bfd6432018-04-23 10:36:40 +0200814void read_persistent_clock64(struct timespec64 *ts)
Benjamin Herrenschmidt978d7eb2009-11-01 19:11:03 +0000815{
816 __read_persistent_clock(ts);
817
818 /* Sanitize it in case real time clock is set below EPOCH */
819 if (ts->tv_sec < 0) {
820 ts->tv_sec = 0;
821 ts->tv_nsec = 0;
822 }
823
824}
825
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000826/* clocksource code */
Santosh Sivaraj6b847d72017-06-20 13:14:47 +0530827static notrace u64 timebase_read(struct clocksource *cs)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000828{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100829 return (u64)get_tb();
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000830}
831
Michael Ellerman1c21a292008-05-08 14:27:19 +1000832static void __init clocksource_init(void)
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000833{
Christophe Leroya4c5a352020-09-29 06:48:38 +0000834 struct clocksource *clock = &clocksource_timebase;
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000835
Anton Blanchard11b86332011-11-23 20:07:19 +0000836 if (clocksource_register_hz(clock, tb_ticks_per_sec)) {
Tony Breeds4a4cfe32007-09-22 07:35:52 +1000837 printk(KERN_ERR "clocksource: %s is already registered\n",
838 clock->name);
839 return;
840 }
841
842 printk(KERN_INFO "clocksource: %s mult[%x] shift[%d] registered\n",
843 clock->name, clock->mult, clock->shift);
844}
845
Tony Breedsd831d0b2007-09-21 13:26:03 +1000846static int decrementer_set_next_event(unsigned long evt,
847 struct clock_event_device *dev)
848{
Christophe Leroy6601ec12020-09-29 06:48:39 +0000849 __this_cpu_write(decrementers_next_tb, get_tb() + evt);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000850 set_dec(evt);
Benjamin Herrenschmidt0215f7d2014-01-14 17:11:39 +1100851
852 /* We may have raced with new irq work */
853 if (test_irq_work_pending())
854 set_dec(1);
855
Tony Breedsd831d0b2007-09-21 13:26:03 +1000856 return 0;
857}
858
Viresh Kumar37a13e72015-07-16 16:56:25 +0530859static int decrementer_shutdown(struct clock_event_device *dev)
Tony Breedsd831d0b2007-09-21 13:26:03 +1000860{
Oliver O'Halloran799010242016-07-01 16:20:39 +1000861 decrementer_set_next_event(decrementer_max, dev);
Viresh Kumar37a13e72015-07-16 16:56:25 +0530862 return 0;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000863}
864
865static void register_decrementer_clockevent(int cpu)
866{
Anton Blanchard7df10272011-11-23 20:07:22 +0000867 struct clock_event_device *dec = &per_cpu(decrementers, cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000868
869 *dec = decrementer_clockevent;
Rusty Russell320ab2b2008-12-13 21:20:26 +1030870 dec->cpumask = cpumask_of(cpu);
Tony Breedsd831d0b2007-09-21 13:26:03 +1000871
Anton Blanchard8b78fdb2018-10-02 09:01:04 +1000872 clockevents_config_and_register(dec, ppc_tb_freq, 2, decrementer_max);
873
Anton Blanchardb919ee82010-02-07 19:26:29 +0000874 printk_once(KERN_DEBUG "clockevent: %s mult[%x] shift[%d] cpu[%d]\n",
875 dec->name, dec->mult, dec->shift, cpu);
Michael Ellermanb4d16ab2018-10-17 23:39:41 +1100876
877 /* Set values for KVM, see kvm_emulate_dec() */
878 decrementer_clockevent.mult = dec->mult;
879 decrementer_clockevent.shift = dec->shift;
Tony Breedsd831d0b2007-09-21 13:26:03 +1000880}
881
Oliver O'Halloran799010242016-07-01 16:20:39 +1000882static void enable_large_decrementer(void)
883{
884 if (!cpu_has_feature(CPU_FTR_ARCH_300))
885 return;
886
887 if (decrementer_max <= DECREMENTER_DEFAULT_MAX)
888 return;
889
890 /*
891 * If we're running as the hypervisor we need to enable the LD manually
892 * otherwise firmware should have done it for us.
893 */
894 if (cpu_has_feature(CPU_FTR_HVMODE))
895 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_LD);
896}
897
898static void __init set_decrementer_max(void)
899{
900 struct device_node *cpu;
901 u32 bits = 32;
902
903 /* Prior to ISAv3 the decrementer is always 32 bit */
904 if (!cpu_has_feature(CPU_FTR_ARCH_300))
905 return;
906
907 cpu = of_find_node_by_type(NULL, "cpu");
908
909 if (of_property_read_u32(cpu, "ibm,dec-bits", &bits) == 0) {
910 if (bits > 64 || bits < 32) {
911 pr_warn("time_init: firmware supplied invalid ibm,dec-bits");
912 bits = 32;
913 }
914
915 /* calculate the signed maximum given this many bits */
916 decrementer_max = (1ul << (bits - 1)) - 1;
917 }
918
919 of_node_put(cpu);
920
921 pr_info("time_init: %u bit decrementer (max: %llx)\n",
922 bits, decrementer_max);
923}
924
Milton Millerc4818872007-12-14 15:52:10 +1100925static void __init init_decrementer_clockevent(void)
Tony Breedsd831d0b2007-09-21 13:26:03 +1000926{
Anton Blanchard8b78fdb2018-10-02 09:01:04 +1000927 register_decrementer_clockevent(smp_processor_id());
Tony Breedsd831d0b2007-09-21 13:26:03 +1000928}
929
930void secondary_cpu_time_init(void)
931{
Oliver O'Halloran799010242016-07-01 16:20:39 +1000932 /* Enable and test the large decrementer for this cpu */
933 enable_large_decrementer();
934
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000935 /* Start the decrementer on CPUs that have manual control
936 * such as BookE
937 */
938 start_cpu_decrementer();
939
Tony Breedsd831d0b2007-09-21 13:26:03 +1000940 /* FIME: Should make unrelatred change to move snapshot_timebase
941 * call here ! */
942 register_decrementer_clockevent(smp_processor_id());
943}
944
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000945/* This function is only called on the boot processor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946void __init time_init(void)
947{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 struct div_result res;
Paul Mackerrasd75d68c2010-06-20 19:04:14 +0000949 u64 scale;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000950 unsigned shift;
951
Christophe Leroya4c5a352020-09-29 06:48:38 +0000952 /* Normal PowerPC with timebase register */
953 ppc_md.calibrate_decr();
954 printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n",
955 ppc_tb_freq / 1000000, ppc_tb_freq % 1000000);
956 printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n",
957 ppc_proc_freq / 1000000, ppc_proc_freq % 1000000);
Paul Mackerras374e99d2005-10-20 21:04:51 +1000958
959 tb_ticks_per_jiffy = ppc_tb_freq / HZ;
Paul Mackerras092b8f32006-02-20 10:38:56 +1100960 tb_ticks_per_sec = ppc_tb_freq;
Paul Mackerras374e99d2005-10-20 21:04:51 +1000961 tb_ticks_per_usec = ppc_tb_freq / 1000000;
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100962 calc_cputime_factors();
Paul Mackerras092b8f32006-02-20 10:38:56 +1100963
964 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * Compute scale factor for sched_clock.
966 * The calibrate_decr() function has set tb_ticks_per_sec,
967 * which is the timebase frequency.
968 * We compute 1e9 * 2^64 / tb_ticks_per_sec and interpret
969 * the 128-bit result as a 64.64 fixed-point number.
970 * We then shift that number right until it is less than 1.0,
971 * giving us the scale factor and shift count to use in
972 * sched_clock().
973 */
974 div128_by_32(1000000000, 0, tb_ticks_per_sec, &res);
975 scale = res.result_low;
976 for (shift = 0; res.result_high != 0; ++shift) {
977 scale = (scale >> 1) | (res.result_high << 63);
978 res.result_high >>= 1;
979 }
980 tb_to_ns_scale = scale;
981 tb_to_ns_shift = shift;
Tony Breedsfc9069fe2007-07-04 14:04:31 +1000982 /* Save the current timebase to pretty up CONFIG_PRINTK_TIME */
Christophe Leroy6601ec12020-09-29 06:48:39 +0000983 boot_tb = get_tb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Paul Mackerras092b8f32006-02-20 10:38:56 +1100985 /* If platform provided a timezone (pmac), we correct the time */
Anton Blanchard621692c2011-11-23 20:07:21 +0000986 if (timezone_offset) {
Paul Mackerras092b8f32006-02-20 10:38:56 +1100987 sys_tz.tz_minuteswest = -timezone_offset / 60;
988 sys_tz.tz_dsttime = 0;
Anton Blanchard621692c2011-11-23 20:07:21 +0000989 }
Paul Mackerras092b8f32006-02-20 10:38:56 +1100990
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100991 vdso_data->tb_ticks_per_sec = tb_ticks_per_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Oliver O'Halloran799010242016-07-01 16:20:39 +1000993 /* initialise and enable the large decrementer (if we have one) */
994 set_decrementer_max();
995 enable_large_decrementer();
996
Benjamin Herrenschmidt77c0a702009-08-28 14:25:04 +1000997 /* Start the decrementer on CPUs that have manual control
998 * such as BookE
999 */
1000 start_cpu_decrementer();
1001
Stephen Rothwellf5339272012-03-15 18:18:00 +00001002 /* Register the clocksource */
1003 clocksource_init();
Tony Breeds4a4cfe32007-09-22 07:35:52 +10001004
Tony Breedsd831d0b2007-09-21 13:26:03 +10001005 init_decrementer_clockevent();
Preeti U Murthy0d948732014-02-26 05:39:06 +05301006 tick_setup_hrtimer_broadcast();
Kevin Haof0d37302014-12-03 16:53:52 +08001007
Kevin Haof0d37302014-12-03 16:53:52 +08001008 of_clk_init(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/*
1012 * Divide a 128-bit dividend by a 32-bit divisor, leaving a 128 bit
1013 * result.
1014 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001015void div128_by_32(u64 dividend_high, u64 dividend_low,
1016 unsigned divisor, struct div_result *dr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001018 unsigned long a, b, c, d;
1019 unsigned long w, x, y, z;
1020 u64 ra, rb, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 a = dividend_high >> 32;
1023 b = dividend_high & 0xffffffff;
1024 c = dividend_low >> 32;
1025 d = dividend_low & 0xffffffff;
1026
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001027 w = a / divisor;
1028 ra = ((u64)(a - (w * divisor)) << 32) + b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001030 rb = ((u64) do_div(ra, divisor) << 32) + c;
1031 x = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001033 rc = ((u64) do_div(rb, divisor) << 32) + d;
1034 y = rb;
1035
1036 do_div(rc, divisor);
1037 z = rc;
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001038
1039 dr->result_high = ((u64)w << 32) + x;
1040 dr->result_low = ((u64)y << 32) + z;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042}
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001043
Benjamin Herrenschmidt177996e2009-06-09 21:12:00 +00001044/* We don't need to calibrate delay, we use the CPU timebase for that */
1045void calibrate_delay(void)
1046{
1047 /* Some generic code (such as spinlock debug) use loops_per_jiffy
1048 * as the number of __delay(1) in a jiffy, so make it so
1049 */
1050 loops_per_jiffy = tb_ticks_per_jiffy;
1051}
1052
Arnd Bergmann169047f2016-05-30 20:58:00 +02001053#if IS_ENABLED(CONFIG_RTC_DRV_GENERIC)
1054static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
1055{
1056 ppc_md.get_rtc_time(tm);
Alexandre Belloni890ae792018-02-21 22:46:33 +01001057 return 0;
Arnd Bergmann169047f2016-05-30 20:58:00 +02001058}
1059
1060static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
1061{
1062 if (!ppc_md.set_rtc_time)
1063 return -EOPNOTSUPP;
1064
1065 if (ppc_md.set_rtc_time(tm) < 0)
1066 return -EOPNOTSUPP;
1067
1068 return 0;
1069}
1070
1071static const struct rtc_class_ops rtc_generic_ops = {
1072 .read_time = rtc_generic_get_time,
1073 .set_time = rtc_generic_set_time,
1074};
1075
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001076static int __init rtc_init(void)
1077{
1078 struct platform_device *pdev;
1079
1080 if (!ppc_md.get_rtc_time)
1081 return -ENODEV;
1082
Arnd Bergmann169047f2016-05-30 20:58:00 +02001083 pdev = platform_device_register_data(NULL, "rtc-generic", -1,
1084 &rtc_generic_ops,
1085 sizeof(rtc_generic_ops));
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001086
Rusty Russell8c6ffba2013-07-15 11:20:32 +09301087 return PTR_ERR_OR_ZERO(pdev);
Geert Uytterhoevenbcd68a72009-02-19 16:50:46 +01001088}
1089
Paul Gortmaker8f6b9512015-05-01 20:05:49 -04001090device_initcall(rtc_init);
Arnd Bergmann169047f2016-05-30 20:58:00 +02001091#endif