blob: b9e948d594300281cc4199c3a89e5756630e111d [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>
Maxime Bizone7300d02009-08-18 13:23:37 +010018#include <bcm63xx_clk.h>
19
20static DEFINE_MUTEX(clocks_mutex);
21
22
23static void clk_enable_unlocked(struct clk *clk)
24{
25 if (clk->set && (clk->usage++) == 0)
26 clk->set(clk, 1);
27}
28
29static void clk_disable_unlocked(struct clk *clk)
30{
31 if (clk->set && (--clk->usage) == 0)
32 clk->set(clk, 0);
33}
34
35static void bcm_hwclock_set(u32 mask, int enable)
36{
37 u32 reg;
38
39 reg = bcm_perf_readl(PERF_CKCTL_REG);
40 if (enable)
41 reg |= mask;
42 else
43 reg &= ~mask;
44 bcm_perf_writel(reg, PERF_CKCTL_REG);
45}
46
47/*
48 * Ethernet MAC "misc" clock: dma clocks and main clock on 6348
49 */
50static void enet_misc_set(struct clk *clk, int enable)
51{
52 u32 mask;
53
54 if (BCMCPU_IS_6338())
55 mask = CKCTL_6338_ENET_EN;
56 else if (BCMCPU_IS_6345())
57 mask = CKCTL_6345_ENET_EN;
58 else if (BCMCPU_IS_6348())
59 mask = CKCTL_6348_ENET_EN;
60 else
61 /* BCMCPU_IS_6358 */
62 mask = CKCTL_6358_EMUSB_EN;
63 bcm_hwclock_set(mask, enable);
64}
65
66static struct clk clk_enet_misc = {
67 .set = enet_misc_set,
68};
69
70/*
71 * Ethernet MAC clocks: only revelant on 6358, silently enable misc
72 * clocks
73 */
74static void enetx_set(struct clk *clk, int enable)
75{
76 if (enable)
77 clk_enable_unlocked(&clk_enet_misc);
78 else
79 clk_disable_unlocked(&clk_enet_misc);
80
81 if (BCMCPU_IS_6358()) {
82 u32 mask;
83
84 if (clk->id == 0)
85 mask = CKCTL_6358_ENET0_EN;
86 else
87 mask = CKCTL_6358_ENET1_EN;
88 bcm_hwclock_set(mask, enable);
89 }
90}
91
92static struct clk clk_enet0 = {
93 .id = 0,
94 .set = enetx_set,
95};
96
97static struct clk clk_enet1 = {
98 .id = 1,
99 .set = enetx_set,
100};
101
102/*
103 * Ethernet PHY clock
104 */
105static void ephy_set(struct clk *clk, int enable)
106{
107 if (!BCMCPU_IS_6358())
108 return;
109 bcm_hwclock_set(CKCTL_6358_EPHY_EN, enable);
110}
111
112
113static struct clk clk_ephy = {
114 .set = ephy_set,
115};
116
117/*
Maxime Bizon04712f32011-11-04 19:09:35 +0100118 * Ethernet switch clock
119 */
120static void enetsw_set(struct clk *clk, int enable)
121{
122 if (!BCMCPU_IS_6368())
123 return;
Florian Fainellid9831a42012-07-04 16:57:09 +0200124 bcm_hwclock_set(CKCTL_6368_ROBOSW_EN |
Maxime Bizon04712f32011-11-04 19:09:35 +0100125 CKCTL_6368_SWPKT_USB_EN |
126 CKCTL_6368_SWPKT_SAR_EN, enable);
127 if (enable) {
Maxime Bizon04712f32011-11-04 19:09:35 +0100128 /* reset switch core afer clock change */
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000129 bcm63xx_core_set_reset(BCM63XX_RESET_ENETSW, 1);
Maxime Bizon04712f32011-11-04 19:09:35 +0100130 msleep(10);
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000131 bcm63xx_core_set_reset(BCM63XX_RESET_ENETSW, 0);
Maxime Bizon04712f32011-11-04 19:09:35 +0100132 msleep(10);
133 }
134}
135
136static struct clk clk_enetsw = {
137 .set = enetsw_set,
138};
139
140/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100141 * PCM clock
142 */
143static void pcm_set(struct clk *clk, int enable)
144{
145 if (!BCMCPU_IS_6358())
146 return;
147 bcm_hwclock_set(CKCTL_6358_PCM_EN, enable);
148}
149
150static struct clk clk_pcm = {
151 .set = pcm_set,
152};
153
154/*
155 * USB host clock
156 */
157static void usbh_set(struct clk *clk, int enable)
158{
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000159 if (BCMCPU_IS_6328())
160 bcm_hwclock_set(CKCTL_6328_USBH_EN, enable);
161 else if (BCMCPU_IS_6348())
Maxime Bizon04712f32011-11-04 19:09:35 +0100162 bcm_hwclock_set(CKCTL_6348_USBH_EN, enable);
163 else if (BCMCPU_IS_6368())
Florian Fainellid9831a42012-07-04 16:57:09 +0200164 bcm_hwclock_set(CKCTL_6368_USBH_EN, enable);
Maxime Bizone7300d02009-08-18 13:23:37 +0100165}
166
167static struct clk clk_usbh = {
168 .set = usbh_set,
169};
170
171/*
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000172 * USB device clock
173 */
174static void usbd_set(struct clk *clk, int enable)
175{
176 if (BCMCPU_IS_6328())
177 bcm_hwclock_set(CKCTL_6328_USBD_EN, enable);
178 else if (BCMCPU_IS_6368())
179 bcm_hwclock_set(CKCTL_6368_USBD_EN, enable);
180}
181
182static struct clk clk_usbd = {
183 .set = usbd_set,
184};
185
186/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100187 * SPI clock
188 */
189static void spi_set(struct clk *clk, int enable)
190{
191 u32 mask;
192
193 if (BCMCPU_IS_6338())
194 mask = CKCTL_6338_SPI_EN;
195 else if (BCMCPU_IS_6348())
196 mask = CKCTL_6348_SPI_EN;
Florian Fainelli19372b22012-07-04 16:58:30 +0200197 else if (BCMCPU_IS_6358())
Maxime Bizone7300d02009-08-18 13:23:37 +0100198 mask = CKCTL_6358_SPI_EN;
Florian Fainelli19372b22012-07-04 16:58:30 +0200199 else
200 /* BCMCPU_IS_6368 */
201 mask = CKCTL_6368_SPI_EN;
Maxime Bizone7300d02009-08-18 13:23:37 +0100202 bcm_hwclock_set(mask, enable);
203}
204
205static struct clk clk_spi = {
206 .set = spi_set,
207};
208
209/*
Maxime Bizon04712f32011-11-04 19:09:35 +0100210 * XTM clock
211 */
212static void xtm_set(struct clk *clk, int enable)
213{
214 if (!BCMCPU_IS_6368())
215 return;
216
Florian Fainellid9831a42012-07-04 16:57:09 +0200217 bcm_hwclock_set(CKCTL_6368_SAR_EN |
Maxime Bizon04712f32011-11-04 19:09:35 +0100218 CKCTL_6368_SWPKT_SAR_EN, enable);
219
220 if (enable) {
Maxime Bizon04712f32011-11-04 19:09:35 +0100221 /* reset sar core afer clock change */
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000222 bcm63xx_core_set_reset(BCM63XX_RESET_SAR, 1);
Maxime Bizon04712f32011-11-04 19:09:35 +0100223 mdelay(1);
Jonas Gorskiba00e2e2012-10-28 12:17:55 +0000224 bcm63xx_core_set_reset(BCM63XX_RESET_SAR, 0);
Maxime Bizon04712f32011-11-04 19:09:35 +0100225 mdelay(1);
226 }
227}
228
229
230static struct clk clk_xtm = {
231 .set = xtm_set,
232};
233
234/*
Florian Fainelli0b555612012-07-24 16:33:09 +0200235 * IPsec clock
236 */
237static void ipsec_set(struct clk *clk, int enable)
238{
239 bcm_hwclock_set(CKCTL_6368_IPSEC_EN, enable);
240}
241
242static struct clk clk_ipsec = {
243 .set = ipsec_set,
244};
245
246/*
Jonas Gorskif2d10352012-10-28 11:49:53 +0000247 * PCIe clock
248 */
249
250static void pcie_set(struct clk *clk, int enable)
251{
252 bcm_hwclock_set(CKCTL_6328_PCIE_EN, enable);
253}
254
255static struct clk clk_pcie = {
256 .set = pcie_set,
257};
258
259/*
Maxime Bizone7300d02009-08-18 13:23:37 +0100260 * Internal peripheral clock
261 */
262static struct clk clk_periph = {
263 .rate = (50 * 1000 * 1000),
264};
265
266
267/*
268 * Linux clock API implementation
269 */
270int clk_enable(struct clk *clk)
271{
272 mutex_lock(&clocks_mutex);
273 clk_enable_unlocked(clk);
274 mutex_unlock(&clocks_mutex);
275 return 0;
276}
277
278EXPORT_SYMBOL(clk_enable);
279
280void clk_disable(struct clk *clk)
281{
282 mutex_lock(&clocks_mutex);
283 clk_disable_unlocked(clk);
284 mutex_unlock(&clocks_mutex);
285}
286
287EXPORT_SYMBOL(clk_disable);
288
289unsigned long clk_get_rate(struct clk *clk)
290{
291 return clk->rate;
292}
293
294EXPORT_SYMBOL(clk_get_rate);
295
296struct clk *clk_get(struct device *dev, const char *id)
297{
298 if (!strcmp(id, "enet0"))
299 return &clk_enet0;
300 if (!strcmp(id, "enet1"))
301 return &clk_enet1;
Maxime Bizon04712f32011-11-04 19:09:35 +0100302 if (!strcmp(id, "enetsw"))
303 return &clk_enetsw;
Maxime Bizone7300d02009-08-18 13:23:37 +0100304 if (!strcmp(id, "ephy"))
305 return &clk_ephy;
306 if (!strcmp(id, "usbh"))
307 return &clk_usbh;
Kevin Cernekeedd89d602012-06-23 04:14:51 +0000308 if (!strcmp(id, "usbd"))
309 return &clk_usbd;
Maxime Bizone7300d02009-08-18 13:23:37 +0100310 if (!strcmp(id, "spi"))
311 return &clk_spi;
Maxime Bizon04712f32011-11-04 19:09:35 +0100312 if (!strcmp(id, "xtm"))
313 return &clk_xtm;
Maxime Bizone7300d02009-08-18 13:23:37 +0100314 if (!strcmp(id, "periph"))
315 return &clk_periph;
316 if (BCMCPU_IS_6358() && !strcmp(id, "pcm"))
317 return &clk_pcm;
Florian Fainelli0b555612012-07-24 16:33:09 +0200318 if (BCMCPU_IS_6368() && !strcmp(id, "ipsec"))
319 return &clk_ipsec;
Jonas Gorskif2d10352012-10-28 11:49:53 +0000320 if (BCMCPU_IS_6328() && !strcmp(id, "pcie"))
321 return &clk_pcie;
Maxime Bizone7300d02009-08-18 13:23:37 +0100322 return ERR_PTR(-ENOENT);
323}
324
325EXPORT_SYMBOL(clk_get);
326
327void clk_put(struct clk *clk)
328{
329}
330
331EXPORT_SYMBOL(clk_put);