2 * Copyright (C) 2000-2001 Deep Blue Solutions
3 * Copyright (C) 2002 Shane Nay (shane@minirl.com)
4 * Copyright (C) 2006-2007 Pavel Pisa (ppisa@pikron.com)
5 * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
6 * Copyright (C) 2010 Freescale Semiconductor, Inc. All Rights Reserved.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
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.
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., 51 Franklin Street, Fifth Floor, Boston,
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
25 #include <linux/clockchips.h>
26 #include <linux/clk.h>
28 #include <asm/mach/time.h>
30 #include <mach/common.h>
33 * There are 2 versions of the timrot on Freescale MXS-based SoCs.
34 * The v1 on MX23 only gets 16 bits counter, while v2 on MX28
35 * extends the counter to 32 bits.
37 * The implementation uses two timers, one for clock_event and
38 * another for clocksource. MX28 uses timrot 0 and 1, while MX23
42 #define MX23_TIMROT_VERSION_OFFSET 0x0a0
43 #define MX28_TIMROT_VERSION_OFFSET 0x120
44 #define BP_TIMROT_MAJOR_VERSION 24
45 #define BV_TIMROT_VERSION_1 0x01
46 #define BV_TIMROT_VERSION_2 0x02
47 #define timrot_is_v1() (timrot_major_version == BV_TIMROT_VERSION_1)
50 * There are 4 registers for each timrotv2 instance, and 2 registers
51 * for each timrotv1. So address step 0x40 in macros below strides
52 * one instance of timrotv2 while two instances of timrotv1.
54 * As the result, HW_TIMROT_XXXn(1) defines the address of timrot1
55 * on MX28 while timrot2 on MX23.
57 /* common between v1 and v2 */
58 #define HW_TIMROT_ROTCTRL 0x00
59 #define HW_TIMROT_TIMCTRLn(n) (0x20 + (n) * 0x40)
61 #define HW_TIMROT_TIMCOUNTn(n) (0x30 + (n) * 0x40)
63 #define HW_TIMROT_RUNNING_COUNTn(n) (0x30 + (n) * 0x40)
64 #define HW_TIMROT_FIXED_COUNTn(n) (0x40 + (n) * 0x40)
66 #define BM_TIMROT_TIMCTRLn_RELOAD (1 << 6)
67 #define BM_TIMROT_TIMCTRLn_UPDATE (1 << 7)
68 #define BM_TIMROT_TIMCTRLn_IRQ_EN (1 << 14)
69 #define BM_TIMROT_TIMCTRLn_IRQ (1 << 15)
70 #define BP_TIMROT_TIMCTRLn_SELECT 0
71 #define BV_TIMROTv1_TIMCTRLn_SELECT__32KHZ_XTAL 0x8
72 #define BV_TIMROTv2_TIMCTRLn_SELECT__32KHZ_XTAL 0xb
74 static struct clock_event_device mxs_clockevent_device
;
75 static enum clock_event_mode mxs_clockevent_mode
= CLOCK_EVT_MODE_UNUSED
;
77 static void __iomem
*mxs_timrot_base
= MXS_IO_ADDRESS(MXS_TIMROT_BASE_ADDR
);
78 static u32 timrot_major_version
;
80 static inline void timrot_irq_disable(void)
82 __mxs_clrl(BM_TIMROT_TIMCTRLn_IRQ_EN
,
83 mxs_timrot_base
+ HW_TIMROT_TIMCTRLn(0));
86 static inline void timrot_irq_enable(void)
88 __mxs_setl(BM_TIMROT_TIMCTRLn_IRQ_EN
,
89 mxs_timrot_base
+ HW_TIMROT_TIMCTRLn(0));
92 static void timrot_irq_acknowledge(void)
94 __mxs_clrl(BM_TIMROT_TIMCTRLn_IRQ
,
95 mxs_timrot_base
+ HW_TIMROT_TIMCTRLn(0));
98 static cycle_t
timrotv1_get_cycles(struct clocksource
*cs
)
100 return ~((__raw_readl(mxs_timrot_base
+ HW_TIMROT_TIMCOUNTn(1))
101 & 0xffff0000) >> 16);
104 static int timrotv1_set_next_event(unsigned long evt
,
105 struct clock_event_device
*dev
)
107 /* timrot decrements the count */
108 __raw_writel(evt
, mxs_timrot_base
+ HW_TIMROT_TIMCOUNTn(0));
113 static int timrotv2_set_next_event(unsigned long evt
,
114 struct clock_event_device
*dev
)
116 /* timrot decrements the count */
117 __raw_writel(evt
, mxs_timrot_base
+ HW_TIMROT_FIXED_COUNTn(0));
122 static irqreturn_t
mxs_timer_interrupt(int irq
, void *dev_id
)
124 struct clock_event_device
*evt
= dev_id
;
126 timrot_irq_acknowledge();
127 evt
->event_handler(evt
);
132 static struct irqaction mxs_timer_irq
= {
133 .name
= "MXS Timer Tick",
134 .dev_id
= &mxs_clockevent_device
,
135 .flags
= IRQF_TIMER
| IRQF_IRQPOLL
,
136 .handler
= mxs_timer_interrupt
,
140 static const char *clock_event_mode_label
[] const = {
141 [CLOCK_EVT_MODE_PERIODIC
] = "CLOCK_EVT_MODE_PERIODIC",
142 [CLOCK_EVT_MODE_ONESHOT
] = "CLOCK_EVT_MODE_ONESHOT",
143 [CLOCK_EVT_MODE_SHUTDOWN
] = "CLOCK_EVT_MODE_SHUTDOWN",
144 [CLOCK_EVT_MODE_UNUSED
] = "CLOCK_EVT_MODE_UNUSED"
148 static void mxs_set_mode(enum clock_event_mode mode
,
149 struct clock_event_device
*evt
)
151 /* Disable interrupt in timer module */
152 timrot_irq_disable();
154 if (mode
!= mxs_clockevent_mode
) {
155 /* Set event time into the furthest future */
158 mxs_timrot_base
+ HW_TIMROT_TIMCOUNTn(1));
160 __raw_writel(0xffffffff,
161 mxs_timrot_base
+ HW_TIMROT_FIXED_COUNTn(1));
163 /* Clear pending interrupt */
164 timrot_irq_acknowledge();
168 pr_info("%s: changing mode from %s to %s\n", __func__
,
169 clock_event_mode_label
[mxs_clockevent_mode
],
170 clock_event_mode_label
[mode
]);
173 /* Remember timer mode */
174 mxs_clockevent_mode
= mode
;
177 case CLOCK_EVT_MODE_PERIODIC
:
178 pr_err("%s: Periodic mode is not implemented\n", __func__
);
180 case CLOCK_EVT_MODE_ONESHOT
:
183 case CLOCK_EVT_MODE_SHUTDOWN
:
184 case CLOCK_EVT_MODE_UNUSED
:
185 case CLOCK_EVT_MODE_RESUME
:
186 /* Left event sources disabled, no more interrupts appear */
191 static struct clock_event_device mxs_clockevent_device
= {
192 .name
= "mxs_timrot",
193 .features
= CLOCK_EVT_FEAT_ONESHOT
,
195 .set_mode
= mxs_set_mode
,
196 .set_next_event
= timrotv2_set_next_event
,
200 static int __init
mxs_clockevent_init(struct clk
*timer_clk
)
202 unsigned int c
= clk_get_rate(timer_clk
);
204 mxs_clockevent_device
.mult
=
205 div_sc(c
, NSEC_PER_SEC
, mxs_clockevent_device
.shift
);
206 mxs_clockevent_device
.cpumask
= cpumask_of(0);
207 if (timrot_is_v1()) {
208 mxs_clockevent_device
.set_next_event
= timrotv1_set_next_event
;
209 mxs_clockevent_device
.max_delta_ns
=
210 clockevent_delta2ns(0xfffe, &mxs_clockevent_device
);
211 mxs_clockevent_device
.min_delta_ns
=
212 clockevent_delta2ns(0xf, &mxs_clockevent_device
);
214 mxs_clockevent_device
.max_delta_ns
=
215 clockevent_delta2ns(0xfffffffe, &mxs_clockevent_device
);
216 mxs_clockevent_device
.min_delta_ns
=
217 clockevent_delta2ns(0xf, &mxs_clockevent_device
);
220 clockevents_register_device(&mxs_clockevent_device
);
225 static struct clocksource clocksource_mxs
= {
228 .read
= timrotv1_get_cycles
,
229 .mask
= CLOCKSOURCE_MASK(16),
230 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
233 static int __init
mxs_clocksource_init(struct clk
*timer_clk
)
235 unsigned int c
= clk_get_rate(timer_clk
);
238 clocksource_register_hz(&clocksource_mxs
, c
);
240 clocksource_mmio_init(mxs_timrot_base
+ HW_TIMROT_RUNNING_COUNTn(1),
241 "mxs_timer", c
, 200, 32, clocksource_mmio_readl_down
);
246 void __init
mxs_timer_init(struct clk
*timer_clk
, int irq
)
248 clk_enable(timer_clk
);
251 * Initialize timers to a known state
253 mxs_reset_block(mxs_timrot_base
+ HW_TIMROT_ROTCTRL
);
255 /* get timrot version */
256 timrot_major_version
= __raw_readl(mxs_timrot_base
+
257 (cpu_is_mx23() ? MX23_TIMROT_VERSION_OFFSET
:
258 MX28_TIMROT_VERSION_OFFSET
));
259 timrot_major_version
>>= BP_TIMROT_MAJOR_VERSION
;
261 /* one for clock_event */
262 __raw_writel((timrot_is_v1() ?
263 BV_TIMROTv1_TIMCTRLn_SELECT__32KHZ_XTAL
:
264 BV_TIMROTv2_TIMCTRLn_SELECT__32KHZ_XTAL
) |
265 BM_TIMROT_TIMCTRLn_UPDATE
|
266 BM_TIMROT_TIMCTRLn_IRQ_EN
,
267 mxs_timrot_base
+ HW_TIMROT_TIMCTRLn(0));
269 /* another for clocksource */
270 __raw_writel((timrot_is_v1() ?
271 BV_TIMROTv1_TIMCTRLn_SELECT__32KHZ_XTAL
:
272 BV_TIMROTv2_TIMCTRLn_SELECT__32KHZ_XTAL
) |
273 BM_TIMROT_TIMCTRLn_RELOAD
,
274 mxs_timrot_base
+ HW_TIMROT_TIMCTRLn(1));
276 /* set clocksource timer fixed count to the maximum */
279 mxs_timrot_base
+ HW_TIMROT_TIMCOUNTn(1));
281 __raw_writel(0xffffffff,
282 mxs_timrot_base
+ HW_TIMROT_FIXED_COUNTn(1));
284 /* init and register the timer to the framework */
285 mxs_clocksource_init(timer_clk
);
286 mxs_clockevent_init(timer_clk
);
288 /* Make irqs happen */
289 setup_irq(irq
, &mxs_timer_irq
);