wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 2 | * Copyright 2004 Freescale Semiconductor. |
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> |
| 31 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 34 | /* --------------------------------------------------------------- */ |
| 35 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 36 | void get_sys_info (sys_info_t * sysInfo) |
| 37 | { |
Kumar Gala | f59b55a | 2007-11-27 23:25:02 -0600 | [diff] [blame] | 38 | volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR); |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 39 | uint plat_ratio,e500_ratio,half_freqSystemBus; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 40 | |
| 41 | plat_ratio = (gur->porpllsr) & 0x0000003e; |
| 42 | plat_ratio >>= 1; |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 43 | sysInfo->freqSystemBus = plat_ratio * CONFIG_SYS_CLK_FREQ; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 44 | e500_ratio = (gur->porpllsr) & 0x003f0000; |
| 45 | e500_ratio >>= 16; |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 46 | |
| 47 | /* Divide before multiply to avoid integer |
| 48 | * overflow for processor speeds above 2GHz */ |
| 49 | half_freqSystemBus = sysInfo->freqSystemBus/2; |
| 50 | sysInfo->freqProcessor = e500_ratio*half_freqSystemBus; |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 51 | |
| 52 | /* Note: freqDDRBus is the MCLK frequency, not the data rate. */ |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 53 | sysInfo->freqDDRBus = sysInfo->freqSystemBus; |
| 54 | |
| 55 | #ifdef CONFIG_DDR_CLK_FREQ |
| 56 | { |
Jason Jin | c039111 | 2008-09-27 14:40:57 +0800 | [diff] [blame] | 57 | u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO) |
| 58 | >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT; |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 59 | if (ddr_ratio != 0x7) |
| 60 | sysInfo->freqDDRBus = ddr_ratio * CONFIG_DDR_CLK_FREQ; |
| 61 | } |
| 62 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Andy Fleming | 66ed6cc | 2007-04-23 02:37:47 -0500 | [diff] [blame] | 65 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 66 | int get_clocks (void) |
| 67 | { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 68 | sys_info_t sys_info; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 69 | #ifdef CONFIG_MPC8544 |
| 70 | volatile ccsr_gur_t *gur = (void *) CFG_MPC85xx_GUTS_ADDR; |
| 71 | #endif |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 72 | #if defined(CONFIG_CPM2) |
Kumar Gala | aafeefb | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 73 | volatile ccsr_cpm_t *cpm = (ccsr_cpm_t *)CFG_MPC85xx_CPM_ADDR; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 74 | uint sccr, dfbrg; |
| 75 | |
| 76 | /* set VCO = 4 * BRG */ |
Kumar Gala | aafeefb | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 77 | cpm->im_cpm_intctl.sccr &= 0xfffffffc; |
| 78 | sccr = cpm->im_cpm_intctl.sccr; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 79 | dfbrg = (sccr & SCCR_DFBRG_MSK) >> SCCR_DFBRG_SHIFT; |
| 80 | #endif |
| 81 | get_sys_info (&sys_info); |
| 82 | gd->cpu_clk = sys_info.freqProcessor; |
| 83 | gd->bus_clk = sys_info.freqSystemBus; |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 84 | gd->mem_clk = sys_info.freqDDRBus; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 85 | |
| 86 | /* |
| 87 | * The base clock for I2C depends on the actual SOC. Unfortunately, |
| 88 | * there is no pattern that can be used to determine the frequency, so |
| 89 | * the only choice is to look up the actual SOC number and use the value |
| 90 | * for that SOC. This information is taken from application note |
| 91 | * AN2919. |
| 92 | */ |
| 93 | #if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \ |
| 94 | defined(CONFIG_MPC8560) || defined(CONFIG_MPC8555) |
Timur Tabi | 943afa2 | 2008-01-09 14:35:26 -0600 | [diff] [blame] | 95 | gd->i2c1_clk = sys_info.freqSystemBus; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 96 | #elif defined(CONFIG_MPC8544) |
| 97 | /* |
| 98 | * On the 8544, the I2C clock is the same as the SEC clock. This can be |
| 99 | * either CCB/2 or CCB/3, depending on the value of cfg_sec_freq. See |
| 100 | * 4.4.3.3 of the 8544 RM. Note that this might actually work for all |
| 101 | * 85xx, but only the 8544 has cfg_sec_freq, so it's unknown if the |
| 102 | * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544. |
| 103 | */ |
| 104 | if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG) |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 105 | gd->i2c1_clk = sys_info.freqSystemBus / 2; |
Wolfgang Grandegger | dffd244 | 2008-09-30 10:55:57 +0200 | [diff] [blame^] | 106 | else |
| 107 | gd->i2c1_clk = sys_info.freqSystemBus / 3; |
Timur Tabi | 88353a9 | 2008-04-04 11:15:58 -0500 | [diff] [blame] | 108 | #else |
| 109 | /* Most 85xx SOCs use CCB/2, so this is the default behavior. */ |
| 110 | gd->i2c1_clk = sys_info.freqSystemBus / 2; |
| 111 | #endif |
| 112 | gd->i2c2_clk = gd->i2c1_clk; |
Timur Tabi | 943afa2 | 2008-01-09 14:35:26 -0600 | [diff] [blame] | 113 | |
Kumar Gala | ef50d6c | 2008-08-12 11:14:19 -0500 | [diff] [blame] | 114 | #if defined(CONFIG_MPC8536) |
| 115 | gd->sdhc_clk = gd->bus_clk / 2; |
| 116 | #endif |
| 117 | |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 118 | #if defined(CONFIG_CPM2) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 119 | gd->vco_out = 2*sys_info.freqSystemBus; |
| 120 | gd->cpm_clk = gd->vco_out / 2; |
| 121 | gd->scc_clk = gd->vco_out / 4; |
| 122 | gd->brg_clk = gd->vco_out / (1 << (2 * (dfbrg + 1))); |
| 123 | #endif |
| 124 | |
| 125 | if(gd->cpu_clk != 0) return (0); |
| 126 | else return (1); |
| 127 | } |
| 128 | |
| 129 | |
| 130 | /******************************************** |
| 131 | * get_bus_freq |
| 132 | * return system bus freq in Hz |
| 133 | *********************************************/ |
| 134 | ulong get_bus_freq (ulong dummy) |
| 135 | { |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 136 | return gd->bus_clk; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 137 | } |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 138 | |
| 139 | /******************************************** |
| 140 | * get_ddr_freq |
| 141 | * return ddr bus freq in Hz |
| 142 | *********************************************/ |
| 143 | ulong get_ddr_freq (ulong dummy) |
| 144 | { |
James Yang | a3e77fa | 2008-02-08 18:05:08 -0600 | [diff] [blame] | 145 | return gd->mem_clk; |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 146 | } |