blob: 7a960cd0110494a0c5b885fd6e89b81f3fec9c9c [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
Richard Cochran2dab9092016-07-13 17:16:44 +000052static void gic_clockevent_cpu_init(unsigned int cpu,
53 struct clock_event_device *cd)
Andrew Brestickera331ce62014-10-20 12:03:59 -070054{
Andrew Brestickera331ce62014-10-20 12:03:59 -070055 cd->name = "MIPS GIC";
56 cd->features = CLOCK_EVT_FEAT_ONESHOT |
57 CLOCK_EVT_FEAT_C3STOP;
58
Andrew Brestickera45da562014-10-20 12:04:06 -070059 cd->rating = 350;
Andrew Brestickere4752db2014-10-20 12:04:04 -070060 cd->irq = gic_timer_irq;
Andrew Brestickera331ce62014-10-20 12:03:59 -070061 cd->cpumask = cpumask_of(cpu);
62 cd->set_next_event = gic_next_event;
Andrew Brestickera331ce62014-10-20 12:03:59 -070063
Andrew Brestickerb695d8e2014-10-20 12:04:05 -070064 clockevents_config_and_register(cd, gic_frequency, 0x300, 0x7fffffff);
Andrew Brestickera331ce62014-10-20 12:03:59 -070065
Andrew Brestickere4752db2014-10-20 12:04:04 -070066 enable_percpu_irq(gic_timer_irq, IRQ_TYPE_NONE);
67}
68
69static void gic_clockevent_cpu_exit(struct clock_event_device *cd)
70{
71 disable_percpu_irq(gic_timer_irq);
72}
73
Ezequiel Garciafc6a6772015-07-27 15:00:15 +010074static void gic_update_frequency(void *data)
75{
76 unsigned long rate = (unsigned long)data;
77
78 clockevents_update_freq(this_cpu_ptr(&gic_clockevent_device), rate);
79}
80
Richard Cochran2dab9092016-07-13 17:16:44 +000081static int gic_starting_cpu(unsigned int cpu)
Andrew Brestickere4752db2014-10-20 12:04:04 -070082{
Richard Cochran2dab9092016-07-13 17:16:44 +000083 gic_clockevent_cpu_init(cpu, this_cpu_ptr(&gic_clockevent_device));
84 return 0;
Andrew Brestickere4752db2014-10-20 12:04:04 -070085}
86
Ezequiel Garciafc6a6772015-07-27 15:00:15 +010087static int gic_clk_notifier(struct notifier_block *nb, unsigned long action,
88 void *data)
89{
90 struct clk_notifier_data *cnd = data;
91
92 if (action == POST_RATE_CHANGE)
93 on_each_cpu(gic_update_frequency, (void *)cnd->new_rate, 1);
94
95 return NOTIFY_OK;
96}
97
Richard Cochran2dab9092016-07-13 17:16:44 +000098static int gic_dying_cpu(unsigned int cpu)
99{
100 gic_clockevent_cpu_exit(this_cpu_ptr(&gic_clockevent_device));
101 return 0;
102}
Andrew Brestickere4752db2014-10-20 12:04:04 -0700103
Ezequiel Garciafc6a6772015-07-27 15:00:15 +0100104static struct notifier_block gic_clk_nb = {
105 .notifier_call = gic_clk_notifier,
106};
107
Andrew Brestickere4752db2014-10-20 12:04:04 -0700108static int gic_clockevent_init(void)
109{
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100110 int ret;
111
Paul Burton69825302016-09-13 17:56:44 +0100112 if (!gic_frequency)
Andrew Brestickere4752db2014-10-20 12:04:04 -0700113 return -ENXIO;
114
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100115 ret = setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
Paul Burton2fd0c932016-09-13 17:56:43 +0100116 if (ret < 0) {
117 pr_err("GIC timer IRQ %d setup failed: %d\n",
118 gic_timer_irq, ret);
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100119 return ret;
Paul Burton2fd0c932016-09-13 17:56:43 +0100120 }
Andrew Brestickere4752db2014-10-20 12:04:04 -0700121
Richard Cochran2dab9092016-07-13 17:16:44 +0000122 cpuhp_setup_state(CPUHP_AP_MIPS_GIC_TIMER_STARTING,
123 "AP_MIPS_GIC_TIMER_STARTING", gic_starting_cpu,
124 gic_dying_cpu);
Andrew Brestickera331ce62014-10-20 12:03:59 -0700125 return 0;
126}
127
Steven J. Hill778eeb12012-12-07 03:51:04 +0000128static cycle_t gic_hpt_read(struct clocksource *cs)
129{
Steven J. Hilldfa762e2013-04-10 16:28:36 -0500130 return gic_read_count();
Steven J. Hill778eeb12012-12-07 03:51:04 +0000131}
132
133static struct clocksource gic_clocksource = {
Alex Smitha7f4df42015-10-21 09:57:44 +0100134 .name = "GIC",
135 .read = gic_hpt_read,
136 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
137 .archdata = { .vdso_clock_mode = VDSO_CLOCK_GIC },
Steven J. Hill778eeb12012-12-07 03:51:04 +0000138};
139
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200140static int __init __gic_clocksource_init(void)
Steven J. Hill778eeb12012-12-07 03:51:04 +0000141{
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100142 int ret;
143
Steven J. Hill778eeb12012-12-07 03:51:04 +0000144 /* Set clocksource mask. */
Andrew Bresticker387904f2014-10-20 12:03:49 -0700145 gic_clocksource.mask = CLOCKSOURCE_MASK(gic_get_count_width());
Steven J. Hill778eeb12012-12-07 03:51:04 +0000146
147 /* Calculate a somewhat reasonable rating value. */
Andrew Brestickere12aa822014-11-12 11:43:39 -0800148 gic_clocksource.rating = 200 + gic_frequency / 10000000;
Steven J. Hill778eeb12012-12-07 03:51:04 +0000149
Ezequiel Garciaf95ac852015-07-27 15:00:13 +0100150 ret = clocksource_register_hz(&gic_clocksource, gic_frequency);
151 if (ret < 0)
152 pr_warn("GIC: Unable to register clocksource\n");
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200153
154 return ret;
Steven J. Hill778eeb12012-12-07 03:51:04 +0000155}
Andrew Brestickere12aa822014-11-12 11:43:39 -0800156
157void __init gic_clocksource_init(unsigned int frequency)
158{
159 gic_frequency = frequency;
160 gic_timer_irq = MIPS_GIC_IRQ_BASE +
161 GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_COMPARE);
162
163 __gic_clocksource_init();
Ezequiel Garcia67d4e662015-07-27 15:00:14 +0100164 gic_clockevent_init();
165
166 /* And finally start the counter */
167 gic_start_count();
Andrew Brestickere12aa822014-11-12 11:43:39 -0800168}
169
Paul Gortmakerbe5769e2016-08-17 12:21:35 +0200170static int __init gic_clocksource_of_init(struct device_node *node)
Andrew Brestickere12aa822014-11-12 11:43:39 -0800171{
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800172 struct clk *clk;
Ezequiel Garciafc6a6772015-07-27 15:00:15 +0100173 int ret;
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800174
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200175 if (!gic_present || !node->parent ||
176 !of_device_is_compatible(node->parent, "mti,gic")) {
177 pr_warn("No DT definition for the mips gic driver");
178 return -ENXIO;
179 }
Andrew Brestickere12aa822014-11-12 11:43:39 -0800180
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800181 clk = of_clk_get(node, 0);
182 if (!IS_ERR(clk)) {
Ezequiel Garciaeb811c72015-07-27 15:00:12 +0100183 if (clk_prepare_enable(clk) < 0) {
184 pr_err("GIC failed to enable clock\n");
185 clk_put(clk);
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200186 return PTR_ERR(clk);
Ezequiel Garciaeb811c72015-07-27 15:00:12 +0100187 }
188
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800189 gic_frequency = clk_get_rate(clk);
Andrew Bresticker5b4e8452015-02-23 18:28:34 -0800190 } else if (of_property_read_u32(node, "clock-frequency",
191 &gic_frequency)) {
Andrew Brestickere12aa822014-11-12 11:43:39 -0800192 pr_err("GIC frequency not specified.\n");
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200193 return -EINVAL;;
Andrew Brestickere12aa822014-11-12 11:43:39 -0800194 }
195 gic_timer_irq = irq_of_parse_and_map(node, 0);
196 if (!gic_timer_irq) {
197 pr_err("GIC timer IRQ not specified.\n");
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200198 return -EINVAL;;
Andrew Brestickere12aa822014-11-12 11:43:39 -0800199 }
200
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200201 ret = __gic_clocksource_init();
202 if (ret)
203 return ret;
Ezequiel Garciafc6a6772015-07-27 15:00:15 +0100204
205 ret = gic_clockevent_init();
206 if (!ret && !IS_ERR(clk)) {
207 if (clk_notifier_register(clk, &gic_clk_nb) < 0)
208 pr_warn("GIC: Unable to register clock notifier\n");
209 }
Ezequiel Garcia67d4e662015-07-27 15:00:14 +0100210
211 /* And finally start the counter */
212 gic_start_count();
Daniel Lezcanod8152bf2016-06-06 17:57:25 +0200213
214 return 0;
Andrew Brestickere12aa822014-11-12 11:43:39 -0800215}
Daniel Lezcano177cf6e2016-06-07 00:27:44 +0200216CLOCKSOURCE_OF_DECLARE(mips_gic_timer, "mti,gic-timer",
Andrew Brestickere12aa822014-11-12 11:43:39 -0800217 gic_clocksource_of_init);