Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2// Copyright (C) 2012 MIPS Technologies, Inc.  All rights reserved.
  3
  4#define pr_fmt(fmt) "mips-gic-timer: " fmt
  5
 
 
  6#include <linux/clk.h>
  7#include <linux/clockchips.h>
  8#include <linux/cpu.h>
  9#include <linux/init.h>
 10#include <linux/interrupt.h>
 
 11#include <linux/notifier.h>
 12#include <linux/of_irq.h>
 13#include <linux/percpu.h>
 14#include <linux/sched_clock.h>
 15#include <linux/smp.h>
 16#include <linux/time.h>
 17#include <asm/mips-cps.h>
 18
 19static DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device);
 20static int gic_timer_irq;
 21static unsigned int gic_frequency;
 22static unsigned int gic_count_width;
 23static bool __read_mostly gic_clock_unstable;
 24
 25static void gic_clocksource_unstable(char *reason);
 26
 27static u64 notrace gic_read_count_2x32(void)
 28{
 29	unsigned int hi, hi2, lo;
 30
 31	do {
 32		hi = read_gic_counter_32h();
 33		lo = read_gic_counter_32l();
 34		hi2 = read_gic_counter_32h();
 35	} while (hi2 != hi);
 36
 37	return (((u64) hi) << 32) + lo;
 38}
 39
 40static u64 notrace gic_read_count_64(void)
 41{
 42	return read_gic_counter();
 43}
 44
 45static u64 notrace gic_read_count(void)
 46{
 47	if (mips_cm_is64)
 48		return gic_read_count_64();
 49
 50	return gic_read_count_2x32();
 51}
 52
 53static int gic_next_event(unsigned long delta, struct clock_event_device *evt)
 54{
 55	int cpu = cpumask_first(evt->cpumask);
 56	u64 cnt;
 57	int res;
 58
 59	cnt = gic_read_count();
 60	cnt += (u64)delta;
 61	if (cpu == raw_smp_processor_id()) {
 62		write_gic_vl_compare(cnt);
 63	} else {
 64		write_gic_vl_other(mips_cm_vp_id(cpu));
 65		write_gic_vo_compare(cnt);
 66	}
 67	res = ((int)(gic_read_count() - cnt) >= 0) ? -ETIME : 0;
 68	return res;
 69}
 70
 71static irqreturn_t gic_compare_interrupt(int irq, void *dev_id)
 72{
 73	struct clock_event_device *cd = dev_id;
 74
 75	write_gic_vl_compare(read_gic_vl_compare());
 76	cd->event_handler(cd);
 77	return IRQ_HANDLED;
 78}
 79
 80static struct irqaction gic_compare_irqaction = {
 81	.handler = gic_compare_interrupt,
 82	.percpu_dev_id = &gic_clockevent_device,
 83	.flags = IRQF_PERCPU | IRQF_TIMER,
 84	.name = "timer",
 85};
 86
 87static void gic_clockevent_cpu_init(unsigned int cpu,
 88				    struct clock_event_device *cd)
 89{
 
 
 90	cd->name		= "MIPS GIC";
 91	cd->features		= CLOCK_EVT_FEAT_ONESHOT |
 92				  CLOCK_EVT_FEAT_C3STOP;
 93
 94	cd->rating		= 350;
 95	cd->irq			= gic_timer_irq;
 96	cd->cpumask		= cpumask_of(cpu);
 97	cd->set_next_event	= gic_next_event;
 98
 99	clockevents_config_and_register(cd, gic_frequency, 0x300, 0x7fffffff);
100
101	enable_percpu_irq(gic_timer_irq, IRQ_TYPE_NONE);
102}
103
104static void gic_clockevent_cpu_exit(struct clock_event_device *cd)
105{
106	disable_percpu_irq(gic_timer_irq);
107}
108
109static void gic_update_frequency(void *data)
110{
111	unsigned long rate = (unsigned long)data;
112
113	clockevents_update_freq(this_cpu_ptr(&gic_clockevent_device), rate);
114}
115
116static int gic_starting_cpu(unsigned int cpu)
 
