time.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /* linux/arch/arm/mach-s3c2410/time.c
  2. *
  3. * Copyright (C) 2003-2005 Simtec Electronics
  4. * Ben Dooks, <ben@simtec.co.uk>
  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 as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/config.h>
  21. #include <linux/kernel.h>
  22. #include <linux/sched.h>
  23. #include <linux/init.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/err.h>
  26. #include <linux/clk.h>
  27. #include <asm/system.h>
  28. #include <asm/leds.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/io.h>
  31. #include <asm/irq.h>
  32. #include <asm/arch/map.h>
  33. #include <asm/arch/regs-timer.h>
  34. #include <asm/arch/regs-irq.h>
  35. #include <asm/mach/time.h>
  36. #include "clock.h"
  37. #include "cpu.h"
  38. static unsigned long timer_startval;
  39. static unsigned long timer_usec_ticks;
  40. #define TIMER_USEC_SHIFT 16
  41. /* we use the shifted arithmetic to work out the ratio of timer ticks
  42. * to usecs, as often the peripheral clock is not a nice even multiple
  43. * of 1MHz.
  44. *
  45. * shift of 14 and 15 are too low for the 12MHz, 16 seems to be ok
  46. * for the current HZ value of 200 without producing overflows.
  47. *
  48. * Original patch by Dimitry Andric, updated by Ben Dooks
  49. */
  50. /* timer_mask_usec_ticks
  51. *
  52. * given a clock and divisor, make the value to pass into timer_ticks_to_usec
  53. * to scale the ticks into usecs
  54. */
  55. static inline unsigned long
  56. timer_mask_usec_ticks(unsigned long scaler, unsigned long pclk)
  57. {
  58. unsigned long den = pclk / 1000;
  59. return ((1000 << TIMER_USEC_SHIFT) * scaler + (den >> 1)) / den;
  60. }
  61. /* timer_ticks_to_usec
  62. *
  63. * convert timer ticks to usec.
  64. */
  65. static inline unsigned long timer_ticks_to_usec(unsigned long ticks)
  66. {
  67. unsigned long res;
  68. res = ticks * timer_usec_ticks;
  69. res += 1 << (TIMER_USEC_SHIFT - 4); /* round up slightly */
  70. return res >> TIMER_USEC_SHIFT;
  71. }
  72. /***
  73. * Returns microsecond since last clock interrupt. Note that interrupts
  74. * will have been disabled by do_gettimeoffset()
  75. * IRQs are disabled before entering here from do_gettimeofday()
  76. */
  77. #define SRCPND_TIMER4 (1<<(IRQ_TIMER4 - IRQ_EINT0))
  78. static unsigned long s3c2410_gettimeoffset (void)
  79. {
  80. unsigned long tdone;
  81. unsigned long irqpend;
  82. unsigned long tval;
  83. /* work out how many ticks have gone since last timer interrupt */
  84. tval = __raw_readl(S3C2410_TCNTO(4));
  85. tdone = timer_startval - tval;
  86. /* check to see if there is an interrupt pending */
  87. irqpend = __raw_readl(S3C2410_SRCPND);
  88. if (irqpend & SRCPND_TIMER4) {
  89. /* re-read the timer, and try and fix up for the missed
  90. * interrupt. Note, the interrupt may go off before the
  91. * timer has re-loaded from wrapping.
  92. */
  93. tval = __raw_readl(S3C2410_TCNTO(4));
  94. tdone = timer_startval - tval;
  95. if (tval != 0)
  96. tdone += timer_startval;
  97. }
  98. return timer_ticks_to_usec(tdone);
  99. }
  100. /*
  101. * IRQ handler for the timer
  102. */
  103. static irqreturn_t
  104. s3c2410_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  105. {
  106. write_seqlock(&xtime_lock);
  107. timer_tick(regs);
  108. write_sequnlock(&xtime_lock);
  109. return IRQ_HANDLED;
  110. }
  111. static struct irqaction s3c2410_timer_irq = {
  112. .name = "S3C2410 Timer Tick",
  113. .flags = SA_INTERRUPT | SA_TIMER,
  114. .handler = s3c2410_timer_interrupt,
  115. };
  116. #define use_tclk1_12() ( \
  117. machine_is_bast() || \
  118. machine_is_vr1000() || \
  119. machine_is_anubis() || \
  120. machine_is_osiris() )
  121. /*
  122. * Set up timer interrupt, and return the current time in seconds.
  123. *
  124. * Currently we only use timer4, as it is the only timer which has no
  125. * other function that can be exploited externally
  126. */
  127. static void s3c2410_timer_setup (void)
  128. {
  129. unsigned long tcon;
  130. unsigned long tcnt;
  131. unsigned long tcfg1;
  132. unsigned long tcfg0;
  133. tcnt = 0xffff; /* default value for tcnt */
  134. /* read the current timer configuration bits */
  135. tcon = __raw_readl(S3C2410_TCON);
  136. tcfg1 = __raw_readl(S3C2410_TCFG1);
  137. tcfg0 = __raw_readl(S3C2410_TCFG0);
  138. /* configure the system for whichever machine is in use */
  139. if (use_tclk1_12()) {
  140. /* timer is at 12MHz, scaler is 1 */
  141. timer_usec_ticks = timer_mask_usec_ticks(1, 12000000);
  142. tcnt = 12000000 / HZ;
  143. tcfg1 &= ~S3C2410_TCFG1_MUX4_MASK;
  144. tcfg1 |= S3C2410_TCFG1_MUX4_TCLK1;
  145. } else {
  146. unsigned long pclk;
  147. struct clk *clk;
  148. /* for the h1940 (and others), we use the pclk from the core
  149. * to generate the timer values. since values around 50 to
  150. * 70MHz are not values we can directly generate the timer
  151. * value from, we need to pre-scale and divide before using it.
  152. *
  153. * for instance, using 50.7MHz and dividing by 6 gives 8.45MHz
  154. * (8.45 ticks per usec)
  155. */
  156. /* this is used as default if no other timer can be found */
  157. clk = clk_get(NULL, "timers");
  158. if (IS_ERR(clk))
  159. panic("failed to get clock for system timer");
  160. clk_enable(clk);
  161. pclk = clk_get_rate(clk);
  162. /* configure clock tick */
  163. timer_usec_ticks = timer_mask_usec_ticks(6, pclk);
  164. tcfg1 &= ~S3C2410_TCFG1_MUX4_MASK;
  165. tcfg1 |= S3C2410_TCFG1_MUX4_DIV2;
  166. tcfg0 &= ~S3C2410_TCFG_PRESCALER1_MASK;
  167. tcfg0 |= ((6 - 1) / 2) << S3C2410_TCFG_PRESCALER1_SHIFT;
  168. tcnt = (pclk / 6) / HZ;
  169. }
  170. /* timers reload after counting zero, so reduce the count by 1 */
  171. tcnt--;
  172. printk("timer tcon=%08lx, tcnt %04lx, tcfg %08lx,%08lx, usec %08lx\n",
  173. tcon, tcnt, tcfg0, tcfg1, timer_usec_ticks);
  174. /* check to see if timer is within 16bit range... */
  175. if (tcnt > 0xffff) {
  176. panic("setup_timer: HZ is too small, cannot configure timer!");
  177. return;
  178. }
  179. __raw_writel(tcfg1, S3C2410_TCFG1);
  180. __raw_writel(tcfg0, S3C2410_TCFG0);
  181. timer_startval = tcnt;
  182. __raw_writel(tcnt, S3C2410_TCNTB(4));
  183. /* ensure timer is stopped... */
  184. tcon &= ~(7<<20);
  185. tcon |= S3C2410_TCON_T4RELOAD;
  186. tcon |= S3C2410_TCON_T4MANUALUPD;
  187. __raw_writel(tcon, S3C2410_TCON);
  188. __raw_writel(tcnt, S3C2410_TCNTB(4));
  189. __raw_writel(tcnt, S3C2410_TCMPB(4));
  190. /* start the timer running */
  191. tcon |= S3C2410_TCON_T4START;
  192. tcon &= ~S3C2410_TCON_T4MANUALUPD;
  193. __raw_writel(tcon, S3C2410_TCON);
  194. }
  195. static void __init s3c2410_timer_init (void)
  196. {
  197. s3c2410_timer_setup();
  198. setup_irq(IRQ_TIMER4, &s3c2410_timer_irq);
  199. }
  200. struct sys_timer s3c24xx_timer = {
  201. .init = s3c2410_timer_init,
  202. .offset = s3c2410_gettimeoffset,
  203. .resume = s3c2410_timer_setup
  204. };