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