117{
118	gic_clockevent_cpu_init(cpu, this_cpu_ptr(&gic_clockevent_device));
119	return 0;
 
 
 
 
 
 
 
 
120}
121
122static int gic_clk_notifier(struct notifier_block *nb, unsigned long action,
123			    void *data)
124{
125	struct clk_notifier_data *cnd = data;
126
127	if (action == POST_RATE_CHANGE) {
128		gic_clocksource_unstable("ref clock rate change");
129		on_each_cpu(gic_update_frequency, (void *)cnd->new_rate, 1);
130	}
131
132	return NOTIFY_OK;
133}
134
135static int gic_dying_cpu(unsigned int cpu)
136{
137	gic_clockevent_cpu_exit(this_cpu_ptr(&gic_clockevent_device));
138	return 0;
139}
140
141static struct notifier_block gic_clk_nb = {
142	.notifier_call = gic_clk_notifier,
143};
144
145static int gic_clockevent_init(void)
146{
147	int ret;
148
149	if (!gic_frequency)
150		return -ENXIO;
151
152	ret = setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
153	if (ret < 0) {
154		pr_err("IRQ %d setup failed (%d)\n", gic_timer_irq, ret);
155		return ret;
156	}
157
158	cpuhp_setup_state(CPUHP_AP_MIPS_GIC_TIMER_STARTING,
159			  "clockevents/mips/gic/timer:starting",
160			  gic_starting_cpu, gic_dying_cpu);
 
 
 
161	return 0;
162}
163
164static u64 gic_hpt_read(struct clocksource *cs)
165{
166	return gic_read_count();
167}
168
169static u64 gic_hpt_read_multicluster(struct clocksource *cs)
170{
171	unsigned int hi, hi2, lo;
172	u64 count;
173
174	mips_cm_lock_other(0, 0, 0, CM_GCR_Cx_OTHER_BLOCK_GLOBAL);
175
176	if (mips_cm_is64) {
177		count = read_gic_redir_counter();
178		goto out;
179	}
180
181	hi = read_gic_redir_counter_32h();
182	while (true) {
183		lo = read_gic_redir_counter_32l();
184
185		/* If hi didn't change then lo didn't wrap & we're done */
186		hi2 = read_gic_redir_counter_32h();
187		if (hi2 == hi)
188			break;
189
190		/* Otherwise, repeat with the latest hi value */
191		hi = hi2;
192	}
193
194	count = (((u64)hi) << 32) + lo;
195out:
196	mips_cm_unlock_other();
197	return count;
198}
199
200static struct clocksource gic_clocksource = {
201	.name			= "GIC",
202	.read			= gic_hpt_read,
203	.flags			= CLOCK_SOURCE_IS_CONTINUOUS,
204	.vdso_clock_mode	= VDSO_CLOCKMODE_GIC,
205};
206
207static void gic_clocksource_unstable(char *reason)
208{
209	if (gic_clock_unstable)
210		return;
211
212	gic_clock_unstable = true;
213
214	pr_info("GIC timer is unstable due to %s\n", reason);
215
216	clocksource_mark_unstable(&gic_clocksource);
217}
218
219static int __init __gic_clocksource_init(void)
220{
221	int ret;
222
223	/* Set clocksource mask. */
224	gic_count_width = read_gic_config() & GIC_CONFIG_COUNTBITS;
225	gic_count_width >>= __ffs(GIC_CONFIG_COUNTBITS);
226	gic_count_width *= 4;
227	gic_count_width += 32;
228	gic_clocksource.mask = CLOCKSOURCE_MASK(gic_count_width);
229
230	/* Calculate a somewhat reasonable rating value. */
231	if (mips_cm_revision() >= CM_REV_CM3 || !IS_ENABLED(CONFIG_CPU_FREQ))
232		gic_clocksource.rating = 300; /* Good when frequecy is stable */
233	else
234		gic_clocksource.rating = 200;
235	gic_clocksource.rating += clamp(gic_frequency / 10000000, 0, 99);
236
237	if (mips_cps_multicluster_cpus()) {
238		gic_clocksource.read = &gic_hpt_read_multicluster;
239		gic_clocksource.vdso_clock_mode = VDSO_CLOCKMODE_NONE;
240	}
241
242	ret = clocksource_register_hz(&gic_clocksource, gic_frequency);
243	if (ret < 0)
244		pr_warn("Unable to register clocksource\n");
 
 
 
 
 
 
 
245
246	return ret;
 
 
 
 
247}
248
249static int __init gic_clocksource_of_init(struct device_node *node)
250{
251	struct clk *clk;
252	int ret;
253
254	if (!mips_gic_present() || !node->parent ||
255	    !of_device_is_compatible(node->parent, "mti,gic")) {
256		pr_warn("No DT definition\n");
257		return -ENXIO;
258	}
259
260	clk = of_clk_get(node, 0);
261	if (!IS_ERR(clk)) {
262		ret = clk_prepare_enable(clk);
263		if (ret < 0) {
264			pr_err("Failed to enable clock\n");
265			clk_put(clk);
266			return ret;
267		}
268
269		gic_frequency = clk_get_rate(clk);
270	} else if (of_property_read_u32(node, "clock-frequency",
271					&gic_frequency)) {
272		pr_err("Frequency not specified\n");
273		return -EINVAL;
274	}
275	gic_timer_irq = irq_of_parse_and_map(node, 0);
276	if (!gic_timer_irq) {
277		pr_err("IRQ not specified\n");
278		return -EINVAL;
279	}
280
281	ret = __gic_clocksource_init();
282	if (ret)
283		return ret;
284
285	ret = gic_clockevent_init();
286	if (!ret && !IS_ERR(clk)) {
287		if (clk_notifier_register(clk, &gic_clk_nb) < 0)
288			pr_warn("Unable to register clock notifier\n");
289	}
290
291	/* And finally start the counter */
292	clear_gic_config(GIC_CONFIG_COUNTSTOP);
293
294	/*
295	 * It's safe to use the MIPS GIC timer as a sched clock source only if
296	 * its ticks are stable, which is true on either the platforms with
297	 * stable CPU frequency or on the platforms with CM3 and CPU frequency
298	 * change performed by the CPC core clocks divider.
299	 */
300	if ((mips_cm_revision() >= CM_REV_CM3 || !IS_ENABLED(CONFIG_CPU_FREQ)) &&
301	     !mips_cps_multicluster_cpus()) {
302		sched_clock_register(mips_cm_is64 ?
303				     gic_read_count_64 : gic_read_count_2x32,
304				     gic_count_width, gic_frequency);
305	}
306
307	return 0;
308}
309TIMER_OF_DECLARE(mips_gic_timer, "mti,gic-timer",
310		       gic_clocksource_of_init);
v4.6
  1/*
  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 */
  8#include <linux/clk.h>
  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>
 
 19
 20static DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device);
 21static int gic_timer_irq;
 22static unsigned int gic_frequency;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 23
 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
 36static irqreturn_t gic_compare_interrupt(int irq, void *dev_id)
 37{
 38	struct clock_event_device *cd = dev_id;
 39
 40	gic_write_compare(gic_read_compare());
 41	cd->event_handler(cd);
 42	return IRQ_HANDLED;
 43}
 44
 45struct irqaction gic_compare_irqaction = {
 46	.handler = gic_compare_interrupt,
 47	.percpu_dev_id = &gic_clockevent_device,
 48	.flags = IRQF_PERCPU | IRQF_TIMER,
 49	.name = "timer",
 50};
 51
 52static void gic_clockevent_cpu_init(struct clock_event_device *cd)
 
 53{
 54	unsigned int cpu = smp_processor_id();
 55
 56	cd->name		= "MIPS GIC";
 57	cd->features		= CLOCK_EVT_FEAT_ONESHOT |
 58				  CLOCK_EVT_FEAT_C3STOP;
 59
 60	cd->rating		= 350;
 61	cd->irq			= gic_timer_irq;
 62	cd->cpumask		= cpumask_of(cpu);
 63	cd->set_next_event	= gic_next_event;
 64
 65	clockevents_config_and_register(cd, gic_frequency, 0x300, 0x7fffffff);
 66
 67	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
 75static 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
 82static 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;
 92	}
 93
 94	return NOTIFY_OK;
 95}
 96
 97static 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
