1 // SPDX-License-Identifier: GPL-2.0
3 * Pistachio clocksource based on general-purpose timers
5 * Copyright (C) 2015 Imagination Technologies
8 #define pr_fmt(fmt) "%s: " fmt, __func__
10 #include <linux/clk.h>
11 #include <linux/clocksource.h>
12 #include <linux/clockchips.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <linux/spinlock.h>
17 #include <linux/mfd/syscon.h>
19 #include <linux/of_address.h>
20 #include <linux/platform_device.h>
21 #include <linux/regmap.h>
22 #include <linux/sched_clock.h>
23 #include <linux/time.h>
26 #define CR_TIMER_CTRL_CFG 0x00
27 #define TIMER_ME_GLOBAL BIT(0)
28 #define CR_TIMER_REV 0x10
30 /* Timer specific registers */
31 #define TIMER_CFG 0x20
32 #define TIMER_ME_LOCAL BIT(0)
33 #define TIMER_RELOAD_VALUE 0x24
34 #define TIMER_CURRENT_VALUE 0x28
35 #define TIMER_CURRENT_OVERFLOW_VALUE 0x2C
36 #define TIMER_IRQ_STATUS 0x30
37 #define TIMER_IRQ_CLEAR 0x34
38 #define TIMER_IRQ_MASK 0x38
40 #define PERIP_TIMER_CONTROL 0x90
42 /* Timer specific configuration Values */
43 #define RELOAD_VALUE 0xffffffff
45 struct pistachio_clocksource
{
48 struct clocksource cs
;
51 static struct pistachio_clocksource pcs_gpt
;
53 #define to_pistachio_clocksource(cs) \
54 container_of(cs, struct pistachio_clocksource, cs)
56 static inline u32
gpt_readl(void __iomem
*base
, u32 offset
, u32 gpt_id
)
58 return readl(base
+ 0x20 * gpt_id
+ offset
);
61 static inline void gpt_writel(void __iomem
*base
, u32 value
, u32 offset
,
64 writel(value
, base
+ 0x20 * gpt_id
+ offset
);
68 pistachio_clocksource_read_cycles(struct clocksource
*cs
)
70 struct pistachio_clocksource
*pcs
= to_pistachio_clocksource(cs
);
71 __maybe_unused u32 overflow
;
76 * The counter value is only refreshed after the overflow value is read.
77 * And they must be read in strict order, hence raw spin lock added.
80 raw_spin_lock_irqsave(&pcs
->lock
, flags
);
81 overflow
= gpt_readl(pcs
->base
, TIMER_CURRENT_OVERFLOW_VALUE
, 0);
82 counter
= gpt_readl(pcs
->base
, TIMER_CURRENT_VALUE
, 0);
83 raw_spin_unlock_irqrestore(&pcs
->lock
, flags
);
88 static u64 notrace
pistachio_read_sched_clock(void)
90 return pistachio_clocksource_read_cycles(&pcs_gpt
.cs
);
93 static void pistachio_clksrc_set_mode(struct clocksource
*cs
, int timeridx
,
96 struct pistachio_clocksource
*pcs
= to_pistachio_clocksource(cs
);
99 val
= gpt_readl(pcs
->base
, TIMER_CFG
, timeridx
);
101 val
|= TIMER_ME_LOCAL
;
103 val
&= ~TIMER_ME_LOCAL
;
105 gpt_writel(pcs
->base
, val
, TIMER_CFG
, timeridx
);
108 static void pistachio_clksrc_enable(struct clocksource
*cs
, int timeridx
)
110 struct pistachio_clocksource
*pcs
= to_pistachio_clocksource(cs
);
112 /* Disable GPT local before loading reload value */
113 pistachio_clksrc_set_mode(cs
, timeridx
, false);
114 gpt_writel(pcs
->base
, RELOAD_VALUE
, TIMER_RELOAD_VALUE
, timeridx
);
115 pistachio_clksrc_set_mode(cs
, timeridx
, true);
118 static void pistachio_clksrc_disable(struct clocksource
*cs
, int timeridx
)
120 /* Disable GPT local */
121 pistachio_clksrc_set_mode(cs
, timeridx
, false);
124 static int pistachio_clocksource_enable(struct clocksource
*cs
)
126 pistachio_clksrc_enable(cs
, 0);
130 static void pistachio_clocksource_disable(struct clocksource
*cs
)
132 pistachio_clksrc_disable(cs
, 0);
135 /* Desirable clock source for pistachio platform */
136 static struct pistachio_clocksource pcs_gpt
= {
140 .enable
= pistachio_clocksource_enable
,
141 .disable
= pistachio_clocksource_disable
,
142 .read
= pistachio_clocksource_read_cycles
,
143 .mask
= CLOCKSOURCE_MASK(32),
144 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
|
145 CLOCK_SOURCE_SUSPEND_NONSTOP
,
149 static int __init
pistachio_clksrc_of_init(struct device_node
*node
)
151 struct clk
*sys_clk
, *fast_clk
;
152 struct regmap
*periph_regs
;
156 pcs_gpt
.base
= of_iomap(node
, 0);
158 pr_err("cannot iomap\n");
162 periph_regs
= syscon_regmap_lookup_by_phandle(node
, "img,cr-periph");
163 if (IS_ERR(periph_regs
)) {
164 pr_err("cannot get peripheral regmap (%ld)\n",
165 PTR_ERR(periph_regs
));
166 return PTR_ERR(periph_regs
);
169 /* Switch to using the fast counter clock */
170 ret
= regmap_update_bits(periph_regs
, PERIP_TIMER_CONTROL
,
175 sys_clk
= of_clk_get_by_name(node
, "sys");
176 if (IS_ERR(sys_clk
)) {
177 pr_err("clock get failed (%ld)\n", PTR_ERR(sys_clk
));
178 return PTR_ERR(sys_clk
);
181 fast_clk
= of_clk_get_by_name(node
, "fast");
182 if (IS_ERR(fast_clk
)) {
183 pr_err("clock get failed (%lu)\n", PTR_ERR(fast_clk
));
184 return PTR_ERR(fast_clk
);
187 ret
= clk_prepare_enable(sys_clk
);
189 pr_err("failed to enable clock (%d)\n", ret
);
193 ret
= clk_prepare_enable(fast_clk
);
195 pr_err("failed to enable clock (%d)\n", ret
);
196 clk_disable_unprepare(sys_clk
);
200 rate
= clk_get_rate(fast_clk
);
202 /* Disable irq's for clocksource usage */
203 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 0);
204 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 1);
205 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 2);
206 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 3);
208 /* Enable timer block */
209 writel(TIMER_ME_GLOBAL
, pcs_gpt
.base
);
211 raw_spin_lock_init(&pcs_gpt
.lock
);
212 sched_clock_register(pistachio_read_sched_clock
, 32, rate
);
213 return clocksource_register_hz(&pcs_gpt
.cs
, rate
);
215 TIMER_OF_DECLARE(pistachio_gptimer
, "img,pistachio-gptimer",
216 pistachio_clksrc_of_init
);