blob: 56f41bcf7bbe209dd0872e552f590a9c7ee538a0 [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
York Sun7c355f52014-10-27 11:31:33 -070040 __maybe_unused u32 svr;
Kumar Galadccd9e32009-03-19 02:46:19 -050041
42 const u8 core_cplx_PLL[16] = {
43 [ 0] = 0, /* CC1 PPL / 1 */
44 [ 1] = 0, /* CC1 PPL / 2 */
45 [ 2] = 0, /* CC1 PPL / 4 */
46 [ 4] = 1, /* CC2 PPL / 1 */
47 [ 5] = 1, /* CC2 PPL / 2 */
48 [ 6] = 1, /* CC2 PPL / 4 */
49 [ 8] = 2, /* CC3 PPL / 1 */
50 [ 9] = 2, /* CC3 PPL / 2 */
51 [10] = 2, /* CC3 PPL / 4 */
52 [12] = 3, /* CC4 PPL / 1 */
53 [13] = 3, /* CC4 PPL / 2 */
54 [14] = 3, /* CC4 PPL / 4 */
55 };
56
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053057 const u8 core_cplx_pll_div[16] = {
Kumar Galadccd9e32009-03-19 02:46:19 -050058 [ 0] = 1, /* CC1 PPL / 1 */
59 [ 1] = 2, /* CC1 PPL / 2 */
60 [ 2] = 4, /* CC1 PPL / 4 */
61 [ 4] = 1, /* CC2 PPL / 1 */
62 [ 5] = 2, /* CC2 PPL / 2 */
63 [ 6] = 4, /* CC2 PPL / 4 */
64 [ 8] = 1, /* CC3 PPL / 1 */
65 [ 9] = 2, /* CC3 PPL / 2 */
66 [10] = 4, /* CC3 PPL / 4 */
67 [12] = 1, /* CC4 PPL / 1 */
68 [13] = 2, /* CC4 PPL / 2 */
69 [14] = 4, /* CC4 PPL / 4 */
70 };
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +053071 uint i, freq_c_pll[CONFIG_SYS_FSL_NUM_CC_PLLS];
72#if !defined(CONFIG_FM_PLAT_CLK_DIV) || !defined(CONFIG_PME_PLAT_CLK_DIV)
73 uint rcw_tmp;
74#endif
75 uint ratio[CONFIG_SYS_FSL_NUM_CC_PLLS];
Kumar Galadccd9e32009-03-19 02:46:19 -050076 unsigned long sysclk = CONFIG_SYS_CLK_FREQ;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080077 uint mem_pll_rat;
Kumar Galadccd9e32009-03-19 02:46:19 -050078
Prabhakar Kushwahad1698082013-08-16 14:52:26 +053079 sys_info->freq_systembus = sysclk;
Priyanka Jaine9dcaa82013-12-17 14:25:52 +053080#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
vijay raid84fd502014-04-15 11:34:12 +053081 uint ddr_refclk_sel;
82 unsigned int porsr1_sys_clk;
83 porsr1_sys_clk = in_be32(&gur->porsr1) >> FSL_DCFG_PORSR1_SYSCLK_SHIFT
84 & FSL_DCFG_PORSR1_SYSCLK_MASK;
85 if (porsr1_sys_clk == FSL_DCFG_PORSR1_SYSCLK_DIFF)
86 sys_info->diff_sysclk = 1;
87 else
88 sys_info->diff_sysclk = 0;
89
Priyanka Jaine9dcaa82013-12-17 14:25:52 +053090 /*
91 * DDR_REFCLK_SEL rcw bit is used to determine if DDR PLLS
92 * are driven by separate DDR Refclock or single source
93 * differential clock.
94 */
vijay raid84fd502014-04-15 11:34:12 +053095 ddr_refclk_sel = (in_be32(&gur->rcwsr[5]) >>
Priyanka Jaine9dcaa82013-12-17 14:25:52 +053096 FSL_CORENET2_RCWSR5_DDR_REFCLK_SEL_SHIFT) &
97 FSL_CORENET2_RCWSR5_DDR_REFCLK_SEL_MASK;
98 /*
vijay raid84fd502014-04-15 11:34:12 +053099 * For single source clocking, both ddrclock and sysclock
Priyanka Jaine9dcaa82013-12-17 14:25:52 +0530100 * are driven by differential sysclock.
101 */
vijay raid84fd502014-04-15 11:34:12 +0530102 if (ddr_refclk_sel == FSL_CORENET2_RCWSR5_DDR_REFCLK_SINGLE_CLK)
Priyanka Jaine9dcaa82013-12-17 14:25:52 +0530103 sys_info->freq_ddrbus = CONFIG_SYS_CLK_FREQ;
vijay raid84fd502014-04-15 11:34:12 +0530104 else
Priyanka Jaine9dcaa82013-12-17 14:25:52 +0530105#endif
York Sun3b5179f2012-10-08 07:44:31 +0000106#ifdef CONFIG_DDR_CLK_FREQ
Priyanka Jaine9dcaa82013-12-17 14:25:52 +0530107 sys_info->freq_ddrbus = CONFIG_DDR_CLK_FREQ;
York Sun3b5179f2012-10-08 07:44:31 +0000108#else
Priyanka Jaine9dcaa82013-12-17 14:25:52 +0530109 sys_info->freq_ddrbus = sysclk;
York Sun3b5179f2012-10-08 07:44:31 +0000110#endif
Kumar Galadccd9e32009-03-19 02:46:19 -0500111
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530112 sys_info->freq_systembus *= (in_be32(&gur->rcwsr[0]) >> 25) & 0x1f;
York Sunb8a076b2012-10-08 07:44:09 +0000113 mem_pll_rat = (in_be32(&gur->rcwsr[0]) >>
114 FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT)
115 & FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK;
York Sun7b083df2014-03-28 15:07:27 -0700116#ifdef CONFIG_SYS_FSL_ERRATUM_A007212
117 if (mem_pll_rat == 0) {
118 mem_pll_rat = (in_be32(&gur->rcwsr[0]) >>
119 FSL_CORENET_RCWSR0_MEM_PLL_RAT_RESV_SHIFT) &
120 FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK;
121 }
122#endif
Zang Roy-R619111b1e5cf2013-11-28 13:23:37 +0800123 /* T4240/T4160 Rev2.0 MEM_PLL_RAT uses a value which is half of
124 * T4240/T4160 Rev1.0. eg. It's 12 in Rev1.0, however, for Rev2.0
125 * it uses 6.
York Sun7c355f52014-10-27 11:31:33 -0700126 * T2080 rev 1.1 and later also use half mem_pll comparing with rev 1.0
Zang Roy-R619111b1e5cf2013-11-28 13:23:37 +0800127 */
Shengzhou Liu26ed2d02014-04-25 16:31:22 +0800128#if defined(CONFIG_PPC_T4240) || defined(CONFIG_PPC_T4160) || \
York Sun7c355f52014-10-27 11:31:33 -0700129 defined(CONFIG_PPC_T4080) || defined(CONFIG_PPC_T2080)
130 svr = get_svr();
131 switch (SVR_SOC_VER(svr)) {
132 case SVR_T4240:
133 case SVR_T4160:
134 case SVR_T4120:
135 case SVR_T4080:
136 if (SVR_MAJ(svr) >= 2)
137 mem_pll_rat *= 2;
138 break;
139 case SVR_T2080:
140 case SVR_T2081:
141 if ((SVR_MAJ(svr) > 1) || (SVR_MIN(svr) >= 1))
142 mem_pll_rat *= 2;
143 break;
144 default:
145 break;
146 }
Zang Roy-R619111b1e5cf2013-11-28 13:23:37 +0800147#endif
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +0800148 if (mem_pll_rat > 2)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530149 sys_info->freq_ddrbus *= mem_pll_rat;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +0800150 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530151 sys_info->freq_ddrbus = sys_info->freq_systembus * mem_pll_rat;
Kumar Galadccd9e32009-03-19 02:46:19 -0500152
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530153 for (i = 0; i < CONFIG_SYS_FSL_NUM_CC_PLLS; i++) {
154 ratio[i] = (in_be32(&clk->pllcgsr[i].pllcngsr) >> 1) & 0x3f;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +0800155 if (ratio[i] > 4)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530156 freq_c_pll[i] = sysclk * ratio[i];
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +0800157 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530158 freq_c_pll[i] = sys_info->freq_systembus * ratio[i];
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +0800159 }
York Sund7778f72012-10-08 07:44:11 +0000160#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
161 /*
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530162 * As per CHASSIS2 architeture total 12 clusters are posible and
York Sund7778f72012-10-08 07:44:11 +0000163 * Each cluster has up to 4 cores, sharing the same PLL selection.
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530164 * The cluster clock assignment is SoC defined.
165 *
166 * Total 4 clock groups are possible with 3 PLLs each.
167 * as per array indices, clock group A has 0, 1, 2 numbered PLLs &
168 * clock group B has 3, 4, 6 and so on.
169 *
170 * Clock group A having PLL1, PLL2, PLL3, feeding cores of any cluster
171 * depends upon the SoC architeture. Same applies to other
172 * clock groups and clusters.
173 *
York Sund7778f72012-10-08 07:44:11 +0000174 */
Timur Tabi47289422011-08-05 16:15:24 -0500175 for_each_cpu(i, cpu, cpu_numcores(), cpu_mask()) {
York Sunaa150bb2013-03-25 07:40:07 +0000176 int cluster = fsl_qoriq_core_to_cluster(cpu);
177 u32 c_pll_sel = (in_be32(&clk->clkcsr[cluster].clkcncsr) >> 27)
York Sund7778f72012-10-08 07:44:11 +0000178 & 0xf;
Kumar Galadccd9e32009-03-19 02:46:19 -0500179 u32 cplx_pll = core_cplx_PLL[c_pll_sel];
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530180 cplx_pll += cc_group[cluster] - 1;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530181 sys_info->freq_processor[cpu] =
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530182 freq_c_pll[cplx_pll] / core_cplx_pll_div[c_pll_sel];
Kumar Galadccd9e32009-03-19 02:46:19 -0500183 }
Prabhakar Kushwaha1229c222014-04-21 10:47:41 +0530184#if defined(CONFIG_PPC_B4860) || defined(CONFIG_PPC_B4420) || \
185 defined(CONFIG_PPC_T2080) || defined(CONFIG_PPC_T2081)
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000186#define FM1_CLK_SEL 0xe0000000
187#define FM1_CLK_SHIFT 29
188#else
York Sund7778f72012-10-08 07:44:11 +0000189#define PME_CLK_SEL 0xe0000000
190#define PME_CLK_SHIFT 29
191#define FM1_CLK_SEL 0x1c000000
192#define FM1_CLK_SHIFT 26
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000193#endif
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530194#if !defined(CONFIG_FM_PLAT_CLK_DIV) || !defined(CONFIG_PME_PLAT_CLK_DIV)
York Sund7778f72012-10-08 07:44:11 +0000195 rcw_tmp = in_be32(&gur->rcwsr[7]);
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530196#endif
York Sund7778f72012-10-08 07:44:11 +0000197
198#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530199#ifndef CONFIG_PME_PLAT_CLK_DIV
York Sund7778f72012-10-08 07:44:11 +0000200 switch ((rcw_tmp & PME_CLK_SEL) >> PME_CLK_SHIFT) {
201 case 1:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530202 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK];
York Sund7778f72012-10-08 07:44:11 +0000203 break;
204 case 2:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530205 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK] / 2;
York Sund7778f72012-10-08 07:44:11 +0000206 break;
207 case 3:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530208 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK] / 3;
York Sund7778f72012-10-08 07:44:11 +0000209 break;
210 case 4:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530211 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK] / 4;
York Sund7778f72012-10-08 07:44:11 +0000212 break;
213 case 6:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530214 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK + 1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000215 break;
216 case 7:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530217 sys_info->freq_pme = freq_c_pll[CONFIG_SYS_PME_CLK + 1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000218 break;
219 default:
220 printf("Error: Unknown PME clock select!\n");
221 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530222 sys_info->freq_pme = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000223 break;
224
225 }
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530226#else
227 sys_info->freq_pme = sys_info->freq_systembus / CONFIG_SYS_PME_CLK;
228
229#endif
York Sund7778f72012-10-08 07:44:11 +0000230#endif
231
Haiying Wang09d0aa92012-10-11 07:13:39 +0000232#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530233 sys_info->freq_qman = sys_info->freq_systembus / 2;
Haiying Wang09d0aa92012-10-11 07:13:39 +0000234#endif
235
York Sund7778f72012-10-08 07:44:11 +0000236#ifdef CONFIG_SYS_DPAA_FMAN
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530237#ifndef CONFIG_FM_PLAT_CLK_DIV
York Sund7778f72012-10-08 07:44:11 +0000238 switch ((rcw_tmp & FM1_CLK_SEL) >> FM1_CLK_SHIFT) {
239 case 1:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530240 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK];
York Sund7778f72012-10-08 07:44:11 +0000241 break;
242 case 2:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530243 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK] / 2;
York Sund7778f72012-10-08 07:44:11 +0000244 break;
245 case 3:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530246 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK] / 3;
York Sund7778f72012-10-08 07:44:11 +0000247 break;
248 case 4:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530249 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK] / 4;
York Sund7778f72012-10-08 07:44:11 +0000250 break;
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000251 case 5:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530252 sys_info->freq_fman[0] = sys_info->freq_systembus;
Sandeep Singhf7dfe252013-03-25 07:33:09 +0000253 break;
York Sund7778f72012-10-08 07:44:11 +0000254 case 6:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530255 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK + 1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000256 break;
257 case 7:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530258 sys_info->freq_fman[0] = freq_c_pll[CONFIG_SYS_FM1_CLK + 1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000259 break;
260 default:
261 printf("Error: Unknown FMan1 clock select!\n");
262 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530263 sys_info->freq_fman[0] = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000264 break;
265 }
266#if (CONFIG_SYS_NUM_FMAN) == 2
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530267#ifdef CONFIG_SYS_FM2_CLK
York Sund7778f72012-10-08 07:44:11 +0000268#define FM2_CLK_SEL 0x00000038
269#define FM2_CLK_SHIFT 3
270 rcw_tmp = in_be32(&gur->rcwsr[15]);
271 switch ((rcw_tmp & FM2_CLK_SEL) >> FM2_CLK_SHIFT) {
272 case 1:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530273 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1];
York Sund7778f72012-10-08 07:44:11 +0000274 break;
275 case 2:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530276 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1] / 2;
York Sund7778f72012-10-08 07:44:11 +0000277 break;
278 case 3:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530279 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1] / 3;
York Sund7778f72012-10-08 07:44:11 +0000280 break;
281 case 4:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530282 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK + 1] / 4;
York Sund7778f72012-10-08 07:44:11 +0000283 break;
Shaohui Xie45359a32013-11-28 13:52:51 +0800284 case 5:
285 sys_info->freq_fman[1] = sys_info->freq_systembus;
286 break;
York Sund7778f72012-10-08 07:44:11 +0000287 case 6:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530288 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK] / 2;
York Sund7778f72012-10-08 07:44:11 +0000289 break;
290 case 7:
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530291 sys_info->freq_fman[1] = freq_c_pll[CONFIG_SYS_FM2_CLK] / 3;
York Sund7778f72012-10-08 07:44:11 +0000292 break;
293 default:
294 printf("Error: Unknown FMan2 clock select!\n");
295 case 0:
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530296 sys_info->freq_fman[1] = sys_info->freq_systembus / 2;
York Sund7778f72012-10-08 07:44:11 +0000297 break;
298 }
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530299#endif
York Sund7778f72012-10-08 07:44:11 +0000300#endif /* CONFIG_SYS_NUM_FMAN == 2 */
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530301#else
302 sys_info->freq_fman[0] = sys_info->freq_systembus / CONFIG_SYS_FM1_CLK;
303#endif
304#endif
Kumar Galadccd9e32009-03-19 02:46:19 -0500305
York Sund7778f72012-10-08 07:44:11 +0000306#else /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
307
308 for_each_cpu(i, cpu, cpu_numcores(), cpu_mask()) {
York Sunaa150bb2013-03-25 07:40:07 +0000309 u32 c_pll_sel = (in_be32(&clk->clkcsr[cpu].clkcncsr) >> 27)
310 & 0xf;
York Sund7778f72012-10-08 07:44:11 +0000311 u32 cplx_pll = core_cplx_PLL[c_pll_sel];
312
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530313 sys_info->freq_processor[cpu] =
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530314 freq_c_pll[cplx_pll] / core_cplx_pll_div[c_pll_sel];
York Sund7778f72012-10-08 07:44:11 +0000315 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500316#define PME_CLK_SEL 0x80000000
317#define FM1_CLK_SEL 0x40000000
318#define FM2_CLK_SEL 0x20000000
Kumar Gala3842bb52011-02-16 02:03:29 -0600319#define HWA_ASYNC_DIV 0x04000000
320#if (CONFIG_SYS_FSL_NUM_CC_PLLS == 2)
321#define HWA_CC_PLL 1
Timur Tabid5e13882012-10-05 11:09:19 +0000322#elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 3)
323#define HWA_CC_PLL 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600324#elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 4)
Wolfgang Denk80f70212011-05-19 22:21:41 +0200325#define HWA_CC_PLL 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600326#else
327#error CONFIG_SYS_FSL_NUM_CC_PLLS not set or unknown case
328#endif
Kumar Galadccd9e32009-03-19 02:46:19 -0500329 rcw_tmp = in_be32(&gur->rcwsr[7]);
330
331#ifdef CONFIG_SYS_DPAA_PME
Kumar Gala3842bb52011-02-16 02:03:29 -0600332 if (rcw_tmp & PME_CLK_SEL) {
333 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530334 sys_info->freq_pme = freq_c_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600335 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530336 sys_info->freq_pme = freq_c_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600337 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530338 sys_info->freq_pme = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600339 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500340#endif
341
342#ifdef CONFIG_SYS_DPAA_FMAN
Kumar Gala3842bb52011-02-16 02:03:29 -0600343 if (rcw_tmp & FM1_CLK_SEL) {
344 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530345 sys_info->freq_fman[0] = freq_c_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600346 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530347 sys_info->freq_fman[0] = freq_c_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600348 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530349 sys_info->freq_fman[0] = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600350 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500351#if (CONFIG_SYS_NUM_FMAN) == 2
Kumar Gala3842bb52011-02-16 02:03:29 -0600352 if (rcw_tmp & FM2_CLK_SEL) {
353 if (rcw_tmp & HWA_ASYNC_DIV)
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530354 sys_info->freq_fman[1] = freq_c_pll[HWA_CC_PLL] / 4;
Kumar Gala3842bb52011-02-16 02:03:29 -0600355 else
Prabhakar Kushwaha7e8382f2013-09-03 11:20:15 +0530356 sys_info->freq_fman[1] = freq_c_pll[HWA_CC_PLL] / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600357 } else {
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530358 sys_info->freq_fman[1] = sys_info->freq_systembus / 2;
Kumar Gala3842bb52011-02-16 02:03:29 -0600359 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500360#endif
361#endif
362
Shaohui Xie835c9ad2013-03-25 07:33:25 +0000363#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530364 sys_info->freq_qman = sys_info->freq_systembus / 2;
Shaohui Xie835c9ad2013-03-25 07:33:25 +0000365#endif
366
York Sund7778f72012-10-08 07:44:11 +0000367#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
368
Zhao Qiangb818ba22014-03-21 16:21:45 +0800369#ifdef CONFIG_U_QE
370 sys_info->freq_qe = sys_info->freq_systembus / 2;
371#endif
372
York Sund7778f72012-10-08 07:44:11 +0000373#else /* CONFIG_FSL_CORENET */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530374 uint plat_ratio, e500_ratio, half_freq_systembus;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500375 int i;
Haiying Wang61414682009-05-20 12:30:29 -0400376#ifdef CONFIG_QE
Haiying Wang8cb2af72011-02-11 01:25:30 -0600377 __maybe_unused u32 qe_ratio;
Haiying Wang61414682009-05-20 12:30:29 -0400378#endif
wdenk9c53f402003-10-15 23:53:47 +0000379
380 plat_ratio = (gur->porpllsr) & 0x0000003e;
381 plat_ratio >>= 1;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530382 sys_info->freq_systembus = plat_ratio * CONFIG_SYS_CLK_FREQ;
Andy Fleming6d972762007-04-23 02:37:47 -0500383
384 /* Divide before multiply to avoid integer
385 * overflow for processor speeds above 2GHz */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530386 half_freq_systembus = sys_info->freq_systembus/2;
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530387 for (i = 0; i < cpu_numcores(); i++) {
Haiying Wangbb8aea72009-01-15 11:58:35 -0500388 e500_ratio = ((gur->porpllsr) >> (i * 8 + 16)) & 0x3f;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530389 sys_info->freq_processor[i] = e500_ratio * half_freq_systembus;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500390 }
James Yangd1d51ad2008-02-08 18:05:08 -0600391
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530392 /* Note: freq_ddrbus is the MCLK frequency, not the data rate. */
393 sys_info->freq_ddrbus = sys_info->freq_systembus;
Kumar Gala07db1702007-12-07 04:59:26 -0600394
395#ifdef CONFIG_DDR_CLK_FREQ
396 {
Jason Jinbfcd6c32008-09-27 14:40:57 +0800397 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
398 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala07db1702007-12-07 04:59:26 -0600399 if (ddr_ratio != 0x7)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530400 sys_info->freq_ddrbus = ddr_ratio * CONFIG_DDR_CLK_FREQ;
Kumar Gala07db1702007-12-07 04:59:26 -0600401 }
402#endif
Trent Piepho0b691fc2008-12-03 15:16:37 -0800403
Haiying Wang61414682009-05-20 12:30:29 -0400404#ifdef CONFIG_QE
York Sun6bf020a2012-08-10 11:07:26 +0000405#if defined(CONFIG_P1012) || defined(CONFIG_P1021) || defined(CONFIG_P1025)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530406 sys_info->freq_qe = sys_info->freq_systembus;
Haiying Wang8cb2af72011-02-11 01:25:30 -0600407#else
Haiying Wang61414682009-05-20 12:30:29 -0400408 qe_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_QE_RATIO)
409 >> MPC85xx_PORPLLSR_QE_RATIO_SHIFT;
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530410 sys_info->freq_qe = qe_ratio * CONFIG_SYS_CLK_FREQ;
Haiying Wang61414682009-05-20 12:30:29 -0400411#endif
Haiying Wang8cb2af72011-02-11 01:25:30 -0600412#endif
Haiying Wang325a12f2011-01-20 22:26:31 +0000413
414#ifdef CONFIG_SYS_DPAA_FMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530415 sys_info->freq_fman[0] = sys_info->freq_systembus;
Haiying Wang325a12f2011-01-20 22:26:31 +0000416#endif
417
418#endif /* CONFIG_FSL_CORENET */
Haiying Wang61414682009-05-20 12:30:29 -0400419
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530420#if defined(CONFIG_FSL_LBC)
York Sund7778f72012-10-08 07:44:11 +0000421 uint lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800422#if defined(CONFIG_SYS_LBC_LCRR)
423 /* We will program LCRR to this value later */
424 lcrr_div = CONFIG_SYS_LBC_LCRR & LCRR_CLKDIV;
425#else
Becky Bruce0d4cee12010-06-17 11:37:20 -0500426 lcrr_div = in_be32(&(LBC_BASE_ADDR)->lcrr) & LCRR_CLKDIV;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800427#endif
428 if (lcrr_div == 2 || lcrr_div == 4 || lcrr_div == 8) {
Dave Liud8cb9e42009-11-17 20:49:05 +0800429#if defined(CONFIG_FSL_CORENET)
430 /* If this is corenet based SoC, bit-representation
431 * for four times the clock divider values.
432 */
433 lcrr_div *= 4;
434#elif !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8541) && \
Trent Piepho0b691fc2008-12-03 15:16:37 -0800435 !defined(CONFIG_MPC8555) && !defined(CONFIG_MPC8560)
436 /*
437 * Yes, the entire PQ38 family use the same
438 * bit-representation for twice the clock divider values.
439 */
440 lcrr_div *= 2;
441#endif
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530442 sys_info->freq_localbus = sys_info->freq_systembus / lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800443 } else {
444 /* In case anyone cares what the unknown value is */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530445 sys_info->freq_localbus = lcrr_div;
Trent Piepho0b691fc2008-12-03 15:16:37 -0800446 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530447#endif
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000448
449#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwahaf3e12ed2014-09-23 10:57:12 +0530450 ccr = ifc_in32(&ifc_regs->ifc_ccr);
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000451 ccr = ((ccr & IFC_CCR_CLK_DIV_MASK) >> IFC_CCR_CLK_DIV_SHIFT) + 1;
452
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530453 sys_info->freq_localbus = sys_info->freq_systembus / ccr;
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000454#endif
wdenk9c53f402003-10-15 23:53:47 +0000455}
456
Andy Fleming6d972762007-04-23 02:37:47 -0500457
wdenk9c53f402003-10-15 23:53:47 +0000458int get_clocks (void)
459{
wdenk9c53f402003-10-15 23:53:47 +0000460 sys_info_t sys_info;
Timur Tabi44befe02008-04-04 11:15:58 -0500461#ifdef CONFIG_MPC8544
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200462 volatile ccsr_gur_t *gur = (void *) CONFIG_SYS_MPC85xx_GUTS_ADDR;
Timur Tabi44befe02008-04-04 11:15:58 -0500463#endif
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500464#if defined(CONFIG_CPM2)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200465 volatile ccsr_cpm_t *cpm = (ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR;
wdenk9c53f402003-10-15 23:53:47 +0000466 uint sccr, dfbrg;
467
468 /* set VCO = 4 * BRG */
Kumar Galacd113a02007-11-28 00:36:33 -0600469 cpm->im_cpm_intctl.sccr &= 0xfffffffc;
470 sccr = cpm->im_cpm_intctl.sccr;
wdenk9c53f402003-10-15 23:53:47 +0000471 dfbrg = (sccr & SCCR_DFBRG_MSK) >> SCCR_DFBRG_SHIFT;
472#endif
473 get_sys_info (&sys_info);
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530474 gd->cpu_clk = sys_info.freq_processor[0];
475 gd->bus_clk = sys_info.freq_systembus;
476 gd->mem_clk = sys_info.freq_ddrbus;
477 gd->arch.lbc_clk = sys_info.freq_localbus;
Timur Tabi44befe02008-04-04 11:15:58 -0500478
Haiying Wang61414682009-05-20 12:30:29 -0400479#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530480 gd->arch.qe_clk = sys_info.freq_qe;
Simon Glass8518b172012-12-13 20:48:50 +0000481 gd->arch.brg_clk = gd->arch.qe_clk / 2;
Haiying Wang61414682009-05-20 12:30:29 -0400482#endif
Timur Tabi44befe02008-04-04 11:15:58 -0500483 /*
484 * The base clock for I2C depends on the actual SOC. Unfortunately,
485 * there is no pattern that can be used to determine the frequency, so
486 * the only choice is to look up the actual SOC number and use the value
487 * for that SOC. This information is taken from application note
488 * AN2919.
489 */
490#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
Tang Yuantiana2f72622013-09-06 10:45:40 +0800491 defined(CONFIG_MPC8560) || defined(CONFIG_MPC8555) || \
492 defined(CONFIG_P1022)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530493 gd->arch.i2c1_clk = sys_info.freq_systembus;
Timur Tabi44befe02008-04-04 11:15:58 -0500494#elif defined(CONFIG_MPC8544)
495 /*
496 * On the 8544, the I2C clock is the same as the SEC clock. This can be
497 * either CCB/2 or CCB/3, depending on the value of cfg_sec_freq. See
498 * 4.4.3.3 of the 8544 RM. Note that this might actually work for all
499 * 85xx, but only the 8544 has cfg_sec_freq, so it's unknown if the
500 * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544.
501 */
502 if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530503 gd->arch.i2c1_clk = sys_info.freq_systembus / 3;
Kumar Gala9632f662008-10-16 21:58:49 -0500504 else
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530505 gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
Timur Tabi44befe02008-04-04 11:15:58 -0500506#else
507 /* Most 85xx SOCs use CCB/2, so this is the default behavior. */
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530508 gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
Timur Tabi44befe02008-04-04 11:15:58 -0500509#endif
Simon Glassc2baaec2012-12-13 20:48:49 +0000510 gd->arch.i2c2_clk = gd->arch.i2c1_clk;
Timur Tabic1499f482008-01-09 14:35:26 -0600511
Dipen Dudhat9af188d2009-09-01 17:27:00 +0530512#if defined(CONFIG_FSL_ESDHC)
Priyanka Jaince0397b2011-02-08 15:45:25 +0530513#if defined(CONFIG_MPC8569) || defined(CONFIG_P1010) ||\
514 defined(CONFIG_P1014)
Simon Glass9e247d12012-12-13 20:49:05 +0000515 gd->arch.sdhc_clk = gd->bus_clk;
Anton Vorontsovda225942009-10-15 17:47:06 +0400516#else
Simon Glass9e247d12012-12-13 20:49:05 +0000517 gd->arch.sdhc_clk = gd->bus_clk / 2;
Kumar Galacd777282008-08-12 11:14:19 -0500518#endif
Anton Vorontsovda225942009-10-15 17:47:06 +0400519#endif /* defined(CONFIG_FSL_ESDHC) */
Kumar Galacd777282008-08-12 11:14:19 -0500520
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500521#if defined(CONFIG_CPM2)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530522 gd->arch.vco_out = 2*sys_info.freq_systembus;
Simon Glass44ea8512012-12-13 20:48:46 +0000523 gd->arch.cpm_clk = gd->arch.vco_out / 2;
524 gd->arch.scc_clk = gd->arch.vco_out / 4;
525 gd->arch.brg_clk = gd->arch.vco_out / (1 << (2 * (dfbrg + 1)));
wdenk9c53f402003-10-15 23:53:47 +0000526#endif
527
528 if(gd->cpu_clk != 0) return (0);
529 else return (1);
530}
531
532
533/********************************************
534 * get_bus_freq
535 * return system bus freq in Hz
536 *********************************************/
537ulong get_bus_freq (ulong dummy)
538{
James Yangd1d51ad2008-02-08 18:05:08 -0600539 return gd->bus_clk;
wdenk9c53f402003-10-15 23:53:47 +0000540}
Kumar Gala07db1702007-12-07 04:59:26 -0600541
542/********************************************
543 * get_ddr_freq
544 * return ddr bus freq in Hz
545 *********************************************/
546ulong get_ddr_freq (ulong dummy)
547{
James Yangd1d51ad2008-02-08 18:05:08 -0600548 return gd->mem_clk;
Kumar Gala07db1702007-12-07 04:59:26 -0600549}