blob: 4b8d928956afdfe26cffba7fd4d9d02c6c0146bb [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
Dipen Dudhat5d51bf92011-01-19 12:46:27 +05302 * Copyright 2004, 2007-2011 Freescale Semiconductor, Inc.
Kumar Galadccd9e32009-03-19 02:46:19 -05003 *
wdenk9c53f402003-10-15 23:53:47 +00004 * (C) Copyright 2003 Motorola Inc.
5 * Xianghua Xiao, (X.Xiao@motorola.com)
6 *
7 * (C) Copyright 2000
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
wdenk9c53f402003-10-15 23:53:47 +000011 */
12
13#include <common.h>
14#include <ppc_asm.tmpl>
Haiying Wang8cb2af72011-02-11 01:25:30 -060015#include <linux/compiler.h>
wdenk9c53f402003-10-15 23:53:47 +000016#include <asm/processor.h>
Trent Piepho0b691fc2008-12-03 15:16:37 -080017#include <asm/io.h>
wdenk9c53f402003-10-15 23:53:47 +000018
Wolfgang Denk6405a152006-03-31 18:32:53 +020019DECLARE_GLOBAL_DATA_PTR;
20
wdenk9c53f402003-10-15 23:53:47 +000021/* --------------------------------------------------------------- */
22
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053023void get_sys_info(sys_info_t *sys_info)
wdenk9c53f402003-10-15 23:53:47 +000024{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020025 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala17ec6fa2012-10-08 07:44:06 +000026#ifdef CONFIG_FSL_IFC
27 struct fsl_ifc *ifc_regs = (void *)CONFIG_SYS_IFC_ADDR;
28 u32 ccr;
29#endif
Kumar Galadccd9e32009-03-19 02:46:19 -050030#ifdef CONFIG_FSL_CORENET
31 volatile ccsr_clk_t *clk = (void *)(CONFIG_SYS_FSL_CORENET_CLK_ADDR);
Timur Tabi47289422011-08-05 16:15:24 -050032 unsigned int cpu;
Kumar Galadccd9e32009-03-19 02:46:19 -050033
34 const u8 core_cplx_PLL[16] = {
35 [ 0] = 0, /* CC1 PPL / 1 */
36 [ 1] = 0, /* CC1 PPL / 2 */
37 [ 2] = 0, /* CC1 PPL / 4 */
38 [ 4] = 1, /* CC2 PPL / 1 */
39 [ 5] = 1, /* CC2 PPL / 2 */
40 [ 6] = 1, /* CC2 PPL / 4 */
41 [ 8] = 2, /* CC3 PPL / 1 */
42 [ 9] = 2, /* CC3 PPL / 2 */
43 [10] = 2, /* CC3 PPL / 4 */
44 [12] = 3, /* CC4 PPL / 1 */
45 [13] = 3, /* CC4 PPL / 2 */
46 [14] = 3, /* CC4 PPL / 4 */
47 };
48
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053049 const u8 core_cplx_pll_div[16] = {
Kumar Galadccd9e32009-03-19 02:46:19 -050050 [ 0] = 1, /* CC1 PPL / 1 */
51 [ 1] = 2, /* CC1 PPL / 2 */
52 [ 2] = 4, /* CC1 PPL / 4 */
53 [ 4] = 1, /* CC2 PPL / 1 */
54 [ 5] = 2, /* CC2 PPL / 2 */
55 [ 6] = 4, /* CC2 PPL / 4 */
56 [ 8] = 1, /* CC3 PPL / 1 */
57 [ 9] = 2, /* CC3 PPL / 2 */
58 [10] = 4, /* CC3 PPL / 4 */
59 [12] = 1, /* CC4 PPL / 1 */
60 [13] = 2, /* CC4 PPL / 2 */
61 [14] = 4, /* CC4 PPL / 4 */
62 };
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053063 uint i, freq_cc_pll[6], rcw_tmp;
York Sund7778f72012-10-08 07:44:11 +000064 uint ratio[6];
Kumar Galadccd9e32009-03-19 02:46:19 -050065 unsigned long sysclk = CONFIG_SYS_CLK_FREQ;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080066 uint mem_pll_rat;
Kumar Galadccd9e32009-03-19 02:46:19 -050067
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053068 sys_info->freq_systembus = sysclk;
York Sun3b5179f2012-10-08 07:44:31 +000069#ifdef CONFIG_DDR_CLK_FREQ
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053070 sys_info->freq_ddrbus = CONFIG_DDR_CLK_FREQ;
York Sun3b5179f2012-10-08 07:44:31 +000071#else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053072 sys_info->freq_ddrbus = sysclk;
York Sun3b5179f2012-10-08 07:44:31 +000073#endif
Kumar Galadccd9e32009-03-19 02:46:19 -050074
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053075 sys_info->freq_systembus *= (in_be32(&gur->rcwsr[0]) >> 25) & 0x1f;
York Sunb8a076b2012-10-08 07:44:09 +000076 mem_pll_rat = (in_be32(&gur->rcwsr[0]) >>
77 FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT)
78 & FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080079 if (mem_pll_rat > 2)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053080 sys_info->freq_ddrbus *= mem_pll_rat;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080081 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053082 sys_info->freq_ddrbus = sys_info->freq_systembus * mem_pll_rat;
Kumar Galadccd9e32009-03-19 02:46:19 -050083
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080084 ratio[0] = (in_be32(&clk->pllc1gsr) >> 1) & 0x3f;
85 ratio[1] = (in_be32(&clk->pllc2gsr) >> 1) & 0x3f;
86 ratio[2] = (in_be32(&clk->pllc3gsr) >> 1) & 0x3f;
87 ratio[3] = (in_be32(&clk->pllc4gsr) >> 1) & 0x3f;
York Sund7778f72012-10-08 07:44:11 +000088 ratio[4] = (in_be32(&clk->pllc5gsr) >> 1) & 0x3f;
89 ratio[5] = (in_be32(&clk->pllc6gsr) >> 1) & 0x3f;
90 for (i = 0; i < 6; i++) {
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080091 if (ratio[i] > 4)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053092 freq_cc_pll[i] = sysclk * ratio[i];
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080093 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053094 freq_cc_pll[i] = sys_info->freq_systembus * ratio[i];
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080095 }
York Sund7778f72012-10-08 07:44:11 +000096#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
97 /*
98 * Each cluster has up to 4 cores, sharing the same PLL selection.
York Sunaa150bb2013-03-25 07:40:07 +000099 * The cluster assignment is fixed per SoC. PLL1, PLL2, PLL3 are
100 * cluster group A, feeding cores on cluster 1 and cluster 2.
101 * PLL4, PLL5, PLL6 are cluster group B, feeding cores on cluster 3
102 * and cluster 4 if existing.
York Sund7778f72012-10-08 07:44:11 +0000103 */
Timur Tabi47289422011-08-05 16:15:24 -0500104 for_each_cpu(i, cpu, cpu_numcores(), cpu_mask()) {
York Sunaa150bb2013-03-25 07:40:07 +0000105 int cluster = fsl_qoriq_core_to_cluster(cpu);
106 u32 c_pll_sel = (in_be32(&clk->clkcsr[cluster].clkcncsr) >> 27)
York Sund7778f72012-10-08 07:44:11 +0000107 & 0xf;
Kumar Galadccd9e32009-03-19 02:46:19 -0500108 u32 cplx_pll = core_cplx_PLL[c_pll_sel];
York Sund7778f72012-10-08 07:44:11 +0000109 if (cplx_pll > 3)
110 printf("Unsupported architecture configuration"
111 " in function %s\n", __func__);
York Sunaa150bb2013-03-25 07:40:07 +0000112 cplx_pll += (cluster / 2) * 3;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530113 sys_info->freq_processor[cpu] =
114 freq_cc_pll[cplx_pll] / core_cplx_pll_div[c_pll_sel];
Kumar Galadccd9e32009-03-19 02:46:19 -0500115 }
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000116#ifdef CONFIG_PPC_B4860
117#define FM1_CLK_SEL 0xe0000000
118#define FM1_CLK_SHIFT 29
119#else
York Sund7778f72012-10-08 07:44:11 +0000120#define PME_CLK_SEL 0xe0000000
121#define PME_CLK_SHIFT 29
122#define FM1_CLK_SEL 0x1c000000
123#define FM1_CLK_SHIFT 26
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000124#endif
York Sund7778f72012-10-08 07:44:11 +0000125 rcw_tmp = in_be32(&gur->rcwsr[7]);
126
127#ifdef CONFIG_SYS_DPAA_PME
128 switch ((rcw_tmp & PME_CLK_SEL) >> PME_CLK_SHIFT) {
129 case 1:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530130 sys_info->freq_pme = freq_cc_pll[0];
York Sund7778f72012-10-08 07:44:11 +0000131 break;
132 case 2:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530133 sys_info->freq_pme = freq_cc_pll[0] / 2;
York Sund7778f72012-10-08 07:44:11 +0000134 break;
135 case 3:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530136 sys_info->freq_pme = freq_cc_pll[0] / 3;
York Sund7778f72012-10-08 07:44:11 +0000137 break;
138 case 4:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530139 sys_info->freq_pme = freq_cc_pll[0] / 4;
York Sund7778f72012-10-08 07:44:11 +0000140 break;
141 case 6:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530142 sys_info->freq_pme = freq_cc_pll[1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000143 break;
144 case 7:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530145 sys_info->freq_pme = freq_cc_pll[1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000146 break;
147 default:
148 printf("Error: Unknown PME clock select!\n");
149 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530150 sys_info->freq_pme = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000151 break;
152
153 }
154#endif
155
Haiying Wang09d0aa92012-10-11 07:13:39 +0000156#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530157 sys_info->freq_qman = sys_info->freq_systembus / 2;
Haiying Wang09d0aa92012-10-11 07:13:39 +0000158#endif
159
York Sund7778f72012-10-08 07:44:11 +0000160#ifdef CONFIG_SYS_DPAA_FMAN
161 switch ((rcw_tmp & FM1_CLK_SEL) >> FM1_CLK_SHIFT) {
162 case 1:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530163 sys_info->freq_fman[0] = freq_cc_pll[3];
York Sund7778f72012-10-08 07:44:11 +0000164 break;
165 case 2:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530166 sys_info->freq_fman[0] = freq_cc_pll[3] / 2;
York Sund7778f72012-10-08 07:44:11 +0000167 break;
168 case 3:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530169 sys_info->freq_fman[0] = freq_cc_pll[3] / 3;
York Sund7778f72012-10-08 07:44:11 +0000170 break;
171 case 4:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530172 sys_info->freq_fman[0] = freq_cc_pll[3] / 4;
York Sund7778f72012-10-08 07:44:11 +0000173 break;
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000174 case 5:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530175 sys_info->freq_fman[0] = sys_info->freq_systembus;
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000176 break;
York Sund7778f72012-10-08 07:44:11 +0000177 case 6:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530178 sys_info->freq_fman[0] = freq_cc_pll[4] / 2;
York Sund7778f72012-10-08 07:44:11 +0000179 break;
180 case 7:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530181 sys_info->freq_fman[0] = freq_cc_pll[4] / 3;
York Sund7778f72012-10-08 07:44:11 +0000182 break;
183 default:
184 printf("Error: Unknown FMan1 clock select!\n");
185 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530186 sys_info->freq_fman[0] = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000187 break;
188 }
189#if (CONFIG_SYS_NUM_FMAN) == 2
190#define FM2_CLK_SEL 0x00000038
191#define FM2_CLK_SHIFT 3
192 rcw_tmp = in_be32(&gur->rcwsr[15]);
193 switch ((rcw_tmp & FM2_CLK_SEL) >> FM2_CLK_SHIFT) {
194 case 1:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530195 sys_info->freq_fman[1] = freq_cc_pll[4];
York Sund7778f72012-10-08 07:44:11 +0000196 break;
197 case 2:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530198 sys_info->freq_fman[1] = freq_cc_pll[4] / 2;
York Sund7778f72012-10-08 07:44:11 +0000199 break;
200 case 3:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530201 sys_info->freq_fman[1] = freq_cc_pll[4] / 3;
York Sund7778f72012-10-08 07:44:11 +0000202 break;
203 case 4:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530204 sys_info->freq_fman[1] = freq_cc_pll[4] / 4;
York Sund7778f72012-10-08 07:44:11 +0000205 break;
206 case 6:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530207 sys_info->freq_fman[1] = freq_cc_pll[3] / 2;
York Sund7778f72012-10-08 07:44:11 +0000208 break;
209 case 7:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530210 sys_info->freq_fman[1] = freq_cc_pll[3] / 3;
York Sund7778f72012-10-08 07:44:11 +0000211 break;
212 default:
213 printf("Error: Unknown FMan2 clock select!\n");
214 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530215 sys_info->freq_fman[1] = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000216 break;
217 }
218#endif /* CONFIG_SYS_NUM_FMAN == 2 */
219#endif /* CONFIG_SYS_DPAA_FMAN */
Kumar Galadccd9e32009-03-19 02:46:19 -0500220
York Sund7778f72012-10-08 07:44:11 +0000221#else /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
222
223 for_each_cpu(i, cpu, cpu_numcores(), cpu_mask()) {
York Sunaa150bb2013-03-25 07:40:07 +0000224 u32 c_pll_sel = (in_be32(&clk->clkcsr[cpu].clkcncsr) >> 27)
225 & 0xf;
York Sund7778f72012-10-08 07:44:11 +0000226 u32 cplx_pll = core_cplx_PLL[c_pll_sel];
227
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530228 sys_info->freq_processor[cpu] =
229 freq_cc_pll[cplx_pll] / core_cplx_pll_div[c_pll_sel];
York Sund7778f72012-10-08 07:44:11 +0000230 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500231#define PME_CLK_SEL 0x80000000
232#define FM1_CLK_SEL 0x40000000
233#define FM2_CLK_SEL 0x20000000
Kumar Gala3842bb52011-02-16 02:03:29 -0600234#define HWA_ASYNC_DIV 0x04000000
235#if (CONFIG_SYS_FSL_NUM_CC_PLLS == 2)
236#define HWA_CC_PLL 1
Timur Tabid5e13882012-10-05 11:09:19 +0000237#elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 3)
238#define HWA_CC_PLL 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600239#elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 4)
Wolfgang Denk80f70212011-05-19 22:21:41 +0200240#define HWA_CC_PLL 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600241#else
242#error CONFIG_SYS_FSL_NUM_CC_PLLS not set or unknown case
243#endif
Kumar Galadccd9e32009-03-19 02:46:19 -0500244 rcw_tmp = in_be32(&gur->rcwsr[7]);
245
246#ifdef CONFIG_SYS_DPAA_PME
Kumar Gala3842bb52011-02-16 02:03:29 -0600247 if (rcw_tmp & PME_CLK_SEL) {
248 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530249 sys_info->freq_pme = freq_cc_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600250 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530251 sys_info->freq_pme = freq_cc_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600252 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530253 sys_info->freq_pme = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600254 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500255#endif
256
257#ifdef CONFIG_SYS_DPAA_FMAN
Kumar Gala3842bb52011-02-16 02:03:29 -0600258 if (rcw_tmp & FM1_CLK_SEL) {
259 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530260 sys_info->freq_fman[0] = freq_cc_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600261 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530262 sys_info->freq_fman[0] = freq_cc_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600263 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530264 sys_info->freq_fman[0] = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600265 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500266#if (CONFIG_SYS_NUM_FMAN) == 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600267 if (rcw_tmp & FM2_CLK_SEL) {
268 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530269 sys_info->freq_fman[1] = freq_cc_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600270 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530271 sys_info->freq_fman[1] = freq_cc_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600272 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530273 sys_info->freq_fman[1] = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600274 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500275#endif
276#endif
277
Shaohui Xie835c9ad2013-03-25 07:33:25 +0000278#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530279 sys_info->freq_qman = sys_info->freq_systembus / 2;
Shaohui Xie835c9ad2013-03-25 07:33:25 +0000280#endif
281
York Sund7778f72012-10-08 07:44:11 +0000282#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
283
284#else /* CONFIG_FSL_CORENET */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530285 uint plat_ratio, e500_ratio, half_freq_systembus;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500286 int i;
Haiying Wang61414682009-05-20 12:30:29 -0400287#ifdef CONFIG_QE
Haiying Wang8cb2af72011-02-11 01:25:30 -0600288 __maybe_unused u32 qe_ratio;
Haiying Wang61414682009-05-20 12:30:29 -0400289#endif
wdenk9c53f402003-10-15 23:53:47 +0000290
291 plat_ratio = (gur->porpllsr) & 0x0000003e;
292 plat_ratio >>= 1;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530293 sys_info->freq_systembus = plat_ratio * CONFIG_SYS_CLK_FREQ;
Andy Fleming6d972762007-04-23 02:37:47 -0500294
295 /* Divide before multiply to avoid integer
296 * overflow for processor speeds above 2GHz */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530297 half_freq_systembus = sys_info->freq_systembus/2;
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530298 for (i = 0; i < cpu_numcores(); i++) {
Haiying Wangbb8aea72009-01-15 11:58:35 -0500299 e500_ratio = ((gur->porpllsr) >> (i * 8 + 16)) & 0x3f;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530300 sys_info->freq_processor[i] = e500_ratio * half_freq_systembus;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500301 }
James Yangd1d51ad2008-02-08 18:05:08 -0600302
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530303 /* Note: freq_ddrbus is the MCLK frequency, not the data rate. */
304 sys_info->freq_ddrbus = sys_info->freq_systembus;
Kumar Gala07db1702007-12-07 04:59:26 -0600305
306#ifdef CONFIG_DDR_CLK_FREQ
307 {
Jason Jinbfcd6c32008-09-27 14:40:57 +0800308 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
309 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala07db1702007-12-07 04:59:26 -0600310 if (ddr_ratio != 0x7)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530311 sys_info->freq_ddrbus = ddr_ratio * CONFIG_DDR_CLK_FREQ;
Kumar Gala07db1702007-12-07 04:59:26 -0600312 }
313#endif
Trent Piepho0b691fc2008-12-03 15:16:37 -0800314
Haiying Wang61414682009-05-20 12:30:29 -0400315#ifdef CONFIG_QE
York Sun6bf020a2012-08-10 11:07:26 +0000316#if defined(CONFIG_P1012) || defined(CONFIG_P1021) || defined(CONFIG_P1025)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530317 sys_info->freq_qe = sys_info->freq_systembus;
Haiying Wang8cb2af72011-02-11 01:25:30 -0600318#else
Haiying Wang61414682009-05-20 12:30:29 -0400319 qe_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_QE_RATIO)
320 >> MPC85xx_PORPLLSR_QE_RATIO_SHIFT;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530321 sys_info->freq_qe = qe_ratio * CONFIG_SYS_CLK_FREQ;
Haiying Wang61414682009-05-20 12:30:29 -0400322#endif
Haiying Wang8cb2af72011-02-11 01:25:30 -0600323#endif
Haiying Wang325a12f2011-01-20 22:26:31 +0000324
325#ifdef CONFIG_SYS_DPAA_FMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530326 sys_info->freq_fman[0] = sys_info->freq_systembus;
Haiying Wang325a12f2011-01-20 22:26:31 +0000327#endif
328
329#endif /* CONFIG_FSL_CORENET */
Haiying Wang61414682009-05-20 12:30:29 -0400330
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530331#if defined(CONFIG_FSL_LBC)
York Sund7778f72012-10-08 07:44:11 +0000332 uint lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800333#if defined(CONFIG_SYS_LBC_LCRR)
334 /* We will program LCRR to this value later */
335 lcrr_div = CONFIG_SYS_LBC_LCRR & LCRR_CLKDIV;
336#else
Becky Bruce0d4cee12010-06-17 11:37:20 -0500337 lcrr_div = in_be32(&(LBC_BASE_ADDR)->lcrr) & LCRR_CLKDIV;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800338#endif
339 if (lcrr_div == 2 || lcrr_div == 4 || lcrr_div == 8) {
Dave Liud8cb9e42009-11-17 20:49:05 +0800340#if defined(CONFIG_FSL_CORENET)
341 /* If this is corenet based SoC, bit-representation
342 * for four times the clock divider values.
343 */
344 lcrr_div *= 4;
345#elif !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8541) && \
Trent Piepho0b691fc2008-12-03 15:16:37 -0800346 !defined(CONFIG_MPC8555) && !defined(CONFIG_MPC8560)
347 /*
348 * Yes, the entire PQ38 family use the same
349 * bit-representation for twice the clock divider values.
350 */
351 lcrr_div *= 2;
352#endif
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530353 sys_info->freq_localbus = sys_info->freq_systembus / lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800354 } else {
355 /* In case anyone cares what the unknown value is */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530356 sys_info->freq_localbus = lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800357 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530358#endif
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000359
360#if defined(CONFIG_FSL_IFC)
361 ccr = in_be32(&ifc_regs->ifc_ccr);
362 ccr = ((ccr & IFC_CCR_CLK_DIV_MASK) >> IFC_CCR_CLK_DIV_SHIFT) + 1;
363
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530364 sys_info->freq_localbus = sys_info->freq_systembus / ccr;
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000365#endif
wdenk9c53f402003-10-15 23:53:47 +0000366}
367
Andy Fleming6d972762007-04-23 02:37:47 -0500368
wdenk9c53f402003-10-15 23:53:47 +0000369int get_clocks (void)
370{
wdenk9c53f402003-10-15 23:53:47 +0000371 sys_info_t sys_info;
Timur Tabi44befe02008-04-04 11:15:58 -0500372#ifdef CONFIG_MPC8544
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200373 volatile ccsr_gur_t *gur = (void *) CONFIG_SYS_MPC85xx_GUTS_ADDR;
Timur Tabi44befe02008-04-04 11:15:58 -0500374#endif
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500375#if defined(CONFIG_CPM2)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200376 volatile ccsr_cpm_t *cpm = (ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR;
wdenk9c53f402003-10-15 23:53:47 +0000377 uint sccr, dfbrg;
378
379 /* set VCO = 4 * BRG */
Kumar Galacd113a02007-11-28 00:36:33 -0600380 cpm->im_cpm_intctl.sccr &= 0xfffffffc;
381 sccr = cpm->im_cpm_intctl.sccr;
wdenk9c53f402003-10-15 23:53:47 +0000382 dfbrg = (sccr & SCCR_DFBRG_MSK) >> SCCR_DFBRG_SHIFT;
383#endif
384 get_sys_info (&sys_info);
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530385 gd->cpu_clk = sys_info.freq_processor[0];
386 gd->bus_clk = sys_info.freq_systembus;
387 gd->mem_clk = sys_info.freq_ddrbus;
388 gd->arch.lbc_clk = sys_info.freq_localbus;
Timur Tabi44befe02008-04-04 11:15:58 -0500389
Haiying Wang61414682009-05-20 12:30:29 -0400390#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530391 gd->arch.qe_clk = sys_info.freq_qe;
Simon Glass8518b172012-12-13 20:48:50 +0000392 gd->arch.brg_clk = gd->arch.qe_clk / 2;
Haiying Wang61414682009-05-20 12:30:29 -0400393#endif
Timur Tabi44befe02008-04-04 11:15:58 -0500394 /*
395 * The base clock for I2C depends on the actual SOC. Unfortunately,
396 * there is no pattern that can be used to determine the frequency, so
397 * the only choice is to look up the actual SOC number and use the value
398 * for that SOC. This information is taken from application note
399 * AN2919.
400 */
401#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
Tang Yuantiana2f72622013-09-06 10:45:40 +0800402 defined(CONFIG_MPC8560) || defined(CONFIG_MPC8555) || \
403 defined(CONFIG_P1022)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530404 gd->arch.i2c1_clk = sys_info.freq_systembus;
Timur Tabi44befe02008-04-04 11:15:58 -0500405#elif defined(CONFIG_MPC8544)
406 /*
407 * On the 8544, the I2C clock is the same as the SEC clock. This can be
408 * either CCB/2 or CCB/3, depending on the value of cfg_sec_freq. See
409 * 4.4.3.3 of the 8544 RM. Note that this might actually work for all
410 * 85xx, but only the 8544 has cfg_sec_freq, so it's unknown if the
411 * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544.
412 */
413 if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530414 gd->arch.i2c1_clk = sys_info.freq_systembus / 3;
Kumar Gala9632f662008-10-16 21:58:49 -0500415 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530416 gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
Timur Tabi44befe02008-04-04 11:15:58 -0500417#else
418 /* Most 85xx SOCs use CCB/2, so this is the default behavior. */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530419 gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
Timur Tabi44befe02008-04-04 11:15:58 -0500420#endif
Simon Glassc2baaec2012-12-13 20:48:49 +0000421 gd->arch.i2c2_clk = gd->arch.i2c1_clk;
Timur Tabic1499f482008-01-09 14:35:26 -0600422
Dipen Dudhat9af188d2009-09-01 17:27:00 +0530423#if defined(CONFIG_FSL_ESDHC)
Priyanka Jaince0397b2011-02-08 15:45:25 +0530424#if defined(CONFIG_MPC8569) || defined(CONFIG_P1010) ||\
425 defined(CONFIG_P1014)
Simon Glass9e247d12012-12-13 20:49:05 +0000426 gd->arch.sdhc_clk = gd->bus_clk;
Anton Vorontsovda225942009-10-15 17:47:06 +0400427#else
Simon Glass9e247d12012-12-13 20:49:05 +0000428 gd->arch.sdhc_clk = gd->bus_clk / 2;
Kumar Galacd777282008-08-12 11:14:19 -0500429#endif
Anton Vorontsovda225942009-10-15 17:47:06 +0400430#endif /* defined(CONFIG_FSL_ESDHC) */
Kumar Galacd777282008-08-12 11:14:19 -0500431
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500432#if defined(CONFIG_CPM2)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530433 gd->arch.vco_out = 2*sys_info.freq_systembus;
Simon Glass44ea8512012-12-13 20:48:46 +0000434 gd->arch.cpm_clk = gd->arch.vco_out / 2;
435 gd->arch.scc_clk = gd->arch.vco_out / 4;
436 gd->arch.brg_clk = gd->arch.vco_out / (1 << (2 * (dfbrg + 1)));
wdenk9c53f402003-10-15 23:53:47 +0000437#endif
438
439 if(gd->cpu_clk != 0) return (0);
440 else return (1);
441}
442
443
444/********************************************
445 * get_bus_freq
446 * return system bus freq in Hz
447 *********************************************/
448ulong get_bus_freq (ulong dummy)
449{
James Yangd1d51ad2008-02-08 18:05:08 -0600450 return gd->bus_clk;
wdenk9c53f402003-10-15 23:53:47 +0000451}
Kumar Gala07db1702007-12-07 04:59:26 -0600452
453/********************************************
454 * get_ddr_freq
455 * return ddr bus freq in Hz
456 *********************************************/
457ulong get_ddr_freq (ulong dummy)
458{
James Yangd1d51ad2008-02-08 18:05:08 -0600459 return gd->mem_clk;
Kumar Gala07db1702007-12-07 04:59:26 -0600460}