2 * Pistachio clocksource based on general-purpose timers
4 * Copyright (C) 2015 Imagination Technologies
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
11 #define pr_fmt(fmt) "%s: " fmt, __func__
13 #include <linux/clk.h>
14 #include <linux/clocksource.h>
15 #include <linux/clockchips.h>
16 #include <linux/delay.h>
17 #include <linux/err.h>
18 #include <linux/init.h>
19 #include <linux/spinlock.h>
20 #include <linux/mfd/syscon.h>
22 #include <linux/of_address.h>
23 #include <linux/platform_device.h>
24 #include <linux/regmap.h>
25 #include <linux/sched_clock.h>
26 #include <linux/time.h>
29 #define CR_TIMER_CTRL_CFG 0x00
30 #define TIMER_ME_GLOBAL BIT(0)
31 #define CR_TIMER_REV 0x10
33 /* Timer specific registers */
34 #define TIMER_CFG 0x20
35 #define TIMER_ME_LOCAL BIT(0)
36 #define TIMER_RELOAD_VALUE 0x24
37 #define TIMER_CURRENT_VALUE 0x28
38 #define TIMER_CURRENT_OVERFLOW_VALUE 0x2C
39 #define TIMER_IRQ_STATUS 0x30
40 #define TIMER_IRQ_CLEAR 0x34
41 #define TIMER_IRQ_MASK 0x38
43 #define PERIP_TIMER_CONTROL 0x90
45 /* Timer specific configuration Values */
46 #define RELOAD_VALUE 0xffffffff
48 struct pistachio_clocksource
{
51 struct clocksource cs
;
54 static struct pistachio_clocksource pcs_gpt
;
56 #define to_pistachio_clocksource(cs) \
57 container_of(cs, struct pistachio_clocksource, cs)
59 static inline u32
gpt_readl(void __iomem
*base
, u32 offset
, u32 gpt_id
)
61 return readl(base
+ 0x20 * gpt_id
+ offset
);
64 static inline void gpt_writel(void __iomem
*base
, u32 value
, u32 offset
,
67 writel(value
, base
+ 0x20 * gpt_id
+ offset
);
71 pistachio_clocksource_read_cycles(struct clocksource
*cs
)
73 struct pistachio_clocksource
*pcs
= to_pistachio_clocksource(cs
);
78 * The counter value is only refreshed after the overflow value is read.
79 * And they must be read in strict order, hence raw spin lock added.
82 raw_spin_lock_irqsave(&pcs
->lock
, flags
);
83 overflw
= gpt_readl(pcs
->base
, TIMER_CURRENT_OVERFLOW_VALUE
, 0);
84 counter
= gpt_readl(pcs
->base
, TIMER_CURRENT_VALUE
, 0);
85 raw_spin_unlock_irqrestore(&pcs
->lock
, flags
);
90 static u64 notrace
pistachio_read_sched_clock(void)
92 return pistachio_clocksource_read_cycles(&pcs_gpt
.cs
);
95 static void pistachio_clksrc_set_mode(struct clocksource
*cs
, int timeridx
,
98 struct pistachio_clocksource
*pcs
= to_pistachio_clocksource(cs
);
101 val
= gpt_readl(pcs
->base
, TIMER_CFG
, timeridx
);
103 val
|= TIMER_ME_LOCAL
;
105 val
&= ~TIMER_ME_LOCAL
;
107 gpt_writel(pcs
->base
, val
, TIMER_CFG
, timeridx
);
110 static void pistachio_clksrc_enable(struct clocksource
*cs
, int timeridx
)
112 struct pistachio_clocksource
*pcs
= to_pistachio_clocksource(cs
);
114 /* Disable GPT local before loading reload value */
115 pistachio_clksrc_set_mode(cs
, timeridx
, false);
116 gpt_writel(pcs
->base
, RELOAD_VALUE
, TIMER_RELOAD_VALUE
, timeridx
);
117 pistachio_clksrc_set_mode(cs
, timeridx
, true);
120 static void pistachio_clksrc_disable(struct clocksource
*cs
, int timeridx
)
122 /* Disable GPT local */
123 pistachio_clksrc_set_mode(cs
, timeridx
, false);
126 static int pistachio_clocksource_enable(struct clocksource
*cs
)
128 pistachio_clksrc_enable(cs
, 0);
132 static void pistachio_clocksource_disable(struct clocksource
*cs
)
134 pistachio_clksrc_disable(cs
, 0);
137 /* Desirable clock source for pistachio platform */
138 static struct pistachio_clocksource pcs_gpt
= {
142 .enable
= pistachio_clocksource_enable
,
143 .disable
= pistachio_clocksource_disable
,
144 .read
= pistachio_clocksource_read_cycles
,
145 .mask
= CLOCKSOURCE_MASK(32),
146 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
|
147 CLOCK_SOURCE_SUSPEND_NONSTOP
,
151 static int __init
pistachio_clksrc_of_init(struct device_node
*node
)
153 struct clk
*sys_clk
, *fast_clk
;
154 struct regmap
*periph_regs
;
158 pcs_gpt
.base
= of_iomap(node
, 0);
160 pr_err("cannot iomap\n");
164 periph_regs
= syscon_regmap_lookup_by_phandle(node
, "img,cr-periph");
165 if (IS_ERR(periph_regs
)) {
166 pr_err("cannot get peripheral regmap (%ld)\n",
167 PTR_ERR(periph_regs
));
168 return PTR_ERR(periph_regs
);
171 /* Switch to using the fast counter clock */
172 ret
= regmap_update_bits(periph_regs
, PERIP_TIMER_CONTROL
,
177 sys_clk
= of_clk_get_by_name(node
, "sys");
178 if (IS_ERR(sys_clk
)) {
179 pr_err("clock get failed (%ld)\n", PTR_ERR(sys_clk
));
180 return PTR_ERR(sys_clk
);
183 fast_clk
= of_clk_get_by_name(node
, "fast");
184 if (IS_ERR(fast_clk
)) {
185 pr_err("clock get failed (%lu)\n", PTR_ERR(fast_clk
));
186 return PTR_ERR(fast_clk
);
189 ret
= clk_prepare_enable(sys_clk
);
191 pr_err("failed to enable clock (%d)\n", ret
);
195 ret
= clk_prepare_enable(fast_clk
);
197 pr_err("failed to enable clock (%d)\n", ret
);
198 clk_disable_unprepare(sys_clk
);
202 rate
= clk_get_rate(fast_clk
);
204 /* Disable irq's for clocksource usage */
205 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 0);
206 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 1);
207 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 2);
208 gpt_writel(pcs_gpt
.base
, 0, TIMER_IRQ_MASK
, 3);
210 /* Enable timer block */
211 writel(TIMER_ME_GLOBAL
, pcs_gpt
.base
);
213 raw_spin_lock_init(&pcs_gpt
.lock
);
214 sched_clock_register(pistachio_read_sched_clock
, 32, rate
);
215 return clocksource_register_hz(&pcs_gpt
.cs
, rate
);
217 TIMER_OF_DECLARE(pistachio_gptimer
, "img,pistachio-gptimer",
218 pistachio_clksrc_of_init
);