clocksource: convert ARM 32-bit down counting clocksources
[deliverable/linux.git] / arch / arm / plat-orion / time.c
CommitLineData
2bac1de2
LB
1/*
2 * arch/arm/plat-orion/time.c
3 *
4 * Marvell Orion SoC timer handling.
5 *
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.
9 *
10 * Timer 0 is used as free-running clocksource, while timer 1 is
11 * used as clock_event_device.
12 */
13
14#include <linux/kernel.h>
a399e3fa 15#include <linux/sched.h>
a399e3fa 16#include <linux/timer.h>
2bac1de2
LB
17#include <linux/clockchips.h>
18#include <linux/interrupt.h>
19#include <linux/irq.h>
f06a1624 20#include <asm/sched_clock.h>
2bac1de2
LB
21
22/*
4ee1f6b5 23 * MBus bridge block registers.
2bac1de2 24 */
4ee1f6b5
LB
25#define BRIDGE_CAUSE_OFF 0x0110
26#define BRIDGE_MASK_OFF 0x0114
27#define BRIDGE_INT_TIMER0 0x0002
28#define BRIDGE_INT_TIMER1 0x0004
2bac1de2
LB
29
30
31/*
32 * Timer block registers.
33 */
4ee1f6b5
LB
34#define TIMER_CTRL_OFF 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_OFF 0x0010
40#define TIMER0_VAL_OFF 0x0014
41#define TIMER1_RELOAD_OFF 0x0018
42#define TIMER1_VAL_OFF 0x001c
43
44
45/*
46 * SoC-specific data.
47 */
48static void __iomem *bridge_base;
49static u32 bridge_timer1_clr_mask;
50static void __iomem *timer_base;
51
52
53/*
54 * Number of timer ticks per jiffy.
55 */
56static u32 ticks_per_jiffy;
2bac1de2
LB
57
58
8a3269fc
SA
59/*
60 * Orion's sched_clock implementation. It has a resolution of
f06a1624 61 * at least 7.5ns (133MHz TCLK).
8a3269fc 62 */
f06a1624 63static DEFINE_CLOCK_DATA(cd);
8a3269fc 64
5e06b649 65unsigned long long notrace sched_clock(void)
a399e3fa 66{
4ee1f6b5 67 u32 cyc = ~readl(timer_base + TIMER0_VAL_OFF);
f06a1624 68 return cyc_to_sched_clock(&cd, cyc, (u32)~0);
a399e3fa
NP
69}
70
a399e3fa 71
f06a1624 72static void notrace orion_update_sched_clock(void)
a399e3fa 73{
4ee1f6b5 74 u32 cyc = ~readl(timer_base + TIMER0_VAL_OFF);
f06a1624 75 update_sched_clock(&cd, cyc, (u32)~0);
a399e3fa
NP
76}
77
78static void __init setup_sched_clock(unsigned long tclk)
8a3269fc 79{
f06a1624 80 init_sched_clock(&cd, orion_update_sched_clock, 32, tclk);
8a3269fc
SA
81}
82
2bac1de2
LB
83/*
84 * Clockevent handling.
85 */
86static int
87orion_clkevt_next_event(unsigned long delta, struct clock_event_device *dev)
88{
89 unsigned long flags;
90 u32 u;
91
92 if (delta == 0)
93 return -ETIME;
94
95 local_irq_save(flags);
96
97 /*
98 * Clear and enable clockevent timer interrupt.
99 */
4ee1f6b5 100 writel(bridge_timer1_clr_mask, bridge_base + BRIDGE_CAUSE_OFF);
2bac1de2 101
4ee1f6b5 102 u = readl(bridge_base + BRIDGE_MASK_OFF);
2bac1de2 103 u |= BRIDGE_INT_TIMER1;
4ee1f6b5 104 writel(u, bridge_base + BRIDGE_MASK_OFF);
2bac1de2
LB
105
106 /*
107 * Setup new clockevent timer value.
108 */
4ee1f6b5 109 writel(delta, timer_base + TIMER1_VAL_OFF);
2bac1de2
LB
110
111 /*
112 * Enable the timer.
113 */
4ee1f6b5 114 u = readl(timer_base + TIMER_CTRL_OFF);
2bac1de2 115 u = (u & ~TIMER1_RELOAD_EN) | TIMER1_EN;
4ee1f6b5 116 writel(u, timer_base + TIMER_CTRL_OFF);
2bac1de2
LB
117
118 local_irq_restore(flags);
119
120 return 0;
121}
122
123static void
124orion_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
125{
126 unsigned long flags;
127 u32 u;
128
129 local_irq_save(flags);
130 if (mode == CLOCK_EVT_MODE_PERIODIC) {
131 /*
132 * Setup timer to fire at 1/HZ intervals.
133 */
4ee1f6b5
LB
134 writel(ticks_per_jiffy - 1, timer_base + TIMER1_RELOAD_OFF);
135 writel(ticks_per_jiffy - 1, timer_base + TIMER1_VAL_OFF);
2bac1de2
LB
136
137 /*
138 * Enable timer interrupt.
139 */
4ee1f6b5
LB
140 u = readl(bridge_base + BRIDGE_MASK_OFF);
141 writel(u | BRIDGE_INT_TIMER1, bridge_base + BRIDGE_MASK_OFF);
2bac1de2
LB
142
143 /*
144 * Enable timer.
145 */
4ee1f6b5
LB
146 u = readl(timer_base + TIMER_CTRL_OFF);
147 writel(u | TIMER1_EN | TIMER1_RELOAD_EN,
148 timer_base + TIMER_CTRL_OFF);
2bac1de2
LB
149 } else {
150 /*
151 * Disable timer.
152 */
4ee1f6b5
LB
153 u = readl(timer_base + TIMER_CTRL_OFF);
154 writel(u & ~TIMER1_EN, timer_base + TIMER_CTRL_OFF);
2bac1de2
LB
155
156 /*
157 * Disable timer interrupt.
158 */
4ee1f6b5
LB
159 u = readl(bridge_base + BRIDGE_MASK_OFF);
160 writel(u & ~BRIDGE_INT_TIMER1, bridge_base + BRIDGE_MASK_OFF);
2bac1de2
LB
161
162 /*
163 * ACK pending timer interrupt.
164 */
4ee1f6b5 165 writel(bridge_timer1_clr_mask, bridge_base + BRIDGE_CAUSE_OFF);
2bac1de2
LB
166
167 }
168 local_irq_restore(flags);
169}
170
171static struct clock_event_device orion_clkevt = {
172 .name = "orion_tick",
173 .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
174 .shift = 32,
175 .rating = 300,
2bac1de2
LB
176 .set_next_event = orion_clkevt_next_event,
177 .set_mode = orion_clkevt_mode,
178};
179
180static irqreturn_t orion_timer_interrupt(int irq, void *dev_id)
181{
182 /*
183 * ACK timer interrupt and call event handler.
184 */
4ee1f6b5 185 writel(bridge_timer1_clr_mask, bridge_base + BRIDGE_CAUSE_OFF);
2bac1de2
LB
186 orion_clkevt.event_handler(&orion_clkevt);
187
188 return IRQ_HANDLED;
189}
190
191static struct irqaction orion_timer_irq = {
192 .name = "orion_tick",
193 .flags = IRQF_DISABLED | IRQF_TIMER,
194 .handler = orion_timer_interrupt
195};
196
4ee1f6b5
LB
197void __init
198orion_time_set_base(u32 _timer_base)
199{
200 timer_base = (void __iomem *)_timer_base;
201}
202
203void __init
204orion_time_init(u32 _bridge_base, u32 _bridge_timer1_clr_mask,
205 unsigned int irq, unsigned int tclk)
2bac1de2
LB
206{
207 u32 u;
208
4ee1f6b5
LB
209 /*
210 * Set SoC-specific data.
211 */
212 bridge_base = (void __iomem *)_bridge_base;
213 bridge_timer1_clr_mask = _bridge_timer1_clr_mask;
214
2bac1de2
LB
215 ticks_per_jiffy = (tclk + HZ/2) / HZ;
216
8a3269fc 217 /*
4ee1f6b5 218 * Set scale and timer for sched_clock.
8a3269fc 219 */
a399e3fa 220 setup_sched_clock(tclk);
2bac1de2
LB
221
222 /*
223 * Setup free-running clocksource timer (interrupts
4ee1f6b5 224 * disabled).
2bac1de2 225 */
4ee1f6b5
LB
226 writel(0xffffffff, timer_base + TIMER0_VAL_OFF);
227 writel(0xffffffff, timer_base + TIMER0_RELOAD_OFF);
228 u = readl(bridge_base + BRIDGE_MASK_OFF);
229 writel(u & ~BRIDGE_INT_TIMER0, bridge_base + BRIDGE_MASK_OFF);
230 u = readl(timer_base + TIMER_CTRL_OFF);
231 writel(u | TIMER0_EN | TIMER0_RELOAD_EN, timer_base + TIMER_CTRL_OFF);
bfe45e0b
RK
232 clocksource_mmio_init(timer_base + TIMER0_VAL_OFF, "orion_clocksource",
233 tclk, 300, 32, clocksource_mmio_readl_down);
2bac1de2 234
2bac1de2 235 /*
4ee1f6b5 236 * Setup clockevent timer (interrupt-driven).
2bac1de2
LB
237 */
238 setup_irq(irq, &orion_timer_irq);
239 orion_clkevt.mult = div_sc(tclk, NSEC_PER_SEC, orion_clkevt.shift);
240 orion_clkevt.max_delta_ns = clockevent_delta2ns(0xfffffffe, &orion_clkevt);
241 orion_clkevt.min_delta_ns = clockevent_delta2ns(1, &orion_clkevt);
320ab2b0 242 orion_clkevt.cpumask = cpumask_of(0);
2bac1de2
LB
243 clockevents_register_device(&orion_clkevt);
244}
This page took 0.253641 seconds and 5 git commands to generate.