ARM: ux500: remove support for early silicon revisions
[deliverable/linux.git] / arch / arm / mach-ux500 / clock.c
CommitLineData
c6b503ca
SK
1/*
2 * Copyright (C) 2009 ST-Ericsson
1df20afc 3 * Copyright (C) 2009 STMicroelectronics
c6b503ca
SK
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9#include <linux/module.h>
10#include <linux/kernel.h>
11#include <linux/list.h>
12#include <linux/errno.h>
13#include <linux/err.h>
14#include <linux/clk.h>
1df20afc 15#include <linux/io.h>
6d803ba7 16#include <linux/clkdev.h>
ef7a474c 17#include <linux/cpufreq.h>
c6b503ca 18
ba327b1e 19#include <plat/mtu.h>
1df20afc
RV
20#include <mach/hardware.h>
21#include "clock.h"
22
763eef8b
VG
23#ifdef CONFIG_DEBUG_FS
24#include <linux/debugfs.h>
25#include <linux/uaccess.h> /* for copy_from_user */
26static LIST_HEAD(clk_list);
27#endif
28
1df20afc
RV
29#define PRCC_PCKEN 0x00
30#define PRCC_PCKDIS 0x04
31#define PRCC_KCKEN 0x08
32#define PRCC_KCKDIS 0x0C
33
34#define PRCM_YYCLKEN0_MGT_SET 0x510
35#define PRCM_YYCLKEN1_MGT_SET 0x514
36#define PRCM_YYCLKEN0_MGT_CLR 0x518
37#define PRCM_YYCLKEN1_MGT_CLR 0x51C
38#define PRCM_YYCLKEN0_MGT_VAL 0x520
39#define PRCM_YYCLKEN1_MGT_VAL 0x524
40
41#define PRCM_SVAMMDSPCLK_MGT 0x008
42#define PRCM_SIAMMDSPCLK_MGT 0x00C
43#define PRCM_SGACLK_MGT 0x014
44#define PRCM_UARTCLK_MGT 0x018
45#define PRCM_MSP02CLK_MGT 0x01C
46#define PRCM_MSP1CLK_MGT 0x288
47#define PRCM_I2CCLK_MGT 0x020
48#define PRCM_SDMMCCLK_MGT 0x024
49#define PRCM_SLIMCLK_MGT 0x028
50#define PRCM_PER1CLK_MGT 0x02C
51#define PRCM_PER2CLK_MGT 0x030
52#define PRCM_PER3CLK_MGT 0x034
53#define PRCM_PER5CLK_MGT 0x038
54#define PRCM_PER6CLK_MGT 0x03C
55#define PRCM_PER7CLK_MGT 0x040
56#define PRCM_LCDCLK_MGT 0x044
57#define PRCM_BMLCLK_MGT 0x04C
58#define PRCM_HSITXCLK_MGT 0x050
59#define PRCM_HSIRXCLK_MGT 0x054
60#define PRCM_HDMICLK_MGT 0x058
61#define PRCM_APEATCLK_MGT 0x05C
62#define PRCM_APETRACECLK_MGT 0x060
63#define PRCM_MCDECLK_MGT 0x064
64#define PRCM_IPI2CCLK_MGT 0x068
65#define PRCM_DSIALTCLK_MGT 0x06C
66#define PRCM_DMACLK_MGT 0x074
67#define PRCM_B2R2CLK_MGT 0x078
68#define PRCM_TVCLK_MGT 0x07C
ba327b1e
LW
69#define PRCM_TCR 0x1C8
70#define PRCM_TCR_STOPPED (1 << 16)
71#define PRCM_TCR_DOZE_MODE (1 << 17)
1df20afc
RV
72#define PRCM_UNIPROCLK_MGT 0x278
73#define PRCM_SSPCLK_MGT 0x280
74#define PRCM_RNGCLK_MGT 0x284
75#define PRCM_UICCCLK_MGT 0x27C
76
77#define PRCM_MGT_ENABLE (1 << 8)
78
79static DEFINE_SPINLOCK(clocks_lock);
80
81static void __clk_enable(struct clk *clk)
82{
83 if (clk->enabled++ == 0) {
84 if (clk->parent_cluster)
85 __clk_enable(clk->parent_cluster);
86
87 if (clk->parent_periph)
88 __clk_enable(clk->parent_periph);
89
90 if (clk->ops && clk->ops->enable)
91 clk->ops->enable(clk);
92 }
93}
c6b503ca
SK
94
95int clk_enable(struct clk *clk)
96{
1df20afc
RV
97 unsigned long flags;
98
99 spin_lock_irqsave(&clocks_lock, flags);
100 __clk_enable(clk);
101 spin_unlock_irqrestore(&clocks_lock, flags);
102
c6b503ca
SK
103 return 0;
104}
105EXPORT_SYMBOL(clk_enable);
106
1df20afc
RV
107static void __clk_disable(struct clk *clk)
108{
109 if (--clk->enabled == 0) {
110 if (clk->ops && clk->ops->disable)
111 clk->ops->disable(clk);
112
113 if (clk->parent_periph)
114 __clk_disable(clk->parent_periph);
115
116 if (clk->parent_cluster)
117 __clk_disable(clk->parent_cluster);
118 }
119}
120
c6b503ca
SK
121void clk_disable(struct clk *clk)
122{
1df20afc
RV
123 unsigned long flags;
124
125 WARN_ON(!clk->enabled);
126
127 spin_lock_irqsave(&clocks_lock, flags);
128 __clk_disable(clk);
129 spin_unlock_irqrestore(&clocks_lock, flags);
c6b503ca
SK
130}
131EXPORT_SYMBOL(clk_disable);
132
ba327b1e
LW
133/*
134 * The MTU has a separate, rather complex muxing setup
135 * with alternative parents (peripheral cluster or
136 * ULP or fixed 32768 Hz) depending on settings
137 */
138static unsigned long clk_mtu_get_rate(struct clk *clk)
139{
92389ca8 140 void __iomem *addr;
f306954c 141 u32 tcr;
ba327b1e
LW
142 int mtu = (int) clk->data;
143 /*
144 * One of these is selected eventually
145 * TODO: Replace the constant with a reference
146 * to the ULP source once this is modeled.
147 */
148 unsigned long clk32k = 32768;
149 unsigned long mturate;
150 unsigned long retclk;
151
92389ca8
RV
152 if (cpu_is_u5500())
153 addr = __io_address(U5500_PRCMU_BASE);
154 else if (cpu_is_u8500())
155 addr = __io_address(U8500_PRCMU_BASE);
156 else
157 ux500_unknown_soc();
158
f306954c
SI
159 /*
160 * On a startup, always conifgure the TCR to the doze mode;
161 * bootloaders do it for us. Do this in the kernel too.
162 */
92389ca8 163 writel(PRCM_TCR_DOZE_MODE, addr + PRCM_TCR);
f306954c 164
92389ca8 165 tcr = readl(addr + PRCM_TCR);
f306954c 166
ba327b1e
LW
167 /* Get the rate from the parent as a default */
168 if (clk->parent_periph)
169 mturate = clk_get_rate(clk->parent_periph);
170 else if (clk->parent_cluster)
171 mturate = clk_get_rate(clk->parent_cluster);
172 else
173 /* We need to be connected SOMEWHERE */
174 BUG();
175
ba327b1e
LW
176 /* Return the clock selected for this MTU */
177 if (tcr & (1 << mtu))
178 retclk = clk32k;
179 else
180 retclk = mturate;
181
182 pr_info("MTU%d clock rate: %lu Hz\n", mtu, retclk);
183 return retclk;
184}
185
c6b503ca
SK
186unsigned long clk_get_rate(struct clk *clk)
187{
1df20afc
RV
188 unsigned long rate;
189
ba327b1e
LW
190 /*
191 * If there is a custom getrate callback for this clock,
192 * it will take precedence.
193 */
194 if (clk->get_rate)
195 return clk->get_rate(clk);
196
1df20afc
RV
197 if (clk->ops && clk->ops->get_rate)
198 return clk->ops->get_rate(clk);
199
200 rate = clk->rate;
201 if (!rate) {
202 if (clk->parent_periph)
203 rate = clk_get_rate(clk->parent_periph);
204 else if (clk->parent_cluster)
205 rate = clk_get_rate(clk->parent_cluster);
206 }
207
208 return rate;
c6b503ca
SK
209}
210EXPORT_SYMBOL(clk_get_rate);
211
212long clk_round_rate(struct clk *clk, unsigned long rate)
213{
214 /*TODO*/
215 return rate;
216}
217EXPORT_SYMBOL(clk_round_rate);
218
219int clk_set_rate(struct clk *clk, unsigned long rate)
220{
221 clk->rate = rate;
222 return 0;
223}
224EXPORT_SYMBOL(clk_set_rate);
225
1df20afc
RV
226static void clk_prcmu_enable(struct clk *clk)
227{
228 void __iomem *cg_set_reg = __io_address(U8500_PRCMU_BASE)
229 + PRCM_YYCLKEN0_MGT_SET + clk->prcmu_cg_off;
230
231 writel(1 << clk->prcmu_cg_bit, cg_set_reg);
232}
233
234static void clk_prcmu_disable(struct clk *clk)
235{
236 void __iomem *cg_clr_reg = __io_address(U8500_PRCMU_BASE)
237 + PRCM_YYCLKEN0_MGT_CLR + clk->prcmu_cg_off;
238
239 writel(1 << clk->prcmu_cg_bit, cg_clr_reg);
240}
241
1df20afc
RV
242static struct clkops clk_prcmu_ops = {
243 .enable = clk_prcmu_enable,
244 .disable = clk_prcmu_disable,
c6b503ca
SK
245};
246
1df20afc
RV
247static unsigned int clkrst_base[] = {
248 [1] = U8500_CLKRST1_BASE,
249 [2] = U8500_CLKRST2_BASE,
250 [3] = U8500_CLKRST3_BASE,
251 [5] = U8500_CLKRST5_BASE,
252 [6] = U8500_CLKRST6_BASE,
c6b503ca
SK
253};
254
1df20afc
RV
255static void clk_prcc_enable(struct clk *clk)
256{
257 void __iomem *addr = __io_address(clkrst_base[clk->cluster]);
258
259 if (clk->prcc_kernel != -1)
260 writel(1 << clk->prcc_kernel, addr + PRCC_KCKEN);
261
262 if (clk->prcc_bus != -1)
263 writel(1 << clk->prcc_bus, addr + PRCC_PCKEN);
264}
265
266static void clk_prcc_disable(struct clk *clk)
267{
268 void __iomem *addr = __io_address(clkrst_base[clk->cluster]);
269
270 if (clk->prcc_bus != -1)
271 writel(1 << clk->prcc_bus, addr + PRCC_PCKDIS);
272
273 if (clk->prcc_kernel != -1)
274 writel(1 << clk->prcc_kernel, addr + PRCC_KCKDIS);
275}
276
277static struct clkops clk_prcc_ops = {
278 .enable = clk_prcc_enable,
279 .disable = clk_prcc_disable,
280};
281
282static struct clk clk_32khz = {
763eef8b 283 .name = "clk_32khz",
1df20afc
RV
284 .rate = 32000,
285};
286
287/*
288 * PRCMU level clock gating
289 */
290
291/* Bank 0 */
292static DEFINE_PRCMU_CLK(svaclk, 0x0, 2, SVAMMDSPCLK);
293static DEFINE_PRCMU_CLK(siaclk, 0x0, 3, SIAMMDSPCLK);
294static DEFINE_PRCMU_CLK(sgaclk, 0x0, 4, SGACLK);
295static DEFINE_PRCMU_CLK_RATE(uartclk, 0x0, 5, UARTCLK, 38400000);
296static DEFINE_PRCMU_CLK(msp02clk, 0x0, 6, MSP02CLK);
297static DEFINE_PRCMU_CLK(msp1clk, 0x0, 7, MSP1CLK); /* v1 */
298static DEFINE_PRCMU_CLK_RATE(i2cclk, 0x0, 8, I2CCLK, 48000000);
fbdc6d11 299static DEFINE_PRCMU_CLK_RATE(sdmmcclk, 0x0, 9, SDMMCCLK, 100000000);
1df20afc
RV
300static DEFINE_PRCMU_CLK(slimclk, 0x0, 10, SLIMCLK);
301static DEFINE_PRCMU_CLK(per1clk, 0x0, 11, PER1CLK);
302static DEFINE_PRCMU_CLK(per2clk, 0x0, 12, PER2CLK);
303static DEFINE_PRCMU_CLK(per3clk, 0x0, 13, PER3CLK);
304static DEFINE_PRCMU_CLK(per5clk, 0x0, 14, PER5CLK);
305static DEFINE_PRCMU_CLK_RATE(per6clk, 0x0, 15, PER6CLK, 133330000);
1df20afc
RV
306static DEFINE_PRCMU_CLK(lcdclk, 0x0, 17, LCDCLK);
307static DEFINE_PRCMU_CLK(bmlclk, 0x0, 18, BMLCLK);
308static DEFINE_PRCMU_CLK(hsitxclk, 0x0, 19, HSITXCLK);
309static DEFINE_PRCMU_CLK(hsirxclk, 0x0, 20, HSIRXCLK);
310static DEFINE_PRCMU_CLK(hdmiclk, 0x0, 21, HDMICLK);
311static DEFINE_PRCMU_CLK(apeatclk, 0x0, 22, APEATCLK);
312static DEFINE_PRCMU_CLK(apetraceclk, 0x0, 23, APETRACECLK);
313static DEFINE_PRCMU_CLK(mcdeclk, 0x0, 24, MCDECLK);
314static DEFINE_PRCMU_CLK(ipi2clk, 0x0, 25, IPI2CCLK);
315static DEFINE_PRCMU_CLK(dsialtclk, 0x0, 26, DSIALTCLK); /* v1 */
316static DEFINE_PRCMU_CLK(dmaclk, 0x0, 27, DMACLK);
317static DEFINE_PRCMU_CLK(b2r2clk, 0x0, 28, B2R2CLK);
318static DEFINE_PRCMU_CLK(tvclk, 0x0, 29, TVCLK);
319static DEFINE_PRCMU_CLK(uniproclk, 0x0, 30, UNIPROCLK); /* v1 */
320static DEFINE_PRCMU_CLK_RATE(sspclk, 0x0, 31, SSPCLK, 48000000); /* v1 */
321
322/* Bank 1 */
323static DEFINE_PRCMU_CLK(rngclk, 0x4, 0, RNGCLK); /* v1 */
324static DEFINE_PRCMU_CLK(uiccclk, 0x4, 1, UICCCLK); /* v1 */
325
326/*
327 * PRCC level clock gating
328 * Format: per#, clk, PCKEN bit, KCKEN bit, parent
329 */
330
331/* Peripheral Cluster #1 */
592b2f25 332static DEFINE_PRCC_CLK(1, i2c4, 10, 9, &clk_i2cclk);
1df20afc 333static DEFINE_PRCC_CLK(1, gpio0, 9, -1, NULL);
592b2f25 334static DEFINE_PRCC_CLK(1, slimbus0, 8, 8, &clk_slimclk);
c15def1c 335static DEFINE_PRCC_CLK(1, spi3, 7, -1, NULL);
592b2f25 336static DEFINE_PRCC_CLK(1, i2c2, 6, 6, &clk_i2cclk);
1df20afc 337static DEFINE_PRCC_CLK(1, sdi0, 5, 5, &clk_sdmmcclk);
c15def1c 338static DEFINE_PRCC_CLK(1, msp1, 4, 4, &clk_msp1clk);
592b2f25
SI
339static DEFINE_PRCC_CLK(1, msp0, 3, 3, &clk_msp02clk);
340static DEFINE_PRCC_CLK(1, i2c1, 2, 2, &clk_i2cclk);
341static DEFINE_PRCC_CLK(1, uart1, 1, 1, &clk_uartclk);
342static DEFINE_PRCC_CLK(1, uart0, 0, 0, &clk_uartclk);
1df20afc
RV
343
344/* Peripheral Cluster #2 */
c15def1c
LW
345static DEFINE_PRCC_CLK(2, gpio1, 11, -1, NULL);
346static DEFINE_PRCC_CLK(2, ssitx, 10, 7, NULL);
347static DEFINE_PRCC_CLK(2, ssirx, 9, 6, NULL);
348static DEFINE_PRCC_CLK(2, spi0, 8, -1, NULL);
349static DEFINE_PRCC_CLK(2, sdi3, 7, 5, &clk_sdmmcclk);
350static DEFINE_PRCC_CLK(2, sdi1, 6, 4, &clk_sdmmcclk);
351static DEFINE_PRCC_CLK(2, msp2, 5, 3, &clk_msp02clk);
352static DEFINE_PRCC_CLK(2, sdi4, 4, 2, &clk_sdmmcclk);
353static DEFINE_PRCC_CLK(2, pwl, 3, 1, NULL);
354static DEFINE_PRCC_CLK(2, spi1, 2, -1, NULL);
355static DEFINE_PRCC_CLK(2, spi2, 1, -1, NULL);
356static DEFINE_PRCC_CLK(2, i2c3, 0, 0, &clk_i2cclk);
1df20afc
RV
357
358/* Peripheral Cluster #3 */
592b2f25
SI
359static DEFINE_PRCC_CLK(3, gpio2, 8, -1, NULL);
360static DEFINE_PRCC_CLK(3, sdi5, 7, 7, &clk_sdmmcclk);
361static DEFINE_PRCC_CLK(3, uart2, 6, 6, &clk_uartclk);
362static DEFINE_PRCC_CLK(3, ske, 5, 5, &clk_32khz);
363static DEFINE_PRCC_CLK(3, sdi2, 4, 4, &clk_sdmmcclk);
364static DEFINE_PRCC_CLK(3, i2c0, 3, 3, &clk_i2cclk);
c15def1c
LW
365static DEFINE_PRCC_CLK(3, ssp1, 2, 2, &clk_sspclk);
366static DEFINE_PRCC_CLK(3, ssp0, 1, 1, &clk_sspclk);
592b2f25 367static DEFINE_PRCC_CLK(3, fsmc, 0, -1, NULL);
1df20afc
RV
368
369/* Peripheral Cluster #4 is in the always on domain */
370
371/* Peripheral Cluster #5 */
592b2f25 372static DEFINE_PRCC_CLK(5, gpio3, 1, -1, NULL);
c15def1c 373static DEFINE_PRCC_CLK(5, usb, 0, 0, NULL);
1df20afc
RV
374
375/* Peripheral Cluster #6 */
376
ba327b1e 377/* MTU ID in data */
c15def1c
LW
378static DEFINE_PRCC_CLK_CUSTOM(6, mtu1, 8, -1, NULL, clk_mtu_get_rate, 1);
379static DEFINE_PRCC_CLK_CUSTOM(6, mtu0, 7, -1, NULL, clk_mtu_get_rate, 0);
380static DEFINE_PRCC_CLK(6, cfgreg, 6, 6, NULL);
592b2f25 381static DEFINE_PRCC_CLK(6, hash1, 5, -1, NULL);
c15def1c 382static DEFINE_PRCC_CLK(6, unipro, 4, 1, &clk_uniproclk);
592b2f25
SI
383static DEFINE_PRCC_CLK(6, pka, 3, -1, NULL);
384static DEFINE_PRCC_CLK(6, hash0, 2, -1, NULL);
385static DEFINE_PRCC_CLK(6, cryp0, 1, -1, NULL);
c15def1c 386static DEFINE_PRCC_CLK(6, rng, 0, 0, &clk_rngclk);
1df20afc 387
763eef8b
VG
388static struct clk clk_dummy_apb_pclk = {
389 .name = "apb_pclk",
390};
3126c7bc 391
c15def1c 392static struct clk_lookup u8500_clks[] = {
3126c7bc
RK
393 CLK(dummy_apb_pclk, NULL, "apb_pclk"),
394
1df20afc 395 /* Peripheral Cluster #1 */
af7dc228
RV
396 CLK(gpio0, "gpio.0", NULL),
397 CLK(gpio0, "gpio.1", NULL),
1df20afc
RV
398 CLK(slimbus0, "slimbus0", NULL),
399 CLK(i2c2, "nmk-i2c.2", NULL),
400 CLK(sdi0, "sdi0", NULL),
401 CLK(msp0, "msp0", NULL),
402 CLK(i2c1, "nmk-i2c.1", NULL),
403 CLK(uart1, "uart1", NULL),
404 CLK(uart0, "uart0", NULL),
405
406 /* Peripheral Cluster #3 */
af7dc228
RV
407 CLK(gpio2, "gpio.2", NULL),
408 CLK(gpio2, "gpio.3", NULL),
409 CLK(gpio2, "gpio.4", NULL),
410 CLK(gpio2, "gpio.5", NULL),
1df20afc
RV
411 CLK(sdi5, "sdi5", NULL),
412 CLK(uart2, "uart2", NULL),
413 CLK(ske, "ske", NULL),
4c61c845 414 CLK(ske, "nmk-ske-keypad", NULL),
1df20afc
RV
415 CLK(sdi2, "sdi2", NULL),
416 CLK(i2c0, "nmk-i2c.0", NULL),
417 CLK(fsmc, "fsmc", NULL),
418
419 /* Peripheral Cluster #5 */
af7dc228 420 CLK(gpio3, "gpio.8", NULL),
1df20afc
RV
421
422 /* Peripheral Cluster #6 */
423 CLK(hash1, "hash1", NULL),
424 CLK(pka, "pka", NULL),
425 CLK(hash0, "hash0", NULL),
426 CLK(cryp0, "cryp0", NULL),
427
428 /* PRCMU level clock gating */
429
430 /* Bank 0 */
431 CLK(svaclk, "sva", NULL),
432 CLK(siaclk, "sia", NULL),
433 CLK(sgaclk, "sga", NULL),
434 CLK(slimclk, "slim", NULL),
435 CLK(lcdclk, "lcd", NULL),
436 CLK(bmlclk, "bml", NULL),
437 CLK(hsitxclk, "stm-hsi.0", NULL),
438 CLK(hsirxclk, "stm-hsi.1", NULL),
439 CLK(hdmiclk, "hdmi", NULL),
440 CLK(apeatclk, "apeat", NULL),
441 CLK(apetraceclk, "apetrace", NULL),
442 CLK(mcdeclk, "mcde", NULL),
443 CLK(ipi2clk, "ipi2", NULL),
7b8ddb06 444 CLK(dmaclk, "dma40.0", NULL),
1df20afc
RV
445 CLK(b2r2clk, "b2r2", NULL),
446 CLK(tvclk, "tv", NULL),
1df20afc 447
1df20afc 448 /* Peripheral Cluster #1 */
592b2f25 449 CLK(i2c4, "nmk-i2c.4", NULL),
c15def1c
LW
450 CLK(spi3, "spi3", NULL),
451 CLK(msp1, "msp1", NULL),
1df20afc
RV
452
453 /* Peripheral Cluster #2 */
c15def1c
LW
454 CLK(gpio1, "gpio.6", NULL),
455 CLK(gpio1, "gpio.7", NULL),
456 CLK(ssitx, "ssitx", NULL),
457 CLK(ssirx, "ssirx", NULL),
458 CLK(spi0, "spi0", NULL),
459 CLK(sdi3, "sdi3", NULL),
460 CLK(sdi1, "sdi1", NULL),
461 CLK(msp2, "msp2", NULL),
462 CLK(sdi4, "sdi4", NULL),
463 CLK(pwl, "pwl", NULL),
464 CLK(spi1, "spi1", NULL),
465 CLK(spi2, "spi2", NULL),
466 CLK(i2c3, "nmk-i2c.3", NULL),
1df20afc
RV
467
468 /* Peripheral Cluster #3 */
c15def1c
LW
469 CLK(ssp1, "ssp1", NULL),
470 CLK(ssp0, "ssp0", NULL),
1df20afc
RV
471
472 /* Peripheral Cluster #5 */
c15def1c 473 CLK(usb, "musb-ux500.0", "usb"),
1df20afc
RV
474
475 /* Peripheral Cluster #6 */
c15def1c
LW
476 CLK(mtu1, "mtu1", NULL),
477 CLK(mtu0, "mtu0", NULL),
478 CLK(cfgreg, "cfgreg", NULL),
1df20afc 479 CLK(hash1, "hash1", NULL),
c15def1c
LW
480 CLK(unipro, "unipro", NULL),
481 CLK(rng, "rng", NULL),
1df20afc
RV
482
483 /* PRCMU level clock gating */
484
485 /* Bank 0 */
486 CLK(uniproclk, "uniproclk", NULL),
487 CLK(dsialtclk, "dsialt", NULL),
488
489 /* Bank 1 */
490 CLK(rngclk, "rng", NULL),
491 CLK(uiccclk, "uicc", NULL),
c6b503ca
SK
492};
493
763eef8b
VG
494#ifdef CONFIG_DEBUG_FS
495/*
496 * debugfs support to trace clock tree hierarchy and attributes with
497 * powerdebug
498 */
499static struct dentry *clk_debugfs_root;
500
501void __init clk_debugfs_add_table(struct clk_lookup *cl, size_t num)
502{
503 while (num--) {
504 /* Check that the clock has not been already registered */
505 if (!(cl->clk->list.prev != cl->clk->list.next))
506 list_add_tail(&cl->clk->list, &clk_list);
507
508 cl++;
509 }
510}
511
512static ssize_t usecount_dbg_read(struct file *file, char __user *buf,
513 size_t size, loff_t *off)
514{
515 struct clk *clk = file->f_dentry->d_inode->i_private;
516 char cusecount[128];
517 unsigned int len;
518
519 len = sprintf(cusecount, "%u\n", clk->enabled);
520 return simple_read_from_buffer(buf, size, off, cusecount, len);
521}
522
523static ssize_t rate_dbg_read(struct file *file, char __user *buf,
524 size_t size, loff_t *off)
525{
526 struct clk *clk = file->f_dentry->d_inode->i_private;
527 char crate[128];
528 unsigned int rate;
529 unsigned int len;
530
531 rate = clk_get_rate(clk);
532 len = sprintf(crate, "%u\n", rate);
533 return simple_read_from_buffer(buf, size, off, crate, len);
534}
535
536static const struct file_operations usecount_fops = {
537 .read = usecount_dbg_read,
538};
539
540static const struct file_operations set_rate_fops = {
541 .read = rate_dbg_read,
542};
543
544static struct dentry *clk_debugfs_register_dir(struct clk *c,
545 struct dentry *p_dentry)
546{
12520c43 547 struct dentry *d, *clk_d;
c066b65a 548 const char *p = c->name;
763eef8b 549
c066b65a
AV
550 if (!p)
551 p = "BUG";
763eef8b 552
c066b65a 553 clk_d = debugfs_create_dir(p, p_dentry);
763eef8b
VG
554 if (!clk_d)
555 return NULL;
556
557 d = debugfs_create_file("usecount", S_IRUGO,
558 clk_d, c, &usecount_fops);
559 if (!d)
560 goto err_out;
561 d = debugfs_create_file("rate", S_IRUGO,
562 clk_d, c, &set_rate_fops);
563 if (!d)
564 goto err_out;
565 /*
566 * TODO : not currently available in ux500
567 * d = debugfs_create_x32("flags", S_IRUGO, clk_d, (u32 *)&c->flags);
568 * if (!d)
569 * goto err_out;
570 */
571
572 return clk_d;
573
574err_out:
12520c43 575 debugfs_remove_recursive(clk_d);
763eef8b
VG
576 return NULL;
577}
578
763eef8b
VG
579static int clk_debugfs_register_one(struct clk *c)
580{
581 struct clk *pa = c->parent_periph;
582 struct clk *bpa = c->parent_cluster;
583
584 if (!(bpa && !pa)) {
585 c->dent = clk_debugfs_register_dir(c,
586 pa ? pa->dent : clk_debugfs_root);
587 if (!c->dent)
588 return -ENOMEM;
589 }
590
591 if (bpa) {
592 c->dent_bus = clk_debugfs_register_dir(c,
593 bpa->dent_bus ? bpa->dent_bus : bpa->dent);
594 if ((!c->dent_bus) && (c->dent)) {
12520c43 595 debugfs_remove_recursive(c->dent);
763eef8b
VG
596 c->dent = NULL;
597 return -ENOMEM;
598 }
599 }
600 return 0;
601}
602
603static int clk_debugfs_register(struct clk *c)
604{
605 int err;
606 struct clk *pa = c->parent_periph;
607 struct clk *bpa = c->parent_cluster;
608
609 if (pa && (!pa->dent && !pa->dent_bus)) {
610 err = clk_debugfs_register(pa);
611 if (err)
612 return err;
613 }
614
615 if (bpa && (!bpa->dent && !bpa->dent_bus)) {
616 err = clk_debugfs_register(bpa);
617 if (err)
618 return err;
619 }
620
621 if ((!c->dent) && (!c->dent_bus)) {
622 err = clk_debugfs_register_one(c);
623 if (err)
624 return err;
625 }
626 return 0;
627}
628
629static int __init clk_debugfs_init(void)
630{
631 struct clk *c;
632 struct dentry *d;
633 int err;
634
635 d = debugfs_create_dir("clock", NULL);
636 if (!d)
637 return -ENOMEM;
638 clk_debugfs_root = d;
639
640 list_for_each_entry(c, &clk_list, list) {
641 err = clk_debugfs_register(c);
642 if (err)
643 goto err_out;
644 }
645 return 0;
646err_out:
647 debugfs_remove_recursive(clk_debugfs_root);
648 return err;
649}
650
651late_initcall(clk_debugfs_init);
652#endif /* defined(CONFIG_DEBUG_FS) */
653
ef7a474c
LW
654unsigned long clk_smp_twd_rate = 400000000;
655
656unsigned long clk_smp_twd_get_rate(struct clk *clk)
657{
658 return clk_smp_twd_rate;
659}
660
661static struct clk clk_smp_twd = {
662 .get_rate = clk_smp_twd_get_rate,
663 .name = "smp_twd",
664};
665
666static struct clk_lookup clk_smp_twd_lookup = {
667 .dev_id = "smp_twd",
668 .clk = &clk_smp_twd,
669};
670
671#ifdef CONFIG_CPU_FREQ
672
673static int clk_twd_cpufreq_transition(struct notifier_block *nb,
674 unsigned long state, void *data)
675{
676 struct cpufreq_freqs *f = data;
677
678 if (state == CPUFREQ_PRECHANGE) {
679 /* Save frequency in simple Hz */
680 clk_smp_twd_rate = f->new * 1000;
681 }
682
683 return NOTIFY_OK;
684}
685
686static struct notifier_block clk_twd_cpufreq_nb = {
687 .notifier_call = clk_twd_cpufreq_transition,
688};
689
690static int clk_init_smp_twd_cpufreq(void)
691{
692 return cpufreq_register_notifier(&clk_twd_cpufreq_nb,
693 CPUFREQ_TRANSITION_NOTIFIER);
694}
695late_initcall(clk_init_smp_twd_cpufreq);
696
697#endif
698
ba327b1e 699int __init clk_init(void)
c6b503ca 700{
c15def1c 701 if (cpu_is_u5500()) {
591d8dd7
RV
702 /* Clock tree for U5500 not implemented yet */
703 clk_prcc_ops.enable = clk_prcc_ops.disable = NULL;
704 clk_prcmu_ops.enable = clk_prcmu_ops.disable = NULL;
bab263e0
PF
705 clk_uartclk.rate = 36360000;
706 clk_sdmmcclk.rate = 99900000;
1df20afc
RV
707 }
708
c15def1c 709 clkdev_add_table(u8500_clks, ARRAY_SIZE(u8500_clks));
ef7a474c
LW
710 clkdev_add(&clk_smp_twd_lookup);
711
763eef8b 712#ifdef CONFIG_DEBUG_FS
c15def1c 713 clk_debugfs_add_table(u8500_clks, ARRAY_SIZE(u8500_clks));
763eef8b 714#endif
c6b503ca
SK
715 return 0;
716}
This page took 0.236391 seconds and 5 git commands to generate.