wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 2 | * (C) Copyright 2001-2004 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 3 | * 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> |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 33 | #if defined(CONFIG_S3C2400) || defined (CONFIG_S3C2410) || defined (CONFIG_TRAB) |
| 34 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 35 | #include <asm/io.h> |
| 36 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 37 | #if defined(CONFIG_S3C2400) |
| 38 | #include <s3c2400.h> |
| 39 | #elif defined(CONFIG_S3C2410) |
| 40 | #include <s3c2410.h> |
| 41 | #endif |
| 42 | |
| 43 | #define MPLL 0 |
| 44 | #define UPLL 1 |
| 45 | |
| 46 | /* ------------------------------------------------------------------------- */ |
| 47 | /* NOTE: This describes the proper use of this file. |
| 48 | * |
wdenk | 7f6c2cb | 2002-11-10 22:06:23 +0000 | [diff] [blame] | 49 | * CONFIG_SYS_CLK_FREQ should be defined as the input frequency of the PLL. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 50 | * |
| 51 | * get_FCLK(), get_HCLK(), get_PCLK() and get_UCLK() return the clock of |
| 52 | * the specified bus in HZ. |
| 53 | */ |
| 54 | /* ------------------------------------------------------------------------- */ |
| 55 | |
| 56 | static ulong get_PLLCLK(int pllreg) |
| 57 | { |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 58 | struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power(); |
| 59 | ulong r, m, p, s; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 60 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 61 | if (pllreg == MPLL) |
| 62 | r = readl(&clk_power->MPLLCON); |
| 63 | else if (pllreg == UPLL) |
| 64 | r = readl(&clk_power->UPLLCON); |
| 65 | else |
| 66 | hang(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 67 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 68 | m = ((r & 0xFF000) >> 12) + 8; |
| 69 | p = ((r & 0x003F0) >> 4) + 2; |
| 70 | s = r & 0x3; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 71 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 72 | return (CONFIG_SYS_CLK_FREQ * m) / (p << s); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | /* return FCLK frequency */ |
| 76 | ulong get_FCLK(void) |
| 77 | { |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 78 | return get_PLLCLK(MPLL); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | /* return HCLK frequency */ |
| 82 | ulong get_HCLK(void) |
| 83 | { |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 84 | struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 85 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 86 | return (readl(&clk_power->CLKDIVN) & 2) ? get_FCLK() / 2 : get_FCLK(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /* return PCLK frequency */ |
| 90 | ulong get_PCLK(void) |
| 91 | { |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 92 | struct s3c24x0_clock_power *clk_power = s3c24x0_get_base_clock_power(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 93 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 94 | return (readl(&clk_power->CLKDIVN) & 1) ? get_HCLK() / 2 : get_HCLK(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | /* return UCLK frequency */ |
| 98 | ulong get_UCLK(void) |
| 99 | { |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 100 | return get_PLLCLK(UPLL); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 101 | } |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 102 | |
kevin.morfitt@fearnside-systems.co.uk | d67cce2 | 2009-10-10 13:30:22 +0900 | [diff] [blame] | 103 | #endif /* defined(CONFIG_S3C2400) || |
| 104 | defined (CONFIG_S3C2410) || |
| 105 | defined (CONFIG_TRAB) */ |