blob: b9cfee0276eaa05d75ef854c5fcca3b7297e7180 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Maxime Riparddf6561e2016-06-29 21:05:32 +02002/*
3 * Copyright (C) 2016 Maxime Ripard
4 * Maxime Ripard <maxime.ripard@free-electrons.com>
Maxime Riparddf6561e2016-06-29 21:05:32 +02005 */
6
7#include <linux/clk-provider.h>
Stephen Boyd62e59c42019-04-18 15:20:22 -07008#include <linux/io.h>
Maxime Riparddf6561e2016-06-29 21:05:32 +02009
10#include "ccu_gate.h"
11#include "ccu_nkm.h"
12
13struct _ccu_nkm {
Maxime Ripard6e0d50d2016-09-29 22:57:26 +020014 unsigned long n, min_n, max_n;
15 unsigned long k, min_k, max_k;
16 unsigned long m, min_m, max_m;
Maxime Riparddf6561e2016-06-29 21:05:32 +020017};
18
19static void ccu_nkm_find_best(unsigned long parent, unsigned long rate,
20 struct _ccu_nkm *nkm)
21{
22 unsigned long best_rate = 0;
23 unsigned long best_n = 0, best_k = 0, best_m = 0;
24 unsigned long _n, _k, _m;
25
Maxime Ripard6e0d50d2016-09-29 22:57:26 +020026 for (_k = nkm->min_k; _k <= nkm->max_k; _k++) {
27 for (_n = nkm->min_n; _n <= nkm->max_n; _n++) {
28 for (_m = nkm->min_m; _m <= nkm->max_m; _m++) {
Maxime Ripardee286482016-09-29 22:53:12 +020029 unsigned long tmp_rate;
Maxime Riparddf6561e2016-06-29 21:05:32 +020030
Maxime Ripardee286482016-09-29 22:53:12 +020031 tmp_rate = parent * _n * _k / _m;
Maxime Riparddf6561e2016-06-29 21:05:32 +020032
Maxime Ripardee286482016-09-29 22:53:12 +020033 if (tmp_rate > rate)
34 continue;
35 if ((rate - tmp_rate) < (rate - best_rate)) {
36 best_rate = tmp_rate;
37 best_n = _n;
38 best_k = _k;
39 best_m = _m;
40 }
41 }
Maxime Riparddf6561e2016-06-29 21:05:32 +020042 }
43 }
44
45 nkm->n = best_n;
46 nkm->k = best_k;
47 nkm->m = best_m;
48}
49
50static void ccu_nkm_disable(struct clk_hw *hw)
51{
52 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
53
54 return ccu_gate_helper_disable(&nkm->common, nkm->enable);
55}
56
57static int ccu_nkm_enable(struct clk_hw *hw)
58{
59 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
60
61 return ccu_gate_helper_enable(&nkm->common, nkm->enable);
62}
63
64static int ccu_nkm_is_enabled(struct clk_hw *hw)
65{
66 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
67
68 return ccu_gate_helper_is_enabled(&nkm->common, nkm->enable);
69}
70
71static unsigned long ccu_nkm_recalc_rate(struct clk_hw *hw,
72 unsigned long parent_rate)
73{
74 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
Icenowy Zhenga6653772017-08-12 20:43:51 +080075 unsigned long n, m, k, rate;
Maxime Riparddf6561e2016-06-29 21:05:32 +020076 u32 reg;
77
78 reg = readl(nkm->common.base + nkm->common.reg);
79
80 n = reg >> nkm->n.shift;
81 n &= (1 << nkm->n.width) - 1;
Maxime Riparde66f81b2016-11-08 18:12:34 +010082 n += nkm->n.offset;
83 if (!n)
84 n++;
Maxime Riparddf6561e2016-06-29 21:05:32 +020085
86 k = reg >> nkm->k.shift;
87 k &= (1 << nkm->k.width) - 1;
Maxime Riparde66f81b2016-11-08 18:12:34 +010088 k += nkm->k.offset;
89 if (!k)
90 k++;
Maxime Riparddf6561e2016-06-29 21:05:32 +020091
92 m = reg >> nkm->m.shift;
93 m &= (1 << nkm->m.width) - 1;
Maxime Riparde66f81b2016-11-08 18:12:34 +010094 m += nkm->m.offset;
95 if (!m)
96 m++;
Maxime Riparddf6561e2016-06-29 21:05:32 +020097
Icenowy Zhenga6653772017-08-12 20:43:51 +080098 rate = parent_rate * n * k / m;
99
100 if (nkm->common.features & CCU_FEATURE_FIXED_POSTDIV)
101 rate /= nkm->fixed_post_div;
102
103 return rate;
Maxime Riparddf6561e2016-06-29 21:05:32 +0200104}
105
Chen-Yu Tsaia3658352016-07-26 15:04:28 +0800106static unsigned long ccu_nkm_round_rate(struct ccu_mux_internal *mux,
Maxime Ripard10a8d9b2017-05-17 09:40:31 +0200107 struct clk_hw *hw,
108 unsigned long *parent_rate,
Chen-Yu Tsaia3658352016-07-26 15:04:28 +0800109 unsigned long rate,
110 void *data)
Maxime Riparddf6561e2016-06-29 21:05:32 +0200111{
Chen-Yu Tsaia3658352016-07-26 15:04:28 +0800112 struct ccu_nkm *nkm = data;
Maxime Riparddf6561e2016-06-29 21:05:32 +0200113 struct _ccu_nkm _nkm;
114
Chen-Yu Tsai4162c5c2017-03-24 16:33:05 +0800115 _nkm.min_n = nkm->n.min ?: 1;
Maxime Ripard0c3c8e12016-10-14 12:08:19 +0200116 _nkm.max_n = nkm->n.max ?: 1 << nkm->n.width;
Chen-Yu Tsai4162c5c2017-03-24 16:33:05 +0800117 _nkm.min_k = nkm->k.min ?: 1;
Maxime Ripard0c3c8e12016-10-14 12:08:19 +0200118 _nkm.max_k = nkm->k.max ?: 1 << nkm->k.width;
Maxime Ripard6e0d50d2016-09-29 22:57:26 +0200119 _nkm.min_m = 1;
Maxime Ripard87ba9e52016-09-06 12:29:04 +0200120 _nkm.max_m = nkm->m.max ?: 1 << nkm->m.width;
Maxime Riparddf6561e2016-06-29 21:05:32 +0200121
Icenowy Zhenga6653772017-08-12 20:43:51 +0800122 if (nkm->common.features & CCU_FEATURE_FIXED_POSTDIV)
123 rate *= nkm->fixed_post_div;
124
Maxime Ripard10a8d9b2017-05-17 09:40:31 +0200125 ccu_nkm_find_best(*parent_rate, rate, &_nkm);
Maxime Riparddf6561e2016-06-29 21:05:32 +0200126
Icenowy Zhenga6653772017-08-12 20:43:51 +0800127 rate = *parent_rate * _nkm.n * _nkm.k / _nkm.m;
128
129 if (nkm->common.features & CCU_FEATURE_FIXED_POSTDIV)
130 rate /= nkm->fixed_post_div;
131
132 return rate;
Chen-Yu Tsaia3658352016-07-26 15:04:28 +0800133}
134
135static int ccu_nkm_determine_rate(struct clk_hw *hw,
136 struct clk_rate_request *req)
137{
138 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
139
140 return ccu_mux_helper_determine_rate(&nkm->common, &nkm->mux,
141 req, ccu_nkm_round_rate, nkm);
Maxime Riparddf6561e2016-06-29 21:05:32 +0200142}
143
144static int ccu_nkm_set_rate(struct clk_hw *hw, unsigned long rate,
145 unsigned long parent_rate)
146{
147 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
148 struct _ccu_nkm _nkm;
149 unsigned long flags;
150 u32 reg;
151
Icenowy Zhenga6653772017-08-12 20:43:51 +0800152 if (nkm->common.features & CCU_FEATURE_FIXED_POSTDIV)
153 rate *= nkm->fixed_post_div;
154
Chen-Yu Tsai4162c5c2017-03-24 16:33:05 +0800155 _nkm.min_n = nkm->n.min ?: 1;
Maxime Ripard0c3c8e12016-10-14 12:08:19 +0200156 _nkm.max_n = nkm->n.max ?: 1 << nkm->n.width;
Chen-Yu Tsai4162c5c2017-03-24 16:33:05 +0800157 _nkm.min_k = nkm->k.min ?: 1;
Maxime Ripard0c3c8e12016-10-14 12:08:19 +0200158 _nkm.max_k = nkm->k.max ?: 1 << nkm->k.width;
Maxime Ripard6e0d50d2016-09-29 22:57:26 +0200159 _nkm.min_m = 1;
Maxime Ripard87ba9e52016-09-06 12:29:04 +0200160 _nkm.max_m = nkm->m.max ?: 1 << nkm->m.width;
Maxime Riparddf6561e2016-06-29 21:05:32 +0200161
162 ccu_nkm_find_best(parent_rate, rate, &_nkm);
163
164 spin_lock_irqsave(nkm->common.lock, flags);
165
166 reg = readl(nkm->common.base + nkm->common.reg);
167 reg &= ~GENMASK(nkm->n.width + nkm->n.shift - 1, nkm->n.shift);
168 reg &= ~GENMASK(nkm->k.width + nkm->k.shift - 1, nkm->k.shift);
169 reg &= ~GENMASK(nkm->m.width + nkm->m.shift - 1, nkm->m.shift);
170
Maxime Riparde66f81b2016-11-08 18:12:34 +0100171 reg |= (_nkm.n - nkm->n.offset) << nkm->n.shift;
172 reg |= (_nkm.k - nkm->k.offset) << nkm->k.shift;
173 reg |= (_nkm.m - nkm->m.offset) << nkm->m.shift;
Maxime Riparddf6561e2016-06-29 21:05:32 +0200174 writel(reg, nkm->common.base + nkm->common.reg);
175
176 spin_unlock_irqrestore(nkm->common.lock, flags);
177
178 ccu_helper_wait_for_lock(&nkm->common, nkm->lock);
179
180 return 0;
181}
182
Chen-Yu Tsaia3658352016-07-26 15:04:28 +0800183static u8 ccu_nkm_get_parent(struct clk_hw *hw)
184{
185 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
186
187 return ccu_mux_helper_get_parent(&nkm->common, &nkm->mux);
188}
189
190static int ccu_nkm_set_parent(struct clk_hw *hw, u8 index)
191{
192 struct ccu_nkm *nkm = hw_to_ccu_nkm(hw);
193
194 return ccu_mux_helper_set_parent(&nkm->common, &nkm->mux, index);
195}
196
Maxime Riparddf6561e2016-06-29 21:05:32 +0200197const struct clk_ops ccu_nkm_ops = {
198 .disable = ccu_nkm_disable,
199 .enable = ccu_nkm_enable,
200 .is_enabled = ccu_nkm_is_enabled,
201
Chen-Yu Tsaia3658352016-07-26 15:04:28 +0800202 .get_parent = ccu_nkm_get_parent,
203 .set_parent = ccu_nkm_set_parent,
204
205 .determine_rate = ccu_nkm_determine_rate,
Maxime Riparddf6561e2016-06-29 21:05:32 +0200206 .recalc_rate = ccu_nkm_recalc_rate,
Maxime Riparddf6561e2016-06-29 21:05:32 +0200207 .set_rate = ccu_nkm_set_rate,
208};