blob: 89d3e4d7900c51f384f3b90200c1fecb2bab013f [file] [log] [blame]
Steven J. Hill778eeb12012-12-07 03:51:04 +00001/*
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
4 * for more details.
5 *
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7 */
Andrew Bresticker5b4e8452015-02-23 18:28:34 -08008#include <linux/clk.h>
Andrew Brestickera331ce62014-10-20 12:03:59 -07009#include <linux/clockchips.h>
Andrew Brestickere4752db2014-10-20 12:04:04 -070010#include <linux/cpu.h>
Steven J. Hill778eeb12012-12-07 03:51:04 +000011#include <linux/init.h>
Andrew Brestickera331ce62014-10-20 12:03:59 -070012#include <linux/interrupt.h>
Andrew Bresticker4060bbe2014-10-20 12:03:53 -070013#include <linux/irqchip/mips-gic.h>
Andrew Brestickere4752db2014-10-20 12:04:04 -070014#include <linux/notifier.h>
Andrew Brestickere12aa822014-11-12 11:43:39 -080015#include <linux/of_irq.h>
Andrew Brestickera331ce62014-10-20 12:03:59 -070016#include <linux/percpu.h>
17#include <linux/smp.h>
Steven J. Hilldfa762e2013-04-10 16:28:36 -050018#include <linux/time.h>
Steven J. Hill778eeb12012-12-07 03:51:04 +000019
Andrew Bresticker5fee56e2014-10-20 12:04:00 -070020static DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device);
Andrew Brestickere4752db2014-10-20 12:04:04 -070021static int gic_timer_irq;
Andrew Brestickerb0854512014-10-20 12:04:01 -070022static unsigned int gic_frequency;
Andrew Brestickera331ce62014-10-20 12:03:59 -070023
24static int gic_next_event(unsigned long delta, struct clock_event_device *evt)
25{
26 u64 cnt;
27 int res;
28
29 cnt = gic_read_count();
30 cnt += (u64)delta;
31 gic_write_cpu_compare(cnt, cpumask_first(evt->cpumask));
32 res = ((int)(gic_read_count() - cnt) >= 0) ? -ETIME : 0;
33 return res;
34}
35
Andrew Bresticker5fee56e2014-10-20 12:04:00 -070036static irqreturn_t gic_compare_interrupt(int irq, void *dev_id)
Andrew Brestickera331ce62014-10-20 12:03:59 -070037{
Andrew Brestickerf7ea3062014-10-20 12:04:03 -070038 struct clock_event_device *cd = dev_id;
Andrew Brestickera331ce62014-10-20 12:03:59 -070039
40 gic_write_compare(gic_read_compare());
Andrew Brestickera331ce62014-10-20 12:03:59 -070041 cd->event_handler(cd);
42 return IRQ_HANDLED;
43}
44
45struct irqaction gic_compare_irqaction = {
46 .handler = gic_compare_interrupt,
Andrew Brestickerf7ea3062014-10-20 12:04:03 -070047 .percpu_dev_id = &gic_clockevent_device,
Andrew Brestickera331ce62014-10-20 12:03:59 -070048 .flags = IRQF_PERCPU | IRQF_TIMER,
49 .name = "timer",
50};
51
Andrew Brestickere4752db2014-10-20 12:04:04 -070052static void gic_clockevent_cpu_init(struct clock_event_device *cd)
Andrew Brestickera331ce62014-10-20 12:03:59 -070053{
54 unsigned int cpu = smp_processor_id();
Andrew Brestickera331ce62014-10-20 12:03:59 -070055
56 cd->name = "MIPS GIC";
57 cd->features = CLOCK_EVT_FEAT_ONESHOT |
58 CLOCK_EVT_FEAT_C3STOP;
59
Andrew Brestickera45da562014-10-20 12:04:06 -070060 cd->rating = 350;
Andrew Brestickere4752db2014-10-20 12:04:04 -070061 cd->irq = gic_timer_irq;
Andrew Brestickera331ce62014-10-20 12:03:59 -070062 cd->cpumask = cpumask_of(cpu);
63 cd->set_next_event = gic_next_event;
Andrew Brestickera331ce62014-10-20 12:03:59 -070064
Andrew Brestickerb695d8e2014-10-20 12:04:05 -070065 clockevents_config_and_register(cd, gic_frequency, 0x300, 0x7fffffff);
Andrew Brestickera331ce62014-10-20 12:03:59 -070066
Andrew Brestickere4752db2014-10-20 12:04:04 -070067 enable_percpu_irq(gic_timer_irq, IRQ_TYPE_NONE);
68}
69
70static void gic_clockevent_cpu_exit(struct clock_event_device *cd)
71{
72 disable_percpu_irq(gic_timer_irq);
73}
74
Ezequiel Garciafc6a6772015-07-27 15:00:15 +010075static void gic_update_frequency(void *data)
76{
77 unsigned long rate = (unsigned long)data;
78
79 clockevents_update_freq(this_cpu_ptr(&gic_clockevent_device), rate);
80}
81
Andrew Brestickere4752db2014-10-20 12:04:04 -070082static int gic_cpu_notifier(struct notifier_block *nb, unsigned long action,
83 void *data)
84{
85 switch (action & ~CPU_TASKS_FROZEN) {
86 case CPU_STARTING:
87 gic_clockevent_cpu_init(this_cpu_ptr(&gic_clockevent_device));
88 break;
89 case CPU_DYING:
90 gic_clockevent_cpu_exit(this_cpu_ptr(&gic_clockevent_device));
91 break;
Andrew Brestickera331ce62014-10-20 12:03:59 -070092 }
93
Andrew Brestickere4752db2014-10-20 12:04:04 -070094 return NOTIFY_OK;
95}
96
Ezequiel Garciafc6a6772015-07-27 15:00:15 +010097static int gic_clk_notifier(struct notifier_block *nb, unsigned long action,
98 void *data)
99{
100 struct clk_notifier_data *cnd = data;
101
102 if (action == POST_RATE_CHANGE)
103 on_each_cpu(gic_update_frequency, (void *)cnd->new_rate, 1);
104
105 return NOTIFY_OK;
106}
107
108
Andrew Brestickere4752db2014-10-20 12:04:04 -0700109static struct notifier_block gic_cpu_nb = {
110 .notifier_call = gic_cpu_notifier,
111};
112
Ezequiel Garciafc6a6772015-07-27 15:00:15 +0100113static struct notifier_block gic_clk_nb = {
114 .notifier_call = gic_clk_notifier,
115};
116
Andrew Brestickere4752db2014-10-20 12:04:04 -0700117static int gic_clockevent_init(void)
118{
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100119 int ret;
120
Andrew Brestickere4752db2014-10-20 12:04:04 -0700121 if (!cpu_has_counter || !gic_frequency)
122 return -ENXIO;
123
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100124 ret = setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
125 if (ret < 0)
126 return ret;
Andrew Brestickere4752db2014-10-20 12:04:04 -0700127
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100128 ret = register_cpu_notifier(&gic_cpu_nb);
129 if (ret < 0)
130 pr_warn("GIC: Unable to register CPU notifier\n");
Andrew Brestickere4752db2014-10-20 12:04:04 -0700131
132 gic_clockevent_cpu_init(this_cpu_ptr(&gic_clockevent_device));
Andrew Brestickera331ce62014-10-20 12:03:59 -0700133
134 return 0;
135}
136
Steven J. Hill778eeb12012-12-07 03:51:04 +0000137static cycle_t gic_hpt_read(struct clocksource *cs)
138{
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500139 return gic_read_count();
Steven J. Hill778eeb12012-12-07 03:51:04 +0000140}
141
142static struct clocksource gic_clocksource = {
Alex Smitha7f4df42015-10-21 09:57:44 +0100143 .name = "GIC",
144 .read = gic_hpt_read,
145 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
146 .archdata = { .vdso_clock_mode = VDSO_CLOCK_GIC },
Steven J. Hill778eeb12012-12-07 03:51:04 +0000147};
148
Andrew Brestickere12aa822014-11-12 11:43:39 -0800149static void __init __gic_clocksource_init(void)
Steven J. Hill778eeb12012-12-07 03:51:04 +0000150{
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100151 int ret;
152
Steven J. Hill778eeb12012-12-07 03:51:04 +0000153 /* Set clocksource mask. */
Andrew Bresticker387904f2014-10-20 12:03:49 -0700154 gic_clocksource.mask = CLOCKSOURCE_MASK(gic_get_count_width());
Steven J. Hill778eeb12012-12-07 03:51:04 +0000155
156 /* Calculate a somewhat reasonable rating value. */
Andrew Brestickere12aa822014-11-12 11:43:39 -0800157 gic_clocksource.rating = 200 + gic_frequency / 10000000;
Steven J. Hill778eeb12012-12-07 03:51:04 +0000158
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100159 ret = clocksource_register_hz(&gic_clocksource, gic_frequency);
160 if (ret < 0)
161 pr_warn("GIC: Unable to register clocksource\n");
Steven J. Hill778eeb12012-12-07 03:51:04 +0000162}
Andrew Brestickere12aa822014-11-12 11:43:39 -0800163
164void __init gic_clocksource_init(unsigned int frequency)
165{
166 gic_frequency = frequency;
167 gic_timer_irq = MIPS_GIC_IRQ_BASE +
168 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_COMPARE);
169
170 __gic_clocksource_init();
Ezequiel Garcia67d4e662015-07-27 15:00:14 +0100171 gic_clockevent_init();
172
173 /* And finally start the counter */
174 gic_start_count();
Andrew Brestickere12aa822014-11-12 11:43:39 -0800175}
176
177static void __init gic_clocksource_of_init(struct device_node *node)
178{
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800179 struct clk *clk;
Ezequiel Garciafc6a6772015-07-27 15:00:15 +0100180 int ret;
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800181
Andrew Brestickere12aa822014-11-12 11:43:39 -0800182 if (WARN_ON(!gic_present || !node->parent ||
183 !of_device_is_compatible(node->parent, "mti,gic")))
184 return;
185
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800186 clk = of_clk_get(node, 0);
187 if (!IS_ERR(clk)) {
Ezequiel Garciaeb811c72015-07-27 15:00:12 +0100188 if (clk_prepare_enable(clk) < 0) {
189 pr_err("GIC failed to enable clock\n");
190 clk_put(clk);
191 return;
192 }
193
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800194 gic_frequency = clk_get_rate(clk);
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800195 } else if (of_property_read_u32(node, "clock-frequency",
196 &gic_frequency)) {
Andrew Brestickere12aa822014-11-12 11:43:39 -0800197 pr_err("GIC frequency not specified.\n");
198 return;
199 }
200 gic_timer_irq = irq_of_parse_and_map(node, 0);
201 if (!gic_timer_irq) {
202 pr_err("GIC timer IRQ not specified.\n");
203 return;
204 }
205
206 __gic_clocksource_init();
Ezequiel Garciafc6a6772015-07-27 15:00:15 +0100207
208 ret = gic_clockevent_init();
209 if (!ret && !IS_ERR(clk)) {
210 if (clk_notifier_register(clk, &gic_clk_nb) < 0)
211 pr_warn("GIC: Unable to register clock notifier\n");
212 }
Ezequiel Garcia67d4e662015-07-27 15:00:14 +0100213
214 /* And finally start the counter */
215 gic_start_count();
Andrew Brestickere12aa822014-11-12 11:43:39 -0800216}
217CLOCKSOURCE_OF_DECLARE(mips_gic_timer, "mti,gic-timer",
218 gic_clocksource_of_init);