blob: 045b2aba13fae9220d8bda6525cfcce78a7e36fd [file] [log] [blame]
Yoshinori Sato9d4436a2006-11-05 15:40:13 +09001/*
2 * arch/sh/kernel/timers/timer-mtu2.c - MTU2 Timer Support
3 *
4 * Copyright (C) 2005 Paul Mundt
5 *
6 * Based off of arch/sh/kernel/timers/timer-tmu.c
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/interrupt.h>
15#include <linux/spinlock.h>
16#include <linux/seqlock.h>
17#include <asm/timer.h>
18#include <asm/io.h>
19#include <asm/irq.h>
20#include <asm/clock.h>
21
22/*
23 * We use channel 1 for our lowly system timer. Channel 2 would be the other
24 * likely candidate, but we leave it alone as it has higher divisors that
25 * would be of more use to other more interesting applications.
26 *
27 * TODO: Presently we only implement a 16-bit single-channel system timer.
28 * However, we can implement channel cascade if we go the overflow route and
29 * get away with using 2 MTU2 channels as a 32-bit timer.
30 */
31
32static DEFINE_SPINLOCK(mtu2_lock);
33
34#define MTU2_TSTR 0xfffe4280
35#define MTU2_TCR_1 0xfffe4380
36#define MTU2_TMDR_1 0xfffe4381
37#define MTU2_TIOR_1 0xfffe4382
38#define MTU2_TIER_1 0xfffe4384
39#define MTU2_TSR_1 0xfffe4385
40#define MTU2_TCNT_1 0xfffe4386 /* 16-bit counter */
41#define MTU2_TGRA_1 0xfffe438a
42
43#define STBCR3 0xfffe0408
44
45#define MTU2_TSTR_CST1 (1 << 1) /* Counter Start 1 */
46
47#define MTU2_TSR_TGFA (1 << 0) /* GRA compare match */
48
49#define MTU2_TIER_TGIEA (1 << 0) /* GRA compare match interrupt enable */
50
51#define MTU2_TCR_INIT 0x22
52
53#define MTU2_TCR_CALIB 0x00
54
55static unsigned long mtu2_timer_get_offset(void)
56{
57 int count;
58 unsigned long flags;
59
60 static int count_p = 0x7fff; /* for the first call after boot */
61 static unsigned long jiffies_p = 0;
62
63 /*
64 * cache volatile jiffies temporarily; we have IRQs turned off.
65 */
66 unsigned long jiffies_t;
67
68 spin_lock_irqsave(&mtu2_lock, flags);
69 /* timer count may underflow right here */
70 count = ctrl_inw(MTU2_TCNT_1); /* read the latched count */
71
72 jiffies_t = jiffies;
73
74 /*
75 * avoiding timer inconsistencies (they are rare, but they happen)...
76 * there is one kind of problem that must be avoided here:
77 * 1. the timer counter underflows
78 */
79
80 if (jiffies_t == jiffies_p) {
81 if (count > count_p) {
82 if (ctrl_inb(MTU2_TSR_1) & MTU2_TSR_TGFA) {
83 count -= LATCH;
84 } else {
85 printk("%s (): hardware timer problem?\n",
86 __FUNCTION__);
87 }
88 }
89 } else
90 jiffies_p = jiffies_t;
91
92 count_p = count;
93 spin_unlock_irqrestore(&mtu2_lock, flags);
94
95 count = ((LATCH-1) - count) * TICK_SIZE;
96 count = (count + LATCH/2) / LATCH;
97
98 return count;
99}
100
Paul Mundt710ee0c2006-11-05 16:48:42 +0900101static irqreturn_t mtu2_timer_interrupt(int irq, void *dev_id)
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900102{
103 unsigned long timer_status;
104
105 /* Clear TGFA bit */
106 timer_status = ctrl_inb(MTU2_TSR_1);
107 timer_status &= ~MTU2_TSR_TGFA;
108 ctrl_outb(timer_status, MTU2_TSR_1);
109
110 /* Do timer tick */
111 write_seqlock(&xtime_lock);
Paul Mundt710ee0c2006-11-05 16:48:42 +0900112 handle_timer_tick();
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900113 write_sequnlock(&xtime_lock);
114
115 return IRQ_HANDLED;
116}
117
118static struct irqaction mtu2_irq = {
119 .name = "timer",
120 .handler = mtu2_timer_interrupt,
Paul Mundt710ee0c2006-11-05 16:48:42 +0900121 .flags = IRQF_DISABLED,
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900122 .mask = CPU_MASK_NONE,
123};
124
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900125static unsigned int divisors[] = { 1, 4, 16, 64, 1, 1, 256 };
126
127static void mtu2_clk_init(struct clk *clk)
128{
129 u8 idx = MTU2_TCR_INIT & 0x7;
130
131 clk->rate = clk->parent->rate / divisors[idx];
132 /* Start TCNT counting */
133 ctrl_outb(ctrl_inb(MTU2_TSTR) | MTU2_TSTR_CST1, MTU2_TSTR);
134
135}
136
137static void mtu2_clk_recalc(struct clk *clk)
138{
139 u8 idx = ctrl_inb(MTU2_TCR_1) & 0x7;
140 clk->rate = clk->parent->rate / divisors[idx];
141}
142
143static struct clk_ops mtu2_clk_ops = {
144 .init = mtu2_clk_init,
145 .recalc = mtu2_clk_recalc,
146};
147
148static struct clk mtu2_clk1 = {
149 .name = "mtu2_clk1",
150 .ops = &mtu2_clk_ops,
151};
152
153static int mtu2_timer_start(void)
154{
155 ctrl_outb(ctrl_inb(MTU2_TSTR) | MTU2_TSTR_CST1, MTU2_TSTR);
156 return 0;
157}
158
159static int mtu2_timer_stop(void)
160{
161 ctrl_outb(ctrl_inb(MTU2_TSTR) & ~MTU2_TSTR_CST1, MTU2_TSTR);
162 return 0;
163}
164
165static int mtu2_timer_init(void)
166{
167 u8 tmp;
168 unsigned long interval;
169
170 setup_irq(TIMER_IRQ, &mtu2_irq);
171
172 mtu2_clk1.parent = clk_get("module_clk");
173
174 ctrl_outb(ctrl_inb(STBCR3) & (~0x20), STBCR3);
175
176 /* Normal operation */
177 ctrl_outb(0, MTU2_TMDR_1);
178 ctrl_outb(MTU2_TCR_INIT, MTU2_TCR_1);
179 ctrl_outb(0x01, MTU2_TIOR_1);
180
181 /* Enable underflow interrupt */
182 ctrl_outb(ctrl_inb(MTU2_TIER_1) | MTU2_TIER_TGIEA, MTU2_TIER_1);
183
184 interval = CONFIG_SH_PCLK_FREQ / 16 / HZ;
185 printk(KERN_INFO "Interval = %ld\n", interval);
186
187 ctrl_outw(interval, MTU2_TGRA_1);
188 ctrl_outw(0, MTU2_TCNT_1);
189
190 clk_register(&mtu2_clk1);
191 clk_enable(&mtu2_clk1);
192
193 return 0;
194}
195
196struct sys_timer_ops mtu2_timer_ops = {
197 .init = mtu2_timer_init,
198 .start = mtu2_timer_start,
199 .stop = mtu2_timer_stop,
Paul Mundt710ee0c2006-11-05 16:48:42 +0900200#ifndef CONFIG_GENERIC_TIME
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900201 .get_offset = mtu2_timer_get_offset,
Paul Mundt710ee0c2006-11-05 16:48:42 +0900202#endif
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900203};
204
205struct sys_timer mtu2_timer = {
206 .name = "mtu2",
207 .ops = &mtu2_timer_ops,
208};