timer.c 1.7 KB

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