blob: 80bbc1805fbf0cfbd3b251216c15af8c95711db2 [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
Kumar Gala8975d7a2010-12-30 12:09:53 -06002 * Copyright 2007-2011 Freescale Semiconductor, Inc.
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -05003 *
wdenk9c53f402003-10-15 23:53:47 +00004 * (C) Copyright 2003 Motorola Inc.
5 * Modified by 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 <watchdog.h>
15#include <asm/processor.h>
16#include <ioports.h>
Kumar Galaeb453df2010-04-20 10:21:25 -050017#include <sata.h>
Kumar Gala2683c532011-04-13 08:37:44 -050018#include <fm_eth.h>
wdenk9c53f402003-10-15 23:53:47 +000019#include <asm/io.h>
Kumar Gala6b245b92010-05-05 22:35:27 -050020#include <asm/cache.h>
Kumar Gala9772ee72008-01-16 22:38:34 -060021#include <asm/mmu.h>
Shengzhou Liu7d8dfb82015-11-20 15:52:03 +080022#include <fsl_errata.h>
Kumar Gala95fd2f62008-01-16 01:13:58 -060023#include <asm/fsl_law.h>
Kumar Galaeb453df2010-04-20 10:21:25 -050024#include <asm/fsl_serdes.h>
Liu Gang4cc85322012-03-08 00:33:17 +000025#include <asm/fsl_srio.h>
Prabhakar Kushwaha1de43cf2016-01-22 14:34:44 +053026#ifdef CONFIG_FSL_CORENET
27#include <asm/fsl_portals.h>
28#include <asm/fsl_liodn.h>
29#endif
ramneek mehreshc65e8822013-08-05 16:00:16 +053030#include <fsl_usb.h>
York Sun53155532012-08-08 18:04:53 +000031#include <hwconfig.h>
Timur Tabid7acf5c2011-11-21 17:10:23 -060032#include <linux/compiler.h>
Kumar Gala36d6b3f2008-01-17 16:48:33 -060033#include "mp.h"
Aneesh Bansalc6249092016-01-22 16:37:27 +053034#ifdef CONFIG_CHAIN_OF_TRUST
35#include <fsl_validate.h>
36#endif
Ruchika Guptaac1b2692014-10-15 11:35:30 +053037#ifdef CONFIG_FSL_CAAM
38#include <fsl_sec.h>
39#endif
Timur Tabi275f4bb2011-11-22 09:21:25 -060040#ifdef CONFIG_SYS_QE_FMAN_FW_IN_NAND
Haiying Wangc0938d62011-02-07 16:14:15 -050041#include <nand.h>
42#include <errno.h>
43#endif
wdenk9c53f402003-10-15 23:53:47 +000044
Timur Tabid7acf5c2011-11-21 17:10:23 -060045#include "../../../../drivers/block/fsl_sata.h"
Zhao Qiangb818ba22014-03-21 16:21:45 +080046#ifdef CONFIG_U_QE
47#include "../../../../drivers/qe/qe.h"
48#endif
Timur Tabid7acf5c2011-11-21 17:10:23 -060049
Wolfgang Denk6405a152006-03-31 18:32:53 +020050DECLARE_GLOBAL_DATA_PTR;
51
Nikhil Badola006e83a2014-04-15 14:44:52 +053052#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
53/*
54 * For deriving usb clock from 100MHz sysclk, reference divisor is set
55 * to a value of 5, which gives an intermediate value 20(100/5). The
56 * multiplication factor integer is set to 24, which when multiplied to
57 * above intermediate value provides clock for usb ip.
58 */
59void usb_single_source_clk_configure(struct ccsr_usb_phy *usb_phy)
60{
61 sys_info_t sysinfo;
62
63 get_sys_info(&sysinfo);
64 if (sysinfo.diff_sysclk == 1) {
65 clrbits_be32(&usb_phy->pllprg[1],
66 CONFIG_SYS_FSL_USB_PLLPRG2_MFI);
67 setbits_be32(&usb_phy->pllprg[1],
68 CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV_INTERNAL_CLK |
69 CONFIG_SYS_FSL_USB_PLLPRG2_MFI_INTERNAL_CLK |
70 CONFIG_SYS_FSL_USB_INTERNAL_SOC_CLK_EN);
71 }
72}
73#endif
74
Suresh Gupta086f0a72014-02-26 14:29:12 +053075#ifdef CONFIG_SYS_FSL_ERRATUM_A006261
76void fsl_erratum_a006261_workaround(struct ccsr_usb_phy __iomem *usb_phy)
77{
78#ifdef CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE
79 u32 xcvrprg = in_be32(&usb_phy->port1.xcvrprg);
80
81 /* Increase Disconnect Threshold by 50mV */
82 xcvrprg &= ~CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK |
83 INC_DCNT_THRESHOLD_50MV;
84 /* Enable programming of USB High speed Disconnect threshold */
85 xcvrprg |= CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN;
86 out_be32(&usb_phy->port1.xcvrprg, xcvrprg);
87
88 xcvrprg = in_be32(&usb_phy->port2.xcvrprg);
89 /* Increase Disconnect Threshold by 50mV */
90 xcvrprg &= ~CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK |
91 INC_DCNT_THRESHOLD_50MV;
92 /* Enable programming of USB High speed Disconnect threshold */
93 xcvrprg |= CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN;
94 out_be32(&usb_phy->port2.xcvrprg, xcvrprg);
95#else
96
97 u32 temp = 0;
98 u32 status = in_be32(&usb_phy->status1);
99
100 u32 squelch_prog_rd_0_2 =
101 (status >> CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_0)
102 & CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK;
103
104 u32 squelch_prog_rd_3_5 =
105 (status >> CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_3)
106 & CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK;
107
108 setbits_be32(&usb_phy->config1,
109 CONFIG_SYS_FSL_USB_HS_DISCNCT_INC);
110 setbits_be32(&usb_phy->config2,
111 CONFIG_SYS_FSL_USB_RX_AUTO_CAL_RD_WR_SEL);
112
113 temp = squelch_prog_rd_0_2 << CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_0;
114 out_be32(&usb_phy->config2, in_be32(&usb_phy->config2) | temp);
115
116 temp = squelch_prog_rd_3_5 << CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_3;
117 out_be32(&usb_phy->config2, in_be32(&usb_phy->config2) | temp);
118#endif
119}
120#endif
121
122
Zhao Qiangb818ba22014-03-21 16:21:45 +0800123#if defined(CONFIG_QE) && !defined(CONFIG_U_QE)
Andy Flemingee0e9172007-08-14 00:14:25 -0500124extern qe_iop_conf_t qe_iop_conf_tab[];
125extern void qe_config_iopin(u8 port, u8 pin, int dir,
126 int open_drain, int assign);
127extern void qe_init(uint qe_base);
128extern void qe_reset(void);
129
130static void config_qe_ioports(void)
131{
132 u8 port, pin;
133 int dir, open_drain, assign;
134 int i;
135
136 for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) {
137 port = qe_iop_conf_tab[i].port;
138 pin = qe_iop_conf_tab[i].pin;
139 dir = qe_iop_conf_tab[i].dir;
140 open_drain = qe_iop_conf_tab[i].open_drain;
141 assign = qe_iop_conf_tab[i].assign;
142 qe_config_iopin(port, pin, dir, open_drain, assign);
143 }
144}
145#endif
Matthew McClintock148e26a2006-06-28 10:43:36 -0500146
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500147#ifdef CONFIG_CPM2
Kumar Galacd113a02007-11-28 00:36:33 -0600148void config_8560_ioports (volatile ccsr_cpm_t * cpm)
wdenk9c53f402003-10-15 23:53:47 +0000149{
150 int portnum;
151
152 for (portnum = 0; portnum < 4; portnum++) {
153 uint pmsk = 0,
154 ppar = 0,
155 psor = 0,
156 pdir = 0,
157 podr = 0,
158 pdat = 0;
159 iop_conf_t *iopc = (iop_conf_t *) & iop_conf_tab[portnum][0];
160 iop_conf_t *eiopc = iopc + 32;
161 uint msk = 1;
162
163 /*
164 * NOTE:
165 * index 0 refers to pin 31,
166 * index 31 refers to pin 0
167 */
168 while (iopc < eiopc) {
169 if (iopc->conf) {
170 pmsk |= msk;
171 if (iopc->ppar)
172 ppar |= msk;
173 if (iopc->psor)
174 psor |= msk;
175 if (iopc->pdir)
176 pdir |= msk;
177 if (iopc->podr)
178 podr |= msk;
179 if (iopc->pdat)
180 pdat |= msk;
181 }
182
183 msk <<= 1;
184 iopc++;
185 }
186
187 if (pmsk != 0) {
Kumar Galacd113a02007-11-28 00:36:33 -0600188 volatile ioport_t *iop = ioport_addr (cpm, portnum);
wdenk9c53f402003-10-15 23:53:47 +0000189 uint tpmsk = ~pmsk;
190
191 /*
192 * the (somewhat confused) paragraph at the
193 * bottom of page 35-5 warns that there might
194 * be "unknown behaviour" when programming
195 * PSORx and PDIRx, if PPARx = 1, so I
196 * decided this meant I had to disable the
197 * dedicated function first, and enable it
198 * last.
199 */
200 iop->ppar &= tpmsk;
201 iop->psor = (iop->psor & tpmsk) | psor;
202 iop->podr = (iop->podr & tpmsk) | podr;
203 iop->pdat = (iop->pdat & tpmsk) | pdat;
204 iop->pdir = (iop->pdir & tpmsk) | pdir;
205 iop->ppar |= ppar;
206 }
207 }
208}
209#endif
210
Kumar Gala76eef3e2009-03-19 03:40:08 -0500211#ifdef CONFIG_SYS_FSL_CPC
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530212#if defined(CONFIG_RAMBOOT_PBL) || defined(CONFIG_SYS_CPC_REINIT_F)
Tang Yuantianefd6da62014-07-04 17:39:26 +0800213void disable_cpc_sram(void)
Kumar Gala76eef3e2009-03-19 03:40:08 -0500214{
215 int i;
Kumar Gala76eef3e2009-03-19 03:40:08 -0500216
217 cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR;
218
219 for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) {
Shaohui Xie25a2b392011-03-16 10:10:32 +0800220 if (in_be32(&cpc->cpcsrcr0) & CPC_SRCR0_SRAMEN) {
221 /* find and disable LAW of SRAM */
222 struct law_entry law = find_law(CONFIG_SYS_INIT_L3_ADDR);
223
224 if (law.index == -1) {
225 printf("\nFatal error happened\n");
226 return;
227 }
228 disable_law(law.index);
229
230 clrbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_CDQ_SPEC_DIS);
231 out_be32(&cpc->cpccsr0, 0);
232 out_be32(&cpc->cpcsrcr0, 0);
233 }
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530234 }
235}
Shaohui Xie25a2b392011-03-16 10:10:32 +0800236#endif
Kumar Gala76eef3e2009-03-19 03:40:08 -0500237
Sandeep Singh4fb16a12014-06-05 18:49:57 +0530238#if defined(T1040_TDM_QUIRK_CCSR_BASE)
239#ifdef CONFIG_POST
240#error POST memory test cannot be enabled with TDM
241#endif
242static void enable_tdm_law(void)
243{
244 int ret;
245 char buffer[HWCONFIG_BUFFER_SIZE] = {0};
246 int tdm_hwconfig_enabled = 0;
247
248 /*
249 * Extract hwconfig from environment since environment
250 * is not setup properly yet. Search for tdm entry in
251 * hwconfig.
252 */
253 ret = getenv_f("hwconfig", buffer, sizeof(buffer));
254 if (ret > 0) {
255 tdm_hwconfig_enabled = hwconfig_f("tdm", buffer);
256 /* If tdm is defined in hwconfig, set law for tdm workaround */
257 if (tdm_hwconfig_enabled)
258 set_next_law(T1040_TDM_QUIRK_CCSR_BASE, LAW_SIZE_16M,
259 LAW_TRGT_IF_CCSR);
260 }
261}
262#endif
263
Tang Yuantianefd6da62014-07-04 17:39:26 +0800264void enable_cpc(void)
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530265{
266 int i;
Shaveta Leekhaa7b70972014-07-02 11:44:15 +0530267 int ret;
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530268 u32 size = 0;
Shaveta Leekhaa7b70972014-07-02 11:44:15 +0530269 u32 cpccfg0;
270 char buffer[HWCONFIG_BUFFER_SIZE];
271 char cpc_subarg[16];
272 bool have_hwconfig = false;
273 int cpc_args = 0;
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530274 cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR;
275
Shaveta Leekhaa7b70972014-07-02 11:44:15 +0530276 /* Extract hwconfig from environment */
277 ret = getenv_f("hwconfig", buffer, sizeof(buffer));
278 if (ret > 0) {
279 /*
280 * If "en_cpc" is not defined in hwconfig then by default all
281 * cpcs are enable. If this config is defined then individual
282 * cpcs which have to be enabled should also be defined.
283 * e.g en_cpc:cpc1,cpc2;
284 */
285 if (hwconfig_f("en_cpc", buffer))
286 have_hwconfig = true;
287 }
288
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530289 for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) {
Shaveta Leekhaa7b70972014-07-02 11:44:15 +0530290 if (have_hwconfig) {
291 sprintf(cpc_subarg, "cpc%u", i + 1);
292 cpc_args = hwconfig_sub_f("en_cpc", cpc_subarg, buffer);
293 if (cpc_args == 0)
294 continue;
295 }
296 cpccfg0 = in_be32(&cpc->cpccfg0);
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530297 size += CPC_CFG0_SZ_K(cpccfg0);
298
Kumar Gala9780b592011-01-13 01:54:01 -0600299#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002
300 setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_TAG_ECC_SCRUB_DIS);
301#endif
Kumar Gala887c0e12011-01-13 01:56:18 -0600302#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A003
303 setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_DATA_ECC_SCRUB_DIS);
304#endif
Scott Wood3f4a5c42013-05-15 17:50:13 -0500305#ifdef CONFIG_SYS_FSL_ERRATUM_A006593
306 setbits_be32(&cpc->cpchdbcr0, 1 << (31 - 21));
307#endif
York Sunb1954252013-09-16 12:49:31 -0700308#ifdef CONFIG_SYS_FSL_ERRATUM_A006379
309 if (has_erratum_a006379()) {
310 setbits_be32(&cpc->cpchdbcr0,
311 CPC_HDBCR0_SPLRU_LEVEL_EN);
312 }
313#endif
Kumar Gala9780b592011-01-13 01:54:01 -0600314
Kumar Gala76eef3e2009-03-19 03:40:08 -0500315 out_be32(&cpc->cpccsr0, CPC_CSR0_CE | CPC_CSR0_PE);
316 /* Read back to sync write */
317 in_be32(&cpc->cpccsr0);
318
319 }
320
Shruti Kanetkar3adfb912013-08-15 11:25:37 -0500321 puts("Corenet Platform Cache: ");
322 print_size(size * 1024, " enabled\n");
Kumar Gala76eef3e2009-03-19 03:40:08 -0500323}
324
Kim Phillips402673f2012-10-29 13:34:38 +0000325static void invalidate_cpc(void)
Kumar Gala76eef3e2009-03-19 03:40:08 -0500326{
327 int i;
328 cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR;
329
330 for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) {
Shaohui Xie25a2b392011-03-16 10:10:32 +0800331 /* skip CPC when it used as all SRAM */
332 if (in_be32(&cpc->cpcsrcr0) & CPC_SRCR0_SRAMEN)
333 continue;
Kumar Gala76eef3e2009-03-19 03:40:08 -0500334 /* Flash invalidate the CPC and clear all the locks */
335 out_be32(&cpc->cpccsr0, CPC_CSR0_FI | CPC_CSR0_LFC);
336 while (in_be32(&cpc->cpccsr0) & (CPC_CSR0_FI | CPC_CSR0_LFC))
337 ;
338 }
339}
340#else
341#define enable_cpc()
342#define invalidate_cpc()
Tang Yuantianefd6da62014-07-04 17:39:26 +0800343#define disable_cpc_sram()
Kumar Gala76eef3e2009-03-19 03:40:08 -0500344#endif /* CONFIG_SYS_FSL_CPC */
345
wdenk9c53f402003-10-15 23:53:47 +0000346/*
347 * Breathe some life into the CPU...
348 *
349 * Set up the memory map
350 * initialize a bunch of registers
351 */
352
Kumar Gala24f86a82009-09-17 01:52:37 -0500353#ifdef CONFIG_FSL_CORENET
354static void corenet_tb_init(void)
355{
356 volatile ccsr_rcpm_t *rcpm =
357 (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
358 volatile ccsr_pic_t *pic =
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500359 (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala24f86a82009-09-17 01:52:37 -0500360 u32 whoami = in_be32(&pic->whoami);
361
362 /* Enable the timebase register for this core */
363 out_be32(&rcpm->ctbenrl, (1 << whoami));
364}
365#endif
366
York Sun7b083df2014-03-28 15:07:27 -0700367#ifdef CONFIG_SYS_FSL_ERRATUM_A007212
368void fsl_erratum_a007212_workaround(void)
369{
370 ccsr_gur_t __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
371 u32 ddr_pll_ratio;
372 u32 __iomem *plldgdcr1 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c20);
373 u32 __iomem *plldadcr1 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c28);
374 u32 __iomem *dpdovrcr4 = (void *)(CONFIG_SYS_DCSRBAR + 0x21e80);
375#if (CONFIG_NUM_DDR_CONTROLLERS >= 2)
376 u32 __iomem *plldgdcr2 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c40);
377 u32 __iomem *plldadcr2 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c48);
378#if (CONFIG_NUM_DDR_CONTROLLERS >= 3)
379 u32 __iomem *plldgdcr3 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c60);
380 u32 __iomem *plldadcr3 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c68);
381#endif
382#endif
383 /*
384 * Even this workaround applies to selected version of SoCs, it is
385 * safe to apply to all versions, with the limitation of odd ratios.
386 * If RCW has disabled DDR PLL, we have to apply this workaround,
387 * otherwise DDR will not work.
388 */
389 ddr_pll_ratio = (in_be32(&gur->rcwsr[0]) >>
390 FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT) &
391 FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK;
392 /* check if RCW sets ratio to 0, required by this workaround */
393 if (ddr_pll_ratio != 0)
394 return;
395 ddr_pll_ratio = (in_be32(&gur->rcwsr[0]) >>
396 FSL_CORENET_RCWSR0_MEM_PLL_RAT_RESV_SHIFT) &
397 FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK;
398 /* check if reserved bits have the desired ratio */
399 if (ddr_pll_ratio == 0) {
400 printf("Error: Unknown DDR PLL ratio!\n");
401 return;
402 }
403 ddr_pll_ratio >>= 1;
404
405 setbits_be32(plldadcr1, 0x02000001);
406#if (CONFIG_NUM_DDR_CONTROLLERS >= 2)
407 setbits_be32(plldadcr2, 0x02000001);
408#if (CONFIG_NUM_DDR_CONTROLLERS >= 3)
409 setbits_be32(plldadcr3, 0x02000001);
410#endif
411#endif
412 setbits_be32(dpdovrcr4, 0xe0000000);
413 out_be32(plldgdcr1, 0x08000001 | (ddr_pll_ratio << 1));
414#if (CONFIG_NUM_DDR_CONTROLLERS >= 2)
415 out_be32(plldgdcr2, 0x08000001 | (ddr_pll_ratio << 1));
416#if (CONFIG_NUM_DDR_CONTROLLERS >= 3)
417 out_be32(plldgdcr3, 0x08000001 | (ddr_pll_ratio << 1));
418#endif
419#endif
420 udelay(100);
421 clrbits_be32(plldadcr1, 0x02000001);
422#if (CONFIG_NUM_DDR_CONTROLLERS >= 2)
423 clrbits_be32(plldadcr2, 0x02000001);
424#if (CONFIG_NUM_DDR_CONTROLLERS >= 3)
425 clrbits_be32(plldadcr3, 0x02000001);
426#endif
427#endif
428 clrbits_be32(dpdovrcr4, 0xe0000000);
429}
430#endif
431
York Sun695c0c32014-04-30 14:43:47 -0700432ulong cpu_init_f(void)
wdenk9c53f402003-10-15 23:53:47 +0000433{
wdenk9c53f402003-10-15 23:53:47 +0000434 extern void m8560_cpm_reset (void);
Ruchika Gupta2998af12014-09-29 11:35:33 +0530435#if defined(CONFIG_SYS_DCSRBAR_PHYS) || \
436 (defined(CONFIG_SECURE_BOOT) && defined(CONFIG_FSL_CORENET))
Stephen George5bbf29c2011-07-20 09:47:26 -0500437 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
438#endif
Ruchika Gupta8ca8d822010-12-15 17:02:08 +0000439#if defined(CONFIG_SECURE_BOOT)
440 struct law_entry law;
441#endif
Peter Tyser30103c62008-11-11 10:17:10 -0600442#ifdef CONFIG_MPC8548
443 ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
444 uint svr = get_svr();
445
446 /*
447 * CPU2 errata workaround: A core hang possible while executing
448 * a msync instruction and a snoopable transaction from an I/O
449 * master tagged to make quick forward progress is present.
450 * Fixed in silicon rev 2.1.
451 */
452 if ((SVR_MAJ(svr) == 1) || ((SVR_MAJ(svr) == 2 && SVR_MIN(svr) == 0x0)))
453 out_be32(&ecm->eebpcr, in_be32(&ecm->eebpcr) | (1 << 16));
454#endif
wdenk9c53f402003-10-15 23:53:47 +0000455
Kumar Gala9772ee72008-01-16 22:38:34 -0600456 disable_tlb(14);
457 disable_tlb(15);
458
Ruchika Gupta8ca8d822010-12-15 17:02:08 +0000459#if defined(CONFIG_SECURE_BOOT)
460 /* Disable the LAW created for NOR flash by the PBI commands */
461 law = find_law(CONFIG_SYS_PBI_FLASH_BASE);
462 if (law.index != -1)
463 disable_law(law.index);
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530464
465#if defined(CONFIG_SYS_CPC_REINIT_F)
466 disable_cpc_sram();
467#endif
Ruchika Gupta2998af12014-09-29 11:35:33 +0530468
469#if defined(CONFIG_FSL_CORENET)
470 /* Put PAMU in bypass mode */
471 out_be32(&gur->pamubypenr, FSL_CORENET_PAMU_BYPASS);
472#endif
473
Ruchika Gupta8ca8d822010-12-15 17:02:08 +0000474#endif
475
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500476#ifdef CONFIG_CPM2
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200477 config_8560_ioports((ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR);
wdenk9c53f402003-10-15 23:53:47 +0000478#endif
479
Becky Bruce0d4cee12010-06-17 11:37:20 -0500480 init_early_memctl_regs();
wdenk9c53f402003-10-15 23:53:47 +0000481
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500482#if defined(CONFIG_CPM2)
wdenk9c53f402003-10-15 23:53:47 +0000483 m8560_cpm_reset();
484#endif
Zhao Qiangb818ba22014-03-21 16:21:45 +0800485
486#if defined(CONFIG_QE) && !defined(CONFIG_U_QE)
Andy Flemingee0e9172007-08-14 00:14:25 -0500487 /* Config QE ioports */
488 config_qe_ioports();
489#endif
Zhao Qiangb818ba22014-03-21 16:21:45 +0800490
Peter Tysera9af1dc2009-06-30 17:15:47 -0500491#if defined(CONFIG_FSL_DMA)
492 dma_init();
493#endif
Kumar Gala24f86a82009-09-17 01:52:37 -0500494#ifdef CONFIG_FSL_CORENET
495 corenet_tb_init();
496#endif
Kumar Gala42f99182009-11-12 10:26:16 -0600497 init_used_tlb_cams();
Kumar Gala76eef3e2009-03-19 03:40:08 -0500498
499 /* Invalidate the CPC before DDR gets enabled */
500 invalidate_cpc();
Stephen George5bbf29c2011-07-20 09:47:26 -0500501
502 #ifdef CONFIG_SYS_DCSRBAR_PHYS
503 /* set DCSRCR so that DCSR space is 1G */
504 setbits_be32(&gur->dcsrcr, FSL_CORENET_DCSR_SZ_1G);
505 in_be32(&gur->dcsrcr);
506#endif
507
York Sun7b083df2014-03-28 15:07:27 -0700508#ifdef CONFIG_SYS_FSL_ERRATUM_A007212
509 fsl_erratum_a007212_workaround();
510#endif
511
tang yuantiana4341912014-12-18 10:26:34 +0800512 return 0;
wdenk9c53f402003-10-15 23:53:47 +0000513}
514
Kumar Galaa38a9ce2010-12-15 03:50:47 -0600515/* Implement a dummy function for those platforms w/o SERDES */
516static void __fsl_serdes__init(void)
517{
518 return ;
519}
520__attribute__((weak, alias("__fsl_serdes__init"))) void fsl_serdes_init(void);
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500521
Prabhakar Kushwahacc3c5b62013-08-29 13:10:38 +0530522#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
York Sunc3d87b12012-10-08 07:44:08 +0000523int enable_cluster_l2(void)
524{
525 int i = 0;
Shengzhou Liu26ed2d02014-04-25 16:31:22 +0800526 u32 cluster, svr = get_svr();
York Sunc3d87b12012-10-08 07:44:08 +0000527 ccsr_gur_t *gur = (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
528 struct ccsr_cluster_l2 __iomem *l2cache;
529
Shengzhou Liu26ed2d02014-04-25 16:31:22 +0800530 /* only the L2 of first cluster should be enabled as expected on T4080,
531 * but there is no EOC in the first cluster as HW sake, so return here
532 * to skip enabling L2 cache of the 2nd cluster.
533 */
534 if (SVR_SOC_VER(svr) == SVR_T4080)
535 return 0;
536
York Sunc3d87b12012-10-08 07:44:08 +0000537 cluster = in_be32(&gur->tp_cluster[i].lower);
538 if (cluster & TP_CLUSTER_EOC)
539 return 0;
540
541 /* The first cache has already been set up, so skip it */
542 i++;
543
544 /* Look through the remaining clusters, and set up their caches */
545 do {
Prabhakar Kushwahaccf0e682012-12-23 19:25:18 +0000546 int j, cluster_valid = 0;
547
York Sunc3d87b12012-10-08 07:44:08 +0000548 l2cache = (void __iomem *)(CONFIG_SYS_FSL_CLUSTER_1_L2 + i * 0x40000);
Prabhakar Kushwahaccf0e682012-12-23 19:25:18 +0000549
York Sunc3d87b12012-10-08 07:44:08 +0000550 cluster = in_be32(&gur->tp_cluster[i].lower);
551
Prabhakar Kushwahaccf0e682012-12-23 19:25:18 +0000552 /* check that at least one core/accel is enabled in cluster */
553 for (j = 0; j < 4; j++) {
554 u32 idx = (cluster >> (j*8)) & TP_CLUSTER_INIT_MASK;
555 u32 type = in_be32(&gur->tp_ityp[idx]);
York Sunc3d87b12012-10-08 07:44:08 +0000556
Shaveta Leekha6e125a22014-07-02 11:44:54 +0530557 if ((type & TP_ITYP_AV) &&
558 TP_ITYP_TYPE(type) == TP_ITYP_TYPE_PPC)
Prabhakar Kushwahaccf0e682012-12-23 19:25:18 +0000559 cluster_valid = 1;
560 }
561
562 if (cluster_valid) {
563 /* set stash ID to (cluster) * 2 + 32 + 1 */
564 clrsetbits_be32(&l2cache->l2csr1, 0xff, 32 + i * 2 + 1);
565
566 printf("enable l2 for cluster %d %p\n", i, l2cache);
York Sunc3d87b12012-10-08 07:44:08 +0000567
Prabhakar Kushwahaccf0e682012-12-23 19:25:18 +0000568 out_be32(&l2cache->l2csr0, L2CSR0_L2FI|L2CSR0_L2LFC);
569 while ((in_be32(&l2cache->l2csr0)
570 & (L2CSR0_L2FI|L2CSR0_L2LFC)) != 0)
571 ;
James Yang284ce502013-03-25 07:40:03 +0000572 out_be32(&l2cache->l2csr0, L2CSR0_L2E|L2CSR0_L2PE|L2CSR0_L2REP_MODE);
Prabhakar Kushwahaccf0e682012-12-23 19:25:18 +0000573 }
York Sunc3d87b12012-10-08 07:44:08 +0000574 i++;
575 } while (!(cluster & TP_CLUSTER_EOC));
576
577 return 0;
578}
579#endif
580
wdenk9c53f402003-10-15 23:53:47 +0000581/*
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500582 * Initialize L2 as cache.
wdenk9c53f402003-10-15 23:53:47 +0000583 */
Tang Yuantianefd6da62014-07-04 17:39:26 +0800584int l2cache_init(void)
wdenk9c53f402003-10-15 23:53:47 +0000585{
Timur Tabid7acf5c2011-11-21 17:10:23 -0600586 __maybe_unused u32 svr = get_svr();
York Sunc3d87b12012-10-08 07:44:08 +0000587#ifdef CONFIG_L2_CACHE
588 ccsr_l2cache_t *l2cache = (void __iomem *)CONFIG_SYS_MPC85xx_L2_ADDR;
Prabhakar Kushwahacc3c5b62013-08-29 13:10:38 +0530589#elif defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
York Sunc3d87b12012-10-08 07:44:08 +0000590 struct ccsr_cluster_l2 * l2cache = (void __iomem *)CONFIG_SYS_FSL_CLUSTER_1_L2;
Lan Chunhee0ef7322010-04-21 07:40:50 -0500591#endif
York Sunf066a042012-10-28 08:12:54 +0000592
Wolfgang Grandegger09cb1202008-06-05 13:11:59 +0200593 puts ("L2: ");
594
wdenk9c53f402003-10-15 23:53:47 +0000595#if defined(CONFIG_L2_CACHE)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500596 volatile uint cache_ctl;
Timur Tabid7acf5c2011-11-21 17:10:23 -0600597 uint ver;
Kumar Gala20119972008-07-14 14:07:00 -0500598 u32 l2siz_field;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500599
Kumar Gala1f109fd2008-04-08 10:45:50 -0500600 ver = SVR_SOC_VER(svr);
wdenk9c53f402003-10-15 23:53:47 +0000601
602 asm("msync;isync");
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500603 cache_ctl = l2cache->l2ctl;
Mingkai Hu0255cd72009-09-11 14:19:10 +0800604
605#if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L2_ADDR)
606 if (cache_ctl & MPC85xx_L2CTL_L2E) {
607 /* Clear L2 SRAM memory-mapped base address */
608 out_be32(&l2cache->l2srbar0, 0x0);
609 out_be32(&l2cache->l2srbar1, 0x0);
610
611 /* set MBECCDIS=0, SBECCDIS=0 */
612 clrbits_be32(&l2cache->l2errdis,
613 (MPC85xx_L2ERRDIS_MBECC |
614 MPC85xx_L2ERRDIS_SBECC));
615
616 /* set L2E=0, L2SRAM=0 */
617 clrbits_be32(&l2cache->l2ctl,
618 (MPC85xx_L2CTL_L2E |
619 MPC85xx_L2CTL_L2SRAM_ENTIRE));
620 }
621#endif
622
Kumar Gala20119972008-07-14 14:07:00 -0500623 l2siz_field = (cache_ctl >> 28) & 0x3;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500624
Kumar Gala20119972008-07-14 14:07:00 -0500625 switch (l2siz_field) {
626 case 0x0:
627 printf(" unknown size (0x%08x)\n", cache_ctl);
628 return -1;
629 break;
630 case 0x1:
631 if (ver == SVR_8540 || ver == SVR_8560 ||
York Sun8cb65482012-07-06 17:10:33 -0500632 ver == SVR_8541 || ver == SVR_8555) {
Shruti Kanetkar81159362013-08-15 11:25:38 -0500633 puts("128 KiB ");
634 /* set L2E=1, L2I=1, & L2BLKSZ=1 (128 KiBibyte) */
Kumar Gala20119972008-07-14 14:07:00 -0500635 cache_ctl = 0xc4000000;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500636 } else {
Shruti Kanetkar81159362013-08-15 11:25:38 -0500637 puts("256 KiB ");
Kumar Gala20119972008-07-14 14:07:00 -0500638 cache_ctl = 0xc0000000; /* set L2E=1, L2I=1, & L2SRAM=0 */
639 }
640 break;
641 case 0x2:
642 if (ver == SVR_8540 || ver == SVR_8560 ||
York Sun8cb65482012-07-06 17:10:33 -0500643 ver == SVR_8541 || ver == SVR_8555) {
Shruti Kanetkar81159362013-08-15 11:25:38 -0500644 puts("256 KiB ");
645 /* set L2E=1, L2I=1, & L2BLKSZ=2 (256 KiBibyte) */
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -0500646 cache_ctl = 0xc8000000;
Kumar Gala20119972008-07-14 14:07:00 -0500647 } else {
Shruti Kanetkar81159362013-08-15 11:25:38 -0500648 puts("512 KiB ");
Kumar Gala20119972008-07-14 14:07:00 -0500649 /* set L2E=1, L2I=1, & L2SRAM=0 */
650 cache_ctl = 0xc0000000;
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500651 }
Jon Loeliger4fc25e42005-07-25 10:58:39 -0500652 break;
Kumar Gala20119972008-07-14 14:07:00 -0500653 case 0x3:
Shruti Kanetkar81159362013-08-15 11:25:38 -0500654 puts("1024 KiB ");
Kumar Gala20119972008-07-14 14:07:00 -0500655 /* set L2E=1, L2I=1, & L2SRAM=0 */
656 cache_ctl = 0xc0000000;
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -0500657 break;
Jon Loeliger4fc25e42005-07-25 10:58:39 -0500658 }
659
Mingkai Hud2088e02009-08-18 15:37:15 +0800660 if (l2cache->l2ctl & MPC85xx_L2CTL_L2E) {
Wolfgang Grandegger09cb1202008-06-05 13:11:59 +0200661 puts("already enabled");
Haiying Wang05beab72010-12-01 10:35:30 -0500662#if defined(CONFIG_SYS_INIT_L2_ADDR) && defined(CONFIG_SYS_FLASH_BASE)
Kumar Gala1882fab2011-11-09 09:56:41 -0600663 u32 l2srbar = l2cache->l2srbar0;
Mingkai Hud2088e02009-08-18 15:37:15 +0800664 if (l2cache->l2ctl & MPC85xx_L2CTL_L2SRAM_ENTIRE
665 && l2srbar >= CONFIG_SYS_FLASH_BASE) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200666 l2srbar = CONFIG_SYS_INIT_L2_ADDR;
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -0500667 l2cache->l2srbar0 = l2srbar;
Scott Wood55f9f3a2012-10-29 19:00:41 -0500668 printf(", moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR);
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -0500669 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200670#endif /* CONFIG_SYS_INIT_L2_ADDR */
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -0500671 puts("\n");
672 } else {
673 asm("msync;isync");
674 l2cache->l2ctl = cache_ctl; /* invalidate & enable */
675 asm("msync;isync");
Wolfgang Grandegger09cb1202008-06-05 13:11:59 +0200676 puts("enabled\n");
Ed Swarthoutdd93d8f2007-07-27 01:50:47 -0500677 }
Kumar Galae56f2c52009-03-19 09:16:10 -0500678#elif defined(CONFIG_BACKSIDE_L2_CACHE)
York Sun8cb65482012-07-06 17:10:33 -0500679 if (SVR_SOC_VER(svr) == SVR_P2040) {
Kumar Galae08c6d82011-07-21 00:20:21 -0500680 puts("N/A\n");
681 goto skip_l2;
682 }
683
Kumar Galae56f2c52009-03-19 09:16:10 -0500684 u32 l2cfg0 = mfspr(SPRN_L2CFG0);
685
686 /* invalidate the L2 cache */
Kumar Galab6a40902009-09-22 15:45:44 -0500687 mtspr(SPRN_L2CSR0, (L2CSR0_L2FI|L2CSR0_L2LFC));
688 while (mfspr(SPRN_L2CSR0) & (L2CSR0_L2FI|L2CSR0_L2LFC))
Kumar Galae56f2c52009-03-19 09:16:10 -0500689 ;
690
Kumar Gala8d2817c2009-03-19 02:53:01 -0500691#ifdef CONFIG_SYS_CACHE_STASHING
692 /* set stash id to (coreID) * 2 + 32 + L2 (1) */
693 mtspr(SPRN_L2CSR1, (32 + 1));
694#endif
695
Kumar Galae56f2c52009-03-19 09:16:10 -0500696 /* enable the cache */
697 mtspr(SPRN_L2CSR0, CONFIG_SYS_INIT_L2CSR0);
698
Dave Liu17218192009-10-22 00:10:23 -0500699 if (CONFIG_SYS_INIT_L2CSR0 & L2CSR0_L2E) {
700 while (!(mfspr(SPRN_L2CSR0) & L2CSR0_L2E))
701 ;
Shruti Kanetkar3adfb912013-08-15 11:25:37 -0500702 print_size((l2cfg0 & 0x3fff) * 64 * 1024, " enabled\n");
Dave Liu17218192009-10-22 00:10:23 -0500703 }
Kumar Galae08c6d82011-07-21 00:20:21 -0500704
705skip_l2:
Prabhakar Kushwahacc3c5b62013-08-29 13:10:38 +0530706#elif defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
York Sunc3d87b12012-10-08 07:44:08 +0000707 if (l2cache->l2csr0 & L2CSR0_L2E)
Shruti Kanetkar3adfb912013-08-15 11:25:37 -0500708 print_size((l2cache->l2cfg0 & 0x3fff) * 64 * 1024,
709 " enabled\n");
York Sunc3d87b12012-10-08 07:44:08 +0000710
711 enable_cluster_l2();
wdenk9c53f402003-10-15 23:53:47 +0000712#else
Wolfgang Grandegger09cb1202008-06-05 13:11:59 +0200713 puts("disabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000714#endif
Kumar Gala76eef3e2009-03-19 03:40:08 -0500715
Tang Yuantianefd6da62014-07-04 17:39:26 +0800716 return 0;
717}
718
719/*
720 *
721 * The newer 8548, etc, parts have twice as much cache, but
722 * use the same bit-encoding as the older 8555, etc, parts.
723 *
724 */
725int cpu_init_r(void)
726{
727 __maybe_unused u32 svr = get_svr();
728#ifdef CONFIG_SYS_LBC_LCRR
729 fsl_lbc_t *lbc = (void __iomem *)LBC_BASE_ADDR;
730#endif
731#if defined(CONFIG_PPC_SPINTABLE_COMPATIBLE) && defined(CONFIG_MP)
732 extern int spin_table_compat;
733 const char *spin;
734#endif
735#ifdef CONFIG_SYS_FSL_ERRATUM_SEC_A003571
736 ccsr_sec_t __iomem *sec = (void *)CONFIG_SYS_FSL_SEC_ADDR;
737#endif
738#if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) || \
739 defined(CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011)
740 /*
741 * CPU22 and NMG_CPU_A011 share the same workaround.
742 * CPU22 applies to P4080 rev 1.0, 2.0, fixed in 3.0
743 * NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in 3.0
744 * also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1, both
745 * fixed in 2.0. NMG_CPU_A011 is activated by default and can
746 * be disabled by hwconfig with syntax:
747 *
748 * fsl_cpu_a011:disable
749 */
750 extern int enable_cpu_a011_workaround;
751#ifdef CONFIG_SYS_P4080_ERRATUM_CPU22
752 enable_cpu_a011_workaround = (SVR_MAJ(svr) < 3);
753#else
754 char buffer[HWCONFIG_BUFFER_SIZE];
755 char *buf = NULL;
756 int n, res;
757
758 n = getenv_f("hwconfig", buffer, sizeof(buffer));
759 if (n > 0)
760 buf = buffer;
761
762 res = hwconfig_arg_cmp_f("fsl_cpu_a011", "disable", buf);
763 if (res > 0) {
764 enable_cpu_a011_workaround = 0;
765 } else {
766 if (n >= HWCONFIG_BUFFER_SIZE) {
767 printf("fsl_cpu_a011 was not found. hwconfig variable "
768 "may be too long\n");
769 }
770 enable_cpu_a011_workaround =
771 (SVR_SOC_VER(svr) == SVR_P4080 && SVR_MAJ(svr) < 3) ||
772 (SVR_SOC_VER(svr) != SVR_P4080 && SVR_MAJ(svr) < 2);
773 }
774#endif
775 if (enable_cpu_a011_workaround) {
776 flush_dcache();
777 mtspr(L1CSR2, (mfspr(L1CSR2) | L1CSR2_DCWS));
778 sync();
779 }
780#endif
781#ifdef CONFIG_SYS_FSL_ERRATUM_A005812
782 /*
783 * A-005812 workaround sets bit 32 of SPR 976 for SoCs running
784 * in write shadow mode. Checking DCWS before setting SPR 976.
785 */
786 if (mfspr(L1CSR2) & L1CSR2_DCWS)
787 mtspr(SPRN_HDBCR0, (mfspr(SPRN_HDBCR0) | 0x80000000));
788#endif
789
790#if defined(CONFIG_PPC_SPINTABLE_COMPATIBLE) && defined(CONFIG_MP)
791 spin = getenv("spin_table_compat");
792 if (spin && (*spin == 'n'))
793 spin_table_compat = 0;
794 else
795 spin_table_compat = 1;
796#endif
797
Prabhakar Kushwaha1de43cf2016-01-22 14:34:44 +0530798#ifdef CONFIG_FSL_CORENET
799 set_liodns();
800#ifdef CONFIG_SYS_DPAA_QBMAN
801 setup_portals();
802#endif
803#endif
804
Tang Yuantianefd6da62014-07-04 17:39:26 +0800805 l2cache_init();
Aneesh Bansal8bcbc272014-03-18 23:40:26 +0530806#if defined(CONFIG_RAMBOOT_PBL)
807 disable_cpc_sram();
808#endif
Kumar Gala76eef3e2009-03-19 03:40:08 -0500809 enable_cpc();
Sandeep Singh4fb16a12014-06-05 18:49:57 +0530810#if defined(T1040_TDM_QUIRK_CCSR_BASE)
811 enable_tdm_law();
812#endif
Kumar Gala76eef3e2009-03-19 03:40:08 -0500813
York Sun972cc402013-06-25 11:37:41 -0700814#ifndef CONFIG_SYS_FSL_NO_SERDES
Kumar Gala86853d42010-05-22 13:21:39 -0500815 /* needs to be in ram since code uses global static vars */
816 fsl_serdes_init();
York Sun972cc402013-06-25 11:37:41 -0700817#endif
Kumar Gala86853d42010-05-22 13:21:39 -0500818
Shengzhou Liu097be702013-08-15 09:31:47 +0800819#ifdef CONFIG_SYS_FSL_ERRATUM_SEC_A003571
820#define MCFGR_AXIPIPE 0x000000f0
821 if (IS_SVR_REV(svr, 1, 0))
Ruchika Guptabb7143b2014-09-09 11:50:31 +0530822 sec_clrbits32(&sec->mcfgr, MCFGR_AXIPIPE);
Shengzhou Liu097be702013-08-15 09:31:47 +0800823#endif
824
Shengzhou Liu95bd8e52013-01-23 19:56:23 +0000825#ifdef CONFIG_SYS_FSL_ERRATUM_A005871
826 if (IS_SVR_REV(svr, 1, 0)) {
827 int i;
828 __be32 *p = (void __iomem *)CONFIG_SYS_DCSRBAR + 0xb004c;
829
830 for (i = 0; i < 12; i++) {
831 p += i + (i > 5 ? 11 : 0);
832 out_be32(p, 0x2);
833 }
834 p = (void __iomem *)CONFIG_SYS_DCSRBAR + 0xb0108;
835 out_be32(p, 0x34);
836 }
837#endif
838
Kumar Gala8975d7a2010-12-30 12:09:53 -0600839#ifdef CONFIG_SYS_SRIO
840 srio_init();
Liu Gang27afb9c2013-05-07 16:30:46 +0800841#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangd7b17a92012-08-09 05:09:59 +0000842 char *s = getenv("bootmaster");
843 if (s) {
844 if (!strcmp(s, "SRIO1")) {
845 srio_boot_master(1);
846 srio_boot_master_release_slave(1);
847 }
848 if (!strcmp(s, "SRIO2")) {
849 srio_boot_master(2);
850 srio_boot_master_release_slave(2);
851 }
852 }
Liu Gang4cc85322012-03-08 00:33:17 +0000853#endif
Kumar Gala8975d7a2010-12-30 12:09:53 -0600854#endif
855
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600856#if defined(CONFIG_MP)
857 setup_mp();
858#endif
Lan Chunhee0ef7322010-04-21 07:40:50 -0500859
Zang Roy-R6191183659922012-09-18 09:50:08 +0000860#ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC13
Roy Zangc65dc4d2011-01-07 00:24:27 -0600861 {
Zang Roy-R6191183659922012-09-18 09:50:08 +0000862 if (SVR_MAJ(svr) < 3) {
863 void *p;
864 p = (void *)CONFIG_SYS_DCSRBAR + 0x20520;
865 setbits_be32(p, 1 << (31 - 14));
866 }
Roy Zangc65dc4d2011-01-07 00:24:27 -0600867 }
868#endif
869
Lan Chunhee0ef7322010-04-21 07:40:50 -0500870#ifdef CONFIG_SYS_LBC_LCRR
871 /*
872 * Modify the CLKDIV field of LCRR register to improve the writing
873 * speed for NOR flash.
874 */
875 clrsetbits_be32(&lbc->lcrr, LCRR_CLKDIV, CONFIG_SYS_LBC_LCRR);
876 __raw_readl(&lbc->lcrr);
877 isync();
Kumar Galaf3339d62011-10-03 08:37:57 -0500878#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_LBC103
879 udelay(100);
880#endif
Lan Chunhee0ef7322010-04-21 07:40:50 -0500881#endif
882
Roy Zang6d6a0e12011-04-13 00:08:51 -0500883#ifdef CONFIG_SYS_FSL_USB1_PHY_ENABLE
884 {
ramneek mehreshc65e8822013-08-05 16:00:16 +0530885 struct ccsr_usb_phy __iomem *usb_phy1 =
Roy Zang6d6a0e12011-04-13 00:08:51 -0500886 (void *)CONFIG_SYS_MPC85xx_USB1_PHY_ADDR;
Suresh Gupta086f0a72014-02-26 14:29:12 +0530887#ifdef CONFIG_SYS_FSL_ERRATUM_A006261
888 if (has_erratum_a006261())
889 fsl_erratum_a006261_workaround(usb_phy1);
890#endif
Roy Zang6d6a0e12011-04-13 00:08:51 -0500891 out_be32(&usb_phy1->usb_enable_override,
892 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE);
893 }
894#endif
895#ifdef CONFIG_SYS_FSL_USB2_PHY_ENABLE
896 {
ramneek mehreshc65e8822013-08-05 16:00:16 +0530897 struct ccsr_usb_phy __iomem *usb_phy2 =
Roy Zang6d6a0e12011-04-13 00:08:51 -0500898 (void *)CONFIG_SYS_MPC85xx_USB2_PHY_ADDR;
Suresh Gupta086f0a72014-02-26 14:29:12 +0530899#ifdef CONFIG_SYS_FSL_ERRATUM_A006261
900 if (has_erratum_a006261())
901 fsl_erratum_a006261_workaround(usb_phy2);
902#endif
Roy Zang6d6a0e12011-04-13 00:08:51 -0500903 out_be32(&usb_phy2->usb_enable_override,
904 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE);
905 }
906#endif
907
Xuleicf4f4932013-03-11 17:56:34 +0000908#ifdef CONFIG_SYS_FSL_ERRATUM_USB14
909 /* On P204x/P304x/P50x0 Rev1.0, USB transmit will result internal
910 * multi-bit ECC errors which has impact on performance, so software
911 * should disable all ECC reporting from USB1 and USB2.
912 */
913 if (IS_SVR_REV(get_svr(), 1, 0)) {
914 struct dcsr_dcfg_regs *dcfg = (struct dcsr_dcfg_regs *)
915 (CONFIG_SYS_DCSRBAR + CONFIG_SYS_DCSR_DCFG_OFFSET);
916 setbits_be32(&dcfg->ecccr1,
917 (DCSR_DCFG_ECC_DISABLE_USB1 |
918 DCSR_DCFG_ECC_DISABLE_USB2));
919 }
920#endif
921
Roy Zang59a539a2013-03-25 07:39:33 +0000922#if defined(CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE)
ramneek mehreshc65e8822013-08-05 16:00:16 +0530923 struct ccsr_usb_phy __iomem *usb_phy =
Roy Zang59a539a2013-03-25 07:39:33 +0000924 (void *)CONFIG_SYS_MPC85xx_USB1_PHY_ADDR;
925 setbits_be32(&usb_phy->pllprg[1],
926 CONFIG_SYS_FSL_USB_PLLPRG2_PHY2_CLK_EN |
927 CONFIG_SYS_FSL_USB_PLLPRG2_PHY1_CLK_EN |
928 CONFIG_SYS_FSL_USB_PLLPRG2_MFI |
929 CONFIG_SYS_FSL_USB_PLLPRG2_PLL_EN);
Nikhil Badola006e83a2014-04-15 14:44:52 +0530930#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
931 usb_single_source_clk_configure(usb_phy);
932#endif
Roy Zang59a539a2013-03-25 07:39:33 +0000933 setbits_be32(&usb_phy->port1.ctrl,
934 CONFIG_SYS_FSL_USB_CTRL_PHY_EN);
935 setbits_be32(&usb_phy->port1.drvvbuscfg,
936 CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN);
937 setbits_be32(&usb_phy->port1.pwrfltcfg,
938 CONFIG_SYS_FSL_USB_PWRFLT_CR_EN);
939 setbits_be32(&usb_phy->port2.ctrl,
940 CONFIG_SYS_FSL_USB_CTRL_PHY_EN);
941 setbits_be32(&usb_phy->port2.drvvbuscfg,
942 CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN);
943 setbits_be32(&usb_phy->port2.pwrfltcfg,
944 CONFIG_SYS_FSL_USB_PWRFLT_CR_EN);
Suresh Gupta086f0a72014-02-26 14:29:12 +0530945
946#ifdef CONFIG_SYS_FSL_ERRATUM_A006261
947 if (has_erratum_a006261())
948 fsl_erratum_a006261_workaround(usb_phy);
Roy Zang59a539a2013-03-25 07:39:33 +0000949#endif
950
Suresh Gupta086f0a72014-02-26 14:29:12 +0530951#endif /* CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE */
952
Kumar Gala2683c532011-04-13 08:37:44 -0500953#ifdef CONFIG_FMAN_ENET
954 fman_enet_init();
955#endif
956
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530957#ifdef CONFIG_FSL_CAAM
958 sec_init();
959#endif
960
Timur Tabid7acf5c2011-11-21 17:10:23 -0600961#if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001)
962 /*
963 * For P1022/1013 Rev1.0 silicon, after power on SATA host
964 * controller is configured in legacy mode instead of the
965 * expected enterprise mode. Software needs to clear bit[28]
966 * of HControl register to change to enterprise mode from
967 * legacy mode. We assume that the controller is offline.
968 */
969 if (IS_SVR_REV(svr, 1, 0) &&
970 ((SVR_SOC_VER(svr) == SVR_P1022) ||
York Sun8cb65482012-07-06 17:10:33 -0500971 (SVR_SOC_VER(svr) == SVR_P1013))) {
Timur Tabid7acf5c2011-11-21 17:10:23 -0600972 fsl_sata_reg_t *reg;
973
974 /* first SATA controller */
975 reg = (void *)CONFIG_SYS_MPC85xx_SATA1_ADDR;
976 clrbits_le32(&reg->hcontrol, HCONTROL_ENTERPRISE_EN);
977
978 /* second SATA controller */
979 reg = (void *)CONFIG_SYS_MPC85xx_SATA2_ADDR;
980 clrbits_le32(&reg->hcontrol, HCONTROL_ENTERPRISE_EN);
981 }
982#endif
983
Alexander Grafcfb90e32014-04-30 19:21:12 +0200984 init_used_tlb_cams();
Timur Tabid7acf5c2011-11-21 17:10:23 -0600985
wdenk9c53f402003-10-15 23:53:47 +0000986 return 0;
987}
Kumar Galac24a9052009-08-14 13:37:54 -0500988
Kumar Galac24a9052009-08-14 13:37:54 -0500989void arch_preboot_os(void)
990{
Kumar Gala9faa23a2009-09-11 15:28:41 -0500991 u32 msr;
992
993 /*
994 * We are changing interrupt offsets and are about to boot the OS so
995 * we need to make sure we disable all async interrupts. EE is already
996 * disabled by the time we get called.
997 */
998 msr = mfmsr();
Prabhakar Kushwaha8f3e8922012-04-29 23:56:30 +0000999 msr &= ~(MSR_ME|MSR_CE);
Kumar Gala9faa23a2009-09-11 15:28:41 -05001000 mtmsr(msr);
Kumar Galac24a9052009-08-14 13:37:54 -05001001}
Kumar Galaeb453df2010-04-20 10:21:25 -05001002
1003#if defined(CONFIG_CMD_SATA) && defined(CONFIG_FSL_SATA)
1004int sata_initialize(void)
1005{
1006 if (is_serdes_configured(SATA1) || is_serdes_configured(SATA2))
1007 return __sata_initialize();
1008
1009 return 1;
1010}
1011#endif
Kumar Gala2ef216b2011-02-02 11:23:50 -06001012
1013void cpu_secondary_init_r(void)
1014{
Zhao Qiangb818ba22014-03-21 16:21:45 +08001015#ifdef CONFIG_U_QE
1016 uint qe_base = CONFIG_SYS_IMMR + 0x00140000; /* QE immr base */
1017#elif defined CONFIG_QE
Kumar Gala2ef216b2011-02-02 11:23:50 -06001018 uint qe_base = CONFIG_SYS_IMMR + 0x00080000; /* QE immr base */
Zhao Qiangb818ba22014-03-21 16:21:45 +08001019#endif
1020
1021#ifdef CONFIG_QE
Kumar Gala2ef216b2011-02-02 11:23:50 -06001022 qe_init(qe_base);
1023 qe_reset();
1024#endif
Aneesh Bansalc6249092016-01-22 16:37:27 +05301025}
1026
1027#ifdef CONFIG_BOARD_LATE_INIT
1028int board_late_init(void)
1029{
1030#ifdef CONFIG_CHAIN_OF_TRUST
1031 fsl_setenv_chain_of_trust();
1032#endif
1033
1034 return 0;
Kumar Gala2ef216b2011-02-02 11:23:50 -06001035}
Aneesh Bansalc6249092016-01-22 16:37:27 +05301036#endif