Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * linux/arch/arm/mach-mmp/time.c
  4 *
  5 *   Support for clocksource and clockevents
  6 *
  7 * Copyright (C) 2008 Marvell International Ltd.
  8 * All rights reserved.
  9 *
 10 *   2008-04-11: Jason Chagas <Jason.chagas@marvell.com>
 11 *   2008-10-08: Bin Yang <bin.yang@marvell.com>
 12 *
 13 * The timers module actually includes three timers, each timer with up to
 14 * three match comparators. Timer #0 is used here in free-running mode as
 15 * the clock source, and match comparator #1 used as clock event device.
 16 */
 17
 18#include <linux/init.h>
 19#include <linux/kernel.h>
 20#include <linux/interrupt.h>
 21#include <linux/clockchips.h>
 22#include <linux/clk.h>
 23
 24#include <linux/io.h>
 25#include <linux/irq.h>
 26#include <linux/of.h>
 27#include <linux/of_address.h>
 28#include <linux/of_irq.h>
 29#include <linux/sched_clock.h>
 30#include <asm/mach/time.h>
 31
 
 32#include "regs-timers.h"
 
 
 33#include <linux/soc/mmp/cputype.h>
 34
 
 
 35#define MAX_DELTA		(0xfffffffe)
 36#define MIN_DELTA		(16)
 37
 38static void __iomem *mmp_timer_base;
 39
 40/*
 41 * Read the timer through the CVWR register. Delay is required after requesting
 42 * a read. The CR register cannot be directly read due to metastability issues
 43 * documented in the PXA168 software manual.
 44 */
 45static inline uint32_t timer_read(void)
 46{
 47	uint32_t val;
 48	int delay = 3;
 49
 50	__raw_writel(1, mmp_timer_base + TMR_CVWR(1));
 51
 52	while (delay--)
 53		val = __raw_readl(mmp_timer_base + TMR_CVWR(1));
 54
 55	return val;
 56}
 57
 58static u64 notrace mmp_read_sched_clock(void)
 59{
 60	return timer_read();
 61}
 62
 63static irqreturn_t timer_interrupt(int irq, void *dev_id)
 64{
 65	struct clock_event_device *c = dev_id;
 66
 67	/*
 68	 * Clear pending interrupt status.
 69	 */
 70	__raw_writel(0x01, mmp_timer_base + TMR_ICR(0));
 71
 72	/*
 73	 * Disable timer 0.
 74	 */
 75	__raw_writel(0x02, mmp_timer_base + TMR_CER);
 76
 77	c->event_handler(c);
 78
 79	return IRQ_HANDLED;
 80}
 81
 82static int timer_set_next_event(unsigned long delta,
 83				struct clock_event_device *dev)
 84{
 85	unsigned long flags;
 86
 87	local_irq_save(flags);
 88
 89	/*
 90	 * Disable timer 0.
 91	 */
 92	__raw_writel(0x02, mmp_timer_base + TMR_CER);
 93
 94	/*
 95	 * Clear and enable timer match 0 interrupt.
 96	 */
 97	__raw_writel(0x01, mmp_timer_base + TMR_ICR(0));
 98	__raw_writel(0x01, mmp_timer_base + TMR_IER(0));
 99
100	/*
101	 * Setup new clockevent timer value.
102	 */
103	__raw_writel(delta - 1, mmp_timer_base + TMR_TN_MM(0, 0));
104
105	/*
106	 * Enable timer 0.
107	 */
108	__raw_writel(0x03, mmp_timer_base + TMR_CER);
109
110	local_irq_restore(flags);
111
112	return 0;
113}
114
115static int timer_set_shutdown(struct clock_event_device *evt)
116{
117	unsigned long flags;
118
119	local_irq_save(flags);
120	/* disable the matching interrupt */
121	__raw_writel(0x00, mmp_timer_base + TMR_IER(0));
122	local_irq_restore(flags);
123
124	return 0;
125}
126
127static struct clock_event_device ckevt = {
128	.name			= "clockevent",
129	.features		= CLOCK_EVT_FEAT_ONESHOT,
130	.rating			= 200,
131	.set_next_event		= timer_set_next_event,
132	.set_state_shutdown	= timer_set_shutdown,
133	.set_state_oneshot	= timer_set_shutdown,
134};
135
136static u64 clksrc_read(struct clocksource *cs)
137{
138	return timer_read();
139}
140
141static struct clocksource cksrc = {
142	.name		= "clocksource",
143	.rating		= 200,
144	.read		= clksrc_read,
145	.mask		= CLOCKSOURCE_MASK(32),
146	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
147};
148
149static void __init timer_config(void)
150{
151	uint32_t ccr = __raw_readl(mmp_timer_base + TMR_CCR);
152
153	__raw_writel(0x0, mmp_timer_base + TMR_CER); /* disable */
154
155	ccr &= (cpu_is_mmp2() || cpu_is_mmp3()) ?
156		(TMR_CCR_CS_0(0) | TMR_CCR_CS_1(0)) :
157		(TMR_CCR_CS_0(3) | TMR_CCR_CS_1(3));
158	__raw_writel(ccr, mmp_timer_base + TMR_CCR);
159
160	/* set timer 0 to periodic mode, and timer 1 to free-running mode */
161	__raw_writel(0x2, mmp_timer_base + TMR_CMR);
162
163	__raw_writel(0x1, mmp_timer_base + TMR_PLCR(0)); /* periodic */
164	__raw_writel(0x7, mmp_timer_base + TMR_ICR(0));  /* clear status */
165	__raw_writel(0x0, mmp_timer_base + TMR_IER(0));
166
167	__raw_writel(0x0, mmp_timer_base + TMR_PLCR(1)); /* free-running */
168	__raw_writel(0x7, mmp_timer_base + TMR_ICR(1));  /* clear status */
169	__raw_writel(0x0, mmp_timer_base + TMR_IER(1));
170
171	/* enable timer 1 counter */
172	__raw_writel(0x2, mmp_timer_base + TMR_CER);
173}
174
175static void __init mmp_timer_init(int irq, unsigned long rate)
176{
177	timer_config();
178
179	sched_clock_register(mmp_read_sched_clock, 32, rate);
180
181	ckevt.cpumask = cpumask_of(0);
182
183	if (request_irq(irq, timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
184			"timer", &ckevt))
185		pr_err("Failed to request irq %d (timer)\n", irq);
186
187	clocksource_register_hz(&cksrc, rate);
188	clockevents_config_and_register(&ckevt, rate, MIN_DELTA, MAX_DELTA);
189}
190
191static int __init mmp_dt_init_timer(struct device_node *np)
192{
193	struct clk *clk;
194	int irq, ret;
195	unsigned long rate;
196
197	clk = of_clk_get(np, 0);
198	if (!IS_ERR(clk)) {
199		ret = clk_prepare_enable(clk);
200		if (ret)
201			return ret;
202		rate = clk_get_rate(clk);
203	} else if (cpu_is_pj4()) {
204		rate = 6500000;
205	} else {
206		rate = 3250000;
207	}
208
209	irq = irq_of_parse_and_map(np, 0);
210	if (!irq)
211		return -EINVAL;
212
213	mmp_timer_base = of_iomap(np, 0);
214	if (!mmp_timer_base)
215		return -ENOMEM;
216
217	mmp_timer_init(irq, rate);
218	return 0;
219}
220
221TIMER_OF_DECLARE(mmp_timer, "mrvl,mmp-timer", mmp_dt_init_timer);
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * linux/arch/arm/mach-mmp/time.c
  4 *
  5 *   Support for clocksource and clockevents
  6 *
  7 * Copyright (C) 2008 Marvell International Ltd.
  8 * All rights reserved.
  9 *
 10 *   2008-04-11: Jason Chagas <Jason.chagas@marvell.com>
 11 *   2008-10-08: Bin Yang <bin.yang@marvell.com>
 12 *
 13 * The timers module actually includes three timers, each timer with up to
 14 * three match comparators. Timer #0 is used here in free-running mode as
 15 * the clock source, and match comparator #1 used as clock event device.
 16 */
 17
 18#include <linux/init.h>
 19#include <linux/kernel.h>
 20#include <linux/interrupt.h>
 21#include <linux/clockchips.h>
 22#include <linux/clk.h>
 23
 24#include <linux/io.h>
 25#include <linux/irq.h>
 26#include <linux/of.h>
 27#include <linux/of_address.h>
 28#include <linux/of_irq.h>
 29#include <linux/sched_clock.h>
 30#include <asm/mach/time.h>
 31
 32#include "addr-map.h"
 33#include "regs-timers.h"
 34#include "regs-apbc.h"
 35#include "irqs.h"
 36#include <linux/soc/mmp/cputype.h>
 37
 38#define TIMERS_VIRT_BASE	TIMERS1_VIRT_BASE
 39
 40#define MAX_DELTA		(0xfffffffe)
 41#define MIN_DELTA		(16)
 42
 43static void __iomem *mmp_timer_base = TIMERS_VIRT_BASE;
 44
 45/*
 46 * Read the timer through the CVWR register. Delay is required after requesting
 47 * a read. The CR register cannot be directly read due to metastability issues
 48 * documented in the PXA168 software manual.
 49 */
 50static inline uint32_t timer_read(void)
 51{
 52	uint32_t val;
 53	int delay = 3;
 54
 55	__raw_writel(1, mmp_timer_base + TMR_CVWR(1));
 56
 57	while (delay--)
 58		val = __raw_readl(mmp_timer_base + TMR_CVWR(1));
 59
 60	return val;
 61}
 62
 63static u64 notrace mmp_read_sched_clock(void)
 64{
 65	return timer_read();
 66}
 67
 68static irqreturn_t timer_interrupt(int irq, void *dev_id)
 69{
 70	struct clock_event_device *c = dev_id;
 71
 72	/*
 73	 * Clear pending interrupt status.
 74	 */
 75	__raw_writel(0x01, mmp_timer_base + TMR_ICR(0));
 76
 77	/*
 78	 * Disable timer 0.
 79	 */
 80	__raw_writel(0x02, mmp_timer_base + TMR_CER);
 81
 82	c->event_handler(c);
 83
 84	return IRQ_HANDLED;
 85}
 86
 87static int timer_set_next_event(unsigned long delta,
 88				struct clock_event_device *dev)
 89{
 90	unsigned long flags;
 91
 92	local_irq_save(flags);
 93
 94	/*
 95	 * Disable timer 0.
 96	 */
 97	__raw_writel(0x02, mmp_timer_base + TMR_CER);
 98
 99	/*
100	 * Clear and enable timer match 0 interrupt.
101	 */
102	__raw_writel(0x01, mmp_timer_base + TMR_ICR(0));
103	__raw_writel(0x01, mmp_timer_base + TMR_IER(0));
104
105	/*
106	 * Setup new clockevent timer value.
107	 */
108	__raw_writel(delta - 1, mmp_timer_base + TMR_TN_MM(0, 0));
109
110	/*
111	 * Enable timer 0.
112	 */
113	__raw_writel(0x03, mmp_timer_base + TMR_CER);
114
115	local_irq_restore(flags);
116
117	return 0;
118}
119
120static int timer_set_shutdown(struct clock_event_device *evt)
121{
122	unsigned long flags;
123
124	local_irq_save(flags);
125	/* disable the matching interrupt */
126	__raw_writel(0x00, mmp_timer_base + TMR_IER(0));
127	local_irq_restore(flags);
128
129	return 0;
130}
131
132static struct clock_event_device ckevt = {
133	.name			= "clockevent",
134	.features		= CLOCK_EVT_FEAT_ONESHOT,
135	.rating			= 200,
136	.set_next_event		= timer_set_next_event,
137	.set_state_shutdown	= timer_set_shutdown,
138	.set_state_oneshot	= timer_set_shutdown,
139};
140
141static u64 clksrc_read(struct clocksource *cs)
142{
143	return timer_read();
144}
145
146static struct clocksource cksrc = {
147	.name		= "clocksource",
148	.rating		= 200,
149	.read		= clksrc_read,
150	.mask		= CLOCKSOURCE_MASK(32),
151	.flags		= CLOCK_SOURCE_IS_CONTINUOUS,
152};
153
154static void __init timer_config(void)
155{
156	uint32_t ccr = __raw_readl(mmp_timer_base + TMR_CCR);
157
158	__raw_writel(0x0, mmp_timer_base + TMR_CER); /* disable */
159
160	ccr &= (cpu_is_mmp2() || cpu_is_mmp3()) ?
161		(TMR_CCR_CS_0(0) | TMR_CCR_CS_1(0)) :
162		(TMR_CCR_CS_0(3) | TMR_CCR_CS_1(3));
163	__raw_writel(ccr, mmp_timer_base + TMR_CCR);
164
165	/* set timer 0 to periodic mode, and timer 1 to free-running mode */
166	__raw_writel(0x2, mmp_timer_base + TMR_CMR);
167
168	__raw_writel(0x1, mmp_timer_base + TMR_PLCR(0)); /* periodic */
169	__raw_writel(0x7, mmp_timer_base + TMR_ICR(0));  /* clear status */
170	__raw_writel(0x0, mmp_timer_base + TMR_IER(0));
171
172	__raw_writel(0x0, mmp_timer_base + TMR_PLCR(1)); /* free-running */
173	__raw_writel(0x7, mmp_timer_base + TMR_ICR(1));  /* clear status */
174	__raw_writel(0x0, mmp_timer_base + TMR_IER(1));
175
176	/* enable timer 1 counter */
177	__raw_writel(0x2, mmp_timer_base + TMR_CER);
178}
179
180void __init mmp_timer_init(int irq, unsigned long rate)
181{
182	timer_config();
183
184	sched_clock_register(mmp_read_sched_clock, 32, rate);
185
186	ckevt.cpumask = cpumask_of(0);
187
188	if (request_irq(irq, timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
189			"timer", &ckevt))
190		pr_err("Failed to request irq %d (timer)\n", irq);
191
192	clocksource_register_hz(&cksrc, rate);
193	clockevents_config_and_register(&ckevt, rate, MIN_DELTA, MAX_DELTA);
194}
195
196static int __init mmp_dt_init_timer(struct device_node *np)
197{
198	struct clk *clk;
199	int irq, ret;
200	unsigned long rate;
201
202	clk = of_clk_get(np, 0);
203	if (!IS_ERR(clk)) {
204		ret = clk_prepare_enable(clk);
205		if (ret)
206			return ret;
207		rate = clk_get_rate(clk);
208	} else if (cpu_is_pj4()) {
209		rate = 6500000;
210	} else {
211		rate = 3250000;
212	}
213
214	irq = irq_of_parse_and_map(np, 0);
215	if (!irq)
216		return -EINVAL;
217
218	mmp_timer_base = of_iomap(np, 0);
219	if (!mmp_timer_base)
220		return -ENOMEM;
221
222	mmp_timer_init(irq, rate);
223	return 0;
224}
225
226TIMER_OF_DECLARE(mmp_timer, "mrvl,mmp-timer", mmp_dt_init_timer);