blob: 79b3b0494c652c947ef9b114ebb48a97154b650f [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
9#include <common.h>
10#include <clk.h>
Stephen Warren135aa952016-06-17 09:44:00 -060011#include <clk-uclass.h>
Simon Glassf26c8a82015-06-23 15:39:15 -060012#include <dm.h>
Philipp Tomsichf4fcba52018-01-08 13:59:18 +010013#include <dm/read.h>
Simon Glass7423daa2016-07-04 11:58:03 -060014#include <dt-structs.h>
Simon Glassf26c8a82015-06-23 15:39:15 -060015#include <errno.h>
Simon Glassf26c8a82015-06-23 15:39:15 -060016
Mario Six268453b2018-01-15 11:06:51 +010017static inline const struct clk_ops *clk_dev_ops(struct udevice *dev)
Simon Glassf26c8a82015-06-23 15:39:15 -060018{
Mario Six268453b2018-01-15 11:06:51 +010019 return (const struct clk_ops *)dev->driver->ops;
Simon Glassf26c8a82015-06-23 15:39:15 -060020}
21
Simon Glasse70cc432016-01-20 19:43:02 -070022#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass7423daa2016-07-04 11:58:03 -060023# if CONFIG_IS_ENABLED(OF_PLATDATA)
24int clk_get_by_index_platdata(struct udevice *dev, int index,
Simon Glass0d154632017-08-29 14:15:56 -060025 struct phandle_1_arg *cells, struct clk *clk)
Simon Glass7423daa2016-07-04 11:58:03 -060026{
27 int ret;
28
29 if (index != 0)
30 return -ENOSYS;
31 ret = uclass_get_device(UCLASS_CLK, 0, &clk->dev);
32 if (ret)
33 return ret;
Simon Glassbc796172017-08-29 14:15:58 -060034 clk->id = cells[0].arg[0];
Simon Glass7423daa2016-07-04 11:58:03 -060035
36 return 0;
37}
38# else
Stephen Warren135aa952016-06-17 09:44:00 -060039static int clk_of_xlate_default(struct clk *clk,
Simon Glassa4e0ef52017-05-18 20:09:40 -060040 struct ofnode_phandle_args *args)
Stephen Warren135aa952016-06-17 09:44:00 -060041{
42 debug("%s(clk=%p)\n", __func__, clk);
43
44 if (args->args_count > 1) {
45 debug("Invaild args_count: %d\n", args->args_count);
46 return -EINVAL;
47 }
48
49 if (args->args_count)
50 clk->id = args->args[0];
51 else
52 clk->id = 0;
53
54 return 0;
55}
56
Jagan Teki75f98312019-02-28 00:26:52 +053057static int clk_get_by_index_tail(int ret, ofnode node,
58 struct ofnode_phandle_args *args,
59 const char *list_name, int index,
60 struct clk *clk)
61{
62 struct udevice *dev_clk;
63 const struct clk_ops *ops;
64
65 assert(clk);
66 clk->dev = NULL;
67 if (ret)
68 goto err;
69
70 ret = uclass_get_device_by_ofnode(UCLASS_CLK, args->node, &dev_clk);
71 if (ret) {
72 debug("%s: uclass_get_device_by_of_offset failed: err=%d\n",
73 __func__, ret);
74 return ret;
75 }
76
77 clk->dev = dev_clk;
78
79 ops = clk_dev_ops(dev_clk);
80
81 if (ops->of_xlate)
82 ret = ops->of_xlate(clk, args);
83 else
84 ret = clk_of_xlate_default(clk, args);
85 if (ret) {
86 debug("of_xlate() failed: %d\n", ret);
87 return ret;
88 }
89
90 return clk_request(dev_clk, clk);
91err:
92 debug("%s: Node '%s', property '%s', failed to request CLK index %d: %d\n",
93 __func__, ofnode_get_name(node), list_name, index, ret);
94 return ret;
95}
96
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +010097static int clk_get_by_indexed_prop(struct udevice *dev, const char *prop_name,
98 int index, struct clk *clk)
Stephen Warren135aa952016-06-17 09:44:00 -060099{
100 int ret;
Simon Glassaa9bb092017-05-30 21:47:29 -0600101 struct ofnode_phandle_args args;
Stephen Warren135aa952016-06-17 09:44:00 -0600102
103 debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk);
104
105 assert(clk);
Patrice Chotard82a8a662017-07-18 11:57:07 +0200106 clk->dev = NULL;
107
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100108 ret = dev_read_phandle_with_args(dev, prop_name, "#clock-cells", 0,
Mario Six268453b2018-01-15 11:06:51 +0100109 index, &args);
Simon Glasse70cc432016-01-20 19:43:02 -0700110 if (ret) {
111 debug("%s: fdtdec_parse_phandle_with_args failed: err=%d\n",
112 __func__, ret);
113 return ret;
114 }
115
Wenyou Yang3f56b132016-09-27 11:00:28 +0800116
Jagan Tekidcb63fc2019-02-28 00:26:53 +0530117 return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks",
118 index > 0, clk);
Stephen Warren135aa952016-06-17 09:44:00 -0600119}
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100120
121int clk_get_by_index(struct udevice *dev, int index, struct clk *clk)
122{
Jagan Teki75f98312019-02-28 00:26:52 +0530123 struct ofnode_phandle_args args;
124 int ret;
125
126 ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
127 index, &args);
128
129 return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks",
130 index > 0, clk);
131}
132
133int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk)
134{
135 struct ofnode_phandle_args args;
136 int ret;
137
138 ret = ofnode_parse_phandle_with_args(node, "clocks", "#clock-cells", 0,
139 index > 0, &args);
140
141 return clk_get_by_index_tail(ret, node, &args, "clocks",
142 index > 0, clk);
Philipp Tomsich95f9a7e2018-01-08 11:18:18 +0100143}
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100144
Neil Armstronga855be82018-04-03 11:44:18 +0200145int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
146{
147 int i, ret, err, count;
148
149 bulk->count = 0;
150
151 count = dev_count_phandle_with_args(dev, "clocks", "#clock-cells");
Neil Armstrong721881c2018-04-17 11:30:31 +0200152 if (count < 1)
153 return count;
Neil Armstronga855be82018-04-03 11:44:18 +0200154
155 bulk->clks = devm_kcalloc(dev, count, sizeof(struct clk), GFP_KERNEL);
156 if (!bulk->clks)
157 return -ENOMEM;
158
159 for (i = 0; i < count; i++) {
160 ret = clk_get_by_index(dev, i, &bulk->clks[i]);
161 if (ret < 0)
162 goto bulk_get_err;
163
164 ++bulk->count;
165 }
166
167 return 0;
168
169bulk_get_err:
170 err = clk_release_all(bulk->clks, bulk->count);
171 if (err)
172 debug("%s: could release all clocks for %p\n",
173 __func__, dev);
174
175 return ret;
176}
177
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100178static int clk_set_default_parents(struct udevice *dev)
179{
180 struct clk clk, parent_clk;
181 int index;
182 int num_parents;
183 int ret;
184
185 num_parents = dev_count_phandle_with_args(dev, "assigned-clock-parents",
186 "#clock-cells");
187 if (num_parents < 0) {
188 debug("%s: could not read assigned-clock-parents for %p\n",
189 __func__, dev);
190 return 0;
191 }
192
193 for (index = 0; index < num_parents; index++) {
194 ret = clk_get_by_indexed_prop(dev, "assigned-clock-parents",
195 index, &parent_clk);
Neil Armstrongd64caaf2018-07-26 15:19:32 +0200196 /* If -ENOENT, this is a no-op entry */
197 if (ret == -ENOENT)
198 continue;
199
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100200 if (ret) {
201 debug("%s: could not get parent clock %d for %s\n",
202 __func__, index, dev_read_name(dev));
203 return ret;
204 }
205
206 ret = clk_get_by_indexed_prop(dev, "assigned-clocks",
207 index, &clk);
208 if (ret) {
209 debug("%s: could not get assigned clock %d for %s\n",
210 __func__, index, dev_read_name(dev));
211 return ret;
212 }
213
214 ret = clk_set_parent(&clk, &parent_clk);
215
216 /*
217 * Not all drivers may support clock-reparenting (as of now).
218 * Ignore errors due to this.
219 */
220 if (ret == -ENOSYS)
221 continue;
222
223 if (ret) {
224 debug("%s: failed to reparent clock %d for %s\n",
225 __func__, index, dev_read_name(dev));
226 return ret;
227 }
228 }
229
230 return 0;
231}
232
233static int clk_set_default_rates(struct udevice *dev)
234{
235 struct clk clk;
236 int index;
237 int num_rates;
238 int size;
239 int ret = 0;
240 u32 *rates = NULL;
241
242 size = dev_read_size(dev, "assigned-clock-rates");
243 if (size < 0)
244 return 0;
245
246 num_rates = size / sizeof(u32);
247 rates = calloc(num_rates, sizeof(u32));
248 if (!rates)
249 return -ENOMEM;
250
251 ret = dev_read_u32_array(dev, "assigned-clock-rates", rates, num_rates);
252 if (ret)
253 goto fail;
254
255 for (index = 0; index < num_rates; index++) {
Neil Armstrongd64caaf2018-07-26 15:19:32 +0200256 /* If 0 is passed, this is a no-op */
257 if (!rates[index])
258 continue;
259
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100260 ret = clk_get_by_indexed_prop(dev, "assigned-clocks",
261 index, &clk);
262 if (ret) {
263 debug("%s: could not get assigned clock %d for %s\n",
264 __func__, index, dev_read_name(dev));
265 continue;
266 }
267
268 ret = clk_set_rate(&clk, rates[index]);
269 if (ret < 0) {
Simon Glass68316162019-01-21 14:53:19 -0700270 debug("%s: failed to set rate on clock index %d (%ld) for %s\n",
271 __func__, index, clk.id, dev_read_name(dev));
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100272 break;
273 }
274 }
275
276fail:
277 free(rates);
278 return ret;
279}
280
281int clk_set_defaults(struct udevice *dev)
282{
283 int ret;
284
Philipp Tomsich291da962018-11-26 20:20:19 +0100285 /* If this not in SPL and pre-reloc state, don't take any action. */
286 if (!(IS_ENABLED(CONFIG_SPL_BUILD) || (gd->flags & GD_FLG_RELOC)))
287 return 0;
288
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100289 debug("%s(%s)\n", __func__, dev_read_name(dev));
290
291 ret = clk_set_default_parents(dev);
292 if (ret)
293 return ret;
294
295 ret = clk_set_default_rates(dev);
296 if (ret < 0)
297 return ret;
298
299 return 0;
300}
Michal Simek9e0758b2016-07-14 13:11:37 +0200301# endif /* OF_PLATDATA */
Stephen Warren135aa952016-06-17 09:44:00 -0600302
303int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk)
304{
305 int index;
306
307 debug("%s(dev=%p, name=%s, clk=%p)\n", __func__, dev, name, clk);
Patrice Chotard82a8a662017-07-18 11:57:07 +0200308 clk->dev = NULL;
Stephen Warren135aa952016-06-17 09:44:00 -0600309
Simon Glassaa9bb092017-05-30 21:47:29 -0600310 index = dev_read_stringlist_search(dev, "clock-names", name);
Stephen Warren135aa952016-06-17 09:44:00 -0600311 if (index < 0) {
Simon Glassb02e4042016-10-02 17:59:28 -0600312 debug("fdt_stringlist_search() failed: %d\n", index);
Stephen Warren135aa952016-06-17 09:44:00 -0600313 return index;
314 }
315
316 return clk_get_by_index(dev, index, clk);
Simon Glasse70cc432016-01-20 19:43:02 -0700317}
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200318
319int clk_release_all(struct clk *clk, int count)
320{
321 int i, ret;
322
323 for (i = 0; i < count; i++) {
324 debug("%s(clk[%d]=%p)\n", __func__, i, &clk[i]);
325
326 /* check if clock has been previously requested */
327 if (!clk[i].dev)
328 continue;
329
330 ret = clk_disable(&clk[i]);
331 if (ret && ret != -ENOSYS)
332 return ret;
333
334 ret = clk_free(&clk[i]);
335 if (ret && ret != -ENOSYS)
336 return ret;
337 }
338
339 return 0;
340}
341
Simon Glass7423daa2016-07-04 11:58:03 -0600342#endif /* OF_CONTROL */
Stephen Warren135aa952016-06-17 09:44:00 -0600343
344int clk_request(struct udevice *dev, struct clk *clk)
345{
Mario Six268453b2018-01-15 11:06:51 +0100346 const struct clk_ops *ops = clk_dev_ops(dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600347
348 debug("%s(dev=%p, clk=%p)\n", __func__, dev, clk);
349
350 clk->dev = dev;
351
352 if (!ops->request)
353 return 0;
354
355 return ops->request(clk);
356}
357
358int clk_free(struct clk *clk)
359{
Mario Six268453b2018-01-15 11:06:51 +0100360 const struct clk_ops *ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600361
362 debug("%s(clk=%p)\n", __func__, clk);
363
364 if (!ops->free)
365 return 0;
366
367 return ops->free(clk);
368}
369
370ulong clk_get_rate(struct clk *clk)
371{
Mario Six268453b2018-01-15 11:06:51 +0100372 const struct clk_ops *ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600373
374 debug("%s(clk=%p)\n", __func__, clk);
375
376 if (!ops->get_rate)
377 return -ENOSYS;
378
379 return ops->get_rate(clk);
380}
381
382ulong clk_set_rate(struct clk *clk, ulong rate)
383{
Mario Six268453b2018-01-15 11:06:51 +0100384 const struct clk_ops *ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600385
386 debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate);
387
388 if (!ops->set_rate)
389 return -ENOSYS;
390
391 return ops->set_rate(clk, rate);
392}
393
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100394int clk_set_parent(struct clk *clk, struct clk *parent)
395{
396 const struct clk_ops *ops = clk_dev_ops(clk->dev);
397
398 debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent);
399
400 if (!ops->set_parent)
401 return -ENOSYS;
402
403 return ops->set_parent(clk, parent);
404}
405
Stephen Warren135aa952016-06-17 09:44:00 -0600406int clk_enable(struct clk *clk)
407{
Mario Six268453b2018-01-15 11:06:51 +0100408 const struct clk_ops *ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600409
410 debug("%s(clk=%p)\n", __func__, clk);
411
412 if (!ops->enable)
413 return -ENOSYS;
414
415 return ops->enable(clk);
416}
417
Neil Armstronga855be82018-04-03 11:44:18 +0200418int clk_enable_bulk(struct clk_bulk *bulk)
419{
420 int i, ret;
421
422 for (i = 0; i < bulk->count; i++) {
423 ret = clk_enable(&bulk->clks[i]);
424 if (ret < 0 && ret != -ENOSYS)
425 return ret;
426 }
427
428 return 0;
429}
430
Stephen Warren135aa952016-06-17 09:44:00 -0600431int clk_disable(struct clk *clk)
432{
Mario Six268453b2018-01-15 11:06:51 +0100433 const struct clk_ops *ops = clk_dev_ops(clk->dev);
Stephen Warren135aa952016-06-17 09:44:00 -0600434
435 debug("%s(clk=%p)\n", __func__, clk);
436
437 if (!ops->disable)
438 return -ENOSYS;
439
440 return ops->disable(clk);
441}
Simon Glasse70cc432016-01-20 19:43:02 -0700442
Neil Armstronga855be82018-04-03 11:44:18 +0200443int clk_disable_bulk(struct clk_bulk *bulk)
444{
445 int i, ret;
446
447 for (i = 0; i < bulk->count; i++) {
448 ret = clk_disable(&bulk->clks[i]);
449 if (ret < 0 && ret != -ENOSYS)
450 return ret;
451 }
452
453 return 0;
454}
455
Simon Glassf26c8a82015-06-23 15:39:15 -0600456UCLASS_DRIVER(clk) = {
457 .id = UCLASS_CLK,
458 .name = "clk",
459};