blob: a1a7176675b9904210545133303542e25d4636b6 [file] [log] [blame]
Ben Dookse4d06e32007-02-16 12:12:31 +01001/* linux/arch/arm/mach-s3c2443/clock.c
2 *
Ben Dooks4bed36b2010-01-30 10:25:49 +02003 * Copyright (c) 2007, 2010 Simtec Electronics
Ben Dookse4d06e32007-02-16 12:12:31 +01004 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * S3C2443 Clock control support
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21*/
22
23#include <linux/init.h>
Ben Dooksaf337f32010-04-28 18:03:57 +090024
Ben Dookse4d06e32007-02-16 12:12:31 +010025#include <linux/module.h>
26#include <linux/kernel.h>
27#include <linux/list.h>
28#include <linux/errno.h>
29#include <linux/err.h>
30#include <linux/sysdev.h>
31#include <linux/clk.h>
32#include <linux/mutex.h>
Ben Dookse4d06e32007-02-16 12:12:31 +010033#include <linux/serial_core.h>
Russell Kingfced80c2008-09-06 12:10:45 +010034#include <linux/io.h>
Ben Dookse4d06e32007-02-16 12:12:31 +010035
36#include <asm/mach/map.h>
37
Russell Kinga09e64f2008-08-05 16:14:15 +010038#include <mach/hardware.h>
Ben Dookse4d06e32007-02-16 12:12:31 +010039
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/regs-s3c2443-clock.h>
Ben Dookse4d06e32007-02-16 12:12:31 +010041
Ben Dookse4253822008-10-21 14:06:38 +010042#include <plat/cpu-freq.h>
43
Ben Dooksa2b7ba92008-10-07 22:26:09 +010044#include <plat/s3c2443.h>
Ben Dooksd5120ae2008-10-07 23:09:51 +010045#include <plat/clock.h>
Ben Dooks9aa753c2010-01-30 09:19:59 +020046#include <plat/clock-clksrc.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010047#include <plat/cpu.h>
Ben Dookse4d06e32007-02-16 12:12:31 +010048
49/* We currently have to assume that the system is running
50 * from the XTPll input, and that all ***REFCLKs are being
51 * fed from it, as we cannot read the state of OM[4] from
52 * software.
53 *
54 * It would be possible for each board initialisation to
55 * set the correct muxing at initialisation
56*/
57
Ben Dookse4d06e32007-02-16 12:12:31 +010058/* clock selections */
59
Ben Dookse4d06e32007-02-16 12:12:31 +010060static struct clk clk_i2s_ext = {
61 .name = "i2s-ext",
Ben Dookse4d06e32007-02-16 12:12:31 +010062};
63
Ben Dooksba7622a2008-07-07 18:12:39 +010064/* armdiv
65 *
66 * this clock is sourced from msysclk and can have a number of
67 * divider values applied to it to then be fed into armclk.
68*/
69
Ben Dooks41f23a02010-01-30 11:14:14 +020070/* armdiv divisor table */
71
72static unsigned int armdiv[16] = {
73 [S3C2443_CLKDIV0_ARMDIV_1 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 1,
74 [S3C2443_CLKDIV0_ARMDIV_2 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 2,
75 [S3C2443_CLKDIV0_ARMDIV_3 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 3,
76 [S3C2443_CLKDIV0_ARMDIV_4 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 4,
77 [S3C2443_CLKDIV0_ARMDIV_6 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 6,
78 [S3C2443_CLKDIV0_ARMDIV_8 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 8,
79 [S3C2443_CLKDIV0_ARMDIV_12 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 12,
80 [S3C2443_CLKDIV0_ARMDIV_16 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 16,
81};
82
83static inline unsigned int s3c2443_fclk_div(unsigned long clkcon0)
84{
85 clkcon0 &= S3C2443_CLKDIV0_ARMDIV_MASK;
86
87 return armdiv[clkcon0 >> S3C2443_CLKDIV0_ARMDIV_SHIFT];
88}
89
90static unsigned long s3c2443_armclk_roundrate(struct clk *clk,
91 unsigned long rate)
92{
93 unsigned long parent = clk_get_rate(clk->parent);
94 unsigned long calc;
95 unsigned best = 256; /* bigger than any value */
96 unsigned div;
97 int ptr;
98
99 for (ptr = 0; ptr < ARRAY_SIZE(armdiv); ptr++) {
100 div = armdiv[ptr];
101 calc = parent / div;
102 if (calc <= rate && div < best)
103 best = div;
104 }
105
106 return parent / best;
107}
108
109static int s3c2443_armclk_setrate(struct clk *clk, unsigned long rate)
110{
111 unsigned long parent = clk_get_rate(clk->parent);
112 unsigned long calc;
113 unsigned div;
114 unsigned best = 256; /* bigger than any value */
115 int ptr;
116 int val = -1;
117
118 for (ptr = 0; ptr < ARRAY_SIZE(armdiv); ptr++) {
119 div = armdiv[ptr];
120 calc = parent / div;
121 if (calc <= rate && div < best) {
122 best = div;
123 val = ptr;
124 }
125 }
126
127 if (val >= 0) {
128 unsigned long clkcon0;
129
130 clkcon0 = __raw_readl(S3C2443_CLKDIV0);
131 clkcon0 &= S3C2443_CLKDIV0_ARMDIV_MASK;
132 clkcon0 |= val << S3C2443_CLKDIV0_ARMDIV_SHIFT;
133 __raw_writel(clkcon0, S3C2443_CLKDIV0);
134 }
135
136 return (val == -1) ? -EINVAL : 0;
137}
138
Ben Dooksba7622a2008-07-07 18:12:39 +0100139static struct clk clk_armdiv = {
140 .name = "armdiv",
Ben Dooks4bed36b2010-01-30 10:25:49 +0200141 .parent = &clk_msysclk.clk,
Ben Dooks41f23a02010-01-30 11:14:14 +0200142 .ops = &(struct clk_ops) {
143 .round_rate = s3c2443_armclk_roundrate,
144 .set_rate = s3c2443_armclk_setrate,
145 },
Ben Dooksba7622a2008-07-07 18:12:39 +0100146};
147
148/* armclk
149 *
Ben Dooks4bed36b2010-01-30 10:25:49 +0200150 * this is the clock fed into the ARM core itself, from armdiv or from hclk.
Ben Dooksba7622a2008-07-07 18:12:39 +0100151 */
152
Ben Dooks4bed36b2010-01-30 10:25:49 +0200153static struct clk *clk_arm_sources[] = {
154 [0] = &clk_armdiv,
155 [1] = &clk_h,
156};
Ben Dooksba7622a2008-07-07 18:12:39 +0100157
Ben Dooks4bed36b2010-01-30 10:25:49 +0200158static struct clksrc_clk clk_arm = {
159 .clk = {
160 .name = "armclk",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000161 },
Ben Dooks4bed36b2010-01-30 10:25:49 +0200162 .sources = &(struct clksrc_sources) {
163 .sources = clk_arm_sources,
164 .nr_sources = ARRAY_SIZE(clk_arm_sources),
165 },
166 .reg_src = { .reg = S3C2443_CLKDIV0, .size = 1, .shift = 13 },
Ben Dooksba7622a2008-07-07 18:12:39 +0100167};
Ben Dookse4d06e32007-02-16 12:12:31 +0100168
Ben Dookse4d06e32007-02-16 12:12:31 +0100169/* hsspi
170 *
171 * high-speed spi clock, sourced from esysclk
172*/
173
Ben Dooks9aa753c2010-01-30 09:19:59 +0200174static struct clksrc_clk clk_hsspi = {
175 .clk = {
176 .name = "hsspi",
Ben Dooks4bed36b2010-01-30 10:25:49 +0200177 .parent = &clk_esysclk.clk,
Ben Dooks9aa753c2010-01-30 09:19:59 +0200178 .ctrlbit = S3C2443_SCLKCON_HSSPICLK,
179 .enable = s3c2443_clkcon_enable_s,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000180 },
Ben Dooks9aa753c2010-01-30 09:19:59 +0200181 .reg_div = { .reg = S3C2443_CLKDIV1, .size = 2, .shift = 4 },
Ben Dookse4d06e32007-02-16 12:12:31 +0100182};
183
Ben Dookse4d06e32007-02-16 12:12:31 +0100184
185/* clk_hsmcc_div
186 *
187 * this clock is sourced from epll, and is fed through a divider,
188 * to a mux controlled by sclkcon where either it or a extclk can
189 * be fed to the hsmmc block
190*/
191
Ben Dooks9aa753c2010-01-30 09:19:59 +0200192static struct clksrc_clk clk_hsmmc_div = {
193 .clk = {
194 .name = "hsmmc-div",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900195 .devname = "s3c-sdhci.1",
Ben Dooks4bed36b2010-01-30 10:25:49 +0200196 .parent = &clk_esysclk.clk,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000197 },
Ben Dooks9aa753c2010-01-30 09:19:59 +0200198 .reg_div = { .reg = S3C2443_CLKDIV1, .size = 2, .shift = 6 },
Ben Dookse4d06e32007-02-16 12:12:31 +0100199};
200
201static int s3c2443_setparent_hsmmc(struct clk *clk, struct clk *parent)
202{
203 unsigned long clksrc = __raw_readl(S3C2443_SCLKCON);
204
205 clksrc &= ~(S3C2443_SCLKCON_HSMMCCLK_EXT |
206 S3C2443_SCLKCON_HSMMCCLK_EPLL);
207
208 if (parent == &clk_epll)
209 clksrc |= S3C2443_SCLKCON_HSMMCCLK_EPLL;
210 else if (parent == &clk_ext)
211 clksrc |= S3C2443_SCLKCON_HSMMCCLK_EXT;
212 else
213 return -EINVAL;
214
215 if (clk->usage > 0) {
216 __raw_writel(clksrc, S3C2443_SCLKCON);
217 }
218
219 clk->parent = parent;
220 return 0;
221}
222
223static int s3c2443_enable_hsmmc(struct clk *clk, int enable)
224{
225 return s3c2443_setparent_hsmmc(clk, clk->parent);
226}
227
228static struct clk clk_hsmmc = {
229 .name = "hsmmc-if",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900230 .devname = "s3c-sdhci.1",
Ben Dooks9aa753c2010-01-30 09:19:59 +0200231 .parent = &clk_hsmmc_div.clk,
Ben Dookse4d06e32007-02-16 12:12:31 +0100232 .enable = s3c2443_enable_hsmmc,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000233 .ops = &(struct clk_ops) {
234 .set_parent = s3c2443_setparent_hsmmc,
235 },
Ben Dookse4d06e32007-02-16 12:12:31 +0100236};
237
238/* i2s_eplldiv
239 *
Anand Gadiyara8cd4562010-05-10 14:51:19 +0530240 * This clock is the output from the I2S divisor of ESYSCLK, and is separate
Ben Dooks9aa753c2010-01-30 09:19:59 +0200241 * from the mux that comes after it (cannot merge into one single clock)
Ben Dookse4d06e32007-02-16 12:12:31 +0100242*/
243
Ben Dooks9aa753c2010-01-30 09:19:59 +0200244static struct clksrc_clk clk_i2s_eplldiv = {
245 .clk = {
246 .name = "i2s-eplldiv",
Ben Dooks4bed36b2010-01-30 10:25:49 +0200247 .parent = &clk_esysclk.clk,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000248 },
Ben Dooks9aa753c2010-01-30 09:19:59 +0200249 .reg_div = { .reg = S3C2443_CLKDIV1, .size = 4, .shift = 12, },
Ben Dookse4d06e32007-02-16 12:12:31 +0100250};
251
252/* i2s-ref
253 *
254 * i2s bus reference clock, selectable from external, esysclk or epllref
Ben Dooks9aa753c2010-01-30 09:19:59 +0200255 *
256 * Note, this used to be two clocks, but was compressed into one.
Ben Dookse4d06e32007-02-16 12:12:31 +0100257*/
258
Ben Dooks9aa753c2010-01-30 09:19:59 +0200259struct clk *clk_i2s_srclist[] = {
260 [0] = &clk_i2s_eplldiv.clk,
261 [1] = &clk_i2s_ext,
262 [2] = &clk_epllref.clk,
263 [3] = &clk_epllref.clk,
264};
Ben Dookse4d06e32007-02-16 12:12:31 +0100265
Ben Dooks9aa753c2010-01-30 09:19:59 +0200266static struct clksrc_clk clk_i2s = {
267 .clk = {
268 .name = "i2s-if",
Ben Dooks9aa753c2010-01-30 09:19:59 +0200269 .ctrlbit = S3C2443_SCLKCON_I2SCLK,
270 .enable = s3c2443_clkcon_enable_s,
Ben Dookse4d06e32007-02-16 12:12:31 +0100271
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000272 },
Ben Dooks9aa753c2010-01-30 09:19:59 +0200273 .sources = &(struct clksrc_sources) {
274 .sources = clk_i2s_srclist,
275 .nr_sources = ARRAY_SIZE(clk_i2s_srclist),
276 },
277 .reg_src = { .reg = S3C2443_CLKSRC, .size = 2, .shift = 14 },
Ben Dookse4d06e32007-02-16 12:12:31 +0100278};
279
Ben Dookse4d06e32007-02-16 12:12:31 +0100280/* standard clock definitions */
281
Ben Dooks4e046912010-04-28 12:58:13 +0900282static struct clk init_clocks_off[] = {
Ben Dookse4d06e32007-02-16 12:12:31 +0100283 {
Ben Dookse4d06e32007-02-16 12:12:31 +0100284 .name = "sdi",
Ben Dookse4d06e32007-02-16 12:12:31 +0100285 .parent = &clk_p,
286 .enable = s3c2443_clkcon_enable_p,
287 .ctrlbit = S3C2443_PCLKCON_SDI,
288 }, {
Ben Dookse4d06e32007-02-16 12:12:31 +0100289 .name = "iis",
Ben Dookse4d06e32007-02-16 12:12:31 +0100290 .parent = &clk_p,
291 .enable = s3c2443_clkcon_enable_p,
292 .ctrlbit = S3C2443_PCLKCON_IIS,
293 }, {
294 .name = "spi",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900295 .devname = "s3c2410-spi.0",
Ben Dookse4d06e32007-02-16 12:12:31 +0100296 .parent = &clk_p,
297 .enable = s3c2443_clkcon_enable_p,
298 .ctrlbit = S3C2443_PCLKCON_SPI0,
299 }, {
300 .name = "spi",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900301 .devname = "s3c2410-spi.1",
Ben Dookse4d06e32007-02-16 12:12:31 +0100302 .parent = &clk_p,
303 .enable = s3c2443_clkcon_enable_p,
304 .ctrlbit = S3C2443_PCLKCON_SPI1,
305 }
306};
307
308static struct clk init_clocks[] = {
Ben Dookse4d06e32007-02-16 12:12:31 +0100309};
310
Ben Dookse4d06e32007-02-16 12:12:31 +0100311/* clocks to add straight away */
312
Ben Dooks9aa753c2010-01-30 09:19:59 +0200313static struct clksrc_clk *clksrcs[] __initdata = {
Ben Dooks4bed36b2010-01-30 10:25:49 +0200314 &clk_arm,
Ben Dookse4d06e32007-02-16 12:12:31 +0100315 &clk_i2s_eplldiv,
316 &clk_i2s,
317 &clk_hsspi,
318 &clk_hsmmc_div,
Ben Dooks9aa753c2010-01-30 09:19:59 +0200319};
320
321static struct clk *clks[] __initdata = {
Ben Dookse4d06e32007-02-16 12:12:31 +0100322 &clk_hsmmc,
Ben Dooksba7622a2008-07-07 18:12:39 +0100323 &clk_armdiv,
Ben Dookse4d06e32007-02-16 12:12:31 +0100324};
325
Ben Dookse4253822008-10-21 14:06:38 +0100326void __init_or_cpufreq s3c2443_setup_clocks(void)
Ben Dookse4d06e32007-02-16 12:12:31 +0100327{
Ben Dooksaf337f32010-04-28 18:03:57 +0900328 s3c2443_common_setup_clocks(s3c2443_get_mpll, s3c2443_fclk_div);
Ben Dookse4253822008-10-21 14:06:38 +0100329}
330
331void __init s3c2443_init_clocks(int xtal)
332{
Ben Dookse4253822008-10-21 14:06:38 +0100333 unsigned long epllcon = __raw_readl(S3C2443_EPLLCON);
Ben Dookse4253822008-10-21 14:06:38 +0100334 int ptr;
335
Ben Dooksaf337f32010-04-28 18:03:57 +0900336 clk_epll.rate = s3c2443_get_epll(epllcon, xtal);
337 clk_epll.parent = &clk_epllref.clk;
Ben Dookse4253822008-10-21 14:06:38 +0100338
Ben Dooksaf337f32010-04-28 18:03:57 +0900339 s3c2443_common_init_clocks(xtal, s3c2443_get_mpll, s3c2443_fclk_div);
340
Ben Dookse4253822008-10-21 14:06:38 +0100341 s3c2443_setup_clocks();
Ben Dookse4d06e32007-02-16 12:12:31 +0100342
Ben Dooks4e046912010-04-28 12:58:13 +0900343 s3c24xx_register_clocks(clks, ARRAY_SIZE(clks));
Ben Dookse4d06e32007-02-16 12:12:31 +0100344
Ben Dooks9aa753c2010-01-30 09:19:59 +0200345 for (ptr = 0; ptr < ARRAY_SIZE(clksrcs); ptr++)
346 s3c_register_clksrc(clksrcs[ptr], 1);
347
Ben Dookse4d06e32007-02-16 12:12:31 +0100348 /* register clocks from clock array */
349
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900350 s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
Ben Dookse4d06e32007-02-16 12:12:31 +0100351
352 /* We must be careful disabling the clocks we are not intending to
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200353 * be using at boot time, as subsystems such as the LCD which do
Ben Dookse4d06e32007-02-16 12:12:31 +0100354 * their own DMA requests to the bus can cause the system to lockup
355 * if they where in the middle of requesting bus access.
356 *
357 * Disabling the LCD clock if the LCD is active is very dangerous,
358 * and therefore the bootloader should be careful to not enable
359 * the LCD clock if it is not needed.
360 */
361
362 /* install (and disable) the clocks we do not need immediately */
363
Ben Dooks4e046912010-04-28 12:58:13 +0900364 s3c_register_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
365 s3c_disable_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
Ben Dooks9d325f22008-11-21 10:36:05 +0000366
367 s3c_pwmclk_init();
Ben Dookse4d06e32007-02-16 12:12:31 +0100368}