blob: fda2690a8ef13bc7ea634fcf717f7605e166a164 [file] [log] [blame]
Maxime Bizone7300d02009-08-18 13:23:37 +01001/*
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>
Maxime Bizon04712f32011-11-04 19:09:35 +010013#include <linux/delay.h>
Maxime Bizone7300d02009-08-18 13:23:37 +010014#include <bcm63xx_cpu.h>
15#include <bcm63xx_io.h>
16#include <bcm63xx_regs.h>
Jonas Gorskiba00e2e2012-10-28 12:17:55 +000017#include <bcm63xx_reset.h>
Jonas Gorski042df4f2013-04-06 10:31:02 +000018
19struct clk {
20 void (*set)(struct clk *, int);
21 unsigned int rate;
22 unsigned int usage;
23 int id;
24};
Maxime Bizone7300d02009-08-18 13:23:37 +010025
26static DEFINE_MUTEX(clocks_mutex);
27
28
29static void clk_enable_unlocked(struct clk *clk)
30{
31 if (clk->set && (clk->usage++) == 0)
32 clk->set(clk, 1);
33}
34
35static void clk_disable_unlocked(struct clk *clk)
36{
37 if (clk->set && (--clk->usage) == 0)
38 clk->set(clk, 0);
39}
40
41static void bcm_hwclock_set(u32 mask, int enable)
42{
43 u32 reg;
44
45 reg = bcm_perf_readl(PERF_CKCTL_REG);
46 if (enable)
47 reg |= mask;
48 else
49 reg &= ~mask;
50 bcm_perf_writel(reg, PERF_CKCTL_REG);
51}
52
53/*
54 * Ethernet MAC "misc" clock: dma clocks and main clock on 6348
55 */
56static void enet_misc_set(struct clk *clk, int enable)
57{
58 u32 mask;
59
60 if (BCMCPU_IS_6338())
61 mask = CKCTL_6338_ENET_EN;
62 else if (BCMCPU_IS_6345())
63 mask = CKCTL_6345_ENET_EN;
64 else if (BCMCPU_IS_6348())
65 mask = CKCTL_6348_ENET_EN;
66 else
67 /* BCMCPU_IS_6358 */
68 mask = CKCTL_6358_EMUSB_EN;
69 bcm_hwclock_set(mask, enable);
70}
71
72static struct clk clk_enet_misc = {
73 .set = enet_misc_set,
74};
75
76/*
77 * Ethernet MAC clocks: only revelant on 6358, silently enable misc
78 * clocks
79 */
80static void enetx_set(struct clk *clk, int enable)
81{
82 if (enable)
83 clk_enable_unlocked(&clk_enet_misc);
84 else
85 clk_disable_unlocked(&clk_enet_misc);
86
Florian Fainelli7b933422013-06-18 16:55:40 +000087 if (BCMCPU_IS_3368() || BCMCPU_IS_6358()) {
Maxime Bizone7300d02009-08-18 13:23:37 +010088 u32 mask;
89
90 if (clk->id == 0)
91 mask = CKCTL_6358_ENET0_EN;
92 else
93 mask = CKCTL_6358_ENET1_EN;
94 bcm_hwclock_set(mask, enable);
95 }
96}
97
98static struct clk clk_enet0 = {
99 .id = 0,
100 .set = enetx_set,
101};
102
103static struct clk clk_enet1 = {
104 .id = 1,
105 .set = enetx_set,
106};
107
108/*
109 * Ethernet PHY clock
110 */
111static void ephy_set(struct clk *clk, int enable)
112{
Florian Fainelli7b933422013-06-18 16:55:40 +0000113 if (BCMCPU_IS_3368() || BCMCPU_IS_6358())
114 bcm_hwclock_set(CKCTL_6358_EPHY_EN, enable);
Maxime Bizone7300d02009-08-18 13:23:37 +0100115}
116
117
118static struct clk clk_ephy = {
119 .set = ephy_set,
120};
121
122/*
Maxime Bizon04712f32011-11-04 19:09:35 +0100123 * Ethernet switch clock
124 */
125static void enetsw_set(struct clk *clk, int enable)
126{
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000127 if (BCMCPU_IS_6328())
128 bcm_hwclock_set(CKCTL_6328_ROBOSW_EN, enable);
129 else if (BCMCPU_IS_6362())
130 bcm_hwclock_set(CKCTL_6362_ROBOSW_EN, enable);
131 else if (BCMCPU_IS_6368())
132 bcm_hwclock_set(CKCTL_6368_ROBOSW_EN |
133 CKCTL_6368_SWPKT_USB_EN |
134 CKCTL_6368_SWPKT_SAR_EN,
135 enable);
136 else
Maxime Bizon04712f32011-11-04 19:09:35 +0100137 return;
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000138
Maxime Bizon04712f32011-11-04 19:09:35 +0100139 if (enable) {
Maxime Bizon04712f32011-11-04 19:09:35 +0100140 /* reset switch core afer clock change */
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000141 bcm63xx_core_set_reset(BCM63XX_RESET_ENETSW, 1);
Maxime Bizon04712f32011-11-04 19:09:35 +0100142 msleep(10);
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000143 bcm63xx_core_set_reset(BCM63XX_RESET_ENETSW, 0);
Maxime Bizon04712f32011-11-04 19:09:35 +0100144 msleep(10);
145 }
146}
147
148static struct clk clk_enetsw = {
149 .set = enetsw_set,
150};
151
152/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100153 * PCM clock
154 */
155static void pcm_set(struct clk *clk, int enable)
156{
Florian Fainelli7b933422013-06-18 16:55:40 +0000157 if (BCMCPU_IS_3368())
158 bcm_hwclock_set(CKCTL_3368_PCM_EN, enable);
159 if (BCMCPU_IS_6358())
160 bcm_hwclock_set(CKCTL_6358_PCM_EN, enable);
Maxime Bizone7300d02009-08-18 13:23:37 +0100161}
162
163static struct clk clk_pcm = {
164 .set = pcm_set,
165};
166
167/*
168 * USB host clock
169 */
170static void usbh_set(struct clk *clk, int enable)
171{
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000172 if (BCMCPU_IS_6328())
173 bcm_hwclock_set(CKCTL_6328_USBH_EN, enable);
174 else if (BCMCPU_IS_6348())
Maxime Bizon04712f32011-11-04 19:09:35 +0100175 bcm_hwclock_set(CKCTL_6348_USBH_EN, enable);
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000176 else if (BCMCPU_IS_6362())
177 bcm_hwclock_set(CKCTL_6362_USBH_EN, enable);
Maxime Bizon04712f32011-11-04 19:09:35 +0100178 else if (BCMCPU_IS_6368())
Florian Fainellid9831a42012-07-04 16:57:09 +0200179 bcm_hwclock_set(CKCTL_6368_USBH_EN, enable);
Maxime Bizone7300d02009-08-18 13:23:37 +0100180}
181
182static struct clk clk_usbh = {
183 .set = usbh_set,
184};
185
186/*
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000187 * USB device clock
188 */
189static void usbd_set(struct clk *clk, int enable)
190{
191 if (BCMCPU_IS_6328())
192 bcm_hwclock_set(CKCTL_6328_USBD_EN, enable);
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000193 else if (BCMCPU_IS_6362())
194 bcm_hwclock_set(CKCTL_6362_USBD_EN, enable);
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000195 else if (BCMCPU_IS_6368())
196 bcm_hwclock_set(CKCTL_6368_USBD_EN, enable);
197}
198
199static struct clk clk_usbd = {
200 .set = usbd_set,
201};
202
203/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100204 * SPI clock
205 */
206static void spi_set(struct clk *clk, int enable)
207{
208 u32 mask;
209
210 if (BCMCPU_IS_6338())
211 mask = CKCTL_6338_SPI_EN;
212 else if (BCMCPU_IS_6348())
213 mask = CKCTL_6348_SPI_EN;
Florian Fainelli7b933422013-06-18 16:55:40 +0000214 else if (BCMCPU_IS_3368() || BCMCPU_IS_6358())
Maxime Bizone7300d02009-08-18 13:23:37 +0100215 mask = CKCTL_6358_SPI_EN;
Jonas Gorski08a41d12013-03-21 14:03:18 +0000216 else if (BCMCPU_IS_6362())
217 mask = CKCTL_6362_SPI_EN;
Florian Fainelli19372b22012-07-04 16:58:30 +0200218 else
219 /* BCMCPU_IS_6368 */
220 mask = CKCTL_6368_SPI_EN;
Maxime Bizone7300d02009-08-18 13:23:37 +0100221 bcm_hwclock_set(mask, enable);
222}
223
224static struct clk clk_spi = {
225 .set = spi_set,
226};
227
228/*
Maxime Bizon04712f32011-11-04 19:09:35 +0100229 * XTM clock
230 */
231static void xtm_set(struct clk *clk, int enable)
232{
233 if (!BCMCPU_IS_6368())
234 return;
235
Florian Fainellid9831a42012-07-04 16:57:09 +0200236 bcm_hwclock_set(CKCTL_6368_SAR_EN |
Maxime Bizon04712f32011-11-04 19:09:35 +0100237 CKCTL_6368_SWPKT_SAR_EN, enable);
238
239 if (enable) {
Maxime Bizon04712f32011-11-04 19:09:35 +0100240 /* reset sar core afer clock change */
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000241 bcm63xx_core_set_reset(BCM63XX_RESET_SAR, 1);
Maxime Bizon04712f32011-11-04 19:09:35 +0100242 mdelay(1);
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000243 bcm63xx_core_set_reset(BCM63XX_RESET_SAR, 0);
Maxime Bizon04712f32011-11-04 19:09:35 +0100244 mdelay(1);
245 }
246}
247
248
249static struct clk clk_xtm = {
250 .set = xtm_set,
251};
252
253/*
Florian Fainelli0b555612012-07-24 16:33:09 +0200254 * IPsec clock
255 */
256static void ipsec_set(struct clk *clk, int enable)
257{
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000258 if (BCMCPU_IS_6362())
259 bcm_hwclock_set(CKCTL_6362_IPSEC_EN, enable);
260 else if (BCMCPU_IS_6368())
261 bcm_hwclock_set(CKCTL_6368_IPSEC_EN, enable);
Florian Fainelli0b555612012-07-24 16:33:09 +0200262}
263
264static struct clk clk_ipsec = {
265 .set = ipsec_set,
266};
267
268/*
Jonas Gorskif2d10352012-10-28 11:49:53 +0000269 * PCIe clock
270 */
271
272static void pcie_set(struct clk *clk, int enable)
273{
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000274 if (BCMCPU_IS_6328())
275 bcm_hwclock_set(CKCTL_6328_PCIE_EN, enable);
276 else if (BCMCPU_IS_6362())
277 bcm_hwclock_set(CKCTL_6362_PCIE_EN, enable);
Jonas Gorskif2d10352012-10-28 11:49:53 +0000278}
279
280static struct clk clk_pcie = {
281 .set = pcie_set,
282};
283
284/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100285 * Internal peripheral clock
286 */
287static struct clk clk_periph = {
288 .rate = (50 * 1000 * 1000),
289};
290
291
292/*
293 * Linux clock API implementation
294 */
295int clk_enable(struct clk *clk)
296{
297 mutex_lock(&clocks_mutex);
298 clk_enable_unlocked(clk);
299 mutex_unlock(&clocks_mutex);
300 return 0;
301}
302
303EXPORT_SYMBOL(clk_enable);
304
305void clk_disable(struct clk *clk)
306{
307 mutex_lock(&clocks_mutex);
308 clk_disable_unlocked(clk);
309 mutex_unlock(&clocks_mutex);
310}
311
312EXPORT_SYMBOL(clk_disable);
313
314unsigned long clk_get_rate(struct clk *clk)
315{
316 return clk->rate;
317}
318
319EXPORT_SYMBOL(clk_get_rate);
320
321struct clk *clk_get(struct device *dev, const char *id)
322{
323 if (!strcmp(id, "enet0"))
324 return &clk_enet0;
325 if (!strcmp(id, "enet1"))
326 return &clk_enet1;
Maxime Bizon04712f32011-11-04 19:09:35 +0100327 if (!strcmp(id, "enetsw"))
328 return &clk_enetsw;
Maxime Bizone7300d02009-08-18 13:23:37 +0100329 if (!strcmp(id, "ephy"))
330 return &clk_ephy;
331 if (!strcmp(id, "usbh"))
332 return &clk_usbh;
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000333 if (!strcmp(id, "usbd"))
334 return &clk_usbd;
Maxime Bizone7300d02009-08-18 13:23:37 +0100335 if (!strcmp(id, "spi"))
336 return &clk_spi;
Maxime Bizon04712f32011-11-04 19:09:35 +0100337 if (!strcmp(id, "xtm"))
338 return &clk_xtm;
Maxime Bizone7300d02009-08-18 13:23:37 +0100339 if (!strcmp(id, "periph"))
340 return &clk_periph;
Florian Fainelli7b933422013-06-18 16:55:40 +0000341 if ((BCMCPU_IS_3368() || BCMCPU_IS_6358()) && !strcmp(id, "pcm"))
Maxime Bizone7300d02009-08-18 13:23:37 +0100342 return &clk_pcm;
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000343 if ((BCMCPU_IS_6362() || BCMCPU_IS_6368()) && !strcmp(id, "ipsec"))
Florian Fainelli0b555612012-07-24 16:33:09 +0200344 return &clk_ipsec;
Jonas Gorski1cd1c042013-04-22 10:57:06 +0000345 if ((BCMCPU_IS_6328() || BCMCPU_IS_6362()) && !strcmp(id, "pcie"))
Jonas Gorskif2d10352012-10-28 11:49:53 +0000346 return &clk_pcie;
Maxime Bizone7300d02009-08-18 13:23:37 +0100347 return ERR_PTR(-ENOENT);
348}
349
350EXPORT_SYMBOL(clk_get);
351
352void clk_put(struct clk *clk)
353{
354}
355
356EXPORT_SYMBOL(clk_put);