wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 2 | * Copyright 2004, 2007-2009 Freescale Semiconductor, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 3 | * (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 Piepho | ada591d | 2008-12-03 15:16:37 -0800 | [diff] [blame] | 31 | #include <asm/io.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 32 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 35 | /* --------------------------------------------------------------- */ |
| 36 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 37 | void get_sys_info (sys_info_t * sysInfo) |
| 38 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 39 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 40 | uint plat_ratio,e500_ratio,half_freqSystemBus; |
Trent Piepho | ada591d | 2008-12-03 15:16:37 -0800 | [diff] [blame] | 41 | uint lcrr_div; |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 42 | int i; |
Haiying Wang | b3d7f20 | 2009-05-20 12:30:29 -0400 | [diff] [blame] | 43 | #ifdef CONFIG_QE |
| 44 | u32 qe_ratio; |
| 45 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 46 | |
| 47 | plat_ratio = (gur->porpllsr) & 0x0000003e; |
| 48 | plat_ratio >>= 1; |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 49 | sysInfo->freqSystemBus = plat_ratio * CONFIG_SYS_CLK_FREQ; |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 50 | |
| 51 | /* Divide before multiply to avoid integer |
| 52 | * overflow for processor speeds above 2GHz */ |
| 53 | half_freqSystemBus = sysInfo->freqSystemBus/2; |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 54 | for (i = 0; i < cpu_numcores(); i++) { |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 55 | e500_ratio = ((gur->porpllsr) >> (i * 8 + 16)) & 0x3f; |
| 56 | sysInfo->freqProcessor[i] = e500_ratio * half_freqSystemBus; |
| 57 | } |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 58 | |
| 59 | /* Note: freqDDRBus is the MCLK frequency, not the data rate. */ |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 60 | sysInfo->freqDDRBus = sysInfo->freqSystemBus; |
| 61 | |
| 62 | #ifdef CONFIG_DDR_CLK_FREQ |
| 63 | { |
Jason Jin | c039111 | 2008-09-27 14:40:57 +0800 | [diff] [blame] | 64 | u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO) |
| 65 | >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT; |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 66 | if (ddr_ratio != 0x7) |
| 67 | sysInfo->freqDDRBus = ddr_ratio * CONFIG_DDR_CLK_FREQ; |
| 68 | } |
| 69 | #endif |
Trent Piepho | ada591d | 2008-12-03 15:16:37 -0800 | [diff] [blame] | 70 | |
Haiying Wang | b3d7f20 | 2009-05-20 12:30:29 -0400 | [diff] [blame] | 71 | #ifdef CONFIG_QE |
| 72 | qe_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_QE_RATIO) |
| 73 | >> MPC85xx_PORPLLSR_QE_RATIO_SHIFT; |
| 74 | sysInfo->freqQE = qe_ratio * CONFIG_SYS_CLK_FREQ; |
| 75 | #endif |
| 76 | |
Trent Piepho | ada591d | 2008-12-03 15:16:37 -0800 | [diff] [blame] | 77 | #if defined(CONFIG_SYS_LBC_LCRR) |
| 78 | /* We will program LCRR to this value later */ |
| 79 | lcrr_div = CONFIG_SYS_LBC_LCRR & LCRR_CLKDIV; |
| 80 | #else |
| 81 | { |
| 82 | volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR); |
| 83 | lcrr_div = in_be32(&lbc->lcrr) & LCRR_CLKDIV; |
| 84 | } |
| 85 | #endif |
| 86 | if (lcrr_div == 2 || lcrr_div == 4 || lcrr_div == 8) { |
| 87 | #if !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8541) && \ |
| 88 | !defined(CONFIG_MPC8555) && !defined(CONFIG_MPC8560) |
| 89 | /* |
| 90 | * Yes, the entire PQ38 family use the same |
| 91 | * bit-representation for twice the clock divider values. |
| 92 | */ |
| 93 | lcrr_div *= 2; |
| 94 | #endif |
| 95 | sysInfo->freqLocalBus = sysInfo->freqSystemBus / lcrr_div; |
| 96 | } else { |
| 97 | /* In case anyone cares what the unknown value is */ |
| 98 | sysInfo->freqLocalBus = lcrr_div; |
| 99 | } |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 102 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 103 | int get_clocks (void) |
| 104 | { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 105 | sys_info_t sys_info; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 106 | #ifdef CONFIG_MPC8544 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | volatile ccsr_gur_t *gur = (void *) CONFIG_SYS_MPC85xx_GUTS_ADDR; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 108 | #endif |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 109 | #if defined(CONFIG_CPM2) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 110 | volatile ccsr_cpm_t *cpm = (ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 111 | uint sccr, dfbrg; |
| 112 | |
| 113 | /* set VCO = 4 * BRG */ |
Kumar Gala | aafeefb | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 114 | cpm->im_cpm_intctl.sccr &= 0xfffffffc; |
| 115 | sccr = cpm->im_cpm_intctl.sccr; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 116 | dfbrg = (sccr & SCCR_DFBRG_MSK) >> SCCR_DFBRG_SHIFT; |
| 117 | #endif |
| 118 | get_sys_info (&sys_info); |
Haiying Wang | 2fc7eb0 | 2009-01-15 11:58:35 -0500 | [diff] [blame] | 119 | gd->cpu_clk = sys_info.freqProcessor[0]; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 120 | gd->bus_clk = sys_info.freqSystemBus; |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 121 | gd->mem_clk = sys_info.freqDDRBus; |
Trent Piepho | ada591d | 2008-12-03 15:16:37 -0800 | [diff] [blame] | 122 | gd->lbc_clk = sys_info.freqLocalBus; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 123 | |
Haiying Wang | b3d7f20 | 2009-05-20 12:30:29 -0400 | [diff] [blame] | 124 | #ifdef CONFIG_QE |
| 125 | gd->qe_clk = sys_info.freqQE; |
| 126 | gd->brg_clk = gd->qe_clk / 2; |
| 127 | #endif |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 128 | /* |
| 129 | * The base clock for I2C depends on the actual SOC. Unfortunately, |
| 130 | * there is no pattern that can be used to determine the frequency, so |
| 131 | * the only choice is to look up the actual SOC number and use the value |
| 132 | * for that SOC. This information is taken from application note |
| 133 | * AN2919. |
| 134 | */ |
| 135 | #if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \ |
| 136 | defined(CONFIG_MPC8560) || defined(CONFIG_MPC8555) |
Timur Tabi | 943afa2 | 2008-01-09 14:35:26 -0600 | [diff] [blame] | 137 | gd->i2c1_clk = sys_info.freqSystemBus; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 138 | #elif defined(CONFIG_MPC8544) |
| 139 | /* |
| 140 | * On the 8544, the I2C clock is the same as the SEC clock. This can be |
| 141 | * either CCB/2 or CCB/3, depending on the value of cfg_sec_freq. See |
| 142 | * 4.4.3.3 of the 8544 RM. Note that this might actually work for all |
| 143 | * 85xx, but only the 8544 has cfg_sec_freq, so it's unknown if the |
| 144 | * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544. |
| 145 | */ |
| 146 | if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG) |
Wolfgang Grandegger | dffd244 | 2008-09-30 10:55:57 +0200 | [diff] [blame] | 147 | gd->i2c1_clk = sys_info.freqSystemBus / 3; |
Kumar Gala | 42653b8 | 2008-10-16 21:58:49 -0500 | [diff] [blame] | 148 | else |
| 149 | gd->i2c1_clk = sys_info.freqSystemBus / 2; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 150 | #else |
| 151 | /* Most 85xx SOCs use CCB/2, so this is the default behavior. */ |
| 152 | gd->i2c1_clk = sys_info.freqSystemBus / 2; |
| 153 | #endif |
| 154 | gd->i2c2_clk = gd->i2c1_clk; |
Timur Tabi | 943afa2 | 2008-01-09 14:35:26 -0600 | [diff] [blame] | 155 | |
Kumar Gala | ef50d6c | 2008-08-12 11:14:19 -0500 | [diff] [blame] | 156 | #if defined(CONFIG_MPC8536) |
| 157 | gd->sdhc_clk = gd->bus_clk / 2; |
| 158 | #endif |
| 159 | |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 160 | #if defined(CONFIG_CPM2) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 161 | gd->vco_out = 2*sys_info.freqSystemBus; |
| 162 | gd->cpm_clk = gd->vco_out / 2; |
| 163 | gd->scc_clk = gd->vco_out / 4; |
| 164 | gd->brg_clk = gd->vco_out / (1 << (2 * (dfbrg + 1))); |
| 165 | #endif |
| 166 | |
| 167 | if(gd->cpu_clk != 0) return (0); |
| 168 | else return (1); |
| 169 | } |
| 170 | |
| 171 | |
| 172 | /******************************************** |
| 173 | * get_bus_freq |
| 174 | * return system bus freq in Hz |
| 175 | *********************************************/ |
| 176 | ulong get_bus_freq (ulong dummy) |
| 177 | { |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 178 | return gd->bus_clk; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 179 | } |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 180 | |
| 181 | /******************************************** |
| 182 | * get_ddr_freq |
| 183 | * return ddr bus freq in Hz |
| 184 | *********************************************/ |
| 185 | ulong get_ddr_freq (ulong dummy) |
| 186 | { |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 187 | return gd->mem_clk; |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 188 | } |