at91rm9200_time.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * linux/arch/arm/mach-at91/at91rm9200_time.c
  3. *
  4. * Copyright (C) 2003 SAN People
  5. * Copyright (C) 2003 ATMEL
  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 as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/irq.h>
  24. #include <linux/clockchips.h>
  25. #include <asm/mach/time.h>
  26. #include <mach/at91_st.h>
  27. static unsigned long last_crtr;
  28. static u32 irqmask;
  29. static struct clock_event_device clkevt;
  30. /*
  31. * The ST_CRTR is updated asynchronously to the master clock ... but
  32. * the updates as seen by the CPU don't seem to be strictly monotonic.
  33. * Waiting until we read the same value twice avoids glitching.
  34. */
  35. static inline unsigned long read_CRTR(void)
  36. {
  37. unsigned long x1, x2;
  38. x1 = at91_sys_read(AT91_ST_CRTR);
  39. do {
  40. x2 = at91_sys_read(AT91_ST_CRTR);
  41. if (x1 == x2)
  42. break;
  43. x1 = x2;
  44. } while (1);
  45. return x1;
  46. }
  47. /*
  48. * IRQ handler for the timer.
  49. */
  50. static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id)
  51. {
  52. u32 sr = at91_sys_read(AT91_ST_SR) & irqmask;
  53. /* simulate "oneshot" timer with alarm */
  54. if (sr & AT91_ST_ALMS) {
  55. clkevt.event_handler(&clkevt);
  56. return IRQ_HANDLED;
  57. }
  58. /* periodic mode should handle delayed ticks */
  59. if (sr & AT91_ST_PITS) {
  60. u32 crtr = read_CRTR();
  61. while (((crtr - last_crtr) & AT91_ST_CRTV) >= LATCH) {
  62. last_crtr += LATCH;
  63. clkevt.event_handler(&clkevt);
  64. }
  65. return IRQ_HANDLED;
  66. }
  67. /* this irq is shared ... */
  68. return IRQ_NONE;
  69. }
  70. static struct irqaction at91rm9200_timer_irq = {
  71. .name = "at91_tick",
  72. .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  73. .handler = at91rm9200_timer_interrupt
  74. };
  75. static cycle_t read_clk32k(struct clocksource *cs)
  76. {
  77. return read_CRTR();
  78. }
  79. static struct clocksource clk32k = {
  80. .name = "32k_counter",
  81. .rating = 150,
  82. .read = read_clk32k,
  83. .mask = CLOCKSOURCE_MASK(20),
  84. .shift = 10,
  85. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  86. };
  87. static void
  88. clkevt32k_mode(enum clock_event_mode mode, struct clock_event_device *dev)
  89. {
  90. /* Disable and flush pending timer interrupts */
  91. at91_sys_write(AT91_ST_IDR, AT91_ST_PITS | AT91_ST_ALMS);
  92. (void) at91_sys_read(AT91_ST_SR);
  93. last_crtr = read_CRTR();
  94. switch (mode) {
  95. case CLOCK_EVT_MODE_PERIODIC:
  96. /* PIT for periodic irqs; fixed rate of 1/HZ */
  97. irqmask = AT91_ST_PITS;
  98. at91_sys_write(AT91_ST_PIMR, LATCH);
  99. break;
  100. case CLOCK_EVT_MODE_ONESHOT:
  101. /* ALM for oneshot irqs, set by next_event()
  102. * before 32 seconds have passed
  103. */
  104. irqmask = AT91_ST_ALMS;
  105. at91_sys_write(AT91_ST_RTAR, last_crtr);
  106. break;
  107. case CLOCK_EVT_MODE_SHUTDOWN:
  108. case CLOCK_EVT_MODE_UNUSED:
  109. case CLOCK_EVT_MODE_RESUME:
  110. irqmask = 0;
  111. break;
  112. }
  113. at91_sys_write(AT91_ST_IER, irqmask);
  114. }
  115. static int
  116. clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev)
  117. {
  118. unsigned long flags;
  119. u32 alm;
  120. int status = 0;
  121. BUG_ON(delta < 2);
  122. /* Use "raw" primitives so we behave correctly on RT kernels. */
  123. raw_local_irq_save(flags);
  124. /*
  125. * According to Thomas Gleixner irqs are already disabled here. Simply
  126. * removing raw_local_irq_save above (and the matching
  127. * raw_local_irq_restore) was not accepted. See
  128. * http://thread.gmane.org/gmane.linux.ports.arm.kernel/41174
  129. * So for now (2008-11-20) just warn once if irqs were not disabled ...
  130. */
  131. WARN_ON_ONCE(!raw_irqs_disabled_flags(flags));
  132. /* The alarm IRQ uses absolute time (now+delta), not the relative
  133. * time (delta) in our calling convention. Like all clockevents
  134. * using such "match" hardware, we have a race to defend against.
  135. *
  136. * Our defense here is to have set up the clockevent device so the
  137. * delta is at least two. That way we never end up writing RTAR
  138. * with the value then held in CRTR ... which would mean the match
  139. * wouldn't trigger until 32 seconds later, after CRTR wraps.
  140. */
  141. alm = read_CRTR();
  142. /* Cancel any pending alarm; flush any pending IRQ */
  143. at91_sys_write(AT91_ST_RTAR, alm);
  144. (void) at91_sys_read(AT91_ST_SR);
  145. /* Schedule alarm by writing RTAR. */
  146. alm += delta;
  147. at91_sys_write(AT91_ST_RTAR, alm);
  148. raw_local_irq_restore(flags);
  149. return status;
  150. }
  151. static struct clock_event_device clkevt = {
  152. .name = "at91_tick",
  153. .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
  154. .shift = 32,
  155. .rating = 150,
  156. .set_next_event = clkevt32k_next_event,
  157. .set_mode = clkevt32k_mode,
  158. };
  159. /*
  160. * ST (system timer) module supports both clockevents and clocksource.
  161. */
  162. void __init at91rm9200_timer_init(void)
  163. {
  164. /* Disable all timer interrupts, and clear any pending ones */
  165. at91_sys_write(AT91_ST_IDR,
  166. AT91_ST_PITS | AT91_ST_WDOVF | AT91_ST_RTTINC | AT91_ST_ALMS);
  167. (void) at91_sys_read(AT91_ST_SR);
  168. /* Make IRQs happen for the system timer */
  169. setup_irq(AT91_ID_SYS, &at91rm9200_timer_irq);
  170. /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used
  171. * directly for the clocksource and all clockevents, after adjusting
  172. * its prescaler from the 1 Hz default.
  173. */
  174. at91_sys_write(AT91_ST_RTMR, 1);
  175. /* Setup timer clockevent, with minimum of two ticks (important!!) */
  176. clkevt.mult = div_sc(AT91_SLOW_CLOCK, NSEC_PER_SEC, clkevt.shift);
  177. clkevt.max_delta_ns = clockevent_delta2ns(AT91_ST_ALMV, &clkevt);
  178. clkevt.min_delta_ns = clockevent_delta2ns(2, &clkevt) + 1;
  179. clkevt.cpumask = cpumask_of(0);
  180. clockevents_register_device(&clkevt);
  181. /* register clocksource */
  182. clk32k.mult = clocksource_hz2mult(AT91_SLOW_CLOCK, clk32k.shift);
  183. clocksource_register(&clk32k);
  184. }
  185. struct sys_timer at91rm9200_timer = {
  186. .init = at91rm9200_timer_init,
  187. };