blob: 660121434d7fa0474d6fdb7aeddc8621fd5deb00 [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
87 if (BCMCPU_IS_6358()) {
88 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{
113 if (!BCMCPU_IS_6358())
114 return;
115 bcm_hwclock_set(CKCTL_6358_EPHY_EN, enable);
116}
117
118
119static struct clk clk_ephy = {
120 .set = ephy_set,
121};
122
123/*
Maxime Bizon04712f32011-11-04 19:09:35 +0100124 * Ethernet switch clock
125 */
126static void enetsw_set(struct clk *clk, int enable)
127{
128 if (!BCMCPU_IS_6368())
129 return;
Florian Fainellid9831a42012-07-04 16:57:09 +0200130 bcm_hwclock_set(CKCTL_6368_ROBOSW_EN |
Maxime Bizon04712f32011-11-04 19:09:35 +0100131 CKCTL_6368_SWPKT_USB_EN |
132 CKCTL_6368_SWPKT_SAR_EN, enable);
133 if (enable) {
Maxime Bizon04712f32011-11-04 19:09:35 +0100134 /* reset switch core afer clock change */
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000135 bcm63xx_core_set_reset(BCM63XX_RESET_ENETSW, 1);
Maxime Bizon04712f32011-11-04 19:09:35 +0100136 msleep(10);
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000137 bcm63xx_core_set_reset(BCM63XX_RESET_ENETSW, 0);
Maxime Bizon04712f32011-11-04 19:09:35 +0100138 msleep(10);
139 }
140}
141
142static struct clk clk_enetsw = {
143 .set = enetsw_set,
144};
145
146/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100147 * PCM clock
148 */
149static void pcm_set(struct clk *clk, int enable)
150{
151 if (!BCMCPU_IS_6358())
152 return;
153 bcm_hwclock_set(CKCTL_6358_PCM_EN, enable);
154}
155
156static struct clk clk_pcm = {
157 .set = pcm_set,
158};
159
160/*
161 * USB host clock
162 */
163static void usbh_set(struct clk *clk, int enable)
164{
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000165 if (BCMCPU_IS_6328())
166 bcm_hwclock_set(CKCTL_6328_USBH_EN, enable);
167 else if (BCMCPU_IS_6348())
Maxime Bizon04712f32011-11-04 19:09:35 +0100168 bcm_hwclock_set(CKCTL_6348_USBH_EN, enable);
169 else if (BCMCPU_IS_6368())
Florian Fainellid9831a42012-07-04 16:57:09 +0200170 bcm_hwclock_set(CKCTL_6368_USBH_EN, enable);
Maxime Bizone7300d02009-08-18 13:23:37 +0100171}
172
173static struct clk clk_usbh = {
174 .set = usbh_set,
175};
176
177/*
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000178 * USB device clock
179 */
180static void usbd_set(struct clk *clk, int enable)
181{
182 if (BCMCPU_IS_6328())
183 bcm_hwclock_set(CKCTL_6328_USBD_EN, enable);
184 else if (BCMCPU_IS_6368())
185 bcm_hwclock_set(CKCTL_6368_USBD_EN, enable);
186}
187
188static struct clk clk_usbd = {
189 .set = usbd_set,
190};
191
192/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100193 * SPI clock
194 */
195static void spi_set(struct clk *clk, int enable)
196{
197 u32 mask;
198
199 if (BCMCPU_IS_6338())
200 mask = CKCTL_6338_SPI_EN;
201 else if (BCMCPU_IS_6348())
202 mask = CKCTL_6348_SPI_EN;
Florian Fainelli19372b22012-07-04 16:58:30 +0200203 else if (BCMCPU_IS_6358())
Maxime Bizone7300d02009-08-18 13:23:37 +0100204 mask = CKCTL_6358_SPI_EN;
Jonas Gorski08a41d12013-03-21 14:03:18 +0000205 else if (BCMCPU_IS_6362())
206 mask = CKCTL_6362_SPI_EN;
Florian Fainelli19372b22012-07-04 16:58:30 +0200207 else
208 /* BCMCPU_IS_6368 */
209 mask = CKCTL_6368_SPI_EN;
Maxime Bizone7300d02009-08-18 13:23:37 +0100210 bcm_hwclock_set(mask, enable);
211}
212
213static struct clk clk_spi = {
214 .set = spi_set,
215};
216
217/*
Maxime Bizon04712f32011-11-04 19:09:35 +0100218 * XTM clock
219 */
220static void xtm_set(struct clk *clk, int enable)
221{
222 if (!BCMCPU_IS_6368())
223 return;
224
Florian Fainellid9831a42012-07-04 16:57:09 +0200225 bcm_hwclock_set(CKCTL_6368_SAR_EN |
Maxime Bizon04712f32011-11-04 19:09:35 +0100226 CKCTL_6368_SWPKT_SAR_EN, enable);
227
228 if (enable) {
Maxime Bizon04712f32011-11-04 19:09:35 +0100229 /* reset sar core afer clock change */
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000230 bcm63xx_core_set_reset(BCM63XX_RESET_SAR, 1);
Maxime Bizon04712f32011-11-04 19:09:35 +0100231 mdelay(1);
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000232 bcm63xx_core_set_reset(BCM63XX_RESET_SAR, 0);
Maxime Bizon04712f32011-11-04 19:09:35 +0100233 mdelay(1);
234 }
235}
236
237
238static struct clk clk_xtm = {
239 .set = xtm_set,
240};
241
242/*
Florian Fainelli0b555612012-07-24 16:33:09 +0200243 * IPsec clock
244 */
245static void ipsec_set(struct clk *clk, int enable)
246{
247 bcm_hwclock_set(CKCTL_6368_IPSEC_EN, enable);
248}
249
250static struct clk clk_ipsec = {
251 .set = ipsec_set,
252};
253
254/*
Jonas Gorskif2d10352012-10-28 11:49:53 +0000255 * PCIe clock
256 */
257
258static void pcie_set(struct clk *clk, int enable)
259{
260 bcm_hwclock_set(CKCTL_6328_PCIE_EN, enable);
261}
262
263static struct clk clk_pcie = {
264 .set = pcie_set,
265};
266
267/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100268 * Internal peripheral clock
269 */
270static struct clk clk_periph = {
271 .rate = (50 * 1000 * 1000),
272};
273
274
275/*
276 * Linux clock API implementation
277 */
278int clk_enable(struct clk *clk)
279{
280 mutex_lock(&clocks_mutex);
281 clk_enable_unlocked(clk);
282 mutex_unlock(&clocks_mutex);
283 return 0;
284}
285
286EXPORT_SYMBOL(clk_enable);
287
288void clk_disable(struct clk *clk)
289{
290 mutex_lock(&clocks_mutex);
291 clk_disable_unlocked(clk);
292 mutex_unlock(&clocks_mutex);
293}
294
295EXPORT_SYMBOL(clk_disable);
296
297unsigned long clk_get_rate(struct clk *clk)
298{
299 return clk->rate;
300}
301
302EXPORT_SYMBOL(clk_get_rate);
303
304struct clk *clk_get(struct device *dev, const char *id)
305{
306 if (!strcmp(id, "enet0"))
307 return &clk_enet0;
308 if (!strcmp(id, "enet1"))
309 return &clk_enet1;
Maxime Bizon04712f32011-11-04 19:09:35 +0100310 if (!strcmp(id, "enetsw"))
311 return &clk_enetsw;
Maxime Bizone7300d02009-08-18 13:23:37 +0100312 if (!strcmp(id, "ephy"))
313 return &clk_ephy;
314 if (!strcmp(id, "usbh"))
315 return &clk_usbh;
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000316 if (!strcmp(id, "usbd"))
317 return &clk_usbd;
Maxime Bizone7300d02009-08-18 13:23:37 +0100318 if (!strcmp(id, "spi"))
319 return &clk_spi;
Maxime Bizon04712f32011-11-04 19:09:35 +0100320 if (!strcmp(id, "xtm"))
321 return &clk_xtm;
Maxime Bizone7300d02009-08-18 13:23:37 +0100322 if (!strcmp(id, "periph"))
323 return &clk_periph;
324 if (BCMCPU_IS_6358() && !strcmp(id, "pcm"))
325 return &clk_pcm;
Florian Fainelli0b555612012-07-24 16:33:09 +0200326 if (BCMCPU_IS_6368() && !strcmp(id, "ipsec"))
327 return &clk_ipsec;
Jonas Gorskif2d10352012-10-28 11:49:53 +0000328 if (BCMCPU_IS_6328() && !strcmp(id, "pcie"))
329 return &clk_pcie;
Maxime Bizone7300d02009-08-18 13:23:37 +0100330 return ERR_PTR(-ENOENT);
331}
332
333EXPORT_SYMBOL(clk_get);
334
335void clk_put(struct clk *clk)
336{
337}
338
339EXPORT_SYMBOL(clk_put);