1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Freescale FlexTimer Module (FTM) timer driver.
5 * Copyright 2014 Freescale Semiconductor, Inc.
9 #include <linux/clockchips.h>
10 #include <linux/clocksource.h>
11 #include <linux/err.h>
12 #include <linux/interrupt.h>
14 #include <linux/of_address.h>
15 #include <linux/of_irq.h>
16 #include <linux/sched_clock.h>
17 #include <linux/slab.h>
18 #include <linux/fsl/ftm.h>
20 #define FTM_SC_CLK(c) ((c) << FTM_SC_CLK_MASK_SHIFT)
22 struct ftm_clock_device
{
23 void __iomem
*clksrc_base
;
24 void __iomem
*clkevt_base
;
25 unsigned long periodic_cyc
;
30 static struct ftm_clock_device
*priv
;
32 static inline u32
ftm_readl(void __iomem
*addr
)
35 return ioread32be(addr
);
37 return ioread32(addr
);
40 static inline void ftm_writel(u32 val
, void __iomem
*addr
)
43 iowrite32be(val
, addr
);
48 static inline void ftm_counter_enable(void __iomem
*base
)
52 /* select and enable counter clock source */
53 val
= ftm_readl(base
+ FTM_SC
);
54 val
&= ~(FTM_SC_PS_MASK
| FTM_SC_CLK_MASK
);
55 val
|= priv
->ps
| FTM_SC_CLK(1);
56 ftm_writel(val
, base
+ FTM_SC
);
59 static inline void ftm_counter_disable(void __iomem
*base
)
63 /* disable counter clock source */
64 val
= ftm_readl(base
+ FTM_SC
);
65 val
&= ~(FTM_SC_PS_MASK
| FTM_SC_CLK_MASK
);
66 ftm_writel(val
, base
+ FTM_SC
);
69 static inline void ftm_irq_acknowledge(void __iomem
*base
)
73 val
= ftm_readl(base
+ FTM_SC
);
75 ftm_writel(val
, base
+ FTM_SC
);
78 static inline void ftm_irq_enable(void __iomem
*base
)
82 val
= ftm_readl(base
+ FTM_SC
);
84 ftm_writel(val
, base
+ FTM_SC
);
87 static inline void ftm_irq_disable(void __iomem
*base
)
91 val
= ftm_readl(base
+ FTM_SC
);
93 ftm_writel(val
, base
+ FTM_SC
);
96 static inline void ftm_reset_counter(void __iomem
*base
)
99 * The CNT register contains the FTM counter value.
100 * Reset clears the CNT register. Writing any value to COUNT
101 * updates the counter with its initial value, CNTIN.
103 ftm_writel(0x00, base
+ FTM_CNT
);
106 static u64 notrace
ftm_read_sched_clock(void)
108 return ftm_readl(priv
->clksrc_base
+ FTM_CNT
);
111 static int ftm_set_next_event(unsigned long delta
,
112 struct clock_event_device
*unused
)
115 * The CNNIN and MOD are all double buffer registers, writing
116 * to the MOD register latches the value into a buffer. The MOD
117 * register is updated with the value of its write buffer with
118 * the following scenario:
119 * a, the counter source clock is diabled.
121 ftm_counter_disable(priv
->clkevt_base
);
123 /* Force the value of CNTIN to be loaded into the FTM counter */
124 ftm_reset_counter(priv
->clkevt_base
);
127 * The counter increments until the value of MOD is reached,
128 * at which point the counter is reloaded with the value of CNTIN.
129 * The TOF (the overflow flag) bit is set when the FTM counter
130 * changes from MOD to CNTIN. So we should using the delta - 1.
132 ftm_writel(delta
- 1, priv
->clkevt_base
+ FTM_MOD
);
134 ftm_counter_enable(priv
->clkevt_base
);
136 ftm_irq_enable(priv
->clkevt_base
);
141 static int ftm_set_oneshot(struct clock_event_device
*evt
)
143 ftm_counter_disable(priv
->clkevt_base
);
147 static int ftm_set_periodic(struct clock_event_device
*evt
)
149 ftm_set_next_event(priv
->periodic_cyc
, evt
);
153 static irqreturn_t
ftm_evt_interrupt(int irq
, void *dev_id
)
155 struct clock_event_device
*evt
= dev_id
;
157 ftm_irq_acknowledge(priv
->clkevt_base
);
159 if (likely(clockevent_state_oneshot(evt
))) {
160 ftm_irq_disable(priv
->clkevt_base
);
161 ftm_counter_disable(priv
->clkevt_base
);
164 evt
->event_handler(evt
);
169 static struct clock_event_device ftm_clockevent
= {
170 .name
= "Freescale ftm timer",
171 .features
= CLOCK_EVT_FEAT_PERIODIC
|
172 CLOCK_EVT_FEAT_ONESHOT
,
173 .set_state_periodic
= ftm_set_periodic
,
174 .set_state_oneshot
= ftm_set_oneshot
,
175 .set_next_event
= ftm_set_next_event
,
179 static struct irqaction ftm_timer_irq
= {
180 .name
= "Freescale ftm timer",
181 .flags
= IRQF_TIMER
| IRQF_IRQPOLL
,
182 .handler
= ftm_evt_interrupt
,
183 .dev_id
= &ftm_clockevent
,
186 static int __init
ftm_clockevent_init(unsigned long freq
, int irq
)
190 ftm_writel(0x00, priv
->clkevt_base
+ FTM_CNTIN
);
191 ftm_writel(~0u, priv
->clkevt_base
+ FTM_MOD
);
193 ftm_reset_counter(priv
->clkevt_base
);
195 err
= setup_irq(irq
, &ftm_timer_irq
);
197 pr_err("ftm: setup irq failed: %d\n", err
);
201 ftm_clockevent
.cpumask
= cpumask_of(0);
202 ftm_clockevent
.irq
= irq
;
204 clockevents_config_and_register(&ftm_clockevent
,
205 freq
/ (1 << priv
->ps
),
208 ftm_counter_enable(priv
->clkevt_base
);
213 static int __init
ftm_clocksource_init(unsigned long freq
)
217 ftm_writel(0x00, priv
->clksrc_base
+ FTM_CNTIN
);
218 ftm_writel(~0u, priv
->clksrc_base
+ FTM_MOD
);
220 ftm_reset_counter(priv
->clksrc_base
);
222 sched_clock_register(ftm_read_sched_clock
, 16, freq
/ (1 << priv
->ps
));
223 err
= clocksource_mmio_init(priv
->clksrc_base
+ FTM_CNT
, "fsl-ftm",
224 freq
/ (1 << priv
->ps
), 300, 16,
225 clocksource_mmio_readl_up
);
227 pr_err("ftm: init clock source mmio failed: %d\n", err
);
231 ftm_counter_enable(priv
->clksrc_base
);
236 static int __init
__ftm_clk_init(struct device_node
*np
, char *cnt_name
,
242 clk
= of_clk_get_by_name(np
, cnt_name
);
244 pr_err("ftm: Cannot get \"%s\": %ld\n", cnt_name
, PTR_ERR(clk
));
247 err
= clk_prepare_enable(clk
);
249 pr_err("ftm: clock failed to prepare+enable \"%s\": %d\n",
254 clk
= of_clk_get_by_name(np
, ftm_name
);
256 pr_err("ftm: Cannot get \"%s\": %ld\n", ftm_name
, PTR_ERR(clk
));
259 err
= clk_prepare_enable(clk
);
261 pr_err("ftm: clock failed to prepare+enable \"%s\": %d\n",
264 return clk_get_rate(clk
);
267 static unsigned long __init
ftm_clk_init(struct device_node
*np
)
271 freq
= __ftm_clk_init(np
, "ftm-evt-counter-en", "ftm-evt");
275 freq
= __ftm_clk_init(np
, "ftm-src-counter-en", "ftm-src");
282 static int __init
ftm_calc_closest_round_cyc(unsigned long freq
)
286 /* The counter register is only using the lower 16 bits, and
287 * if the 'freq' value is to big here, then the periodic_cyc
291 priv
->periodic_cyc
= DIV_ROUND_CLOSEST(freq
,
292 HZ
* (1 << priv
->ps
++));
293 } while (priv
->periodic_cyc
> 0xFFFF);
295 if (priv
->ps
> FTM_PS_MAX
) {
296 pr_err("ftm: the prescaler is %lu > %d\n",
297 priv
->ps
, FTM_PS_MAX
);
304 static int __init
ftm_timer_init(struct device_node
*np
)
309 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
314 priv
->clkevt_base
= of_iomap(np
, 0);
315 if (!priv
->clkevt_base
) {
316 pr_err("ftm: unable to map event timer registers\n");
320 priv
->clksrc_base
= of_iomap(np
, 1);
321 if (!priv
->clksrc_base
) {
322 pr_err("ftm: unable to map source timer registers\n");
327 irq
= irq_of_parse_and_map(np
, 0);
329 pr_err("ftm: unable to get IRQ from DT, %d\n", irq
);
333 priv
->big_endian
= of_property_read_bool(np
, "big-endian");
335 freq
= ftm_clk_init(np
);
339 ret
= ftm_calc_closest_round_cyc(freq
);
343 ret
= ftm_clocksource_init(freq
);
347 ret
= ftm_clockevent_init(freq
, irq
);
354 iounmap(priv
->clksrc_base
);
356 iounmap(priv
->clkevt_base
);
361 TIMER_OF_DECLARE(flextimer
, "fsl,ftm-timer", ftm_timer_init
);