Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0
2 *
3 * Clock Tree for the Texas Instruments TLV320AIC32x4
4 *
5 * Copyright 2019 Annaliese McDermond
6 *
7 * Author: Annaliese McDermond <nh6z@nh6z.net>
8 */
9
10#include <linux/clk-provider.h>
11#include <linux/clkdev.h>
12#include <linux/regmap.h>
13#include <linux/device.h>
14
15#include "tlv320aic32x4.h"
16
17#define to_clk_aic32x4(_hw) container_of(_hw, struct clk_aic32x4, hw)
18struct clk_aic32x4 {
19 struct clk_hw hw;
20 struct device *dev;
21 struct regmap *regmap;
22 unsigned int reg;
23};
24
25/*
26 * struct clk_aic32x4_pll_muldiv - Multiplier/divider settings
27 * @p: Divider
28 * @r: first multiplier
29 * @j: integer part of second multiplier
30 * @d: decimal part of second multiplier
31 */
32struct clk_aic32x4_pll_muldiv {
33 u8 p;
34 u16 r;
35 u8 j;
36 u16 d;
37};
38
39struct aic32x4_clkdesc {
40 const char *name;
41 const char * const *parent_names;
42 unsigned int num_parents;
43 const struct clk_ops *ops;
44 unsigned int reg;
45};
46
47static int clk_aic32x4_pll_prepare(struct clk_hw *hw)
48{
49 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
50
51 return regmap_update_bits(pll->regmap, AIC32X4_PLLPR,
52 AIC32X4_PLLEN, AIC32X4_PLLEN);
53}
54
55static void clk_aic32x4_pll_unprepare(struct clk_hw *hw)
56{
57 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
58
59 regmap_update_bits(pll->regmap, AIC32X4_PLLPR,
60 AIC32X4_PLLEN, 0);
61}
62
63static int clk_aic32x4_pll_is_prepared(struct clk_hw *hw)
64{
65 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
66
67 unsigned int val;
68 int ret;
69
70 ret = regmap_read(pll->regmap, AIC32X4_PLLPR, &val);
71 if (ret < 0)
72 return ret;
73
74 return !!(val & AIC32X4_PLLEN);
75}
76
77static int clk_aic32x4_pll_get_muldiv(struct clk_aic32x4 *pll,
78 struct clk_aic32x4_pll_muldiv *settings)
79{
80 /* Change to use regmap_bulk_read? */
81 unsigned int val;
82 int ret;
83
84 ret = regmap_read(pll->regmap, AIC32X4_PLLPR, &val);
85 if (ret < 0)
86 return ret;
87 settings->r = val & AIC32X4_PLL_R_MASK;
88 settings->p = (val & AIC32X4_PLL_P_MASK) >> AIC32X4_PLL_P_SHIFT;
89
90 ret = regmap_read(pll->regmap, AIC32X4_PLLJ, &val);
91 if (ret < 0)
92 return ret;
93 settings->j = val;
94
95 ret = regmap_read(pll->regmap, AIC32X4_PLLDMSB, &val);
96 if (ret < 0)
97 return ret;
98 settings->d = val << 8;
99
100 ret = regmap_read(pll->regmap, AIC32X4_PLLDLSB, &val);
101 if (ret < 0)
102 return ret;
103 settings->d |= val;
104
105 return 0;
106}
107
108static int clk_aic32x4_pll_set_muldiv(struct clk_aic32x4 *pll,
109 struct clk_aic32x4_pll_muldiv *settings)
110{
111 int ret;
112 /* Change to use regmap_bulk_write for some if not all? */
113
114 ret = regmap_update_bits(pll->regmap, AIC32X4_PLLPR,
115 AIC32X4_PLL_R_MASK, settings->r);
116 if (ret < 0)
117 return ret;
118
119 ret = regmap_update_bits(pll->regmap, AIC32X4_PLLPR,
120 AIC32X4_PLL_P_MASK,
121 settings->p << AIC32X4_PLL_P_SHIFT);
122 if (ret < 0)
123 return ret;
124
125 ret = regmap_write(pll->regmap, AIC32X4_PLLJ, settings->j);
126 if (ret < 0)
127 return ret;
128
129 ret = regmap_write(pll->regmap, AIC32X4_PLLDMSB, (settings->d >> 8));
130 if (ret < 0)
131 return ret;
132 ret = regmap_write(pll->regmap, AIC32X4_PLLDLSB, (settings->d & 0xff));
133 if (ret < 0)
134 return ret;
135
136 return 0;
137}
138
139static unsigned long clk_aic32x4_pll_calc_rate(
140 struct clk_aic32x4_pll_muldiv *settings,
141 unsigned long parent_rate)
142{
143 u64 rate;
144 /*
145 * We scale j by 10000 to account for the decimal part of P and divide
146 * it back out later.
147 */
148 rate = (u64) parent_rate * settings->r *
149 ((settings->j * 10000) + settings->d);
150
151 return (unsigned long) DIV_ROUND_UP_ULL(rate, settings->p * 10000);
152}
153
154static int clk_aic32x4_pll_calc_muldiv(struct clk_aic32x4_pll_muldiv *settings,
155 unsigned long rate, unsigned long parent_rate)
156{
157 u64 multiplier;
158
159 settings->p = parent_rate / AIC32X4_MAX_PLL_CLKIN + 1;
160 if (settings->p > 8)
161 return -1;
162
163 /*
164 * We scale this figure by 10000 so that we can get the decimal part
165 * of the multiplier. This is because we can't do floating point
166 * math in the kernel.
167 */
168 multiplier = (u64) rate * settings->p * 10000;
169 do_div(multiplier, parent_rate);
170
171 /*
172 * J can't be over 64, so R can scale this.
173 * R can't be greater than 4.
174 */
175 settings->r = ((u32) multiplier / 640000) + 1;
176 if (settings->r > 4)
177 return -1;
178 do_div(multiplier, settings->r);
179
180 /*
181 * J can't be < 1.
182 */
183 if (multiplier < 10000)
184 return -1;
185
186 /* Figure out the integer part, J, and the fractional part, D. */
187 settings->j = (u32) multiplier / 10000;
188 settings->d = (u32) multiplier % 10000;
189
190 return 0;
191}
192
193static unsigned long clk_aic32x4_pll_recalc_rate(struct clk_hw *hw,
194 unsigned long parent_rate)
195{
196 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
197 struct clk_aic32x4_pll_muldiv settings;
198 int ret;
199
200 ret = clk_aic32x4_pll_get_muldiv(pll, &settings);
201 if (ret < 0)
202 return 0;
203
204 return clk_aic32x4_pll_calc_rate(&settings, parent_rate);
205}
206
207static int clk_aic32x4_pll_determine_rate(struct clk_hw *hw,
208 struct clk_rate_request *req)
209{
210 struct clk_aic32x4_pll_muldiv settings;
211 int ret;
212
213 ret = clk_aic32x4_pll_calc_muldiv(&settings, req->rate, req->best_parent_rate);
214 if (ret < 0)
215 return -EINVAL;
216
217 req->rate = clk_aic32x4_pll_calc_rate(&settings, req->best_parent_rate);
218
219 return 0;
220}
221
222static int clk_aic32x4_pll_set_rate(struct clk_hw *hw,
223 unsigned long rate,
224 unsigned long parent_rate)
225{
226 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
227 struct clk_aic32x4_pll_muldiv settings;
228 int ret;
229
230 ret = clk_aic32x4_pll_calc_muldiv(&settings, rate, parent_rate);
231 if (ret < 0)
232 return -EINVAL;
233
234 ret = clk_aic32x4_pll_set_muldiv(pll, &settings);
235 if (ret)
236 return ret;
237
238 /* 10ms is the delay to wait before the clocks are stable */
239 msleep(10);
240
241 return 0;
242}
243
244static int clk_aic32x4_pll_set_parent(struct clk_hw *hw, u8 index)
245{
246 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
247
248 return regmap_update_bits(pll->regmap,
249 AIC32X4_CLKMUX,
250 AIC32X4_PLL_CLKIN_MASK,
251 index << AIC32X4_PLL_CLKIN_SHIFT);
252}
253
254static u8 clk_aic32x4_pll_get_parent(struct clk_hw *hw)
255{
256 struct clk_aic32x4 *pll = to_clk_aic32x4(hw);
257 unsigned int val;
258
259 regmap_read(pll->regmap, AIC32X4_PLLPR, &val);
260
261 return (val & AIC32X4_PLL_CLKIN_MASK) >> AIC32X4_PLL_CLKIN_SHIFT;
262}
263
264
265static const struct clk_ops aic32x4_pll_ops = {
266 .prepare = clk_aic32x4_pll_prepare,
267 .unprepare = clk_aic32x4_pll_unprepare,
268 .is_prepared = clk_aic32x4_pll_is_prepared,
269 .recalc_rate = clk_aic32x4_pll_recalc_rate,
270 .determine_rate = clk_aic32x4_pll_determine_rate,
271 .set_rate = clk_aic32x4_pll_set_rate,
272 .set_parent = clk_aic32x4_pll_set_parent,
273 .get_parent = clk_aic32x4_pll_get_parent,
274};
275
276static int clk_aic32x4_codec_clkin_set_parent(struct clk_hw *hw, u8 index)
277{
278 struct clk_aic32x4 *mux = to_clk_aic32x4(hw);
279
280 return regmap_update_bits(mux->regmap,
281 AIC32X4_CLKMUX,
282 AIC32X4_CODEC_CLKIN_MASK, index << AIC32X4_CODEC_CLKIN_SHIFT);
283}
284
285static u8 clk_aic32x4_codec_clkin_get_parent(struct clk_hw *hw)
286{
287 struct clk_aic32x4 *mux = to_clk_aic32x4(hw);
288 unsigned int val;
289
290 regmap_read(mux->regmap, AIC32X4_CLKMUX, &val);
291
292 return (val & AIC32X4_CODEC_CLKIN_MASK) >> AIC32X4_CODEC_CLKIN_SHIFT;
293}
294
295static const struct clk_ops aic32x4_codec_clkin_ops = {
296 .determine_rate = clk_hw_determine_rate_no_reparent,
297 .set_parent = clk_aic32x4_codec_clkin_set_parent,
298 .get_parent = clk_aic32x4_codec_clkin_get_parent,
299};
300
301static int clk_aic32x4_div_prepare(struct clk_hw *hw)
302{
303 struct clk_aic32x4 *div = to_clk_aic32x4(hw);
304
305 return regmap_update_bits(div->regmap, div->reg,
306 AIC32X4_DIVEN, AIC32X4_DIVEN);
307}
308
309static void clk_aic32x4_div_unprepare(struct clk_hw *hw)
310{
311 struct clk_aic32x4 *div = to_clk_aic32x4(hw);
312
313 regmap_update_bits(div->regmap, div->reg,
314 AIC32X4_DIVEN, 0);
315}
316
317static int clk_aic32x4_div_set_rate(struct clk_hw *hw, unsigned long rate,
318 unsigned long parent_rate)
319{
320 struct clk_aic32x4 *div = to_clk_aic32x4(hw);
321 u8 divisor;
322
323 divisor = DIV_ROUND_UP(parent_rate, rate);
324 if (divisor > 128)
325 return -EINVAL;
326
327 return regmap_update_bits(div->regmap, div->reg,
328 AIC32X4_DIV_MASK, divisor);
329}
330
331static int clk_aic32x4_div_determine_rate(struct clk_hw *hw,
332 struct clk_rate_request *req)
333{
334 unsigned long divisor;
335
336 divisor = DIV_ROUND_UP(req->best_parent_rate, req->rate);
337 if (divisor > 128)
338 return -EINVAL;
339
340 req->rate = DIV_ROUND_UP(req->best_parent_rate, divisor);
341 return 0;
342}
343
344static unsigned long clk_aic32x4_div_recalc_rate(struct clk_hw *hw,
345 unsigned long parent_rate)
346{
347 struct clk_aic32x4 *div = to_clk_aic32x4(hw);
348
349 unsigned int val;
350
351 regmap_read(div->regmap, div->reg, &val);
352
353 return DIV_ROUND_UP(parent_rate, val & AIC32X4_DIV_MASK);
354}
355
356static const struct clk_ops aic32x4_div_ops = {
357 .prepare = clk_aic32x4_div_prepare,
358 .unprepare = clk_aic32x4_div_unprepare,
359 .set_rate = clk_aic32x4_div_set_rate,
360 .determine_rate = clk_aic32x4_div_determine_rate,
361 .recalc_rate = clk_aic32x4_div_recalc_rate,
362};
363
364static int clk_aic32x4_bdiv_set_parent(struct clk_hw *hw, u8 index)
365{
366 struct clk_aic32x4 *mux = to_clk_aic32x4(hw);
367
368 return regmap_update_bits(mux->regmap, AIC32X4_IFACE3,
369 AIC32X4_BDIVCLK_MASK, index);
370}
371
372static u8 clk_aic32x4_bdiv_get_parent(struct clk_hw *hw)
373{
374 struct clk_aic32x4 *mux = to_clk_aic32x4(hw);
375 unsigned int val;
376
377 regmap_read(mux->regmap, AIC32X4_IFACE3, &val);
378
379 return val & AIC32X4_BDIVCLK_MASK;
380}
381
382static const struct clk_ops aic32x4_bdiv_ops = {
383 .prepare = clk_aic32x4_div_prepare,
384 .unprepare = clk_aic32x4_div_unprepare,
385 .set_parent = clk_aic32x4_bdiv_set_parent,
386 .get_parent = clk_aic32x4_bdiv_get_parent,
387 .set_rate = clk_aic32x4_div_set_rate,
388 .determine_rate = clk_aic32x4_div_determine_rate,
389 .recalc_rate = clk_aic32x4_div_recalc_rate,
390};
391
392static struct aic32x4_clkdesc aic32x4_clkdesc_array[] = {
393 {
394 .name = "pll",
395 .parent_names =
396 (const char* []) { "mclk", "bclk", "gpio", "din" },
397 .num_parents = 4,
398 .ops = &aic32x4_pll_ops,
399 .reg = 0,
400 },
401 {
402 .name = "codec_clkin",
403 .parent_names =
404 (const char *[]) { "mclk", "bclk", "gpio", "pll" },
405 .num_parents = 4,
406 .ops = &aic32x4_codec_clkin_ops,
407 .reg = 0,
408 },
409 {
410 .name = "ndac",
411 .parent_names = (const char * []) { "codec_clkin" },
412 .num_parents = 1,
413 .ops = &aic32x4_div_ops,
414 .reg = AIC32X4_NDAC,
415 },
416 {
417 .name = "mdac",
418 .parent_names = (const char * []) { "ndac" },
419 .num_parents = 1,
420 .ops = &aic32x4_div_ops,
421 .reg = AIC32X4_MDAC,
422 },
423 {
424 .name = "nadc",
425 .parent_names = (const char * []) { "codec_clkin" },
426 .num_parents = 1,
427 .ops = &aic32x4_div_ops,
428 .reg = AIC32X4_NADC,
429 },
430 {
431 .name = "madc",
432 .parent_names = (const char * []) { "nadc" },
433 .num_parents = 1,
434 .ops = &aic32x4_div_ops,
435 .reg = AIC32X4_MADC,
436 },
437 {
438 .name = "bdiv",
439 .parent_names =
440 (const char *[]) { "ndac", "mdac", "nadc", "madc" },
441 .num_parents = 4,
442 .ops = &aic32x4_bdiv_ops,
443 .reg = AIC32X4_BCLKN,
444 },
445};
446
447static struct clk *aic32x4_register_clk(struct device *dev,
448 struct aic32x4_clkdesc *desc)
449{
450 struct clk_init_data init;
451 struct clk_aic32x4 *priv;
452 const char *devname = dev_name(dev);
453
454 init.ops = desc->ops;
455 init.name = desc->name;
456 init.parent_names = desc->parent_names;
457 init.num_parents = desc->num_parents;
458 init.flags = 0;
459
460 priv = devm_kzalloc(dev, sizeof(struct clk_aic32x4), GFP_KERNEL);
461 if (priv == NULL)
462 return (struct clk *) -ENOMEM;
463
464 priv->dev = dev;
465 priv->hw.init = &init;
466 priv->regmap = dev_get_regmap(dev, NULL);
467 priv->reg = desc->reg;
468
469 clk_hw_register_clkdev(&priv->hw, desc->name, devname);
470 return devm_clk_register(dev, &priv->hw);
471}
472
473int aic32x4_register_clocks(struct device *dev, const char *mclk_name)
474{
475 int i;
476
477 /*
478 * These lines are here to preserve the current functionality of
479 * the driver with regard to the DT. These should eventually be set
480 * by DT nodes so that the connections can be set up in configuration
481 * rather than code.
482 */
483 aic32x4_clkdesc_array[0].parent_names =
484 (const char* []) { mclk_name, "bclk", "gpio", "din" };
485 aic32x4_clkdesc_array[1].parent_names =
486 (const char *[]) { mclk_name, "bclk", "gpio", "pll" };
487
488 for (i = 0; i < ARRAY_SIZE(aic32x4_clkdesc_array); ++i)
489 aic32x4_register_clk(dev, &aic32x4_clkdesc_array[i]);
490
491 return 0;
492}
493EXPORT_SYMBOL_GPL(aic32x4_register_clocks);