time.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * arch/arm/mach-ks8695/time.c
  3. *
  4. * Copyright (C) 2006 Ben Dooks <ben@simtec.co.uk>
  5. * Copyright (C) 2006 Simtec Electronics
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/init.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/irq.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/io.h>
  27. #include <asm/mach/time.h>
  28. #include <mach/regs-timer.h>
  29. #include <mach/regs-irq.h>
  30. #include "generic.h"
  31. /*
  32. * Returns number of ms since last clock interrupt. Note that interrupts
  33. * will have been disabled by do_gettimeoffset()
  34. */
  35. static unsigned long ks8695_gettimeoffset (void)
  36. {
  37. unsigned long elapsed, tick2, intpending;
  38. /*
  39. * Get the current number of ticks. Note that there is a race
  40. * condition between us reading the timer and checking for an
  41. * interrupt. We solve this by ensuring that the counter has not
  42. * reloaded between our two reads.
  43. */
  44. elapsed = __raw_readl(KS8695_TMR_VA + KS8695_T1TC) + __raw_readl(KS8695_TMR_VA + KS8695_T1PD);
  45. do {
  46. tick2 = elapsed;
  47. intpending = __raw_readl(KS8695_IRQ_VA + KS8695_INTST) & (1 << KS8695_IRQ_TIMER1);
  48. elapsed = __raw_readl(KS8695_TMR_VA + KS8695_T1TC) + __raw_readl(KS8695_TMR_VA + KS8695_T1PD);
  49. } while (elapsed > tick2);
  50. /* Convert to number of ticks expired (not remaining) */
  51. elapsed = (CLOCK_TICK_RATE / HZ) - elapsed;
  52. /* Is interrupt pending? If so, then timer has been reloaded already. */
  53. if (intpending)
  54. elapsed += (CLOCK_TICK_RATE / HZ);
  55. /* Convert ticks to usecs */
  56. return (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;
  57. }
  58. /*
  59. * IRQ handler for the timer.
  60. */
  61. static irqreturn_t ks8695_timer_interrupt(int irq, void *dev_id)
  62. {
  63. timer_tick();
  64. return IRQ_HANDLED;
  65. }
  66. static struct irqaction ks8695_timer_irq = {
  67. .name = "ks8695_tick",
  68. .flags = IRQF_DISABLED | IRQF_TIMER,
  69. .handler = ks8695_timer_interrupt,
  70. };
  71. static void ks8695_timer_setup(void)
  72. {
  73. unsigned long tmout = CLOCK_TICK_RATE / HZ;
  74. unsigned long tmcon;
  75. /* disable timer1 */
  76. tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
  77. __raw_writel(tmcon & ~TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);
  78. __raw_writel(tmout / 2, KS8695_TMR_VA + KS8695_T1TC);
  79. __raw_writel(tmout / 2, KS8695_TMR_VA + KS8695_T1PD);
  80. /* re-enable timer1 */
  81. __raw_writel(tmcon | TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);
  82. }
  83. static void __init ks8695_timer_init (void)
  84. {
  85. ks8695_timer_setup();
  86. /* Enable timer interrupts */
  87. setup_irq(KS8695_IRQ_TIMER1, &ks8695_timer_irq);
  88. }
  89. struct sys_timer ks8695_timer = {
  90. .init = ks8695_timer_init,
  91. .offset = ks8695_gettimeoffset,
  92. .resume = ks8695_timer_setup,
  93. };