sh_eth: fix EESIPR values for SH77{34|63}
[linux/fpc-iii.git] / drivers / clk / sunxi-ng / ccu_nkm.c
blob9b840a47a94d8774aef65388058dfc7f0d589c5d
1 /*
2 * Copyright (C) 2016 Maxime Ripard
3 * Maxime Ripard <maxime.ripard@free-electrons.com>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 */
11 #include <linux/clk-provider.h>
13 #include "ccu_gate.h"
14 #include "ccu_nkm.h"
16 struct _ccu_nkm {
17 unsigned long n, min_n, max_n;
18 unsigned long k, min_k, max_k;
19 unsigned long m, min_m, max_m;
22 static void ccu_nkm_find_best(unsigned long parent, unsigned long rate,
23 struct _ccu_nkm *nkm)
25 unsigned long best_rate = 0;
26 unsigned long best_n = 0, best_k = 0, best_m = 0;
27 unsigned long _n, _k, _m;
29 for (_k = nkm->min_k; _k <= nkm->max_k; _k++) {
30 for (_n = nkm->min_n; _n <= nkm->max_n; _n++) {
31 for (_m = nkm->min_m; _m <= nkm->max_m; _m++) {
32 unsigned long tmp_rate;
34 tmp_rate = parent * _n * _k / _m;
36 if (tmp_rate > rate)
37 continue;
38 if ((rate - tmp_rate) < (rate - best_rate)) {
39 best_rate = tmp_rate;
40 best_n = _n;
41 best_k = _k;
42 best_m = _m;
48 nkm->n = best_n;
49 nkm->k = best_k;
50 nkm->m = best_m;
53 static void ccu_nkm_disable(struct clk_hw *hw)
55 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
57 return ccu_gate_helper_disable(&nkm->common, nkm->enable);
60 static int ccu_nkm_enable(struct clk_hw *hw)
62 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
64 return ccu_gate_helper_enable(&nkm->common, nkm->enable);
67 static int ccu_nkm_is_enabled(struct clk_hw *hw)
69 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
71 return ccu_gate_helper_is_enabled(&nkm->common, nkm->enable);
74 static unsigned long ccu_nkm_recalc_rate(struct clk_hw *hw,
75 unsigned long parent_rate)
77 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
78 unsigned long n, m, k;
79 u32 reg;
81 reg = readl(nkm->common.base + nkm->common.reg);
83 n = reg >> nkm->n.shift;
84 n &= (1 << nkm->n.width) - 1;
86 k = reg >> nkm->k.shift;
87 k &= (1 << nkm->k.width) - 1;
89 m = reg >> nkm->m.shift;
90 m &= (1 << nkm->m.width) - 1;
92 return parent_rate * (n + 1) * (k + 1) / (m + 1);
95 static unsigned long ccu_nkm_round_rate(struct ccu_mux_internal *mux,
96 unsigned long parent_rate,
97 unsigned long rate,
98 void *data)
100 struct ccu_nkm *nkm = data;
101 struct _ccu_nkm _nkm;
103 _nkm.min_n = nkm->n.min;
104 _nkm.max_n = 1 << nkm->n.width;
105 _nkm.min_k = nkm->k.min;
106 _nkm.max_k = 1 << nkm->k.width;
107 _nkm.min_m = 1;
108 _nkm.max_m = nkm->m.max ?: 1 << nkm->m.width;
110 ccu_nkm_find_best(parent_rate, rate, &_nkm);
112 return parent_rate * _nkm.n * _nkm.k / _nkm.m;
115 static int ccu_nkm_determine_rate(struct clk_hw *hw,
116 struct clk_rate_request *req)
118 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
120 return ccu_mux_helper_determine_rate(&nkm->common, &nkm->mux,
121 req, ccu_nkm_round_rate, nkm);
124 static int ccu_nkm_set_rate(struct clk_hw *hw, unsigned long rate,
125 unsigned long parent_rate)
127 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
128 struct _ccu_nkm _nkm;
129 unsigned long flags;
130 u32 reg;
132 _nkm.min_n = nkm->n.min;
133 _nkm.max_n = 1 << nkm->n.width;
134 _nkm.min_k = nkm->k.min;
135 _nkm.max_k = 1 << nkm->k.width;
136 _nkm.min_m = 1;
137 _nkm.max_m = nkm->m.max ?: 1 << nkm->m.width;
139 ccu_nkm_find_best(parent_rate, rate, &_nkm);
141 spin_lock_irqsave(nkm->common.lock, flags);
143 reg = readl(nkm->common.base + nkm->common.reg);
144 reg &= ~GENMASK(nkm->n.width + nkm->n.shift - 1, nkm->n.shift);
145 reg &= ~GENMASK(nkm->k.width + nkm->k.shift - 1, nkm->k.shift);
146 reg &= ~GENMASK(nkm->m.width + nkm->m.shift - 1, nkm->m.shift);
148 reg |= (_nkm.n - 1) << nkm->n.shift;
149 reg |= (_nkm.k - 1) << nkm->k.shift;
150 reg |= (_nkm.m - 1) << nkm->m.shift;
152 writel(reg, nkm->common.base + nkm->common.reg);
154 spin_unlock_irqrestore(nkm->common.lock, flags);
156 ccu_helper_wait_for_lock(&nkm->common, nkm->lock);
158 return 0;
161 static u8 ccu_nkm_get_parent(struct clk_hw *hw)
163 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
165 return ccu_mux_helper_get_parent(&nkm->common, &nkm->mux);
168 static int ccu_nkm_set_parent(struct clk_hw *hw, u8 index)
170 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
172 return ccu_mux_helper_set_parent(&nkm->common, &nkm->mux, index);
175 const struct clk_ops ccu_nkm_ops = {
176 .disable = ccu_nkm_disable,
177 .enable = ccu_nkm_enable,
178 .is_enabled = ccu_nkm_is_enabled,
180 .get_parent = ccu_nkm_get_parent,
181 .set_parent = ccu_nkm_set_parent,
183 .determine_rate = ccu_nkm_determine_rate,
184 .recalc_rate = ccu_nkm_recalc_rate,
185 .set_rate = ccu_nkm_set_rate,