time.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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. /* defines common for all i.MX */
  31. #define MXC_TCTL 0x00
  32. #define MXC_TCTL_TEN (1 << 0)
  33. #define MXC_TPRER 0x04
  34. /* MX1, MX21, MX27 */
  35. #define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
  36. #define MX1_2_TCTL_IRQEN (1 << 4)
  37. #define MX1_2_TCTL_FRR (1 << 8)
  38. #define MX1_2_TCMP 0x08
  39. #define MX1_2_TCN 0x10
  40. #define MX1_2_TSTAT 0x14
  41. /* MX21, MX27 */
  42. #define MX2_TSTAT_CAPT (1 << 1)
  43. #define MX2_TSTAT_COMP (1 << 0)
  44. /* MX31, MX35, MX25, MXC91231 */
  45. #define MX3_TCTL_WAITEN (1 << 3)
  46. #define MX3_TCTL_CLK_IPG (1 << 6)
  47. #define MX3_TCTL_FRR (1 << 9)
  48. #define MX3_IR 0x0c
  49. #define MX3_TSTAT 0x08
  50. #define MX3_TSTAT_OF1 (1 << 0)
  51. #define MX3_TCN 0x24
  52. #define MX3_TCMP 0x10
  53. static struct clock_event_device clockevent_mxc;
  54. static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED;
  55. static void __iomem *timer_base;
  56. static inline void gpt_irq_disable(void)
  57. {
  58. unsigned int tmp;
  59. if (cpu_is_mx3() || cpu_is_mx25())
  60. __raw_writel(0, timer_base + MX3_IR);
  61. else {
  62. tmp = __raw_readl(timer_base + MXC_TCTL);
  63. __raw_writel(tmp & ~MX1_2_TCTL_IRQEN, timer_base + MXC_TCTL);
  64. }
  65. }
  66. static inline void gpt_irq_enable(void)
  67. {
  68. if (cpu_is_mx3() || cpu_is_mx25())
  69. __raw_writel(1<<0, timer_base + MX3_IR);
  70. else {
  71. __raw_writel(__raw_readl(timer_base + MXC_TCTL) | MX1_2_TCTL_IRQEN,
  72. timer_base + MXC_TCTL);
  73. }
  74. }
  75. static void gpt_irq_acknowledge(void)
  76. {
  77. if (cpu_is_mx1())
  78. __raw_writel(0, timer_base + MX1_2_TSTAT);
  79. if (cpu_is_mx2())
  80. __raw_writel(MX2_TSTAT_CAPT | MX2_TSTAT_COMP, timer_base + MX1_2_TSTAT);
  81. if (cpu_is_mx3() || cpu_is_mx25())
  82. __raw_writel(MX3_TSTAT_OF1, timer_base + MX3_TSTAT);
  83. }
  84. static cycle_t mx1_2_get_cycles(struct clocksource *cs)
  85. {
  86. return __raw_readl(timer_base + MX1_2_TCN);
  87. }
  88. static cycle_t mx3_get_cycles(struct clocksource *cs)
  89. {
  90. return __raw_readl(timer_base + MX3_TCN);
  91. }
  92. static struct clocksource clocksource_mxc = {
  93. .name = "mxc_timer1",
  94. .rating = 200,
  95. .read = mx1_2_get_cycles,
  96. .mask = CLOCKSOURCE_MASK(32),
  97. .shift = 20,
  98. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  99. };
  100. static int __init mxc_clocksource_init(struct clk *timer_clk)
  101. {
  102. unsigned int c = clk_get_rate(timer_clk);
  103. if (cpu_is_mx3() || cpu_is_mx25())
  104. clocksource_mxc.read = mx3_get_cycles;
  105. clocksource_mxc.mult = clocksource_hz2mult(c,
  106. clocksource_mxc.shift);
  107. clocksource_register(&clocksource_mxc);
  108. return 0;
  109. }
  110. /* clock event */
  111. static int mx1_2_set_next_event(unsigned long evt,
  112. struct clock_event_device *unused)
  113. {
  114. unsigned long tcmp;
  115. tcmp = __raw_readl(timer_base + MX1_2_TCN) + evt;
  116. __raw_writel(tcmp, timer_base + MX1_2_TCMP);
  117. return (int)(tcmp - __raw_readl(timer_base + MX1_2_TCN)) < 0 ?
  118. -ETIME : 0;
  119. }
  120. static int mx3_set_next_event(unsigned long evt,
  121. struct clock_event_device *unused)
  122. {
  123. unsigned long tcmp;
  124. tcmp = __raw_readl(timer_base + MX3_TCN) + evt;
  125. __raw_writel(tcmp, timer_base + MX3_TCMP);
  126. return (int)(tcmp - __raw_readl(timer_base + MX3_TCN)) < 0 ?
  127. -ETIME : 0;
  128. }
  129. #ifdef DEBUG
  130. static const char *clock_event_mode_label[] = {
  131. [CLOCK_EVT_MODE_PERIODIC] = "CLOCK_EVT_MODE_PERIODIC",
  132. [CLOCK_EVT_MODE_ONESHOT] = "CLOCK_EVT_MODE_ONESHOT",
  133. [CLOCK_EVT_MODE_SHUTDOWN] = "CLOCK_EVT_MODE_SHUTDOWN",
  134. [CLOCK_EVT_MODE_UNUSED] = "CLOCK_EVT_MODE_UNUSED"
  135. };
  136. #endif /* DEBUG */
  137. static void mxc_set_mode(enum clock_event_mode mode,
  138. struct clock_event_device *evt)
  139. {
  140. unsigned long flags;
  141. /*
  142. * The timer interrupt generation is disabled at least
  143. * for enough time to call mxc_set_next_event()
  144. */
  145. local_irq_save(flags);
  146. /* Disable interrupt in GPT module */
  147. gpt_irq_disable();
  148. if (mode != clockevent_mode) {
  149. /* Set event time into far-far future */
  150. if (cpu_is_mx3() || cpu_is_mx25())
  151. __raw_writel(__raw_readl(timer_base + MX3_TCN) - 3,
  152. timer_base + MX3_TCMP);
  153. else
  154. __raw_writel(__raw_readl(timer_base + MX1_2_TCN) - 3,
  155. timer_base + MX1_2_TCMP);
  156. /* Clear pending interrupt */
  157. gpt_irq_acknowledge();
  158. }
  159. #ifdef DEBUG
  160. printk(KERN_INFO "mxc_set_mode: changing mode from %s to %s\n",
  161. clock_event_mode_label[clockevent_mode],
  162. clock_event_mode_label[mode]);
  163. #endif /* DEBUG */
  164. /* Remember timer mode */
  165. clockevent_mode = mode;
  166. local_irq_restore(flags);
  167. switch (mode) {
  168. case CLOCK_EVT_MODE_PERIODIC:
  169. printk(KERN_ERR"mxc_set_mode: Periodic mode is not "
  170. "supported for i.MX\n");
  171. break;
  172. case CLOCK_EVT_MODE_ONESHOT:
  173. /*
  174. * Do not put overhead of interrupt enable/disable into
  175. * mxc_set_next_event(), the core has about 4 minutes
  176. * to call mxc_set_next_event() or shutdown clock after
  177. * mode switching
  178. */
  179. local_irq_save(flags);
  180. gpt_irq_enable();
  181. local_irq_restore(flags);
  182. break;
  183. case CLOCK_EVT_MODE_SHUTDOWN:
  184. case CLOCK_EVT_MODE_UNUSED:
  185. case CLOCK_EVT_MODE_RESUME:
  186. /* Left event sources disabled, no more interrupts appear */
  187. break;
  188. }
  189. }
  190. /*
  191. * IRQ handler for the timer
  192. */
  193. static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
  194. {
  195. struct clock_event_device *evt = &clockevent_mxc;
  196. uint32_t tstat;
  197. if (cpu_is_mx3() || cpu_is_mx25())
  198. tstat = __raw_readl(timer_base + MX3_TSTAT);
  199. else
  200. tstat = __raw_readl(timer_base + MX1_2_TSTAT);
  201. gpt_irq_acknowledge();
  202. evt->event_handler(evt);
  203. return IRQ_HANDLED;
  204. }
  205. static struct irqaction mxc_timer_irq = {
  206. .name = "i.MX Timer Tick",
  207. .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  208. .handler = mxc_timer_interrupt,
  209. };
  210. static struct clock_event_device clockevent_mxc = {
  211. .name = "mxc_timer1",
  212. .features = CLOCK_EVT_FEAT_ONESHOT,
  213. .shift = 32,
  214. .set_mode = mxc_set_mode,
  215. .set_next_event = mx1_2_set_next_event,
  216. .rating = 200,
  217. };
  218. static int __init mxc_clockevent_init(struct clk *timer_clk)
  219. {
  220. unsigned int c = clk_get_rate(timer_clk);
  221. if (cpu_is_mx3() || cpu_is_mx25())
  222. clockevent_mxc.set_next_event = mx3_set_next_event;
  223. clockevent_mxc.mult = div_sc(c, NSEC_PER_SEC,
  224. clockevent_mxc.shift);
  225. clockevent_mxc.max_delta_ns =
  226. clockevent_delta2ns(0xfffffffe, &clockevent_mxc);
  227. clockevent_mxc.min_delta_ns =
  228. clockevent_delta2ns(0xff, &clockevent_mxc);
  229. clockevent_mxc.cpumask = cpumask_of(0);
  230. clockevents_register_device(&clockevent_mxc);
  231. return 0;
  232. }
  233. void __init mxc_timer_init(struct clk *timer_clk, void __iomem *base, int irq)
  234. {
  235. uint32_t tctl_val;
  236. clk_enable(timer_clk);
  237. timer_base = base;
  238. /*
  239. * Initialise to a known state (all timers off, and timing reset)
  240. */
  241. __raw_writel(0, timer_base + MXC_TCTL);
  242. __raw_writel(0, timer_base + MXC_TPRER); /* see datasheet note */
  243. if (cpu_is_mx3() || cpu_is_mx25())
  244. tctl_val = MX3_TCTL_CLK_IPG | MX3_TCTL_FRR | MX3_TCTL_WAITEN | MXC_TCTL_TEN;
  245. else
  246. tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
  247. __raw_writel(tctl_val, timer_base + MXC_TCTL);
  248. /* init and register the timer to the framework */
  249. mxc_clocksource_init(timer_clk);
  250. mxc_clockevent_init(timer_clk);
  251. /* Make irqs happen */
  252. setup_irq(irq, &mxc_timer_irq);
  253. }