blob: ed6e60bc4841892c8b42f81edf3cda4994a903ac [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassf26c8a82015-06-23 15:39:15 -06002/*
3 * Copyright (C) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Stephen Warren135aa952016-06-17 09:44:00 -06005 * Copyright (c) 2016, NVIDIA CORPORATION.
Philipp Tomsichf4fcba52018-01-08 13:59:18 +01006 * Copyright (c) 2018, Theobroma Systems Design und Consulting GmbH
Simon Glassf26c8a82015-06-23 15:39:15 -06007 */
8
Patrick Delaunayb953ec22021-04-27 11:02:19 +02009#define LOG_CATEGORY UCLASS_CLK
10
Simon Glassf26c8a82015-06-23 15:39:15 -060011#include <common.h>
12#include <clk.h>
Stephen Warren135aa952016-06-17 09:44:00 -060013#include <clk-uclass.h>
Simon Glassf26c8a82015-06-23 15:39:15 -060014#include <dm.h>
Simon Glass7423daa2016-07-04 11:58:03 -060015#include <dt-structs.h>
Simon Glassf26c8a82015-06-23 15:39:15 -060016#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060017#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070018#include <malloc.h>
Patrick Delaunay572c4462021-11-19 15:12:06 +010019#include <asm/global_data.h>
Sean Anderson8c12cb32021-04-08 22:13:03 -040020#include <dm/device_compat.h>
Claudiu Beznea4d139f32020-09-07 17:46:34 +030021#include <dm/device-internal.h>
Simon Glass61b29b82020-02-03 07:36:15 -070022#include <dm/devres.h>
23#include <dm/read.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060024#include <linux/bug.h>
Lukasz Majewski0c660c22019-06-24 15:50:42 +020025#include <linux/clk-provider.h>
Simon Glass61b29b82020-02-03 07:36:15 -070026#include <linux/err.h>
Simon Glassf26c8a82015-06-23 15:39:15 -060027
Mario Six268453b2018-01-15 11:06:51 +010028static inline const struct clk_ops *clk_dev_ops(struct udevice *dev)
Simon Glassf26c8a82015-06-23 15:39:15 -060029{
Mario Six268453b2018-01-15 11:06:51 +010030 return (const struct clk_ops *)dev->driver->ops;
Simon Glassf26c8a82015-06-23 15:39:15 -060031}
32
Simon Glassfb989e02020-07-19 10:15:56 -060033struct clk *dev_get_clk_ptr(struct udevice *dev)
34{
35 return (struct clk *)dev_get_uclass_priv(dev);
36}
37
Simon Glass414cc152021-08-07 07:24:03 -060038#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassf0ab8f92021-08-07 07:24:09 -060039int clk_get_by_phandle(struct udevice *dev, const struct phandle_1_arg *cells,
40 struct clk *clk)
Simon Glass7423daa2016-07-04 11:58:03 -060041{
42 int ret;
43
Simon Glasscc469b72021-03-15 17:25:28 +130044 ret = device_get_by_ofplat_idx(cells->idx, &clk->dev);
Simon Glass7423daa2016-07-04 11:58:03 -060045 if (ret)
46 return ret;
Walter Lozano51f12632020-06-25 01:10:13 -030047 clk->id = cells->arg[0];
Simon Glass7423daa2016-07-04 11:58:03 -060048
49 return 0;
50}
Simon Glass414cc152021-08-07 07:24:03 -060051#endif
52
53#if CONFIG_IS_ENABLED(OF_REAL)
Stephen Warren135aa952016-06-17 09:44:00 -060054static int clk_of_xlate_default(struct clk *clk,
Simon Glassa4e0ef52017-05-18 20:09:40 -060055 struct ofnode_phandle_args *args)
Stephen Warren135aa952016-06-17 09:44:00 -060056{
57 debug("%s(clk=%p)\n", __func__, clk);
58
59 if (args->args_count > 1) {
Sean Anderson46ad7ce2021-12-01 14:26:53 -050060 debug("Invalid args_count: %d\n", args->args_count);
Stephen Warren135aa952016-06-17 09:44:00 -060061 return -EINVAL;
62 }
63
64 if (args->args_count)
65 clk->id = args->args[0];
66 else
67 clk->id = 0;
68
Sekhar Norie497fab2019-07-11 14:30:24 +053069 clk->data = 0;
70
Stephen Warren135aa952016-06-17 09:44:00 -060071 return 0;
72}
73
Jagan Teki75f98312019-02-28 00:26:52 +053074static int clk_get_by_index_tail(int ret, ofnode node,
75 struct ofnode_phandle_args *args,
76 const char *list_name, int index,
77 struct clk *clk)
78{
79 struct udevice *dev_clk;
80 const struct clk_ops *ops;
81
82 assert(clk);
83 clk->dev = NULL;
84 if (ret)
85 goto err;
86
87 ret = uclass_get_device_by_ofnode(UCLASS_CLK, args->node, &dev_clk);
88 if (ret) {
89 debug("%s: uclass_get_device_by_of_offset failed: err=%d\n",
90 __func__, ret);
Simon Glass5c5992c2021-01-21 13:57:11 -070091 return log_msg_ret("get", ret);
Jagan Teki75f98312019-02-28 00:26:52 +053092 }
93
94 clk->dev = dev_clk;
95
96 ops = clk_dev_ops(dev_clk);
97
98 if (ops->of_xlate)
99 ret = ops->of_xlate(clk, args);
100 else
101 ret = clk_of_xlate_default(clk, args);
102 if (ret) {
103 debug("of_xlate() failed: %d\n", ret);
Simon Glass5c5992c2021-01-21 13:57:11 -0700104 return log_msg_ret("xlate", ret);
Jagan Teki75f98312019-02-28 00:26:52 +0530105 }
106
107 return clk_request(dev_clk, clk);
108err:
109 debug("%s: Node '%s', property '%s', failed to request CLK index %d: %d\n",
110 __func__, ofnode_get_name(node), list_name, index, ret);
Simon Glass5c5992c2021-01-21 13:57:11 -0700111
112 return log_msg_ret("prop", ret);
Jagan Teki75f98312019-02-28 00:26:52 +0530113}
114
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100115static int clk_get_by_indexed_prop(struct udevice *dev, const char *prop_name,
116 int index, struct clk *clk)
Stephen Warren135aa952016-06-17 09:44:00 -0600117{
118 int ret;
Simon Glassaa9bb092017-05-30 21:47:29 -0600119 struct ofnode_phandle_args args;
Stephen Warren135aa952016-06-17 09:44:00 -0600120
121 debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk);
122
123 assert(clk);
Patrice Chotard82a8a662017-07-18 11:57:07 +0200124 clk->dev = NULL;
125
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100126 ret = dev_read_phandle_with_args(dev, prop_name, "#clock-cells", 0,
Mario Six268453b2018-01-15 11:06:51 +0100127 index, &args);
Simon Glasse70cc432016-01-20 19:43:02 -0700128 if (ret) {
129 debug("%s: fdtdec_parse_phandle_with_args failed: err=%d\n",
130 __func__, ret);
Simon Glass5c5992c2021-01-21 13:57:11 -0700131 return log_ret(ret);
Simon Glasse70cc432016-01-20 19:43:02 -0700132 }
133
Wenyou Yang3f56b132016-09-27 11:00:28 +0800134
Jagan Tekidcb63fc2019-02-28 00:26:53 +0530135 return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks",
Sean Anderson675d7902020-06-24 06:41:08 -0400136 index, clk);
Stephen Warren135aa952016-06-17 09:44:00 -0600137}
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100138
139int clk_get_by_index(struct udevice *dev, int index, struct clk *clk)
140{
Sean Andersone7075ff2022-02-27 14:01:13 -0500141 return clk_get_by_index_nodev(dev_ofnode(dev), index, clk);
Jagan Teki75f98312019-02-28 00:26:52 +0530142}
143
144int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk)
145{
146 struct ofnode_phandle_args args;
147 int ret;
148
149 ret = ofnode_parse_phandle_with_args(node, "clocks", "#clock-cells", 0,
Sean Anderson675d7902020-06-24 06:41:08 -0400150 index, &args);
Jagan Teki75f98312019-02-28 00:26:52 +0530151
152 return clk_get_by_index_tail(ret, node, &args, "clocks",
Sean Anderson675d7902020-06-24 06:41:08 -0400153 index, clk);
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100154}
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100155
Neil Armstronga855be82018-04-03 11:44:18 +0200156int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
157{
158 int i, ret, err, count;
Patrick Delaunayc2625222021-04-27 10:57:54 +0200159
Neil Armstronga855be82018-04-03 11:44:18 +0200160 bulk->count = 0;
161
Patrick Delaunay89f68302020-09-25 09:41:14 +0200162 count = dev_count_phandle_with_args(dev, "clocks", "#clock-cells", 0);
Neil Armstrong721881c2018-04-17 11:30:31 +0200163 if (count < 1)
164 return count;
Neil Armstronga855be82018-04-03 11:44:18 +0200165
166 bulk->clks = devm_kcalloc(dev, count, sizeof(struct clk), GFP_KERNEL);
167 if (!bulk->clks)
168 return -ENOMEM;
169
170 for (i = 0; i < count; i++) {
171 ret = clk_get_by_index(dev, i, &bulk->clks[i]);
172 if (ret < 0)
173 goto bulk_get_err;
174
175 ++bulk->count;
176 }
177
178 return 0;
179
180bulk_get_err:
181 err = clk_release_all(bulk->clks, bulk->count);
182 if (err)
183 debug("%s: could release all clocks for %p\n",
184 __func__, dev);
185
186 return ret;
187}
188
Claudiu Bezneab3641342020-09-07 17:46:36 +0300189static struct clk *clk_set_default_get_by_id(struct clk *clk)
190{
191 struct clk *c = clk;
192
193 if (CONFIG_IS_ENABLED(CLK_CCF)) {
194 int ret = clk_get_by_id(clk->id, &c);
195
196 if (ret) {
197 debug("%s(): could not get parent clock pointer, id %lu\n",
198 __func__, clk->id);
199 ERR_PTR(ret);
200 }
201 }
202
203 return c;
204}
205
Sean Anderson6e33eba2021-06-11 00:16:07 -0400206static int clk_set_default_parents(struct udevice *dev,
207 enum clk_defaults_stage stage)
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100208{
Claudiu Bezneab3641342020-09-07 17:46:36 +0300209 struct clk clk, parent_clk, *c, *p;
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100210 int index;
211 int num_parents;
212 int ret;
213
214 num_parents = dev_count_phandle_with_args(dev, "assigned-clock-parents",
Patrick Delaunay89f68302020-09-25 09:41:14 +0200215 "#clock-cells", 0);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100216 if (num_parents < 0) {
217 debug("%s: could not read assigned-clock-parents for %p\n",
218 __func__, dev);
219 return 0;
220 }
221
222 for (index = 0; index < num_parents; index++) {
223 ret = clk_get_by_indexed_prop(dev, "assigned-clock-parents",
224 index, &parent_clk);
Neil Armstrongd64caaf2018-07-26 15:19:32 +0200225 /* If -ENOENT, this is a no-op entry */
226 if (ret == -ENOENT)
227 continue;
228
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100229 if (ret) {
230 debug("%s: could not get parent clock %d for %s\n",
231 __func__, index, dev_read_name(dev));
232 return ret;
233 }
234
Claudiu Bezneab3641342020-09-07 17:46:36 +0300235 p = clk_set_default_get_by_id(&parent_clk);
236 if (IS_ERR(p))
237 return PTR_ERR(p);
238
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100239 ret = clk_get_by_indexed_prop(dev, "assigned-clocks",
240 index, &clk);
Tero Kristo1e1fab02021-06-11 11:45:11 +0300241 /*
242 * If the clock provider is not ready yet, let it handle
243 * the re-programming later.
244 */
245 if (ret == -EPROBE_DEFER) {
246 ret = 0;
247 continue;
248 }
249
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100250 if (ret) {
251 debug("%s: could not get assigned clock %d for %s\n",
252 __func__, index, dev_read_name(dev));
253 return ret;
254 }
255
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200256 /* This is clk provider device trying to reparent itself
257 * It cannot be done right now but need to wait after the
258 * device is probed
259 */
Sean Anderson6e33eba2021-06-11 00:16:07 -0400260 if (stage == CLK_DEFAULTS_PRE && clk.dev == dev)
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200261 continue;
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100262
Sean Anderson6e33eba2021-06-11 00:16:07 -0400263 if (stage != CLK_DEFAULTS_PRE && clk.dev != dev)
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200264 /* do not setup twice the parent clocks */
265 continue;
266
Claudiu Bezneab3641342020-09-07 17:46:36 +0300267 c = clk_set_default_get_by_id(&clk);
268 if (IS_ERR(c))
269 return PTR_ERR(c);
270
271 ret = clk_set_parent(c, p);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100272 /*
273 * Not all drivers may support clock-reparenting (as of now).
274 * Ignore errors due to this.
275 */
276 if (ret == -ENOSYS)
277 continue;
278
Jean-Jacques Hiblot02e2a2a2019-09-26 15:42:42 +0200279 if (ret < 0) {
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100280 debug("%s: failed to reparent clock %d for %s\n",
281 __func__, index, dev_read_name(dev));
282 return ret;
283 }
284 }
285
286 return 0;
287}
288
Sean Anderson6e33eba2021-06-11 00:16:07 -0400289static int clk_set_default_rates(struct udevice *dev,
290 enum clk_defaults_stage stage)
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100291{
Claudiu Bezneab3641342020-09-07 17:46:36 +0300292 struct clk clk, *c;
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100293 int index;
294 int num_rates;
295 int size;
296 int ret = 0;
297 u32 *rates = NULL;
298
299 size = dev_read_size(dev, "assigned-clock-rates");
300 if (size < 0)
301 return 0;
302
303 num_rates = size / sizeof(u32);
304 rates = calloc(num_rates, sizeof(u32));
305 if (!rates)
306 return -ENOMEM;
307
308 ret = dev_read_u32_array(dev, "assigned-clock-rates", rates, num_rates);
309 if (ret)
310 goto fail;
311
312 for (index = 0; index < num_rates; index++) {
Neil Armstrongd64caaf2018-07-26 15:19:32 +0200313 /* If 0 is passed, this is a no-op */
314 if (!rates[index])
315 continue;
316
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100317 ret = clk_get_by_indexed_prop(dev, "assigned-clocks",
318 index, &clk);
Tero Kristo1e1fab02021-06-11 11:45:11 +0300319 /*
320 * If the clock provider is not ready yet, let it handle
321 * the re-programming later.
322 */
323 if (ret == -EPROBE_DEFER) {
324 ret = 0;
325 continue;
326 }
327
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100328 if (ret) {
Sean Anderson8c12cb32021-04-08 22:13:03 -0400329 dev_dbg(dev,
330 "could not get assigned clock %d (err = %d)\n",
331 index, ret);
Ashok Reddy Soma99b46472023-08-30 10:31:42 +0200332 /* Skip if it is empty */
333 if (ret == -ENOENT) {
334 ret = 0;
335 continue;
336 }
337
338 return ret;
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100339 }
340
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200341 /* This is clk provider device trying to program itself
342 * It cannot be done right now but need to wait after the
343 * device is probed
344 */
Sean Anderson6e33eba2021-06-11 00:16:07 -0400345 if (stage == CLK_DEFAULTS_PRE && clk.dev == dev)
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200346 continue;
347
Sean Anderson6e33eba2021-06-11 00:16:07 -0400348 if (stage != CLK_DEFAULTS_PRE && clk.dev != dev)
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200349 /* do not setup twice the parent clocks */
350 continue;
351
Claudiu Bezneab3641342020-09-07 17:46:36 +0300352 c = clk_set_default_get_by_id(&clk);
353 if (IS_ERR(c))
354 return PTR_ERR(c);
355
356 ret = clk_set_rate(c, rates[index]);
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200357
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100358 if (ret < 0) {
Sean Anderson8c12cb32021-04-08 22:13:03 -0400359 dev_warn(dev,
360 "failed to set rate on clock index %d (%ld) (error = %d)\n",
361 index, clk.id, ret);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100362 break;
363 }
364 }
365
366fail:
367 free(rates);
368 return ret;
369}
370
Sean Anderson6e33eba2021-06-11 00:16:07 -0400371int clk_set_defaults(struct udevice *dev, enum clk_defaults_stage stage)
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100372{
373 int ret;
374
Simon Glass7d14ee42020-12-19 10:40:13 -0700375 if (!dev_has_ofnode(dev))
Peng Fan91944ef2019-07-31 07:01:49 +0000376 return 0;
377
Sean Anderson6e33eba2021-06-11 00:16:07 -0400378 /*
379 * To avoid setting defaults twice, don't set them before relocation.
380 * However, still set them for SPL. And still set them if explicitly
381 * asked.
382 */
Philipp Tomsich291da962018-11-26 20:20:19 +0100383 if (!(IS_ENABLED(CONFIG_SPL_BUILD) || (gd->flags & GD_FLG_RELOC)))
Sean Anderson6e33eba2021-06-11 00:16:07 -0400384 if (stage != CLK_DEFAULTS_POST_FORCE)
385 return 0;
Philipp Tomsich291da962018-11-26 20:20:19 +0100386
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100387 debug("%s(%s)\n", __func__, dev_read_name(dev));
388
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200389 ret = clk_set_default_parents(dev, stage);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100390 if (ret)
391 return ret;
392
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200393 ret = clk_set_default_rates(dev, stage);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100394 if (ret < 0)
395 return ret;
396
397 return 0;
398}
Stephen Warren135aa952016-06-17 09:44:00 -0600399
400int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk)
401{
Sean Andersone7075ff2022-02-27 14:01:13 -0500402 return clk_get_by_name_nodev(dev_ofnode(dev), name, clk);
Simon Glasse70cc432016-01-20 19:43:02 -0700403}
Simon Glassf0ab8f92021-08-07 07:24:09 -0600404#endif /* OF_REAL */
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200405
Chunfeng Yund6464202020-01-09 11:35:07 +0800406int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk)
407{
Samuel Holland2050f822023-01-21 18:02:51 -0600408 int index = 0;
Chunfeng Yund6464202020-01-09 11:35:07 +0800409
410 debug("%s(node=%p, name=%s, clk=%p)\n", __func__,
411 ofnode_get_name(node), name, clk);
412 clk->dev = NULL;
413
Samuel Holland2050f822023-01-21 18:02:51 -0600414 if (name) {
415 index = ofnode_stringlist_search(node, "clock-names", name);
416 if (index < 0) {
417 debug("fdt_stringlist_search() failed: %d\n", index);
418 return index;
419 }
Chunfeng Yund6464202020-01-09 11:35:07 +0800420 }
421
422 return clk_get_by_index_nodev(node, index, clk);
423}
424
Eugen Hristevb6a56f52023-06-19 13:47:52 +0300425int clk_release_all(struct clk *clk, unsigned int count)
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200426{
Eugen Hristevb6a56f52023-06-19 13:47:52 +0300427 unsigned int i;
428 int ret;
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200429
430 for (i = 0; i < count; i++) {
Eugen Hristevb6a56f52023-06-19 13:47:52 +0300431 debug("%s(clk[%u]=%p)\n", __func__, i, &clk[i]);
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200432
433 /* check if clock has been previously requested */
434 if (!clk[i].dev)
435 continue;
436
437 ret = clk_disable(&clk[i]);
438 if (ret && ret != -ENOSYS)
439 return ret;
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200440 }
441
442 return 0;
443}
444
Stephen Warren135aa952016-06-17 09:44:00 -0600445int clk_request(struct udevice *dev, struct clk *clk)
446{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200447 const struct clk_ops *ops;
Stephen Warren135aa952016-06-17 09:44:00 -0600448
449 debug("%s(dev=%p, clk=%p)\n", __func__, dev, clk);
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200450 if (!clk)
451 return 0;
452 ops = clk_dev_ops(dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600453
454 clk->dev = dev;
455
456 if (!ops->request)
457 return 0;
458
459 return ops->request(clk);
460}
461
Stephen Warren135aa952016-06-17 09:44:00 -0600462ulong clk_get_rate(struct clk *clk)
463{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200464 const struct clk_ops *ops;
Stephen Warren135aa952016-06-17 09:44:00 -0600465
466 debug("%s(clk=%p)\n", __func__, clk);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800467 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200468 return 0;
469 ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600470
471 if (!ops->get_rate)
472 return -ENOSYS;
473
Julien Massonb5004472023-12-15 15:09:43 +0100474 return ops->get_rate(clk);
Stephen Warren135aa952016-06-17 09:44:00 -0600475}
476
Lukasz Majewski0c660c22019-06-24 15:50:42 +0200477struct clk *clk_get_parent(struct clk *clk)
478{
479 struct udevice *pdev;
480 struct clk *pclk;
481
482 debug("%s(clk=%p)\n", __func__, clk);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800483 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200484 return NULL;
Lukasz Majewski0c660c22019-06-24 15:50:42 +0200485
486 pdev = dev_get_parent(clk->dev);
Tero Kristo920ea5a2021-06-11 11:45:08 +0300487 if (!pdev)
488 return ERR_PTR(-ENODEV);
Lukasz Majewski0c660c22019-06-24 15:50:42 +0200489 pclk = dev_get_clk_ptr(pdev);
490 if (!pclk)
491 return ERR_PTR(-ENODEV);
492
493 return pclk;
494}
495
Michal Suchaneka1265cd2022-09-28 12:37:57 +0200496ulong clk_get_parent_rate(struct clk *clk)
Lukasz Majewski4aa78302019-06-24 15:50:43 +0200497{
498 const struct clk_ops *ops;
499 struct clk *pclk;
500
501 debug("%s(clk=%p)\n", __func__, clk);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800502 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200503 return 0;
Lukasz Majewski4aa78302019-06-24 15:50:43 +0200504
505 pclk = clk_get_parent(clk);
506 if (IS_ERR(pclk))
507 return -ENODEV;
508
509 ops = clk_dev_ops(pclk->dev);
510 if (!ops->get_rate)
511 return -ENOSYS;
512
Lukasz Majewski1a961c92019-06-24 15:50:46 +0200513 /* Read the 'rate' if not already set or if proper flag set*/
514 if (!pclk->rate || pclk->flags & CLK_GET_RATE_NOCACHE)
Lukasz Majewski4aa78302019-06-24 15:50:43 +0200515 pclk->rate = clk_get_rate(pclk);
516
517 return pclk->rate;
518}
519
Dario Binacchi2983ad52020-12-30 00:06:31 +0100520ulong clk_round_rate(struct clk *clk, ulong rate)
521{
522 const struct clk_ops *ops;
523
524 debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate);
525 if (!clk_valid(clk))
526 return 0;
527
528 ops = clk_dev_ops(clk->dev);
529 if (!ops->round_rate)
530 return -ENOSYS;
531
532 return ops->round_rate(clk, rate);
533}
534
Patrick Delaunay19fb40a2022-06-20 15:37:25 +0200535static void clk_get_priv(struct clk *clk, struct clk **clkp)
536{
537 *clkp = clk;
538
539 /* get private clock struct associated to the provided clock */
540 if (CONFIG_IS_ENABLED(CLK_CCF)) {
541 /* Take id 0 as a non-valid clk, such as dummy */
542 if (clk->id)
543 clk_get_by_id(clk->id, clkp);
544 }
545}
546
547/* clean cache, called with private clock struct */
Tero Kristo6b7fd312021-06-11 11:45:12 +0300548static void clk_clean_rate_cache(struct clk *clk)
549{
550 struct udevice *child_dev;
551 struct clk *clkp;
552
553 if (!clk)
554 return;
555
556 clk->rate = 0;
557
558 list_for_each_entry(child_dev, &clk->dev->child_head, sibling_node) {
559 clkp = dev_get_clk_ptr(child_dev);
560 clk_clean_rate_cache(clkp);
561 }
562}
563
Stephen Warren135aa952016-06-17 09:44:00 -0600564ulong clk_set_rate(struct clk *clk, ulong rate)
565{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200566 const struct clk_ops *ops;
Patrick Delaunay19fb40a2022-06-20 15:37:25 +0200567 struct clk *clkp;
Stephen Warren135aa952016-06-17 09:44:00 -0600568
569 debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800570 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200571 return 0;
572 ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600573
574 if (!ops->set_rate)
575 return -ENOSYS;
576
Patrick Delaunay19fb40a2022-06-20 15:37:25 +0200577 /* get private clock struct used for cache */
578 clk_get_priv(clk, &clkp);
Tero Kristo6b7fd312021-06-11 11:45:12 +0300579 /* Clean up cached rates for us and all child clocks */
Patrick Delaunay19fb40a2022-06-20 15:37:25 +0200580 clk_clean_rate_cache(clkp);
Tero Kristo6b7fd312021-06-11 11:45:12 +0300581
Stephen Warren135aa952016-06-17 09:44:00 -0600582 return ops->set_rate(clk, rate);
583}
584
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100585int clk_set_parent(struct clk *clk, struct clk *parent)
586{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200587 const struct clk_ops *ops;
Claudiu Beznea4d139f32020-09-07 17:46:34 +0300588 int ret;
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100589
590 debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800591 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200592 return 0;
593 ops = clk_dev_ops(clk->dev);
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100594
595 if (!ops->set_parent)
596 return -ENOSYS;
597
Claudiu Beznea4d139f32020-09-07 17:46:34 +0300598 ret = ops->set_parent(clk, parent);
599 if (ret)
600 return ret;
601
602 if (CONFIG_IS_ENABLED(CLK_CCF))
603 ret = device_reparent(clk->dev, parent->dev);
604
605 return ret;
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100606}
607
Stephen Warren135aa952016-06-17 09:44:00 -0600608int clk_enable(struct clk *clk)
609{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200610 const struct clk_ops *ops;
Peng Fan0520be02019-08-21 13:35:09 +0000611 struct clk *clkp = NULL;
612 int ret;
Stephen Warren135aa952016-06-17 09:44:00 -0600613
614 debug("%s(clk=%p)\n", __func__, clk);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800615 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200616 return 0;
617 ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600618
Peng Fan0520be02019-08-21 13:35:09 +0000619 if (CONFIG_IS_ENABLED(CLK_CCF)) {
620 /* Take id 0 as a non-valid clk, such as dummy */
621 if (clk->id && !clk_get_by_id(clk->id, &clkp)) {
Yang Xiwen3fb2d3d2023-11-19 06:10:06 +0800622 ops = clk_dev_ops(clkp->dev);
Peng Fan0520be02019-08-21 13:35:09 +0000623 if (clkp->enable_count) {
624 clkp->enable_count++;
625 return 0;
626 }
627 if (clkp->dev->parent &&
Patrick Delaunayb0cdd822022-01-24 14:17:14 +0100628 device_get_uclass_id(clkp->dev->parent) == UCLASS_CLK) {
Peng Fan0520be02019-08-21 13:35:09 +0000629 ret = clk_enable(dev_get_clk_ptr(clkp->dev->parent));
630 if (ret) {
631 printf("Enable %s failed\n",
632 clkp->dev->parent->name);
633 return ret;
634 }
635 }
636 }
Stephen Warren135aa952016-06-17 09:44:00 -0600637
Peng Fan0520be02019-08-21 13:35:09 +0000638 if (ops->enable) {
Maksim Kiselev0755db42023-09-06 01:16:49 +0300639 ret = ops->enable(clkp ? clkp : clk);
Peng Fan0520be02019-08-21 13:35:09 +0000640 if (ret) {
641 printf("Enable %s failed\n", clk->dev->name);
642 return ret;
643 }
644 }
645 if (clkp)
646 clkp->enable_count++;
647 } else {
648 if (!ops->enable)
649 return -ENOSYS;
650 return ops->enable(clk);
651 }
652
653 return 0;
Stephen Warren135aa952016-06-17 09:44:00 -0600654}
655
Neil Armstronga855be82018-04-03 11:44:18 +0200656int clk_enable_bulk(struct clk_bulk *bulk)
657{
658 int i, ret;
659
660 for (i = 0; i < bulk->count; i++) {
661 ret = clk_enable(&bulk->clks[i]);
662 if (ret < 0 && ret != -ENOSYS)
663 return ret;
664 }
665
666 return 0;
667}
668
Stephen Warren135aa952016-06-17 09:44:00 -0600669int clk_disable(struct clk *clk)
670{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200671 const struct clk_ops *ops;
Peng Fan0520be02019-08-21 13:35:09 +0000672 struct clk *clkp = NULL;
673 int ret;
Stephen Warren135aa952016-06-17 09:44:00 -0600674
675 debug("%s(clk=%p)\n", __func__, clk);
Chunfeng Yunbd7c7982020-01-09 11:35:06 +0800676 if (!clk_valid(clk))
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200677 return 0;
678 ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600679
Peng Fan0520be02019-08-21 13:35:09 +0000680 if (CONFIG_IS_ENABLED(CLK_CCF)) {
681 if (clk->id && !clk_get_by_id(clk->id, &clkp)) {
Yang Xiwen3fb2d3d2023-11-19 06:10:06 +0800682 ops = clk_dev_ops(clkp->dev);
Claudiu Beznea9a5d59d2020-09-07 17:46:35 +0300683 if (clkp->flags & CLK_IS_CRITICAL)
684 return 0;
685
Peng Fan0520be02019-08-21 13:35:09 +0000686 if (clkp->enable_count == 0) {
687 printf("clk %s already disabled\n",
688 clkp->dev->name);
689 return 0;
690 }
Stephen Warren135aa952016-06-17 09:44:00 -0600691
Peng Fan0520be02019-08-21 13:35:09 +0000692 if (--clkp->enable_count > 0)
693 return 0;
694 }
695
696 if (ops->disable) {
Maksim Kiselev0755db42023-09-06 01:16:49 +0300697 ret = ops->disable(clkp ? clkp : clk);
Peng Fan0520be02019-08-21 13:35:09 +0000698 if (ret)
699 return ret;
700 }
701
702 if (clkp && clkp->dev->parent &&
Patrick Delaunayb0cdd822022-01-24 14:17:14 +0100703 device_get_uclass_id(clkp->dev->parent) == UCLASS_CLK) {
Peng Fan0520be02019-08-21 13:35:09 +0000704 ret = clk_disable(dev_get_clk_ptr(clkp->dev->parent));
705 if (ret) {
706 printf("Disable %s failed\n",
707 clkp->dev->parent->name);
708 return ret;
709 }
710 }
711 } else {
712 if (!ops->disable)
713 return -ENOSYS;
714
715 return ops->disable(clk);
716 }
717
718 return 0;
Stephen Warren135aa952016-06-17 09:44:00 -0600719}
Simon Glasse70cc432016-01-20 19:43:02 -0700720
Neil Armstronga855be82018-04-03 11:44:18 +0200721int clk_disable_bulk(struct clk_bulk *bulk)
722{
723 int i, ret;
724
725 for (i = 0; i < bulk->count; i++) {
726 ret = clk_disable(&bulk->clks[i]);
727 if (ret < 0 && ret != -ENOSYS)
728 return ret;
729 }
730
731 return 0;
732}
733
Lukasz Majewski2796af72019-06-24 15:50:44 +0200734int clk_get_by_id(ulong id, struct clk **clkp)
735{
736 struct udevice *dev;
737 struct uclass *uc;
738 int ret;
739
740 ret = uclass_get(UCLASS_CLK, &uc);
741 if (ret)
742 return ret;
743
744 uclass_foreach_dev(dev, uc) {
745 struct clk *clk = dev_get_clk_ptr(dev);
746
747 if (clk && clk->id == id) {
748 *clkp = clk;
749 return 0;
750 }
751 }
752
753 return -ENOENT;
754}
755
Sekhar Noriacbb7cd2019-08-01 19:12:55 +0530756bool clk_is_match(const struct clk *p, const struct clk *q)
757{
758 /* trivial case: identical struct clk's or both NULL */
759 if (p == q)
760 return true;
761
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200762 /* trivial case #2: on the clk pointer is NULL */
763 if (!p || !q)
764 return false;
765
Sekhar Noriacbb7cd2019-08-01 19:12:55 +0530766 /* same device, id and data */
767 if (p->dev == q->dev && p->id == q->id && p->data == q->data)
768 return true;
769
770 return false;
771}
772
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200773struct clk *devm_clk_get(struct udevice *dev, const char *id)
774{
775 int rc;
776 struct clk *clk;
777
Sean Andersonc9309f42023-12-16 14:38:42 -0500778 clk = devm_kzalloc(dev, sizeof(*clk), GFP_KERNEL);
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200779 if (unlikely(!clk))
780 return ERR_PTR(-ENOMEM);
781
782 rc = clk_get_by_name(dev, id, clk);
783 if (rc)
784 return ERR_PTR(rc);
785
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200786 return clk;
787}
788
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200789int clk_uclass_post_probe(struct udevice *dev)
790{
791 /*
792 * when a clock provider is probed. Call clk_set_defaults()
793 * also after the device is probed. This takes care of cases
794 * where the DT is used to setup default parents and rates
795 * using assigned-clocks
796 */
Marek Vasut75f080d2022-01-01 19:51:39 +0100797 clk_set_defaults(dev, CLK_DEFAULTS_POST);
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200798
799 return 0;
800}
801
Simon Glassf26c8a82015-06-23 15:39:15 -0600802UCLASS_DRIVER(clk) = {
803 .id = UCLASS_CLK,
804 .name = "clk",
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200805 .post_probe = clk_uclass_post_probe,
Simon Glassf26c8a82015-06-23 15:39:15 -0600806};