time.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /*
  2. * linux/arch/arm/plat-mxc/time.c
  3. *
  4. * Copyright (C) 2000-2001 Deep Blue Solutions
  5. * Copyright (C) 2002 Shane Nay (shane@minirl.com)
  6. * Copyright (C) 2006-2007 Pavel Pisa (ppisa@pikron.com)
  7. * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  21. * MA 02110-1301, USA.
  22. */
  23. #include <linux/interrupt.h>
  24. #include <linux/irq.h>
  25. #include <linux/clockchips.h>
  26. #include <linux/clk.h>
  27. #include <mach/hardware.h>
  28. #include <asm/mach/time.h>
  29. #include <mach/common.h>
  30. /*
  31. * There are 2 versions of the timer hardware on Freescale MXC hardware.
  32. * Version 1: MX1/MXL, MX21, MX27.
  33. * Version 2: MX25, MX31, MX35, MX37, MX51
  34. */
  35. /* defines common for all i.MX */
  36. #define MXC_TCTL 0x00
  37. #define MXC_TCTL_TEN (1 << 0) /* Enable module */
  38. #define MXC_TPRER 0x04
  39. /* MX1, MX21, MX27 */
  40. #define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
  41. #define MX1_2_TCTL_IRQEN (1 << 4)
  42. #define MX1_2_TCTL_FRR (1 << 8)
  43. #define MX1_2_TCMP 0x08
  44. #define MX1_2_TCN 0x10
  45. #define MX1_2_TSTAT 0x14
  46. /* MX21, MX27 */
  47. #define MX2_TSTAT_CAPT (1 << 1)
  48. #define MX2_TSTAT_COMP (1 << 0)
  49. /* MX31, MX35, MX25, MXC91231, MX5 */
  50. #define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
  51. #define V2_TCTL_CLK_IPG (1 << 6)
  52. #define V2_TCTL_FRR (1 << 9)
  53. #define V2_IR 0x0c
  54. #define V2_TSTAT 0x08
  55. #define V2_TSTAT_OF1 (1 << 0)
  56. #define V2_TCN 0x24
  57. #define V2_TCMP 0x10
  58. #define timer_is_v1() (cpu_is_mx1() || cpu_is_mx21() || cpu_is_mx27())
  59. #define timer_is_v2() (!timer_is_v1())
  60. static struct clock_event_device clockevent_mxc;
  61. static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
  62. static void __iomem *timer_base;
  63. static inline void gpt_irq_disable(void)
  64. {
  65. unsigned int tmp;
  66. if (timer_is_v2())
  67. __raw_writel(0, timer_base + V2_IR);
  68. else {
  69. tmp = __raw_readl(timer_base + MXC_TCTL);
  70. __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
  71. }
  72. }
  73. static inline void gpt_irq_enable(void)
  74. {
  75. if (timer_is_v2())
  76. __raw_writel(1<<0, timer_base + V2_IR);
  77. else {
  78. __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
  79. timer_base + MXC_TCTL);
  80. }
  81. }
  82. static void gpt_irq_acknowledge(void)
  83. {
  84. if (timer_is_v1()) {
  85. if (cpu_is_mx1())
  86. __raw_writel(0, timer_base + MX1_2_TSTAT);
  87. else
  88. __raw_writel(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
  89. timer_base + MX1_2_TSTAT);
  90. } else if (timer_is_v2())
  91. __raw_writel(V2_TSTAT_OF1, timer_base + V2_TSTAT);
  92. }
  93. static cycle_t mx1_2_get_cycles(struct clocksource *cs)
  94. {
  95. return __raw_readl(timer_base + MX1_2_TCN);
  96. }
  97. static cycle_t v2_get_cycles(struct clocksource *cs)
  98. {
  99. return __raw_readl(timer_base + V2_TCN);
  100. }
  101. static struct clocksource clocksource_mxc = {
  102. .name = "mxc_timer1",
  103. .rating = 200,
  104. .read = mx1_2_get_cycles,
  105. .mask = CLOCKSOURCE_MASK(32),
  106. .shift = 20,
  107. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  108. };
  109. static int __init mxc_clocksource_init(struct clk *timer_clk)
  110. {
  111. unsigned int c = clk_get_rate(timer_clk);
  112. if (timer_is_v2())
  113. clocksource_mxc.read = v2_get_cycles;
  114. clocksource_mxc.mult = clocksource_hz2mult(c,
  115. clocksource_mxc.shift);
  116. clocksource_register(&clocksource_mxc);
  117. return 0;
  118. }
  119. /* clock event */
  120. static int mx1_2_set_next_event(unsigned long evt,
  121. struct clock_event_device *unused)
  122. {
  123. unsigned long tcmp;
  124. tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
  125. __raw_writel(tcmp, timer_base + MX1_2_TCMP);
  126. return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
  127. -ETIME : 0;
  128. }
  129. static int v2_set_next_event(unsigned long evt,
  130. struct clock_event_device *unused)
  131. {
  132. unsigned long tcmp;
  133. tcmp = __raw_readl(timer_base + V2_TCN) + evt;
  134. __raw_writel(tcmp, timer_base + V2_TCMP);
  135. return (int)(tcmp - __raw_readl(timer_base + V2_TCN)) < 0 ?
  136. -ETIME : 0;
  137. }
  138. #ifdef DEBUG
  139. static const char *clock_event_mode_label[] = {
  140. [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
  141. [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
  142. [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
  143. [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED"
  144. };
  145. #endif /* DEBUG */
  146. static void mxc_set_mode(enum clock_event_mode mode,
  147. struct clock_event_device *evt)
  148. {
  149. unsigned long flags;
  150. /*
  151. * The timer interrupt generation is disabled at least
  152. * for enough time to call mxc_set_next_event()
  153. */
  154. local_irq_save(flags);
  155. /* Disable interrupt in GPT module */
  156. gpt_irq_disable();
  157. if (mode != clockevent_mode) {
  158. /* Set event time into far-far future */
  159. if (timer_is_v2())
  160. __raw_writel(__raw_readl(timer_base + V2_TCN) - 3,
  161. timer_base + V2_TCMP);
  162. else
  163. __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
  164. timer_base + MX1_2_TCMP);
  165. /* Clear pending interrupt */
  166. gpt_irq_acknowledge();
  167. }
  168. #ifdef DEBUG
  169. printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
  170. clock_event_mode_label[clockevent_mode],
  171. clock_event_mode_label[mode]);
  172. #endif /* DEBUG */
  173. /* Remember timer mode */
  174. clockevent_mode = mode;
  175. local_irq_restore(flags);
  176. switch (mode) {
  177. case CLOCK_EVT_MODE_PERIODIC:
  178. printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
  179. "supported for i.MX\n");
  180. break;
  181. case CLOCK_EVT_MODE_ONESHOT:
  182. /*
  183. * Do not put overhead of interrupt enable/disable into
  184. * mxc_set_next_event(), the core has about 4 minutes
  185. * to call mxc_set_next_event() or shutdown clock after
  186. * mode switching
  187. */
  188. local_irq_save(flags);
  189. gpt_irq_enable();
  190. local_irq_restore(flags);
  191. break;
  192. case CLOCK_EVT_MODE_SHUTDOWN:
  193. case CLOCK_EVT_MODE_UNUSED:
  194. case CLOCK_EVT_MODE_RESUME:
  195. /* Left event sources disabled, no more interrupts appear */
  196. break;
  197. }
  198. }
  199. /*
  200. * IRQ handler for the timer
  201. */
  202. static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
  203. {
  204. struct clock_event_device *evt = &clockevent_mxc;
  205. uint32_t tstat;
  206. if (timer_is_v2())
  207. tstat = __raw_readl(timer_base + V2_TSTAT);
  208. else
  209. tstat = __raw_readl(timer_base + MX1_2_TSTAT);
  210. gpt_irq_acknowledge();
  211. evt->event_handler(evt);
  212. return IRQ_HANDLED;
  213. }
  214. static struct irqaction mxc_timer_irq = {
  215. .name = "i.MX Timer Tick",
  216. .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  217. .handler = mxc_timer_interrupt,
  218. };
  219. static struct clock_event_device clockevent_mxc = {
  220. .name = "mxc_timer1",
  221. .features = CLOCK_EVT_FEAT_ONESHOT,
  222. .shift = 32,
  223. .set_mode = mxc_set_mode,
  224. .set_next_event = mx1_2_set_next_event,
  225. .rating = 200,
  226. };
  227. static int __init mxc_clockevent_init(struct clk *timer_clk)
  228. {
  229. unsigned int c = clk_get_rate(timer_clk);
  230. if (timer_is_v2())
  231. clockevent_mxc.set_next_event = v2_set_next_event;
  232. clockevent_mxc.mult = div_sc(c, NSEC_PER_SEC,
  233. clockevent_mxc.shift);
  234. clockevent_mxc.max_delta_ns =
  235. clockevent_delta2ns(0xfffffffe, &clockevent_mxc);
  236. clockevent_mxc.min_delta_ns =
  237. clockevent_delta2ns(0xff, &clockevent_mxc);
  238. clockevent_mxc.cpumask = cpumask_of(0);
  239. clockevents_register_device(&clockevent_mxc);
  240. return 0;
  241. }
  242. void __init mxc_timer_init(struct clk *timer_clk, void __iomem *base, int irq)
  243. {
  244. uint32_t tctl_val;
  245. clk_enable(timer_clk);
  246. timer_base = base;
  247. /*
  248. * Initialise to a known state (all timers off, and timing reset)
  249. */
  250. __raw_writel(0, timer_base + MXC_TCTL);
  251. __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
  252. if (timer_is_v2())
  253. tctl_val = V2_TCTL_CLK_IPG | V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
  254. else
  255. tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
  256. __raw_writel(tctl_val, timer_base + MXC_TCTL);
  257. /* init and register the timer to the framework */
  258. mxc_clocksource_init(timer_clk);
  259. mxc_clockevent_init(timer_clk);
  260. /* Make irqs happen */
  261. setup_irq(irq, &mxc_timer_irq);
  262. }