Merge tag 'drm-misc-fixes-2019-06-05' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-block.git] / drivers / clk / clkdev.c
CommitLineData
0318e693 1/*
6d803ba7 2 * drivers/clk/clkdev.c
0318e693
RK
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>
c0c60c4b 20#include <linux/clk.h>
6d803ba7 21#include <linux/clkdev.h>
035a61c3 22#include <linux/clk-provider.h>
766e6a4e 23#include <linux/of.h>
0318e693 24
3a3d2b05
SN
25#include "clk.h"
26
0318e693
RK
27static LIST_HEAD(clocks);
28static DEFINE_MUTEX(clocks_mutex);
29
409dc360
RK
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
659431fc 37 * order of precedence: dev+con > dev only > con only.
409dc360 38 */
e8bf8df9 39static struct clk_lookup *clk_find(const char *dev_id, const char *con_id)
0318e693 40{
e8bf8df9 41 struct clk_lookup *p, *cl = NULL;
67b50871 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;
0318e693 48
5a7efdac
SB
49 lockdep_assert_held(&clocks_mutex);
50
0318e693 51 list_for_each_entry(p, &clocks, node) {
0318e693 52 match = 0;
409dc360
RK
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 }
0318e693 63
67b50871 64 if (match > best_found) {
e8bf8df9 65 cl = p;
67b50871 66 if (match != best_possible)
67 best_found = match;
e4bf5bec 68 else
69 break;
0318e693
RK
70 }
71 }
e8bf8df9 72 return cl;
0318e693
RK
73}
74
dde4eff4 75struct clk_hw *clk_find_hw(const char *dev_id, const char *con_id)
0318e693 76{
e8bf8df9 77 struct clk_lookup *cl;
d1011cba 78 struct clk_hw *hw = ERR_PTR(-ENOENT);
0318e693
RK
79
80 mutex_lock(&clocks_mutex);
e8bf8df9 81 cl = clk_find(dev_id, con_id);
d1011cba
SB
82 if (cl)
83 hw = cl->clk_hw;
0318e693
RK
84 mutex_unlock(&clocks_mutex);
85
d1011cba
SB
86 return hw;
87}
88
89static struct clk *__clk_get_sys(struct device *dev, const char *dev_id,
90 const char *con_id)
91{
92 struct clk_hw *hw = clk_find_hw(dev_id, con_id);
93
94 return clk_hw_create_clk(dev, hw, dev_id, con_id);
0318e693 95}
efa85048
SB
96
97struct clk *clk_get_sys(const char *dev_id, const char *con_id)
98{
99 return __clk_get_sys(NULL, dev_id, con_id);
100}
05fd8e73
SH
101EXPORT_SYMBOL(clk_get_sys);
102
103struct clk *clk_get(struct device *dev, const char *con_id)
104{
105 const char *dev_id = dev ? dev_name(dev) : NULL;
4472287a 106 struct clk_hw *hw;
766e6a4e 107
53ccb22b 108 if (dev && dev->of_node) {
4472287a
SB
109 hw = of_clk_get_hw(dev->of_node, 0, con_id);
110 if (!IS_ERR(hw) || PTR_ERR(hw) == -EPROBE_DEFER)
efa85048 111 return clk_hw_create_clk(dev, hw, dev_id, con_id);
766e6a4e 112 }
05fd8e73 113
efa85048 114 return __clk_get_sys(dev, dev_id, con_id);
05fd8e73 115}
0318e693
RK
116EXPORT_SYMBOL(clk_get);
117
118void clk_put(struct clk *clk)
119{
120 __clk_put(clk);
121}
122EXPORT_SYMBOL(clk_put);
123
d5622a9c 124static void __clkdev_add(struct clk_lookup *cl)
0318e693
RK
125{
126 mutex_lock(&clocks_mutex);
127 list_add_tail(&cl->node, &clocks);
128 mutex_unlock(&clocks_mutex);
129}
d5622a9c
RK
130
131void 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}
0318e693
RK
137EXPORT_SYMBOL(clkdev_add);
138
fba3acd9 139void clkdev_add_table(struct clk_lookup *cl, size_t num)
0a0300dc
RK
140{
141 mutex_lock(&clocks_mutex);
142 while (num--) {
d5622a9c 143 cl->clk_hw = __clk_get_hw(cl->clk);
0a0300dc
RK
144 list_add_tail(&cl->node, &clocks);
145 cl++;
146 }
147 mutex_unlock(&clocks_mutex);
148}
149
0318e693
RK
150#define MAX_DEV_ID 20
151#define MAX_CON_ID 16
152
153struct clk_lookup_alloc {
154 struct clk_lookup cl;
155 char dev_id[MAX_DEV_ID];
156 char con_id[MAX_CON_ID];
157};
158
bd721ea7 159static struct clk_lookup * __ref
d5622a9c 160vclkdev_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt,
e9d7f406 161 va_list ap)
0318e693
RK
162{
163 struct clk_lookup_alloc *cla;
164
0d4e3d00 165 cla = kzalloc(sizeof(*cla), GFP_KERNEL);
0318e693
RK
166 if (!cla)
167 return NULL;
168
d5622a9c 169 cla->cl.clk_hw = hw;
0318e693
RK
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) {
0318e693
RK
176 vscnprintf(cla->dev_id, sizeof(cla->dev_id), dev_fmt, ap);
177 cla->cl.dev_id = cla->dev_id;
0318e693
RK
178 }
179
180 return &cla->cl;
181}
e9d7f406 182
25689998
RK
183static struct clk_lookup *
184vclkdev_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
bd721ea7 196struct clk_lookup * __ref
e9d7f406
RK
197clkdev_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);
d5622a9c 203 cl = vclkdev_alloc(__clk_get_hw(clk), con_id, dev_fmt, ap);
e9d7f406
RK
204 va_end(ap);
205
206 return cl;
207}
0318e693
RK
208EXPORT_SYMBOL(clkdev_alloc);
209
e4f1b49b
SB
210struct clk_lookup *
211clkdev_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}
222EXPORT_SYMBOL(clkdev_hw_alloc);
223
25689998
RK
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 */
233struct 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}
245EXPORT_SYMBOL_GPL(clkdev_create);
246
e4f1b49b
SB
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 */
256struct 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}
268EXPORT_SYMBOL_GPL(clkdev_hw_create);
269
b3d8d7e8
RK
270int clk_add_alias(const char *alias, const char *alias_dev_name,
271 const char *con_id, struct device *dev)
c0683039 272{
b3d8d7e8 273 struct clk *r = clk_get(dev, con_id);
c0683039
TL
274 struct clk_lookup *l;
275
276 if (IS_ERR(r))
277 return PTR_ERR(r);
278
625faa6a
RK
279 l = clkdev_create(r, alias, alias_dev_name ? "%s" : NULL,
280 alias_dev_name);
c0683039 281 clk_put(r);
25689998
RK
282
283 return l ? 0 : -ENODEV;
c0683039
TL
284}
285EXPORT_SYMBOL(clk_add_alias);
286
0318e693
RK
287/*
288 * clkdev_drop - remove a clock dynamically allocated
289 */
290void 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}
297EXPORT_SYMBOL(clkdev_drop);
e9d7f406 298
416dd13a
KC
299static 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
3eee6c7d
MV
313static 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
e9d7f406
RK
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
416dd13a 334 * @dev_id: string describing device name
e9d7f406
RK
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 */
344int clk_register_clkdev(struct clk *clk, const char *con_id,
416dd13a 345 const char *dev_id)
e9d7f406
RK
346{
347 struct clk_lookup *cl;
e9d7f406
RK
348
349 if (IS_ERR(clk))
350 return PTR_ERR(clk);
351
3eee6c7d
MV
352 return do_clk_register_clkdev(__clk_get_hw(clk), &cl, con_id,
353 dev_id);
e9d7f406 354}
a251361a 355EXPORT_SYMBOL(clk_register_clkdev);
e4f1b49b
SB
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.
9388093d
GU
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_*().
e4f1b49b
SB
370 */
371int clk_hw_register_clkdev(struct clk_hw *hw, const char *con_id,
372 const char *dev_id)
373{
374 struct clk_lookup *cl;
375
3eee6c7d
MV
376 return do_clk_register_clkdev(hw, &cl, con_id, dev_id);
377}
378EXPORT_SYMBOL(clk_hw_register_clkdev);
9388093d 379
3eee6c7d
MV
380static void devm_clkdev_release(struct device *dev, void *res)
381{
382 clkdev_drop(*(struct clk_lookup **)res);
383}
e4f1b49b 384
3eee6c7d
MV
385static int devm_clk_match_clkdev(struct device *dev, void *res, void *data)
386{
387 struct clk_lookup **l = res;
e4f1b49b 388
3eee6c7d 389 return *l == data;
e4f1b49b 390}
3eee6c7d
MV
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 */
402void 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
5a7efdac 408 mutex_lock(&clocks_mutex);
3eee6c7d 409 cl = clk_find(dev_id, con_id);
5a7efdac
SB
410 mutex_unlock(&clocks_mutex);
411
3eee6c7d
MV
412 WARN_ON(!cl);
413 rval = devres_release(dev, devm_clkdev_release,
414 devm_clk_match_clkdev, cl);
415 WARN_ON(rval);
416}
417EXPORT_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 */
434int 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}
450EXPORT_SYMBOL(devm_clk_hw_register_clkdev);