109static struct notifier_block gic_cpu_nb = {
110	.notifier_call = gic_cpu_notifier,
111};
 
112
113static struct notifier_block gic_clk_nb = {
114	.notifier_call = gic_clk_notifier,
115};
116
117static int gic_clockevent_init(void)
118{
119	int ret;
120
121	if (!cpu_has_counter || !gic_frequency)
122		return -ENXIO;
123
124	ret = setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
125	if (ret < 0)
 
126		return ret;
 
127
128	ret = register_cpu_notifier(&gic_cpu_nb);
129	if (ret < 0)
130		pr_warn("GIC: Unable to register CPU notifier\n");
131
132	gic_clockevent_cpu_init(this_cpu_ptr(&gic_clockevent_device));
133
134	return 0;
135}
136
137static cycle_t gic_hpt_read(struct clocksource *cs)
138{
139	return gic_read_count();
140}
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142static struct clocksource gic_clocksource = {
143	.name		= "GIC",
144	.read		= gic_hpt_read,
145	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
146	.archdata	= { .vdso_clock_mode = VDSO_CLOCK_GIC },
147};
148
149static void __init __gic_clocksource_init(void)
 
 
 
 
 
 
 
 
 
 
 
 
150{
151	int ret;
152
153	/* Set clocksource mask. */
154	gic_clocksource.mask = CLOCKSOURCE_MASK(gic_get_count_width());
 
 
 
 
155
156	/* Calculate a somewhat reasonable rating value. */
157	gic_clocksource.rating = 200 + gic_frequency / 10000000;
 
 
 
 
 
 
 
 
 
158
159	ret = clocksource_register_hz(&gic_clocksource, gic_frequency);
160	if (ret < 0)
161		pr_warn("GIC: Unable to register clocksource\n");
162}
163
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();
171	gic_clockevent_init();
172
173	/* And finally start the counter */
174	gic_start_count();
175}
176
177static void __init gic_clocksource_of_init(struct device_node *node)
178{
179	struct clk *clk;
180	int ret;
181
182	if (WARN_ON(!gic_present || !node->parent ||
183		    !of_device_is_compatible(node->parent, "mti,gic")))
184		return;
 
 
185
186	clk = of_clk_get(node, 0);
187	if (!IS_ERR(clk)) {
188		if (clk_prepare_enable(clk) < 0) {
189			pr_err("GIC failed to enable clock\n");
 
190			clk_put(clk);
191			return;
192		}
193
194		gic_frequency = clk_get_rate(clk);
195	} else if (of_property_read_u32(node, "clock-frequency",
196					&gic_frequency)) {
197		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();
 
 
207
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	}
213
214	/* And finally start the counter */
215	gic_start_count();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216}
217CLOCKSOURCE_OF_DECLARE(mips_gic_timer, "mti,gic-timer",
218		       gic_clocksource_of_init);