blob: 78b82f30bdd5100153671e33de0bc2abc25235ba [file] [log] [blame]
Michal Simekeedbdab2009-03-27 14:25:49 +01001/*
2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/param.h>
14#include <linux/interrupt.h>
15#include <linux/profile.h>
16#include <linux/irq.h>
17#include <linux/delay.h>
18#include <linux/sched.h>
19#include <linux/spinlock.h>
20#include <linux/err.h>
21#include <linux/clk.h>
22#include <linux/clocksource.h>
23#include <linux/clockchips.h>
24#include <linux/io.h>
John Williams892ee922009-07-29 22:08:40 +100025#include <linux/bug.h>
Michal Simekeedbdab2009-03-27 14:25:49 +010026#include <asm/cpuinfo.h>
27#include <asm/setup.h>
28#include <asm/prom.h>
29#include <asm/irq.h>
30#include <asm/system.h>
Michal Simekc8f77432010-06-10 16:04:05 +020031#include <linux/cnt32_to_63.h>
Michal Simekeedbdab2009-03-27 14:25:49 +010032
33#ifdef CONFIG_SELFMOD_TIMER
34#include <asm/selfmod.h>
35#define TIMER_BASE BARRIER_BASE_ADDR
36#else
37static unsigned int timer_baseaddr;
38#define TIMER_BASE timer_baseaddr
39#endif
40
Michal Simek29e3dbb2011-02-07 11:33:47 +010041static unsigned int freq_div_hz;
42static unsigned int timer_clock_freq;
Michal Simekccea0e62010-10-07 17:39:21 +100043
Michal Simekeedbdab2009-03-27 14:25:49 +010044#define TCSR0 (0x00)
45#define TLR0 (0x04)
46#define TCR0 (0x08)
47#define TCSR1 (0x10)
48#define TLR1 (0x14)
49#define TCR1 (0x18)
50
51#define TCSR_MDT (1<<0)
52#define TCSR_UDT (1<<1)
53#define TCSR_GENT (1<<2)
54#define TCSR_CAPT (1<<3)
55#define TCSR_ARHT (1<<4)
56#define TCSR_LOAD (1<<5)
57#define TCSR_ENIT (1<<6)
58#define TCSR_ENT (1<<7)
59#define TCSR_TINT (1<<8)
60#define TCSR_PWMA (1<<9)
61#define TCSR_ENALL (1<<10)
62
63static inline void microblaze_timer0_stop(void)
64{
65 out_be32(TIMER_BASE + TCSR0, in_be32(TIMER_BASE + TCSR0) & ~TCSR_ENT);
66}
67
68static inline void microblaze_timer0_start_periodic(unsigned long load_val)
69{
70 if (!load_val)
71 load_val = 1;
72 out_be32(TIMER_BASE + TLR0, load_val); /* loading value to timer reg */
73
74 /* load the initial value */
75 out_be32(TIMER_BASE + TCSR0, TCSR_LOAD);
76
77 /* see timer data sheet for detail
78 * !ENALL - don't enable 'em all
79 * !PWMA - disable pwm
80 * TINT - clear interrupt status
81 * ENT- enable timer itself
Michal Simekf7f47862011-04-05 15:49:22 +020082 * ENIT - enable interrupt
Michal Simekeedbdab2009-03-27 14:25:49 +010083 * !LOAD - clear the bit to let go
84 * ARHT - auto reload
85 * !CAPT - no external trigger
86 * !GENT - no external signal
87 * UDT - set the timer as down counter
88 * !MDT0 - generate mode
89 */
90 out_be32(TIMER_BASE + TCSR0,
91 TCSR_TINT|TCSR_ENIT|TCSR_ENT|TCSR_ARHT|TCSR_UDT);
92}
93
94static inline void microblaze_timer0_start_oneshot(unsigned long load_val)
95{
96 if (!load_val)
97 load_val = 1;
98 out_be32(TIMER_BASE + TLR0, load_val); /* loading value to timer reg */
99
100 /* load the initial value */
101 out_be32(TIMER_BASE + TCSR0, TCSR_LOAD);
102
103 out_be32(TIMER_BASE + TCSR0,
104 TCSR_TINT|TCSR_ENIT|TCSR_ENT|TCSR_ARHT|TCSR_UDT);
105}
106
107static int microblaze_timer_set_next_event(unsigned long delta,
108 struct clock_event_device *dev)
109{
110 pr_debug("%s: next event, delta %x\n", __func__, (u32)delta);
111 microblaze_timer0_start_oneshot(delta);
112 return 0;
113}
114
115static void microblaze_timer_set_mode(enum clock_event_mode mode,
116 struct clock_event_device *evt)
117{
118 switch (mode) {
119 case CLOCK_EVT_MODE_PERIODIC:
120 printk(KERN_INFO "%s: periodic\n", __func__);
Michal Simekccea0e62010-10-07 17:39:21 +1000121 microblaze_timer0_start_periodic(freq_div_hz);
Michal Simekeedbdab2009-03-27 14:25:49 +0100122 break;
123 case CLOCK_EVT_MODE_ONESHOT:
124 printk(KERN_INFO "%s: oneshot\n", __func__);
125 break;
126 case CLOCK_EVT_MODE_UNUSED:
127 printk(KERN_INFO "%s: unused\n", __func__);
128 break;
129 case CLOCK_EVT_MODE_SHUTDOWN:
130 printk(KERN_INFO "%s: shutdown\n", __func__);
131 microblaze_timer0_stop();
132 break;
133 case CLOCK_EVT_MODE_RESUME:
134 printk(KERN_INFO "%s: resume\n", __func__);
135 break;
136 }
137}
138
139static struct clock_event_device clockevent_microblaze_timer = {
140 .name = "microblaze_clockevent",
141 .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC,
Michal Simekc8f77432010-06-10 16:04:05 +0200142 .shift = 8,
Michal Simekeedbdab2009-03-27 14:25:49 +0100143 .rating = 300,
144 .set_next_event = microblaze_timer_set_next_event,
145 .set_mode = microblaze_timer_set_mode,
146};
147
148static inline void timer_ack(void)
149{
150 out_be32(TIMER_BASE + TCSR0, in_be32(TIMER_BASE + TCSR0));
151}
152
153static irqreturn_t timer_interrupt(int irq, void *dev_id)
154{
155 struct clock_event_device *evt = &clockevent_microblaze_timer;
156#ifdef CONFIG_HEART_BEAT
157 heartbeat();
158#endif
159 timer_ack();
160 evt->event_handler(evt);
161 return IRQ_HANDLED;
162}
163
164static struct irqaction timer_irqaction = {
165 .handler = timer_interrupt,
166 .flags = IRQF_DISABLED | IRQF_TIMER,
167 .name = "timer",
168 .dev_id = &clockevent_microblaze_timer,
169};
170
171static __init void microblaze_clockevent_init(void)
172{
173 clockevent_microblaze_timer.mult =
Michal Simekccea0e62010-10-07 17:39:21 +1000174 div_sc(timer_clock_freq, NSEC_PER_SEC,
Michal Simekeedbdab2009-03-27 14:25:49 +0100175 clockevent_microblaze_timer.shift);
176 clockevent_microblaze_timer.max_delta_ns =
177 clockevent_delta2ns((u32)~0, &clockevent_microblaze_timer);
178 clockevent_microblaze_timer.min_delta_ns =
179 clockevent_delta2ns(1, &clockevent_microblaze_timer);
180 clockevent_microblaze_timer.cpumask = cpumask_of(0);
181 clockevents_register_device(&clockevent_microblaze_timer);
182}
183
Coly Lif57f2fe2009-04-23 03:05:31 +0800184static cycle_t microblaze_read(struct clocksource *cs)
Michal Simekeedbdab2009-03-27 14:25:49 +0100185{
186 /* reading actual value of timer 1 */
187 return (cycle_t) (in_be32(TIMER_BASE + TCR1));
188}
189
Michal Simek519e9f42009-11-06 12:31:00 +0100190static struct timecounter microblaze_tc = {
191 .cc = NULL,
192};
193
194static cycle_t microblaze_cc_read(const struct cyclecounter *cc)
195{
196 return microblaze_read(NULL);
197}
198
199static struct cyclecounter microblaze_cc = {
200 .read = microblaze_cc_read,
201 .mask = CLOCKSOURCE_MASK(32),
Michal Simekc8f77432010-06-10 16:04:05 +0200202 .shift = 8,
Michal Simek519e9f42009-11-06 12:31:00 +0100203};
204
Michal Simek29e3dbb2011-02-07 11:33:47 +0100205static int __init init_microblaze_timecounter(void)
Michal Simek519e9f42009-11-06 12:31:00 +0100206{
Michal Simekccea0e62010-10-07 17:39:21 +1000207 microblaze_cc.mult = div_sc(timer_clock_freq, NSEC_PER_SEC,
Michal Simek519e9f42009-11-06 12:31:00 +0100208 microblaze_cc.shift);
209
210 timecounter_init(&microblaze_tc, &microblaze_cc, sched_clock());
211
212 return 0;
213}
214
Michal Simekeedbdab2009-03-27 14:25:49 +0100215static struct clocksource clocksource_microblaze = {
216 .name = "microblaze_clocksource",
217 .rating = 300,
218 .read = microblaze_read,
219 .mask = CLOCKSOURCE_MASK(32),
Michal Simekeedbdab2009-03-27 14:25:49 +0100220 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
221};
222
223static int __init microblaze_clocksource_init(void)
224{
John Stultzb8f39f72010-04-26 20:22:23 -0700225 if (clocksource_register_hz(&clocksource_microblaze, timer_clock_freq))
Michal Simekeedbdab2009-03-27 14:25:49 +0100226 panic("failed to register clocksource");
227
228 /* stop timer1 */
229 out_be32(TIMER_BASE + TCSR1, in_be32(TIMER_BASE + TCSR1) & ~TCSR_ENT);
230 /* start timer1 - up counting without interrupt */
231 out_be32(TIMER_BASE + TCSR1, TCSR_TINT|TCSR_ENT|TCSR_ARHT);
Michal Simek519e9f42009-11-06 12:31:00 +0100232
233 /* register timecounter - for ftrace support */
234 init_microblaze_timecounter();
Michal Simekeedbdab2009-03-27 14:25:49 +0100235 return 0;
236}
237
Michal Simek6f34b082010-04-16 09:50:13 +0200238/*
239 * We have to protect accesses before timer initialization
240 * and return 0 for sched_clock function below.
241 */
242static int timer_initialized;
243
Michal Simekeedbdab2009-03-27 14:25:49 +0100244void __init time_init(void)
245{
Michal Simek5a26cd62011-12-09 12:26:16 +0100246 u32 irq;
Michal Simekeedbdab2009-03-27 14:25:49 +0100247 u32 timer_num = 1;
248 struct device_node *timer = NULL;
Michal Simekccea0e62010-10-07 17:39:21 +1000249 const void *prop;
Michal Simekeedbdab2009-03-27 14:25:49 +0100250#ifdef CONFIG_SELFMOD_TIMER
251 unsigned int timer_baseaddr = 0;
252 int arr_func[] = {
253 (int)&microblaze_read,
254 (int)&timer_interrupt,
255 (int)&microblaze_clocksource_init,
256 (int)&microblaze_timer_set_mode,
257 (int)&microblaze_timer_set_next_event,
258 0
259 };
260#endif
Michal Simek5a26cd62011-12-09 12:26:16 +0100261 timer = of_find_compatible_node(NULL, NULL, "xlnx,xps-timer-1.00.a");
John Williams892ee922009-07-29 22:08:40 +1000262 BUG_ON(!timer);
Michal Simekeedbdab2009-03-27 14:25:49 +0100263
Michal Simek02b08042010-09-28 16:04:14 +1000264 timer_baseaddr = be32_to_cpup(of_get_property(timer, "reg", NULL));
Michal Simekeedbdab2009-03-27 14:25:49 +0100265 timer_baseaddr = (unsigned long) ioremap(timer_baseaddr, PAGE_SIZE);
Michal Simek9d0ced02011-12-09 10:46:52 +0100266 irq = irq_of_parse_and_map(timer, 0);
Michal Simek02b08042010-09-28 16:04:14 +1000267 timer_num = be32_to_cpup(of_get_property(timer,
268 "xlnx,one-timer-only", NULL));
Michal Simekeedbdab2009-03-27 14:25:49 +0100269 if (timer_num) {
Michal Simekb6d5b282011-11-10 13:38:54 +0100270 printk(KERN_EMERG "Please enable two timers in HW\n");
Michal Simekeedbdab2009-03-27 14:25:49 +0100271 BUG();
272 }
273
274#ifdef CONFIG_SELFMOD_TIMER
275 selfmod_function((int *) arr_func, timer_baseaddr);
276#endif
Michal Simek5a26cd62011-12-09 12:26:16 +0100277 printk(KERN_INFO "XPS timer #0 at 0x%08x, irq=%d\n",
278 timer_baseaddr, irq);
Michal Simekeedbdab2009-03-27 14:25:49 +0100279
Michal Simekccea0e62010-10-07 17:39:21 +1000280 /* If there is clock-frequency property than use it */
281 prop = of_get_property(timer, "clock-frequency", NULL);
282 if (prop)
283 timer_clock_freq = be32_to_cpup(prop);
284 else
285 timer_clock_freq = cpuinfo.cpu_clock_freq;
286
287 freq_div_hz = timer_clock_freq / HZ;
Michal Simekeedbdab2009-03-27 14:25:49 +0100288
289 setup_irq(irq, &timer_irqaction);
290#ifdef CONFIG_HEART_BEAT
291 setup_heartbeat();
292#endif
293 microblaze_clocksource_init();
294 microblaze_clockevent_init();
Michal Simek6f34b082010-04-16 09:50:13 +0200295 timer_initialized = 1;
296}
297
298unsigned long long notrace sched_clock(void)
299{
300 if (timer_initialized) {
301 struct clocksource *cs = &clocksource_microblaze;
Michal Simek9c6f6f52011-09-23 09:52:24 +0200302
303 cycle_t cyc = cnt32_to_63(cs->read(NULL)) & LLONG_MAX;
Michal Simek6f34b082010-04-16 09:50:13 +0200304 return clocksource_cyc2ns(cyc, cs->mult, cs->shift);
305 }
306 return 0;
Michal Simekeedbdab2009-03-27 14:25:49 +0100307}