Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 1 | /* |
Jean-Christop PLAGNIOL-VILLARD | 6d803ba | 2010-11-17 10:04:33 +0100 | [diff] [blame] | 2 | * drivers/clk/clkdev.c |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2008 Russell King. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * Helper for the clk API to assist looking up a struct clk. |
| 11 | */ |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/device.h> |
| 15 | #include <linux/list.h> |
| 16 | #include <linux/errno.h> |
| 17 | #include <linux/err.h> |
| 18 | #include <linux/string.h> |
| 19 | #include <linux/mutex.h> |
Hartley Sweeten | c0c60c4 | 2009-08-04 23:38:06 +0100 | [diff] [blame] | 20 | #include <linux/clk.h> |
Jean-Christop PLAGNIOL-VILLARD | 6d803ba | 2010-11-17 10:04:33 +0100 | [diff] [blame] | 21 | #include <linux/clkdev.h> |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 22 | #include <linux/clk-provider.h> |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 23 | #include <linux/of.h> |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 24 | |
Sylwester Nawrocki | 3a3d2b0 | 2013-08-23 17:03:44 +0200 | [diff] [blame] | 25 | #include "clk.h" |
| 26 | |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 27 | static LIST_HEAD(clocks); |
| 28 | static DEFINE_MUTEX(clocks_mutex); |
| 29 | |
Russell King | 409dc36 | 2009-01-24 10:14:37 +0000 | [diff] [blame] | 30 | /* |
| 31 | * Find the correct struct clk for the device and connection ID. |
| 32 | * We do slightly fuzzy matching here: |
| 33 | * An entry with a NULL ID is assumed to be a wildcard. |
| 34 | * If an entry has a device ID, it must match |
| 35 | * If an entry has a connection ID, it must match |
| 36 | * Then we take the most specific entry - with the following |
Uwe Kleine-König | 659431f | 2010-01-18 16:02:48 +0100 | [diff] [blame] | 37 | * order of precedence: dev+con > dev only > con only. |
Russell King | 409dc36 | 2009-01-24 10:14:37 +0000 | [diff] [blame] | 38 | */ |
Russell King | e8bf8df | 2011-04-30 10:14:08 +0100 | [diff] [blame] | 39 | static struct clk_lookup *clk_find(const char *dev_id, const char *con_id) |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 40 | { |
Russell King | e8bf8df | 2011-04-30 10:14:08 +0100 | [diff] [blame] | 41 | struct clk_lookup *p, *cl = NULL; |
viresh kumar | 67b5087 | 2012-04-19 04:23:25 +0100 | [diff] [blame] | 42 | int match, best_found = 0, best_possible = 0; |
| 43 | |
| 44 | if (dev_id) |
| 45 | best_possible += 2; |
| 46 | if (con_id) |
| 47 | best_possible += 1; |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 48 | |
Stephen Boyd | 5a7efda | 2019-04-12 11:31:42 -0700 | [diff] [blame] | 49 | lockdep_assert_held(&clocks_mutex); |
| 50 | |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 51 | list_for_each_entry(p, &clocks, node) { |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 52 | match = 0; |
Russell King | 409dc36 | 2009-01-24 10:14:37 +0000 | [diff] [blame] | 53 | if (p->dev_id) { |
| 54 | if (!dev_id || strcmp(p->dev_id, dev_id)) |
| 55 | continue; |
| 56 | match += 2; |
| 57 | } |
| 58 | if (p->con_id) { |
| 59 | if (!con_id || strcmp(p->con_id, con_id)) |
| 60 | continue; |
| 61 | match += 1; |
| 62 | } |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 63 | |
viresh kumar | 67b5087 | 2012-04-19 04:23:25 +0100 | [diff] [blame] | 64 | if (match > best_found) { |
Russell King | e8bf8df | 2011-04-30 10:14:08 +0100 | [diff] [blame] | 65 | cl = p; |
viresh kumar | 67b5087 | 2012-04-19 04:23:25 +0100 | [diff] [blame] | 66 | if (match != best_possible) |
| 67 | best_found = match; |
viresh kumar | e4bf5be | 2010-03-09 11:54:30 +0100 | [diff] [blame] | 68 | else |
| 69 | break; |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 70 | } |
| 71 | } |
Russell King | e8bf8df | 2011-04-30 10:14:08 +0100 | [diff] [blame] | 72 | return cl; |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Stephen Boyd | d1011cb | 2019-04-12 11:31:43 -0700 | [diff] [blame^] | 75 | static struct clk_hw *clk_find_hw(const char *dev_id, const char *con_id) |
| 76 | { |
| 77 | struct clk_lookup *cl; |
| 78 | struct clk_hw *hw = ERR_PTR(-ENOENT); |
| 79 | |
| 80 | mutex_lock(&clocks_mutex); |
| 81 | cl = clk_find(dev_id, con_id); |
| 82 | if (cl) |
| 83 | hw = cl->clk_hw; |
| 84 | mutex_unlock(&clocks_mutex); |
| 85 | |
| 86 | return hw; |
| 87 | } |
| 88 | |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 89 | static struct clk *__clk_get_sys(struct device *dev, const char *dev_id, |
| 90 | const char *con_id) |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 91 | { |
Stephen Boyd | d1011cb | 2019-04-12 11:31:43 -0700 | [diff] [blame^] | 92 | struct clk_hw *hw = clk_find_hw(dev_id, con_id); |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 93 | |
Stephen Boyd | d1011cb | 2019-04-12 11:31:43 -0700 | [diff] [blame^] | 94 | return clk_hw_create_clk(dev, hw, dev_id, con_id); |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 95 | } |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 96 | |
| 97 | struct clk *clk_get_sys(const char *dev_id, const char *con_id) |
| 98 | { |
| 99 | return __clk_get_sys(NULL, dev_id, con_id); |
| 100 | } |
Sascha Hauer | 05fd8e73 | 2009-03-07 12:55:49 +0100 | [diff] [blame] | 101 | EXPORT_SYMBOL(clk_get_sys); |
| 102 | |
| 103 | struct clk *clk_get(struct device *dev, const char *con_id) |
| 104 | { |
| 105 | const char *dev_id = dev ? dev_name(dev) : NULL; |
Stephen Boyd | 4472287 | 2018-12-19 10:59:55 -0800 | [diff] [blame] | 106 | struct clk_hw *hw; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 107 | |
Bartosz Golaszewski | 53ccb22 | 2018-06-28 15:42:20 +0100 | [diff] [blame] | 108 | if (dev && dev->of_node) { |
Stephen Boyd | 4472287 | 2018-12-19 10:59:55 -0800 | [diff] [blame] | 109 | hw = of_clk_get_hw(dev->of_node, 0, con_id); |
| 110 | if (!IS_ERR(hw) || PTR_ERR(hw) == -EPROBE_DEFER) |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 111 | return clk_hw_create_clk(dev, hw, dev_id, con_id); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 112 | } |
Sascha Hauer | 05fd8e73 | 2009-03-07 12:55:49 +0100 | [diff] [blame] | 113 | |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 114 | return __clk_get_sys(dev, dev_id, con_id); |
Sascha Hauer | 05fd8e73 | 2009-03-07 12:55:49 +0100 | [diff] [blame] | 115 | } |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 116 | EXPORT_SYMBOL(clk_get); |
| 117 | |
| 118 | void clk_put(struct clk *clk) |
| 119 | { |
| 120 | __clk_put(clk); |
| 121 | } |
| 122 | EXPORT_SYMBOL(clk_put); |
| 123 | |
Russell King | d5622a9 | 2015-03-02 15:45:41 +0000 | [diff] [blame] | 124 | static void __clkdev_add(struct clk_lookup *cl) |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 125 | { |
| 126 | mutex_lock(&clocks_mutex); |
| 127 | list_add_tail(&cl->node, &clocks); |
| 128 | mutex_unlock(&clocks_mutex); |
| 129 | } |
Russell King | d5622a9 | 2015-03-02 15:45:41 +0000 | [diff] [blame] | 130 | |
| 131 | void clkdev_add(struct clk_lookup *cl) |
| 132 | { |
| 133 | if (!cl->clk_hw) |
| 134 | cl->clk_hw = __clk_get_hw(cl->clk); |
| 135 | __clkdev_add(cl); |
| 136 | } |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 137 | EXPORT_SYMBOL(clkdev_add); |
| 138 | |
Russell King | fba3acd | 2015-03-10 14:34:00 +0000 | [diff] [blame] | 139 | void clkdev_add_table(struct clk_lookup *cl, size_t num) |
Russell King | 0a0300d | 2010-01-12 12:28:00 +0000 | [diff] [blame] | 140 | { |
| 141 | mutex_lock(&clocks_mutex); |
| 142 | while (num--) { |
Russell King | d5622a9 | 2015-03-02 15:45:41 +0000 | [diff] [blame] | 143 | cl->clk_hw = __clk_get_hw(cl->clk); |
Russell King | 0a0300d | 2010-01-12 12:28:00 +0000 | [diff] [blame] | 144 | list_add_tail(&cl->node, &clocks); |
| 145 | cl++; |
| 146 | } |
| 147 | mutex_unlock(&clocks_mutex); |
| 148 | } |
| 149 | |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 150 | #define MAX_DEV_ID 20 |
| 151 | #define MAX_CON_ID 16 |
| 152 | |
| 153 | struct clk_lookup_alloc { |
| 154 | struct clk_lookup cl; |
| 155 | char dev_id[MAX_DEV_ID]; |
| 156 | char con_id[MAX_CON_ID]; |
| 157 | }; |
| 158 | |
Fabian Frederick | bd721ea | 2016-08-02 14:03:33 -0700 | [diff] [blame] | 159 | static struct clk_lookup * __ref |
Russell King | d5622a9 | 2015-03-02 15:45:41 +0000 | [diff] [blame] | 160 | vclkdev_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt, |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 161 | va_list ap) |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 162 | { |
| 163 | struct clk_lookup_alloc *cla; |
| 164 | |
Stephen Boyd | 0d4e3d00 | 2018-01-02 15:47:07 -0800 | [diff] [blame] | 165 | cla = kzalloc(sizeof(*cla), GFP_KERNEL); |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 166 | if (!cla) |
| 167 | return NULL; |
| 168 | |
Russell King | d5622a9 | 2015-03-02 15:45:41 +0000 | [diff] [blame] | 169 | cla->cl.clk_hw = hw; |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 170 | if (con_id) { |
| 171 | strlcpy(cla->con_id, con_id, sizeof(cla->con_id)); |
| 172 | cla->cl.con_id = cla->con_id; |
| 173 | } |
| 174 | |
| 175 | if (dev_fmt) { |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 176 | vscnprintf(cla->dev_id, sizeof(cla->dev_id), dev_fmt, ap); |
| 177 | cla->cl.dev_id = cla->dev_id; |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | return &cla->cl; |
| 181 | } |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 182 | |
Russell King | 2568999 | 2015-03-02 15:40:29 +0000 | [diff] [blame] | 183 | static struct clk_lookup * |
| 184 | vclkdev_create(struct clk_hw *hw, const char *con_id, const char *dev_fmt, |
| 185 | va_list ap) |
| 186 | { |
| 187 | struct clk_lookup *cl; |
| 188 | |
| 189 | cl = vclkdev_alloc(hw, con_id, dev_fmt, ap); |
| 190 | if (cl) |
| 191 | __clkdev_add(cl); |
| 192 | |
| 193 | return cl; |
| 194 | } |
| 195 | |
Fabian Frederick | bd721ea | 2016-08-02 14:03:33 -0700 | [diff] [blame] | 196 | struct clk_lookup * __ref |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 197 | clkdev_alloc(struct clk *clk, const char *con_id, const char *dev_fmt, ...) |
| 198 | { |
| 199 | struct clk_lookup *cl; |
| 200 | va_list ap; |
| 201 | |
| 202 | va_start(ap, dev_fmt); |
Russell King | d5622a9 | 2015-03-02 15:45:41 +0000 | [diff] [blame] | 203 | cl = vclkdev_alloc(__clk_get_hw(clk), con_id, dev_fmt, ap); |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 204 | va_end(ap); |
| 205 | |
| 206 | return cl; |
| 207 | } |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 208 | EXPORT_SYMBOL(clkdev_alloc); |
| 209 | |
Stephen Boyd | e4f1b49 | 2016-02-08 14:59:49 -0800 | [diff] [blame] | 210 | struct clk_lookup * |
| 211 | clkdev_hw_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt, ...) |
| 212 | { |
| 213 | struct clk_lookup *cl; |
| 214 | va_list ap; |
| 215 | |
| 216 | va_start(ap, dev_fmt); |
| 217 | cl = vclkdev_alloc(hw, con_id, dev_fmt, ap); |
| 218 | va_end(ap); |
| 219 | |
| 220 | return cl; |
| 221 | } |
| 222 | EXPORT_SYMBOL(clkdev_hw_alloc); |
| 223 | |
Russell King | 2568999 | 2015-03-02 15:40:29 +0000 | [diff] [blame] | 224 | /** |
| 225 | * clkdev_create - allocate and add a clkdev lookup structure |
| 226 | * @clk: struct clk to associate with all clk_lookups |
| 227 | * @con_id: connection ID string on device |
| 228 | * @dev_fmt: format string describing device name |
| 229 | * |
| 230 | * Returns a clk_lookup structure, which can be later unregistered and |
| 231 | * freed. |
| 232 | */ |
| 233 | struct clk_lookup *clkdev_create(struct clk *clk, const char *con_id, |
| 234 | const char *dev_fmt, ...) |
| 235 | { |
| 236 | struct clk_lookup *cl; |
| 237 | va_list ap; |
| 238 | |
| 239 | va_start(ap, dev_fmt); |
| 240 | cl = vclkdev_create(__clk_get_hw(clk), con_id, dev_fmt, ap); |
| 241 | va_end(ap); |
| 242 | |
| 243 | return cl; |
| 244 | } |
| 245 | EXPORT_SYMBOL_GPL(clkdev_create); |
| 246 | |
Stephen Boyd | e4f1b49 | 2016-02-08 14:59:49 -0800 | [diff] [blame] | 247 | /** |
| 248 | * clkdev_hw_create - allocate and add a clkdev lookup structure |
| 249 | * @hw: struct clk_hw to associate with all clk_lookups |
| 250 | * @con_id: connection ID string on device |
| 251 | * @dev_fmt: format string describing device name |
| 252 | * |
| 253 | * Returns a clk_lookup structure, which can be later unregistered and |
| 254 | * freed. |
| 255 | */ |
| 256 | struct clk_lookup *clkdev_hw_create(struct clk_hw *hw, const char *con_id, |
| 257 | const char *dev_fmt, ...) |
| 258 | { |
| 259 | struct clk_lookup *cl; |
| 260 | va_list ap; |
| 261 | |
| 262 | va_start(ap, dev_fmt); |
| 263 | cl = vclkdev_create(hw, con_id, dev_fmt, ap); |
| 264 | va_end(ap); |
| 265 | |
| 266 | return cl; |
| 267 | } |
| 268 | EXPORT_SYMBOL_GPL(clkdev_hw_create); |
| 269 | |
Russell King | b3d8d7e | 2015-03-09 10:43:04 +0000 | [diff] [blame] | 270 | int clk_add_alias(const char *alias, const char *alias_dev_name, |
| 271 | const char *con_id, struct device *dev) |
Tony Lindgren | c068303 | 2009-06-03 17:43:14 +0100 | [diff] [blame] | 272 | { |
Russell King | b3d8d7e | 2015-03-09 10:43:04 +0000 | [diff] [blame] | 273 | struct clk *r = clk_get(dev, con_id); |
Tony Lindgren | c068303 | 2009-06-03 17:43:14 +0100 | [diff] [blame] | 274 | struct clk_lookup *l; |
| 275 | |
| 276 | if (IS_ERR(r)) |
| 277 | return PTR_ERR(r); |
| 278 | |
Russell King | 625faa6 | 2015-10-20 11:49:44 +0100 | [diff] [blame] | 279 | l = clkdev_create(r, alias, alias_dev_name ? "%s" : NULL, |
| 280 | alias_dev_name); |
Tony Lindgren | c068303 | 2009-06-03 17:43:14 +0100 | [diff] [blame] | 281 | clk_put(r); |
Russell King | 2568999 | 2015-03-02 15:40:29 +0000 | [diff] [blame] | 282 | |
| 283 | return l ? 0 : -ENODEV; |
Tony Lindgren | c068303 | 2009-06-03 17:43:14 +0100 | [diff] [blame] | 284 | } |
| 285 | EXPORT_SYMBOL(clk_add_alias); |
| 286 | |
Russell King | 0318e69 | 2008-11-09 16:32:46 +0000 | [diff] [blame] | 287 | /* |
| 288 | * clkdev_drop - remove a clock dynamically allocated |
| 289 | */ |
| 290 | void clkdev_drop(struct clk_lookup *cl) |
| 291 | { |
| 292 | mutex_lock(&clocks_mutex); |
| 293 | list_del(&cl->node); |
| 294 | mutex_unlock(&clocks_mutex); |
| 295 | kfree(cl); |
| 296 | } |
| 297 | EXPORT_SYMBOL(clkdev_drop); |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 298 | |
Kees Cook | 416dd13 | 2016-01-26 01:21:26 +0100 | [diff] [blame] | 299 | static struct clk_lookup *__clk_register_clkdev(struct clk_hw *hw, |
| 300 | const char *con_id, |
| 301 | const char *dev_id, ...) |
| 302 | { |
| 303 | struct clk_lookup *cl; |
| 304 | va_list ap; |
| 305 | |
| 306 | va_start(ap, dev_id); |
| 307 | cl = vclkdev_create(hw, con_id, dev_id, ap); |
| 308 | va_end(ap); |
| 309 | |
| 310 | return cl; |
| 311 | } |
| 312 | |
Matti Vaittinen | 3eee6c7 | 2018-12-07 13:09:39 +0200 | [diff] [blame] | 313 | static int do_clk_register_clkdev(struct clk_hw *hw, |
| 314 | struct clk_lookup **cl, const char *con_id, const char *dev_id) |
| 315 | { |
| 316 | if (IS_ERR(hw)) |
| 317 | return PTR_ERR(hw); |
| 318 | /* |
| 319 | * Since dev_id can be NULL, and NULL is handled specially, we must |
| 320 | * pass it as either a NULL format string, or with "%s". |
| 321 | */ |
| 322 | if (dev_id) |
| 323 | *cl = __clk_register_clkdev(hw, con_id, "%s", dev_id); |
| 324 | else |
| 325 | *cl = __clk_register_clkdev(hw, con_id, NULL); |
| 326 | |
| 327 | return *cl ? 0 : -ENOMEM; |
| 328 | } |
| 329 | |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 330 | /** |
| 331 | * clk_register_clkdev - register one clock lookup for a struct clk |
| 332 | * @clk: struct clk to associate with all clk_lookups |
| 333 | * @con_id: connection ID string on device |
Kees Cook | 416dd13 | 2016-01-26 01:21:26 +0100 | [diff] [blame] | 334 | * @dev_id: string describing device name |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 335 | * |
| 336 | * con_id or dev_id may be NULL as a wildcard, just as in the rest of |
| 337 | * clkdev. |
| 338 | * |
| 339 | * To make things easier for mass registration, we detect error clks |
| 340 | * from a previous clk_register() call, and return the error code for |
| 341 | * those. This is to permit this function to be called immediately |
| 342 | * after clk_register(). |
| 343 | */ |
| 344 | int clk_register_clkdev(struct clk *clk, const char *con_id, |
Kees Cook | 416dd13 | 2016-01-26 01:21:26 +0100 | [diff] [blame] | 345 | const char *dev_id) |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 346 | { |
| 347 | struct clk_lookup *cl; |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 348 | |
| 349 | if (IS_ERR(clk)) |
| 350 | return PTR_ERR(clk); |
| 351 | |
Matti Vaittinen | 3eee6c7 | 2018-12-07 13:09:39 +0200 | [diff] [blame] | 352 | return do_clk_register_clkdev(__clk_get_hw(clk), &cl, con_id, |
| 353 | dev_id); |
Russell King | e9d7f40 | 2012-05-02 09:30:32 +0100 | [diff] [blame] | 354 | } |
Tomeu Vizoso | a251361a | 2015-01-23 12:03:32 +0100 | [diff] [blame] | 355 | EXPORT_SYMBOL(clk_register_clkdev); |
Stephen Boyd | e4f1b49 | 2016-02-08 14:59:49 -0800 | [diff] [blame] | 356 | |
| 357 | /** |
| 358 | * clk_hw_register_clkdev - register one clock lookup for a struct clk_hw |
| 359 | * @hw: struct clk_hw to associate with all clk_lookups |
| 360 | * @con_id: connection ID string on device |
| 361 | * @dev_id: format string describing device name |
| 362 | * |
| 363 | * con_id or dev_id may be NULL as a wildcard, just as in the rest of |
| 364 | * clkdev. |
Geert Uytterhoeven | 9388093 | 2016-11-22 12:33:11 +0100 | [diff] [blame] | 365 | * |
| 366 | * To make things easier for mass registration, we detect error clk_hws |
| 367 | * from a previous clk_hw_register_*() call, and return the error code for |
| 368 | * those. This is to permit this function to be called immediately |
| 369 | * after clk_hw_register_*(). |
Stephen Boyd | e4f1b49 | 2016-02-08 14:59:49 -0800 | [diff] [blame] | 370 | */ |
| 371 | int clk_hw_register_clkdev(struct clk_hw *hw, const char *con_id, |
| 372 | const char *dev_id) |
| 373 | { |
| 374 | struct clk_lookup *cl; |
| 375 | |
Matti Vaittinen | 3eee6c7 | 2018-12-07 13:09:39 +0200 | [diff] [blame] | 376 | return do_clk_register_clkdev(hw, &cl, con_id, dev_id); |
Stephen Boyd | e4f1b49 | 2016-02-08 14:59:49 -0800 | [diff] [blame] | 377 | } |
| 378 | EXPORT_SYMBOL(clk_hw_register_clkdev); |
Matti Vaittinen | 3eee6c7 | 2018-12-07 13:09:39 +0200 | [diff] [blame] | 379 | |
| 380 | static void devm_clkdev_release(struct device *dev, void *res) |
| 381 | { |
| 382 | clkdev_drop(*(struct clk_lookup **)res); |
| 383 | } |
| 384 | |
| 385 | static int devm_clk_match_clkdev(struct device *dev, void *res, void *data) |
| 386 | { |
| 387 | struct clk_lookup **l = res; |
| 388 | |
| 389 | return *l == data; |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * devm_clk_release_clkdev - Resource managed clkdev lookup release |
| 394 | * @dev: device this lookup is bound |
| 395 | * @con_id: connection ID string on device |
| 396 | * @dev_id: format string describing device name |
| 397 | * |
| 398 | * Drop the clkdev lookup created with devm_clk_hw_register_clkdev. |
| 399 | * Normally this function will not need to be called and the resource |
| 400 | * management code will ensure that the resource is freed. |
| 401 | */ |
| 402 | void devm_clk_release_clkdev(struct device *dev, const char *con_id, |
| 403 | const char *dev_id) |
| 404 | { |
| 405 | struct clk_lookup *cl; |
| 406 | int rval; |
| 407 | |
Stephen Boyd | 5a7efda | 2019-04-12 11:31:42 -0700 | [diff] [blame] | 408 | mutex_lock(&clocks_mutex); |
Matti Vaittinen | 3eee6c7 | 2018-12-07 13:09:39 +0200 | [diff] [blame] | 409 | cl = clk_find(dev_id, con_id); |
Stephen Boyd | 5a7efda | 2019-04-12 11:31:42 -0700 | [diff] [blame] | 410 | mutex_unlock(&clocks_mutex); |
| 411 | |
Matti Vaittinen | 3eee6c7 | 2018-12-07 13:09:39 +0200 | [diff] [blame] | 412 | WARN_ON(!cl); |
| 413 | rval = devres_release(dev, devm_clkdev_release, |
| 414 | devm_clk_match_clkdev, cl); |
| 415 | WARN_ON(rval); |
| 416 | } |
| 417 | EXPORT_SYMBOL(devm_clk_release_clkdev); |
| 418 | |
| 419 | /** |
| 420 | * devm_clk_hw_register_clkdev - managed clk lookup registration for clk_hw |
| 421 | * @dev: device this lookup is bound |
| 422 | * @hw: struct clk_hw to associate with all clk_lookups |
| 423 | * @con_id: connection ID string on device |
| 424 | * @dev_id: format string describing device name |
| 425 | * |
| 426 | * con_id or dev_id may be NULL as a wildcard, just as in the rest of |
| 427 | * clkdev. |
| 428 | * |
| 429 | * To make things easier for mass registration, we detect error clk_hws |
| 430 | * from a previous clk_hw_register_*() call, and return the error code for |
| 431 | * those. This is to permit this function to be called immediately |
| 432 | * after clk_hw_register_*(). |
| 433 | */ |
| 434 | int devm_clk_hw_register_clkdev(struct device *dev, struct clk_hw *hw, |
| 435 | const char *con_id, const char *dev_id) |
| 436 | { |
| 437 | int rval = -ENOMEM; |
| 438 | struct clk_lookup **cl; |
| 439 | |
| 440 | cl = devres_alloc(devm_clkdev_release, sizeof(*cl), GFP_KERNEL); |
| 441 | if (cl) { |
| 442 | rval = do_clk_register_clkdev(hw, cl, con_id, dev_id); |
| 443 | if (!rval) |
| 444 | devres_add(dev, cl); |
| 445 | else |
| 446 | devres_free(cl); |
| 447 | } |
| 448 | return rval; |
| 449 | } |
| 450 | EXPORT_SYMBOL(devm_clk_hw_register_clkdev); |