2 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2007-2009 PetaLogix
4 * Copyright (C) 2006 Atmark Techno, Inc.
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
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>
25 #include <linux/bug.h>
26 #include <asm/cpuinfo.h>
27 #include <asm/setup.h>
30 #include <asm/system.h>
31 #include <linux/cnt32_to_63.h>
33 #ifdef CONFIG_SELFMOD_TIMER
34 #include <asm/selfmod.h>
35 #define TIMER_BASE BARRIER_BASE_ADDR
37 static unsigned int timer_baseaddr
;
38 #define TIMER_BASE timer_baseaddr
41 static unsigned int freq_div_hz
;
42 static unsigned int timer_clock_freq
;
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)
63 static inline void microblaze_timer0_stop(void)
65 out_be32(TIMER_BASE
+ TCSR0
, in_be32(TIMER_BASE
+ TCSR0
) & ~TCSR_ENT
);
68 static inline void microblaze_timer0_start_periodic(unsigned long load_val
)
72 out_be32(TIMER_BASE
+ TLR0
, load_val
); /* loading value to timer reg */
74 /* load the initial value */
75 out_be32(TIMER_BASE
+ TCSR0
, TCSR_LOAD
);
77 /* see timer data sheet for detail
78 * !ENALL - don't enable 'em all
80 * TINT - clear interrupt status
81 * ENT- enable timer itself
82 * EINT - enable interrupt
83 * !LOAD - clear the bit to let go
85 * !CAPT - no external trigger
86 * !GENT - no external signal
87 * UDT - set the timer as down counter
88 * !MDT0 - generate mode
90 out_be32(TIMER_BASE
+ TCSR0
,
91 TCSR_TINT
|TCSR_ENIT
|TCSR_ENT
|TCSR_ARHT
|TCSR_UDT
);
94 static inline void microblaze_timer0_start_oneshot(unsigned long load_val
)
98 out_be32(TIMER_BASE
+ TLR0
, load_val
); /* loading value to timer reg */
100 /* load the initial value */
101 out_be32(TIMER_BASE
+ TCSR0
, TCSR_LOAD
);
103 out_be32(TIMER_BASE
+ TCSR0
,
104 TCSR_TINT
|TCSR_ENIT
|TCSR_ENT
|TCSR_ARHT
|TCSR_UDT
);
107 static int microblaze_timer_set_next_event(unsigned long delta
,
108 struct clock_event_device
*dev
)
110 pr_debug("%s: next event, delta %x\n", __func__
, (u32
)delta
);
111 microblaze_timer0_start_oneshot(delta
);
115 static void microblaze_timer_set_mode(enum clock_event_mode mode
,
116 struct clock_event_device
*evt
)
119 case CLOCK_EVT_MODE_PERIODIC
:
120 printk(KERN_INFO
"%s: periodic\n", __func__
);
121 microblaze_timer0_start_periodic(freq_div_hz
);
123 case CLOCK_EVT_MODE_ONESHOT
:
124 printk(KERN_INFO
"%s: oneshot\n", __func__
);
126 case CLOCK_EVT_MODE_UNUSED
:
127 printk(KERN_INFO
"%s: unused\n", __func__
);
129 case CLOCK_EVT_MODE_SHUTDOWN
:
130 printk(KERN_INFO
"%s: shutdown\n", __func__
);
131 microblaze_timer0_stop();
133 case CLOCK_EVT_MODE_RESUME
:
134 printk(KERN_INFO
"%s: resume\n", __func__
);
139 static struct clock_event_device clockevent_microblaze_timer
= {
140 .name
= "microblaze_clockevent",
141 .features
= CLOCK_EVT_FEAT_ONESHOT
| CLOCK_EVT_FEAT_PERIODIC
,
144 .set_next_event
= microblaze_timer_set_next_event
,
145 .set_mode
= microblaze_timer_set_mode
,
148 static inline void timer_ack(void)
150 out_be32(TIMER_BASE
+ TCSR0
, in_be32(TIMER_BASE
+ TCSR0
));
153 static irqreturn_t
timer_interrupt(int irq
, void *dev_id
)
155 struct clock_event_device
*evt
= &clockevent_microblaze_timer
;
156 #ifdef CONFIG_HEART_BEAT
160 evt
->event_handler(evt
);
164 static struct irqaction timer_irqaction
= {
165 .handler
= timer_interrupt
,
166 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
168 .dev_id
= &clockevent_microblaze_timer
,
171 static __init
void microblaze_clockevent_init(void)
173 clockevent_microblaze_timer
.mult
=
174 div_sc(timer_clock_freq
, NSEC_PER_SEC
,
175 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
);
184 static cycle_t
microblaze_read(struct clocksource
*cs
)
186 /* reading actual value of timer 1 */
187 return (cycle_t
) (in_be32(TIMER_BASE
+ TCR1
));
190 static struct timecounter microblaze_tc
= {
194 static cycle_t
microblaze_cc_read(const struct cyclecounter
*cc
)
196 return microblaze_read(NULL
);
199 static struct cyclecounter microblaze_cc
= {
200 .read
= microblaze_cc_read
,
201 .mask
= CLOCKSOURCE_MASK(32),
205 static int __init
init_microblaze_timecounter(void)
207 microblaze_cc
.mult
= div_sc(timer_clock_freq
, NSEC_PER_SEC
,
208 microblaze_cc
.shift
);
210 timecounter_init(µblaze_tc
, µblaze_cc
, sched_clock());
215 static struct clocksource clocksource_microblaze
= {
216 .name
= "microblaze_clocksource",
218 .read
= microblaze_read
,
219 .mask
= CLOCKSOURCE_MASK(32),
220 .shift
= 8, /* I can shift it */
221 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
224 static int __init
microblaze_clocksource_init(void)
226 clocksource_microblaze
.mult
=
227 clocksource_hz2mult(timer_clock_freq
,
228 clocksource_microblaze
.shift
);
229 if (clocksource_register(&clocksource_microblaze
))
230 panic("failed to register clocksource");
233 out_be32(TIMER_BASE
+ TCSR1
, in_be32(TIMER_BASE
+ TCSR1
) & ~TCSR_ENT
);
234 /* start timer1 - up counting without interrupt */
235 out_be32(TIMER_BASE
+ TCSR1
, TCSR_TINT
|TCSR_ENT
|TCSR_ARHT
);
237 /* register timecounter - for ftrace support */
238 init_microblaze_timecounter();
243 * We have to protect accesses before timer initialization
244 * and return 0 for sched_clock function below.
246 static int timer_initialized
;
248 void __init
time_init(void)
252 struct device_node
*timer
= NULL
;
254 #ifdef CONFIG_SELFMOD_TIMER
255 unsigned int timer_baseaddr
= 0;
257 (int)µblaze_read
,
258 (int)&timer_interrupt
,
259 (int)µblaze_clocksource_init
,
260 (int)µblaze_timer_set_mode
,
261 (int)µblaze_timer_set_next_event
,
265 const char * const timer_list
[] = {
266 "xlnx,xps-timer-1.00.a",
270 for (i
= 0; timer_list
[i
] != NULL
; i
++) {
271 timer
= of_find_compatible_node(NULL
, NULL
, timer_list
[i
]);
277 timer_baseaddr
= be32_to_cpup(of_get_property(timer
, "reg", NULL
));
278 timer_baseaddr
= (unsigned long) ioremap(timer_baseaddr
, PAGE_SIZE
);
279 irq
= be32_to_cpup(of_get_property(timer
, "interrupts", NULL
));
280 timer_num
= be32_to_cpup(of_get_property(timer
,
281 "xlnx,one-timer-only", NULL
));
283 eprintk(KERN_EMERG
"Please enable two timers in HW\n");
287 #ifdef CONFIG_SELFMOD_TIMER
288 selfmod_function((int *) arr_func
, timer_baseaddr
);
290 printk(KERN_INFO
"%s #0 at 0x%08x, irq=%d\n",
291 timer_list
[i
], timer_baseaddr
, irq
);
293 /* If there is clock-frequency property than use it */
294 prop
= of_get_property(timer
, "clock-frequency", NULL
);
296 timer_clock_freq
= be32_to_cpup(prop
);
298 timer_clock_freq
= cpuinfo
.cpu_clock_freq
;
300 freq_div_hz
= timer_clock_freq
/ HZ
;
302 setup_irq(irq
, &timer_irqaction
);
303 #ifdef CONFIG_HEART_BEAT
306 microblaze_clocksource_init();
307 microblaze_clockevent_init();
308 timer_initialized
= 1;
311 unsigned long long notrace
sched_clock(void)
313 if (timer_initialized
) {
314 struct clocksource
*cs
= &clocksource_microblaze
;
315 cycle_t cyc
= cnt32_to_63(cs
->read(NULL
));
316 return clocksource_cyc2ns(cyc
, cs
->mult
, cs
->shift
);