]> git.ipfire.org Git - people/arne_f/kernel.git/blame - arch/m68k/coldfire/sltimers.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[people/arne_f/kernel.git] / arch / m68k / coldfire / sltimers.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
ea49f8ff
PDM
2/***************************************************************************/
3
4/*
5 * sltimers.c -- generic ColdFire slice timer support.
6 *
7 * Copyright (C) 2009-2010, Philippe De Muyter <phdm@macqel.be>
8 * based on
9 * timers.c -- generic ColdFire hardware timer support.
10 * Copyright (C) 1999-2008, Greg Ungerer <gerg@snapgear.com>
11 */
12
13/***************************************************************************/
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/sched.h>
18#include <linux/interrupt.h>
19#include <linux/irq.h>
20#include <linux/profile.h>
21#include <linux/clocksource.h>
22#include <asm/io.h>
23#include <asm/traps.h>
24#include <asm/machdep.h>
25#include <asm/coldfire.h>
26#include <asm/mcfslt.h>
27#include <asm/mcfsim.h>
28
29/***************************************************************************/
30
31#ifdef CONFIG_HIGHPROFILE
32
33/*
34 * By default use Slice Timer 1 as the profiler clock timer.
35 */
f2f41c68 36#define PA(a) (MCFSLT_TIMER1 + (a))
ea49f8ff
PDM
37
38/*
39 * Choose a reasonably fast profile timer. Make it an odd value to
40 * try and get good coverage of kernel operations.
41 */
42#define PROFILEHZ 1013
43
44irqreturn_t mcfslt_profile_tick(int irq, void *dummy)
45{
46 /* Reset Slice Timer 1 */
47 __raw_writel(MCFSLT_SSR_BE | MCFSLT_SSR_TE, PA(MCFSLT_SSR));
48 if (current->pid)
49 profile_tick(CPU_PROFILING);
50 return IRQ_HANDLED;
51}
52
53static struct irqaction mcfslt_profile_irq = {
54 .name = "profile timer",
77a42796 55 .flags = IRQF_TIMER,
ea49f8ff
PDM
56 .handler = mcfslt_profile_tick,
57};
58
59void mcfslt_profile_init(void)
60{
61 printk(KERN_INFO "PROFILE: lodging TIMER 1 @ %dHz as profile timer\n",
62 PROFILEHZ);
63
64 setup_irq(MCF_IRQ_PROFILER, &mcfslt_profile_irq);
65
66 /* Set up TIMER 2 as high speed profile clock */
67 __raw_writel(MCF_BUSCLK / PROFILEHZ - 1, PA(MCFSLT_STCNT));
68 __raw_writel(MCFSLT_SCR_RUN | MCFSLT_SCR_IEN | MCFSLT_SCR_TEN,
69 PA(MCFSLT_SCR));
70
71}
72
73#endif /* CONFIG_HIGHPROFILE */
74
75/***************************************************************************/
76
77/*
78 * By default use Slice Timer 0 as the system clock timer.
79 */
f2f41c68 80#define TA(a) (MCFSLT_TIMER0 + (a))
ea49f8ff
PDM
81
82static u32 mcfslt_cycles_per_jiffy;
83static u32 mcfslt_cnt;
84
35aefb26
GU
85static irq_handler_t timer_interrupt;
86
ea49f8ff
PDM
87static irqreturn_t mcfslt_tick(int irq, void *dummy)
88{
89 /* Reset Slice Timer 0 */
90 __raw_writel(MCFSLT_SSR_BE | MCFSLT_SSR_TE, TA(MCFSLT_SSR));
91 mcfslt_cnt += mcfslt_cycles_per_jiffy;
35aefb26 92 return timer_interrupt(irq, dummy);
ea49f8ff
PDM
93}
94
95static struct irqaction mcfslt_timer_irq = {
96 .name = "timer",
77a42796 97 .flags = IRQF_TIMER,
ea49f8ff
PDM
98 .handler = mcfslt_tick,
99};
100
a5a1d1c2 101static u64 mcfslt_read_clk(struct clocksource *cs)
ea49f8ff
PDM
102{
103 unsigned long flags;
1f2aab01 104 u32 cycles, scnt;
ea49f8ff
PDM
105
106 local_irq_save(flags);
107 scnt = __raw_readl(TA(MCFSLT_SCNT));
108 cycles = mcfslt_cnt;
1f2aab01
GU
109 if (__raw_readl(TA(MCFSLT_SSR)) & MCFSLT_SSR_TE) {
110 cycles += mcfslt_cycles_per_jiffy;
111 scnt = __raw_readl(TA(MCFSLT_SCNT));
112 }
ea49f8ff
PDM
113 local_irq_restore(flags);
114
25985edc 115 /* subtract because slice timers count down */
1f2aab01 116 return cycles + ((mcfslt_cycles_per_jiffy - 1) - scnt);
ea49f8ff
PDM
117}
118
119static struct clocksource mcfslt_clk = {
120 .name = "slt",
121 .rating = 250,
122 .read = mcfslt_read_clk,
ea49f8ff
PDM
123 .mask = CLOCKSOURCE_MASK(32),
124 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
125};
126
35aefb26 127void hw_timer_init(irq_handler_t handler)
ea49f8ff
PDM
128{
129 mcfslt_cycles_per_jiffy = MCF_BUSCLK / HZ;
130 /*
131 * The coldfire slice timer (SLT) runs from STCNT to 0 included,
132 * then STCNT again and so on. It counts thus actually
133 * STCNT + 1 steps for 1 tick, not STCNT. So if you want
134 * n cycles, initialize STCNT with n - 1.
135 */
136 __raw_writel(mcfslt_cycles_per_jiffy - 1, TA(MCFSLT_STCNT));
137 __raw_writel(MCFSLT_SCR_RUN | MCFSLT_SCR_IEN | MCFSLT_SCR_TEN,
138 TA(MCFSLT_SCR));
139 /* initialize mcfslt_cnt knowing that slice timers count down */
140 mcfslt_cnt = mcfslt_cycles_per_jiffy;
141
35aefb26 142 timer_interrupt = handler;
ea49f8ff
PDM
143 setup_irq(MCF_IRQ_TIMER, &mcfslt_timer_irq);
144
a2a3dfb8 145 clocksource_register_hz(&mcfslt_clk, MCF_BUSCLK);
ea49f8ff
PDM
146
147#ifdef CONFIG_HIGHPROFILE
148 mcfslt_profile_init();
149#endif
150}