dd122d981752c2a4a637e09b540be0015d4c9923
[cascardo/linux.git] / arch / arm / mach-pxa / clock-pxa3xx.c
1 /*
2  * linux/arch/arm/mach-pxa/clock-pxa3xx.c
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  */
8
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12
13 #include <mach/pxa3xx-regs.h>
14
15 #include "clock.h"
16
17 /* Crystal clock: 13MHz */
18 #define BASE_CLK        13000000
19
20 /* Ring Oscillator Clock: 60MHz */
21 #define RO_CLK          60000000
22
23 #define ACCR_D0CS       (1 << 26)
24 #define ACCR_PCCE       (1 << 11)
25
26 /* crystal frequency to static memory controller multiplier (SMCFS) */
27 static unsigned char smcfs_mult[8] = { 6, 0, 8, 0, 0, 16, };
28
29 /* crystal frequency to HSIO bus frequency multiplier (HSS) */
30 static unsigned char hss_mult[4] = { 8, 12, 16, 24 };
31
32 /*
33  * Get the clock frequency as reflected by CCSR and the turbo flag.
34  * We assume these values have been applied via a fcs.
35  * If info is not 0 we also display the current settings.
36  */
37 unsigned int pxa3xx_get_clk_frequency_khz(int info)
38 {
39         unsigned long acsr, xclkcfg;
40         unsigned int t, xl, xn, hss, ro, XL, XN, CLK, HSS;
41
42         /* Read XCLKCFG register turbo bit */
43         __asm__ __volatile__("mrc\tp14, 0, %0, c6, c0, 0" : "=r"(xclkcfg));
44         t = xclkcfg & 0x1;
45
46         acsr = ACSR;
47
48         xl  = acsr & 0x1f;
49         xn  = (acsr >> 8) & 0x7;
50         hss = (acsr >> 14) & 0x3;
51
52         XL = xl * BASE_CLK;
53         XN = xn * XL;
54
55         ro = acsr & ACCR_D0CS;
56
57         CLK = (ro) ? RO_CLK : ((t) ? XN : XL);
58         HSS = (ro) ? RO_CLK : hss_mult[hss] * BASE_CLK;
59
60         if (info) {
61                 pr_info("RO Mode clock: %d.%02dMHz (%sactive)\n",
62                         RO_CLK / 1000000, (RO_CLK % 1000000) / 10000,
63                         (ro) ? "" : "in");
64                 pr_info("Run Mode clock: %d.%02dMHz (*%d)\n",
65                         XL / 1000000, (XL % 1000000) / 10000, xl);
66                 pr_info("Turbo Mode clock: %d.%02dMHz (*%d, %sactive)\n",
67                         XN / 1000000, (XN % 1000000) / 10000, xn,
68                         (t) ? "" : "in");
69                 pr_info("HSIO bus clock: %d.%02dMHz\n",
70                         HSS / 1000000, (HSS % 1000000) / 10000);
71         }
72
73         return CLK / 1000;
74 }
75
76 /*
77  * Return the current AC97 clock frequency.
78  */
79 static unsigned long clk_pxa3xx_ac97_getrate(struct clk *clk)
80 {
81         unsigned long rate = 312000000;
82         unsigned long ac97_div;
83
84         ac97_div = AC97_DIV;
85
86         /* This may loose precision for some rates but won't for the
87          * standard 24.576MHz.
88          */
89         rate /= (ac97_div >> 12) & 0x7fff;
90         rate *= (ac97_div & 0xfff);
91
92         return rate;
93 }
94
95 /*
96  * Return the current HSIO bus clock frequency
97  */
98 static unsigned long clk_pxa3xx_hsio_getrate(struct clk *clk)
99 {
100         unsigned long acsr;
101         unsigned int hss, hsio_clk;
102
103         acsr = ACSR;
104
105         hss = (acsr >> 14) & 0x3;
106         hsio_clk = (acsr & ACCR_D0CS) ? RO_CLK : hss_mult[hss] * BASE_CLK;
107
108         return hsio_clk;
109 }
110
111 void clk_pxa3xx_cken_enable(struct clk *clk)
112 {
113         unsigned long mask = 1ul << (clk->cken & 0x1f);
114
115         if (clk->cken < 32)
116                 CKENA |= mask;
117         else
118                 CKENB |= mask;
119 }
120
121 void clk_pxa3xx_cken_disable(struct clk *clk)
122 {
123         unsigned long mask = 1ul << (clk->cken & 0x1f);
124
125         if (clk->cken < 32)
126                 CKENA &= ~mask;
127         else
128                 CKENB &= ~mask;
129 }
130
131 const struct clkops clk_pxa3xx_cken_ops = {
132         .enable         = clk_pxa3xx_cken_enable,
133         .disable        = clk_pxa3xx_cken_disable,
134 };
135
136 const struct clkops clk_pxa3xx_hsio_ops = {
137         .enable         = clk_pxa3xx_cken_enable,
138         .disable        = clk_pxa3xx_cken_disable,
139         .getrate        = clk_pxa3xx_hsio_getrate,
140 };
141
142 const struct clkops clk_pxa3xx_ac97_ops = {
143         .enable         = clk_pxa3xx_cken_enable,
144         .disable        = clk_pxa3xx_cken_disable,
145         .getrate        = clk_pxa3xx_ac97_getrate,
146 };
147
148 static void clk_pout_enable(struct clk *clk)
149 {
150         OSCC |= OSCC_PEN;
151 }
152
153 static void clk_pout_disable(struct clk *clk)
154 {
155         OSCC &= ~OSCC_PEN;
156 }
157
158 const struct clkops clk_pxa3xx_pout_ops = {
159         .enable         = clk_pout_enable,
160         .disable        = clk_pout_disable,
161 };
162
163 #ifdef CONFIG_PM
164 static uint32_t cken[2];
165 static uint32_t accr;
166
167 static int pxa3xx_clock_suspend(struct sys_device *d, pm_message_t state)
168 {
169         cken[0] = CKENA;
170         cken[1] = CKENB;
171         accr = ACCR;
172         return 0;
173 }
174
175 static int pxa3xx_clock_resume(struct sys_device *d)
176 {
177         ACCR = accr;
178         CKENA = cken[0];
179         CKENB = cken[1];
180         return 0;
181 }
182 #else
183 #define pxa3xx_clock_suspend    NULL
184 #define pxa3xx_clock_resume     NULL
185 #endif
186
187 struct sysdev_class pxa3xx_clock_sysclass = {
188         .name           = "pxa3xx-clock",
189         .suspend        = pxa3xx_clock_suspend,
190         .resume         = pxa3xx_clock_resume,
191 };
192
193 static int __init pxa3xx_clock_init(void)
194 {
195         if (cpu_is_pxa3xx())
196                 return sysdev_class_register(&pxa3xx_clock_sysclass);
197         return 0;
198 }
199 postcore_initcall(pxa3xx_clock_init);