Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 6 | * Copyright (c) 2018, Theobroma Systems Design und Consulting GmbH |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
Patrick Delaunay | b953ec2 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 9 | #define LOG_CATEGORY UCLASS_CLK |
| 10 | |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <clk.h> |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 13 | #include <clk-uclass.h> |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 14 | #include <dm.h> |
Simon Glass | 7423daa | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 15 | #include <dt-structs.h> |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 16 | #include <errno.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 17 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 18 | #include <malloc.h> |
Patrick Delaunay | 572c446 | 2021-11-19 15:12:06 +0100 | [diff] [blame] | 19 | #include <asm/global_data.h> |
Sean Anderson | 8c12cb3 | 2021-04-08 22:13:03 -0400 | [diff] [blame] | 20 | #include <dm/device_compat.h> |
Claudiu Beznea | 4d139f3 | 2020-09-07 17:46:34 +0300 | [diff] [blame] | 21 | #include <dm/device-internal.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 22 | #include <dm/devres.h> |
| 23 | #include <dm/read.h> |
Simon Glass | eb41d8a | 2020-05-10 11:40:08 -0600 | [diff] [blame] | 24 | #include <linux/bug.h> |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 25 | #include <linux/clk-provider.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 26 | #include <linux/err.h> |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 27 | |
Mario Six | 268453b | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 28 | static inline const struct clk_ops *clk_dev_ops(struct udevice *dev) |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 29 | { |
Mario Six | 268453b | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 30 | return (const struct clk_ops *)dev->driver->ops; |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 31 | } |
| 32 | |
Simon Glass | fb989e0 | 2020-07-19 10:15:56 -0600 | [diff] [blame] | 33 | struct clk *dev_get_clk_ptr(struct udevice *dev) |
| 34 | { |
| 35 | return (struct clk *)dev_get_uclass_priv(dev); |
| 36 | } |
| 37 | |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 38 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 39 | int clk_get_by_phandle(struct udevice *dev, const struct phandle_1_arg *cells, |
| 40 | struct clk *clk) |
Simon Glass | 7423daa | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 41 | { |
| 42 | int ret; |
| 43 | |
Simon Glass | cc469b7 | 2021-03-15 17:25:28 +1300 | [diff] [blame] | 44 | ret = device_get_by_ofplat_idx(cells->idx, &clk->dev); |
Simon Glass | 7423daa | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 45 | if (ret) |
| 46 | return ret; |
Walter Lozano | 51f1263 | 2020-06-25 01:10:13 -0300 | [diff] [blame] | 47 | clk->id = cells->arg[0]; |
Simon Glass | 7423daa | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 48 | |
| 49 | return 0; |
| 50 | } |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 51 | #endif |
| 52 | |
| 53 | #if CONFIG_IS_ENABLED(OF_REAL) |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 54 | static int clk_of_xlate_default(struct clk *clk, |
Simon Glass | a4e0ef5 | 2017-05-18 20:09:40 -0600 | [diff] [blame] | 55 | struct ofnode_phandle_args *args) |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 56 | { |
| 57 | debug("%s(clk=%p)\n", __func__, clk); |
| 58 | |
| 59 | if (args->args_count > 1) { |
Sean Anderson | 46ad7ce | 2021-12-01 14:26:53 -0500 | [diff] [blame] | 60 | debug("Invalid args_count: %d\n", args->args_count); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 61 | return -EINVAL; |
| 62 | } |
| 63 | |
| 64 | if (args->args_count) |
| 65 | clk->id = args->args[0]; |
| 66 | else |
| 67 | clk->id = 0; |
| 68 | |
Sekhar Nori | e497fab | 2019-07-11 14:30:24 +0530 | [diff] [blame] | 69 | clk->data = 0; |
| 70 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 74 | static 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 Glass | 5c5992c | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 91 | return log_msg_ret("get", ret); |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 92 | } |
| 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 Glass | 5c5992c | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 104 | return log_msg_ret("xlate", ret); |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | return clk_request(dev_clk, clk); |
| 108 | err: |
| 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 Glass | 5c5992c | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 111 | |
| 112 | return log_msg_ret("prop", ret); |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 113 | } |
| 114 | |
Philipp Tomsich | 95f9a7e | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 115 | static int clk_get_by_indexed_prop(struct udevice *dev, const char *prop_name, |
| 116 | int index, struct clk *clk) |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 117 | { |
| 118 | int ret; |
Simon Glass | aa9bb09 | 2017-05-30 21:47:29 -0600 | [diff] [blame] | 119 | struct ofnode_phandle_args args; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 120 | |
| 121 | debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk); |
| 122 | |
| 123 | assert(clk); |
Patrice Chotard | 82a8a66 | 2017-07-18 11:57:07 +0200 | [diff] [blame] | 124 | clk->dev = NULL; |
| 125 | |
Philipp Tomsich | 95f9a7e | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 126 | ret = dev_read_phandle_with_args(dev, prop_name, "#clock-cells", 0, |
Mario Six | 268453b | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 127 | index, &args); |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 128 | if (ret) { |
| 129 | debug("%s: fdtdec_parse_phandle_with_args failed: err=%d\n", |
| 130 | __func__, ret); |
Simon Glass | 5c5992c | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 131 | return log_ret(ret); |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Wenyou Yang | 3f56b13 | 2016-09-27 11:00:28 +0800 | [diff] [blame] | 134 | |
Jagan Teki | dcb63fc | 2019-02-28 00:26:53 +0530 | [diff] [blame] | 135 | return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks", |
Sean Anderson | 675d790 | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 136 | index, clk); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 137 | } |
Philipp Tomsich | 95f9a7e | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 138 | |
| 139 | int clk_get_by_index(struct udevice *dev, int index, struct clk *clk) |
| 140 | { |
Sean Anderson | e7075ff | 2022-02-27 14:01:13 -0500 | [diff] [blame] | 141 | return clk_get_by_index_nodev(dev_ofnode(dev), index, clk); |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | int 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 Anderson | 675d790 | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 150 | index, &args); |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 151 | |
| 152 | return clk_get_by_index_tail(ret, node, &args, "clocks", |
Sean Anderson | 675d790 | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 153 | index, clk); |
Philipp Tomsich | 95f9a7e | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 154 | } |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 155 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 156 | int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) |
| 157 | { |
| 158 | int i, ret, err, count; |
Patrick Delaunay | c262522 | 2021-04-27 10:57:54 +0200 | [diff] [blame] | 159 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 160 | bulk->count = 0; |
| 161 | |
Patrick Delaunay | 89f6830 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 162 | count = dev_count_phandle_with_args(dev, "clocks", "#clock-cells", 0); |
Neil Armstrong | 721881c | 2018-04-17 11:30:31 +0200 | [diff] [blame] | 163 | if (count < 1) |
| 164 | return count; |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 165 | |
| 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 | |
| 180 | bulk_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 Beznea | b364134 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 189 | static 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 Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 206 | static int clk_set_default_parents(struct udevice *dev, |
| 207 | enum clk_defaults_stage stage) |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 208 | { |
Claudiu Beznea | b364134 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 209 | struct clk clk, parent_clk, *c, *p; |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 210 | int index; |
| 211 | int num_parents; |
| 212 | int ret; |
| 213 | |
| 214 | num_parents = dev_count_phandle_with_args(dev, "assigned-clock-parents", |
Patrick Delaunay | 89f6830 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 215 | "#clock-cells", 0); |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 216 | 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 Armstrong | d64caaf | 2018-07-26 15:19:32 +0200 | [diff] [blame] | 225 | /* If -ENOENT, this is a no-op entry */ |
| 226 | if (ret == -ENOENT) |
| 227 | continue; |
| 228 | |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 229 | 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 Beznea | b364134 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 235 | p = clk_set_default_get_by_id(&parent_clk); |
| 236 | if (IS_ERR(p)) |
| 237 | return PTR_ERR(p); |
| 238 | |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 239 | ret = clk_get_by_indexed_prop(dev, "assigned-clocks", |
| 240 | index, &clk); |
Tero Kristo | 1e1fab0 | 2021-06-11 11:45:11 +0300 | [diff] [blame] | 241 | /* |
| 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 Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 250 | 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 Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 256 | /* 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 Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 260 | if (stage == CLK_DEFAULTS_PRE && clk.dev == dev) |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 261 | continue; |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 262 | |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 263 | if (stage != CLK_DEFAULTS_PRE && clk.dev != dev) |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 264 | /* do not setup twice the parent clocks */ |
| 265 | continue; |
| 266 | |
Claudiu Beznea | b364134 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 267 | 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 Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 272 | /* |
| 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 Hiblot | 02e2a2a | 2019-09-26 15:42:42 +0200 | [diff] [blame] | 279 | if (ret < 0) { |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 280 | 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 Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 289 | static int clk_set_default_rates(struct udevice *dev, |
| 290 | enum clk_defaults_stage stage) |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 291 | { |
Claudiu Beznea | b364134 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 292 | struct clk clk, *c; |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 293 | 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 Armstrong | d64caaf | 2018-07-26 15:19:32 +0200 | [diff] [blame] | 313 | /* If 0 is passed, this is a no-op */ |
| 314 | if (!rates[index]) |
| 315 | continue; |
| 316 | |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 317 | ret = clk_get_by_indexed_prop(dev, "assigned-clocks", |
| 318 | index, &clk); |
Tero Kristo | 1e1fab0 | 2021-06-11 11:45:11 +0300 | [diff] [blame] | 319 | /* |
| 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 Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 328 | if (ret) { |
Sean Anderson | 8c12cb3 | 2021-04-08 22:13:03 -0400 | [diff] [blame] | 329 | dev_dbg(dev, |
| 330 | "could not get assigned clock %d (err = %d)\n", |
| 331 | index, ret); |
Ashok Reddy Soma | 99b4647 | 2023-08-30 10:31:42 +0200 | [diff] [blame] | 332 | /* Skip if it is empty */ |
| 333 | if (ret == -ENOENT) { |
| 334 | ret = 0; |
| 335 | continue; |
| 336 | } |
| 337 | |
| 338 | return ret; |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 339 | } |
| 340 | |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 341 | /* 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 Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 345 | if (stage == CLK_DEFAULTS_PRE && clk.dev == dev) |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 346 | continue; |
| 347 | |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 348 | if (stage != CLK_DEFAULTS_PRE && clk.dev != dev) |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 349 | /* do not setup twice the parent clocks */ |
| 350 | continue; |
| 351 | |
Claudiu Beznea | b364134 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 352 | 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 Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 357 | |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 358 | if (ret < 0) { |
Sean Anderson | 8c12cb3 | 2021-04-08 22:13:03 -0400 | [diff] [blame] | 359 | dev_warn(dev, |
| 360 | "failed to set rate on clock index %d (%ld) (error = %d)\n", |
| 361 | index, clk.id, ret); |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 362 | break; |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | fail: |
| 367 | free(rates); |
| 368 | return ret; |
| 369 | } |
| 370 | |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 371 | int clk_set_defaults(struct udevice *dev, enum clk_defaults_stage stage) |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 372 | { |
| 373 | int ret; |
| 374 | |
Simon Glass | 7d14ee4 | 2020-12-19 10:40:13 -0700 | [diff] [blame] | 375 | if (!dev_has_ofnode(dev)) |
Peng Fan | 91944ef | 2019-07-31 07:01:49 +0000 | [diff] [blame] | 376 | return 0; |
| 377 | |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 378 | /* |
| 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 Tomsich | 291da96 | 2018-11-26 20:20:19 +0100 | [diff] [blame] | 383 | if (!(IS_ENABLED(CONFIG_SPL_BUILD) || (gd->flags & GD_FLG_RELOC))) |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 384 | if (stage != CLK_DEFAULTS_POST_FORCE) |
| 385 | return 0; |
Philipp Tomsich | 291da96 | 2018-11-26 20:20:19 +0100 | [diff] [blame] | 386 | |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 387 | debug("%s(%s)\n", __func__, dev_read_name(dev)); |
| 388 | |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 389 | ret = clk_set_default_parents(dev, stage); |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 390 | if (ret) |
| 391 | return ret; |
| 392 | |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 393 | ret = clk_set_default_rates(dev, stage); |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 394 | if (ret < 0) |
| 395 | return ret; |
| 396 | |
| 397 | return 0; |
| 398 | } |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 399 | |
| 400 | int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk) |
| 401 | { |
Sean Anderson | e7075ff | 2022-02-27 14:01:13 -0500 | [diff] [blame] | 402 | return clk_get_by_name_nodev(dev_ofnode(dev), name, clk); |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 403 | } |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 404 | #endif /* OF_REAL */ |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 405 | |
Chunfeng Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 406 | int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk) |
| 407 | { |
Samuel Holland | 2050f82 | 2023-01-21 18:02:51 -0600 | [diff] [blame] | 408 | int index = 0; |
Chunfeng Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 409 | |
| 410 | debug("%s(node=%p, name=%s, clk=%p)\n", __func__, |
| 411 | ofnode_get_name(node), name, clk); |
| 412 | clk->dev = NULL; |
| 413 | |
Samuel Holland | 2050f82 | 2023-01-21 18:02:51 -0600 | [diff] [blame] | 414 | 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 Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | return clk_get_by_index_nodev(node, index, clk); |
| 423 | } |
| 424 | |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 425 | int clk_release_all(struct clk *clk, int count) |
| 426 | { |
| 427 | int i, ret; |
| 428 | |
| 429 | for (i = 0; i < count; i++) { |
| 430 | debug("%s(clk[%d]=%p)\n", __func__, i, &clk[i]); |
| 431 | |
| 432 | /* check if clock has been previously requested */ |
| 433 | if (!clk[i].dev) |
| 434 | continue; |
| 435 | |
| 436 | ret = clk_disable(&clk[i]); |
| 437 | if (ret && ret != -ENOSYS) |
| 438 | return ret; |
| 439 | |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 440 | clk_free(&clk[i]); |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | return 0; |
| 444 | } |
| 445 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 446 | int clk_request(struct udevice *dev, struct clk *clk) |
| 447 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 448 | const struct clk_ops *ops; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 449 | |
| 450 | debug("%s(dev=%p, clk=%p)\n", __func__, dev, clk); |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 451 | if (!clk) |
| 452 | return 0; |
| 453 | ops = clk_dev_ops(dev); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 454 | |
| 455 | clk->dev = dev; |
| 456 | |
| 457 | if (!ops->request) |
| 458 | return 0; |
| 459 | |
| 460 | return ops->request(clk); |
| 461 | } |
| 462 | |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 463 | void clk_free(struct clk *clk) |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 464 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 465 | const struct clk_ops *ops; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 466 | |
| 467 | debug("%s(clk=%p)\n", __func__, clk); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 468 | if (!clk_valid(clk)) |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 469 | return; |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 470 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 471 | |
Sean Anderson | 276d446 | 2022-01-15 17:24:58 -0500 | [diff] [blame] | 472 | if (ops->rfree) |
| 473 | ops->rfree(clk); |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 474 | return; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | ulong clk_get_rate(struct clk *clk) |
| 478 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 479 | const struct clk_ops *ops; |
Simon Glass | 5c5992c | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 480 | int ret; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 481 | |
| 482 | debug("%s(clk=%p)\n", __func__, clk); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 483 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 484 | return 0; |
| 485 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 486 | |
| 487 | if (!ops->get_rate) |
| 488 | return -ENOSYS; |
| 489 | |
Simon Glass | 5c5992c | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 490 | ret = ops->get_rate(clk); |
| 491 | if (ret) |
| 492 | return log_ret(ret); |
| 493 | |
| 494 | return 0; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 495 | } |
| 496 | |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 497 | struct clk *clk_get_parent(struct clk *clk) |
| 498 | { |
| 499 | struct udevice *pdev; |
| 500 | struct clk *pclk; |
| 501 | |
| 502 | debug("%s(clk=%p)\n", __func__, clk); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 503 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 504 | return NULL; |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 505 | |
| 506 | pdev = dev_get_parent(clk->dev); |
Tero Kristo | 920ea5a | 2021-06-11 11:45:08 +0300 | [diff] [blame] | 507 | if (!pdev) |
| 508 | return ERR_PTR(-ENODEV); |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 509 | pclk = dev_get_clk_ptr(pdev); |
| 510 | if (!pclk) |
| 511 | return ERR_PTR(-ENODEV); |
| 512 | |
| 513 | return pclk; |
| 514 | } |
| 515 | |
Michal Suchanek | a1265cd | 2022-09-28 12:37:57 +0200 | [diff] [blame] | 516 | ulong clk_get_parent_rate(struct clk *clk) |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 517 | { |
| 518 | const struct clk_ops *ops; |
| 519 | struct clk *pclk; |
| 520 | |
| 521 | debug("%s(clk=%p)\n", __func__, clk); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 522 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 523 | return 0; |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 524 | |
| 525 | pclk = clk_get_parent(clk); |
| 526 | if (IS_ERR(pclk)) |
| 527 | return -ENODEV; |
| 528 | |
| 529 | ops = clk_dev_ops(pclk->dev); |
| 530 | if (!ops->get_rate) |
| 531 | return -ENOSYS; |
| 532 | |
Lukasz Majewski | 1a961c9 | 2019-06-24 15:50:46 +0200 | [diff] [blame] | 533 | /* Read the 'rate' if not already set or if proper flag set*/ |
| 534 | if (!pclk->rate || pclk->flags & CLK_GET_RATE_NOCACHE) |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 535 | pclk->rate = clk_get_rate(pclk); |
| 536 | |
| 537 | return pclk->rate; |
| 538 | } |
| 539 | |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 540 | ulong clk_round_rate(struct clk *clk, ulong rate) |
| 541 | { |
| 542 | const struct clk_ops *ops; |
| 543 | |
| 544 | debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate); |
| 545 | if (!clk_valid(clk)) |
| 546 | return 0; |
| 547 | |
| 548 | ops = clk_dev_ops(clk->dev); |
| 549 | if (!ops->round_rate) |
| 550 | return -ENOSYS; |
| 551 | |
| 552 | return ops->round_rate(clk, rate); |
| 553 | } |
| 554 | |
Patrick Delaunay | 19fb40a | 2022-06-20 15:37:25 +0200 | [diff] [blame] | 555 | static void clk_get_priv(struct clk *clk, struct clk **clkp) |
| 556 | { |
| 557 | *clkp = clk; |
| 558 | |
| 559 | /* get private clock struct associated to the provided clock */ |
| 560 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 561 | /* Take id 0 as a non-valid clk, such as dummy */ |
| 562 | if (clk->id) |
| 563 | clk_get_by_id(clk->id, clkp); |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | /* clean cache, called with private clock struct */ |
Tero Kristo | 6b7fd31 | 2021-06-11 11:45:12 +0300 | [diff] [blame] | 568 | static void clk_clean_rate_cache(struct clk *clk) |
| 569 | { |
| 570 | struct udevice *child_dev; |
| 571 | struct clk *clkp; |
| 572 | |
| 573 | if (!clk) |
| 574 | return; |
| 575 | |
| 576 | clk->rate = 0; |
| 577 | |
| 578 | list_for_each_entry(child_dev, &clk->dev->child_head, sibling_node) { |
| 579 | clkp = dev_get_clk_ptr(child_dev); |
| 580 | clk_clean_rate_cache(clkp); |
| 581 | } |
| 582 | } |
| 583 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 584 | ulong clk_set_rate(struct clk *clk, ulong rate) |
| 585 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 586 | const struct clk_ops *ops; |
Patrick Delaunay | 19fb40a | 2022-06-20 15:37:25 +0200 | [diff] [blame] | 587 | struct clk *clkp; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 588 | |
| 589 | debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 590 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 591 | return 0; |
| 592 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 593 | |
| 594 | if (!ops->set_rate) |
| 595 | return -ENOSYS; |
| 596 | |
Patrick Delaunay | 19fb40a | 2022-06-20 15:37:25 +0200 | [diff] [blame] | 597 | /* get private clock struct used for cache */ |
| 598 | clk_get_priv(clk, &clkp); |
Tero Kristo | 6b7fd31 | 2021-06-11 11:45:12 +0300 | [diff] [blame] | 599 | /* Clean up cached rates for us and all child clocks */ |
Patrick Delaunay | 19fb40a | 2022-06-20 15:37:25 +0200 | [diff] [blame] | 600 | clk_clean_rate_cache(clkp); |
Tero Kristo | 6b7fd31 | 2021-06-11 11:45:12 +0300 | [diff] [blame] | 601 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 602 | return ops->set_rate(clk, rate); |
| 603 | } |
| 604 | |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 605 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 606 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 607 | const struct clk_ops *ops; |
Claudiu Beznea | 4d139f3 | 2020-09-07 17:46:34 +0300 | [diff] [blame] | 608 | int ret; |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 609 | |
| 610 | debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 611 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 612 | return 0; |
| 613 | ops = clk_dev_ops(clk->dev); |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 614 | |
| 615 | if (!ops->set_parent) |
| 616 | return -ENOSYS; |
| 617 | |
Claudiu Beznea | 4d139f3 | 2020-09-07 17:46:34 +0300 | [diff] [blame] | 618 | ret = ops->set_parent(clk, parent); |
| 619 | if (ret) |
| 620 | return ret; |
| 621 | |
| 622 | if (CONFIG_IS_ENABLED(CLK_CCF)) |
| 623 | ret = device_reparent(clk->dev, parent->dev); |
| 624 | |
| 625 | return ret; |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 626 | } |
| 627 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 628 | int clk_enable(struct clk *clk) |
| 629 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 630 | const struct clk_ops *ops; |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 631 | struct clk *clkp = NULL; |
| 632 | int ret; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 633 | |
| 634 | debug("%s(clk=%p)\n", __func__, clk); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 635 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 636 | return 0; |
| 637 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 638 | |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 639 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 640 | /* Take id 0 as a non-valid clk, such as dummy */ |
| 641 | if (clk->id && !clk_get_by_id(clk->id, &clkp)) { |
| 642 | if (clkp->enable_count) { |
| 643 | clkp->enable_count++; |
| 644 | return 0; |
| 645 | } |
| 646 | if (clkp->dev->parent && |
Patrick Delaunay | b0cdd82 | 2022-01-24 14:17:14 +0100 | [diff] [blame] | 647 | device_get_uclass_id(clkp->dev->parent) == UCLASS_CLK) { |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 648 | ret = clk_enable(dev_get_clk_ptr(clkp->dev->parent)); |
| 649 | if (ret) { |
| 650 | printf("Enable %s failed\n", |
| 651 | clkp->dev->parent->name); |
| 652 | return ret; |
| 653 | } |
| 654 | } |
| 655 | } |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 656 | |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 657 | if (ops->enable) { |
| 658 | ret = ops->enable(clk); |
| 659 | if (ret) { |
| 660 | printf("Enable %s failed\n", clk->dev->name); |
| 661 | return ret; |
| 662 | } |
| 663 | } |
| 664 | if (clkp) |
| 665 | clkp->enable_count++; |
| 666 | } else { |
| 667 | if (!ops->enable) |
| 668 | return -ENOSYS; |
| 669 | return ops->enable(clk); |
| 670 | } |
| 671 | |
| 672 | return 0; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 673 | } |
| 674 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 675 | int clk_enable_bulk(struct clk_bulk *bulk) |
| 676 | { |
| 677 | int i, ret; |
| 678 | |
| 679 | for (i = 0; i < bulk->count; i++) { |
| 680 | ret = clk_enable(&bulk->clks[i]); |
| 681 | if (ret < 0 && ret != -ENOSYS) |
| 682 | return ret; |
| 683 | } |
| 684 | |
| 685 | return 0; |
| 686 | } |
| 687 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 688 | int clk_disable(struct clk *clk) |
| 689 | { |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 690 | const struct clk_ops *ops; |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 691 | struct clk *clkp = NULL; |
| 692 | int ret; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 693 | |
| 694 | debug("%s(clk=%p)\n", __func__, clk); |
Chunfeng Yun | bd7c798 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 695 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 696 | return 0; |
| 697 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 698 | |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 699 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 700 | if (clk->id && !clk_get_by_id(clk->id, &clkp)) { |
Claudiu Beznea | 9a5d59d | 2020-09-07 17:46:35 +0300 | [diff] [blame] | 701 | if (clkp->flags & CLK_IS_CRITICAL) |
| 702 | return 0; |
| 703 | |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 704 | if (clkp->enable_count == 0) { |
| 705 | printf("clk %s already disabled\n", |
| 706 | clkp->dev->name); |
| 707 | return 0; |
| 708 | } |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 709 | |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 710 | if (--clkp->enable_count > 0) |
| 711 | return 0; |
| 712 | } |
| 713 | |
| 714 | if (ops->disable) { |
| 715 | ret = ops->disable(clk); |
| 716 | if (ret) |
| 717 | return ret; |
| 718 | } |
| 719 | |
| 720 | if (clkp && clkp->dev->parent && |
Patrick Delaunay | b0cdd82 | 2022-01-24 14:17:14 +0100 | [diff] [blame] | 721 | device_get_uclass_id(clkp->dev->parent) == UCLASS_CLK) { |
Peng Fan | 0520be0 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 722 | ret = clk_disable(dev_get_clk_ptr(clkp->dev->parent)); |
| 723 | if (ret) { |
| 724 | printf("Disable %s failed\n", |
| 725 | clkp->dev->parent->name); |
| 726 | return ret; |
| 727 | } |
| 728 | } |
| 729 | } else { |
| 730 | if (!ops->disable) |
| 731 | return -ENOSYS; |
| 732 | |
| 733 | return ops->disable(clk); |
| 734 | } |
| 735 | |
| 736 | return 0; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 737 | } |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 738 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 739 | int clk_disable_bulk(struct clk_bulk *bulk) |
| 740 | { |
| 741 | int i, ret; |
| 742 | |
| 743 | for (i = 0; i < bulk->count; i++) { |
| 744 | ret = clk_disable(&bulk->clks[i]); |
| 745 | if (ret < 0 && ret != -ENOSYS) |
| 746 | return ret; |
| 747 | } |
| 748 | |
| 749 | return 0; |
| 750 | } |
| 751 | |
Lukasz Majewski | 2796af7 | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 752 | int clk_get_by_id(ulong id, struct clk **clkp) |
| 753 | { |
| 754 | struct udevice *dev; |
| 755 | struct uclass *uc; |
| 756 | int ret; |
| 757 | |
| 758 | ret = uclass_get(UCLASS_CLK, &uc); |
| 759 | if (ret) |
| 760 | return ret; |
| 761 | |
| 762 | uclass_foreach_dev(dev, uc) { |
| 763 | struct clk *clk = dev_get_clk_ptr(dev); |
| 764 | |
| 765 | if (clk && clk->id == id) { |
| 766 | *clkp = clk; |
| 767 | return 0; |
| 768 | } |
| 769 | } |
| 770 | |
| 771 | return -ENOENT; |
| 772 | } |
| 773 | |
Sekhar Nori | acbb7cd | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 774 | bool clk_is_match(const struct clk *p, const struct clk *q) |
| 775 | { |
| 776 | /* trivial case: identical struct clk's or both NULL */ |
| 777 | if (p == q) |
| 778 | return true; |
| 779 | |
Jean-Jacques Hiblot | 8a1661f | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 780 | /* trivial case #2: on the clk pointer is NULL */ |
| 781 | if (!p || !q) |
| 782 | return false; |
| 783 | |
Sekhar Nori | acbb7cd | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 784 | /* same device, id and data */ |
| 785 | if (p->dev == q->dev && p->id == q->id && p->data == q->data) |
| 786 | return true; |
| 787 | |
| 788 | return false; |
| 789 | } |
| 790 | |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 791 | static void devm_clk_release(struct udevice *dev, void *res) |
| 792 | { |
| 793 | clk_free(res); |
| 794 | } |
| 795 | |
| 796 | static int devm_clk_match(struct udevice *dev, void *res, void *data) |
| 797 | { |
| 798 | return res == data; |
| 799 | } |
| 800 | |
| 801 | struct clk *devm_clk_get(struct udevice *dev, const char *id) |
| 802 | { |
| 803 | int rc; |
| 804 | struct clk *clk; |
| 805 | |
| 806 | clk = devres_alloc(devm_clk_release, sizeof(struct clk), __GFP_ZERO); |
| 807 | if (unlikely(!clk)) |
| 808 | return ERR_PTR(-ENOMEM); |
| 809 | |
| 810 | rc = clk_get_by_name(dev, id, clk); |
| 811 | if (rc) |
| 812 | return ERR_PTR(rc); |
| 813 | |
| 814 | devres_add(dev, clk); |
| 815 | return clk; |
| 816 | } |
| 817 | |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 818 | void devm_clk_put(struct udevice *dev, struct clk *clk) |
| 819 | { |
| 820 | int rc; |
| 821 | |
| 822 | if (!clk) |
| 823 | return; |
| 824 | |
| 825 | rc = devres_release(dev, devm_clk_release, devm_clk_match, clk); |
| 826 | WARN_ON(rc); |
| 827 | } |
| 828 | |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 829 | int clk_uclass_post_probe(struct udevice *dev) |
| 830 | { |
| 831 | /* |
| 832 | * when a clock provider is probed. Call clk_set_defaults() |
| 833 | * also after the device is probed. This takes care of cases |
| 834 | * where the DT is used to setup default parents and rates |
| 835 | * using assigned-clocks |
| 836 | */ |
Marek Vasut | 75f080d | 2022-01-01 19:51:39 +0100 | [diff] [blame] | 837 | clk_set_defaults(dev, CLK_DEFAULTS_POST); |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 838 | |
| 839 | return 0; |
| 840 | } |
| 841 | |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 842 | UCLASS_DRIVER(clk) = { |
| 843 | .id = UCLASS_CLK, |
| 844 | .name = "clk", |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 845 | .post_probe = clk_uclass_post_probe, |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 846 | }; |