localtimer.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * linux/arch/arm/mach-realview/localtimer.c
  3. *
  4. * Copyright (C) 2002 ARM Ltd.
  5. * All Rights Reserved
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/init.h>
  12. #include <linux/kernel.h>
  13. #include <linux/delay.h>
  14. #include <linux/smp.h>
  15. #include <linux/jiffies.h>
  16. #include <linux/clockchips.h>
  17. #include <linux/irq.h>
  18. #include <linux/io.h>
  19. #include <asm/hardware/arm_twd.h>
  20. #include <asm/hardware/gic.h>
  21. #include <mach/hardware.h>
  22. #include <asm/irq.h>
  23. #ifdef CONFIG_LOCAL_TIMERS
  24. /* set up by the platform code */
  25. void __iomem *twd_base;
  26. static unsigned long mpcore_timer_rate;
  27. static void local_timer_set_mode(enum clock_event_mode mode,
  28. struct clock_event_device *evt)
  29. {
  30. unsigned long ctrl;
  31. switch(mode) {
  32. case CLOCK_EVT_MODE_PERIODIC:
  33. /* timer load already set up */
  34. ctrl = TWD_TIMER_CONTROL_ENABLE | TWD_TIMER_CONTROL_IT_ENABLE
  35. | TWD_TIMER_CONTROL_PERIODIC;
  36. break;
  37. case CLOCK_EVT_MODE_ONESHOT:
  38. /* period set, and timer enabled in 'next_event' hook */
  39. ctrl = TWD_TIMER_CONTROL_IT_ENABLE | TWD_TIMER_CONTROL_ONESHOT;
  40. break;
  41. case CLOCK_EVT_MODE_UNUSED:
  42. case CLOCK_EVT_MODE_SHUTDOWN:
  43. default:
  44. ctrl = 0;
  45. }
  46. __raw_writel(ctrl, twd_base + TWD_TIMER_CONTROL);
  47. }
  48. static int local_timer_set_next_event(unsigned long evt,
  49. struct clock_event_device *unused)
  50. {
  51. unsigned long ctrl = __raw_readl(twd_base + TWD_TIMER_CONTROL);
  52. __raw_writel(evt, twd_base + TWD_TIMER_COUNTER);
  53. __raw_writel(ctrl | TWD_TIMER_CONTROL_ENABLE, twd_base + TWD_TIMER_CONTROL);
  54. return 0;
  55. }
  56. /*
  57. * local_timer_ack: checks for a local timer interrupt.
  58. *
  59. * If a local timer interrupt has occurred, acknowledge and return 1.
  60. * Otherwise, return 0.
  61. */
  62. int local_timer_ack(void)
  63. {
  64. if (__raw_readl(twd_base + TWD_TIMER_INTSTAT)) {
  65. __raw_writel(1, twd_base + TWD_TIMER_INTSTAT);
  66. return 1;
  67. }
  68. return 0;
  69. }
  70. static void __cpuinit twd_calibrate_rate(void)
  71. {
  72. unsigned long load, count;
  73. u64 waitjiffies;
  74. /*
  75. * If this is the first time round, we need to work out how fast
  76. * the timer ticks
  77. */
  78. if (mpcore_timer_rate == 0) {
  79. printk("Calibrating local timer... ");
  80. /* Wait for a tick to start */
  81. waitjiffies = get_jiffies_64() + 1;
  82. while (get_jiffies_64() < waitjiffies)
  83. udelay(10);
  84. /* OK, now the tick has started, let's get the timer going */
  85. waitjiffies += 5;
  86. /* enable, no interrupt or reload */
  87. __raw_writel(0x1, twd_base + TWD_TIMER_CONTROL);
  88. /* maximum value */
  89. __raw_writel(0xFFFFFFFFU, twd_base + TWD_TIMER_COUNTER);
  90. while (get_jiffies_64() < waitjiffies)
  91. udelay(10);
  92. count = __raw_readl(twd_base + TWD_TIMER_COUNTER);
  93. mpcore_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5);
  94. printk("%lu.%02luMHz.\n", mpcore_timer_rate / 1000000,
  95. (mpcore_timer_rate / 100000) % 100);
  96. }
  97. load = mpcore_timer_rate / HZ;
  98. __raw_writel(load, twd_base + TWD_TIMER_LOAD);
  99. }
  100. /*
  101. * Setup the local clock events for a CPU.
  102. */
  103. void __cpuinit local_timer_setup(struct clock_event_device *evt)
  104. {
  105. unsigned long flags;
  106. twd_calibrate_rate();
  107. evt->name = "local_timer";
  108. evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
  109. evt->rating = 350;
  110. evt->set_mode = local_timer_set_mode;
  111. evt->set_next_event = local_timer_set_next_event;
  112. evt->irq = IRQ_LOCALTIMER;
  113. evt->shift = 20;
  114. evt->mult = div_sc(mpcore_timer_rate, NSEC_PER_SEC, evt->shift);
  115. evt->max_delta_ns = clockevent_delta2ns(0xffffffff, evt);
  116. evt->min_delta_ns = clockevent_delta2ns(0xf, evt);
  117. /* Make sure our local interrupt controller has this enabled */
  118. local_irq_save(flags);
  119. get_irq_chip(IRQ_LOCALTIMER)->unmask(IRQ_LOCALTIMER);
  120. local_irq_restore(flags);
  121. clockevents_register_device(evt);
  122. }
  123. /*
  124. * take a local timer down
  125. */
  126. void __cpuexit local_timer_stop(void)
  127. {
  128. __raw_writel(0, twd_base + TWD_TIMER_CONTROL);
  129. }
  130. #endif /* CONFIG_LOCAL_TIMERS */