time.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 1991,1992,1995 Linus Torvalds
  4. * Copyright (c) 1994 Alan Modra
  5. * Copyright (c) 1995 Markus Kuhn
  6. * Copyright (c) 1996 Ingo Molnar
  7. * Copyright (c) 1998 Andrea Arcangeli
  8. * Copyright (c) 2002,2006 Vojtech Pavlik
  9. * Copyright (c) 2003 Andi Kleen
  10. *
  11. */
  12. #include <linux/clocksource.h>
  13. #include <linux/clockchips.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/irq.h>
  16. #include <linux/i8253.h>
  17. #include <linux/time.h>
  18. #include <linux/export.h>
  19. #include <asm/vsyscall.h>
  20. #include <asm/x86_init.h>
  21. #include <asm/i8259.h>
  22. #include <asm/timer.h>
  23. #include <asm/hpet.h>
  24. #include <asm/time.h>
  25. #ifdef CONFIG_X86_64
  26. __visible volatile unsigned long jiffies __cacheline_aligned_in_smp = INITIAL_JIFFIES;
  27. #endif
  28. unsigned long profile_pc(struct pt_regs *regs)
  29. {
  30. unsigned long pc = instruction_pointer(regs);
  31. if (!user_mode(regs) && in_lock_functions(pc)) {
  32. #ifdef CONFIG_FRAME_POINTER
  33. return *(unsigned long *)(regs->bp + sizeof(long));
  34. #else
  35. unsigned long *sp =
  36. (unsigned long *)kernel_stack_pointer(regs);
  37. /*
  38. * Return address is either directly at stack pointer
  39. * or above a saved flags. Eflags has bits 22-31 zero,
  40. * kernel addresses don't.
  41. */
  42. if (sp[0] >> 22)
  43. return sp[0];
  44. if (sp[1] >> 22)
  45. return sp[1];
  46. #endif
  47. }
  48. return pc;
  49. }
  50. EXPORT_SYMBOL(profile_pc);
  51. /*
  52. * Default timer interrupt handler for PIT/HPET
  53. */
  54. static irqreturn_t timer_interrupt(int irq, void *dev_id)
  55. {
  56. global_clock_event->event_handler(global_clock_event);
  57. return IRQ_HANDLED;
  58. }
  59. static struct irqaction irq0 = {
  60. .handler = timer_interrupt,
  61. .flags = IRQF_NOBALANCING | IRQF_IRQPOLL | IRQF_TIMER,
  62. .name = "timer"
  63. };
  64. static void __init setup_default_timer_irq(void)
  65. {
  66. /*
  67. * Unconditionally register the legacy timer; even without legacy
  68. * PIC/PIT we need this for the HPET0 in legacy replacement mode.
  69. */
  70. if (setup_irq(0, &irq0))
  71. pr_info("Failed to register legacy timer interrupt\n");
  72. }
  73. /* Default timer init function */
  74. void __init hpet_time_init(void)
  75. {
  76. if (!hpet_enable())
  77. setup_pit_timer();
  78. setup_default_timer_irq();
  79. }
  80. static __init void x86_late_time_init(void)
  81. {
  82. x86_init.timers.timer_init();
  83. /*
  84. * After PIT/HPET timers init, select and setup
  85. * the final interrupt mode for delivering IRQs.
  86. */
  87. x86_init.irqs.intr_mode_init();
  88. tsc_init();
  89. }
  90. /*
  91. * Initialize TSC and delay the periodic timer init to
  92. * late x86_late_time_init() so ioremap works.
  93. */
  94. void __init time_init(void)
  95. {
  96. late_time_init = x86_late_time_init;
  97. }
  98. /*
  99. * Sanity check the vdso related archdata content.
  100. */
  101. void clocksource_arch_init(struct clocksource *cs)
  102. {
  103. if (cs->archdata.vclock_mode == VCLOCK_NONE)
  104. return;
  105. if (cs->archdata.vclock_mode > VCLOCK_MAX) {
  106. pr_warn("clocksource %s registered with invalid vclock_mode %d. Disabling vclock.\n",
  107. cs->name, cs->archdata.vclock_mode);
  108. cs->archdata.vclock_mode = VCLOCK_NONE;
  109. }
  110. if (cs->mask != CLOCKSOURCE_MASK(64)) {
  111. pr_warn("clocksource %s registered with invalid mask %016llx. Disabling vclock.\n",
  112. cs->name, cs->mask);
  113. cs->archdata.vclock_mode = VCLOCK_NONE;
  114. }
  115. }