2 * linux/arch/arm/mach-mmp/time.c
4 * Support for clocksource and clockevents
6 * Copyright (C) 2008 Marvell International Ltd.
9 * 2008-04-11: Jason Chagas <Jason.chagas@marvell.com>
10 * 2008-10-08: Bin Yang <bin.yang@marvell.com>
12 * The timers module actually includes three timers, each timer with up to
13 * 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.
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.
21 #include <linux/init.h>
22 #include <linux/kernel.h>
23 #include <linux/interrupt.h>
24 #include <linux/clockchips.h>
27 #include <linux/irq.h>
29 #include <asm/sched_clock.h>
30 #include <mach/addr-map.h>
31 #include <mach/regs-timers.h>
32 #include <mach/regs-apbc.h>
33 #include <mach/irqs.h>
34 #include <mach/cputype.h>
35 #include <asm/mach/time.h>
39 #define TIMERS_VIRT_BASE TIMERS1_VIRT_BASE
41 #define MAX_DELTA (0xfffffffe)
42 #define MIN_DELTA (16)
45 * FIXME: the timer needs some delay to stablize the counter capture
47 static inline uint32_t timer_read(void)
51 __raw_writel(1, TIMERS_VIRT_BASE
+ TMR_CVWR(1));
56 return __raw_readl(TIMERS_VIRT_BASE
+ TMR_CVWR(1));
59 static u32 notrace
mmp_read_sched_clock(void)
64 static irqreturn_t
timer_interrupt(int irq
, void *dev_id
)
66 struct clock_event_device
*c
= dev_id
;
69 * Clear pending interrupt status.
71 __raw_writel(0x01, TIMERS_VIRT_BASE
+ TMR_ICR(0));
76 __raw_writel(0x02, TIMERS_VIRT_BASE
+ TMR_CER
);
83 static int timer_set_next_event(unsigned long delta
,
84 struct clock_event_device
*dev
)
88 local_irq_save(flags
);
93 __raw_writel(0x02, TIMERS_VIRT_BASE
+ TMR_CER
);
96 * Clear and enable timer match 0 interrupt.
98 __raw_writel(0x01, TIMERS_VIRT_BASE
+ TMR_ICR(0));
99 __raw_writel(0x01, TIMERS_VIRT_BASE
+ TMR_IER(0));
102 * Setup new clockevent timer value.
104 __raw_writel(delta
- 1, TIMERS_VIRT_BASE
+ TMR_TN_MM(0, 0));
109 __raw_writel(0x03, TIMERS_VIRT_BASE
+ TMR_CER
);
111 local_irq_restore(flags
);
116 static void timer_set_mode(enum clock_event_mode mode
,
117 struct clock_event_device
*dev
)
121 local_irq_save(flags
);
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));
129 case CLOCK_EVT_MODE_RESUME
:
130 case CLOCK_EVT_MODE_PERIODIC
:
133 local_irq_restore(flags
);
136 static struct clock_event_device ckevt
= {
137 .name
= "clockevent",
138 .features
= CLOCK_EVT_FEAT_ONESHOT
,
141 .set_next_event
= timer_set_next_event
,
142 .set_mode
= timer_set_mode
,
145 static cycle_t
clksrc_read(struct clocksource
*cs
)
150 static struct clocksource cksrc
= {
151 .name
= "clocksource",
154 .mask
= CLOCKSOURCE_MASK(32),
155 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
158 static void __init
timer_config(void)
160 uint32_t ccr
= __raw_readl(TIMERS_VIRT_BASE
+ TMR_CCR
);
162 __raw_writel(0x0, TIMERS_VIRT_BASE
+ TMR_CER
); /* disable */
164 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));
166 __raw_writel(ccr
, TIMERS_VIRT_BASE
+ TMR_CCR
);
168 /* set timer 0 to periodic mode, and timer 1 to free-running mode */
169 __raw_writel(0x2, TIMERS_VIRT_BASE
+ TMR_CMR
);
171 __raw_writel(0x1, TIMERS_VIRT_BASE
+ TMR_PLCR(0)); /* periodic */
172 __raw_writel(0x7, TIMERS_VIRT_BASE
+ TMR_ICR(0)); /* clear status */
173 __raw_writel(0x0, TIMERS_VIRT_BASE
+ TMR_IER(0));
175 __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));
179 /* enable timer 1 counter */
180 __raw_writel(0x2, TIMERS_VIRT_BASE
+ TMR_CER
);
183 static struct irqaction timer_irq
= {
185 .flags
= IRQF_DISABLED
| IRQF_TIMER
| IRQF_IRQPOLL
,
186 .handler
= timer_interrupt
,
190 void __init
timer_init(int irq
)
194 setup_sched_clock(mmp_read_sched_clock
, 32, CLOCK_TICK_RATE
);
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);
201 setup_irq(irq
, &timer_irq
);
203 clocksource_register_hz(&cksrc
, CLOCK_TICK_RATE
);
204 clockevents_register_device(&ckevt
);