timer.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * linux/arch/ia64/sn/kernel/sn2/timer.c
  3. *
  4. * Copyright (C) 2003 Silicon Graphics, Inc.
  5. * Copyright (C) 2003 Hewlett-Packard Co
  6. * David Mosberger <davidm@hpl.hp.com>: updated for new timer-interpolation infrastructure
  7. */
  8. #include <linux/init.h>
  9. #include <linux/kernel.h>
  10. #include <linux/sched.h>
  11. #include <linux/time.h>
  12. #include <linux/interrupt.h>
  13. #include <asm/hw_irq.h>
  14. #include <asm/system.h>
  15. #include <asm/timex.h>
  16. #include <asm/sn/leds.h>
  17. #include <asm/sn/shub_mmr.h>
  18. #include <asm/sn/clksupport.h>
  19. extern unsigned long sn_rtc_cycles_per_second;
  20. static struct time_interpolator sn2_interpolator = {
  21. .drift = -1,
  22. .shift = 10,
  23. .mask = (1LL << 55) - 1,
  24. .source = TIME_SOURCE_MMIO64
  25. };
  26. /*
  27. * sn udelay uses the RTC instead of the ITC because the ITC is not
  28. * synchronized across all CPUs, and the thread may migrate to another CPU
  29. * if preemption is enabled.
  30. */
  31. static void
  32. ia64_sn_udelay (unsigned long usecs)
  33. {
  34. unsigned long start = rtc_time();
  35. unsigned long end = start +
  36. usecs * sn_rtc_cycles_per_second / 1000000;
  37. while (time_before((unsigned long)rtc_time(), end))
  38. cpu_relax();
  39. }
  40. void __init sn_timer_init(void)
  41. {
  42. sn2_interpolator.frequency = sn_rtc_cycles_per_second;
  43. sn2_interpolator.addr = RTC_COUNTER_ADDR;
  44. register_time_interpolator(&sn2_interpolator);
  45. ia64_udelay = &ia64_sn_udelay;
  46. }