time.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. *
  14. * Support the cycle counter clocksource and tile timer clock event device.
  15. */
  16. #include <linux/time.h>
  17. #include <linux/timex.h>
  18. #include <linux/clocksource.h>
  19. #include <linux/clockchips.h>
  20. #include <linux/hardirq.h>
  21. #include <linux/sched.h>
  22. #include <linux/smp.h>
  23. #include <linux/delay.h>
  24. #include <linux/module.h>
  25. #include <linux/timekeeper_internal.h>
  26. #include <asm/irq_regs.h>
  27. #include <asm/traps.h>
  28. #include <asm/vdso.h>
  29. #include <hv/hypervisor.h>
  30. #include <arch/interrupts.h>
  31. #include <arch/spr_def.h>
  32. /*
  33. * Define the cycle counter clock source.
  34. */
  35. /* How many cycles per second we are running at. */
  36. static cycles_t cycles_per_sec __write_once;
  37. cycles_t get_clock_rate(void)
  38. {
  39. return cycles_per_sec;
  40. }
  41. #if CHIP_HAS_SPLIT_CYCLE()
  42. cycles_t get_cycles(void)
  43. {
  44. unsigned int high = __insn_mfspr(SPR_CYCLE_HIGH);
  45. unsigned int low = __insn_mfspr(SPR_CYCLE_LOW);
  46. unsigned int high2 = __insn_mfspr(SPR_CYCLE_HIGH);
  47. while (unlikely(high != high2)) {
  48. low = __insn_mfspr(SPR_CYCLE_LOW);
  49. high = high2;
  50. high2 = __insn_mfspr(SPR_CYCLE_HIGH);
  51. }
  52. return (((cycles_t)high) << 32) | low;
  53. }
  54. EXPORT_SYMBOL(get_cycles);
  55. #endif
  56. /*
  57. * We use a relatively small shift value so that sched_clock()
  58. * won't wrap around very often.
  59. */
  60. #define SCHED_CLOCK_SHIFT 10
  61. static unsigned long sched_clock_mult __write_once;
  62. static cycles_t clocksource_get_cycles(struct clocksource *cs)
  63. {
  64. return get_cycles();
  65. }
  66. static struct clocksource cycle_counter_cs = {
  67. .name = "cycle counter",
  68. .rating = 300,
  69. .read = clocksource_get_cycles,
  70. .mask = CLOCKSOURCE_MASK(64),
  71. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  72. };
  73. /*
  74. * Called very early from setup_arch() to set cycles_per_sec.
  75. * We initialize it early so we can use it to set up loops_per_jiffy.
  76. */
  77. void __init setup_clock(void)
  78. {
  79. cycles_per_sec = hv_sysconf(HV_SYSCONF_CPU_SPEED);
  80. sched_clock_mult =
  81. clocksource_hz2mult(cycles_per_sec, SCHED_CLOCK_SHIFT);
  82. }
  83. void __init calibrate_delay(void)
  84. {
  85. loops_per_jiffy = get_clock_rate() / HZ;
  86. pr_info("Clock rate yields %lu.%02lu BogoMIPS (lpj=%lu)\n",
  87. loops_per_jiffy/(500000/HZ),
  88. (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy);
  89. }
  90. /* Called fairly late in init/main.c, but before we go smp. */
  91. void __init time_init(void)
  92. {
  93. /* Initialize and register the clock source. */
  94. clocksource_register_hz(&cycle_counter_cs, cycles_per_sec);
  95. /* Start up the tile-timer interrupt source on the boot cpu. */
  96. setup_tile_timer();
  97. }
  98. /*
  99. * Define the tile timer clock event device. The timer is driven by
  100. * the TILE_TIMER_CONTROL register, which consists of a 31-bit down
  101. * counter, plus bit 31, which signifies that the counter has wrapped
  102. * from zero to (2**31) - 1. The INT_TILE_TIMER interrupt will be
  103. * raised as long as bit 31 is set.
  104. *
  105. * The TILE_MINSEC value represents the largest range of real-time
  106. * we can possibly cover with the timer, based on MAX_TICK combined
  107. * with the slowest reasonable clock rate we might run at.
  108. */
  109. #define MAX_TICK 0x7fffffff /* we have 31 bits of countdown timer */
  110. #define TILE_MINSEC 5 /* timer covers no more than 5 seconds */
  111. static int tile_timer_set_next_event(unsigned long ticks,
  112. struct clock_event_device *evt)
  113. {
  114. BUG_ON(ticks > MAX_TICK);
  115. __insn_mtspr(SPR_TILE_TIMER_CONTROL, ticks);
  116. arch_local_irq_unmask_now(INT_TILE_TIMER);
  117. return 0;
  118. }
  119. /*
  120. * Whenever anyone tries to change modes, we just mask interrupts
  121. * and wait for the next event to get set.
  122. */
  123. static void tile_timer_set_mode(enum clock_event_mode mode,
  124. struct clock_event_device *evt)
  125. {
  126. arch_local_irq_mask_now(INT_TILE_TIMER);
  127. }
  128. /*
  129. * Set min_delta_ns to 1 microsecond, since it takes about
  130. * that long to fire the interrupt.
  131. */
  132. static DEFINE_PER_CPU(struct clock_event_device, tile_timer) = {
  133. .name = "tile timer",
  134. .features = CLOCK_EVT_FEAT_ONESHOT,
  135. .min_delta_ns = 1000,
  136. .rating = 100,
  137. .irq = -1,
  138. .set_next_event = tile_timer_set_next_event,
  139. .set_mode = tile_timer_set_mode,
  140. };
  141. void setup_tile_timer(void)
  142. {
  143. struct clock_event_device *evt = &__get_cpu_var(tile_timer);
  144. /* Fill in fields that are speed-specific. */
  145. clockevents_calc_mult_shift(evt, cycles_per_sec, TILE_MINSEC);
  146. evt->max_delta_ns = clockevent_delta2ns(MAX_TICK, evt);
  147. /* Mark as being for this cpu only. */
  148. evt->cpumask = cpumask_of(smp_processor_id());
  149. /* Start out with timer not firing. */
  150. arch_local_irq_mask_now(INT_TILE_TIMER);
  151. /* Register tile timer. */
  152. clockevents_register_device(evt);
  153. }
  154. /* Called from the interrupt vector. */
  155. void do_timer_interrupt(struct pt_regs *regs, int fault_num)
  156. {
  157. struct pt_regs *old_regs = set_irq_regs(regs);
  158. struct clock_event_device *evt = &__get_cpu_var(tile_timer);
  159. /*
  160. * Mask the timer interrupt here, since we are a oneshot timer
  161. * and there are now by definition no events pending.
  162. */
  163. arch_local_irq_mask(INT_TILE_TIMER);
  164. /* Track time spent here in an interrupt context */
  165. irq_enter();
  166. /* Track interrupt count. */
  167. __get_cpu_var(irq_stat).irq_timer_count++;
  168. /* Call the generic timer handler */
  169. evt->event_handler(evt);
  170. /*
  171. * Track time spent against the current process again and
  172. * process any softirqs if they are waiting.
  173. */
  174. irq_exit();
  175. set_irq_regs(old_regs);
  176. }
  177. /*
  178. * Scheduler clock - returns current time in nanosec units.
  179. * Note that with LOCKDEP, this is called during lockdep_init(), and
  180. * we will claim that sched_clock() is zero for a little while, until
  181. * we run setup_clock(), above.
  182. */
  183. unsigned long long sched_clock(void)
  184. {
  185. return clocksource_cyc2ns(get_cycles(),
  186. sched_clock_mult, SCHED_CLOCK_SHIFT);
  187. }
  188. int setup_profiling_timer(unsigned int multiplier)
  189. {
  190. return -EINVAL;
  191. }
  192. /*
  193. * Use the tile timer to convert nsecs to core clock cycles, relying
  194. * on it having the same frequency as SPR_CYCLE.
  195. */
  196. cycles_t ns2cycles(unsigned long nsecs)
  197. {
  198. /*
  199. * We do not have to disable preemption here as each core has the same
  200. * clock frequency.
  201. */
  202. struct clock_event_device *dev = &__raw_get_cpu_var(tile_timer);
  203. return ((u64)nsecs * dev->mult) >> dev->shift;
  204. }
  205. void update_vsyscall_tz(void)
  206. {
  207. /* Userspace gettimeofday will spin while this value is odd. */
  208. ++vdso_data->tz_update_count;
  209. smp_wmb();
  210. vdso_data->tz_minuteswest = sys_tz.tz_minuteswest;
  211. vdso_data->tz_dsttime = sys_tz.tz_dsttime;
  212. smp_wmb();
  213. ++vdso_data->tz_update_count;
  214. }
  215. void update_vsyscall(struct timekeeper *tk)
  216. {
  217. struct timespec wall_time = tk_xtime(tk);
  218. struct timespec *wtm = &tk->wall_to_monotonic;
  219. struct clocksource *clock = tk->clock;
  220. if (clock != &cycle_counter_cs)
  221. return;
  222. /* Userspace gettimeofday will spin while this value is odd. */
  223. ++vdso_data->tb_update_count;
  224. smp_wmb();
  225. vdso_data->xtime_tod_stamp = clock->cycle_last;
  226. vdso_data->xtime_clock_sec = wall_time.tv_sec;
  227. vdso_data->xtime_clock_nsec = wall_time.tv_nsec;
  228. vdso_data->wtom_clock_sec = wtm->tv_sec;
  229. vdso_data->wtom_clock_nsec = wtm->tv_nsec;
  230. vdso_data->mult = clock->mult;
  231. vdso_data->shift = clock->shift;
  232. smp_wmb();
  233. ++vdso_data->tb_update_count;
  234. }