1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2016 Maxime Ripard
4 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 #include <linux/clk-provider.h>
14 unsigned long n
, min_n
, max_n
;
15 unsigned long k
, min_k
, max_k
;
16 unsigned long m
, min_m
, max_m
;
17 unsigned long p
, min_p
, max_p
;
20 static unsigned long ccu_nkmp_calc_rate(unsigned long parent
,
21 unsigned long n
, unsigned long k
,
22 unsigned long m
, unsigned long p
)
32 static unsigned long ccu_nkmp_find_best(unsigned long parent
, unsigned long rate
,
33 struct _ccu_nkmp
*nkmp
)
35 unsigned long best_rate
= 0;
36 unsigned long best_n
= 0, best_k
= 0, best_m
= 0, best_p
= 0;
37 unsigned long _n
, _k
, _m
, _p
;
39 for (_k
= nkmp
->min_k
; _k
<= nkmp
->max_k
; _k
++) {
40 for (_n
= nkmp
->min_n
; _n
<= nkmp
->max_n
; _n
++) {
41 for (_m
= nkmp
->min_m
; _m
<= nkmp
->max_m
; _m
++) {
42 for (_p
= nkmp
->min_p
; _p
<= nkmp
->max_p
; _p
<<= 1) {
43 unsigned long tmp_rate
;
45 tmp_rate
= ccu_nkmp_calc_rate(parent
,
52 if ((rate
- tmp_rate
) < (rate
- best_rate
)) {
72 static void ccu_nkmp_disable(struct clk_hw
*hw
)
74 struct ccu_nkmp
*nkmp
= hw_to_ccu_nkmp(hw
);
76 return ccu_gate_helper_disable(&nkmp
->common
, nkmp
->enable
);
79 static int ccu_nkmp_enable(struct clk_hw
*hw
)
81 struct ccu_nkmp
*nkmp
= hw_to_ccu_nkmp(hw
);
83 return ccu_gate_helper_enable(&nkmp
->common
, nkmp
->enable
);
86 static int ccu_nkmp_is_enabled(struct clk_hw
*hw
)
88 struct ccu_nkmp
*nkmp
= hw_to_ccu_nkmp(hw
);
90 return ccu_gate_helper_is_enabled(&nkmp
->common
, nkmp
->enable
);
93 static unsigned long ccu_nkmp_recalc_rate(struct clk_hw
*hw
,
94 unsigned long parent_rate
)
96 struct ccu_nkmp
*nkmp
= hw_to_ccu_nkmp(hw
);
97 unsigned long n
, m
, k
, p
, rate
;
100 reg
= readl(nkmp
->common
.base
+ nkmp
->common
.reg
);
102 n
= reg
>> nkmp
->n
.shift
;
103 n
&= (1 << nkmp
->n
.width
) - 1;
108 k
= reg
>> nkmp
->k
.shift
;
109 k
&= (1 << nkmp
->k
.width
) - 1;
114 m
= reg
>> nkmp
->m
.shift
;
115 m
&= (1 << nkmp
->m
.width
) - 1;
120 p
= reg
>> nkmp
->p
.shift
;
121 p
&= (1 << nkmp
->p
.width
) - 1;
123 rate
= ccu_nkmp_calc_rate(parent_rate
, n
, k
, m
, 1 << p
);
124 if (nkmp
->common
.features
& CCU_FEATURE_FIXED_POSTDIV
)
125 rate
/= nkmp
->fixed_post_div
;
130 static long ccu_nkmp_round_rate(struct clk_hw
*hw
, unsigned long rate
,
131 unsigned long *parent_rate
)
133 struct ccu_nkmp
*nkmp
= hw_to_ccu_nkmp(hw
);
134 struct _ccu_nkmp _nkmp
;
136 if (nkmp
->common
.features
& CCU_FEATURE_FIXED_POSTDIV
)
137 rate
*= nkmp
->fixed_post_div
;
139 if (nkmp
->max_rate
&& rate
> nkmp
->max_rate
) {
140 rate
= nkmp
->max_rate
;
141 if (nkmp
->common
.features
& CCU_FEATURE_FIXED_POSTDIV
)
142 rate
/= nkmp
->fixed_post_div
;
146 _nkmp
.min_n
= nkmp
->n
.min
?: 1;
147 _nkmp
.max_n
= nkmp
->n
.max
?: 1 << nkmp
->n
.width
;
148 _nkmp
.min_k
= nkmp
->k
.min
?: 1;
149 _nkmp
.max_k
= nkmp
->k
.max
?: 1 << nkmp
->k
.width
;
151 _nkmp
.max_m
= nkmp
->m
.max
?: 1 << nkmp
->m
.width
;
153 _nkmp
.max_p
= nkmp
->p
.max
?: 1 << ((1 << nkmp
->p
.width
) - 1);
155 rate
= ccu_nkmp_find_best(*parent_rate
, rate
, &_nkmp
);
157 if (nkmp
->common
.features
& CCU_FEATURE_FIXED_POSTDIV
)
158 rate
= rate
/ nkmp
->fixed_post_div
;
163 static int ccu_nkmp_set_rate(struct clk_hw
*hw
, unsigned long rate
,
164 unsigned long parent_rate
)
166 struct ccu_nkmp
*nkmp
= hw_to_ccu_nkmp(hw
);
167 u32 n_mask
= 0, k_mask
= 0, m_mask
= 0, p_mask
= 0;
168 struct _ccu_nkmp _nkmp
;
172 if (nkmp
->common
.features
& CCU_FEATURE_FIXED_POSTDIV
)
173 rate
= rate
* nkmp
->fixed_post_div
;
175 _nkmp
.min_n
= nkmp
->n
.min
?: 1;
176 _nkmp
.max_n
= nkmp
->n
.max
?: 1 << nkmp
->n
.width
;
177 _nkmp
.min_k
= nkmp
->k
.min
?: 1;
178 _nkmp
.max_k
= nkmp
->k
.max
?: 1 << nkmp
->k
.width
;
180 _nkmp
.max_m
= nkmp
->m
.max
?: 1 << nkmp
->m
.width
;
182 _nkmp
.max_p
= nkmp
->p
.max
?: 1 << ((1 << nkmp
->p
.width
) - 1);
184 ccu_nkmp_find_best(parent_rate
, rate
, &_nkmp
);
187 * If width is 0, GENMASK() macro may not generate expected mask (0)
188 * as it falls under undefined behaviour by C standard due to shifts
189 * which are equal or greater than width of left operand. This can
190 * be easily avoided by explicitly checking if width is 0.
193 n_mask
= GENMASK(nkmp
->n
.width
+ nkmp
->n
.shift
- 1,
196 k_mask
= GENMASK(nkmp
->k
.width
+ nkmp
->k
.shift
- 1,
199 m_mask
= GENMASK(nkmp
->m
.width
+ nkmp
->m
.shift
- 1,
202 p_mask
= GENMASK(nkmp
->p
.width
+ nkmp
->p
.shift
- 1,
205 spin_lock_irqsave(nkmp
->common
.lock
, flags
);
207 reg
= readl(nkmp
->common
.base
+ nkmp
->common
.reg
);
208 reg
&= ~(n_mask
| k_mask
| m_mask
| p_mask
);
210 reg
|= ((_nkmp
.n
- nkmp
->n
.offset
) << nkmp
->n
.shift
) & n_mask
;
211 reg
|= ((_nkmp
.k
- nkmp
->k
.offset
) << nkmp
->k
.shift
) & k_mask
;
212 reg
|= ((_nkmp
.m
- nkmp
->m
.offset
) << nkmp
->m
.shift
) & m_mask
;
213 reg
|= (ilog2(_nkmp
.p
) << nkmp
->p
.shift
) & p_mask
;
215 writel(reg
, nkmp
->common
.base
+ nkmp
->common
.reg
);
217 spin_unlock_irqrestore(nkmp
->common
.lock
, flags
);
219 ccu_helper_wait_for_lock(&nkmp
->common
, nkmp
->lock
);
224 const struct clk_ops ccu_nkmp_ops
= {
225 .disable
= ccu_nkmp_disable
,
226 .enable
= ccu_nkmp_enable
,
227 .is_enabled
= ccu_nkmp_is_enabled
,
229 .recalc_rate
= ccu_nkmp_recalc_rate
,
230 .round_rate
= ccu_nkmp_round_rate
,
231 .set_rate
= ccu_nkmp_set_rate
,
233 EXPORT_SYMBOL_NS_GPL(ccu_nkmp_ops
, "SUNXI_CCU");