1
2
3
4
5
6
7
8
9
10
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>
20#include <linux/clk.h>
21#include <linux/clkdev.h>
22#include <linux/of.h>
23
24static LIST_HEAD(clocks);
25static DEFINE_MUTEX(clocks_mutex);
26
27#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
28struct clk *of_clk_get(struct device_node *np, int index)
29{
30 struct of_phandle_args clkspec;
31 struct clk *clk;
32 int rc;
33
34 if (index < 0)
35 return ERR_PTR(-EINVAL);
36
37 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
38 &clkspec);
39 if (rc)
40 return ERR_PTR(rc);
41
42 clk = of_clk_get_from_provider(&clkspec);
43 of_node_put(clkspec.np);
44 return clk;
45}
46EXPORT_SYMBOL(of_clk_get);
47
48
49
50
51
52
53
54
55
56
57struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
58{
59 struct clk *clk = ERR_PTR(-ENOENT);
60
61
62 while (np) {
63 int index = 0;
64
65
66
67
68
69
70 if (name)
71 index = of_property_match_string(np, "clock-names", name);
72 clk = of_clk_get(np, index);
73 if (!IS_ERR(clk))
74 break;
75 else if (name && index >= 0) {
76 pr_err("ERROR: could not get clock %s:%s(%i)\n",
77 np->full_name, name ? name : "", index);
78 return clk;
79 }
80
81
82
83
84
85
86 np = np->parent;
87 if (np && !of_get_property(np, "clock-ranges", NULL))
88 break;
89 }
90
91 return clk;
92}
93EXPORT_SYMBOL(of_clk_get_by_name);
94#endif
95
96
97
98
99
100
101
102
103
104
105static struct clk_lookup *clk_find(const char *dev_id, const char *con_id)
106{
107 struct clk_lookup *p, *cl = NULL;
108 int match, best_found = 0, best_possible = 0;
109
110 if (dev_id)
111 best_possible += 2;
112 if (con_id)
113 best_possible += 1;
114
115 list_for_each_entry(p, &clocks, node) {
116 match = 0;
117 if (p->dev_id) {
118 if (!dev_id || strcmp(p->dev_id, dev_id))
119 continue;
120 match += 2;
121 }
122 if (p->con_id) {
123 if (!con_id || strcmp(p->con_id, con_id))
124 continue;
125 match += 1;
126 }
127
128 if (match > best_found) {
129 cl = p;
130 if (match != best_possible)
131 best_found = match;
132 else
133 break;
134 }
135 }
136 return cl;
137}
138
139struct clk *clk_get_sys(const char *dev_id, const char *con_id)
140{
141 struct clk_lookup *cl;
142
143 mutex_lock(&clocks_mutex);
144 cl = clk_find(dev_id, con_id);
145 if (cl && !__clk_get(cl->clk))
146 cl = NULL;
147 mutex_unlock(&clocks_mutex);
148
149 return cl ? cl->clk : ERR_PTR(-ENOENT);
150}
151EXPORT_SYMBOL(clk_get_sys);
152
153struct clk *clk_get(struct device *dev, const char *con_id)
154{
155 const char *dev_id = dev ? dev_name(dev) : NULL;
156 struct clk *clk;
157
158 if (dev) {
159 clk = of_clk_get_by_name(dev->of_node, con_id);
160 if (!IS_ERR(clk) && __clk_get(clk))
161 return clk;
162 }
163
164 return clk_get_sys(dev_id, con_id);
165}
166EXPORT_SYMBOL(clk_get);
167
168void clk_put(struct clk *clk)
169{
170 __clk_put(clk);
171}
172EXPORT_SYMBOL(clk_put);
173
174void clkdev_add(struct clk_lookup *cl)
175{
176 mutex_lock(&clocks_mutex);
177 list_add_tail(&cl->node, &clocks);
178 mutex_unlock(&clocks_mutex);
179}
180EXPORT_SYMBOL(clkdev_add);
181
182void __init clkdev_add_table(struct clk_lookup *cl, size_t num)
183{
184 mutex_lock(&clocks_mutex);
185 while (num--) {
186 list_add_tail(&cl->node, &clocks);
187 cl++;
188 }
189 mutex_unlock(&clocks_mutex);
190}
191
192#define MAX_DEV_ID 20
193#define MAX_CON_ID 16
194
195struct clk_lookup_alloc {
196 struct clk_lookup cl;
197 char dev_id[MAX_DEV_ID];
198 char con_id[MAX_CON_ID];
199};
200
201static struct clk_lookup * __init_refok
202vclkdev_alloc(struct clk *clk, const char *con_id, const char *dev_fmt,
203 va_list ap)
204{
205 struct clk_lookup_alloc *cla;
206
207 cla = __clkdev_alloc(sizeof(*cla));
208 if (!cla)
209 return NULL;
210
211 cla->cl.clk = clk;
212 if (con_id) {
213 strlcpy(cla->con_id, con_id, sizeof(cla->con_id));
214 cla->cl.con_id = cla->con_id;
215 }
216
217 if (dev_fmt) {
218 vscnprintf(cla->dev_id, sizeof(cla->dev_id), dev_fmt, ap);
219 cla->cl.dev_id = cla->dev_id;
220 }
221
222 return &cla->cl;
223}
224
225static struct clk_lookup *
226vclkdev_create(struct clk *clk, const char *con_id, const char *dev_fmt,
227 va_list ap)
228{
229 struct clk_lookup *cl;
230
231 cl = vclkdev_alloc(clk, con_id, dev_fmt, ap);
232 if (cl)
233 clkdev_add(cl);
234
235 return cl;
236}
237
238struct clk_lookup * __init_refok
239clkdev_alloc(struct clk *clk, const char *con_id, const char *dev_fmt, ...)
240{
241 struct clk_lookup *cl;
242 va_list ap;
243
244 va_start(ap, dev_fmt);
245 cl = vclkdev_alloc(clk, con_id, dev_fmt, ap);
246 va_end(ap);
247
248 return cl;
249}
250EXPORT_SYMBOL(clkdev_alloc);
251
252
253
254
255
256
257
258
259
260
261struct clk_lookup *clkdev_create(struct clk *clk, const char *con_id,
262 const char *dev_fmt, ...)
263{
264 struct clk_lookup *cl;
265 va_list ap;
266
267 va_start(ap, dev_fmt);
268 cl = vclkdev_create(clk, con_id, dev_fmt, ap);
269 va_end(ap);
270
271 return cl;
272}
273EXPORT_SYMBOL_GPL(clkdev_create);
274
275int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
276 struct device *dev)
277{
278 struct clk *r = clk_get(dev, id);
279 struct clk_lookup *l;
280
281 if (IS_ERR(r))
282 return PTR_ERR(r);
283
284 l = clkdev_create(r, alias, "%s", alias_dev_name);
285 clk_put(r);
286
287 return l ? 0 : -ENODEV;
288}
289EXPORT_SYMBOL(clk_add_alias);
290
291
292
293
294void clkdev_drop(struct clk_lookup *cl)
295{
296 mutex_lock(&clocks_mutex);
297 list_del(&cl->node);
298 mutex_unlock(&clocks_mutex);
299 kfree(cl);
300}
301EXPORT_SYMBOL(clkdev_drop);
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317int clk_register_clkdev(struct clk *clk, const char *con_id,
318 const char *dev_fmt, ...)
319{
320 struct clk_lookup *cl;
321 va_list ap;
322
323 if (IS_ERR(clk))
324 return PTR_ERR(clk);
325
326 va_start(ap, dev_fmt);
327 cl = vclkdev_create(clk, con_id, dev_fmt, ap);
328 va_end(ap);
329
330 return cl ? 0 : -ENOMEM;
331}
332
333
334
335
336
337
338
339
340
341
342
343
344int clk_register_clkdevs(struct clk *clk, struct clk_lookup *cl, size_t num)
345{
346 unsigned i;
347
348 if (IS_ERR(clk))
349 return PTR_ERR(clk);
350
351 for (i = 0; i < num; i++, cl++) {
352 cl->clk = clk;
353 clkdev_add(cl);
354 }
355
356 return 0;
357}
358EXPORT_SYMBOL(clk_register_clkdevs);
359