blob: 74863b4a1a12246b9e8d823eea5cb82c7bd2cc28 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Kumar Galaa09b9b62010-12-30 12:09:53 -06002 * Copyright 2007-2011 Freescale Semiconductor, Inc.
Ed Swarthout29372ff2007-07-27 01:50:47 -05003 *
wdenk42d1f032003-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 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29#include <common.h>
30#include <watchdog.h>
31#include <asm/processor.h>
32#include <ioports.h>
Kumar Galaf54fe872010-04-20 10:21:25 -050033#include <sata.h>
Kumar Galac916d7c2011-04-13 08:37:44 -050034#include <fm_eth.h>
wdenk42d1f032003-10-15 23:53:47 +000035#include <asm/io.h>
Kumar Galafd3c9be2010-05-05 22:35:27 -050036#include <asm/cache.h>
Kumar Gala87163182008-01-16 22:38:34 -060037#include <asm/mmu.h>
Kumar Gala83d40df2008-01-16 01:13:58 -060038#include <asm/fsl_law.h>
Kumar Galaf54fe872010-04-20 10:21:25 -050039#include <asm/fsl_serdes.h>
Liu Gang5ffa88e2012-03-08 00:33:17 +000040#include <asm/fsl_srio.h>
York Sun57125f22012-08-08 18:04:53 +000041#include <hwconfig.h>
Timur Tabifbc20aa2011-11-21 17:10:23 -060042#include <linux/compiler.h>
Kumar Galaec2b74f2008-01-17 16:48:33 -060043#include "mp.h"
Timur Tabif2717b42011-11-22 09:21:25 -060044#ifdef CONFIG_SYS_QE_FMAN_FW_IN_NAND
Haiying Wanga7b1e1b2011-02-07 16:14:15 -050045#include <nand.h>
46#include <errno.h>
47#endif
wdenk42d1f032003-10-15 23:53:47 +000048
Timur Tabifbc20aa2011-11-21 17:10:23 -060049#include "../../../../drivers/block/fsl_sata.h"
50
York Sun57125f22012-08-08 18:04:53 +000051#define HWCONFIG_BUFFER_SIZE 128
52
Wolfgang Denkd87080b2006-03-31 18:32:53 +020053DECLARE_GLOBAL_DATA_PTR;
54
Andy Flemingda9d4612007-08-14 00:14:25 -050055#ifdef CONFIG_QE
56extern qe_iop_conf_t qe_iop_conf_tab[];
57extern void qe_config_iopin(u8 port, u8 pin, int dir,
58 int open_drain, int assign);
59extern void qe_init(uint qe_base);
60extern void qe_reset(void);
61
62static void config_qe_ioports(void)
63{
64 u8 port, pin;
65 int dir, open_drain, assign;
66 int i;
67
68 for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) {
69 port = qe_iop_conf_tab[i].port;
70 pin = qe_iop_conf_tab[i].pin;
71 dir = qe_iop_conf_tab[i].dir;
72 open_drain = qe_iop_conf_tab[i].open_drain;
73 assign = qe_iop_conf_tab[i].assign;
74 qe_config_iopin(port, pin, dir, open_drain, assign);
75 }
76}
77#endif
Matthew McClintock40d5fa32006-06-28 10:43:36 -050078
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050079#ifdef CONFIG_CPM2
Kumar Galaaafeefb2007-11-28 00:36:33 -060080void config_8560_ioports (volatile ccsr_cpm_t * cpm)
wdenk42d1f032003-10-15 23:53:47 +000081{
82 int portnum;
83
84 for (portnum = 0; portnum < 4; portnum++) {
85 uint pmsk = 0,
86 ppar = 0,
87 psor = 0,
88 pdir = 0,
89 podr = 0,
90 pdat = 0;
91 iop_conf_t *iopc = (iop_conf_t *) & iop_conf_tab[portnum][0];
92 iop_conf_t *eiopc = iopc + 32;
93 uint msk = 1;
94
95 /*
96 * NOTE:
97 * index 0 refers to pin 31,
98 * index 31 refers to pin 0
99 */
100 while (iopc < eiopc) {
101 if (iopc->conf) {
102 pmsk |= msk;
103 if (iopc->ppar)
104 ppar |= msk;
105 if (iopc->psor)
106 psor |= msk;
107 if (iopc->pdir)
108 pdir |= msk;
109 if (iopc->podr)
110 podr |= msk;
111 if (iopc->pdat)
112 pdat |= msk;
113 }
114
115 msk <<= 1;
116 iopc++;
117 }
118
119 if (pmsk != 0) {
Kumar Galaaafeefb2007-11-28 00:36:33 -0600120 volatile ioport_t *iop = ioport_addr (cpm, portnum);
wdenk42d1f032003-10-15 23:53:47 +0000121 uint tpmsk = ~pmsk;
122
123 /*
124 * the (somewhat confused) paragraph at the
125 * bottom of page 35-5 warns that there might
126 * be "unknown behaviour" when programming
127 * PSORx and PDIRx, if PPARx = 1, so I
128 * decided this meant I had to disable the
129 * dedicated function first, and enable it
130 * last.
131 */
132 iop->ppar &= tpmsk;
133 iop->psor = (iop->psor & tpmsk) | psor;
134 iop->podr = (iop->podr & tpmsk) | podr;
135 iop->pdat = (iop->pdat & tpmsk) | pdat;
136 iop->pdir = (iop->pdir & tpmsk) | pdir;
137 iop->ppar |= ppar;
138 }
139 }
140}
141#endif
142
Kumar Gala6aba33e2009-03-19 03:40:08 -0500143#ifdef CONFIG_SYS_FSL_CPC
144static void enable_cpc(void)
145{
146 int i;
147 u32 size = 0;
148
149 cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR;
150
151 for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) {
152 u32 cpccfg0 = in_be32(&cpc->cpccfg0);
153 size += CPC_CFG0_SZ_K(cpccfg0);
Shaohui Xie2a9fab82011-03-16 10:10:32 +0800154#ifdef CONFIG_RAMBOOT_PBL
155 if (in_be32(&cpc->cpcsrcr0) & CPC_SRCR0_SRAMEN) {
156 /* find and disable LAW of SRAM */
157 struct law_entry law = find_law(CONFIG_SYS_INIT_L3_ADDR);
158
159 if (law.index == -1) {
160 printf("\nFatal error happened\n");
161 return;
162 }
163 disable_law(law.index);
164
165 clrbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_CDQ_SPEC_DIS);
166 out_be32(&cpc->cpccsr0, 0);
167 out_be32(&cpc->cpcsrcr0, 0);
168 }
169#endif
Kumar Gala6aba33e2009-03-19 03:40:08 -0500170
Kumar Gala1d2c2a62011-01-13 01:54:01 -0600171#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002
172 setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_TAG_ECC_SCRUB_DIS);
173#endif
Kumar Gala868da592011-01-13 01:56:18 -0600174#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A003
175 setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_DATA_ECC_SCRUB_DIS);
176#endif
Kumar Gala1d2c2a62011-01-13 01:54:01 -0600177
Kumar Gala6aba33e2009-03-19 03:40:08 -0500178 out_be32(&cpc->cpccsr0, CPC_CSR0_CE | CPC_CSR0_PE);
179 /* Read back to sync write */
180 in_be32(&cpc->cpccsr0);
181
182 }
183
184 printf("Corenet Platform Cache: %d KB enabled\n", size);
185}
186
187void invalidate_cpc(void)
188{
189 int i;
190 cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR;
191
192 for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) {
Shaohui Xie2a9fab82011-03-16 10:10:32 +0800193 /* skip CPC when it used as all SRAM */
194 if (in_be32(&cpc->cpcsrcr0) & CPC_SRCR0_SRAMEN)
195 continue;
Kumar Gala6aba33e2009-03-19 03:40:08 -0500196 /* Flash invalidate the CPC and clear all the locks */
197 out_be32(&cpc->cpccsr0, CPC_CSR0_FI | CPC_CSR0_LFC);
198 while (in_be32(&cpc->cpccsr0) & (CPC_CSR0_FI | CPC_CSR0_LFC))
199 ;
200 }
201}
202#else
203#define enable_cpc()
204#define invalidate_cpc()
205#endif /* CONFIG_SYS_FSL_CPC */
206
wdenk42d1f032003-10-15 23:53:47 +0000207/*
208 * Breathe some life into the CPU...
209 *
210 * Set up the memory map
211 * initialize a bunch of registers
212 */
213
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500214#ifdef CONFIG_FSL_CORENET
215static void corenet_tb_init(void)
216{
217 volatile ccsr_rcpm_t *rcpm =
218 (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
219 volatile ccsr_pic_t *pic =
Kim Phillips680c6132010-08-09 18:39:57 -0500220 (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500221 u32 whoami = in_be32(&pic->whoami);
222
223 /* Enable the timebase register for this core */
224 out_be32(&rcpm->ctbenrl, (1 << whoami));
225}
226#endif
227
wdenk42d1f032003-10-15 23:53:47 +0000228void cpu_init_f (void)
229{
wdenk42d1f032003-10-15 23:53:47 +0000230 extern void m8560_cpm_reset (void);
Stephen Georgef110fe92011-07-20 09:47:26 -0500231#ifdef CONFIG_SYS_DCSRBAR_PHYS
232 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
233#endif
Ruchika Gupta7065b7d2010-12-15 17:02:08 +0000234#if defined(CONFIG_SECURE_BOOT)
235 struct law_entry law;
236#endif
Peter Tysera2cd50e2008-11-11 10:17:10 -0600237#ifdef CONFIG_MPC8548
238 ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
239 uint svr = get_svr();
240
241 /*
242 * CPU2 errata workaround: A core hang possible while executing
243 * a msync instruction and a snoopable transaction from an I/O
244 * master tagged to make quick forward progress is present.
245 * Fixed in silicon rev 2.1.
246 */
247 if ((SVR_MAJ(svr) == 1) || ((SVR_MAJ(svr) == 2 && SVR_MIN(svr) == 0x0)))
248 out_be32(&ecm->eebpcr, in_be32(&ecm->eebpcr) | (1 << 16));
249#endif
wdenk42d1f032003-10-15 23:53:47 +0000250
Kumar Gala87163182008-01-16 22:38:34 -0600251 disable_tlb(14);
252 disable_tlb(15);
253
Ruchika Gupta7065b7d2010-12-15 17:02:08 +0000254#if defined(CONFIG_SECURE_BOOT)
255 /* Disable the LAW created for NOR flash by the PBI commands */
256 law = find_law(CONFIG_SYS_PBI_FLASH_BASE);
257 if (law.index != -1)
258 disable_law(law.index);
259#endif
260
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500261#ifdef CONFIG_CPM2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262 config_8560_ioports((ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR);
wdenk42d1f032003-10-15 23:53:47 +0000263#endif
264
Becky Brucef51cdaf2010-06-17 11:37:20 -0500265 init_early_memctl_regs();
wdenk42d1f032003-10-15 23:53:47 +0000266
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500267#if defined(CONFIG_CPM2)
wdenk42d1f032003-10-15 23:53:47 +0000268 m8560_cpm_reset();
269#endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500270#ifdef CONFIG_QE
271 /* Config QE ioports */
272 config_qe_ioports();
273#endif
Peter Tyser79f43332009-06-30 17:15:47 -0500274#if defined(CONFIG_FSL_DMA)
275 dma_init();
276#endif
Kumar Gala3c2a67e2009-09-17 01:52:37 -0500277#ifdef CONFIG_FSL_CORENET
278 corenet_tb_init();
279#endif
Kumar Gala94e94112009-11-12 10:26:16 -0600280 init_used_tlb_cams();
Kumar Gala6aba33e2009-03-19 03:40:08 -0500281
282 /* Invalidate the CPC before DDR gets enabled */
283 invalidate_cpc();
Stephen Georgef110fe92011-07-20 09:47:26 -0500284
285 #ifdef CONFIG_SYS_DCSRBAR_PHYS
286 /* set DCSRCR so that DCSR space is 1G */
287 setbits_be32(&gur->dcsrcr, FSL_CORENET_DCSR_SZ_1G);
288 in_be32(&gur->dcsrcr);
289#endif
290
wdenk42d1f032003-10-15 23:53:47 +0000291}
292
Kumar Gala35079aa2010-12-15 03:50:47 -0600293/* Implement a dummy function for those platforms w/o SERDES */
294static void __fsl_serdes__init(void)
295{
296 return ;
297}
298__attribute__((weak, alias("__fsl_serdes__init"))) void fsl_serdes_init(void);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500299
wdenk42d1f032003-10-15 23:53:47 +0000300/*
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500301 * Initialize L2 as cache.
302 *
303 * The newer 8548, etc, parts have twice as much cache, but
304 * use the same bit-encoding as the older 8555, etc, parts.
305 *
wdenk42d1f032003-10-15 23:53:47 +0000306 */
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500307int cpu_init_r(void)
wdenk42d1f032003-10-15 23:53:47 +0000308{
Timur Tabifbc20aa2011-11-21 17:10:23 -0600309 __maybe_unused u32 svr = get_svr();
Lan Chunhe3f0202e2010-04-21 07:40:50 -0500310#ifdef CONFIG_SYS_LBC_LCRR
Becky Brucef51cdaf2010-06-17 11:37:20 -0500311 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Lan Chunhe3f0202e2010-04-21 07:40:50 -0500312#endif
313
York Sun5e23ab02012-05-07 07:26:47 +0000314#if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) || \
315 defined(CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011)
316 /*
York Sun57125f22012-08-08 18:04:53 +0000317 * CPU22 and NMG_CPU_A011 share the same workaround.
York Sun5e23ab02012-05-07 07:26:47 +0000318 * CPU22 applies to P4080 rev 1.0, 2.0, fixed in 3.0
319 * NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in 3.0
York Sun57125f22012-08-08 18:04:53 +0000320 * also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1, both
321 * fixed in 2.0. NMG_CPU_A011 is activated by default and can
322 * be disabled by hwconfig with syntax:
323 *
324 * fsl_cpu_a011:disable
York Sun5e23ab02012-05-07 07:26:47 +0000325 */
York Sun57125f22012-08-08 18:04:53 +0000326 extern int enable_cpu_a011_workaround;
327#ifdef CONFIG_SYS_P4080_ERRATUM_CPU22
328 enable_cpu_a011_workaround = (SVR_MAJ(svr) < 3);
329#else
330 char buffer[HWCONFIG_BUFFER_SIZE];
331 char *buf = NULL;
332 int n, res;
333
334 n = getenv_f("hwconfig", buffer, sizeof(buffer));
335 if (n > 0)
336 buf = buffer;
337
338 res = hwconfig_arg_cmp_f("fsl_cpu_a011", "disable", buf);
339 if (res > 0)
340 enable_cpu_a011_workaround = 0;
341 else {
342 if (n >= HWCONFIG_BUFFER_SIZE) {
343 printf("fsl_cpu_a011 was not found. hwconfig variable "
344 "may be too long\n");
345 }
346 enable_cpu_a011_workaround =
347 (SVR_SOC_VER(svr) == SVR_P4080 && SVR_MAJ(svr) < 3) ||
348 (SVR_SOC_VER(svr) != SVR_P4080 && SVR_MAJ(svr) < 2);
349 }
350#endif
351 if (enable_cpu_a011_workaround) {
York Sun1e9ea852012-05-07 07:26:45 +0000352 flush_dcache();
353 mtspr(L1CSR2, (mfspr(L1CSR2) | L1CSR2_DCWS));
354 sync();
355 }
Kumar Galafd3c9be2010-05-05 22:35:27 -0500356#endif
357
Wolfgang Grandegger6beecfb2008-06-05 13:11:59 +0200358 puts ("L2: ");
359
wdenk42d1f032003-10-15 23:53:47 +0000360#if defined(CONFIG_L2_CACHE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200361 volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500362 volatile uint cache_ctl;
Timur Tabifbc20aa2011-11-21 17:10:23 -0600363 uint ver;
Kumar Gala73f15a02008-07-14 14:07:00 -0500364 u32 l2siz_field;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500365
Kumar Galaf3e04bd2008-04-08 10:45:50 -0500366 ver = SVR_SOC_VER(svr);
wdenk42d1f032003-10-15 23:53:47 +0000367
368 asm("msync;isync");
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500369 cache_ctl = l2cache->l2ctl;
Mingkai Hu7da53352009-09-11 14:19:10 +0800370
371#if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L2_ADDR)
372 if (cache_ctl & MPC85xx_L2CTL_L2E) {
373 /* Clear L2 SRAM memory-mapped base address */
374 out_be32(&l2cache->l2srbar0, 0x0);
375 out_be32(&l2cache->l2srbar1, 0x0);
376
377 /* set MBECCDIS=0, SBECCDIS=0 */
378 clrbits_be32(&l2cache->l2errdis,
379 (MPC85xx_L2ERRDIS_MBECC |
380 MPC85xx_L2ERRDIS_SBECC));
381
382 /* set L2E=0, L2SRAM=0 */
383 clrbits_be32(&l2cache->l2ctl,
384 (MPC85xx_L2CTL_L2E |
385 MPC85xx_L2CTL_L2SRAM_ENTIRE));
386 }
387#endif
388
Kumar Gala73f15a02008-07-14 14:07:00 -0500389 l2siz_field = (cache_ctl >> 28) & 0x3;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500390
Kumar Gala73f15a02008-07-14 14:07:00 -0500391 switch (l2siz_field) {
392 case 0x0:
393 printf(" unknown size (0x%08x)\n", cache_ctl);
394 return -1;
395 break;
396 case 0x1:
397 if (ver == SVR_8540 || ver == SVR_8560 ||
York Sun48f6a5c2012-07-06 17:10:33 -0500398 ver == SVR_8541 || ver == SVR_8555) {
Kumar Gala73f15a02008-07-14 14:07:00 -0500399 puts("128 KB ");
400 /* set L2E=1, L2I=1, & L2BLKSZ=1 (128 Kbyte) */
401 cache_ctl = 0xc4000000;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500402 } else {
Wolfgang Grandegger6beecfb2008-06-05 13:11:59 +0200403 puts("256 KB ");
Ed Swarthout29372ff2007-07-27 01:50:47 -0500404 cache_ctl = 0xc0000000; /* set L2E=1, L2I=1, & L2SRAM=0 */
405 }
406 break;
Kumar Gala73f15a02008-07-14 14:07:00 -0500407 case 0x2:
408 if (ver == SVR_8540 || ver == SVR_8560 ||
York Sun48f6a5c2012-07-06 17:10:33 -0500409 ver == SVR_8541 || ver == SVR_8555) {
Kumar Gala73f15a02008-07-14 14:07:00 -0500410 puts("256 KB ");
411 /* set L2E=1, L2I=1, & L2BLKSZ=2 (256 Kbyte) */
412 cache_ctl = 0xc8000000;
413 } else {
414 puts ("512 KB ");
415 /* set L2E=1, L2I=1, & L2SRAM=0 */
416 cache_ctl = 0xc0000000;
417 }
418 break;
419 case 0x3:
420 puts("1024 KB ");
421 /* set L2E=1, L2I=1, & L2SRAM=0 */
422 cache_ctl = 0xc0000000;
423 break;
Jon Loeligerd65cfe82005-07-25 10:58:39 -0500424 }
425
Mingkai Hu76b474e2009-08-18 15:37:15 +0800426 if (l2cache->l2ctl & MPC85xx_L2CTL_L2E) {
Wolfgang Grandegger6beecfb2008-06-05 13:11:59 +0200427 puts("already enabled");
Haiying Wang888279b2010-12-01 10:35:30 -0500428#if defined(CONFIG_SYS_INIT_L2_ADDR) && defined(CONFIG_SYS_FLASH_BASE)
Kumar Galae4c9a352011-11-09 09:56:41 -0600429 u32 l2srbar = l2cache->l2srbar0;
Mingkai Hu76b474e2009-08-18 15:37:15 +0800430 if (l2cache->l2ctl & MPC85xx_L2CTL_L2SRAM_ENTIRE
431 && l2srbar >= CONFIG_SYS_FLASH_BASE) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200432 l2srbar = CONFIG_SYS_INIT_L2_ADDR;
Ed Swarthout29372ff2007-07-27 01:50:47 -0500433 l2cache->l2srbar0 = l2srbar;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200434 printf("moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR);
Ed Swarthout29372ff2007-07-27 01:50:47 -0500435 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200436#endif /* CONFIG_SYS_INIT_L2_ADDR */
Ed Swarthout29372ff2007-07-27 01:50:47 -0500437 puts("\n");
438 } else {
439 asm("msync;isync");
440 l2cache->l2ctl = cache_ctl; /* invalidate & enable */
441 asm("msync;isync");
Wolfgang Grandegger6beecfb2008-06-05 13:11:59 +0200442 puts("enabled\n");
Ed Swarthout29372ff2007-07-27 01:50:47 -0500443 }
Kumar Gala1b3e4042009-03-19 09:16:10 -0500444#elif defined(CONFIG_BACKSIDE_L2_CACHE)
York Sun48f6a5c2012-07-06 17:10:33 -0500445 if (SVR_SOC_VER(svr) == SVR_P2040) {
Kumar Galaacf3f8d2011-07-21 00:20:21 -0500446 puts("N/A\n");
447 goto skip_l2;
448 }
449
Kumar Gala1b3e4042009-03-19 09:16:10 -0500450 u32 l2cfg0 = mfspr(SPRN_L2CFG0);
451
452 /* invalidate the L2 cache */
Kumar Gala25bacf72009-09-22 15:45:44 -0500453 mtspr(SPRN_L2CSR0, (L2CSR0_L2FI|L2CSR0_L2LFC));
454 while (mfspr(SPRN_L2CSR0) & (L2CSR0_L2FI|L2CSR0_L2LFC))
Kumar Gala1b3e4042009-03-19 09:16:10 -0500455 ;
456
Kumar Gala82fd1f82009-03-19 02:53:01 -0500457#ifdef CONFIG_SYS_CACHE_STASHING
458 /* set stash id to (coreID) * 2 + 32 + L2 (1) */
459 mtspr(SPRN_L2CSR1, (32 + 1));
460#endif
461
Kumar Gala1b3e4042009-03-19 09:16:10 -0500462 /* enable the cache */
463 mtspr(SPRN_L2CSR0, CONFIG_SYS_INIT_L2CSR0);
464
Dave Liu654ea1f2009-10-22 00:10:23 -0500465 if (CONFIG_SYS_INIT_L2CSR0 & L2CSR0_L2E) {
466 while (!(mfspr(SPRN_L2CSR0) & L2CSR0_L2E))
467 ;
Kumar Gala1b3e4042009-03-19 09:16:10 -0500468 printf("%d KB enabled\n", (l2cfg0 & 0x3fff) * 64);
Dave Liu654ea1f2009-10-22 00:10:23 -0500469 }
Kumar Galaacf3f8d2011-07-21 00:20:21 -0500470
471skip_l2:
wdenk42d1f032003-10-15 23:53:47 +0000472#else
Wolfgang Grandegger6beecfb2008-06-05 13:11:59 +0200473 puts("disabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000474#endif
Kumar Gala6aba33e2009-03-19 03:40:08 -0500475
476 enable_cpc();
477
Kumar Galaaf025062010-05-22 13:21:39 -0500478 /* needs to be in ram since code uses global static vars */
479 fsl_serdes_init();
Kumar Galaaf025062010-05-22 13:21:39 -0500480
Kumar Galaa09b9b62010-12-30 12:09:53 -0600481#ifdef CONFIG_SYS_SRIO
482 srio_init();
Liu Gang5ffa88e2012-03-08 00:33:17 +0000483#ifdef CONFIG_SRIOBOOT_MASTER
484 srio_boot_master();
Liu Gang5056c8e2012-03-08 00:33:21 +0000485#ifdef CONFIG_SRIOBOOT_SLAVE_HOLDOFF
486 srio_boot_master_release_slave();
487#endif
Liu Gang5ffa88e2012-03-08 00:33:17 +0000488#endif
Kumar Galaa09b9b62010-12-30 12:09:53 -0600489#endif
490
Kumar Galaec2b74f2008-01-17 16:48:33 -0600491#if defined(CONFIG_MP)
492 setup_mp();
493#endif
Lan Chunhe3f0202e2010-04-21 07:40:50 -0500494
Roy Zangae026ff2011-01-07 00:24:27 -0600495#ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC136
496 {
497 void *p;
498 p = (void *)CONFIG_SYS_DCSRBAR + 0x20520;
499 setbits_be32(p, 1 << (31 - 14));
500 }
501#endif
502
Lan Chunhe3f0202e2010-04-21 07:40:50 -0500503#ifdef CONFIG_SYS_LBC_LCRR
504 /*
505 * Modify the CLKDIV field of LCRR register to improve the writing
506 * speed for NOR flash.
507 */
508 clrsetbits_be32(&lbc->lcrr, LCRR_CLKDIV, CONFIG_SYS_LBC_LCRR);
509 __raw_readl(&lbc->lcrr);
510 isync();
Kumar Gala2b3a1cd2011-10-03 08:37:57 -0500511#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_LBC103
512 udelay(100);
513#endif
Lan Chunhe3f0202e2010-04-21 07:40:50 -0500514#endif
515
Roy Zang86221f02011-04-13 00:08:51 -0500516#ifdef CONFIG_SYS_FSL_USB1_PHY_ENABLE
517 {
518 ccsr_usb_phy_t *usb_phy1 =
519 (void *)CONFIG_SYS_MPC85xx_USB1_PHY_ADDR;
520 out_be32(&usb_phy1->usb_enable_override,
521 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE);
522 }
523#endif
524#ifdef CONFIG_SYS_FSL_USB2_PHY_ENABLE
525 {
526 ccsr_usb_phy_t *usb_phy2 =
527 (void *)CONFIG_SYS_MPC85xx_USB2_PHY_ADDR;
528 out_be32(&usb_phy2->usb_enable_override,
529 CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE);
530 }
531#endif
532
Kumar Galac916d7c2011-04-13 08:37:44 -0500533#ifdef CONFIG_FMAN_ENET
534 fman_enet_init();
535#endif
536
Timur Tabifbc20aa2011-11-21 17:10:23 -0600537#if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001)
538 /*
539 * For P1022/1013 Rev1.0 silicon, after power on SATA host
540 * controller is configured in legacy mode instead of the
541 * expected enterprise mode. Software needs to clear bit[28]
542 * of HControl register to change to enterprise mode from
543 * legacy mode. We assume that the controller is offline.
544 */
545 if (IS_SVR_REV(svr, 1, 0) &&
546 ((SVR_SOC_VER(svr) == SVR_P1022) ||
York Sun48f6a5c2012-07-06 17:10:33 -0500547 (SVR_SOC_VER(svr) == SVR_P1013))) {
Timur Tabifbc20aa2011-11-21 17:10:23 -0600548 fsl_sata_reg_t *reg;
549
550 /* first SATA controller */
551 reg = (void *)CONFIG_SYS_MPC85xx_SATA1_ADDR;
552 clrbits_le32(&reg->hcontrol, HCONTROL_ENTERPRISE_EN);
553
554 /* second SATA controller */
555 reg = (void *)CONFIG_SYS_MPC85xx_SATA2_ADDR;
556 clrbits_le32(&reg->hcontrol, HCONTROL_ENTERPRISE_EN);
557 }
558#endif
559
560
wdenk42d1f032003-10-15 23:53:47 +0000561 return 0;
562}
Kumar Gala26f4cdba2009-08-14 13:37:54 -0500563
564extern void setup_ivors(void);
565
566void arch_preboot_os(void)
567{
Kumar Gala15fba322009-09-11 15:28:41 -0500568 u32 msr;
569
570 /*
571 * We are changing interrupt offsets and are about to boot the OS so
572 * we need to make sure we disable all async interrupts. EE is already
573 * disabled by the time we get called.
574 */
575 msr = mfmsr();
Prabhakar Kushwaha5344f7a2012-04-29 23:56:30 +0000576 msr &= ~(MSR_ME|MSR_CE);
Kumar Gala15fba322009-09-11 15:28:41 -0500577 mtmsr(msr);
578
Kumar Gala26f4cdba2009-08-14 13:37:54 -0500579 setup_ivors();
580}
Kumar Galaf54fe872010-04-20 10:21:25 -0500581
582#if defined(CONFIG_CMD_SATA) && defined(CONFIG_FSL_SATA)
583int sata_initialize(void)
584{
585 if (is_serdes_configured(SATA1) || is_serdes_configured(SATA2))
586 return __sata_initialize();
587
588 return 1;
589}
590#endif
Kumar Galaf9a33f12011-02-02 11:23:50 -0600591
592void cpu_secondary_init_r(void)
593{
594#ifdef CONFIG_QE
595 uint qe_base = CONFIG_SYS_IMMR + 0x00080000; /* QE immr base */
Timur Tabif2717b42011-11-22 09:21:25 -0600596#ifdef CONFIG_SYS_QE_FMAN_FW_IN_NAND
Haiying Wanga7b1e1b2011-02-07 16:14:15 -0500597 int ret;
Timur Tabif2717b42011-11-22 09:21:25 -0600598 size_t fw_length = CONFIG_SYS_QE_FMAN_FW_LENGTH;
Haiying Wanga7b1e1b2011-02-07 16:14:15 -0500599
600 /* load QE firmware from NAND flash to DDR first */
Timur Tabif2717b42011-11-22 09:21:25 -0600601 ret = nand_read(&nand_info[0], (loff_t)CONFIG_SYS_QE_FMAN_FW_IN_NAND,
602 &fw_length, (u_char *)CONFIG_SYS_QE_FMAN_FW_ADDR);
Haiying Wanga7b1e1b2011-02-07 16:14:15 -0500603
604 if (ret && ret == -EUCLEAN) {
605 printf ("NAND read for QE firmware at offset %x failed %d\n",
Timur Tabif2717b42011-11-22 09:21:25 -0600606 CONFIG_SYS_QE_FMAN_FW_IN_NAND, ret);
Haiying Wanga7b1e1b2011-02-07 16:14:15 -0500607 }
608#endif
Kumar Galaf9a33f12011-02-02 11:23:50 -0600609 qe_init(qe_base);
610 qe_reset();
611#endif
612}