1 // SPDX-License-Identifier: GPL-2.0+
3 // Copyright 2017-2019 NXP
5 #include <linux/interrupt.h>
6 #include <linux/clockchips.h>
7 #include <linux/slab.h>
11 #define CMP_OFFSET 0x10000
12 #define RD_OFFSET 0x20000
16 #define CMPCV_LO (CMP_OFFSET + 0x20)
17 #define CMPCV_HI (CMP_OFFSET + 0x24)
18 #define CMPCR (CMP_OFFSET + 0x2c)
19 #define CNTCV_LO_IMX95 (RD_OFFSET + 0x8)
20 #define CNTCV_HI_IMX95 (RD_OFFSET + 0xc)
22 #define SYS_CTR_EN 0x1
23 #define SYS_CTR_IRQ_MASK 0x2
25 #define SYS_CTR_CLK_DIV 0x3
27 struct sysctr_private {
33 static void sysctr_timer_enable(struct clock_event_device *evt, bool enable)
35 struct timer_of *to = to_timer_of(evt);
36 struct sysctr_private *priv = to->private_data;
37 void __iomem *base = timer_of_base(to);
39 writel(enable ? priv->cmpcr | SYS_CTR_EN : priv->cmpcr, base + CMPCR);
42 static void sysctr_irq_acknowledge(struct clock_event_device *evt)
45 * clear the enable bit(EN =0) will clear
46 * the status bit(ISTAT = 0), then the interrupt
47 * signal will be negated(acknowledged).
49 sysctr_timer_enable(evt, false);
52 static inline u64 sysctr_read_counter(struct clock_event_device *evt)
54 struct timer_of *to = to_timer_of(evt);
55 struct sysctr_private *priv = to->private_data;
56 void __iomem *base = timer_of_base(to);
57 u32 cnt_hi, tmp_hi, cnt_lo;
60 cnt_hi = readl_relaxed(base + priv->hi_off);
61 cnt_lo = readl_relaxed(base + priv->lo_off);
62 tmp_hi = readl_relaxed(base + priv->hi_off);
63 } while (tmp_hi != cnt_hi);
65 return ((u64) cnt_hi << 32) | cnt_lo;
68 static int sysctr_set_next_event(unsigned long delta,
69 struct clock_event_device *evt)
71 struct timer_of *to = to_timer_of(evt);
72 void __iomem *base = timer_of_base(to);
76 sysctr_timer_enable(evt, false);
78 next = sysctr_read_counter(evt);
82 cmp_hi = (next >> 32) & 0x00fffff;
83 cmp_lo = next & 0xffffffff;
85 writel_relaxed(cmp_hi, base + CMPCV_HI);
86 writel_relaxed(cmp_lo, base + CMPCV_LO);
88 sysctr_timer_enable(evt, true);
93 static int sysctr_set_state_oneshot(struct clock_event_device *evt)
98 static int sysctr_set_state_shutdown(struct clock_event_device *evt)
100 sysctr_timer_enable(evt, false);
105 static irqreturn_t sysctr_timer_interrupt(int irq, void *dev_id)
107 struct clock_event_device *evt = dev_id;
109 sysctr_irq_acknowledge(evt);
111 evt->event_handler(evt);
116 static struct timer_of to_sysctr = {
117 .flags = TIMER_OF_IRQ | TIMER_OF_CLOCK | TIMER_OF_BASE,
119 .name = "i.MX system counter timer",
120 .features = CLOCK_EVT_FEAT_ONESHOT |
121 CLOCK_EVT_FEAT_DYNIRQ,
122 .set_state_oneshot = sysctr_set_state_oneshot,
123 .set_next_event = sysctr_set_next_event,
124 .set_state_shutdown = sysctr_set_state_shutdown,
128 .handler = sysctr_timer_interrupt,
136 static int __init __sysctr_timer_init(struct device_node *np)
138 struct sysctr_private *priv;
142 priv = kzalloc(sizeof(struct sysctr_private), GFP_KERNEL);
146 ret = timer_of_init(np, &to_sysctr);
152 if (!of_property_read_bool(np, "nxp,no-divider")) {
153 /* system counter clock is divided by 3 internally */
154 to_sysctr.of_clk.rate /= SYS_CTR_CLK_DIV;
157 to_sysctr.clkevt.cpumask = cpu_possible_mask;
158 to_sysctr.private_data = priv;
160 base = timer_of_base(&to_sysctr);
161 priv->cmpcr = readl(base + CMPCR) & ~SYS_CTR_EN;
166 static int __init sysctr_timer_init(struct device_node *np)
168 struct sysctr_private *priv;
171 ret = __sysctr_timer_init(np);
175 priv = to_sysctr.private_data;
176 priv->lo_off = CNTCV_LO;
177 priv->hi_off = CNTCV_HI;
179 clockevents_config_and_register(&to_sysctr.clkevt,
180 timer_of_rate(&to_sysctr),
186 static int __init sysctr_timer_imx95_init(struct device_node *np)
188 struct sysctr_private *priv;
191 ret = __sysctr_timer_init(np);
195 priv = to_sysctr.private_data;
196 priv->lo_off = CNTCV_LO_IMX95;
197 priv->hi_off = CNTCV_HI_IMX95;
199 clockevents_config_and_register(&to_sysctr.clkevt,
200 timer_of_rate(&to_sysctr),
206 TIMER_OF_DECLARE(sysctr_timer, "nxp,sysctr-timer", sysctr_timer_init);
207 TIMER_OF_DECLARE(sysctr_timer_imx95, "nxp,imx95-sysctr-timer", sysctr_timer_imx95_init);