timer.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * linux/arch/arm/plat-nomadik/timer.c
  3. *
  4. * Copyright (C) 2008 STMicroelectronics
  5. * Copyright (C) 2010 Alessandro Rubini
  6. * Copyright (C) 2010 Linus Walleij for ST-Ericsson
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2, as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/irq.h>
  15. #include <linux/io.h>
  16. #include <linux/clockchips.h>
  17. #include <linux/clk.h>
  18. #include <linux/jiffies.h>
  19. #include <linux/err.h>
  20. #include <linux/sched.h>
  21. #include <asm/mach/time.h>
  22. #include <asm/sched_clock.h>
  23. /*
  24. * Guaranteed runtime conversion range in seconds for
  25. * the clocksource and clockevent.
  26. */
  27. #define MTU_MIN_RANGE 4
  28. /*
  29. * The MTU device hosts four different counters, with 4 set of
  30. * registers. These are register names.
  31. */
  32. #define MTU_IMSC 0x00 /* Interrupt mask set/clear */
  33. #define MTU_RIS 0x04 /* Raw interrupt status */
  34. #define MTU_MIS 0x08 /* Masked interrupt status */
  35. #define MTU_ICR 0x0C /* Interrupt clear register */
  36. /* per-timer registers take 0..3 as argument */
  37. #define MTU_LR(x) (0x10 + 0x10 * (x) + 0x00) /* Load value */
  38. #define MTU_VAL(x) (0x10 + 0x10 * (x) + 0x04) /* Current value */
  39. #define MTU_CR(x) (0x10 + 0x10 * (x) + 0x08) /* Control reg */
  40. #define MTU_BGLR(x) (0x10 + 0x10 * (x) + 0x0c) /* At next overflow */
  41. /* bits for the control register */
  42. #define MTU_CRn_ENA 0x80
  43. #define MTU_CRn_PERIODIC 0x40 /* if 0 = free-running */
  44. #define MTU_CRn_PRESCALE_MASK 0x0c
  45. #define MTU_CRn_PRESCALE_1 0x00
  46. #define MTU_CRn_PRESCALE_16 0x04
  47. #define MTU_CRn_PRESCALE_256 0x08
  48. #define MTU_CRn_32BITS 0x02
  49. #define MTU_CRn_ONESHOT 0x01 /* if 0 = wraps reloading from BGLR*/
  50. /* Other registers are usual amba/primecell registers, currently not used */
  51. #define MTU_ITCR 0xff0
  52. #define MTU_ITOP 0xff4
  53. #define MTU_PERIPH_ID0 0xfe0
  54. #define MTU_PERIPH_ID1 0xfe4
  55. #define MTU_PERIPH_ID2 0xfe8
  56. #define MTU_PERIPH_ID3 0xfeC
  57. #define MTU_PCELL0 0xff0
  58. #define MTU_PCELL1 0xff4
  59. #define MTU_PCELL2 0xff8
  60. #define MTU_PCELL3 0xffC
  61. static bool clkevt_periodic;
  62. static u32 clk_prescale;
  63. static u32 nmdk_cycle; /* write-once */
  64. void __iomem *mtu_base; /* Assigned by machine code */
  65. #ifdef CONFIG_NOMADIK_MTU_SCHED_CLOCK
  66. /*
  67. * Override the global weak sched_clock symbol with this
  68. * local implementation which uses the clocksource to get some
  69. * better resolution when scheduling the kernel.
  70. */
  71. static DEFINE_CLOCK_DATA(cd);
  72. unsigned long long notrace sched_clock(void)
  73. {
  74. u32 cyc;
  75. if (unlikely(!mtu_base))
  76. return 0;
  77. cyc = -readl(mtu_base + MTU_VAL(0));
  78. return cyc_to_sched_clock(&cd, cyc, (u32)~0);
  79. }
  80. static void notrace nomadik_update_sched_clock(void)
  81. {
  82. u32 cyc = -readl(mtu_base + MTU_VAL(0));
  83. update_sched_clock(&cd, cyc, (u32)~0);
  84. }
  85. #endif
  86. /* Clockevent device: use one-shot mode */
  87. static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev)
  88. {
  89. writel(1 << 1, mtu_base + MTU_IMSC);
  90. writel(evt, mtu_base + MTU_LR(1));
  91. /* Load highest value, enable device, enable interrupts */
  92. writel(MTU_CRn_ONESHOT | clk_prescale |
  93. MTU_CRn_32BITS | MTU_CRn_ENA,
  94. mtu_base + MTU_CR(1));
  95. return 0;
  96. }
  97. void nmdk_clkevt_reset(void)
  98. {
  99. if (clkevt_periodic) {
  100. /* Timer: configure load and background-load, and fire it up */
  101. writel(nmdk_cycle, mtu_base + MTU_LR(1));
  102. writel(nmdk_cycle, mtu_base + MTU_BGLR(1));
  103. writel(MTU_CRn_PERIODIC | clk_prescale |
  104. MTU_CRn_32BITS | MTU_CRn_ENA,
  105. mtu_base + MTU_CR(1));
  106. writel(1 << 1, mtu_base + MTU_IMSC);
  107. } else {
  108. /* Generate an interrupt to start the clockevent again */
  109. (void) nmdk_clkevt_next(nmdk_cycle, NULL);
  110. }
  111. }
  112. static void nmdk_clkevt_mode(enum clock_event_mode mode,
  113. struct clock_event_device *dev)
  114. {
  115. switch (mode) {
  116. case CLOCK_EVT_MODE_PERIODIC:
  117. clkevt_periodic = true;
  118. nmdk_clkevt_reset();
  119. break;
  120. case CLOCK_EVT_MODE_ONESHOT:
  121. clkevt_periodic = false;
  122. break;
  123. case CLOCK_EVT_MODE_SHUTDOWN:
  124. case CLOCK_EVT_MODE_UNUSED:
  125. writel(0, mtu_base + MTU_IMSC);
  126. /* disable timer */
  127. writel(0, mtu_base + MTU_CR(1));
  128. /* load some high default value */
  129. writel(0xffffffff, mtu_base + MTU_LR(1));
  130. break;
  131. case CLOCK_EVT_MODE_RESUME:
  132. break;
  133. }
  134. }
  135. static struct clock_event_device nmdk_clkevt = {
  136. .name = "mtu_1",
  137. .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
  138. .rating = 200,
  139. .set_mode = nmdk_clkevt_mode,
  140. .set_next_event = nmdk_clkevt_next,
  141. };
  142. /*
  143. * IRQ Handler for timer 1 of the MTU block.
  144. */
  145. static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id)
  146. {
  147. struct clock_event_device *evdev = dev_id;
  148. writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */
  149. evdev->event_handler(evdev);
  150. return IRQ_HANDLED;
  151. }
  152. static struct irqaction nmdk_timer_irq = {
  153. .name = "Nomadik Timer Tick",
  154. .flags = IRQF_DISABLED | IRQF_TIMER,
  155. .handler = nmdk_timer_interrupt,
  156. .dev_id = &nmdk_clkevt,
  157. };
  158. void nmdk_clksrc_reset(void)
  159. {
  160. /* Disable */
  161. writel(0, mtu_base + MTU_CR(0));
  162. /* ClockSource: configure load and background-load, and fire it up */
  163. writel(nmdk_cycle, mtu_base + MTU_LR(0));
  164. writel(nmdk_cycle, mtu_base + MTU_BGLR(0));
  165. writel(clk_prescale | MTU_CRn_32BITS | MTU_CRn_ENA,
  166. mtu_base + MTU_CR(0));
  167. }
  168. void __init nmdk_timer_init(void)
  169. {
  170. unsigned long rate;
  171. struct clk *clk0;
  172. clk0 = clk_get_sys("mtu0", NULL);
  173. BUG_ON(IS_ERR(clk0));
  174. clk_enable(clk0);
  175. /*
  176. * Tick rate is 2.4MHz for Nomadik and 2.4Mhz, 100MHz or 133 MHz
  177. * for ux500.
  178. * Use a divide-by-16 counter if the tick rate is more than 32MHz.
  179. * At 32 MHz, the timer (with 32 bit counter) can be programmed
  180. * to wake-up at a max 127s a head in time. Dividing a 2.4 MHz timer
  181. * with 16 gives too low timer resolution.
  182. */
  183. rate = clk_get_rate(clk0);
  184. if (rate > 32000000) {
  185. rate /= 16;
  186. clk_prescale = MTU_CRn_PRESCALE_16;
  187. } else {
  188. clk_prescale = MTU_CRn_PRESCALE_1;
  189. }
  190. nmdk_cycle = (rate + HZ/2) / HZ;
  191. /* Timer 0 is the free running clocksource */
  192. nmdk_clksrc_reset();
  193. if (clocksource_mmio_init(mtu_base + MTU_VAL(0), "mtu_0",
  194. rate, 200, 32, clocksource_mmio_readl_down))
  195. pr_err("timer: failed to initialize clock source %s\n",
  196. "mtu_0");
  197. #ifdef CONFIG_NOMADIK_MTU_SCHED_CLOCK
  198. init_sched_clock(&cd, nomadik_update_sched_clock, 32, rate);
  199. #endif
  200. /* Timer 1 is used for events */
  201. clockevents_calc_mult_shift(&nmdk_clkevt, rate, MTU_MIN_RANGE);
  202. nmdk_clkevt.max_delta_ns =
  203. clockevent_delta2ns(0xffffffff, &nmdk_clkevt);
  204. nmdk_clkevt.min_delta_ns =
  205. clockevent_delta2ns(0x00000002, &nmdk_clkevt);
  206. nmdk_clkevt.cpumask = cpumask_of(0);
  207. /* Register irq and clockevents */
  208. setup_irq(IRQ_MTU0, &nmdk_timer_irq);
  209. clockevents_register_device(&nmdk_clkevt);
  210. }