sched_clock.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. static void sched_clock_poll(unsigned long wrap_ticks);
  16. static DEFINE_TIMER(sched_clock_timer, sched_clock_poll, 0, 0);
  17. static void (*sched_clock_update_fn)(void);
  18. static void sched_clock_poll(unsigned long wrap_ticks)
  19. {
  20. mod_timer(&sched_clock_timer, round_jiffies(jiffies + wrap_ticks));
  21. sched_clock_update_fn();
  22. }
  23. void __init init_sched_clock(struct clock_data *cd, void (*update)(void),
  24. unsigned int clock_bits, unsigned long rate)
  25. {
  26. unsigned long r, w;
  27. u64 res, wrap;
  28. char r_unit;
  29. sched_clock_update_fn = update;
  30. /* calculate the mult/shift to convert counter ticks to ns. */
  31. clocks_calc_mult_shift(&cd->mult, &cd->shift, rate, NSEC_PER_SEC, 0);
  32. r = rate;
  33. if (r >= 4000000) {
  34. r /= 1000000;
  35. r_unit = 'M';
  36. } else {
  37. r /= 1000;
  38. r_unit = 'k';
  39. }
  40. /* calculate how many ns until we wrap */
  41. wrap = cyc_to_ns((1ULL << clock_bits) - 1, cd->mult, cd->shift);
  42. do_div(wrap, NSEC_PER_MSEC);
  43. w = wrap;
  44. /* calculate the ns resolution of this counter */
  45. res = cyc_to_ns(1ULL, cd->mult, cd->shift);
  46. pr_info("sched_clock: %u bits at %lu%cHz, resolution %lluns, wraps every %lums\n",
  47. clock_bits, r, r_unit, res, w);
  48. /*
  49. * Start the timer to keep sched_clock() properly updated and
  50. * sets the initial epoch.
  51. */
  52. sched_clock_timer.data = msecs_to_jiffies(w - (w / 10));
  53. update();
  54. /*
  55. * Ensure that sched_clock() starts off at 0ns
  56. */
  57. cd->epoch_ns = 0;
  58. }
  59. void __init sched_clock_postinit(void)
  60. {
  61. sched_clock_poll(sched_clock_timer.data);
  62. }