Flatten brcm63xx patches, should make our life easier to patch files now ;)
[openwrt/svn-archive/archive.git] / target / linux / brcm63xx / files / arch / mips / bcm63xx / clk.c
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
7 */
8
9 #include <linux/module.h>
10 #include <linux/mutex.h>
11 #include <linux/err.h>
12 #include <linux/clk.h>
13 #include <bcm63xx_cpu.h>
14 #include <bcm63xx_io.h>
15 #include <bcm63xx_regs.h>
16 #include <bcm63xx_clk.h>
17
18 DEFINE_MUTEX(clocks_mutex);
19
20
21 static void clk_enable_unlocked(struct clk *clk)
22 {
23 if (clk->set && (clk->usage++) == 0)
24 clk->set(clk, 1);
25 }
26
27 static void clk_disable_unlocked(struct clk *clk)
28 {
29 if (clk->set && (--clk->usage) == 0)
30 clk->set(clk, 0);
31 }
32
33 static void bcm_hwclock_set(u32 mask, int enable)
34 {
35 u32 reg;
36
37 reg = bcm_perf_readl(PERF_CKCTL_REG);
38 if (enable)
39 reg |= mask;
40 else
41 reg &= ~mask;
42 bcm_perf_writel(reg, PERF_CKCTL_REG);
43 }
44
45 /*
46 * Ethernet MAC "misc" clock: dma clocks and main clock on 6348
47 */
48 static void enet_misc_set(struct clk *clk, int enable)
49 {
50 u32 mask;
51
52 if (BCMCPU_IS_6348())
53 mask = CKCTL_6348_ENET_EN;
54 else
55 /* BCMCPU_IS_6358 */
56 mask = CKCTL_6358_EMUSB_EN;
57 bcm_hwclock_set(mask, enable);
58 }
59
60 static struct clk clk_enet_misc = {
61 .set = enet_misc_set,
62 };
63
64 /*
65 * Ethernet MAC clocks: only revelant on 6358, silently enable misc
66 * clocks
67 */
68 static void enetx_set(struct clk *clk, int enable)
69 {
70 if (enable)
71 clk_enable_unlocked(&clk_enet_misc);
72 else
73 clk_disable_unlocked(&clk_enet_misc);
74
75 if (BCMCPU_IS_6358()) {
76 u32 mask;
77
78 if (clk->id == 0)
79 mask = CKCTL_6358_ENET0_EN;
80 else
81 mask = CKCTL_6358_ENET1_EN;
82 bcm_hwclock_set(mask, enable);
83 }
84 }
85
86 static struct clk clk_enet0 = {
87 .id = 0,
88 .set = enetx_set,
89 };
90
91 static struct clk clk_enet1 = {
92 .id = 1,
93 .set = enetx_set,
94 };
95
96 /*
97 * Ethernet PHY clock
98 */
99 static void ephy_set(struct clk *clk, int enable)
100 {
101 if (!BCMCPU_IS_6358())
102 return;
103 bcm_hwclock_set(CKCTL_6358_EPHY_EN, enable);
104 }
105
106
107 static struct clk clk_ephy = {
108 .set = ephy_set,
109 };
110
111 /*
112 * PCM clock
113 */
114 static void pcm_set(struct clk *clk, int enable)
115 {
116 if (!BCMCPU_IS_6358())
117 return;
118 bcm_hwclock_set(CKCTL_6358_PCM_EN, enable);
119 }
120
121 static struct clk clk_pcm = {
122 .set = pcm_set,
123 };
124
125 /*
126 * USB host clock
127 */
128 static void usbh_set(struct clk *clk, int enable)
129 {
130 if (!BCMCPU_IS_6348())
131 return;
132 bcm_hwclock_set(CKCTL_6348_USBH_EN, enable);
133 }
134
135 static struct clk clk_usbh = {
136 .set = usbh_set,
137 };
138
139 /*
140 * SPI clock
141 */
142 static void spi_set(struct clk *clk, int enable)
143 {
144 u32 mask;
145
146 if (BCMCPU_IS_6348())
147 mask = CKCTL_6348_SPI_EN;
148 else
149 /* BCMCPU_IS_6358 */
150 mask = CKCTL_6358_SPI_EN;
151 bcm_hwclock_set(mask, enable);
152 }
153
154 static struct clk clk_spi = {
155 .set = spi_set,
156 };
157
158 /*
159 * Internal peripheral clock
160 */
161 static struct clk clk_periph = {
162 .rate = (50 * 1000 * 1000),
163 };
164
165
166 /*
167 * Linux clock API implementation
168 */
169 int clk_enable(struct clk *clk)
170 {
171 mutex_lock(&clocks_mutex);
172 clk_enable_unlocked(clk);
173 mutex_unlock(&clocks_mutex);
174 return 0;
175 }
176
177 EXPORT_SYMBOL(clk_enable);
178
179 void clk_disable(struct clk *clk)
180 {
181 mutex_lock(&clocks_mutex);
182 clk_disable_unlocked(clk);
183 mutex_unlock(&clocks_mutex);
184 }
185
186 EXPORT_SYMBOL(clk_disable);
187
188 unsigned long clk_get_rate(struct clk *clk)
189 {
190 return clk->rate;
191 }
192
193 EXPORT_SYMBOL(clk_get_rate);
194
195 struct clk *clk_get(struct device *dev, const char *id)
196 {
197 if (!strcmp(id, "enet0"))
198 return &clk_enet0;
199 if (!strcmp(id, "enet1"))
200 return &clk_enet1;
201 if (!strcmp(id, "ephy"))
202 return &clk_ephy;
203 if (!strcmp(id, "usbh"))
204 return &clk_usbh;
205 if (!strcmp(id, "spi"))
206 return &clk_spi;
207 if (!strcmp(id, "periph"))
208 return &clk_periph;
209 if (BCMCPU_IS_6358() && !strcmp(id, "pcm"))
210 return &clk_pcm;
211 return ERR_PTR(-ENOENT);
212 }
213
214 EXPORT_SYMBOL(clk_get);
215
216 void clk_put(struct clk *clk)
217 {
218 }
219
220 EXPORT_SYMBOL(clk_put);