blob: 0d55228b641f7ba9cc8b298cc6f8fcd3cac1ec15 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
wdenk97d80fc2004-06-09 00:34:46 +00002 * Copyright 2004 Freescale Semiconductor.
wdenk42d1f032003-10-15 23:53:47 +00003 * (C) Copyright 2003 Motorola Inc.
4 * Xianghua Xiao, (X.Xiao@motorola.com)
5 *
6 * (C) Copyright 2000
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <ppc_asm.tmpl>
30#include <asm/processor.h>
Trent Piephoada591d2008-12-03 15:16:37 -080031#include <asm/io.h>
wdenk42d1f032003-10-15 23:53:47 +000032
Wolfgang Denkd87080b2006-03-31 18:32:53 +020033DECLARE_GLOBAL_DATA_PTR;
34
wdenk42d1f032003-10-15 23:53:47 +000035/* --------------------------------------------------------------- */
36
wdenk42d1f032003-10-15 23:53:47 +000037void get_sys_info (sys_info_t * sysInfo)
38{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020039 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Andy Fleming66ed6cc2007-04-23 02:37:47 -050040 uint plat_ratio,e500_ratio,half_freqSystemBus;
Trent Piephoada591d2008-12-03 15:16:37 -080041 uint lcrr_div;
wdenk42d1f032003-10-15 23:53:47 +000042
43 plat_ratio = (gur->porpllsr) & 0x0000003e;
44 plat_ratio >>= 1;
Andy Fleming66ed6cc2007-04-23 02:37:47 -050045 sysInfo->freqSystemBus = plat_ratio * CONFIG_SYS_CLK_FREQ;
wdenk42d1f032003-10-15 23:53:47 +000046 e500_ratio = (gur->porpllsr) & 0x003f0000;
47 e500_ratio >>= 16;
Andy Fleming66ed6cc2007-04-23 02:37:47 -050048
49 /* Divide before multiply to avoid integer
50 * overflow for processor speeds above 2GHz */
51 half_freqSystemBus = sysInfo->freqSystemBus/2;
52 sysInfo->freqProcessor = e500_ratio*half_freqSystemBus;
James Yanga3e77fa2008-02-08 18:05:08 -060053
54 /* Note: freqDDRBus is the MCLK frequency, not the data rate. */
Kumar Galad4357932007-12-07 04:59:26 -060055 sysInfo->freqDDRBus = sysInfo->freqSystemBus;
56
57#ifdef CONFIG_DDR_CLK_FREQ
58 {
Jason Jinc0391112008-09-27 14:40:57 +080059 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
60 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Galad4357932007-12-07 04:59:26 -060061 if (ddr_ratio != 0x7)
62 sysInfo->freqDDRBus = ddr_ratio * CONFIG_DDR_CLK_FREQ;
63 }
64#endif
Trent Piephoada591d2008-12-03 15:16:37 -080065
66#if defined(CONFIG_SYS_LBC_LCRR)
67 /* We will program LCRR to this value later */
68 lcrr_div = CONFIG_SYS_LBC_LCRR & LCRR_CLKDIV;
69#else
70 {
71 volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
72 lcrr_div = in_be32(&lbc->lcrr) & LCRR_CLKDIV;
73 }
74#endif
75 if (lcrr_div == 2 || lcrr_div == 4 || lcrr_div == 8) {
76#if !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8541) && \
77 !defined(CONFIG_MPC8555) && !defined(CONFIG_MPC8560)
78 /*
79 * Yes, the entire PQ38 family use the same
80 * bit-representation for twice the clock divider values.
81 */
82 lcrr_div *= 2;
83#endif
84 sysInfo->freqLocalBus = sysInfo->freqSystemBus / lcrr_div;
85 } else {
86 /* In case anyone cares what the unknown value is */
87 sysInfo->freqLocalBus = lcrr_div;
88 }
wdenk42d1f032003-10-15 23:53:47 +000089}
90
Andy Fleming66ed6cc2007-04-23 02:37:47 -050091
wdenk42d1f032003-10-15 23:53:47 +000092int get_clocks (void)
93{
wdenk42d1f032003-10-15 23:53:47 +000094 sys_info_t sys_info;
Timur Tabi88353a92008-04-04 11:15:58 -050095#ifdef CONFIG_MPC8544
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 volatile ccsr_gur_t *gur = (void *) CONFIG_SYS_MPC85xx_GUTS_ADDR;
Timur Tabi88353a92008-04-04 11:15:58 -050097#endif
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050098#if defined(CONFIG_CPM2)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099 volatile ccsr_cpm_t *cpm = (ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR;
wdenk42d1f032003-10-15 23:53:47 +0000100 uint sccr, dfbrg;
101
102 /* set VCO = 4 * BRG */
Kumar Galaaafeefb2007-11-28 00:36:33 -0600103 cpm->im_cpm_intctl.sccr &= 0xfffffffc;
104 sccr = cpm->im_cpm_intctl.sccr;
wdenk42d1f032003-10-15 23:53:47 +0000105 dfbrg = (sccr & SCCR_DFBRG_MSK) >> SCCR_DFBRG_SHIFT;
106#endif
107 get_sys_info (&sys_info);
108 gd->cpu_clk = sys_info.freqProcessor;
109 gd->bus_clk = sys_info.freqSystemBus;
James Yanga3e77fa2008-02-08 18:05:08 -0600110 gd->mem_clk = sys_info.freqDDRBus;
Trent Piephoada591d2008-12-03 15:16:37 -0800111 gd->lbc_clk = sys_info.freqLocalBus;
Timur Tabi88353a92008-04-04 11:15:58 -0500112
113 /*
114 * The base clock for I2C depends on the actual SOC. Unfortunately,
115 * there is no pattern that can be used to determine the frequency, so
116 * the only choice is to look up the actual SOC number and use the value
117 * for that SOC. This information is taken from application note
118 * AN2919.
119 */
120#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
121 defined(CONFIG_MPC8560) || defined(CONFIG_MPC8555)
Timur Tabi943afa22008-01-09 14:35:26 -0600122 gd->i2c1_clk = sys_info.freqSystemBus;
Timur Tabi88353a92008-04-04 11:15:58 -0500123#elif defined(CONFIG_MPC8544)
124 /*
125 * On the 8544, the I2C clock is the same as the SEC clock. This can be
126 * either CCB/2 or CCB/3, depending on the value of cfg_sec_freq. See
127 * 4.4.3.3 of the 8544 RM. Note that this might actually work for all
128 * 85xx, but only the 8544 has cfg_sec_freq, so it's unknown if the
129 * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544.
130 */
131 if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG)
Wolfgang Grandeggerdffd2442008-09-30 10:55:57 +0200132 gd->i2c1_clk = sys_info.freqSystemBus / 3;
Kumar Gala42653b82008-10-16 21:58:49 -0500133 else
134 gd->i2c1_clk = sys_info.freqSystemBus / 2;
Timur Tabi88353a92008-04-04 11:15:58 -0500135#else
136 /* Most 85xx SOCs use CCB/2, so this is the default behavior. */
137 gd->i2c1_clk = sys_info.freqSystemBus / 2;
138#endif
139 gd->i2c2_clk = gd->i2c1_clk;
Timur Tabi943afa22008-01-09 14:35:26 -0600140
Kumar Galaef50d6c2008-08-12 11:14:19 -0500141#if defined(CONFIG_MPC8536)
142 gd->sdhc_clk = gd->bus_clk / 2;
143#endif
144
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500145#if defined(CONFIG_CPM2)
wdenk42d1f032003-10-15 23:53:47 +0000146 gd->vco_out = 2*sys_info.freqSystemBus;
147 gd->cpm_clk = gd->vco_out / 2;
148 gd->scc_clk = gd->vco_out / 4;
149 gd->brg_clk = gd->vco_out / (1 << (2 * (dfbrg + 1)));
150#endif
151
152 if(gd->cpu_clk != 0) return (0);
153 else return (1);
154}
155
156
157/********************************************
158 * get_bus_freq
159 * return system bus freq in Hz
160 *********************************************/
161ulong get_bus_freq (ulong dummy)
162{
James Yanga3e77fa2008-02-08 18:05:08 -0600163 return gd->bus_clk;
wdenk42d1f032003-10-15 23:53:47 +0000164}
Kumar Galad4357932007-12-07 04:59:26 -0600165
166/********************************************
167 * get_ddr_freq
168 * return ddr bus freq in Hz
169 *********************************************/
170ulong get_ddr_freq (ulong dummy)
171{
James Yanga3e77fa2008-02-08 18:05:08 -0600172 return gd->mem_clk;
Kumar Galad4357932007-12-07 04:59:26 -0600173}