blob: 71fc4ee4602cefdbf83ef5ae7bb68b75219fc99e [file] [log] [blame]
Eric Miao49cbe782009-01-20 14:15:18 +08001/*
2 * linux/arch/arm/mach-mmp/time.c
3 *
4 * Support for clocksource and clockevents
5 *
6 * Copyright (C) 2008 Marvell International Ltd.
7 * All rights reserved.
8 *
9 * 2008-04-11: Jason Chagas <Jason.chagas@marvell.com>
10 * 2008-10-08: Bin Yang <bin.yang@marvell.com>
11 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030012 * The timers module actually includes three timers, each timer with up to
Eric Miao49cbe782009-01-20 14:15:18 +080013 * three match comparators. Timer #0 is used here in free-running mode as
14 * the clock source, and match comparator #1 used as clock event device.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/init.h>
22#include <linux/kernel.h>
23#include <linux/interrupt.h>
24#include <linux/clockchips.h>
25
26#include <linux/io.h>
27#include <linux/irq.h>
Eric Miao49cbe782009-01-20 14:15:18 +080028
Russell King28bb7bc2010-12-15 21:46:48 +000029#include <asm/sched_clock.h>
Eric Miao49cbe782009-01-20 14:15:18 +080030#include <mach/addr-map.h>
31#include <mach/regs-timers.h>
Haojian Zhuang2f7e8fa2009-12-04 09:41:28 -050032#include <mach/regs-apbc.h>
Eric Miao49cbe782009-01-20 14:15:18 +080033#include <mach/irqs.h>
Haojian Zhuang2f7e8fa2009-12-04 09:41:28 -050034#include <mach/cputype.h>
35#include <asm/mach/time.h>
Eric Miao49cbe782009-01-20 14:15:18 +080036
37#include "clock.h"
38
39#define TIMERS_VIRT_BASE TIMERS1_VIRT_BASE
40
41#define MAX_DELTA (0xfffffffe)
42#define MIN_DELTA (16)
43
Eric Miao49cbe782009-01-20 14:15:18 +080044/*
45 * FIXME: the timer needs some delay to stablize the counter capture
46 */
47static inline uint32_t timer_read(void)
48{
49 int delay = 100;
50
Lennert Buytenhek71c0c342011-08-10 02:37:34 +080051 __raw_writel(1, TIMERS_VIRT_BASE + TMR_CVWR(1));
Eric Miao49cbe782009-01-20 14:15:18 +080052
53 while (delay--)
54 cpu_relax();
55
Lennert Buytenhek71c0c342011-08-10 02:37:34 +080056 return __raw_readl(TIMERS_VIRT_BASE + TMR_CVWR(1));
Eric Miao49cbe782009-01-20 14:15:18 +080057}
58
Marc Zyngier2f0778af2011-12-15 12:19:23 +010059static u32 notrace mmp_read_sched_clock(void)
Eric Miao49cbe782009-01-20 14:15:18 +080060{
Marc Zyngier2f0778af2011-12-15 12:19:23 +010061 return timer_read();
Eric Miao49cbe782009-01-20 14:15:18 +080062}
63
64static irqreturn_t timer_interrupt(int irq, void *dev_id)
65{
66 struct clock_event_device *c = dev_id;
67
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +080068 /*
69 * Clear pending interrupt status.
70 */
71 __raw_writel(0x01, TIMERS_VIRT_BASE + TMR_ICR(0));
72
73 /*
74 * Disable timer 0.
75 */
76 __raw_writel(0x02, TIMERS_VIRT_BASE + TMR_CER);
77
Eric Miao49cbe782009-01-20 14:15:18 +080078 c->event_handler(c);
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +080079
Eric Miao49cbe782009-01-20 14:15:18 +080080 return IRQ_HANDLED;
81}
82
83static int timer_set_next_event(unsigned long delta,
84 struct clock_event_device *dev)
85{
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +080086 unsigned long flags;
Eric Miao49cbe782009-01-20 14:15:18 +080087
88 local_irq_save(flags);
89
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +080090 /*
91 * Disable timer 0.
92 */
93 __raw_writel(0x02, TIMERS_VIRT_BASE + TMR_CER);
94
95 /*
96 * Clear and enable timer match 0 interrupt.
97 */
Eric Miao49cbe782009-01-20 14:15:18 +080098 __raw_writel(0x01, TIMERS_VIRT_BASE + TMR_ICR(0));
99 __raw_writel(0x01, TIMERS_VIRT_BASE + TMR_IER(0));
100
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +0800101 /*
102 * Setup new clockevent timer value.
103 */
104 __raw_writel(delta - 1, TIMERS_VIRT_BASE + TMR_TN_MM(0, 0));
105
106 /*
107 * Enable timer 0.
108 */
109 __raw_writel(0x03, TIMERS_VIRT_BASE + TMR_CER);
Eric Miao49cbe782009-01-20 14:15:18 +0800110
111 local_irq_restore(flags);
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +0800112
Eric Miao49cbe782009-01-20 14:15:18 +0800113 return 0;
114}
115
116static void timer_set_mode(enum clock_event_mode mode,
117 struct clock_event_device *dev)
118{
119 unsigned long flags;
120
121 local_irq_save(flags);
122 switch (mode) {
123 case CLOCK_EVT_MODE_ONESHOT:
124 case CLOCK_EVT_MODE_UNUSED:
125 case CLOCK_EVT_MODE_SHUTDOWN:
126 /* disable the matching interrupt */
127 __raw_writel(0x00, TIMERS_VIRT_BASE + TMR_IER(0));
128 break;
129 case CLOCK_EVT_MODE_RESUME:
130 case CLOCK_EVT_MODE_PERIODIC:
131 break;
132 }
133 local_irq_restore(flags);
134}
135
136static struct clock_event_device ckevt = {
137 .name = "clockevent",
138 .features = CLOCK_EVT_FEAT_ONESHOT,
139 .shift = 32,
140 .rating = 200,
141 .set_next_event = timer_set_next_event,
142 .set_mode = timer_set_mode,
143};
144
Coly Lif5c81a32009-04-23 03:04:45 +0800145static cycle_t clksrc_read(struct clocksource *cs)
Eric Miao49cbe782009-01-20 14:15:18 +0800146{
147 return timer_read();
148}
149
150static struct clocksource cksrc = {
151 .name = "clocksource",
Eric Miao49cbe782009-01-20 14:15:18 +0800152 .rating = 200,
153 .read = clksrc_read,
154 .mask = CLOCKSOURCE_MASK(32),
155 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
156};
157
158static void __init timer_config(void)
159{
160 uint32_t ccr = __raw_readl(TIMERS_VIRT_BASE + TMR_CCR);
Eric Miao49cbe782009-01-20 14:15:18 +0800161
Lennert Buytenhek7ce5ae32011-08-10 02:36:59 +0800162 __raw_writel(0x0, TIMERS_VIRT_BASE + TMR_CER); /* disable */
Eric Miao49cbe782009-01-20 14:15:18 +0800163
Lennert Buytenhek7ce5ae32011-08-10 02:36:59 +0800164 ccr &= (cpu_is_mmp2()) ? (TMR_CCR_CS_0(0) | TMR_CCR_CS_1(0)) :
165 (TMR_CCR_CS_0(3) | TMR_CCR_CS_1(3));
Eric Miao49cbe782009-01-20 14:15:18 +0800166 __raw_writel(ccr, TIMERS_VIRT_BASE + TMR_CCR);
167
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +0800168 /* set timer 0 to periodic mode, and timer 1 to free-running mode */
169 __raw_writel(0x2, TIMERS_VIRT_BASE + TMR_CMR);
Eric Miao49cbe782009-01-20 14:15:18 +0800170
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +0800171 __raw_writel(0x1, TIMERS_VIRT_BASE + TMR_PLCR(0)); /* periodic */
Eric Miao49cbe782009-01-20 14:15:18 +0800172 __raw_writel(0x7, TIMERS_VIRT_BASE + TMR_ICR(0)); /* clear status */
173 __raw_writel(0x0, TIMERS_VIRT_BASE + TMR_IER(0));
174
Lennert Buytenhek7ce5ae32011-08-10 02:36:59 +0800175 __raw_writel(0x0, TIMERS_VIRT_BASE + TMR_PLCR(1)); /* free-running */
176 __raw_writel(0x7, TIMERS_VIRT_BASE + TMR_ICR(1)); /* clear status */
177 __raw_writel(0x0, TIMERS_VIRT_BASE + TMR_IER(1));
178
Lennert Buytenhekaf9dafb2011-08-10 02:37:55 +0800179 /* enable timer 1 counter */
180 __raw_writel(0x2, TIMERS_VIRT_BASE + TMR_CER);
Eric Miao49cbe782009-01-20 14:15:18 +0800181}
182
183static struct irqaction timer_irq = {
184 .name = "timer",
185 .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
186 .handler = timer_interrupt,
187 .dev_id = &ckevt,
188};
189
190void __init timer_init(int irq)
191{
192 timer_config();
193
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100194 setup_sched_clock(mmp_read_sched_clock, 32, CLOCK_TICK_RATE);
Eric Miao49cbe782009-01-20 14:15:18 +0800195
196 ckevt.mult = div_sc(CLOCK_TICK_RATE, NSEC_PER_SEC, ckevt.shift);
197 ckevt.max_delta_ns = clockevent_delta2ns(MAX_DELTA, &ckevt);
198 ckevt.min_delta_ns = clockevent_delta2ns(MIN_DELTA, &ckevt);
199 ckevt.cpumask = cpumask_of(0);
200
Eric Miao49cbe782009-01-20 14:15:18 +0800201 setup_irq(irq, &timer_irq);
202
Russell King5975f492010-12-13 13:18:04 +0000203 clocksource_register_hz(&cksrc, CLOCK_TICK_RATE);
Eric Miao49cbe782009-01-20 14:15:18 +0800204 clockevents_register_device(&ckevt);
205}