time.c 8.5 KB

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