sched_clock.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * sched_clock.c: support for extending counters to full 64-bit ns counter
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <linux/clocksource.h>
  9. #include <linux/init.h>
  10. #include <linux/jiffies.h>
  11. #include <linux/kernel.h>
  12. #include <linux/sched.h>
  13. #include <linux/syscore_ops.h>
  14. #include <linux/timer.h>
  15. #include <asm/sched_clock.h>
  16. struct clock_data {
  17. u64 epoch_ns;
  18. u32 epoch_cyc;
  19. u32 epoch_cyc_copy;
  20. u32 mult;
  21. u32 shift;
  22. };
  23. static void sched_clock_poll(unsigned long wrap_ticks);
  24. static DEFINE_TIMER(sched_clock_timer, sched_clock_poll, 0, 0);
  25. static struct clock_data cd = {
  26. .mult = NSEC_PER_SEC / HZ,
  27. };
  28. static u32 __read_mostly sched_clock_mask = 0xffffffff;
  29. static u32 notrace jiffy_sched_clock_read(void)
  30. {
  31. return (u32)(jiffies - INITIAL_JIFFIES);
  32. }
  33. static u32 __read_mostly (*read_sched_clock)(void) = jiffy_sched_clock_read;
  34. static inline u64 cyc_to_ns(u64 cyc, u32 mult, u32 shift)
  35. {
  36. return (cyc * mult) >> shift;
  37. }
  38. static unsigned long long cyc_to_sched_clock(u32 cyc, u32 mask)
  39. {
  40. u64 epoch_ns;
  41. u32 epoch_cyc;
  42. /*
  43. * Load the epoch_cyc and epoch_ns atomically. We do this by
  44. * ensuring that we always write epoch_cyc, epoch_ns and
  45. * epoch_cyc_copy in strict order, and read them in strict order.
  46. * If epoch_cyc and epoch_cyc_copy are not equal, then we're in
  47. * the middle of an update, and we should repeat the load.
  48. */
  49. do {
  50. epoch_cyc = cd.epoch_cyc;
  51. smp_rmb();
  52. epoch_ns = cd.epoch_ns;
  53. smp_rmb();
  54. } while (epoch_cyc != cd.epoch_cyc_copy);
  55. return epoch_ns + cyc_to_ns((cyc - epoch_cyc) & mask, cd.mult, cd.shift);
  56. }
  57. /*
  58. * Atomically update the sched_clock epoch.
  59. */
  60. static void notrace update_sched_clock(void)
  61. {
  62. unsigned long flags;
  63. u32 cyc;
  64. u64 ns;
  65. cyc = read_sched_clock();
  66. ns = cd.epoch_ns +
  67. cyc_to_ns((cyc - cd.epoch_cyc) & sched_clock_mask,
  68. cd.mult, cd.shift);
  69. /*
  70. * Write epoch_cyc and epoch_ns in a way that the update is
  71. * detectable in cyc_to_fixed_sched_clock().
  72. */
  73. raw_local_irq_save(flags);
  74. cd.epoch_cyc = cyc;
  75. smp_wmb();
  76. cd.epoch_ns = ns;
  77. smp_wmb();
  78. cd.epoch_cyc_copy = cyc;
  79. raw_local_irq_restore(flags);
  80. }
  81. static void sched_clock_poll(unsigned long wrap_ticks)
  82. {
  83. mod_timer(&sched_clock_timer, round_jiffies(jiffies + wrap_ticks));
  84. update_sched_clock();
  85. }
  86. void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate)
  87. {
  88. unsigned long r, w;
  89. u64 res, wrap;
  90. char r_unit;
  91. BUG_ON(bits > 32);
  92. WARN_ON(!irqs_disabled());
  93. WARN_ON(read_sched_clock != jiffy_sched_clock_read);
  94. read_sched_clock = read;
  95. sched_clock_mask = (1 << bits) - 1;
  96. /* calculate the mult/shift to convert counter ticks to ns. */
  97. clocks_calc_mult_shift(&cd.mult, &cd.shift, rate, NSEC_PER_SEC, 0);
  98. r = rate;
  99. if (r >= 4000000) {
  100. r /= 1000000;
  101. r_unit = 'M';
  102. } else if (r >= 1000) {
  103. r /= 1000;
  104. r_unit = 'k';
  105. } else
  106. r_unit = ' ';
  107. /* calculate how many ns until we wrap */
  108. wrap = cyc_to_ns((1ULL << bits) - 1, cd.mult, cd.shift);
  109. do_div(wrap, NSEC_PER_MSEC);
  110. w = wrap;
  111. /* calculate the ns resolution of this counter */
  112. res = cyc_to_ns(1ULL, cd.mult, cd.shift);
  113. pr_info("sched_clock: %u bits at %lu%cHz, resolution %lluns, wraps every %lums\n",
  114. bits, r, r_unit, res, w);
  115. /*
  116. * Start the timer to keep sched_clock() properly updated and
  117. * sets the initial epoch.
  118. */
  119. sched_clock_timer.data = msecs_to_jiffies(w - (w / 10));
  120. update_sched_clock();
  121. /*
  122. * Ensure that sched_clock() starts off at 0ns
  123. */
  124. cd.epoch_ns = 0;
  125. pr_debug("Registered %pF as sched_clock source\n", read);
  126. }
  127. unsigned long long notrace sched_clock(void)
  128. {
  129. u32 cyc = read_sched_clock();
  130. return cyc_to_sched_clock(cyc, sched_clock_mask);
  131. }
  132. void __init sched_clock_postinit(void)
  133. {
  134. /*
  135. * If no sched_clock function has been provided at that point,
  136. * make it the final one one.
  137. */
  138. if (read_sched_clock == jiffy_sched_clock_read)
  139. setup_sched_clock(jiffy_sched_clock_read, 32, HZ);
  140. sched_clock_poll(sched_clock_timer.data);
  141. }
  142. static int sched_clock_suspend(void)
  143. {
  144. sched_clock_poll(sched_clock_timer.data);
  145. return 0;
  146. }
  147. static struct syscore_ops sched_clock_ops = {
  148. .suspend = sched_clock_suspend,
  149. };
  150. static int __init sched_clock_syscore_init(void)
  151. {
  152. register_syscore_ops(&sched_clock_ops);
  153. return 0;
  154. }
  155. device_initcall(sched_clock_syscore_init);