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/timer.h>
16 #include <linux/clockchips.h>
17 #include <linux/interrupt.h>
18 #include <linux/irq.h>
19 #include <asm/sched_clock.h>
22 * MBus bridge block registers.
24 #define BRIDGE_CAUSE_OFF 0x0110
25 #define BRIDGE_MASK_OFF 0x0114
26 #define BRIDGE_INT_TIMER0 0x0002
27 #define BRIDGE_INT_TIMER1 0x0004
31 * Timer block registers.
33 #define TIMER_CTRL_OFF 0x0000
34 #define TIMER0_EN 0x0001
35 #define TIMER0_RELOAD_EN 0x0002
36 #define TIMER1_EN 0x0004
37 #define TIMER1_RELOAD_EN 0x0008
38 #define TIMER0_RELOAD_OFF 0x0010
39 #define TIMER0_VAL_OFF 0x0014
40 #define TIMER1_RELOAD_OFF 0x0018
41 #define TIMER1_VAL_OFF 0x001c
47 static void __iomem
*bridge_base
;
48 static u32 bridge_timer1_clr_mask
;
49 static void __iomem
*timer_base
;
53 * Number of timer ticks per jiffy.
55 static u32 ticks_per_jiffy
;
59 * Orion's sched_clock implementation. It has a resolution of
60 * at least 7.5ns (133MHz TCLK).
63 static u32 notrace
orion_read_sched_clock(void)
65 return ~readl(timer_base
+ TIMER0_VAL_OFF
);
69 * Clockevent handling.
72 orion_clkevt_next_event(unsigned long delta
, struct clock_event_device
*dev
)
80 local_irq_save(flags
);
83 * Clear and enable clockevent timer interrupt.
85 writel(bridge_timer1_clr_mask
, bridge_base
+ BRIDGE_CAUSE_OFF
);
87 u
= readl(bridge_base
+ BRIDGE_MASK_OFF
);
88 u
|= BRIDGE_INT_TIMER1
;
89 writel(u
, bridge_base
+ BRIDGE_MASK_OFF
);
92 * Setup new clockevent timer value.
94 writel(delta
, timer_base
+ TIMER1_VAL_OFF
);
99 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
100 u
= (u
& ~TIMER1_RELOAD_EN
) | TIMER1_EN
;
101 writel(u
, timer_base
+ TIMER_CTRL_OFF
);
103 local_irq_restore(flags
);
109 orion_clkevt_mode(enum clock_event_mode mode
, struct clock_event_device
*dev
)
114 local_irq_save(flags
);
115 if (mode
== CLOCK_EVT_MODE_PERIODIC
) {
117 * Setup timer to fire at 1/HZ intervals.
119 writel(ticks_per_jiffy
- 1, timer_base
+ TIMER1_RELOAD_OFF
);
120 writel(ticks_per_jiffy
- 1, timer_base
+ TIMER1_VAL_OFF
);
123 * Enable timer interrupt.
125 u
= readl(bridge_base
+ BRIDGE_MASK_OFF
);
126 writel(u
| BRIDGE_INT_TIMER1
, bridge_base
+ BRIDGE_MASK_OFF
);
131 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
132 writel(u
| TIMER1_EN
| TIMER1_RELOAD_EN
,
133 timer_base
+ TIMER_CTRL_OFF
);
138 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
139 writel(u
& ~TIMER1_EN
, timer_base
+ TIMER_CTRL_OFF
);
142 * Disable timer interrupt.
144 u
= readl(bridge_base
+ BRIDGE_MASK_OFF
);
145 writel(u
& ~BRIDGE_INT_TIMER1
, bridge_base
+ BRIDGE_MASK_OFF
);
148 * ACK pending timer interrupt.
150 writel(bridge_timer1_clr_mask
, bridge_base
+ BRIDGE_CAUSE_OFF
);
153 local_irq_restore(flags
);
156 static struct clock_event_device orion_clkevt
= {
157 .name
= "orion_tick",
158 .features
= CLOCK_EVT_FEAT_ONESHOT
| CLOCK_EVT_FEAT_PERIODIC
,
161 .set_next_event
= orion_clkevt_next_event
,
162 .set_mode
= orion_clkevt_mode
,
165 static irqreturn_t
orion_timer_interrupt(int irq
, void *dev_id
)
168 * ACK timer interrupt and call event handler.
170 writel(bridge_timer1_clr_mask
, bridge_base
+ BRIDGE_CAUSE_OFF
);
171 orion_clkevt
.event_handler(&orion_clkevt
);
176 static struct irqaction orion_timer_irq
= {
177 .name
= "orion_tick",
178 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
179 .handler
= orion_timer_interrupt
183 orion_time_set_base(void __iomem
*_timer_base
)
185 timer_base
= _timer_base
;
189 orion_time_init(void __iomem
*_bridge_base
, u32 _bridge_timer1_clr_mask
,
190 unsigned int irq
, unsigned int tclk
)
195 * Set SoC-specific data.
197 bridge_base
= _bridge_base
;
198 bridge_timer1_clr_mask
= _bridge_timer1_clr_mask
;
200 ticks_per_jiffy
= (tclk
+ HZ
/2) / HZ
;
203 * Set scale and timer for sched_clock.
205 setup_sched_clock(orion_read_sched_clock
, 32, tclk
);
208 * Setup free-running clocksource timer (interrupts
211 writel(0xffffffff, timer_base
+ TIMER0_VAL_OFF
);
212 writel(0xffffffff, timer_base
+ TIMER0_RELOAD_OFF
);
213 u
= readl(bridge_base
+ BRIDGE_MASK_OFF
);
214 writel(u
& ~BRIDGE_INT_TIMER0
, bridge_base
+ BRIDGE_MASK_OFF
);
215 u
= readl(timer_base
+ TIMER_CTRL_OFF
);
216 writel(u
| TIMER0_EN
| TIMER0_RELOAD_EN
, timer_base
+ TIMER_CTRL_OFF
);
217 clocksource_mmio_init(timer_base
+ TIMER0_VAL_OFF
, "orion_clocksource",
218 tclk
, 300, 32, clocksource_mmio_readl_down
);
221 * Setup clockevent timer (interrupt-driven).
223 setup_irq(irq
, &orion_timer_irq
);
224 orion_clkevt
.mult
= div_sc(tclk
, NSEC_PER_SEC
, orion_clkevt
.shift
);
225 orion_clkevt
.max_delta_ns
= clockevent_delta2ns(0xfffffffe, &orion_clkevt
);
226 orion_clkevt
.min_delta_ns
= clockevent_delta2ns(1, &orion_clkevt
);
227 orion_clkevt
.cpumask
= cpumask_of(0);
228 clockevents_register_device(&orion_clkevt
);