time.c 8.4 KB

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