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 | |
| 9 | #include <common.h> |
| 10 | #include <clk.h> |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 11 | #include <clk-uclass.h> |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 12 | #include <dm.h> |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 13 | #include <dm/read.h> |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 14 | #include <dt-structs.h> |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 15 | #include <errno.h> |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 16 | #include <linux/clk-provider.h> |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 17 | |
Mario Six | 799fe56 | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 18 | static inline const struct clk_ops *clk_dev_ops(struct udevice *dev) |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 19 | { |
Mario Six | 799fe56 | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 20 | return (const struct clk_ops *)dev->driver->ops; |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 21 | } |
| 22 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 23 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 24 | # if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 25 | int clk_get_by_index_platdata(struct udevice *dev, int index, |
Simon Glass | e94414b | 2017-08-29 14:15:56 -0600 | [diff] [blame] | 26 | struct phandle_1_arg *cells, struct clk *clk) |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 27 | { |
| 28 | int ret; |
| 29 | |
| 30 | if (index != 0) |
| 31 | return -ENOSYS; |
| 32 | ret = uclass_get_device(UCLASS_CLK, 0, &clk->dev); |
| 33 | if (ret) |
| 34 | return ret; |
Simon Glass | fdec580 | 2017-08-29 14:15:58 -0600 | [diff] [blame] | 35 | clk->id = cells[0].arg[0]; |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 36 | |
| 37 | return 0; |
| 38 | } |
| 39 | # else |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 40 | static int clk_of_xlate_default(struct clk *clk, |
Simon Glass | b7ae277 | 2017-05-18 20:09:40 -0600 | [diff] [blame] | 41 | struct ofnode_phandle_args *args) |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 42 | { |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 43 | debug("%s(clk=%p)\n", __func__, clk); |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 44 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 45 | if (args->args_count > 1) { |
| 46 | debug("Invaild args_count: %d\n", args->args_count); |
| 47 | return -EINVAL; |
| 48 | } |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 49 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 50 | if (args->args_count) |
| 51 | clk->id = args->args[0]; |
| 52 | else |
| 53 | clk->id = 0; |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 54 | |
Sekhar Nori | 3d23abd | 2019-07-11 14:30:24 +0530 | [diff] [blame] | 55 | clk->data = 0; |
| 56 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 57 | return 0; |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 58 | } |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 59 | |
Jagan Teki | fc7c7ce | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 60 | static int clk_get_by_index_tail(int ret, ofnode node, |
| 61 | struct ofnode_phandle_args *args, |
| 62 | const char *list_name, int index, |
| 63 | struct clk *clk) |
| 64 | { |
| 65 | struct udevice *dev_clk; |
| 66 | const struct clk_ops *ops; |
| 67 | |
| 68 | assert(clk); |
| 69 | clk->dev = NULL; |
| 70 | if (ret) |
| 71 | goto err; |
| 72 | |
| 73 | ret = uclass_get_device_by_ofnode(UCLASS_CLK, args->node, &dev_clk); |
| 74 | if (ret) { |
| 75 | debug("%s: uclass_get_device_by_of_offset failed: err=%d\n", |
| 76 | __func__, ret); |
| 77 | return ret; |
| 78 | } |
| 79 | |
| 80 | clk->dev = dev_clk; |
| 81 | |
| 82 | ops = clk_dev_ops(dev_clk); |
| 83 | |
| 84 | if (ops->of_xlate) |
| 85 | ret = ops->of_xlate(clk, args); |
| 86 | else |
| 87 | ret = clk_of_xlate_default(clk, args); |
| 88 | if (ret) { |
| 89 | debug("of_xlate() failed: %d\n", ret); |
| 90 | return ret; |
| 91 | } |
| 92 | |
| 93 | return clk_request(dev_clk, clk); |
| 94 | err: |
| 95 | debug("%s: Node '%s', property '%s', failed to request CLK index %d: %d\n", |
| 96 | __func__, ofnode_get_name(node), list_name, index, ret); |
| 97 | return ret; |
| 98 | } |
| 99 | |
Philipp Tomsich | f760434 | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 100 | static int clk_get_by_indexed_prop(struct udevice *dev, const char *prop_name, |
| 101 | int index, struct clk *clk) |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 102 | { |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 103 | int ret; |
Simon Glass | 2558bff | 2017-05-30 21:47:29 -0600 | [diff] [blame] | 104 | struct ofnode_phandle_args args; |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 105 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 106 | debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk); |
| 107 | |
| 108 | assert(clk); |
Patrice Chotard | 96fc03d | 2017-07-18 11:57:07 +0200 | [diff] [blame] | 109 | clk->dev = NULL; |
| 110 | |
Philipp Tomsich | f760434 | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 111 | ret = dev_read_phandle_with_args(dev, prop_name, "#clock-cells", 0, |
Mario Six | 799fe56 | 2018-01-15 11:06:51 +0100 | [diff] [blame] | 112 | index, &args); |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 113 | if (ret) { |
| 114 | debug("%s: fdtdec_parse_phandle_with_args failed: err=%d\n", |
| 115 | __func__, ret); |
| 116 | return ret; |
| 117 | } |
| 118 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 119 | |
Jagan Teki | a77add3 | 2019-02-28 00:26:53 +0530 | [diff] [blame] | 120 | return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks", |
| 121 | index > 0, clk); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 122 | } |
Philipp Tomsich | f760434 | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 123 | |
| 124 | int clk_get_by_index(struct udevice *dev, int index, struct clk *clk) |
| 125 | { |
Jagan Teki | fc7c7ce | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 126 | struct ofnode_phandle_args args; |
| 127 | int ret; |
| 128 | |
| 129 | ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0, |
| 130 | index, &args); |
| 131 | |
| 132 | return clk_get_by_index_tail(ret, dev_ofnode(dev), &args, "clocks", |
| 133 | index > 0, clk); |
| 134 | } |
| 135 | |
| 136 | int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk) |
| 137 | { |
| 138 | struct ofnode_phandle_args args; |
| 139 | int ret; |
| 140 | |
| 141 | ret = ofnode_parse_phandle_with_args(node, "clocks", "#clock-cells", 0, |
| 142 | index > 0, &args); |
| 143 | |
| 144 | return clk_get_by_index_tail(ret, node, &args, "clocks", |
| 145 | index > 0, clk); |
Philipp Tomsich | f760434 | 2018-01-08 11:18:18 +0100 | [diff] [blame] | 146 | } |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 147 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 148 | int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) |
| 149 | { |
| 150 | int i, ret, err, count; |
| 151 | |
| 152 | bulk->count = 0; |
| 153 | |
| 154 | count = dev_count_phandle_with_args(dev, "clocks", "#clock-cells"); |
Neil Armstrong | 52b26d9 | 2018-04-17 11:30:31 +0200 | [diff] [blame] | 155 | if (count < 1) |
| 156 | return count; |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 157 | |
| 158 | bulk->clks = devm_kcalloc(dev, count, sizeof(struct clk), GFP_KERNEL); |
| 159 | if (!bulk->clks) |
| 160 | return -ENOMEM; |
| 161 | |
| 162 | for (i = 0; i < count; i++) { |
| 163 | ret = clk_get_by_index(dev, i, &bulk->clks[i]); |
| 164 | if (ret < 0) |
| 165 | goto bulk_get_err; |
| 166 | |
| 167 | ++bulk->count; |
| 168 | } |
| 169 | |
| 170 | return 0; |
| 171 | |
| 172 | bulk_get_err: |
| 173 | err = clk_release_all(bulk->clks, bulk->count); |
| 174 | if (err) |
| 175 | debug("%s: could release all clocks for %p\n", |
| 176 | __func__, dev); |
| 177 | |
| 178 | return ret; |
| 179 | } |
| 180 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 181 | static int clk_set_default_parents(struct udevice *dev, int stage) |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 182 | { |
| 183 | struct clk clk, parent_clk; |
| 184 | int index; |
| 185 | int num_parents; |
| 186 | int ret; |
| 187 | |
| 188 | num_parents = dev_count_phandle_with_args(dev, "assigned-clock-parents", |
| 189 | "#clock-cells"); |
| 190 | if (num_parents < 0) { |
| 191 | debug("%s: could not read assigned-clock-parents for %p\n", |
| 192 | __func__, dev); |
| 193 | return 0; |
| 194 | } |
| 195 | |
| 196 | for (index = 0; index < num_parents; index++) { |
| 197 | ret = clk_get_by_indexed_prop(dev, "assigned-clock-parents", |
| 198 | index, &parent_clk); |
Neil Armstrong | f3cc631 | 2018-07-26 15:19:32 +0200 | [diff] [blame] | 199 | /* If -ENOENT, this is a no-op entry */ |
| 200 | if (ret == -ENOENT) |
| 201 | continue; |
| 202 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 203 | if (ret) { |
| 204 | debug("%s: could not get parent clock %d for %s\n", |
| 205 | __func__, index, dev_read_name(dev)); |
| 206 | return ret; |
| 207 | } |
| 208 | |
| 209 | ret = clk_get_by_indexed_prop(dev, "assigned-clocks", |
| 210 | index, &clk); |
| 211 | if (ret) { |
| 212 | debug("%s: could not get assigned clock %d for %s\n", |
| 213 | __func__, index, dev_read_name(dev)); |
| 214 | return ret; |
| 215 | } |
| 216 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 217 | /* This is clk provider device trying to reparent itself |
| 218 | * It cannot be done right now but need to wait after the |
| 219 | * device is probed |
| 220 | */ |
| 221 | if (stage == 0 && clk.dev == dev) |
| 222 | continue; |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 223 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 224 | if (stage > 0 && clk.dev != dev) |
| 225 | /* do not setup twice the parent clocks */ |
| 226 | continue; |
| 227 | |
| 228 | ret = clk_set_parent(&clk, &parent_clk); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 229 | /* |
| 230 | * Not all drivers may support clock-reparenting (as of now). |
| 231 | * Ignore errors due to this. |
| 232 | */ |
| 233 | if (ret == -ENOSYS) |
| 234 | continue; |
| 235 | |
Jean-Jacques Hiblot | b232081 | 2019-09-26 15:42:42 +0200 | [diff] [blame] | 236 | if (ret < 0) { |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 237 | debug("%s: failed to reparent clock %d for %s\n", |
| 238 | __func__, index, dev_read_name(dev)); |
| 239 | return ret; |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | return 0; |
| 244 | } |
| 245 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 246 | static int clk_set_default_rates(struct udevice *dev, int stage) |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 247 | { |
| 248 | struct clk clk; |
| 249 | int index; |
| 250 | int num_rates; |
| 251 | int size; |
| 252 | int ret = 0; |
| 253 | u32 *rates = NULL; |
| 254 | |
| 255 | size = dev_read_size(dev, "assigned-clock-rates"); |
| 256 | if (size < 0) |
| 257 | return 0; |
| 258 | |
| 259 | num_rates = size / sizeof(u32); |
| 260 | rates = calloc(num_rates, sizeof(u32)); |
| 261 | if (!rates) |
| 262 | return -ENOMEM; |
| 263 | |
| 264 | ret = dev_read_u32_array(dev, "assigned-clock-rates", rates, num_rates); |
| 265 | if (ret) |
| 266 | goto fail; |
| 267 | |
| 268 | for (index = 0; index < num_rates; index++) { |
Neil Armstrong | f3cc631 | 2018-07-26 15:19:32 +0200 | [diff] [blame] | 269 | /* If 0 is passed, this is a no-op */ |
| 270 | if (!rates[index]) |
| 271 | continue; |
| 272 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 273 | ret = clk_get_by_indexed_prop(dev, "assigned-clocks", |
| 274 | index, &clk); |
| 275 | if (ret) { |
| 276 | debug("%s: could not get assigned clock %d for %s\n", |
| 277 | __func__, index, dev_read_name(dev)); |
| 278 | continue; |
| 279 | } |
| 280 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 281 | /* This is clk provider device trying to program itself |
| 282 | * It cannot be done right now but need to wait after the |
| 283 | * device is probed |
| 284 | */ |
| 285 | if (stage == 0 && clk.dev == dev) |
| 286 | continue; |
| 287 | |
| 288 | if (stage > 0 && clk.dev != dev) |
| 289 | /* do not setup twice the parent clocks */ |
| 290 | continue; |
| 291 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 292 | ret = clk_set_rate(&clk, rates[index]); |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 293 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 294 | if (ret < 0) { |
Simon Glass | 3336373 | 2019-01-21 14:53:19 -0700 | [diff] [blame] | 295 | debug("%s: failed to set rate on clock index %d (%ld) for %s\n", |
| 296 | __func__, index, clk.id, dev_read_name(dev)); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 297 | break; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | fail: |
| 302 | free(rates); |
| 303 | return ret; |
| 304 | } |
| 305 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 306 | int clk_set_defaults(struct udevice *dev, int stage) |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 307 | { |
| 308 | int ret; |
| 309 | |
Peng Fan | 40ec4e4 | 2019-07-31 07:01:49 +0000 | [diff] [blame] | 310 | if (!dev_of_valid(dev)) |
| 311 | return 0; |
| 312 | |
Philipp Tomsich | e546ec8 | 2018-11-26 20:20:19 +0100 | [diff] [blame] | 313 | /* If this not in SPL and pre-reloc state, don't take any action. */ |
| 314 | if (!(IS_ENABLED(CONFIG_SPL_BUILD) || (gd->flags & GD_FLG_RELOC))) |
| 315 | return 0; |
| 316 | |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 317 | debug("%s(%s)\n", __func__, dev_read_name(dev)); |
| 318 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 319 | ret = clk_set_default_parents(dev, stage); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 320 | if (ret) |
| 321 | return ret; |
| 322 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 323 | ret = clk_set_default_rates(dev, stage); |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 324 | if (ret < 0) |
| 325 | return ret; |
| 326 | |
| 327 | return 0; |
| 328 | } |
Michal Simek | 30d40b3 | 2016-07-14 13:11:37 +0200 | [diff] [blame] | 329 | # endif /* OF_PLATDATA */ |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 330 | |
| 331 | int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk) |
| 332 | { |
| 333 | int index; |
| 334 | |
| 335 | 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] | 336 | clk->dev = NULL; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 337 | |
Simon Glass | 2558bff | 2017-05-30 21:47:29 -0600 | [diff] [blame] | 338 | index = dev_read_stringlist_search(dev, "clock-names", name); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 339 | if (index < 0) { |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 340 | debug("fdt_stringlist_search() failed: %d\n", index); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 341 | return index; |
| 342 | } |
| 343 | |
| 344 | return clk_get_by_index(dev, index, clk); |
Simon Glass | 0342bd2 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 345 | } |
Patrice Chotard | cafc341 | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 346 | |
| 347 | int clk_release_all(struct clk *clk, int count) |
| 348 | { |
| 349 | int i, ret; |
| 350 | |
| 351 | for (i = 0; i < count; i++) { |
| 352 | debug("%s(clk[%d]=%p)\n", __func__, i, &clk[i]); |
| 353 | |
| 354 | /* check if clock has been previously requested */ |
| 355 | if (!clk[i].dev) |
| 356 | continue; |
| 357 | |
| 358 | ret = clk_disable(&clk[i]); |
| 359 | if (ret && ret != -ENOSYS) |
| 360 | return ret; |
| 361 | |
| 362 | ret = clk_free(&clk[i]); |
| 363 | if (ret && ret != -ENOSYS) |
| 364 | return ret; |
| 365 | } |
| 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
Simon Glass | 589d915 | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 370 | #endif /* OF_CONTROL */ |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 371 | |
| 372 | int clk_request(struct udevice *dev, struct clk *clk) |
| 373 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 374 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 375 | |
| 376 | debug("%s(dev=%p, clk=%p)\n", __func__, dev, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 377 | if (!clk) |
| 378 | return 0; |
| 379 | ops = clk_dev_ops(dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 380 | |
| 381 | clk->dev = dev; |
| 382 | |
| 383 | if (!ops->request) |
| 384 | return 0; |
| 385 | |
| 386 | return ops->request(clk); |
| 387 | } |
| 388 | |
| 389 | int clk_free(struct clk *clk) |
| 390 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 391 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 392 | |
| 393 | debug("%s(clk=%p)\n", __func__, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 394 | if (!clk) |
| 395 | return 0; |
| 396 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 397 | |
| 398 | if (!ops->free) |
| 399 | return 0; |
| 400 | |
| 401 | return ops->free(clk); |
| 402 | } |
| 403 | |
| 404 | ulong clk_get_rate(struct clk *clk) |
| 405 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 406 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 407 | |
| 408 | debug("%s(clk=%p)\n", __func__, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 409 | if (!clk) |
| 410 | return 0; |
| 411 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 412 | |
| 413 | if (!ops->get_rate) |
| 414 | return -ENOSYS; |
| 415 | |
| 416 | return ops->get_rate(clk); |
| 417 | } |
| 418 | |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 419 | struct clk *clk_get_parent(struct clk *clk) |
| 420 | { |
| 421 | struct udevice *pdev; |
| 422 | struct clk *pclk; |
| 423 | |
| 424 | debug("%s(clk=%p)\n", __func__, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 425 | if (!clk) |
| 426 | return NULL; |
Lukasz Majewski | 9e38dc3 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 427 | |
| 428 | pdev = dev_get_parent(clk->dev); |
| 429 | pclk = dev_get_clk_ptr(pdev); |
| 430 | if (!pclk) |
| 431 | return ERR_PTR(-ENODEV); |
| 432 | |
| 433 | return pclk; |
| 434 | } |
| 435 | |
Lukasz Majewski | 53155da | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 436 | long long clk_get_parent_rate(struct clk *clk) |
| 437 | { |
| 438 | const struct clk_ops *ops; |
| 439 | struct clk *pclk; |
| 440 | |
| 441 | debug("%s(clk=%p)\n", __func__, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 442 | if (!clk) |
| 443 | return 0; |
Lukasz Majewski | 53155da | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 444 | |
| 445 | pclk = clk_get_parent(clk); |
| 446 | if (IS_ERR(pclk)) |
| 447 | return -ENODEV; |
| 448 | |
| 449 | ops = clk_dev_ops(pclk->dev); |
| 450 | if (!ops->get_rate) |
| 451 | return -ENOSYS; |
| 452 | |
Lukasz Majewski | 4ef3217 | 2019-06-24 15:50:46 +0200 | [diff] [blame] | 453 | /* Read the 'rate' if not already set or if proper flag set*/ |
| 454 | if (!pclk->rate || pclk->flags & CLK_GET_RATE_NOCACHE) |
Lukasz Majewski | 53155da | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 455 | pclk->rate = clk_get_rate(pclk); |
| 456 | |
| 457 | return pclk->rate; |
| 458 | } |
| 459 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 460 | ulong clk_set_rate(struct clk *clk, ulong rate) |
| 461 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 462 | const struct clk_ops *ops; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 463 | |
| 464 | debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 465 | if (!clk) |
| 466 | return 0; |
| 467 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 468 | |
| 469 | if (!ops->set_rate) |
| 470 | return -ENOSYS; |
| 471 | |
| 472 | return ops->set_rate(clk, rate); |
| 473 | } |
| 474 | |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 475 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 476 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 477 | const struct clk_ops *ops; |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 478 | |
| 479 | debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 480 | if (!clk) |
| 481 | return 0; |
| 482 | ops = clk_dev_ops(clk->dev); |
Philipp Tomsich | f8e02b2 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 483 | |
| 484 | if (!ops->set_parent) |
| 485 | return -ENOSYS; |
| 486 | |
| 487 | return ops->set_parent(clk, parent); |
| 488 | } |
| 489 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 490 | int clk_enable(struct clk *clk) |
| 491 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 492 | const struct clk_ops *ops; |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 493 | struct clk *clkp = NULL; |
| 494 | int ret; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 495 | |
| 496 | debug("%s(clk=%p)\n", __func__, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 497 | if (!clk) |
| 498 | return 0; |
| 499 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 500 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 501 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 502 | /* Take id 0 as a non-valid clk, such as dummy */ |
| 503 | if (clk->id && !clk_get_by_id(clk->id, &clkp)) { |
| 504 | if (clkp->enable_count) { |
| 505 | clkp->enable_count++; |
| 506 | return 0; |
| 507 | } |
| 508 | if (clkp->dev->parent && |
| 509 | device_get_uclass_id(clkp->dev) == UCLASS_CLK) { |
| 510 | ret = clk_enable(dev_get_clk_ptr(clkp->dev->parent)); |
| 511 | if (ret) { |
| 512 | printf("Enable %s failed\n", |
| 513 | clkp->dev->parent->name); |
| 514 | return ret; |
| 515 | } |
| 516 | } |
| 517 | } |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 518 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 519 | if (ops->enable) { |
| 520 | ret = ops->enable(clk); |
| 521 | if (ret) { |
| 522 | printf("Enable %s failed\n", clk->dev->name); |
| 523 | return ret; |
| 524 | } |
| 525 | } |
| 526 | if (clkp) |
| 527 | clkp->enable_count++; |
| 528 | } else { |
| 529 | if (!ops->enable) |
| 530 | return -ENOSYS; |
| 531 | return ops->enable(clk); |
| 532 | } |
| 533 | |
| 534 | return 0; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 535 | } |
| 536 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 537 | int clk_enable_bulk(struct clk_bulk *bulk) |
| 538 | { |
| 539 | int i, ret; |
| 540 | |
| 541 | for (i = 0; i < bulk->count; i++) { |
| 542 | ret = clk_enable(&bulk->clks[i]); |
| 543 | if (ret < 0 && ret != -ENOSYS) |
| 544 | return ret; |
| 545 | } |
| 546 | |
| 547 | return 0; |
| 548 | } |
| 549 | |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 550 | int clk_disable(struct clk *clk) |
| 551 | { |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 552 | const struct clk_ops *ops; |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 553 | struct clk *clkp = NULL; |
| 554 | int ret; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 555 | |
| 556 | debug("%s(clk=%p)\n", __func__, clk); |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 557 | if (!clk) |
| 558 | return 0; |
| 559 | ops = clk_dev_ops(clk->dev); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 560 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 561 | if (CONFIG_IS_ENABLED(CLK_CCF)) { |
| 562 | if (clk->id && !clk_get_by_id(clk->id, &clkp)) { |
| 563 | if (clkp->enable_count == 0) { |
| 564 | printf("clk %s already disabled\n", |
| 565 | clkp->dev->name); |
| 566 | return 0; |
| 567 | } |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 568 | |
Peng Fan | 82628e2 | 2019-08-21 13:35:09 +0000 | [diff] [blame] | 569 | if (--clkp->enable_count > 0) |
| 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | if (ops->disable) { |
| 574 | ret = ops->disable(clk); |
| 575 | if (ret) |
| 576 | return ret; |
| 577 | } |
| 578 | |
| 579 | if (clkp && clkp->dev->parent && |
| 580 | device_get_uclass_id(clkp->dev) == UCLASS_CLK) { |
| 581 | ret = clk_disable(dev_get_clk_ptr(clkp->dev->parent)); |
| 582 | if (ret) { |
| 583 | printf("Disable %s failed\n", |
| 584 | clkp->dev->parent->name); |
| 585 | return ret; |
| 586 | } |
| 587 | } |
| 588 | } else { |
| 589 | if (!ops->disable) |
| 590 | return -ENOSYS; |
| 591 | |
| 592 | return ops->disable(clk); |
| 593 | } |
| 594 | |
| 595 | return 0; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 596 | } |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 597 | |
Neil Armstrong | 8a275a0 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 598 | int clk_disable_bulk(struct clk_bulk *bulk) |
| 599 | { |
| 600 | int i, ret; |
| 601 | |
| 602 | for (i = 0; i < bulk->count; i++) { |
| 603 | ret = clk_disable(&bulk->clks[i]); |
| 604 | if (ret < 0 && ret != -ENOSYS) |
| 605 | return ret; |
| 606 | } |
| 607 | |
| 608 | return 0; |
| 609 | } |
| 610 | |
Lukasz Majewski | 12014be | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 611 | int clk_get_by_id(ulong id, struct clk **clkp) |
| 612 | { |
| 613 | struct udevice *dev; |
| 614 | struct uclass *uc; |
| 615 | int ret; |
| 616 | |
| 617 | ret = uclass_get(UCLASS_CLK, &uc); |
| 618 | if (ret) |
| 619 | return ret; |
| 620 | |
| 621 | uclass_foreach_dev(dev, uc) { |
| 622 | struct clk *clk = dev_get_clk_ptr(dev); |
| 623 | |
| 624 | if (clk && clk->id == id) { |
| 625 | *clkp = clk; |
| 626 | return 0; |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | return -ENOENT; |
| 631 | } |
| 632 | |
Sekhar Nori | cf3119d | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 633 | bool clk_is_match(const struct clk *p, const struct clk *q) |
| 634 | { |
| 635 | /* trivial case: identical struct clk's or both NULL */ |
| 636 | if (p == q) |
| 637 | return true; |
| 638 | |
Jean-Jacques Hiblot | 718039b | 2019-10-22 14:00:03 +0200 | [diff] [blame] | 639 | /* trivial case #2: on the clk pointer is NULL */ |
| 640 | if (!p || !q) |
| 641 | return false; |
| 642 | |
Sekhar Nori | cf3119d | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 643 | /* same device, id and data */ |
| 644 | if (p->dev == q->dev && p->id == q->id && p->data == q->data) |
| 645 | return true; |
| 646 | |
| 647 | return false; |
| 648 | } |
| 649 | |
Jean-Jacques Hiblot | 6e66b2d | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 650 | static void devm_clk_release(struct udevice *dev, void *res) |
| 651 | { |
| 652 | clk_free(res); |
| 653 | } |
| 654 | |
| 655 | static int devm_clk_match(struct udevice *dev, void *res, void *data) |
| 656 | { |
| 657 | return res == data; |
| 658 | } |
| 659 | |
| 660 | struct clk *devm_clk_get(struct udevice *dev, const char *id) |
| 661 | { |
| 662 | int rc; |
| 663 | struct clk *clk; |
| 664 | |
| 665 | clk = devres_alloc(devm_clk_release, sizeof(struct clk), __GFP_ZERO); |
| 666 | if (unlikely(!clk)) |
| 667 | return ERR_PTR(-ENOMEM); |
| 668 | |
| 669 | rc = clk_get_by_name(dev, id, clk); |
| 670 | if (rc) |
| 671 | return ERR_PTR(rc); |
| 672 | |
| 673 | devres_add(dev, clk); |
| 674 | return clk; |
| 675 | } |
| 676 | |
| 677 | struct clk *devm_clk_get_optional(struct udevice *dev, const char *id) |
| 678 | { |
| 679 | struct clk *clk = devm_clk_get(dev, id); |
| 680 | |
| 681 | if (IS_ERR(clk)) |
| 682 | return NULL; |
| 683 | |
| 684 | return clk; |
| 685 | } |
| 686 | |
| 687 | void devm_clk_put(struct udevice *dev, struct clk *clk) |
| 688 | { |
| 689 | int rc; |
| 690 | |
| 691 | if (!clk) |
| 692 | return; |
| 693 | |
| 694 | rc = devres_release(dev, devm_clk_release, devm_clk_match, clk); |
| 695 | WARN_ON(rc); |
| 696 | } |
| 697 | |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 698 | int clk_uclass_post_probe(struct udevice *dev) |
| 699 | { |
| 700 | /* |
| 701 | * when a clock provider is probed. Call clk_set_defaults() |
| 702 | * also after the device is probed. This takes care of cases |
| 703 | * where the DT is used to setup default parents and rates |
| 704 | * using assigned-clocks |
| 705 | */ |
| 706 | clk_set_defaults(dev, 1); |
| 707 | |
| 708 | return 0; |
| 709 | } |
| 710 | |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 711 | UCLASS_DRIVER(clk) = { |
| 712 | .id = UCLASS_CLK, |
| 713 | .name = "clk", |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 714 | .post_probe = clk_uclass_post_probe, |
Simon Glass | 36ad234 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 715 | }; |