xref: /openbmc/linux/drivers/clk/pxa/clk-pxa.c (revision 2874c5fd)
1 /*
2  * Marvell PXA family clocks
3  *
4  * Copyright (C) 2014 Robert Jarzmik
5  *
6  * Common clock code for PXA clocks ("CKEN" type clocks + DT)
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; version 2 of the License.
11  *
12  */
13 #include <linux/clk.h>
14 #include <linux/clk-provider.h>
15 #include <linux/clkdev.h>
16 #include <linux/io.h>
17 #include <linux/of.h>
18 
19 #include <dt-bindings/clock/pxa-clock.h>
20 #include "clk-pxa.h"
21 
22 #define KHz 1000
23 #define MHz (1000 * 1000)
24 
25 #define MDREFR_K0DB4	(1 << 29)	/* SDCLK0 Divide by 4 Control/Status */
26 #define MDREFR_K2FREE	(1 << 25)	/* SDRAM Free-Running Control */
27 #define MDREFR_K1FREE	(1 << 24)	/* SDRAM Free-Running Control */
28 #define MDREFR_K0FREE	(1 << 23)	/* SDRAM Free-Running Control */
29 #define MDREFR_SLFRSH	(1 << 22)	/* SDRAM Self-Refresh Control/Status */
30 #define MDREFR_APD	(1 << 20)	/* SDRAM/SSRAM Auto-Power-Down Enable */
31 #define MDREFR_K2DB2	(1 << 19)	/* SDCLK2 Divide by 2 Control/Status */
32 #define MDREFR_K2RUN	(1 << 18)	/* SDCLK2 Run Control/Status */
33 #define MDREFR_K1DB2	(1 << 17)	/* SDCLK1 Divide by 2 Control/Status */
34 #define MDREFR_K1RUN	(1 << 16)	/* SDCLK1 Run Control/Status */
35 #define MDREFR_E1PIN	(1 << 15)	/* SDCKE1 Level Control/Status */
36 #define MDREFR_K0DB2	(1 << 14)	/* SDCLK0 Divide by 2 Control/Status */
37 #define MDREFR_K0RUN	(1 << 13)	/* SDCLK0 Run Control/Status */
38 #define MDREFR_E0PIN	(1 << 12)	/* SDCKE0 Level Control/Status */
39 #define MDREFR_DB2_MASK	(MDREFR_K2DB2 | MDREFR_K1DB2)
40 #define MDREFR_DRI_MASK	0xFFF
41 
42 static DEFINE_SPINLOCK(pxa_clk_lock);
43 
44 static struct clk *pxa_clocks[CLK_MAX];
45 static struct clk_onecell_data onecell_data = {
46 	.clks = pxa_clocks,
47 	.clk_num = CLK_MAX,
48 };
49 
50 struct pxa_clk {
51 	struct clk_hw hw;
52 	struct clk_fixed_factor lp;
53 	struct clk_fixed_factor hp;
54 	struct clk_gate gate;
55 	bool (*is_in_low_power)(void);
56 };
57 
58 #define to_pxa_clk(_hw) container_of(_hw, struct pxa_clk, hw)
59 
60 static unsigned long cken_recalc_rate(struct clk_hw *hw,
61 				      unsigned long parent_rate)
62 {
63 	struct pxa_clk *pclk = to_pxa_clk(hw);
64 	struct clk_fixed_factor *fix;
65 
66 	if (!pclk->is_in_low_power || pclk->is_in_low_power())
67 		fix = &pclk->lp;
68 	else
69 		fix = &pclk->hp;
70 	__clk_hw_set_clk(&fix->hw, hw);
71 	return clk_fixed_factor_ops.recalc_rate(&fix->hw, parent_rate);
72 }
73 
74 static const struct clk_ops cken_rate_ops = {
75 	.recalc_rate = cken_recalc_rate,
76 };
77 
78 static u8 cken_get_parent(struct clk_hw *hw)
79 {
80 	struct pxa_clk *pclk = to_pxa_clk(hw);
81 
82 	if (!pclk->is_in_low_power)
83 		return 0;
84 	return pclk->is_in_low_power() ? 0 : 1;
85 }
86 
87 static const struct clk_ops cken_mux_ops = {
88 	.get_parent = cken_get_parent,
89 	.set_parent = dummy_clk_set_parent,
90 };
91 
92 void __init clkdev_pxa_register(int ckid, const char *con_id,
93 				const char *dev_id, struct clk *clk)
94 {
95 	if (!IS_ERR(clk) && (ckid != CLK_NONE))
96 		pxa_clocks[ckid] = clk;
97 	if (!IS_ERR(clk))
98 		clk_register_clkdev(clk, con_id, dev_id);
99 }
100 
101 int __init clk_pxa_cken_init(const struct desc_clk_cken *clks, int nb_clks)
102 {
103 	int i;
104 	struct pxa_clk *pxa_clk;
105 	struct clk *clk;
106 
107 	for (i = 0; i < nb_clks; i++) {
108 		pxa_clk = kzalloc(sizeof(*pxa_clk), GFP_KERNEL);
109 		pxa_clk->is_in_low_power = clks[i].is_in_low_power;
110 		pxa_clk->lp = clks[i].lp;
111 		pxa_clk->hp = clks[i].hp;
112 		pxa_clk->gate = clks[i].gate;
113 		pxa_clk->gate.lock = &pxa_clk_lock;
114 		clk = clk_register_composite(NULL, clks[i].name,
115 					     clks[i].parent_names, 2,
116 					     &pxa_clk->hw, &cken_mux_ops,
117 					     &pxa_clk->hw, &cken_rate_ops,
118 					     &pxa_clk->gate.hw, &clk_gate_ops,
119 					     clks[i].flags);
120 		clkdev_pxa_register(clks[i].ckid, clks[i].con_id,
121 				    clks[i].dev_id, clk);
122 	}
123 	return 0;
124 }
125 
126 void __init clk_pxa_dt_common_init(struct device_node *np)
127 {
128 	of_clk_add_provider(np, of_clk_src_onecell_get, &onecell_data);
129 }
130 
131 void pxa2xx_core_turbo_switch(bool on)
132 {
133 	unsigned long flags;
134 	unsigned int unused, clkcfg;
135 
136 	local_irq_save(flags);
137 
138 	asm("mrc p14, 0, %0, c6, c0, 0" : "=r" (clkcfg));
139 	clkcfg &= ~CLKCFG_TURBO & ~CLKCFG_HALFTURBO;
140 	if (on)
141 		clkcfg |= CLKCFG_TURBO;
142 	clkcfg |= CLKCFG_FCS;
143 
144 	asm volatile(
145 	"	b	2f\n"
146 	"	.align	5\n"
147 	"1:	mcr	p14, 0, %1, c6, c0, 0\n"
148 	"	b	3f\n"
149 	"2:	b	1b\n"
150 	"3:	nop\n"
151 		: "=&r" (unused) : "r" (clkcfg));
152 
153 	local_irq_restore(flags);
154 }
155 
156 void pxa2xx_cpll_change(struct pxa2xx_freq *freq,
157 			u32 (*mdrefr_dri)(unsigned int), void __iomem *mdrefr,
158 			void __iomem *cccr)
159 {
160 	unsigned int clkcfg = freq->clkcfg;
161 	unsigned int unused, preset_mdrefr, postset_mdrefr;
162 	unsigned long flags;
163 
164 	local_irq_save(flags);
165 
166 	/* Calculate the next MDREFR.  If we're slowing down the SDRAM clock
167 	 * we need to preset the smaller DRI before the change.	 If we're
168 	 * speeding up we need to set the larger DRI value after the change.
169 	 */
170 	preset_mdrefr = postset_mdrefr = readl(mdrefr);
171 	if ((preset_mdrefr & MDREFR_DRI_MASK) > mdrefr_dri(freq->membus_khz)) {
172 		preset_mdrefr = (preset_mdrefr & ~MDREFR_DRI_MASK);
173 		preset_mdrefr |= mdrefr_dri(freq->membus_khz);
174 	}
175 	postset_mdrefr =
176 		(postset_mdrefr & ~MDREFR_DRI_MASK) |
177 		mdrefr_dri(freq->membus_khz);
178 
179 	/* If we're dividing the memory clock by two for the SDRAM clock, this
180 	 * must be set prior to the change.  Clearing the divide must be done
181 	 * after the change.
182 	 */
183 	if (freq->div2) {
184 		preset_mdrefr  |= MDREFR_DB2_MASK;
185 		postset_mdrefr |= MDREFR_DB2_MASK;
186 	} else {
187 		postset_mdrefr &= ~MDREFR_DB2_MASK;
188 	}
189 
190 	/* Set new the CCCR and prepare CLKCFG */
191 	writel(freq->cccr, cccr);
192 
193 	asm volatile(
194 	"	ldr	r4, [%1]\n"
195 	"	b	2f\n"
196 	"	.align	5\n"
197 	"1:	str	%3, [%1]		/* preset the MDREFR */\n"
198 	"	mcr	p14, 0, %2, c6, c0, 0	/* set CLKCFG[FCS] */\n"
199 	"	str	%4, [%1]		/* postset the MDREFR */\n"
200 	"	b	3f\n"
201 	"2:	b	1b\n"
202 	"3:	nop\n"
203 	     : "=&r" (unused)
204 	     : "r" (mdrefr), "r" (clkcfg), "r" (preset_mdrefr),
205 	       "r" (postset_mdrefr)
206 	     : "r4", "r5");
207 
208 	local_irq_restore(flags);
209 }
210 
211 int pxa2xx_determine_rate(struct clk_rate_request *req,
212 			  struct pxa2xx_freq *freqs, int nb_freqs)
213 {
214 	int i, closest_below = -1, closest_above = -1;
215 	unsigned long rate;
216 
217 	for (i = 0; i < nb_freqs; i++) {
218 		rate = freqs[i].cpll;
219 		if (rate == req->rate)
220 			break;
221 		if (rate < req->min_rate)
222 			continue;
223 		if (rate > req->max_rate)
224 			continue;
225 		if (rate <= req->rate)
226 			closest_below = i;
227 		if ((rate >= req->rate) && (closest_above == -1))
228 			closest_above = i;
229 	}
230 
231 	req->best_parent_hw = NULL;
232 
233 	if (i < nb_freqs) {
234 		rate = req->rate;
235 	} else if (closest_below >= 0) {
236 		rate = freqs[closest_below].cpll;
237 	} else if (closest_above >= 0) {
238 		rate = freqs[closest_above].cpll;
239 	} else {
240 		pr_debug("%s(rate=%lu) no match\n", __func__, req->rate);
241 		return -EINVAL;
242 	}
243 
244 	pr_debug("%s(rate=%lu) rate=%lu\n", __func__, req->rate, rate);
245 	req->rate = rate;
246 
247 	return 0;
248 }
249