sched_clock.c 4.0 KB

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