Merge branch 'pm-cpufreq'
[linux-2.6-block.git] / arch / microblaze / kernel / timer.c
CommitLineData
eedbdab9 1/*
1e529803
MS
2 * Copyright (C) 2007-2013 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2012-2013 Xilinx, Inc.
eedbdab9
MS
4 * Copyright (C) 2007-2009 PetaLogix
5 * Copyright (C) 2006 Atmark Techno, Inc.
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11
eedbdab9 12#include <linux/interrupt.h>
eedbdab9
MS
13#include <linux/delay.h>
14#include <linux/sched.h>
839396ab 15#include <linux/sched_clock.h>
eedbdab9 16#include <linux/clk.h>
eedbdab9 17#include <linux/clockchips.h>
cfd4eaef 18#include <linux/of_address.h>
5c9f303e 19#include <linux/of_irq.h>
5ce07a5c 20#include <linux/timecounter.h>
eedbdab9 21#include <asm/cpuinfo.h>
eedbdab9 22
cfd4eaef 23static void __iomem *timer_baseaddr;
eedbdab9 24
29e3dbb1
MS
25static unsigned int freq_div_hz;
26static unsigned int timer_clock_freq;
ccea0e6e 27
eedbdab9
MS
28#define TCSR0 (0x00)
29#define TLR0 (0x04)
30#define TCR0 (0x08)
31#define TCSR1 (0x10)
32#define TLR1 (0x14)
33#define TCR1 (0x18)
34
35#define TCSR_MDT (1<<0)
36#define TCSR_UDT (1<<1)
37#define TCSR_GENT (1<<2)
38#define TCSR_CAPT (1<<3)
39#define TCSR_ARHT (1<<4)
40#define TCSR_LOAD (1<<5)
41#define TCSR_ENIT (1<<6)
42#define TCSR_ENT (1<<7)
43#define TCSR_TINT (1<<8)
44#define TCSR_PWMA (1<<9)
45#define TCSR_ENALL (1<<10)
46
a1715bb7
MS
47static unsigned int (*read_fn)(void __iomem *);
48static void (*write_fn)(u32, void __iomem *);
49
50static void timer_write32(u32 val, void __iomem *addr)
51{
52 iowrite32(val, addr);
53}
54
55static unsigned int timer_read32(void __iomem *addr)
56{
57 return ioread32(addr);
58}
59
60static void timer_write32_be(u32 val, void __iomem *addr)
61{
62 iowrite32be(val, addr);
63}
64
65static unsigned int timer_read32_be(void __iomem *addr)
66{
67 return ioread32be(addr);
68}
69
5955563a 70static inline void xilinx_timer0_stop(void)
eedbdab9 71{
a1715bb7
MS
72 write_fn(read_fn(timer_baseaddr + TCSR0) & ~TCSR_ENT,
73 timer_baseaddr + TCSR0);
eedbdab9
MS
74}
75
5955563a 76static inline void xilinx_timer0_start_periodic(unsigned long load_val)
eedbdab9
MS
77{
78 if (!load_val)
79 load_val = 1;
9e77dab6 80 /* loading value to timer reg */
a1715bb7 81 write_fn(load_val, timer_baseaddr + TLR0);
eedbdab9
MS
82
83 /* load the initial value */
a1715bb7 84 write_fn(TCSR_LOAD, timer_baseaddr + TCSR0);
eedbdab9
MS
85
86 /* see timer data sheet for detail
87 * !ENALL - don't enable 'em all
88 * !PWMA - disable pwm
89 * TINT - clear interrupt status
90 * ENT- enable timer itself
f7f4786c 91 * ENIT - enable interrupt
eedbdab9
MS
92 * !LOAD - clear the bit to let go
93 * ARHT - auto reload
94 * !CAPT - no external trigger
95 * !GENT - no external signal
96 * UDT - set the timer as down counter
97 * !MDT0 - generate mode
98 */
a1715bb7
MS
99 write_fn(TCSR_TINT|TCSR_ENIT|TCSR_ENT|TCSR_ARHT|TCSR_UDT,
100 timer_baseaddr + TCSR0);
eedbdab9
MS
101}
102
5955563a 103static inline void xilinx_timer0_start_oneshot(unsigned long load_val)
eedbdab9
MS
104{
105 if (!load_val)
106 load_val = 1;
9e77dab6 107 /* loading value to timer reg */
a1715bb7 108 write_fn(load_val, timer_baseaddr + TLR0);
eedbdab9
MS
109
110 /* load the initial value */
a1715bb7 111 write_fn(TCSR_LOAD, timer_baseaddr + TCSR0);
eedbdab9 112
a1715bb7
MS
113 write_fn(TCSR_TINT|TCSR_ENIT|TCSR_ENT|TCSR_ARHT|TCSR_UDT,
114 timer_baseaddr + TCSR0);
eedbdab9
MS
115}
116
5955563a 117static int xilinx_timer_set_next_event(unsigned long delta,
eedbdab9
MS
118 struct clock_event_device *dev)
119{
120 pr_debug("%s: next event, delta %x\n", __func__, (u32)delta);
5955563a 121 xilinx_timer0_start_oneshot(delta);
eedbdab9
MS
122 return 0;
123}
124
9797529d 125static int xilinx_timer_shutdown(struct clock_event_device *evt)
eedbdab9 126{
9797529d
VK
127 pr_info("%s\n", __func__);
128 xilinx_timer0_stop();
129 return 0;
130}
131
132static int xilinx_timer_set_periodic(struct clock_event_device *evt)
133{
134 pr_info("%s\n", __func__);
135 xilinx_timer0_start_periodic(freq_div_hz);
136 return 0;
eedbdab9
MS
137}
138
5955563a 139static struct clock_event_device clockevent_xilinx_timer = {
9797529d
VK
140 .name = "xilinx_clockevent",
141 .features = CLOCK_EVT_FEAT_ONESHOT |
142 CLOCK_EVT_FEAT_PERIODIC,
143 .shift = 8,
144 .rating = 300,
145 .set_next_event = xilinx_timer_set_next_event,
146 .set_state_shutdown = xilinx_timer_shutdown,
147 .set_state_periodic = xilinx_timer_set_periodic,
eedbdab9
MS
148};
149
150static inline void timer_ack(void)
151{
a1715bb7 152 write_fn(read_fn(timer_baseaddr + TCSR0), timer_baseaddr + TCSR0);
eedbdab9
MS
153}
154
155static irqreturn_t timer_interrupt(int irq, void *dev_id)
156{
5955563a 157 struct clock_event_device *evt = &clockevent_xilinx_timer;
eedbdab9 158#ifdef CONFIG_HEART_BEAT
79c157a3 159 microblaze_heartbeat();
eedbdab9
MS
160#endif
161 timer_ack();
162 evt->event_handler(evt);
163 return IRQ_HANDLED;
164}
165
166static struct irqaction timer_irqaction = {
167 .handler = timer_interrupt,
db2a7df0 168 .flags = IRQF_TIMER,
eedbdab9 169 .name = "timer",
5955563a 170 .dev_id = &clockevent_xilinx_timer,
eedbdab9
MS
171};
172
5955563a 173static __init void xilinx_clockevent_init(void)
eedbdab9 174{
5955563a 175 clockevent_xilinx_timer.mult =
ccea0e6e 176 div_sc(timer_clock_freq, NSEC_PER_SEC,
5955563a
MS
177 clockevent_xilinx_timer.shift);
178 clockevent_xilinx_timer.max_delta_ns =
179 clockevent_delta2ns((u32)~0, &clockevent_xilinx_timer);
180 clockevent_xilinx_timer.min_delta_ns =
181 clockevent_delta2ns(1, &clockevent_xilinx_timer);
182 clockevent_xilinx_timer.cpumask = cpumask_of(0);
183 clockevents_register_device(&clockevent_xilinx_timer);
eedbdab9
MS
184}
185
839396ab
MS
186static u64 xilinx_clock_read(void)
187{
a1715bb7 188 return read_fn(timer_baseaddr + TCR1);
839396ab
MS
189}
190
5955563a 191static cycle_t xilinx_read(struct clocksource *cs)
eedbdab9
MS
192{
193 /* reading actual value of timer 1 */
839396ab 194 return (cycle_t)xilinx_clock_read();
eedbdab9
MS
195}
196
5955563a 197static struct timecounter xilinx_tc = {
519e9f41
MS
198 .cc = NULL,
199};
200
5955563a 201static cycle_t xilinx_cc_read(const struct cyclecounter *cc)
519e9f41 202{
5955563a 203 return xilinx_read(NULL);
519e9f41
MS
204}
205
5955563a
MS
206static struct cyclecounter xilinx_cc = {
207 .read = xilinx_cc_read,
519e9f41 208 .mask = CLOCKSOURCE_MASK(32),
c8f77436 209 .shift = 8,
519e9f41
MS
210};
211
5955563a 212static int __init init_xilinx_timecounter(void)
519e9f41 213{
5955563a
MS
214 xilinx_cc.mult = div_sc(timer_clock_freq, NSEC_PER_SEC,
215 xilinx_cc.shift);
519e9f41 216
5955563a 217 timecounter_init(&xilinx_tc, &xilinx_cc, sched_clock());
519e9f41
MS
218
219 return 0;
220}
221
eedbdab9 222static struct clocksource clocksource_microblaze = {
5955563a 223 .name = "xilinx_clocksource",
eedbdab9 224 .rating = 300,
5955563a 225 .read = xilinx_read,
eedbdab9 226 .mask = CLOCKSOURCE_MASK(32),
eedbdab9
MS
227 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
228};
229
5955563a 230static int __init xilinx_clocksource_init(void)
eedbdab9 231{
b8f39f7d 232 if (clocksource_register_hz(&clocksource_microblaze, timer_clock_freq))
eedbdab9
MS
233 panic("failed to register clocksource");
234
235 /* stop timer1 */
a1715bb7
MS
236 write_fn(read_fn(timer_baseaddr + TCSR1) & ~TCSR_ENT,
237 timer_baseaddr + TCSR1);
eedbdab9 238 /* start timer1 - up counting without interrupt */
a1715bb7 239 write_fn(TCSR_TINT|TCSR_ENT|TCSR_ARHT, timer_baseaddr + TCSR1);
519e9f41
MS
240
241 /* register timecounter - for ftrace support */
5955563a 242 init_xilinx_timecounter();
eedbdab9
MS
243 return 0;
244}
245
4bcd943e 246static void __init xilinx_timer_init(struct device_node *timer)
eedbdab9 247{
c1120542 248 struct clk *clk;
03fe0d3c 249 static int initialized;
5a26cd69 250 u32 irq;
eedbdab9 251 u32 timer_num = 1;
cfd4eaef 252
03fe0d3c
MS
253 if (initialized)
254 return;
255
256 initialized = 1;
257
cfd4eaef
MS
258 timer_baseaddr = of_iomap(timer, 0);
259 if (!timer_baseaddr) {
260 pr_err("ERROR: invalid timer base address\n");
261 BUG();
262 }
9e77dab6 263
a1715bb7
MS
264 write_fn = timer_write32;
265 read_fn = timer_read32;
266
267 write_fn(TCSR_MDT, timer_baseaddr + TCSR0);
268 if (!(read_fn(timer_baseaddr + TCSR0) & TCSR_MDT)) {
269 write_fn = timer_write32_be;
270 read_fn = timer_read32_be;
271 }
272
9d0ced00 273 irq = irq_of_parse_and_map(timer, 0);
cfd4eaef
MS
274
275 of_property_read_u32(timer, "xlnx,one-timer-only", &timer_num);
eedbdab9 276 if (timer_num) {
cfd4eaef 277 pr_emerg("Please enable two timers in HW\n");
eedbdab9
MS
278 BUG();
279 }
280
cfd4eaef 281 pr_info("%s: irq=%d\n", timer->full_name, irq);
eedbdab9 282
c1120542
MS
283 clk = of_clk_get(timer, 0);
284 if (IS_ERR(clk)) {
285 pr_err("ERROR: timer CCF input clock not found\n");
286 /* If there is clock-frequency property than use it */
287 of_property_read_u32(timer, "clock-frequency",
288 &timer_clock_freq);
289 } else {
290 timer_clock_freq = clk_get_rate(clk);
291 }
292
293 if (!timer_clock_freq) {
294 pr_err("ERROR: Using CPU clock frequency\n");
ccea0e6e 295 timer_clock_freq = cpuinfo.cpu_clock_freq;
c1120542 296 }
ccea0e6e
MS
297
298 freq_div_hz = timer_clock_freq / HZ;
eedbdab9
MS
299
300 setup_irq(irq, &timer_irqaction);
301#ifdef CONFIG_HEART_BEAT
79c157a3 302 microblaze_setup_heartbeat();
eedbdab9 303#endif
5955563a
MS
304 xilinx_clocksource_init();
305 xilinx_clockevent_init();
9c6f6f54 306
839396ab 307 sched_clock_register(xilinx_clock_read, 32, timer_clock_freq);
eedbdab9 308}
4bcd943e
MS
309
310CLOCKSOURCE_OF_DECLARE(xilinx_timer, "xlnx,xps-timer-1.00.a",
311 xilinx_timer_init);