blob: 3ae558dd62804b0e8166864d43ddd6ac3cb82a7f [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenk281e00a2004-08-01 22:48:16 +00002 * (C) Copyright 2001-2004
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2002
6 * David Mueller, ELSOFT AG, d.mueller@elsoft.ch
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27/* This code should work for both the S3C2400 and the S3C2410
28 * as they seem to have the same PLL and clock machinery inside.
29 * The different address mapping is handled by the s3c24xx.h files below.
30 */
31
32#include <common.h>
kevin.morfitt@fearnside-systems.co.ukac678042009-11-17 18:30:34 +090033#ifdef CONFIG_S3C24X0
wdenk281e00a2004-08-01 22:48:16 +000034
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090035#include <asm/io.h>
kevin.morfitt@fearnside-systems.co.ukac678042009-11-17 18:30:34 +090036#include <asm/arch/s3c24x0_cpu.h>
wdenkc6097192002-11-03 00:24:07 +000037
38#define MPLL 0
39#define UPLL 1
40
41/* ------------------------------------------------------------------------- */
42/* NOTE: This describes the proper use of this file.
43 *
wdenk7f6c2cb2002-11-10 22:06:23 +000044 * CONFIG_SYS_CLK_FREQ should be defined as the input frequency of the PLL.
wdenkc6097192002-11-03 00:24:07 +000045 *
46 * get_FCLK(), get_HCLK(), get_PCLK() and get_UCLK() return the clock of
47 * the specified bus in HZ.
48 */
49/* ------------------------------------------------------------------------- */
50
51static ulong get_PLLCLK(int pllreg)
52{
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090053 struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power();
54 ulong r, m, p, s;
wdenkc6097192002-11-03 00:24:07 +000055
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090056 if (pllreg == MPLL)
C Naumand9abba82010-10-26 23:04:31 +090057 r = readl(&clk_power->mpllcon);
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090058 else if (pllreg == UPLL)
C Naumand9abba82010-10-26 23:04:31 +090059 r = readl(&clk_power->upllcon);
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090060 else
61 hang();
wdenkc6097192002-11-03 00:24:07 +000062
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090063 m = ((r & 0xFF000) >> 12) + 8;
64 p = ((r & 0x003F0) >> 4) + 2;
65 s = r & 0x3;
wdenkc6097192002-11-03 00:24:07 +000066
C Naumand9abba82010-10-26 23:04:31 +090067#if defined(CONFIG_S3C2440)
68 if (pllreg == MPLL)
69 return 2 * m * (CONFIG_SYS_CLK_FREQ / (p << s));
70#endif
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090071 return (CONFIG_SYS_CLK_FREQ * m) / (p << s);
C Naumand9abba82010-10-26 23:04:31 +090072
wdenkc6097192002-11-03 00:24:07 +000073}
74
75/* return FCLK frequency */
76ulong get_FCLK(void)
77{
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090078 return get_PLLCLK(MPLL);
wdenkc6097192002-11-03 00:24:07 +000079}
80
81/* return HCLK frequency */
82ulong get_HCLK(void)
83{
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +090084 struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power();
C Naumand9abba82010-10-26 23:04:31 +090085#ifdef CONFIG_S3C2440
86 switch (readl(&clk_power->clkdivn) & 0x6) {
87 default:
88 case 0:
89 return get_FCLK();
90 case 2:
91 return get_FCLK() / 2;
92 case 4:
93 return (readl(&clk_power->camdivn) & (1 << 9)) ?
94 get_FCLK() / 8 : get_FCLK() / 4;
95 case 6:
96 return (readl(&clk_power->camdivn) & (1 << 8)) ?
97 get_FCLK() / 6 : get_FCLK() / 3;
98 }
99#else
100 return (readl(&clk_power->clkdivn) & 2) ? get_FCLK() / 2 : get_FCLK();
101#endif
wdenkc6097192002-11-03 00:24:07 +0000102}
103
104/* return PCLK frequency */
105ulong get_PCLK(void)
106{
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +0900107 struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power();
wdenkc6097192002-11-03 00:24:07 +0000108
C Naumand9abba82010-10-26 23:04:31 +0900109 return (readl(&clk_power->clkdivn) & 1) ? get_HCLK() / 2 : get_HCLK();
wdenkc6097192002-11-03 00:24:07 +0000110}
111
112/* return UCLK frequency */
113ulong get_UCLK(void)
114{
kevin.morfitt@fearnside-systems.co.ukd67cce22009-10-10 13:30:22 +0900115 return get_PLLCLK(UPLL);
wdenkc6097192002-11-03 00:24:07 +0000116}
wdenk281e00a2004-08-01 22:48:16 +0000117
kevin.morfitt@fearnside-systems.co.ukac678042009-11-17 18:30:34 +0900118#endif /* CONFIG_S3C24X0 */