time.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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 <asm/system_misc.h>
  29. #include <mach/regs-irq.h>
  30. #include "generic.h"
  31. #define KS8695_TMR_OFFSET (0xF0000 + 0xE400)
  32. #define KS8695_TMR_VA (KS8695_IO_VA + KS8695_TMR_OFFSET)
  33. #define KS8695_TMR_PA (KS8695_IO_PA + KS8695_TMR_OFFSET)
  34. /*
  35. * Timer registers
  36. */
  37. #define KS8695_TMCON (0x00) /* Timer Control Register */
  38. #define KS8695_T1TC (0x04) /* Timer 1 Timeout Count Register */
  39. #define KS8695_T0TC (0x08) /* Timer 0 Timeout Count Register */
  40. #define KS8695_T1PD (0x0C) /* Timer 1 Pulse Count Register */
  41. #define KS8695_T0PD (0x10) /* Timer 0 Pulse Count Register */
  42. /* Timer Control Register */
  43. #define TMCON_T1EN (1 << 1) /* Timer 1 Enable */
  44. #define TMCON_T0EN (1 << 0) /* Timer 0 Enable */
  45. /* Timer0 Timeout Counter Register */
  46. #define T0TC_WATCHDOG (0xff) /* Enable watchdog mode */
  47. /*
  48. * Returns number of ms since last clock interrupt. Note that interrupts
  49. * will have been disabled by do_gettimeoffset()
  50. */
  51. static unsigned long ks8695_gettimeoffset (void)
  52. {
  53. unsigned long elapsed, tick2, intpending;
  54. /*
  55. * Get the current number of ticks. Note that there is a race
  56. * condition between us reading the timer and checking for an
  57. * interrupt. We solve this by ensuring that the counter has not
  58. * reloaded between our two reads.
  59. */
  60. elapsed = readl_relaxed(KS8695_TMR_VA + KS8695_T1TC) + readl_relaxed(KS8695_TMR_VA + KS8695_T1PD);
  61. do {
  62. tick2 = elapsed;
  63. intpending = readl_relaxed(KS8695_IRQ_VA + KS8695_INTST) & (1 << KS8695_IRQ_TIMER1);
  64. elapsed = readl_relaxed(KS8695_TMR_VA + KS8695_T1TC) + readl_relaxed(KS8695_TMR_VA + KS8695_T1PD);
  65. } while (elapsed > tick2);
  66. /* Convert to number of ticks expired (not remaining) */
  67. elapsed = (CLOCK_TICK_RATE / HZ) - elapsed;
  68. /* Is interrupt pending? If so, then timer has been reloaded already. */
  69. if (intpending)
  70. elapsed += (CLOCK_TICK_RATE / HZ);
  71. /* Convert ticks to usecs */
  72. return (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;
  73. }
  74. /*
  75. * IRQ handler for the timer.
  76. */
  77. static irqreturn_t ks8695_timer_interrupt(int irq, void *dev_id)
  78. {
  79. timer_tick();
  80. return IRQ_HANDLED;
  81. }
  82. static struct irqaction ks8695_timer_irq = {
  83. .name = "ks8695_tick",
  84. .flags = IRQF_DISABLED | IRQF_TIMER,
  85. .handler = ks8695_timer_interrupt,
  86. };
  87. static void ks8695_timer_setup(void)
  88. {
  89. unsigned long tmout = CLOCK_TICK_RATE / HZ;
  90. unsigned long tmcon;
  91. /* disable timer1 */
  92. tmcon = readl_relaxed(KS8695_TMR_VA + KS8695_TMCON);
  93. writel_relaxed(tmcon & ~TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);
  94. writel_relaxed(tmout / 2, KS8695_TMR_VA + KS8695_T1TC);
  95. writel_relaxed(tmout / 2, KS8695_TMR_VA + KS8695_T1PD);
  96. /* re-enable timer1 */
  97. writel_relaxed(tmcon | TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);
  98. }
  99. static void __init ks8695_timer_init (void)
  100. {
  101. ks8695_timer_setup();
  102. /* Enable timer interrupts */
  103. setup_irq(KS8695_IRQ_TIMER1, &ks8695_timer_irq);
  104. }
  105. struct sys_timer ks8695_timer = {
  106. .init = ks8695_timer_init,
  107. .offset = ks8695_gettimeoffset,
  108. .resume = ks8695_timer_setup,
  109. };
  110. void ks8695_restart(char mode, const char *cmd)
  111. {
  112. unsigned int reg;
  113. if (mode == 's')
  114. soft_restart(0);
  115. /* disable timer0 */
  116. reg = readl_relaxed(KS8695_TMR_VA + KS8695_TMCON);
  117. writel_relaxed(reg & ~TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
  118. /* enable watchdog mode */
  119. writel_relaxed((10 << 8) | T0TC_WATCHDOG, KS8695_TMR_VA + KS8695_T0TC);
  120. /* re-enable timer0 */
  121. writel_relaxed(reg | TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
  122. }