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>
32 #ifdef CONFIG_SELFMOD_TIMER
33 #include <asm/selfmod.h>
34 #define TIMER_BASE BARRIER_BASE_ADDR
36 static unsigned int timer_baseaddr
;
37 #define TIMER_BASE timer_baseaddr
47 #define TCSR_MDT (1<<0)
48 #define TCSR_UDT (1<<1)
49 #define TCSR_GENT (1<<2)
50 #define TCSR_CAPT (1<<3)
51 #define TCSR_ARHT (1<<4)
52 #define TCSR_LOAD (1<<5)
53 #define TCSR_ENIT (1<<6)
54 #define TCSR_ENT (1<<7)
55 #define TCSR_TINT (1<<8)
56 #define TCSR_PWMA (1<<9)
57 #define TCSR_ENALL (1<<10)
59 static inline void microblaze_timer0_stop(void)
61 out_be32(TIMER_BASE
+ TCSR0
, in_be32(TIMER_BASE
+ TCSR0
) & ~TCSR_ENT
);
64 static inline void microblaze_timer0_start_periodic(unsigned long load_val
)
68 out_be32(TIMER_BASE
+ TLR0
, load_val
); /* loading value to timer reg */
70 /* load the initial value */
71 out_be32(TIMER_BASE
+ TCSR0
, TCSR_LOAD
);
73 /* see timer data sheet for detail
74 * !ENALL - don't enable 'em all
76 * TINT - clear interrupt status
77 * ENT- enable timer itself
78 * EINT - enable interrupt
79 * !LOAD - clear the bit to let go
81 * !CAPT - no external trigger
82 * !GENT - no external signal
83 * UDT - set the timer as down counter
84 * !MDT0 - generate mode
86 out_be32(TIMER_BASE
+ TCSR0
,
87 TCSR_TINT
|TCSR_ENIT
|TCSR_ENT
|TCSR_ARHT
|TCSR_UDT
);
90 static inline void microblaze_timer0_start_oneshot(unsigned long load_val
)
94 out_be32(TIMER_BASE
+ TLR0
, load_val
); /* loading value to timer reg */
96 /* load the initial value */
97 out_be32(TIMER_BASE
+ TCSR0
, TCSR_LOAD
);
99 out_be32(TIMER_BASE
+ TCSR0
,
100 TCSR_TINT
|TCSR_ENIT
|TCSR_ENT
|TCSR_ARHT
|TCSR_UDT
);
103 static int microblaze_timer_set_next_event(unsigned long delta
,
104 struct clock_event_device
*dev
)
106 pr_debug("%s: next event, delta %x\n", __func__
, (u32
)delta
);
107 microblaze_timer0_start_oneshot(delta
);
111 static void microblaze_timer_set_mode(enum clock_event_mode mode
,
112 struct clock_event_device
*evt
)
115 case CLOCK_EVT_MODE_PERIODIC
:
116 printk(KERN_INFO
"%s: periodic\n", __func__
);
117 microblaze_timer0_start_periodic(cpuinfo
.freq_div_hz
);
119 case CLOCK_EVT_MODE_ONESHOT
:
120 printk(KERN_INFO
"%s: oneshot\n", __func__
);
122 case CLOCK_EVT_MODE_UNUSED
:
123 printk(KERN_INFO
"%s: unused\n", __func__
);
125 case CLOCK_EVT_MODE_SHUTDOWN
:
126 printk(KERN_INFO
"%s: shutdown\n", __func__
);
127 microblaze_timer0_stop();
129 case CLOCK_EVT_MODE_RESUME
:
130 printk(KERN_INFO
"%s: resume\n", __func__
);
135 static struct clock_event_device clockevent_microblaze_timer
= {
136 .name
= "microblaze_clockevent",
137 .features
= CLOCK_EVT_FEAT_ONESHOT
| CLOCK_EVT_FEAT_PERIODIC
,
140 .set_next_event
= microblaze_timer_set_next_event
,
141 .set_mode
= microblaze_timer_set_mode
,
144 static inline void timer_ack(void)
146 out_be32(TIMER_BASE
+ TCSR0
, in_be32(TIMER_BASE
+ TCSR0
));
149 static irqreturn_t
timer_interrupt(int irq
, void *dev_id
)
151 struct clock_event_device
*evt
= &clockevent_microblaze_timer
;
152 #ifdef CONFIG_HEART_BEAT
156 evt
->event_handler(evt
);
160 static struct irqaction timer_irqaction
= {
161 .handler
= timer_interrupt
,
162 .flags
= IRQF_DISABLED
| IRQF_TIMER
,
164 .dev_id
= &clockevent_microblaze_timer
,
167 static __init
void microblaze_clockevent_init(void)
169 clockevent_microblaze_timer
.mult
=
170 div_sc(cpuinfo
.cpu_clock_freq
, NSEC_PER_SEC
,
171 clockevent_microblaze_timer
.shift
);
172 clockevent_microblaze_timer
.max_delta_ns
=
173 clockevent_delta2ns((u32
)~0, &clockevent_microblaze_timer
);
174 clockevent_microblaze_timer
.min_delta_ns
=
175 clockevent_delta2ns(1, &clockevent_microblaze_timer
);
176 clockevent_microblaze_timer
.cpumask
= cpumask_of(0);
177 clockevents_register_device(&clockevent_microblaze_timer
);
180 static cycle_t
microblaze_read(struct clocksource
*cs
)
182 /* reading actual value of timer 1 */
183 return (cycle_t
) (in_be32(TIMER_BASE
+ TCR1
));
186 static struct timecounter microblaze_tc
= {
190 static cycle_t
microblaze_cc_read(const struct cyclecounter
*cc
)
192 return microblaze_read(NULL
);
195 static struct cyclecounter microblaze_cc
= {
196 .read
= microblaze_cc_read
,
197 .mask
= CLOCKSOURCE_MASK(32),
201 int __init
init_microblaze_timecounter(void)
203 microblaze_cc
.mult
= div_sc(cpuinfo
.cpu_clock_freq
, NSEC_PER_SEC
,
204 microblaze_cc
.shift
);
206 timecounter_init(µblaze_tc
, µblaze_cc
, sched_clock());
211 static struct clocksource clocksource_microblaze
= {
212 .name
= "microblaze_clocksource",
214 .read
= microblaze_read
,
215 .mask
= CLOCKSOURCE_MASK(32),
216 .shift
= 24, /* I can shift it */
217 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
220 static int __init
microblaze_clocksource_init(void)
222 clocksource_microblaze
.mult
=
223 clocksource_hz2mult(cpuinfo
.cpu_clock_freq
,
224 clocksource_microblaze
.shift
);
225 if (clocksource_register(&clocksource_microblaze
))
226 panic("failed to register clocksource");
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
);
233 /* register timecounter - for ftrace support */
234 init_microblaze_timecounter();
238 void __init
time_init(void)
242 struct device_node
*timer
= NULL
;
243 #ifdef CONFIG_SELFMOD_TIMER
244 unsigned int timer_baseaddr
= 0;
246 (int)µblaze_read
,
247 (int)&timer_interrupt
,
248 (int)µblaze_clocksource_init
,
249 (int)µblaze_timer_set_mode
,
250 (int)µblaze_timer_set_next_event
,
254 char *timer_list
[] = {
255 "xlnx,xps-timer-1.00.a",
256 "xlnx,opb-timer-1.00.b",
257 "xlnx,opb-timer-1.00.a",
261 for (i
= 0; timer_list
[i
] != NULL
; i
++) {
262 timer
= of_find_compatible_node(NULL
, NULL
, timer_list
[i
]);
268 timer_baseaddr
= *(int *) of_get_property(timer
, "reg", NULL
);
269 timer_baseaddr
= (unsigned long) ioremap(timer_baseaddr
, PAGE_SIZE
);
270 irq
= *(int *) of_get_property(timer
, "interrupts", NULL
);
272 *(int *) of_get_property(timer
, "xlnx,one-timer-only", NULL
);
274 printk(KERN_EMERG
"Please enable two timers in HW\n");
278 #ifdef CONFIG_SELFMOD_TIMER
279 selfmod_function((int *) arr_func
, timer_baseaddr
);
281 printk(KERN_INFO
"%s #0 at 0x%08x, irq=%d\n",
282 timer_list
[i
], timer_baseaddr
, irq
);
284 cpuinfo
.freq_div_hz
= cpuinfo
.cpu_clock_freq
/ HZ
;
286 setup_irq(irq
, &timer_irqaction
);
287 #ifdef CONFIG_HEART_BEAT
290 microblaze_clocksource_init();
291 microblaze_clockevent_init();