2 * linux/arch/arm/kernel/smp_twd.c
4 * Copyright (C) 2002 ARM Ltd.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/clk.h>
14 #include <linux/cpufreq.h>
15 #include <linux/delay.h>
16 #include <linux/device.h>
17 #include <linux/err.h>
18 #include <linux/smp.h>
19 #include <linux/jiffies.h>
20 #include <linux/clockchips.h>
21 #include <linux/irq.h>
24 #include <asm/smp_twd.h>
25 #include <asm/localtimer.h>
26 #include <asm/hardware/gic.h>
28 /* set up by the platform code */
29 void __iomem
*twd_base
;
31 static struct clk
*twd_clk
;
32 static unsigned long twd_timer_rate
;
34 static struct clock_event_device __percpu
**twd_evt
;
36 static void twd_set_mode(enum clock_event_mode mode
,
37 struct clock_event_device
*clk
)
42 case CLOCK_EVT_MODE_PERIODIC
:
43 /* timer load already set up */
44 ctrl
= TWD_TIMER_CONTROL_ENABLE
| TWD_TIMER_CONTROL_IT_ENABLE
45 | TWD_TIMER_CONTROL_PERIODIC
;
46 __raw_writel(twd_timer_rate
/ HZ
, twd_base
+ TWD_TIMER_LOAD
);
48 case CLOCK_EVT_MODE_ONESHOT
:
49 /* period set, and timer enabled in 'next_event' hook */
50 ctrl
= TWD_TIMER_CONTROL_IT_ENABLE
| TWD_TIMER_CONTROL_ONESHOT
;
52 case CLOCK_EVT_MODE_UNUSED
:
53 case CLOCK_EVT_MODE_SHUTDOWN
:
58 __raw_writel(ctrl
, twd_base
+ TWD_TIMER_CONTROL
);
61 static int twd_set_next_event(unsigned long evt
,
62 struct clock_event_device
*unused
)
64 unsigned long ctrl
= __raw_readl(twd_base
+ TWD_TIMER_CONTROL
);
66 ctrl
|= TWD_TIMER_CONTROL_ENABLE
;
68 __raw_writel(evt
, twd_base
+ TWD_TIMER_COUNTER
);
69 __raw_writel(ctrl
, twd_base
+ TWD_TIMER_CONTROL
);
75 * local_timer_ack: checks for a local timer interrupt.
77 * If a local timer interrupt has occurred, acknowledge and return 1.
78 * Otherwise, return 0.
80 int twd_timer_ack(void)
82 if (__raw_readl(twd_base
+ TWD_TIMER_INTSTAT
)) {
83 __raw_writel(1, twd_base
+ TWD_TIMER_INTSTAT
);
90 void twd_timer_stop(struct clock_event_device
*clk
)
92 twd_set_mode(CLOCK_EVT_MODE_UNUSED
, clk
);
93 disable_percpu_irq(clk
->irq
);
96 #ifdef CONFIG_CPU_FREQ
99 * Updates clockevent frequency when the cpu frequency changes.
100 * Called on the cpu that is changing frequency with interrupts disabled.
102 static void twd_update_frequency(void *data
)
104 twd_timer_rate
= clk_get_rate(twd_clk
);
106 clockevents_update_freq(*__this_cpu_ptr(twd_evt
), twd_timer_rate
);
109 static int twd_cpufreq_transition(struct notifier_block
*nb
,
110 unsigned long state
, void *data
)
112 struct cpufreq_freqs
*freqs
= data
;
115 * The twd clock events must be reprogrammed to account for the new
116 * frequency. The timer is local to a cpu, so cross-call to the
119 if (state
== CPUFREQ_POSTCHANGE
|| state
== CPUFREQ_RESUMECHANGE
)
120 smp_call_function_single(freqs
->cpu
, twd_update_frequency
,
126 static struct notifier_block twd_cpufreq_nb
= {
127 .notifier_call
= twd_cpufreq_transition
,
130 static int twd_cpufreq_init(void)
132 if (twd_evt
&& *__this_cpu_ptr(twd_evt
) && !IS_ERR(twd_clk
))
133 return cpufreq_register_notifier(&twd_cpufreq_nb
,
134 CPUFREQ_TRANSITION_NOTIFIER
);
138 core_initcall(twd_cpufreq_init
);
142 static void __cpuinit
twd_calibrate_rate(void)
148 * If this is the first time round, we need to work out how fast
151 if (twd_timer_rate
== 0) {
152 printk(KERN_INFO
"Calibrating local timer... ");
154 /* Wait for a tick to start */
155 waitjiffies
= get_jiffies_64() + 1;
157 while (get_jiffies_64() < waitjiffies
)
160 /* OK, now the tick has started, let's get the timer going */
163 /* enable, no interrupt or reload */
164 __raw_writel(0x1, twd_base
+ TWD_TIMER_CONTROL
);
167 __raw_writel(0xFFFFFFFFU
, twd_base
+ TWD_TIMER_COUNTER
);
169 while (get_jiffies_64() < waitjiffies
)
172 count
= __raw_readl(twd_base
+ TWD_TIMER_COUNTER
);
174 twd_timer_rate
= (0xFFFFFFFFU
- count
) * (HZ
/ 5);
176 printk("%lu.%02luMHz.\n", twd_timer_rate
/ 1000000,
177 (twd_timer_rate
/ 10000) % 100);
181 static irqreturn_t
twd_handler(int irq
, void *dev_id
)
183 struct clock_event_device
*evt
= *(struct clock_event_device
**)dev_id
;
185 if (twd_timer_ack()) {
186 evt
->event_handler(evt
);
193 static struct clk
*twd_get_clock(void)
198 clk
= clk_get_sys("smp_twd", NULL
);
200 pr_err("smp_twd: clock not found: %d\n", (int)PTR_ERR(clk
));
204 err
= clk_prepare(clk
);
206 pr_err("smp_twd: clock failed to prepare: %d\n", err
);
211 err
= clk_enable(clk
);
213 pr_err("smp_twd: clock failed to enable: %d\n", err
);
223 * Setup the local clock events for a CPU.
225 void __cpuinit
twd_timer_setup(struct clock_event_device
*clk
)
227 struct clock_event_device
**this_cpu_clk
;
232 twd_evt
= alloc_percpu(struct clock_event_device
*);
234 pr_err("twd: can't allocate memory\n");
238 err
= request_percpu_irq(clk
->irq
, twd_handler
,
241 pr_err("twd: can't register interrupt %d (%d)\n",
248 twd_clk
= twd_get_clock();
250 if (!IS_ERR_OR_NULL(twd_clk
))
251 twd_timer_rate
= clk_get_rate(twd_clk
);
253 twd_calibrate_rate();
255 __raw_writel(0, twd_base
+ TWD_TIMER_CONTROL
);
257 clk
->name
= "local_timer";
258 clk
->features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
|
259 CLOCK_EVT_FEAT_C3STOP
;
261 clk
->set_mode
= twd_set_mode
;
262 clk
->set_next_event
= twd_set_next_event
;
264 this_cpu_clk
= __this_cpu_ptr(twd_evt
);
267 clockevents_config_and_register(clk
, twd_timer_rate
,
269 enable_percpu_irq(clk
->irq
, 0);