4 * Copyright (C) 2008 Russell King.
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.
10 * Helper for the clk API to assist looking up a struct clk.
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>
20 #include <linux/clk.h>
21 #include <linux/clkdev.h>
22 #include <linux/clk-provider.h>
27 static LIST_HEAD(clocks
);
28 static DEFINE_MUTEX(clocks_mutex
);
30 #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
31 static struct clk
*__of_clk_get(struct device_node
*np
, int index
,
32 const char *dev_id
, const char *con_id
)
34 struct of_phandle_args clkspec
;
38 rc
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells", index
,
43 clk
= __of_clk_get_from_provider(&clkspec
, dev_id
, con_id
);
44 of_node_put(clkspec
.np
);
49 struct clk
*of_clk_get(struct device_node
*np
, int index
)
51 return __of_clk_get(np
, index
, np
->full_name
, NULL
);
53 EXPORT_SYMBOL(of_clk_get
);
55 static struct clk
*__of_clk_get_by_name(struct device_node
*np
,
59 struct clk
*clk
= ERR_PTR(-ENOENT
);
61 /* Walk up the tree of devices looking for a clock that matches */
66 * For named clocks, first look up the name in the
67 * "clock-names" property. If it cannot be found, then
68 * index will be an error code, and of_clk_get() will fail.
71 index
= of_property_match_string(np
, "clock-names", name
);
72 clk
= __of_clk_get(np
, index
, dev_id
, name
);
75 } else if (name
&& index
>= 0) {
76 if (PTR_ERR(clk
) != -EPROBE_DEFER
)
77 pr_err("ERROR: could not get clock %pOF:%s(%i)\n",
78 np
, name
? name
: "", index
);
83 * No matching clock found on this node. If the parent node
84 * has a "clock-ranges" property, then we can try one of its
88 if (np
&& !of_get_property(np
, "clock-ranges", NULL
))
96 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
97 * @np: pointer to clock consumer node
98 * @name: name of consumer's clock input, or NULL for the first clock reference
100 * This function parses the clocks and clock-names properties,
101 * and uses them to look up the struct clk from the registered list of clock
104 struct clk
*of_clk_get_by_name(struct device_node
*np
, const char *name
)
107 return ERR_PTR(-ENOENT
);
109 return __of_clk_get_by_name(np
, np
->full_name
, name
);
111 EXPORT_SYMBOL(of_clk_get_by_name
);
113 #else /* defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) */
115 static struct clk
*__of_clk_get_by_name(struct device_node
*np
,
119 return ERR_PTR(-ENOENT
);
124 * Find the correct struct clk for the device and connection ID.
125 * We do slightly fuzzy matching here:
126 * An entry with a NULL ID is assumed to be a wildcard.
127 * If an entry has a device ID, it must match
128 * If an entry has a connection ID, it must match
129 * Then we take the most specific entry - with the following
130 * order of precedence: dev+con > dev only > con only.
132 static struct clk_lookup
*clk_find(const char *dev_id
, const char *con_id
)
134 struct clk_lookup
*p
, *cl
= NULL
;
135 int match
, best_found
= 0, best_possible
= 0;
142 list_for_each_entry(p
, &clocks
, node
) {
145 if (!dev_id
|| strcmp(p
->dev_id
, dev_id
))
150 if (!con_id
|| strcmp(p
->con_id
, con_id
))
155 if (match
> best_found
) {
157 if (match
!= best_possible
)
166 struct clk
*clk_get_sys(const char *dev_id
, const char *con_id
)
168 struct clk_lookup
*cl
;
169 struct clk
*clk
= NULL
;
171 mutex_lock(&clocks_mutex
);
173 cl
= clk_find(dev_id
, con_id
);
177 clk
= __clk_create_clk(cl
->clk_hw
, dev_id
, con_id
);
181 if (!__clk_get(clk
)) {
188 mutex_unlock(&clocks_mutex
);
190 return cl
? clk
: ERR_PTR(-ENOENT
);
192 EXPORT_SYMBOL(clk_get_sys
);
194 struct clk
*clk_get(struct device
*dev
, const char *con_id
)
196 const char *dev_id
= dev
? dev_name(dev
) : NULL
;
199 if (dev
&& dev
->of_node
) {
200 clk
= __of_clk_get_by_name(dev
->of_node
, dev_id
, con_id
);
201 if (!IS_ERR(clk
) || PTR_ERR(clk
) == -EPROBE_DEFER
)
205 return clk_get_sys(dev_id
, con_id
);
207 EXPORT_SYMBOL(clk_get
);
209 void clk_put(struct clk
*clk
)
213 EXPORT_SYMBOL(clk_put
);
215 static void __clkdev_add(struct clk_lookup
*cl
)
217 mutex_lock(&clocks_mutex
);
218 list_add_tail(&cl
->node
, &clocks
);
219 mutex_unlock(&clocks_mutex
);
222 void clkdev_add(struct clk_lookup
*cl
)
225 cl
->clk_hw
= __clk_get_hw(cl
->clk
);
228 EXPORT_SYMBOL(clkdev_add
);
230 void clkdev_add_table(struct clk_lookup
*cl
, size_t num
)
232 mutex_lock(&clocks_mutex
);
234 cl
->clk_hw
= __clk_get_hw(cl
->clk
);
235 list_add_tail(&cl
->node
, &clocks
);
238 mutex_unlock(&clocks_mutex
);
241 #define MAX_DEV_ID 20
242 #define MAX_CON_ID 16
244 struct clk_lookup_alloc
{
245 struct clk_lookup cl
;
246 char dev_id
[MAX_DEV_ID
];
247 char con_id
[MAX_CON_ID
];
250 static struct clk_lookup
* __ref
251 vclkdev_alloc(struct clk_hw
*hw
, const char *con_id
, const char *dev_fmt
,
254 struct clk_lookup_alloc
*cla
;
256 cla
= kzalloc(sizeof(*cla
), GFP_KERNEL
);
262 strlcpy(cla
->con_id
, con_id
, sizeof(cla
->con_id
));
263 cla
->cl
.con_id
= cla
->con_id
;
267 vscnprintf(cla
->dev_id
, sizeof(cla
->dev_id
), dev_fmt
, ap
);
268 cla
->cl
.dev_id
= cla
->dev_id
;
274 static struct clk_lookup
*
275 vclkdev_create(struct clk_hw
*hw
, const char *con_id
, const char *dev_fmt
,
278 struct clk_lookup
*cl
;
280 cl
= vclkdev_alloc(hw
, con_id
, dev_fmt
, ap
);
287 struct clk_lookup
* __ref
288 clkdev_alloc(struct clk
*clk
, const char *con_id
, const char *dev_fmt
, ...)
290 struct clk_lookup
*cl
;
293 va_start(ap
, dev_fmt
);
294 cl
= vclkdev_alloc(__clk_get_hw(clk
), con_id
, dev_fmt
, ap
);
299 EXPORT_SYMBOL(clkdev_alloc
);
302 clkdev_hw_alloc(struct clk_hw
*hw
, const char *con_id
, const char *dev_fmt
, ...)
304 struct clk_lookup
*cl
;
307 va_start(ap
, dev_fmt
);
308 cl
= vclkdev_alloc(hw
, con_id
, dev_fmt
, ap
);
313 EXPORT_SYMBOL(clkdev_hw_alloc
);
316 * clkdev_create - allocate and add a clkdev lookup structure
317 * @clk: struct clk to associate with all clk_lookups
318 * @con_id: connection ID string on device
319 * @dev_fmt: format string describing device name
321 * Returns a clk_lookup structure, which can be later unregistered and
324 struct clk_lookup
*clkdev_create(struct clk
*clk
, const char *con_id
,
325 const char *dev_fmt
, ...)
327 struct clk_lookup
*cl
;
330 va_start(ap
, dev_fmt
);
331 cl
= vclkdev_create(__clk_get_hw(clk
), con_id
, dev_fmt
, ap
);
336 EXPORT_SYMBOL_GPL(clkdev_create
);
339 * clkdev_hw_create - allocate and add a clkdev lookup structure
340 * @hw: struct clk_hw to associate with all clk_lookups
341 * @con_id: connection ID string on device
342 * @dev_fmt: format string describing device name
344 * Returns a clk_lookup structure, which can be later unregistered and
347 struct clk_lookup
*clkdev_hw_create(struct clk_hw
*hw
, const char *con_id
,
348 const char *dev_fmt
, ...)
350 struct clk_lookup
*cl
;
353 va_start(ap
, dev_fmt
);
354 cl
= vclkdev_create(hw
, con_id
, dev_fmt
, ap
);
359 EXPORT_SYMBOL_GPL(clkdev_hw_create
);
361 int clk_add_alias(const char *alias
, const char *alias_dev_name
,
362 const char *con_id
, struct device
*dev
)
364 struct clk
*r
= clk_get(dev
, con_id
);
365 struct clk_lookup
*l
;
370 l
= clkdev_create(r
, alias
, alias_dev_name
? "%s" : NULL
,
374 return l
? 0 : -ENODEV
;
376 EXPORT_SYMBOL(clk_add_alias
);
379 * clkdev_drop - remove a clock dynamically allocated
381 void clkdev_drop(struct clk_lookup
*cl
)
383 mutex_lock(&clocks_mutex
);
385 mutex_unlock(&clocks_mutex
);
388 EXPORT_SYMBOL(clkdev_drop
);
390 static struct clk_lookup
*__clk_register_clkdev(struct clk_hw
*hw
,
392 const char *dev_id
, ...)
394 struct clk_lookup
*cl
;
397 va_start(ap
, dev_id
);
398 cl
= vclkdev_create(hw
, con_id
, dev_id
, ap
);
405 * clk_register_clkdev - register one clock lookup for a struct clk
406 * @clk: struct clk to associate with all clk_lookups
407 * @con_id: connection ID string on device
408 * @dev_id: string describing device name
410 * con_id or dev_id may be NULL as a wildcard, just as in the rest of
413 * To make things easier for mass registration, we detect error clks
414 * from a previous clk_register() call, and return the error code for
415 * those. This is to permit this function to be called immediately
416 * after clk_register().
418 int clk_register_clkdev(struct clk
*clk
, const char *con_id
,
421 struct clk_lookup
*cl
;
427 * Since dev_id can be NULL, and NULL is handled specially, we must
428 * pass it as either a NULL format string, or with "%s".
431 cl
= __clk_register_clkdev(__clk_get_hw(clk
), con_id
, "%s",
434 cl
= __clk_register_clkdev(__clk_get_hw(clk
), con_id
, NULL
);
436 return cl
? 0 : -ENOMEM
;
438 EXPORT_SYMBOL(clk_register_clkdev
);
441 * clk_hw_register_clkdev - register one clock lookup for a struct clk_hw
442 * @hw: struct clk_hw to associate with all clk_lookups
443 * @con_id: connection ID string on device
444 * @dev_id: format string describing device name
446 * con_id or dev_id may be NULL as a wildcard, just as in the rest of
449 * To make things easier for mass registration, we detect error clk_hws
450 * from a previous clk_hw_register_*() call, and return the error code for
451 * those. This is to permit this function to be called immediately
452 * after clk_hw_register_*().
454 int clk_hw_register_clkdev(struct clk_hw
*hw
, const char *con_id
,
457 struct clk_lookup
*cl
;
463 * Since dev_id can be NULL, and NULL is handled specially, we must
464 * pass it as either a NULL format string, or with "%s".
467 cl
= __clk_register_clkdev(hw
, con_id
, "%s", dev_id
);
469 cl
= __clk_register_clkdev(hw
, con_id
, NULL
);
471 return cl
? 0 : -ENOMEM
;
473 EXPORT_SYMBOL(clk_hw_register_clkdev
);