blob: d08a8d212d7ddc448bd7bfa2dc7f342a519fb3df [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
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053021
22#ifndef CONFIG_SYS_FSL_NUM_CC_PLLS
23#define CONFIG_SYS_FSL_NUM_CC_PLLS 6
24#endif
wdenk9c53f402003-10-15 23:53:47 +000025/* --------------------------------------------------------------- */
26
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053027void get_sys_info(sys_info_t *sys_info)
wdenk9c53f402003-10-15 23:53:47 +000028{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020029 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala17ec6fa2012-10-08 07:44:06 +000030#ifdef CONFIG_FSL_IFC
31 struct fsl_ifc *ifc_regs = (void *)CONFIG_SYS_IFC_ADDR;
32 u32 ccr;
33#endif
Kumar Galadccd9e32009-03-19 02:46:19 -050034#ifdef CONFIG_FSL_CORENET
35 volatile ccsr_clk_t *clk = (void *)(CONFIG_SYS_FSL_CORENET_CLK_ADDR);
Timur Tabi47289422011-08-05 16:15:24 -050036 unsigned int cpu;
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053037#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
38 int cc_group[12] = CONFIG_SYS_FSL_CLUSTER_CLOCKS;
39#endif
Kumar Galadccd9e32009-03-19 02:46:19 -050040
41 const u8 core_cplx_PLL[16] = {
42 [ 0] = 0, /* CC1 PPL / 1 */
43 [ 1] = 0, /* CC1 PPL / 2 */
44 [ 2] = 0, /* CC1 PPL / 4 */
45 [ 4] = 1, /* CC2 PPL / 1 */
46 [ 5] = 1, /* CC2 PPL / 2 */
47 [ 6] = 1, /* CC2 PPL / 4 */
48 [ 8] = 2, /* CC3 PPL / 1 */
49 [ 9] = 2, /* CC3 PPL / 2 */
50 [10] = 2, /* CC3 PPL / 4 */
51 [12] = 3, /* CC4 PPL / 1 */
52 [13] = 3, /* CC4 PPL / 2 */
53 [14] = 3, /* CC4 PPL / 4 */
54 };
55
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053056 const u8 core_cplx_pll_div[16] = {
Kumar Galadccd9e32009-03-19 02:46:19 -050057 [ 0] = 1, /* CC1 PPL / 1 */
58 [ 1] = 2, /* CC1 PPL / 2 */
59 [ 2] = 4, /* CC1 PPL / 4 */
60 [ 4] = 1, /* CC2 PPL / 1 */
61 [ 5] = 2, /* CC2 PPL / 2 */
62 [ 6] = 4, /* CC2 PPL / 4 */
63 [ 8] = 1, /* CC3 PPL / 1 */
64 [ 9] = 2, /* CC3 PPL / 2 */
65 [10] = 4, /* CC3 PPL / 4 */
66 [12] = 1, /* CC4 PPL / 1 */
67 [13] = 2, /* CC4 PPL / 2 */
68 [14] = 4, /* CC4 PPL / 4 */
69 };
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053070 uint i, freq_c_pll[CONFIG_SYS_FSL_NUM_CC_PLLS];
71#if !defined(CONFIG_FM_PLAT_CLK_DIV) || !defined(CONFIG_PME_PLAT_CLK_DIV)
72 uint rcw_tmp;
73#endif
74 uint ratio[CONFIG_SYS_FSL_NUM_CC_PLLS];
Kumar Galadccd9e32009-03-19 02:46:19 -050075 unsigned long sysclk = CONFIG_SYS_CLK_FREQ;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080076 uint mem_pll_rat;
Kumar Galadccd9e32009-03-19 02:46:19 -050077
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053078 sys_info->freq_systembus = sysclk;
York Sun3b5179f2012-10-08 07:44:31 +000079#ifdef CONFIG_DDR_CLK_FREQ
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053080 sys_info->freq_ddrbus = CONFIG_DDR_CLK_FREQ;
York Sun3b5179f2012-10-08 07:44:31 +000081#else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053082 sys_info->freq_ddrbus = sysclk;
York Sun3b5179f2012-10-08 07:44:31 +000083#endif
Kumar Galadccd9e32009-03-19 02:46:19 -050084
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053085 sys_info->freq_systembus *= (in_be32(&gur->rcwsr[0]) >> 25) & 0x1f;
York Sunb8a076b2012-10-08 07:44:09 +000086 mem_pll_rat = (in_be32(&gur->rcwsr[0]) >>
87 FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT)
88 & FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080089 if (mem_pll_rat > 2)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053090 sys_info->freq_ddrbus *= mem_pll_rat;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080091 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053092 sys_info->freq_ddrbus = sys_info->freq_systembus * mem_pll_rat;
Kumar Galadccd9e32009-03-19 02:46:19 -050093
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053094 for (i = 0; i < CONFIG_SYS_FSL_NUM_CC_PLLS; i++) {
95 ratio[i] = (in_be32(&clk->pllcgsr[i].pllcngsr) >> 1) & 0x3f;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080096 if (ratio[i] > 4)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053097 freq_c_pll[i] = sysclk * ratio[i];
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080098 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053099 freq_c_pll[i] = sys_info->freq_systembus * ratio[i];
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +0800100 }
York Sund7778f72012-10-08 07:44:11 +0000101#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
102 /*
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530103 * As per CHASSIS2 architeture total 12 clusters are posible and
York Sund7778f72012-10-08 07:44:11 +0000104 * Each cluster has up to 4 cores, sharing the same PLL selection.
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530105 * The cluster clock assignment is SoC defined.
106 *
107 * Total 4 clock groups are possible with 3 PLLs each.
108 * as per array indices, clock group A has 0, 1, 2 numbered PLLs &
109 * clock group B has 3, 4, 6 and so on.
110 *
111 * Clock group A having PLL1, PLL2, PLL3, feeding cores of any cluster
112 * depends upon the SoC architeture. Same applies to other
113 * clock groups and clusters.
114 *
York Sund7778f72012-10-08 07:44:11 +0000115 */
Timur Tabi47289422011-08-05 16:15:24 -0500116 for_each_cpu(i, cpu, cpu_numcores(), cpu_mask()) {
York Sunaa150bb2013-03-25 07:40:07 +0000117 int cluster = fsl_qoriq_core_to_cluster(cpu);
118 u32 c_pll_sel = (in_be32(&clk->clkcsr[cluster].clkcncsr) >> 27)
York Sund7778f72012-10-08 07:44:11 +0000119 & 0xf;
Kumar Galadccd9e32009-03-19 02:46:19 -0500120 u32 cplx_pll = core_cplx_PLL[c_pll_sel];
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530121 cplx_pll += cc_group[cluster] - 1;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530122 sys_info->freq_processor[cpu] =
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530123 freq_c_pll[cplx_pll] / core_cplx_pll_div[c_pll_sel];
Kumar Galadccd9e32009-03-19 02:46:19 -0500124 }
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000125#ifdef CONFIG_PPC_B4860
126#define FM1_CLK_SEL 0xe0000000
127#define FM1_CLK_SHIFT 29
128#else
York Sund7778f72012-10-08 07:44:11 +0000129#define PME_CLK_SEL 0xe0000000
130#define PME_CLK_SHIFT 29
131#define FM1_CLK_SEL 0x1c000000
132#define FM1_CLK_SHIFT 26
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000133#endif
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530134#if !defined(CONFIG_FM_PLAT_CLK_DIV) || !defined(CONFIG_PME_PLAT_CLK_DIV)
York Sund7778f72012-10-08 07:44:11 +0000135 rcw_tmp = in_be32(&gur->rcwsr[7]);
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530136#endif
York Sund7778f72012-10-08 07:44:11 +0000137
138#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530139#ifndef CONFIG_PME_PLAT_CLK_DIV
York Sund7778f72012-10-08 07:44:11 +0000140 switch ((rcw_tmp & PME_CLK_SEL) >> PME_CLK_SHIFT) {
141 case 1:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530142 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK];
York Sund7778f72012-10-08 07:44:11 +0000143 break;
144 case 2:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530145 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK] / 2;
York Sund7778f72012-10-08 07:44:11 +0000146 break;
147 case 3:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530148 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK] / 3;
York Sund7778f72012-10-08 07:44:11 +0000149 break;
150 case 4:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530151 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK] / 4;
York Sund7778f72012-10-08 07:44:11 +0000152 break;
153 case 6:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530154 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK + 1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000155 break;
156 case 7:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530157 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK + 1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000158 break;
159 default:
160 printf("Error: Unknown PME clock select!\n");
161 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530162 sys_info->freq_pme = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000163 break;
164
165 }
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530166#else
167 sys_info->freq_pme = sys_info->freq_systembus / CONFIG_SYS_PME_CLK;
168
169#endif
York Sund7778f72012-10-08 07:44:11 +0000170#endif
171
Haiying Wang09d0aa92012-10-11 07:13:39 +0000172#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530173 sys_info->freq_qman = sys_info->freq_systembus / 2;
Haiying Wang09d0aa92012-10-11 07:13:39 +0000174#endif
175
York Sund7778f72012-10-08 07:44:11 +0000176#ifdef CONFIG_SYS_DPAA_FMAN
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530177#ifndef CONFIG_FM_PLAT_CLK_DIV
York Sund7778f72012-10-08 07:44:11 +0000178 switch ((rcw_tmp & FM1_CLK_SEL) >> FM1_CLK_SHIFT) {
179 case 1:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530180 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK];
York Sund7778f72012-10-08 07:44:11 +0000181 break;
182 case 2:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530183 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK] / 2;
York Sund7778f72012-10-08 07:44:11 +0000184 break;
185 case 3:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530186 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK] / 3;
York Sund7778f72012-10-08 07:44:11 +0000187 break;
188 case 4:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530189 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK] / 4;
York Sund7778f72012-10-08 07:44:11 +0000190 break;
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000191 case 5:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530192 sys_info->freq_fman[0] = sys_info->freq_systembus;
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000193 break;
York Sund7778f72012-10-08 07:44:11 +0000194 case 6:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530195 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK + 1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000196 break;
197 case 7:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530198 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK + 1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000199 break;
200 default:
201 printf("Error: Unknown FMan1 clock select!\n");
202 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530203 sys_info->freq_fman[0] = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000204 break;
205 }
206#if (CONFIG_SYS_NUM_FMAN) == 2
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530207#ifdef CONFIG_SYS_FM2_CLK
York Sund7778f72012-10-08 07:44:11 +0000208#define FM2_CLK_SEL 0x00000038
209#define FM2_CLK_SHIFT 3
210 rcw_tmp = in_be32(&gur->rcwsr[15]);
211 switch ((rcw_tmp & FM2_CLK_SEL) >> FM2_CLK_SHIFT) {
212 case 1:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530213 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1];
York Sund7778f72012-10-08 07:44:11 +0000214 break;
215 case 2:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530216 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000217 break;
218 case 3:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530219 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000220 break;
221 case 4:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530222 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1] / 4;
York Sund7778f72012-10-08 07:44:11 +0000223 break;
224 case 6:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530225 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK] / 2;
York Sund7778f72012-10-08 07:44:11 +0000226 break;
227 case 7:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530228 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK] / 3;
York Sund7778f72012-10-08 07:44:11 +0000229 break;
230 default:
231 printf("Error: Unknown FMan2 clock select!\n");
232 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530233 sys_info->freq_fman[1] = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000234 break;
235 }
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530236#endif
York Sund7778f72012-10-08 07:44:11 +0000237#endif /* CONFIG_SYS_NUM_FMAN == 2 */
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530238#else
239 sys_info->freq_fman[0] = sys_info->freq_systembus / CONFIG_SYS_FM1_CLK;
240#endif
241#endif
Kumar Galadccd9e32009-03-19 02:46:19 -0500242
York Sund7778f72012-10-08 07:44:11 +0000243#else /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
244
245 for_each_cpu(i, cpu, cpu_numcores(), cpu_mask()) {
York Sunaa150bb2013-03-25 07:40:07 +0000246 u32 c_pll_sel = (in_be32(&clk->clkcsr[cpu].clkcncsr) >> 27)
247 & 0xf;
York Sund7778f72012-10-08 07:44:11 +0000248 u32 cplx_pll = core_cplx_PLL[c_pll_sel];
249
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530250 sys_info->freq_processor[cpu] =
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530251 freq_c_pll[cplx_pll] / core_cplx_pll_div[c_pll_sel];
York Sund7778f72012-10-08 07:44:11 +0000252 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500253#define PME_CLK_SEL 0x80000000
254#define FM1_CLK_SEL 0x40000000
255#define FM2_CLK_SEL 0x20000000
Kumar Gala3842bb52011-02-16 02:03:29 -0600256#define HWA_ASYNC_DIV 0x04000000
257#if (CONFIG_SYS_FSL_NUM_CC_PLLS == 2)
258#define HWA_CC_PLL 1
Timur Tabid5e13882012-10-05 11:09:19 +0000259#elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 3)
260#define HWA_CC_PLL 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600261#elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 4)
Wolfgang Denk80f70212011-05-19 22:21:41 +0200262#define HWA_CC_PLL 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600263#else
264#error CONFIG_SYS_FSL_NUM_CC_PLLS not set or unknown case
265#endif
Kumar Galadccd9e32009-03-19 02:46:19 -0500266 rcw_tmp = in_be32(&gur->rcwsr[7]);
267
268#ifdef CONFIG_SYS_DPAA_PME
Kumar Gala3842bb52011-02-16 02:03:29 -0600269 if (rcw_tmp & PME_CLK_SEL) {
270 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530271 sys_info->freq_pme = freq_c_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600272 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530273 sys_info->freq_pme = freq_c_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600274 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530275 sys_info->freq_pme = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600276 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500277#endif
278
279#ifdef CONFIG_SYS_DPAA_FMAN
Kumar Gala3842bb52011-02-16 02:03:29 -0600280 if (rcw_tmp & FM1_CLK_SEL) {
281 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530282 sys_info->freq_fman[0] = freq_c_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600283 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530284 sys_info->freq_fman[0] = freq_c_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600285 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530286 sys_info->freq_fman[0] = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600287 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500288#if (CONFIG_SYS_NUM_FMAN) == 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600289 if (rcw_tmp & FM2_CLK_SEL) {
290 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530291 sys_info->freq_fman[1] = freq_c_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600292 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530293 sys_info->freq_fman[1] = freq_c_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600294 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530295 sys_info->freq_fman[1] = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600296 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500297#endif
298#endif
299
Shaohui Xie835c9ad2013-03-25 07:33:25 +0000300#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530301 sys_info->freq_qman = sys_info->freq_systembus / 2;
Shaohui Xie835c9ad2013-03-25 07:33:25 +0000302#endif
303
York Sund7778f72012-10-08 07:44:11 +0000304#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
305
306#else /* CONFIG_FSL_CORENET */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530307 uint plat_ratio, e500_ratio, half_freq_systembus;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500308 int i;
Haiying Wang61414682009-05-20 12:30:29 -0400309#ifdef CONFIG_QE
Haiying Wang8cb2af72011-02-11 01:25:30 -0600310 __maybe_unused u32 qe_ratio;
Haiying Wang61414682009-05-20 12:30:29 -0400311#endif
wdenk9c53f402003-10-15 23:53:47 +0000312
313 plat_ratio = (gur->porpllsr) & 0x0000003e;
314 plat_ratio >>= 1;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530315 sys_info->freq_systembus = plat_ratio * CONFIG_SYS_CLK_FREQ;
Andy Fleming6d972762007-04-23 02:37:47 -0500316
317 /* Divide before multiply to avoid integer
318 * overflow for processor speeds above 2GHz */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530319 half_freq_systembus = sys_info->freq_systembus/2;
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530320 for (i = 0; i < cpu_numcores(); i++) {
Haiying Wangbb8aea72009-01-15 11:58:35 -0500321 e500_ratio = ((gur->porpllsr) >> (i * 8 + 16)) & 0x3f;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530322 sys_info->freq_processor[i] = e500_ratio * half_freq_systembus;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500323 }
James Yangd1d51ad2008-02-08 18:05:08 -0600324
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530325 /* Note: freq_ddrbus is the MCLK frequency, not the data rate. */
326 sys_info->freq_ddrbus = sys_info->freq_systembus;
Kumar Gala07db1702007-12-07 04:59:26 -0600327
328#ifdef CONFIG_DDR_CLK_FREQ
329 {
Jason Jinbfcd6c32008-09-27 14:40:57 +0800330 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
331 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala07db1702007-12-07 04:59:26 -0600332 if (ddr_ratio != 0x7)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530333 sys_info->freq_ddrbus = ddr_ratio * CONFIG_DDR_CLK_FREQ;
Kumar Gala07db1702007-12-07 04:59:26 -0600334 }
335#endif
Trent Piepho0b691fc2008-12-03 15:16:37 -0800336
Haiying Wang61414682009-05-20 12:30:29 -0400337#ifdef CONFIG_QE
York Sun6bf020a2012-08-10 11:07:26 +0000338#if defined(CONFIG_P1012) || defined(CONFIG_P1021) || defined(CONFIG_P1025)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530339 sys_info->freq_qe = sys_info->freq_systembus;
Haiying Wang8cb2af72011-02-11 01:25:30 -0600340#else
Haiying Wang61414682009-05-20 12:30:29 -0400341 qe_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_QE_RATIO)
342 >> MPC85xx_PORPLLSR_QE_RATIO_SHIFT;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530343 sys_info->freq_qe = qe_ratio * CONFIG_SYS_CLK_FREQ;
Haiying Wang61414682009-05-20 12:30:29 -0400344#endif
Haiying Wang8cb2af72011-02-11 01:25:30 -0600345#endif
Haiying Wang325a12f2011-01-20 22:26:31 +0000346
347#ifdef CONFIG_SYS_DPAA_FMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530348 sys_info->freq_fman[0] = sys_info->freq_systembus;
Haiying Wang325a12f2011-01-20 22:26:31 +0000349#endif
350
351#endif /* CONFIG_FSL_CORENET */
Haiying Wang61414682009-05-20 12:30:29 -0400352
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530353#if defined(CONFIG_FSL_LBC)
York Sund7778f72012-10-08 07:44:11 +0000354 uint lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800355#if defined(CONFIG_SYS_LBC_LCRR)
356 /* We will program LCRR to this value later */
357 lcrr_div = CONFIG_SYS_LBC_LCRR & LCRR_CLKDIV;
358#else
Becky Bruce0d4cee12010-06-17 11:37:20 -0500359 lcrr_div = in_be32(&(LBC_BASE_ADDR)->lcrr) & LCRR_CLKDIV;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800360#endif
361 if (lcrr_div == 2 || lcrr_div == 4 || lcrr_div == 8) {
Dave Liud8cb9e42009-11-17 20:49:05 +0800362#if defined(CONFIG_FSL_CORENET)
363 /* If this is corenet based SoC, bit-representation
364 * for four times the clock divider values.
365 */
366 lcrr_div *= 4;
367#elif !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8541) && \
Trent Piepho0b691fc2008-12-03 15:16:37 -0800368 !defined(CONFIG_MPC8555) && !defined(CONFIG_MPC8560)
369 /*
370 * Yes, the entire PQ38 family use the same
371 * bit-representation for twice the clock divider values.
372 */
373 lcrr_div *= 2;
374#endif
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530375 sys_info->freq_localbus = sys_info->freq_systembus / lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800376 } else {
377 /* In case anyone cares what the unknown value is */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530378 sys_info->freq_localbus = lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800379 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530380#endif
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000381
382#if defined(CONFIG_FSL_IFC)
383 ccr = in_be32(&ifc_regs->ifc_ccr);
384 ccr = ((ccr & IFC_CCR_CLK_DIV_MASK) >> IFC_CCR_CLK_DIV_SHIFT) + 1;
385
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530386 sys_info->freq_localbus = sys_info->freq_systembus / ccr;
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000387#endif
wdenk9c53f402003-10-15 23:53:47 +0000388}
389
Andy Fleming6d972762007-04-23 02:37:47 -0500390
wdenk9c53f402003-10-15 23:53:47 +0000391int get_clocks (void)
392{
wdenk9c53f402003-10-15 23:53:47 +0000393 sys_info_t sys_info;
Timur Tabi44befe02008-04-04 11:15:58 -0500394#ifdef CONFIG_MPC8544
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200395 volatile ccsr_gur_t *gur = (void *) CONFIG_SYS_MPC85xx_GUTS_ADDR;
Timur Tabi44befe02008-04-04 11:15:58 -0500396#endif
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500397#if defined(CONFIG_CPM2)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200398 volatile ccsr_cpm_t *cpm = (ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR;
wdenk9c53f402003-10-15 23:53:47 +0000399 uint sccr, dfbrg;
400
401 /* set VCO = 4 * BRG */
Kumar Galacd113a02007-11-28 00:36:33 -0600402 cpm->im_cpm_intctl.sccr &= 0xfffffffc;
403 sccr = cpm->im_cpm_intctl.sccr;
wdenk9c53f402003-10-15 23:53:47 +0000404 dfbrg = (sccr & SCCR_DFBRG_MSK) >> SCCR_DFBRG_SHIFT;
405#endif
406 get_sys_info (&sys_info);
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530407 gd->cpu_clk = sys_info.freq_processor[0];
408 gd->bus_clk = sys_info.freq_systembus;
409 gd->mem_clk = sys_info.freq_ddrbus;
410 gd->arch.lbc_clk = sys_info.freq_localbus;
Timur Tabi44befe02008-04-04 11:15:58 -0500411
Haiying Wang61414682009-05-20 12:30:29 -0400412#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530413 gd->arch.qe_clk = sys_info.freq_qe;
Simon Glass8518b172012-12-13 20:48:50 +0000414 gd->arch.brg_clk = gd->arch.qe_clk / 2;
Haiying Wang61414682009-05-20 12:30:29 -0400415#endif
Timur Tabi44befe02008-04-04 11:15:58 -0500416 /*
417 * The base clock for I2C depends on the actual SOC. Unfortunately,
418 * there is no pattern that can be used to determine the frequency, so
419 * the only choice is to look up the actual SOC number and use the value
420 * for that SOC. This information is taken from application note
421 * AN2919.
422 */
423#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
Tang Yuantiana2f72622013-09-06 10:45:40 +0800424 defined(CONFIG_MPC8560) || defined(CONFIG_MPC8555) || \
425 defined(CONFIG_P1022)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530426 gd->arch.i2c1_clk = sys_info.freq_systembus;
Timur Tabi44befe02008-04-04 11:15:58 -0500427#elif defined(CONFIG_MPC8544)
428 /*
429 * On the 8544, the I2C clock is the same as the SEC clock. This can be
430 * either CCB/2 or CCB/3, depending on the value of cfg_sec_freq. See
431 * 4.4.3.3 of the 8544 RM. Note that this might actually work for all
432 * 85xx, but only the 8544 has cfg_sec_freq, so it's unknown if the
433 * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544.
434 */
435 if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530436 gd->arch.i2c1_clk = sys_info.freq_systembus / 3;
Kumar Gala9632f662008-10-16 21:58:49 -0500437 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530438 gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
Timur Tabi44befe02008-04-04 11:15:58 -0500439#else
440 /* Most 85xx SOCs use CCB/2, so this is the default behavior. */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530441 gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
Timur Tabi44befe02008-04-04 11:15:58 -0500442#endif
Simon Glassc2baaec2012-12-13 20:48:49 +0000443 gd->arch.i2c2_clk = gd->arch.i2c1_clk;
Timur Tabic1499f482008-01-09 14:35:26 -0600444
Dipen Dudhat9af188d2009-09-01 17:27:00 +0530445#if defined(CONFIG_FSL_ESDHC)
Priyanka Jaince0397b2011-02-08 15:45:25 +0530446#if defined(CONFIG_MPC8569) || defined(CONFIG_P1010) ||\
447 defined(CONFIG_P1014)
Simon Glass9e247d12012-12-13 20:49:05 +0000448 gd->arch.sdhc_clk = gd->bus_clk;
Anton Vorontsovda225942009-10-15 17:47:06 +0400449#else
Simon Glass9e247d12012-12-13 20:49:05 +0000450 gd->arch.sdhc_clk = gd->bus_clk / 2;
Kumar Galacd777282008-08-12 11:14:19 -0500451#endif
Anton Vorontsovda225942009-10-15 17:47:06 +0400452#endif /* defined(CONFIG_FSL_ESDHC) */
Kumar Galacd777282008-08-12 11:14:19 -0500453
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500454#if defined(CONFIG_CPM2)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530455 gd->arch.vco_out = 2*sys_info.freq_systembus;
Simon Glass44ea8512012-12-13 20:48:46 +0000456 gd->arch.cpm_clk = gd->arch.vco_out / 2;
457 gd->arch.scc_clk = gd->arch.vco_out / 4;
458 gd->arch.brg_clk = gd->arch.vco_out / (1 << (2 * (dfbrg + 1)));
wdenk9c53f402003-10-15 23:53:47 +0000459#endif
460
461 if(gd->cpu_clk != 0) return (0);
462 else return (1);
463}
464
465
466/********************************************
467 * get_bus_freq
468 * return system bus freq in Hz
469 *********************************************/
470ulong get_bus_freq (ulong dummy)
471{
James Yangd1d51ad2008-02-08 18:05:08 -0600472 return gd->bus_clk;
wdenk9c53f402003-10-15 23:53:47 +0000473}
Kumar Gala07db1702007-12-07 04:59:26 -0600474
475/********************************************
476 * get_ddr_freq
477 * return ddr bus freq in Hz
478 *********************************************/
479ulong get_ddr_freq (ulong dummy)
480{
James Yangd1d51ad2008-02-08 18:05:08 -0600481 return gd->mem_clk;
Kumar Gala07db1702007-12-07 04:59:26 -0600482}