timer.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 <linux/clocksource.h>
  14. #include <asm/hw_irq.h>
  15. #include <asm/system.h>
  16. #include <asm/timex.h>
  17. #include <asm/sn/leds.h>
  18. #include <asm/sn/shub_mmr.h>
  19. #include <asm/sn/clksupport.h>
  20. extern unsigned long sn_rtc_cycles_per_second;
  21. static cycle_t read_sn2(struct clocksource *cs)
  22. {
  23. return (cycle_t)readq(RTC_COUNTER_ADDR);
  24. }
  25. static struct clocksource clocksource_sn2 = {
  26. .name = "sn2_rtc",
  27. .rating = 450,
  28. .read = read_sn2,
  29. .mask = (1LL << 55) - 1,
  30. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  31. };
  32. /*
  33. * sn udelay uses the RTC instead of the ITC because the ITC is not
  34. * synchronized across all CPUs, and the thread may migrate to another CPU
  35. * if preemption is enabled.
  36. */
  37. static void
  38. ia64_sn_udelay (unsigned long usecs)
  39. {
  40. unsigned long start = rtc_time();
  41. unsigned long end = start +
  42. usecs * sn_rtc_cycles_per_second / 1000000;
  43. while (time_before((unsigned long)rtc_time(), end))
  44. cpu_relax();
  45. }
  46. void __init sn_timer_init(void)
  47. {
  48. clocksource_sn2.archdata.fsys_mmio = RTC_COUNTER_ADDR;
  49. clocksource_register_hz(&clocksource_sn2, sn_rtc_cycles_per_second);
  50. ia64_udelay = &ia64_sn_udelay;
  51. }