blob: 446b696196e363858e66d12983b2bca21126d22d [file] [log] [blame]
Russell King0318e692008-11-09 16:32:46 +00001/*
2 * arch/arm/common/clkdev.c
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 Sweetenc0c60c42009-08-04 23:38:06 +010020#include <linux/clk.h>
Russell King0318e692008-11-09 16:32:46 +000021
22#include <asm/clkdev.h>
23#include <mach/clkdev.h>
24
25static LIST_HEAD(clocks);
26static DEFINE_MUTEX(clocks_mutex);
27
Russell King409dc362009-01-24 10:14:37 +000028/*
29 * Find the correct struct clk for the device and connection ID.
30 * We do slightly fuzzy matching here:
31 * An entry with a NULL ID is assumed to be a wildcard.
32 * If an entry has a device ID, it must match
33 * If an entry has a connection ID, it must match
34 * Then we take the most specific entry - with the following
35 * order of precidence: dev+con > dev only > con only.
36 */
Russell King0318e692008-11-09 16:32:46 +000037static struct clk *clk_find(const char *dev_id, const char *con_id)
38{
39 struct clk_lookup *p;
40 struct clk *clk = NULL;
41 int match, best = 0;
42
43 list_for_each_entry(p, &clocks, node) {
Russell King0318e692008-11-09 16:32:46 +000044 match = 0;
Russell King409dc362009-01-24 10:14:37 +000045 if (p->dev_id) {
46 if (!dev_id || strcmp(p->dev_id, dev_id))
47 continue;
48 match += 2;
49 }
50 if (p->con_id) {
51 if (!con_id || strcmp(p->con_id, con_id))
52 continue;
53 match += 1;
54 }
Russell King0318e692008-11-09 16:32:46 +000055 if (match == 0)
56 continue;
57
58 if (match > best) {
59 clk = p->clk;
60 best = match;
61 }
62 }
63 return clk;
64}
65
Sascha Hauer05fd8e72009-03-07 12:55:49 +010066struct clk *clk_get_sys(const char *dev_id, const char *con_id)
Russell King0318e692008-11-09 16:32:46 +000067{
Russell King0318e692008-11-09 16:32:46 +000068 struct clk *clk;
69
70 mutex_lock(&clocks_mutex);
71 clk = clk_find(dev_id, con_id);
72 if (clk && !__clk_get(clk))
73 clk = NULL;
74 mutex_unlock(&clocks_mutex);
75
76 return clk ? clk : ERR_PTR(-ENOENT);
77}
Sascha Hauer05fd8e72009-03-07 12:55:49 +010078EXPORT_SYMBOL(clk_get_sys);
79
80struct clk *clk_get(struct device *dev, const char *con_id)
81{
82 const char *dev_id = dev ? dev_name(dev) : NULL;
83
84 return clk_get_sys(dev_id, con_id);
85}
Russell King0318e692008-11-09 16:32:46 +000086EXPORT_SYMBOL(clk_get);
87
88void clk_put(struct clk *clk)
89{
90 __clk_put(clk);
91}
92EXPORT_SYMBOL(clk_put);
93
94void clkdev_add(struct clk_lookup *cl)
95{
96 mutex_lock(&clocks_mutex);
97 list_add_tail(&cl->node, &clocks);
98 mutex_unlock(&clocks_mutex);
99}
100EXPORT_SYMBOL(clkdev_add);
101
Russell King0a0300d2010-01-12 12:28:00 +0000102void __init clkdev_add_table(struct clk_lookup *cl, size_t num)
103{
104 mutex_lock(&clocks_mutex);
105 while (num--) {
106 list_add_tail(&cl->node, &clocks);
107 cl++;
108 }
109 mutex_unlock(&clocks_mutex);
110}
111
Russell King0318e692008-11-09 16:32:46 +0000112#define MAX_DEV_ID 20
113#define MAX_CON_ID 16
114
115struct clk_lookup_alloc {
116 struct clk_lookup cl;
117 char dev_id[MAX_DEV_ID];
118 char con_id[MAX_CON_ID];
119};
120
121struct clk_lookup *clkdev_alloc(struct clk *clk, const char *con_id,
122 const char *dev_fmt, ...)
123{
124 struct clk_lookup_alloc *cla;
125
126 cla = kzalloc(sizeof(*cla), GFP_KERNEL);
127 if (!cla)
128 return NULL;
129
130 cla->cl.clk = clk;
131 if (con_id) {
132 strlcpy(cla->con_id, con_id, sizeof(cla->con_id));
133 cla->cl.con_id = cla->con_id;
134 }
135
136 if (dev_fmt) {
137 va_list ap;
138
139 va_start(ap, dev_fmt);
140 vscnprintf(cla->dev_id, sizeof(cla->dev_id), dev_fmt, ap);
141 cla->cl.dev_id = cla->dev_id;
142 va_end(ap);
143 }
144
145 return &cla->cl;
146}
147EXPORT_SYMBOL(clkdev_alloc);
148
Tony Lindgrenc0683032009-06-03 17:43:14 +0100149int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
150 struct device *dev)
151{
152 struct clk *r = clk_get(dev, id);
153 struct clk_lookup *l;
154
155 if (IS_ERR(r))
156 return PTR_ERR(r);
157
158 l = clkdev_alloc(r, alias, alias_dev_name);
159 clk_put(r);
160 if (!l)
161 return -ENODEV;
162 clkdev_add(l);
163 return 0;
164}
165EXPORT_SYMBOL(clk_add_alias);
166
Russell King0318e692008-11-09 16:32:46 +0000167/*
168 * clkdev_drop - remove a clock dynamically allocated
169 */
170void clkdev_drop(struct clk_lookup *cl)
171{
172 mutex_lock(&clocks_mutex);
173 list_del(&cl->node);
174 mutex_unlock(&clocks_mutex);
175 kfree(cl);
176}
177EXPORT_SYMBOL(clkdev_drop);