1 // SPDX-License-Identifier: GPL-2.0+
3 // Copyright 2016 Freescale Semiconductor, Inc.
7 #include <linux/clockchips.h>
8 #include <linux/clocksource.h>
9 #include <linux/delay.h>
10 #include <linux/interrupt.h>
11 #include <linux/sched_clock.h>
16 #define TPM_PARAM_WIDTH_SHIFT 16
17 #define TPM_PARAM_WIDTH_MASK (0xff << 16)
19 #define TPM_SC_CMOD_INC_PER_CNT (0x1 << 3)
20 #define TPM_SC_CMOD_DIV_DEFAULT 0x3
21 #define TPM_SC_CMOD_DIV_MAX 0x7
22 #define TPM_SC_TOF_MASK (0x1 << 7)
25 #define TPM_STATUS 0x1c
26 #define TPM_STATUS_CH0F BIT(0)
28 #define TPM_C0SC_CHIE BIT(6)
29 #define TPM_C0SC_MODE_SHIFT 2
30 #define TPM_C0SC_MODE_MASK 0x3c
31 #define TPM_C0SC_MODE_SW_COMPARE 0x4
32 #define TPM_C0SC_CHF_MASK (0x1 << 7)
35 static int counter_width;
36 static void __iomem *timer_base;
38 static inline void tpm_timer_disable(void)
43 val = readl(timer_base + TPM_C0SC);
44 val &= ~(TPM_C0SC_MODE_MASK | TPM_C0SC_CHIE);
45 writel(val, timer_base + TPM_C0SC);
48 static inline void tpm_timer_enable(void)
52 /* channel enabled in sw compare mode */
53 val = readl(timer_base + TPM_C0SC);
54 val |= (TPM_C0SC_MODE_SW_COMPARE << TPM_C0SC_MODE_SHIFT) |
56 writel(val, timer_base + TPM_C0SC);
59 static inline void tpm_irq_acknowledge(void)
61 writel(TPM_STATUS_CH0F, timer_base + TPM_STATUS);
64 static inline unsigned long tpm_read_counter(void)
66 return readl(timer_base + TPM_CNT);
69 #if defined(CONFIG_ARM)
70 static struct delay_timer tpm_delay_timer;
72 static unsigned long tpm_read_current_timer(void)
74 return tpm_read_counter();
78 static u64 notrace tpm_read_sched_clock(void)
80 return tpm_read_counter();
83 static int tpm_set_next_event(unsigned long delta,
84 struct clock_event_device *evt)
86 unsigned long next, now;
88 next = tpm_read_counter();
90 writel(next, timer_base + TPM_C0V);
91 now = tpm_read_counter();
94 * NOTE: We observed in a very small probability, the bus fabric
95 * contention between GPU and A7 may results a few cycles delay
96 * of writing CNT registers which may cause the min_delta event got
97 * missed, so we need add a ETIME check here in case it happened.
99 return (int)(next - now) <= 0 ? -ETIME : 0;
102 static int tpm_set_state_oneshot(struct clock_event_device *evt)
109 static int tpm_set_state_shutdown(struct clock_event_device *evt)
116 static irqreturn_t tpm_timer_interrupt(int irq, void *dev_id)
118 struct clock_event_device *evt = dev_id;
120 tpm_irq_acknowledge();
122 evt->event_handler(evt);
127 static struct timer_of to_tpm = {
128 .flags = TIMER_OF_IRQ | TIMER_OF_BASE | TIMER_OF_CLOCK,
130 .name = "i.MX7ULP TPM Timer",
132 .features = CLOCK_EVT_FEAT_ONESHOT,
133 .set_state_shutdown = tpm_set_state_shutdown,
134 .set_state_oneshot = tpm_set_state_oneshot,
135 .set_next_event = tpm_set_next_event,
136 .cpumask = cpu_possible_mask,
139 .handler = tpm_timer_interrupt,
140 .flags = IRQF_TIMER | IRQF_IRQPOLL,
147 static int __init tpm_clocksource_init(void)
149 #if defined(CONFIG_ARM)
150 tpm_delay_timer.read_current_timer = &tpm_read_current_timer;
151 tpm_delay_timer.freq = timer_of_rate(&to_tpm) >> 3;
152 register_current_timer_delay(&tpm_delay_timer);
155 sched_clock_register(tpm_read_sched_clock, counter_width,
156 timer_of_rate(&to_tpm) >> 3);
158 return clocksource_mmio_init(timer_base + TPM_CNT,
160 timer_of_rate(&to_tpm) >> 3,
161 to_tpm.clkevt.rating,
163 clocksource_mmio_readl_up);
166 static void __init tpm_clockevent_init(void)
168 clockevents_config_and_register(&to_tpm.clkevt,
169 timer_of_rate(&to_tpm) >> 3,
171 GENMASK(counter_width - 1,
175 static int __init tpm_timer_init(struct device_node *np)
180 ipg = of_clk_get_by_name(np, "ipg");
182 pr_err("tpm: failed to get ipg clk\n");
185 /* enable clk before accessing registers */
186 ret = clk_prepare_enable(ipg);
188 pr_err("tpm: ipg clock enable failed (%d)\n", ret);
193 ret = timer_of_init(np, &to_tpm);
197 timer_base = timer_of_base(&to_tpm);
199 counter_width = (readl(timer_base + TPM_PARAM)
200 & TPM_PARAM_WIDTH_MASK) >> TPM_PARAM_WIDTH_SHIFT;
201 /* use rating 200 for 32-bit counter and 150 for 16-bit counter */
202 to_tpm.clkevt.rating = counter_width == 0x20 ? 200 : 150;
205 * Initialize tpm module to a known state
206 * 1) Counter disabled
207 * 2) TPM counter operates in up counting mode
208 * 3) Timer Overflow Interrupt disabled
209 * 4) Channel0 disabled
210 * 5) DMA transfers disabled
212 /* make sure counter is disabled */
213 writel(0, timer_base + TPM_SC);
215 writel(TPM_SC_TOF_MASK, timer_base + TPM_SC);
216 writel(0, timer_base + TPM_CNT);
218 writel(TPM_C0SC_CHF_MASK, timer_base + TPM_C0SC);
222 * div 8 for 32-bit counter and div 128 for 16-bit counter
224 writel(TPM_SC_CMOD_INC_PER_CNT |
225 (counter_width == 0x20 ?
226 TPM_SC_CMOD_DIV_DEFAULT : TPM_SC_CMOD_DIV_MAX),
227 timer_base + TPM_SC);
229 /* set MOD register to maximum for free running mode */
230 writel(GENMASK(counter_width - 1, 0), timer_base + TPM_MOD);
232 tpm_clockevent_init();
234 return tpm_clocksource_init();
236 TIMER_OF_DECLARE(imx7ulp, "fsl,imx7ulp-tpm", tpm_timer_init);