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 int __init
ftm_clockevent_init(unsigned long freq
, int irq
)
183 ftm_writel(0x00, priv
->clkevt_base
+ FTM_CNTIN
);
184 ftm_writel(~0u, priv
->clkevt_base
+ FTM_MOD
);
186 ftm_reset_counter(priv
->clkevt_base
);
188 err
= request_irq(irq
, ftm_evt_interrupt
, IRQF_TIMER
| IRQF_IRQPOLL
,
189 "Freescale ftm timer", &ftm_clockevent
);
191 pr_err("ftm: setup irq failed: %d\n", err
);
195 ftm_clockevent
.cpumask
= cpumask_of(0);
196 ftm_clockevent
.irq
= irq
;
198 clockevents_config_and_register(&ftm_clockevent
,
199 freq
/ (1 << priv
->ps
),
202 ftm_counter_enable(priv
->clkevt_base
);
207 static int __init
ftm_clocksource_init(unsigned long freq
)
211 ftm_writel(0x00, priv
->clksrc_base
+ FTM_CNTIN
);
212 ftm_writel(~0u, priv
->clksrc_base
+ FTM_MOD
);
214 ftm_reset_counter(priv
->clksrc_base
);
216 sched_clock_register(ftm_read_sched_clock
, 16, freq
/ (1 << priv
->ps
));
217 err
= clocksource_mmio_init(priv
->clksrc_base
+ FTM_CNT
, "fsl-ftm",
218 freq
/ (1 << priv
->ps
), 300, 16,
219 clocksource_mmio_readl_up
);
221 pr_err("ftm: init clock source mmio failed: %d\n", err
);
225 ftm_counter_enable(priv
->clksrc_base
);
230 static int __init
__ftm_clk_init(struct device_node
*np
, char *cnt_name
,
236 clk
= of_clk_get_by_name(np
, cnt_name
);
238 pr_err("ftm: Cannot get \"%s\": %ld\n", cnt_name
, PTR_ERR(clk
));
241 err
= clk_prepare_enable(clk
);
243 pr_err("ftm: clock failed to prepare+enable \"%s\": %d\n",
248 clk
= of_clk_get_by_name(np
, ftm_name
);
250 pr_err("ftm: Cannot get \"%s\": %ld\n", ftm_name
, PTR_ERR(clk
));
253 err
= clk_prepare_enable(clk
);
255 pr_err("ftm: clock failed to prepare+enable \"%s\": %d\n",
258 return clk_get_rate(clk
);
261 static unsigned long __init
ftm_clk_init(struct device_node
*np
)
265 freq
= __ftm_clk_init(np
, "ftm-evt-counter-en", "ftm-evt");
269 freq
= __ftm_clk_init(np
, "ftm-src-counter-en", "ftm-src");
276 static int __init
ftm_calc_closest_round_cyc(unsigned long freq
)
280 /* The counter register is only using the lower 16 bits, and
281 * if the 'freq' value is to big here, then the periodic_cyc
285 priv
->periodic_cyc
= DIV_ROUND_CLOSEST(freq
,
286 HZ
* (1 << priv
->ps
++));
287 } while (priv
->periodic_cyc
> 0xFFFF);
289 if (priv
->ps
> FTM_PS_MAX
) {
290 pr_err("ftm: the prescaler is %lu > %d\n",
291 priv
->ps
, FTM_PS_MAX
);
298 static int __init
ftm_timer_init(struct device_node
*np
)
303 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
308 priv
->clkevt_base
= of_iomap(np
, 0);
309 if (!priv
->clkevt_base
) {
310 pr_err("ftm: unable to map event timer registers\n");
314 priv
->clksrc_base
= of_iomap(np
, 1);
315 if (!priv
->clksrc_base
) {
316 pr_err("ftm: unable to map source timer registers\n");
321 irq
= irq_of_parse_and_map(np
, 0);
323 pr_err("ftm: unable to get IRQ from DT, %d\n", irq
);
327 priv
->big_endian
= of_property_read_bool(np
, "big-endian");
329 freq
= ftm_clk_init(np
);
333 ret
= ftm_calc_closest_round_cyc(freq
);
337 ret
= ftm_clocksource_init(freq
);
341 ret
= ftm_clockevent_init(freq
, irq
);
348 iounmap(priv
->clksrc_base
);
350 iounmap(priv
->clkevt_base
);
355 TIMER_OF_DECLARE(flextimer
, "fsl,ftm-timer", ftm_timer_init
);