blob: 64de262737e06531081e536727938bf13b1d7830 [file] [log] [blame]
Minkyu Kang008a3512011-01-24 15:22:23 +09001/*
2 * Copyright (C) 2010 Samsung Electronics
3 * Minkyu Kang <mk7.kang@samsung.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (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,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <asm/io.h>
26#include <asm/arch/clock.h>
27#include <asm/arch/clk.h>
28
29#ifndef CONFIG_SYS_CLK_FREQ_C210
30#define CONFIG_SYS_CLK_FREQ_C210 24000000
31#endif
32
Chander Kashyap393cb362011-12-06 23:34:12 +000033/* exynos4: return pll clock frequency */
34static unsigned long exynos4_get_pll_clk(int pllreg)
Minkyu Kang008a3512011-01-24 15:22:23 +090035{
Chander Kashyap393cb362011-12-06 23:34:12 +000036 struct exynos4_clock *clk =
37 (struct exynos4_clock *)samsung_get_base_clock();
Minkyu Kang008a3512011-01-24 15:22:23 +090038 unsigned long r, m, p, s, k = 0, mask, fout;
39 unsigned int freq;
40
41 switch (pllreg) {
42 case APLL:
43 r = readl(&clk->apll_con0);
44 break;
45 case MPLL:
46 r = readl(&clk->mpll_con0);
47 break;
48 case EPLL:
49 r = readl(&clk->epll_con0);
50 k = readl(&clk->epll_con1);
51 break;
52 case VPLL:
53 r = readl(&clk->vpll_con0);
54 k = readl(&clk->vpll_con1);
55 break;
56 default:
57 printf("Unsupported PLL (%d)\n", pllreg);
58 return 0;
59 }
60
61 /*
62 * APLL_CON: MIDV [25:16]
63 * MPLL_CON: MIDV [25:16]
64 * EPLL_CON: MIDV [24:16]
65 * VPLL_CON: MIDV [24:16]
66 */
67 if (pllreg == APLL || pllreg == MPLL)
68 mask = 0x3ff;
69 else
70 mask = 0x1ff;
71
72 m = (r >> 16) & mask;
73
74 /* PDIV [13:8] */
75 p = (r >> 8) & 0x3f;
76 /* SDIV [2:0] */
77 s = r & 0x7;
78
79 freq = CONFIG_SYS_CLK_FREQ_C210;
80
81 if (pllreg == EPLL) {
82 k = k & 0xffff;
83 /* FOUT = (MDIV + K / 65536) * FIN / (PDIV * 2^SDIV) */
84 fout = (m + k / 65536) * (freq / (p * (1 << s)));
85 } else if (pllreg == VPLL) {
86 k = k & 0xfff;
87 /* FOUT = (MDIV + K / 1024) * FIN / (PDIV * 2^SDIV) */
88 fout = (m + k / 1024) * (freq / (p * (1 << s)));
89 } else {
90 if (s < 1)
91 s = 1;
92 /* FOUT = MDIV * FIN / (PDIV * 2^(SDIV - 1)) */
93 fout = m * (freq / (p * (1 << (s - 1))));
94 }
95
96 return fout;
97}
98
Chander Kashyap393cb362011-12-06 23:34:12 +000099/* exynos4: return ARM clock frequency */
100static unsigned long exynos4_get_arm_clk(void)
Minkyu Kang008a3512011-01-24 15:22:23 +0900101{
Chander Kashyap393cb362011-12-06 23:34:12 +0000102 struct exynos4_clock *clk =
103 (struct exynos4_clock *)samsung_get_base_clock();
Minkyu Kang008a3512011-01-24 15:22:23 +0900104 unsigned long div;
105 unsigned long dout_apll;
106 unsigned int apll_ratio;
107
108 div = readl(&clk->div_cpu0);
109
110 /* APLL_RATIO: [26:24] */
111 apll_ratio = (div >> 24) & 0x7;
112
113 dout_apll = get_pll_clk(APLL) / (apll_ratio + 1);
114
115 return dout_apll;
116}
117
Chander Kashyap393cb362011-12-06 23:34:12 +0000118/* exynos4: return pwm clock frequency */
119static unsigned long exynos4_get_pwm_clk(void)
Minkyu Kang008a3512011-01-24 15:22:23 +0900120{
Chander Kashyap393cb362011-12-06 23:34:12 +0000121 struct exynos4_clock *clk =
122 (struct exynos4_clock *)samsung_get_base_clock();
Minkyu Kang008a3512011-01-24 15:22:23 +0900123 unsigned long pclk, sclk;
124 unsigned int sel;
125 unsigned int ratio;
126
Minkyu Kangb4f73912011-05-18 16:57:55 +0900127 if (s5p_get_cpu_rev() == 0) {
128 /*
129 * CLK_SRC_PERIL0
130 * PWM_SEL [27:24]
131 */
132 sel = readl(&clk->src_peril0);
133 sel = (sel >> 24) & 0xf;
Minkyu Kang008a3512011-01-24 15:22:23 +0900134
Minkyu Kangb4f73912011-05-18 16:57:55 +0900135 if (sel == 0x6)
136 sclk = get_pll_clk(MPLL);
137 else if (sel == 0x7)
138 sclk = get_pll_clk(EPLL);
139 else if (sel == 0x8)
140 sclk = get_pll_clk(VPLL);
141 else
142 return 0;
143
144 /*
145 * CLK_DIV_PERIL3
146 * PWM_RATIO [3:0]
147 */
148 ratio = readl(&clk->div_peril3);
149 ratio = ratio & 0xf;
150 } else if (s5p_get_cpu_rev() == 1) {
Minkyu Kang008a3512011-01-24 15:22:23 +0900151 sclk = get_pll_clk(MPLL);
Minkyu Kangb4f73912011-05-18 16:57:55 +0900152 ratio = 8;
153 } else
Minkyu Kang008a3512011-01-24 15:22:23 +0900154 return 0;
155
Minkyu Kang008a3512011-01-24 15:22:23 +0900156 pclk = sclk / (ratio + 1);
157
158 return pclk;
159}
160
Chander Kashyap393cb362011-12-06 23:34:12 +0000161/* exynos4: return uart clock frequency */
162static unsigned long exynos4_get_uart_clk(int dev_index)
Minkyu Kang008a3512011-01-24 15:22:23 +0900163{
Chander Kashyap393cb362011-12-06 23:34:12 +0000164 struct exynos4_clock *clk =
165 (struct exynos4_clock *)samsung_get_base_clock();
Minkyu Kang008a3512011-01-24 15:22:23 +0900166 unsigned long uclk, sclk;
167 unsigned int sel;
168 unsigned int ratio;
169
170 /*
171 * CLK_SRC_PERIL0
172 * UART0_SEL [3:0]
173 * UART1_SEL [7:4]
174 * UART2_SEL [8:11]
175 * UART3_SEL [12:15]
176 * UART4_SEL [16:19]
177 * UART5_SEL [23:20]
178 */
179 sel = readl(&clk->src_peril0);
180 sel = (sel >> (dev_index << 2)) & 0xf;
181
182 if (sel == 0x6)
183 sclk = get_pll_clk(MPLL);
184 else if (sel == 0x7)
185 sclk = get_pll_clk(EPLL);
186 else if (sel == 0x8)
187 sclk = get_pll_clk(VPLL);
188 else
189 return 0;
190
191 /*
192 * CLK_DIV_PERIL0
193 * UART0_RATIO [3:0]
194 * UART1_RATIO [7:4]
195 * UART2_RATIO [8:11]
196 * UART3_RATIO [12:15]
197 * UART4_RATIO [16:19]
198 * UART5_RATIO [23:20]
199 */
200 ratio = readl(&clk->div_peril0);
201 ratio = (ratio >> (dev_index << 2)) & 0xf;
202
203 uclk = sclk / (ratio + 1);
204
205 return uclk;
206}
207
Chander Kashyap393cb362011-12-06 23:34:12 +0000208/* exynos4: set the mmc clock */
209static void exynos4_set_mmc_clk(int dev_index, unsigned int div)
Jaehoon Chung68a8cbf2011-05-17 21:19:17 +0000210{
Chander Kashyap393cb362011-12-06 23:34:12 +0000211 struct exynos4_clock *clk =
212 (struct exynos4_clock *)samsung_get_base_clock();
Jaehoon Chung68a8cbf2011-05-17 21:19:17 +0000213 unsigned int addr;
214 unsigned int val;
215
216 /*
217 * CLK_DIV_FSYS1
218 * MMC0_PRE_RATIO [15:8], MMC1_PRE_RATIO [31:24]
219 * CLK_DIV_FSYS2
220 * MMC2_PRE_RATIO [15:8], MMC3_PRE_RATIO [31:24]
221 */
222 if (dev_index < 2) {
223 addr = (unsigned int)&clk->div_fsys1;
224 } else {
225 addr = (unsigned int)&clk->div_fsys2;
226 dev_index -= 2;
227 }
228
229 val = readl(addr);
230 val &= ~(0xff << ((dev_index << 4) + 8));
231 val |= (div & 0xff) << ((dev_index << 4) + 8);
232 writel(val, addr);
233}
234
Minkyu Kang008a3512011-01-24 15:22:23 +0900235unsigned long get_pll_clk(int pllreg)
236{
Chander Kashyap393cb362011-12-06 23:34:12 +0000237 return exynos4_get_pll_clk(pllreg);
Minkyu Kang008a3512011-01-24 15:22:23 +0900238}
239
240unsigned long get_arm_clk(void)
241{
Chander Kashyap393cb362011-12-06 23:34:12 +0000242 return exynos4_get_arm_clk();
Minkyu Kang008a3512011-01-24 15:22:23 +0900243}
244
245unsigned long get_pwm_clk(void)
246{
Chander Kashyap393cb362011-12-06 23:34:12 +0000247 return exynos4_get_pwm_clk();
Minkyu Kang008a3512011-01-24 15:22:23 +0900248}
249
250unsigned long get_uart_clk(int dev_index)
251{
Chander Kashyap393cb362011-12-06 23:34:12 +0000252 return exynos4_get_uart_clk(dev_index);
Minkyu Kang008a3512011-01-24 15:22:23 +0900253}
Jaehoon Chung68a8cbf2011-05-17 21:19:17 +0000254
255void set_mmc_clk(int dev_index, unsigned int div)
256{
Chander Kashyap393cb362011-12-06 23:34:12 +0000257 exynos4_set_mmc_clk(dev_index, div);
Jaehoon Chung68a8cbf2011-05-17 21:19:17 +0000258}