Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 36ad234 | 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 | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 6 | * Copyright (c) 2018, Theobroma Systems Design und Consulting GmbH |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
Patrick Delaunay | 8131335 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 9 | #define LOG_CATEGORY UCLASS_CLK |
| 10 | |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <clk.h> |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 13 | #include <clk-uclass.h> |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 14 | #include <dm.h> |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 15 | #include <dt-structs.h> |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 16 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 17 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 18 | #include <malloc.h> |
Sean Anderson | d7ac373 | 2021-04-08 22:13:03 -0400 | [diff] [blame] | 19 | #include <dm/device_compat.h> |
Claudiu Beznea | c8c1600 | 2020-09-07 17:46:34 +0300 | [diff] [blame] | 20 | #include <dm/device-internal.h> |
Simon Glass | d66c5f7 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 21 | #include <dm/devres.h> |
| 22 | #include <dm/read.h> |
Simon Glass | c06c1be | 2020-05-10 11:40:08 -0600 | [diff] [blame] | 23 | #include <linux/bug.h> |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 24 | #include <linux/clk-provider.h> |
Simon Glass | d66c5f7 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 25 | #include <linux/err.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 26 | #include <asm/global_data.h> |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 27 | |
Mario Six | 799fe56 | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 28 | static inline const struct clk_ops *clk_dev_ops(struct udevice *dev) |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 29 | { |
Mario Six | 799fe56 | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 30 | return (const struct clk_ops *)dev->driver->ops; |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 31 | } |
| 32 | |
Simon Glass | 4303396 | 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 | 3580f6d | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 38 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
Walter Lozano | dc5b437 | 2020-06-25 01:10:13 -0300 | [diff] [blame] | 39 | int clk_get_by_driver_info(struct udevice *dev, struct phandle_1_arg *cells, |
| 40 | struct clk *clk) |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 41 | { |
| 42 | int ret; |
| 43 | |
Simon Glass | 0000e0d | 2021-03-15 17:25:28 +1300 | [diff] [blame] | 44 | ret = device_get_by_ofplat_idx(cells->idx, &clk->dev); |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 45 | if (ret) |
| 46 | return ret; |
Walter Lozano | dc5b437 | 2020-06-25 01:10:13 -0300 | [diff] [blame] | 47 | clk->id = cells->arg[0]; |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 48 | |
| 49 | return 0; |
| 50 | } |
Simon Glass | 3580f6d | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 51 | #endif |
| 52 | |
| 53 | #if CONFIG_IS_ENABLED(OF_REAL) |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 54 | static int clk_of_xlate_default(struct clk *clk, |
Simon Glass | b7ae277 | 2017-05-18 20:09:40 -0600 | [diff] [blame] | 55 | struct ofnode_phandle_args *args) |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 56 | { |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 57 | debug("%s(clk=%p)\n", __func__, clk); |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 58 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 59 | if (args->args_count > 1) { |
| 60 | debug("Invaild args_count: %d\n", args->args_count); |
| 61 | return -EINVAL; |
| 62 | } |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 63 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 64 | if (args->args_count) |
| 65 | clk->id = args->args[0]; |
| 66 | else |
| 67 | clk->id = 0; |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 68 | |
Sekhar Nori | 3d23abd | 2019-07-11 14:30:24 +0530 | [diff] [blame] | 69 | clk->data = 0; |
| 70 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 71 | return 0; |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 72 | } |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 73 | |
Jagan Teki | fc7c7ce | 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 | f73f581 | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 91 | return log_msg_ret("get", ret); |
Jagan Teki | fc7c7ce | 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 | f73f581 | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 104 | return log_msg_ret("xlate", ret); |
Jagan Teki | fc7c7ce | 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 | f73f581 | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 111 | |
| 112 | return log_msg_ret("prop", ret); |
Jagan Teki | fc7c7ce | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 113 | } |
| 114 | |
Philipp Tomsich | f760434 | 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) |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 117 | { |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 118 | int ret; |
Simon Glass | 2558bff | 2017-05-30 21:47:29 -0600 | [diff] [blame] | 119 | struct ofnode_phandle_args args; |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 120 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 121 | debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk); |
| 122 | |
| 123 | assert(clk); |
Patrice Chotard | 96fc03d | 2017-07-18 11:57:07 +0200 | [diff] [blame] | 124 | clk->dev = NULL; |
| 125 | |
Philipp Tomsich | f760434 | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 126 | ret = dev_read_phandle_with_args(dev, prop_name, "#clock-cells", 0, |
Mario Six | 799fe56 | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 127 | index, &args); |
Simon Glass | 0342bd2 | 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 | f73f581 | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 131 | return log_ret(ret); |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 134 | |
Jagan Teki | a77add3 | 2019-02-28 00:26:53 +0530 | [diff] [blame] | 135 | return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks", |
Sean Anderson | f0d5a6b | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 136 | index, clk); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 137 | } |
Philipp Tomsich | f760434 | 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 | { |
Jagan Teki | fc7c7ce | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 141 | struct ofnode_phandle_args args; |
| 142 | int ret; |
| 143 | |
| 144 | ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0, |
| 145 | index, &args); |
| 146 | |
| 147 | return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks", |
Sean Anderson | f0d5a6b | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 148 | index, clk); |
Jagan Teki | fc7c7ce | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk) |
| 152 | { |
| 153 | struct ofnode_phandle_args args; |
| 154 | int ret; |
| 155 | |
| 156 | ret = ofnode_parse_phandle_with_args(node, "clocks", "#clock-cells", 0, |
Sean Anderson | f0d5a6b | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 157 | index, &args); |
Jagan Teki | fc7c7ce | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 158 | |
| 159 | return clk_get_by_index_tail(ret, node, &args, "clocks", |
Sean Anderson | f0d5a6b | 2020-06-24 06:41:08 -0400 | [diff] [blame] | 160 | index, clk); |
Philipp Tomsich | f760434 | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 161 | } |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 162 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 163 | int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) |
| 164 | { |
| 165 | int i, ret, err, count; |
Patrick Delaunay | b9c3214 | 2021-04-27 10:57:54 +0200 | [diff] [blame] | 166 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 167 | bulk->count = 0; |
| 168 | |
Patrick Delaunay | d776a84 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 169 | count = dev_count_phandle_with_args(dev, "clocks", "#clock-cells", 0); |
Neil Armstrong | 52b26d9 | 2018-04-17 11:30:31 +0200 | [diff] [blame] | 170 | if (count < 1) |
| 171 | return count; |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 172 | |
| 173 | bulk->clks = devm_kcalloc(dev, count, sizeof(struct clk), GFP_KERNEL); |
| 174 | if (!bulk->clks) |
| 175 | return -ENOMEM; |
| 176 | |
| 177 | for (i = 0; i < count; i++) { |
| 178 | ret = clk_get_by_index(dev, i, &bulk->clks[i]); |
| 179 | if (ret < 0) |
| 180 | goto bulk_get_err; |
| 181 | |
| 182 | ++bulk->count; |
| 183 | } |
| 184 | |
| 185 | return 0; |
| 186 | |
| 187 | bulk_get_err: |
| 188 | err = clk_release_all(bulk->clks, bulk->count); |
| 189 | if (err) |
| 190 | debug("%s: could release all clocks for %p\n", |
| 191 | __func__, dev); |
| 192 | |
| 193 | return ret; |
| 194 | } |
| 195 | |
Claudiu Beznea | b91eee6 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 196 | static struct clk *clk_set_default_get_by_id(struct clk *clk) |
| 197 | { |
| 198 | struct clk *c = clk; |
| 199 | |
| 200 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 201 | int ret = clk_get_by_id(clk->id, &c); |
| 202 | |
| 203 | if (ret) { |
| 204 | debug("%s(): could not get parent clock pointer, id %lu\n", |
| 205 | __func__, clk->id); |
| 206 | ERR_PTR(ret); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | return c; |
| 211 | } |
| 212 | |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 213 | static int clk_set_default_parents(struct udevice *dev, |
| 214 | enum clk_defaults_stage stage) |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 215 | { |
Claudiu Beznea | b91eee6 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 216 | struct clk clk, parent_clk, *c, *p; |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 217 | int index; |
| 218 | int num_parents; |
| 219 | int ret; |
| 220 | |
| 221 | num_parents = dev_count_phandle_with_args(dev, "assigned-clock-parents", |
Patrick Delaunay | d776a84 | 2020-09-25 09:41:14 +0200 | [diff] [blame] | 222 | "#clock-cells", 0); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 223 | if (num_parents < 0) { |
| 224 | debug("%s: could not read assigned-clock-parents for %p\n", |
| 225 | __func__, dev); |
| 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | for (index = 0; index < num_parents; index++) { |
| 230 | ret = clk_get_by_indexed_prop(dev, "assigned-clock-parents", |
| 231 | index, &parent_clk); |
Neil Armstrong | f3cc631 | 2018-07-26 15:19:32 +0200 | [diff] [blame] | 232 | /* If -ENOENT, this is a no-op entry */ |
| 233 | if (ret == -ENOENT) |
| 234 | continue; |
| 235 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 236 | if (ret) { |
| 237 | debug("%s: could not get parent clock %d for %s\n", |
| 238 | __func__, index, dev_read_name(dev)); |
| 239 | return ret; |
| 240 | } |
| 241 | |
Claudiu Beznea | b91eee6 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 242 | p = clk_set_default_get_by_id(&parent_clk); |
| 243 | if (IS_ERR(p)) |
| 244 | return PTR_ERR(p); |
| 245 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 246 | ret = clk_get_by_indexed_prop(dev, "assigned-clocks", |
| 247 | index, &clk); |
Tero Kristo | d41b2b3 | 2021-06-11 11:45:11 +0300 | [diff] [blame] | 248 | /* |
| 249 | * If the clock provider is not ready yet, let it handle |
| 250 | * the re-programming later. |
| 251 | */ |
| 252 | if (ret == -EPROBE_DEFER) { |
| 253 | ret = 0; |
| 254 | continue; |
| 255 | } |
| 256 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 257 | if (ret) { |
| 258 | debug("%s: could not get assigned clock %d for %s\n", |
| 259 | __func__, index, dev_read_name(dev)); |
| 260 | return ret; |
| 261 | } |
| 262 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 263 | /* This is clk provider device trying to reparent itself |
| 264 | * It cannot be done right now but need to wait after the |
| 265 | * device is probed |
| 266 | */ |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 267 | if (stage == CLK_DEFAULTS_PRE && clk.dev == dev) |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 268 | continue; |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 269 | |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 270 | if (stage != CLK_DEFAULTS_PRE && clk.dev != dev) |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 271 | /* do not setup twice the parent clocks */ |
| 272 | continue; |
| 273 | |
Claudiu Beznea | b91eee6 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 274 | c = clk_set_default_get_by_id(&clk); |
| 275 | if (IS_ERR(c)) |
| 276 | return PTR_ERR(c); |
| 277 | |
| 278 | ret = clk_set_parent(c, p); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 279 | /* |
| 280 | * Not all drivers may support clock-reparenting (as of now). |
| 281 | * Ignore errors due to this. |
| 282 | */ |
| 283 | if (ret == -ENOSYS) |
| 284 | continue; |
| 285 | |
Jean-Jacques Hiblot | b232081 | 2019-09-26 15:42:42 +0200 | [diff] [blame] | 286 | if (ret < 0) { |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 287 | debug("%s: failed to reparent clock %d for %s\n", |
| 288 | __func__, index, dev_read_name(dev)); |
| 289 | return ret; |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | return 0; |
| 294 | } |
| 295 | |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 296 | static int clk_set_default_rates(struct udevice *dev, |
| 297 | enum clk_defaults_stage stage) |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 298 | { |
Claudiu Beznea | b91eee6 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 299 | struct clk clk, *c; |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 300 | int index; |
| 301 | int num_rates; |
| 302 | int size; |
| 303 | int ret = 0; |
| 304 | u32 *rates = NULL; |
| 305 | |
| 306 | size = dev_read_size(dev, "assigned-clock-rates"); |
| 307 | if (size < 0) |
| 308 | return 0; |
| 309 | |
| 310 | num_rates = size / sizeof(u32); |
| 311 | rates = calloc(num_rates, sizeof(u32)); |
| 312 | if (!rates) |
| 313 | return -ENOMEM; |
| 314 | |
| 315 | ret = dev_read_u32_array(dev, "assigned-clock-rates", rates, num_rates); |
| 316 | if (ret) |
| 317 | goto fail; |
| 318 | |
| 319 | for (index = 0; index < num_rates; index++) { |
Neil Armstrong | f3cc631 | 2018-07-26 15:19:32 +0200 | [diff] [blame] | 320 | /* If 0 is passed, this is a no-op */ |
| 321 | if (!rates[index]) |
| 322 | continue; |
| 323 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 324 | ret = clk_get_by_indexed_prop(dev, "assigned-clocks", |
| 325 | index, &clk); |
Tero Kristo | d41b2b3 | 2021-06-11 11:45:11 +0300 | [diff] [blame] | 326 | /* |
| 327 | * If the clock provider is not ready yet, let it handle |
| 328 | * the re-programming later. |
| 329 | */ |
| 330 | if (ret == -EPROBE_DEFER) { |
| 331 | ret = 0; |
| 332 | continue; |
| 333 | } |
| 334 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 335 | if (ret) { |
Sean Anderson | d7ac373 | 2021-04-08 22:13:03 -0400 | [diff] [blame] | 336 | dev_dbg(dev, |
| 337 | "could not get assigned clock %d (err = %d)\n", |
| 338 | index, ret); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 339 | continue; |
| 340 | } |
| 341 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 342 | /* This is clk provider device trying to program itself |
| 343 | * It cannot be done right now but need to wait after the |
| 344 | * device is probed |
| 345 | */ |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 346 | if (stage == CLK_DEFAULTS_PRE && clk.dev == dev) |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 347 | continue; |
| 348 | |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 349 | if (stage != CLK_DEFAULTS_PRE && clk.dev != dev) |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 350 | /* do not setup twice the parent clocks */ |
| 351 | continue; |
| 352 | |
Claudiu Beznea | b91eee6 | 2020-09-07 17:46:36 +0300 | [diff] [blame] | 353 | c = clk_set_default_get_by_id(&clk); |
| 354 | if (IS_ERR(c)) |
| 355 | return PTR_ERR(c); |
| 356 | |
| 357 | ret = clk_set_rate(c, rates[index]); |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 358 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 359 | if (ret < 0) { |
Sean Anderson | d7ac373 | 2021-04-08 22:13:03 -0400 | [diff] [blame] | 360 | dev_warn(dev, |
| 361 | "failed to set rate on clock index %d (%ld) (error = %d)\n", |
| 362 | index, clk.id, ret); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 363 | break; |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | fail: |
| 368 | free(rates); |
| 369 | return ret; |
| 370 | } |
| 371 | |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 372 | int clk_set_defaults(struct udevice *dev, enum clk_defaults_stage stage) |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 373 | { |
| 374 | int ret; |
| 375 | |
Simon Glass | f1d50f7 | 2020-12-19 10:40:13 -0700 | [diff] [blame] | 376 | if (!dev_has_ofnode(dev)) |
Peng Fan | 40ec4e4 | 2019-07-31 07:01:49 +0000 | [diff] [blame] | 377 | return 0; |
| 378 | |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 379 | /* |
| 380 | * To avoid setting defaults twice, don't set them before relocation. |
| 381 | * However, still set them for SPL. And still set them if explicitly |
| 382 | * asked. |
| 383 | */ |
Philipp Tomsich | e546ec8 | 2018-11-26 20:20:19 +0100 | [diff] [blame] | 384 | if (!(IS_ENABLED(CONFIG_SPL_BUILD) || (gd->flags & GD_FLG_RELOC))) |
Sean Anderson | 08d531c | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 385 | if (stage != CLK_DEFAULTS_POST_FORCE) |
| 386 | return 0; |
Philipp Tomsich | e546ec8 | 2018-11-26 20:20:19 +0100 | [diff] [blame] | 387 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 388 | debug("%s(%s)\n", __func__, dev_read_name(dev)); |
| 389 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 390 | ret = clk_set_default_parents(dev, stage); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 391 | if (ret) |
| 392 | return ret; |
| 393 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 394 | ret = clk_set_default_rates(dev, stage); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 395 | if (ret < 0) |
| 396 | return ret; |
| 397 | |
| 398 | return 0; |
| 399 | } |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 400 | |
| 401 | int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk) |
| 402 | { |
| 403 | int index; |
| 404 | |
| 405 | debug("%s(dev=%p, name=%s, clk=%p)\n", __func__, dev, name, clk); |
Patrice Chotard | 96fc03d | 2017-07-18 11:57:07 +0200 | [diff] [blame] | 406 | clk->dev = NULL; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 407 | |
Simon Glass | 2558bff | 2017-05-30 21:47:29 -0600 | [diff] [blame] | 408 | index = dev_read_stringlist_search(dev, "clock-names", name); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 409 | if (index < 0) { |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 410 | debug("fdt_stringlist_search() failed: %d\n", index); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 411 | return index; |
| 412 | } |
| 413 | |
| 414 | return clk_get_by_index(dev, index, clk); |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 415 | } |
Patrice Chotard | cafc341 | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 416 | |
developer | bdc786d | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 417 | int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk) |
| 418 | { |
| 419 | int index; |
| 420 | |
| 421 | debug("%s(node=%p, name=%s, clk=%p)\n", __func__, |
| 422 | ofnode_get_name(node), name, clk); |
| 423 | clk->dev = NULL; |
| 424 | |
| 425 | index = ofnode_stringlist_search(node, "clock-names", name); |
| 426 | if (index < 0) { |
| 427 | debug("fdt_stringlist_search() failed: %d\n", index); |
| 428 | return index; |
| 429 | } |
| 430 | |
| 431 | return clk_get_by_index_nodev(node, index, clk); |
| 432 | } |
| 433 | |
| 434 | int clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk) |
| 435 | { |
| 436 | int ret; |
| 437 | |
| 438 | ret = clk_get_by_name_nodev(node, name, clk); |
| 439 | if (ret == -ENODATA) |
| 440 | return 0; |
| 441 | |
| 442 | return ret; |
| 443 | } |
| 444 | |
Patrice Chotard | cafc341 | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 445 | int clk_release_all(struct clk *clk, int count) |
| 446 | { |
| 447 | int i, ret; |
| 448 | |
| 449 | for (i = 0; i < count; i++) { |
| 450 | debug("%s(clk[%d]=%p)\n", __func__, i, &clk[i]); |
| 451 | |
| 452 | /* check if clock has been previously requested */ |
| 453 | if (!clk[i].dev) |
| 454 | continue; |
| 455 | |
| 456 | ret = clk_disable(&clk[i]); |
| 457 | if (ret && ret != -ENOSYS) |
| 458 | return ret; |
| 459 | |
| 460 | ret = clk_free(&clk[i]); |
| 461 | if (ret && ret != -ENOSYS) |
| 462 | return ret; |
| 463 | } |
| 464 | |
| 465 | return 0; |
| 466 | } |
| 467 | |
Simon Glass | 3580f6d | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 468 | #endif /* OF_REAL */ |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 469 | |
| 470 | int clk_request(struct udevice *dev, struct clk *clk) |
| 471 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 472 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 473 | |
| 474 | debug("%s(dev=%p, clk=%p)\n", __func__, dev, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 475 | if (!clk) |
| 476 | return 0; |
| 477 | ops = clk_dev_ops(dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 478 | |
| 479 | clk->dev = dev; |
| 480 | |
| 481 | if (!ops->request) |
| 482 | return 0; |
| 483 | |
| 484 | return ops->request(clk); |
| 485 | } |
| 486 | |
| 487 | int clk_free(struct clk *clk) |
| 488 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 489 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 490 | |
| 491 | debug("%s(clk=%p)\n", __func__, clk); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 492 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 493 | return 0; |
| 494 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 495 | |
Simon Glass | 2cdd3f4 | 2020-02-03 07:35:54 -0700 | [diff] [blame] | 496 | if (!ops->rfree) |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 497 | return 0; |
| 498 | |
Simon Glass | 2cdd3f4 | 2020-02-03 07:35:54 -0700 | [diff] [blame] | 499 | return ops->rfree(clk); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | ulong clk_get_rate(struct clk *clk) |
| 503 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 504 | const struct clk_ops *ops; |
Simon Glass | f73f581 | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 505 | int ret; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 506 | |
| 507 | debug("%s(clk=%p)\n", __func__, clk); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 508 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 509 | return 0; |
| 510 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 511 | |
| 512 | if (!ops->get_rate) |
| 513 | return -ENOSYS; |
| 514 | |
Simon Glass | f73f581 | 2021-01-21 13:57:11 -0700 | [diff] [blame] | 515 | ret = ops->get_rate(clk); |
| 516 | if (ret) |
| 517 | return log_ret(ret); |
| 518 | |
| 519 | return 0; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 520 | } |
| 521 | |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 522 | struct clk *clk_get_parent(struct clk *clk) |
| 523 | { |
| 524 | struct udevice *pdev; |
| 525 | struct clk *pclk; |
| 526 | |
| 527 | debug("%s(clk=%p)\n", __func__, clk); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 528 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 529 | return NULL; |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 530 | |
| 531 | pdev = dev_get_parent(clk->dev); |
Tero Kristo | f04dfff | 2021-06-11 11:45:08 +0300 | [diff] [blame] | 532 | if (!pdev) |
| 533 | return ERR_PTR(-ENODEV); |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 534 | pclk = dev_get_clk_ptr(pdev); |
| 535 | if (!pclk) |
| 536 | return ERR_PTR(-ENODEV); |
| 537 | |
| 538 | return pclk; |
| 539 | } |
| 540 | |
Lukasz Majewski | 53155da | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 541 | long long clk_get_parent_rate(struct clk *clk) |
| 542 | { |
| 543 | const struct clk_ops *ops; |
| 544 | struct clk *pclk; |
| 545 | |
| 546 | debug("%s(clk=%p)\n", __func__, clk); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 547 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 548 | return 0; |
Lukasz Majewski | 53155da | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 549 | |
| 550 | pclk = clk_get_parent(clk); |
| 551 | if (IS_ERR(pclk)) |
| 552 | return -ENODEV; |
| 553 | |
| 554 | ops = clk_dev_ops(pclk->dev); |
| 555 | if (!ops->get_rate) |
| 556 | return -ENOSYS; |
| 557 | |
Lukasz Majewski | 4ef3217 | 2019-06-24 15:50:46 +0200 | [diff] [blame] | 558 | /* Read the 'rate' if not already set or if proper flag set*/ |
| 559 | if (!pclk->rate || pclk->flags & CLK_GET_RATE_NOCACHE) |
Lukasz Majewski | 53155da | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 560 | pclk->rate = clk_get_rate(pclk); |
| 561 | |
| 562 | return pclk->rate; |
| 563 | } |
| 564 | |
Dario Binacchi | b7f8589 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 565 | ulong clk_round_rate(struct clk *clk, ulong rate) |
| 566 | { |
| 567 | const struct clk_ops *ops; |
| 568 | |
| 569 | debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate); |
| 570 | if (!clk_valid(clk)) |
| 571 | return 0; |
| 572 | |
| 573 | ops = clk_dev_ops(clk->dev); |
| 574 | if (!ops->round_rate) |
| 575 | return -ENOSYS; |
| 576 | |
| 577 | return ops->round_rate(clk, rate); |
| 578 | } |
| 579 | |
Tero Kristo | 9ab78c1 | 2021-06-11 11:45:12 +0300 | [diff] [blame] | 580 | static void clk_clean_rate_cache(struct clk *clk) |
| 581 | { |
| 582 | struct udevice *child_dev; |
| 583 | struct clk *clkp; |
| 584 | |
| 585 | if (!clk) |
| 586 | return; |
| 587 | |
| 588 | clk->rate = 0; |
| 589 | |
| 590 | list_for_each_entry(child_dev, &clk->dev->child_head, sibling_node) { |
| 591 | clkp = dev_get_clk_ptr(child_dev); |
| 592 | clk_clean_rate_cache(clkp); |
| 593 | } |
| 594 | } |
| 595 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 596 | ulong clk_set_rate(struct clk *clk, ulong rate) |
| 597 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 598 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 599 | |
| 600 | debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 601 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 602 | return 0; |
| 603 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 604 | |
| 605 | if (!ops->set_rate) |
| 606 | return -ENOSYS; |
| 607 | |
Tero Kristo | 9ab78c1 | 2021-06-11 11:45:12 +0300 | [diff] [blame] | 608 | /* Clean up cached rates for us and all child clocks */ |
| 609 | clk_clean_rate_cache(clk); |
| 610 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 611 | return ops->set_rate(clk, rate); |
| 612 | } |
| 613 | |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 614 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 615 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 616 | const struct clk_ops *ops; |
Claudiu Beznea | c8c1600 | 2020-09-07 17:46:34 +0300 | [diff] [blame] | 617 | int ret; |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 618 | |
| 619 | debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 620 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 621 | return 0; |
| 622 | ops = clk_dev_ops(clk->dev); |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 623 | |
| 624 | if (!ops->set_parent) |
| 625 | return -ENOSYS; |
| 626 | |
Claudiu Beznea | c8c1600 | 2020-09-07 17:46:34 +0300 | [diff] [blame] | 627 | ret = ops->set_parent(clk, parent); |
| 628 | if (ret) |
| 629 | return ret; |
| 630 | |
| 631 | if (CONFIG_IS_ENABLED(CLK_CCF)) |
| 632 | ret = device_reparent(clk->dev, parent->dev); |
| 633 | |
| 634 | return ret; |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 635 | } |
| 636 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 637 | int clk_enable(struct clk *clk) |
| 638 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 639 | const struct clk_ops *ops; |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 640 | struct clk *clkp = NULL; |
| 641 | int ret; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 642 | |
| 643 | debug("%s(clk=%p)\n", __func__, clk); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 644 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 645 | return 0; |
| 646 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 647 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 648 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 649 | /* Take id 0 as a non-valid clk, such as dummy */ |
| 650 | if (clk->id && !clk_get_by_id(clk->id, &clkp)) { |
| 651 | if (clkp->enable_count) { |
| 652 | clkp->enable_count++; |
| 653 | return 0; |
| 654 | } |
| 655 | if (clkp->dev->parent && |
| 656 | device_get_uclass_id(clkp->dev) == UCLASS_CLK) { |
| 657 | ret = clk_enable(dev_get_clk_ptr(clkp->dev->parent)); |
| 658 | if (ret) { |
| 659 | printf("Enable %s failed\n", |
| 660 | clkp->dev->parent->name); |
| 661 | return ret; |
| 662 | } |
| 663 | } |
| 664 | } |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 665 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 666 | if (ops->enable) { |
| 667 | ret = ops->enable(clk); |
| 668 | if (ret) { |
| 669 | printf("Enable %s failed\n", clk->dev->name); |
| 670 | return ret; |
| 671 | } |
| 672 | } |
| 673 | if (clkp) |
| 674 | clkp->enable_count++; |
| 675 | } else { |
| 676 | if (!ops->enable) |
| 677 | return -ENOSYS; |
| 678 | return ops->enable(clk); |
| 679 | } |
| 680 | |
| 681 | return 0; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 682 | } |
| 683 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 684 | int clk_enable_bulk(struct clk_bulk *bulk) |
| 685 | { |
| 686 | int i, ret; |
| 687 | |
| 688 | for (i = 0; i < bulk->count; i++) { |
| 689 | ret = clk_enable(&bulk->clks[i]); |
| 690 | if (ret < 0 && ret != -ENOSYS) |
| 691 | return ret; |
| 692 | } |
| 693 | |
| 694 | return 0; |
| 695 | } |
| 696 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 697 | int clk_disable(struct clk *clk) |
| 698 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 699 | const struct clk_ops *ops; |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 700 | struct clk *clkp = NULL; |
| 701 | int ret; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 702 | |
| 703 | debug("%s(clk=%p)\n", __func__, clk); |
developer | dc338d3 | 2020-01-09 11:35:06 +0800 | [diff] [blame] | 704 | if (!clk_valid(clk)) |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 705 | return 0; |
| 706 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 707 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 708 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 709 | if (clk->id && !clk_get_by_id(clk->id, &clkp)) { |
Claudiu Beznea | b02e8dd | 2020-09-07 17:46:35 +0300 | [diff] [blame] | 710 | if (clkp->flags & CLK_IS_CRITICAL) |
| 711 | return 0; |
| 712 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 713 | if (clkp->enable_count == 0) { |
| 714 | printf("clk %s already disabled\n", |
| 715 | clkp->dev->name); |
| 716 | return 0; |
| 717 | } |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 718 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 719 | if (--clkp->enable_count > 0) |
| 720 | return 0; |
| 721 | } |
| 722 | |
| 723 | if (ops->disable) { |
| 724 | ret = ops->disable(clk); |
| 725 | if (ret) |
| 726 | return ret; |
| 727 | } |
| 728 | |
| 729 | if (clkp && clkp->dev->parent && |
| 730 | device_get_uclass_id(clkp->dev) == UCLASS_CLK) { |
| 731 | ret = clk_disable(dev_get_clk_ptr(clkp->dev->parent)); |
| 732 | if (ret) { |
| 733 | printf("Disable %s failed\n", |
| 734 | clkp->dev->parent->name); |
| 735 | return ret; |
| 736 | } |
| 737 | } |
| 738 | } else { |
| 739 | if (!ops->disable) |
| 740 | return -ENOSYS; |
| 741 | |
| 742 | return ops->disable(clk); |
| 743 | } |
| 744 | |
| 745 | return 0; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 746 | } |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 747 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 748 | int clk_disable_bulk(struct clk_bulk *bulk) |
| 749 | { |
| 750 | int i, ret; |
| 751 | |
| 752 | for (i = 0; i < bulk->count; i++) { |
| 753 | ret = clk_disable(&bulk->clks[i]); |
| 754 | if (ret < 0 && ret != -ENOSYS) |
| 755 | return ret; |
| 756 | } |
| 757 | |
| 758 | return 0; |
| 759 | } |
| 760 | |
Lukasz Majewski | 12014be | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 761 | int clk_get_by_id(ulong id, struct clk **clkp) |
| 762 | { |
| 763 | struct udevice *dev; |
| 764 | struct uclass *uc; |
| 765 | int ret; |
| 766 | |
| 767 | ret = uclass_get(UCLASS_CLK, &uc); |
| 768 | if (ret) |
| 769 | return ret; |
| 770 | |
| 771 | uclass_foreach_dev(dev, uc) { |
| 772 | struct clk *clk = dev_get_clk_ptr(dev); |
| 773 | |
| 774 | if (clk && clk->id == id) { |
| 775 | *clkp = clk; |
| 776 | return 0; |
| 777 | } |
| 778 | } |
| 779 | |
| 780 | return -ENOENT; |
| 781 | } |
| 782 | |
Sekhar Nori | cf3119d | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 783 | bool clk_is_match(const struct clk *p, const struct clk *q) |
| 784 | { |
| 785 | /* trivial case: identical struct clk's or both NULL */ |
| 786 | if (p == q) |
| 787 | return true; |
| 788 | |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 789 | /* trivial case #2: on the clk pointer is NULL */ |
| 790 | if (!p || !q) |
| 791 | return false; |
| 792 | |
Sekhar Nori | cf3119d | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 793 | /* same device, id and data */ |
| 794 | if (p->dev == q->dev && p->id == q->id && p->data == q->data) |
| 795 | return true; |
| 796 | |
| 797 | return false; |
| 798 | } |
| 799 | |
Jean-Jacques Hiblot | 6e66b2d | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 800 | static void devm_clk_release(struct udevice *dev, void *res) |
| 801 | { |
| 802 | clk_free(res); |
| 803 | } |
| 804 | |
| 805 | static int devm_clk_match(struct udevice *dev, void *res, void *data) |
| 806 | { |
| 807 | return res == data; |
| 808 | } |
| 809 | |
| 810 | struct clk *devm_clk_get(struct udevice *dev, const char *id) |
| 811 | { |
| 812 | int rc; |
| 813 | struct clk *clk; |
| 814 | |
| 815 | clk = devres_alloc(devm_clk_release, sizeof(struct clk), __GFP_ZERO); |
| 816 | if (unlikely(!clk)) |
| 817 | return ERR_PTR(-ENOMEM); |
| 818 | |
| 819 | rc = clk_get_by_name(dev, id, clk); |
| 820 | if (rc) |
| 821 | return ERR_PTR(rc); |
| 822 | |
| 823 | devres_add(dev, clk); |
| 824 | return clk; |
| 825 | } |
| 826 | |
| 827 | struct clk *devm_clk_get_optional(struct udevice *dev, const char *id) |
| 828 | { |
| 829 | struct clk *clk = devm_clk_get(dev, id); |
| 830 | |
developer | 5e108fb | 2020-01-09 11:35:05 +0800 | [diff] [blame] | 831 | if (PTR_ERR(clk) == -ENODATA) |
Jean-Jacques Hiblot | 6e66b2d | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 832 | return NULL; |
| 833 | |
| 834 | return clk; |
| 835 | } |
| 836 | |
| 837 | void devm_clk_put(struct udevice *dev, struct clk *clk) |
| 838 | { |
| 839 | int rc; |
| 840 | |
| 841 | if (!clk) |
| 842 | return; |
| 843 | |
| 844 | rc = devres_release(dev, devm_clk_release, devm_clk_match, clk); |
| 845 | WARN_ON(rc); |
| 846 | } |
| 847 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 848 | int clk_uclass_post_probe(struct udevice *dev) |
| 849 | { |
Simon Glass | 862555d | 2021-05-13 19:39:31 -0600 | [diff] [blame] | 850 | int ret; |
| 851 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 852 | /* |
| 853 | * when a clock provider is probed. Call clk_set_defaults() |
| 854 | * also after the device is probed. This takes care of cases |
| 855 | * where the DT is used to setup default parents and rates |
| 856 | * using assigned-clocks |
| 857 | */ |
Simon Glass | 862555d | 2021-05-13 19:39:31 -0600 | [diff] [blame] | 858 | ret = clk_set_defaults(dev, CLK_DEFAULTS_POST); |
| 859 | if (ret) |
| 860 | return log_ret(ret); |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 861 | |
| 862 | return 0; |
| 863 | } |
| 864 | |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 865 | UCLASS_DRIVER(clk) = { |
| 866 | .id = UCLASS_CLK, |
| 867 | .name = "clk", |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 868 | .post_probe = clk_uclass_post_probe, |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 869 | }; |