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