2 * arch/arm/plat-orion/time.c
4 * Marvell Orion SoC timer handling.
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
10 * Timer 0 is used as free-running clocksource, while timer 1 is
11 * used as clock_event_device.
14 #include <linux/kernel.h>
15 #include <linux/sched.h>
16 #include <linux/timer.h>
17 #include <linux/clockchips.h>
18 #include <linux/interrupt.h>
19 #include <linux/irq.h>
20 #include <asm/sched_clock.h>
21 #include <asm/mach/time.h>
22 #include <mach/bridge-regs.h>
23 #include <mach/hardware.h>
26 * Number of timer ticks per jiffy.
28 static u32 ticks_per_jiffy
;
32 * Timer block registers.
34 #define TIMER_CTRL (TIMER_VIRT_BASE + 0x0000)
35 #define TIMER0_EN 0x0001
36 #define TIMER0_RELOAD_EN 0x0002
37 #define TIMER1_EN 0x0004
38 #define TIMER1_RELOAD_EN 0x0008
39 #define TIMER0_RELOAD (TIMER_VIRT_BASE + 0x0010)
40 #define TIMER0_VAL (TIMER_VIRT_BASE + 0x0014)
41 #define TIMER1_RELOAD (TIMER_VIRT_BASE + 0x0018)
42 #define TIMER1_VAL (TIMER_VIRT_BASE + 0x001c)
46 * Orion's sched_clock implementation. It has a resolution of
47 * at least 7.5ns (133MHz TCLK).
49 static DEFINE_CLOCK_DATA(cd
);
51 unsigned long long notrace
sched_clock(void)
53 u32 cyc
= 0xffffffff - readl(TIMER0_VAL
);
54 return cyc_to_sched_clock(&cd
, cyc
, (u32
)~0);
58 static void notrace
orion_update_sched_clock(void)
60 u32 cyc
= 0xffffffff - readl(TIMER0_VAL
);
61 update_sched_clock(&cd
, cyc
, (u32
)~0);
64 static void __init
setup_sched_clock(unsigned long tclk
)
66 init_sched_clock(&cd
, orion_update_sched_clock
, 32, tclk
);
70 * Clocksource handling.
72 static cycle_t
orion_clksrc_read(struct clocksource
*cs
)
74 return 0xffffffff - readl(TIMER0_VAL
);
77 static struct clocksource orion_clksrc
= {
78 .name
= "orion_clocksource",
80 .read
= orion_clksrc_read
,
81 .mask
= CLOCKSOURCE_MASK(32),
82 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
88 * Clockevent handling.
91 orion_clkevt_next_event(unsigned long delta
, struct clock_event_device
*dev
)
99 local_irq_save(flags
);
102 * Clear and enable clockevent timer interrupt.
104 writel(BRIDGE_INT_TIMER1_CLR
, BRIDGE_CAUSE
);
106 u
= readl(BRIDGE_MASK
);
107 u
|= BRIDGE_INT_TIMER1
;
108 writel(u
, BRIDGE_MASK
);
111 * Setup new clockevent timer value.
113 writel(delta
, TIMER1_VAL
);
118 u
= readl(TIMER_CTRL
);
119 u
= (u
& ~TIMER1_RELOAD_EN
) | TIMER1_EN
;
120 writel(u
, TIMER_CTRL
);
122 local_irq_restore(flags
);
128 orion_clkevt_mode(enum clock_event_mode mode
, struct clock_event_device
*dev
)
133 local_irq_save(flags
);
134 if (mode
== CLOCK_EVT_MODE_PERIODIC
) {
136 * Setup timer to fire at 1/HZ intervals.
138 writel(ticks_per_jiffy
- 1, TIMER1_RELOAD
);
139 writel(ticks_per_jiffy
- 1, TIMER1_VAL
);
142 * Enable timer interrupt.
144 u
= readl(BRIDGE_MASK
);
145 writel(u
| BRIDGE_INT_TIMER1
, BRIDGE_MASK
);
150 u
= readl(TIMER_CTRL
);
151 writel(u
| TIMER1_EN
| TIMER1_RELOAD_EN
, TIMER_CTRL
);
156 u
= readl(TIMER_CTRL
);
157 writel(u
& ~TIMER1_EN
, TIMER_CTRL
);
160 * Disable timer interrupt.
162 u
= readl(BRIDGE_MASK
);
163 writel(u
& ~BRIDGE_INT_TIMER1
, BRIDGE_MASK
);
166 * ACK pending timer interrupt.
168 writel(BRIDGE_INT_TIMER1_CLR
, BRIDGE_CAUSE
);
171 local_irq_restore(flags
);
174 static struct clock_event_device orion_clkevt
= {
175 .name
= "orion_tick",
176 .features
= CLOCK_EVT_FEAT_ONESHOT
| CLOCK_EVT_FEAT_PERIODIC
,
179 .set_next_event
= orion_clkevt_next_event
,
180 .set_mode
= orion_clkevt_mode
,
183 static irqreturn_t
orion_timer_interrupt(int irq
, void *dev_id
)
186 * ACK timer interrupt and call event handler.
188 writel(BRIDGE_INT_TIMER1_CLR
, BRIDGE_CAUSE
);
189 orion_clkevt
.event_handler(&orion_clkevt
);
194 static struct irqaction orion_timer_irq
= {
195 .name
= "orion_tick",
196 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
197 .handler
= orion_timer_interrupt
200 void __init
orion_time_init(unsigned int irq
, unsigned int tclk
)
204 ticks_per_jiffy
= (tclk
+ HZ
/2) / HZ
;
207 * Set scale and timer for sched_clock
209 setup_sched_clock(tclk
);
212 * Setup free-running clocksource timer (interrupts
215 writel(0xffffffff, TIMER0_VAL
);
216 writel(0xffffffff, TIMER0_RELOAD
);
217 u
= readl(BRIDGE_MASK
);
218 writel(u
& ~BRIDGE_INT_TIMER0
, BRIDGE_MASK
);
219 u
= readl(TIMER_CTRL
);
220 writel(u
| TIMER0_EN
| TIMER0_RELOAD_EN
, TIMER_CTRL
);
221 clocksource_register_hz(&orion_clksrc
, tclk
);
224 * Setup clockevent timer (interrupt-driven.)
226 setup_irq(irq
, &orion_timer_irq
);
227 orion_clkevt
.mult
= div_sc(tclk
, NSEC_PER_SEC
, orion_clkevt
.shift
);
228 orion_clkevt
.max_delta_ns
= clockevent_delta2ns(0xfffffffe, &orion_clkevt
);
229 orion_clkevt
.min_delta_ns
= clockevent_delta2ns(1, &orion_clkevt
);
230 orion_clkevt
.cpumask
= cpumask_of(0);
231 clockevents_register_device(&orion_clkevt
);