nomadik-mtu.c 6.8 KB

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