timer.c 1.5 KB

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