2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
9 #include <linux/clockchips.h>
10 #include <linux/cpu.h>
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/irqchip/mips-gic.h>
14 #include <linux/notifier.h>
15 #include <linux/of_irq.h>
16 #include <linux/percpu.h>
17 #include <linux/smp.h>
18 #include <linux/time.h>
20 static DEFINE_PER_CPU(struct clock_event_device
, gic_clockevent_device
);
21 static int gic_timer_irq
;
22 static unsigned int gic_frequency
;
24 static int gic_next_event(unsigned long delta
, struct clock_event_device
*evt
)
29 cnt
= gic_read_count();
31 gic_write_cpu_compare(cnt
, cpumask_first(evt
->cpumask
));
32 res
= ((int)(gic_read_count() - cnt
) >= 0) ? -ETIME
: 0;
36 static irqreturn_t
gic_compare_interrupt(int irq
, void *dev_id
)
38 struct clock_event_device
*cd
= dev_id
;
40 gic_write_compare(gic_read_compare());
41 cd
->event_handler(cd
);
45 struct irqaction gic_compare_irqaction
= {
46 .handler
= gic_compare_interrupt
,
47 .percpu_dev_id
= &gic_clockevent_device
,
48 .flags
= IRQF_PERCPU
| IRQF_TIMER
,
52 static void gic_clockevent_cpu_init(unsigned int cpu
,
53 struct clock_event_device
*cd
)
55 cd
->name
= "MIPS GIC";
56 cd
->features
= CLOCK_EVT_FEAT_ONESHOT
|
57 CLOCK_EVT_FEAT_C3STOP
;
60 cd
->irq
= gic_timer_irq
;
61 cd
->cpumask
= cpumask_of(cpu
);
62 cd
->set_next_event
= gic_next_event
;
64 clockevents_config_and_register(cd
, gic_frequency
, 0x300, 0x7fffffff);
66 enable_percpu_irq(gic_timer_irq
, IRQ_TYPE_NONE
);
69 static void gic_clockevent_cpu_exit(struct clock_event_device
*cd
)
71 disable_percpu_irq(gic_timer_irq
);
74 static void gic_update_frequency(void *data
)
76 unsigned long rate
= (unsigned long)data
;
78 clockevents_update_freq(this_cpu_ptr(&gic_clockevent_device
), rate
);
81 static int gic_starting_cpu(unsigned int cpu
)
83 gic_clockevent_cpu_init(cpu
, this_cpu_ptr(&gic_clockevent_device
));
87 static int gic_clk_notifier(struct notifier_block
*nb
, unsigned long action
,
90 struct clk_notifier_data
*cnd
= data
;
92 if (action
== POST_RATE_CHANGE
)
93 on_each_cpu(gic_update_frequency
, (void *)cnd
->new_rate
, 1);
98 static int gic_dying_cpu(unsigned int cpu
)
100 gic_clockevent_cpu_exit(this_cpu_ptr(&gic_clockevent_device
));
104 static struct notifier_block gic_clk_nb
= {
105 .notifier_call
= gic_clk_notifier
,
108 static int gic_clockevent_init(void)
112 if (!cpu_has_counter
|| !gic_frequency
)
115 ret
= setup_percpu_irq(gic_timer_irq
, &gic_compare_irqaction
);
119 cpuhp_setup_state(CPUHP_AP_MIPS_GIC_TIMER_STARTING
,
120 "AP_MIPS_GIC_TIMER_STARTING", gic_starting_cpu
,
125 static cycle_t
gic_hpt_read(struct clocksource
*cs
)
127 return gic_read_count();
130 static struct clocksource gic_clocksource
= {
132 .read
= gic_hpt_read
,
133 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
134 .archdata
= { .vdso_clock_mode
= VDSO_CLOCK_GIC
},
137 static int __init
__gic_clocksource_init(void)
141 /* Set clocksource mask. */
142 gic_clocksource
.mask
= CLOCKSOURCE_MASK(gic_get_count_width());
144 /* Calculate a somewhat reasonable rating value. */
145 gic_clocksource
.rating
= 200 + gic_frequency
/ 10000000;
147 ret
= clocksource_register_hz(&gic_clocksource
, gic_frequency
);
149 pr_warn("GIC: Unable to register clocksource\n");
154 void __init
gic_clocksource_init(unsigned int frequency
)
156 gic_frequency
= frequency
;
157 gic_timer_irq
= MIPS_GIC_IRQ_BASE
+
158 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_COMPARE
);
160 __gic_clocksource_init();
161 gic_clockevent_init();
163 /* And finally start the counter */
167 static int __init
gic_clocksource_of_init(struct device_node
*node
)
172 if (!gic_present
|| !node
->parent
||
173 !of_device_is_compatible(node
->parent
, "mti,gic")) {
174 pr_warn("No DT definition for the mips gic driver");
178 clk
= of_clk_get(node
, 0);
180 if (clk_prepare_enable(clk
) < 0) {
181 pr_err("GIC failed to enable clock\n");
186 gic_frequency
= clk_get_rate(clk
);
187 } else if (of_property_read_u32(node
, "clock-frequency",
189 pr_err("GIC frequency not specified.\n");
192 gic_timer_irq
= irq_of_parse_and_map(node
, 0);
193 if (!gic_timer_irq
) {
194 pr_err("GIC timer IRQ not specified.\n");
198 ret
= __gic_clocksource_init();
202 ret
= gic_clockevent_init();
203 if (!ret
&& !IS_ERR(clk
)) {
204 if (clk_notifier_register(clk
, &gic_clk_nb
) < 0)
205 pr_warn("GIC: Unable to register clock notifier\n");
208 /* And finally start the counter */
213 CLOCKSOURCE_OF_DECLARE(mips_gic_timer
, "mti,gic-timer",
214 gic_clocksource_of_init
);