blob: 6427b7c2c9faccc785a2ef8e09bd9b0f870c3ee8 [file] [log] [blame]
Andrew Victorc53c9cf2007-05-11 21:01:28 +01001/*
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
22#include <linux/init.h>
23#include <linux/interrupt.h>
24#include <linux/irq.h>
25#include <linux/kernel.h>
26#include <linux/sched.h>
Russell Kingfced80c2008-09-06 12:10:45 +010027#include <linux/io.h>
Andrew Victorc53c9cf2007-05-11 21:01:28 +010028
Andrew Victorc53c9cf2007-05-11 21:01:28 +010029#include <asm/mach/time.h>
David Howells9f97da72012-03-28 18:30:01 +010030#include <asm/system_misc.h>
Andrew Victorc53c9cf2007-05-11 21:01:28 +010031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/regs-irq.h>
Andrew Victorc53c9cf2007-05-11 21:01:28 +010033
34#include "generic.h"
35
Linus Walleij70adc3f2012-08-29 20:26:42 +020036#define KS8695_TMR_OFFSET (0xF0000 + 0xE400)
37#define KS8695_TMR_VA (KS8695_IO_VA + KS8695_TMR_OFFSET)
38#define KS8695_TMR_PA (KS8695_IO_PA + KS8695_TMR_OFFSET)
39
40/*
41 * Timer registers
42 */
43#define KS8695_TMCON (0x00) /* Timer Control Register */
44#define KS8695_T1TC (0x04) /* Timer 1 Timeout Count Register */
45#define KS8695_T0TC (0x08) /* Timer 0 Timeout Count Register */
46#define KS8695_T1PD (0x0C) /* Timer 1 Pulse Count Register */
47#define KS8695_T0PD (0x10) /* Timer 0 Pulse Count Register */
48
49/* Timer Control Register */
50#define TMCON_T1EN (1 << 1) /* Timer 1 Enable */
51#define TMCON_T0EN (1 << 0) /* Timer 0 Enable */
52
53/* Timer0 Timeout Counter Register */
54#define T0TC_WATCHDOG (0xff) /* Enable watchdog mode */
55
Andrew Victorc53c9cf2007-05-11 21:01:28 +010056/*
57 * Returns number of ms since last clock interrupt. Note that interrupts
58 * will have been disabled by do_gettimeoffset()
59 */
60static unsigned long ks8695_gettimeoffset (void)
61{
62 unsigned long elapsed, tick2, intpending;
63
64 /*
65 * Get the current number of ticks. Note that there is a race
66 * condition between us reading the timer and checking for an
67 * interrupt. We solve this by ensuring that the counter has not
68 * reloaded between our two reads.
69 */
70 elapsed = __raw_readl(KS8695_TMR_VA + KS8695_T1TC) + __raw_readl(KS8695_TMR_VA + KS8695_T1PD);
71 do {
72 tick2 = elapsed;
73 intpending = __raw_readl(KS8695_IRQ_VA + KS8695_INTST) & (1 << KS8695_IRQ_TIMER1);
74 elapsed = __raw_readl(KS8695_TMR_VA + KS8695_T1TC) + __raw_readl(KS8695_TMR_VA + KS8695_T1PD);
75 } while (elapsed > tick2);
76
77 /* Convert to number of ticks expired (not remaining) */
78 elapsed = (CLOCK_TICK_RATE / HZ) - elapsed;
79
80 /* Is interrupt pending? If so, then timer has been reloaded already. */
81 if (intpending)
82 elapsed += (CLOCK_TICK_RATE / HZ);
83
84 /* Convert ticks to usecs */
85 return (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;
86}
87
88/*
89 * IRQ handler for the timer.
90 */
91static irqreturn_t ks8695_timer_interrupt(int irq, void *dev_id)
92{
Andrew Victorc53c9cf2007-05-11 21:01:28 +010093 timer_tick();
Andrew Victorc53c9cf2007-05-11 21:01:28 +010094 return IRQ_HANDLED;
95}
96
97static struct irqaction ks8695_timer_irq = {
98 .name = "ks8695_tick",
99 .flags = IRQF_DISABLED | IRQF_TIMER,
100 .handler = ks8695_timer_interrupt,
101};
102
103static void ks8695_timer_setup(void)
104{
105 unsigned long tmout = CLOCK_TICK_RATE / HZ;
106 unsigned long tmcon;
107
108 /* disable timer1 */
109 tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
110 __raw_writel(tmcon & ~TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);
111
112 __raw_writel(tmout / 2, KS8695_TMR_VA + KS8695_T1TC);
113 __raw_writel(tmout / 2, KS8695_TMR_VA + KS8695_T1PD);
114
115 /* re-enable timer1 */
116 __raw_writel(tmcon | TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);
117}
118
119static void __init ks8695_timer_init (void)
120{
121 ks8695_timer_setup();
122
123 /* Enable timer interrupts */
124 setup_irq(KS8695_IRQ_TIMER1, &ks8695_timer_irq);
125}
126
127struct sys_timer ks8695_timer = {
128 .init = ks8695_timer_init,
129 .offset = ks8695_gettimeoffset,
130 .resume = ks8695_timer_setup,
131};
Russell King114c19b2011-11-11 15:30:47 +0000132
133void ks8695_restart(char mode, const char *cmd)
134{
135 unsigned int reg;
136
137 if (mode == 's')
138 soft_restart(0);
139
140 /* disable timer0 */
141 reg = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);
142 __raw_writel(reg & ~TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
143
144 /* enable watchdog mode */
145 __raw_writel((10 << 8) | T0TC_WATCHDOG, KS8695_TMR_VA + KS8695_T0TC);
146
147 /* re-enable timer0 */
148 __raw_writel(reg | TMCON_T0EN, KS8695_TMR_VA + KS8695_TMCON);
149}