wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
Kumar Gala | f54fe87 | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 2 | * Copyright 2007-2010 Freescale Semiconductor, Inc. |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 3 | * |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 4 | * (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 Gala | f54fe87 | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 33 | #include <sata.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 34 | #include <asm/io.h> |
Kumar Gala | fd3c9be | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 35 | #include <asm/cache.h> |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 36 | #include <asm/mmu.h> |
Kumar Gala | 83d40df | 2008-01-16 01:13:58 -0600 | [diff] [blame] | 37 | #include <asm/fsl_law.h> |
Kumar Gala | f54fe87 | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 38 | #include <asm/fsl_serdes.h> |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 39 | #include "mp.h" |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 40 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 41 | DECLARE_GLOBAL_DATA_PTR; |
| 42 | |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 43 | #ifdef CONFIG_QE |
| 44 | extern qe_iop_conf_t qe_iop_conf_tab[]; |
| 45 | extern void qe_config_iopin(u8 port, u8 pin, int dir, |
| 46 | int open_drain, int assign); |
| 47 | extern void qe_init(uint qe_base); |
| 48 | extern void qe_reset(void); |
| 49 | |
| 50 | static void config_qe_ioports(void) |
| 51 | { |
| 52 | u8 port, pin; |
| 53 | int dir, open_drain, assign; |
| 54 | int i; |
| 55 | |
| 56 | for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) { |
| 57 | port = qe_iop_conf_tab[i].port; |
| 58 | pin = qe_iop_conf_tab[i].pin; |
| 59 | dir = qe_iop_conf_tab[i].dir; |
| 60 | open_drain = qe_iop_conf_tab[i].open_drain; |
| 61 | assign = qe_iop_conf_tab[i].assign; |
| 62 | qe_config_iopin(port, pin, dir, open_drain, assign); |
| 63 | } |
| 64 | } |
| 65 | #endif |
Matthew McClintock | 40d5fa3 | 2006-06-28 10:43:36 -0500 | [diff] [blame] | 66 | |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 67 | #ifdef CONFIG_CPM2 |
Kumar Gala | aafeefb | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 68 | void config_8560_ioports (volatile ccsr_cpm_t * cpm) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 69 | { |
| 70 | int portnum; |
| 71 | |
| 72 | for (portnum = 0; portnum < 4; portnum++) { |
| 73 | uint pmsk = 0, |
| 74 | ppar = 0, |
| 75 | psor = 0, |
| 76 | pdir = 0, |
| 77 | podr = 0, |
| 78 | pdat = 0; |
| 79 | iop_conf_t *iopc = (iop_conf_t *) & iop_conf_tab[portnum][0]; |
| 80 | iop_conf_t *eiopc = iopc + 32; |
| 81 | uint msk = 1; |
| 82 | |
| 83 | /* |
| 84 | * NOTE: |
| 85 | * index 0 refers to pin 31, |
| 86 | * index 31 refers to pin 0 |
| 87 | */ |
| 88 | while (iopc < eiopc) { |
| 89 | if (iopc->conf) { |
| 90 | pmsk |= msk; |
| 91 | if (iopc->ppar) |
| 92 | ppar |= msk; |
| 93 | if (iopc->psor) |
| 94 | psor |= msk; |
| 95 | if (iopc->pdir) |
| 96 | pdir |= msk; |
| 97 | if (iopc->podr) |
| 98 | podr |= msk; |
| 99 | if (iopc->pdat) |
| 100 | pdat |= msk; |
| 101 | } |
| 102 | |
| 103 | msk <<= 1; |
| 104 | iopc++; |
| 105 | } |
| 106 | |
| 107 | if (pmsk != 0) { |
Kumar Gala | aafeefb | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 108 | volatile ioport_t *iop = ioport_addr (cpm, portnum); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 109 | uint tpmsk = ~pmsk; |
| 110 | |
| 111 | /* |
| 112 | * the (somewhat confused) paragraph at the |
| 113 | * bottom of page 35-5 warns that there might |
| 114 | * be "unknown behaviour" when programming |
| 115 | * PSORx and PDIRx, if PPARx = 1, so I |
| 116 | * decided this meant I had to disable the |
| 117 | * dedicated function first, and enable it |
| 118 | * last. |
| 119 | */ |
| 120 | iop->ppar &= tpmsk; |
| 121 | iop->psor = (iop->psor & tpmsk) | psor; |
| 122 | iop->podr = (iop->podr & tpmsk) | podr; |
| 123 | iop->pdat = (iop->pdat & tpmsk) | pdat; |
| 124 | iop->pdir = (iop->pdir & tpmsk) | pdir; |
| 125 | iop->ppar |= ppar; |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | #endif |
| 130 | |
Kumar Gala | 6aba33e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 131 | #ifdef CONFIG_SYS_FSL_CPC |
| 132 | static void enable_cpc(void) |
| 133 | { |
| 134 | int i; |
| 135 | u32 size = 0; |
| 136 | |
| 137 | cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR; |
| 138 | |
| 139 | for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) { |
| 140 | u32 cpccfg0 = in_be32(&cpc->cpccfg0); |
| 141 | size += CPC_CFG0_SZ_K(cpccfg0); |
| 142 | |
| 143 | out_be32(&cpc->cpccsr0, CPC_CSR0_CE | CPC_CSR0_PE); |
| 144 | /* Read back to sync write */ |
| 145 | in_be32(&cpc->cpccsr0); |
| 146 | |
| 147 | } |
| 148 | |
| 149 | printf("Corenet Platform Cache: %d KB enabled\n", size); |
| 150 | } |
| 151 | |
| 152 | void invalidate_cpc(void) |
| 153 | { |
| 154 | int i; |
| 155 | cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR; |
| 156 | |
| 157 | for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) { |
| 158 | /* Flash invalidate the CPC and clear all the locks */ |
| 159 | out_be32(&cpc->cpccsr0, CPC_CSR0_FI | CPC_CSR0_LFC); |
| 160 | while (in_be32(&cpc->cpccsr0) & (CPC_CSR0_FI | CPC_CSR0_LFC)) |
| 161 | ; |
| 162 | } |
| 163 | } |
| 164 | #else |
| 165 | #define enable_cpc() |
| 166 | #define invalidate_cpc() |
| 167 | #endif /* CONFIG_SYS_FSL_CPC */ |
| 168 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 169 | /* |
| 170 | * Breathe some life into the CPU... |
| 171 | * |
| 172 | * Set up the memory map |
| 173 | * initialize a bunch of registers |
| 174 | */ |
| 175 | |
Kumar Gala | 3c2a67e | 2009-09-17 01:52:37 -0500 | [diff] [blame] | 176 | #ifdef CONFIG_FSL_CORENET |
| 177 | static void corenet_tb_init(void) |
| 178 | { |
| 179 | volatile ccsr_rcpm_t *rcpm = |
| 180 | (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR); |
| 181 | volatile ccsr_pic_t *pic = |
Kim Phillips | 680c613 | 2010-08-09 18:39:57 -0500 | [diff] [blame] | 182 | (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR); |
Kumar Gala | 3c2a67e | 2009-09-17 01:52:37 -0500 | [diff] [blame] | 183 | u32 whoami = in_be32(&pic->whoami); |
| 184 | |
| 185 | /* Enable the timebase register for this core */ |
| 186 | out_be32(&rcpm->ctbenrl, (1 << whoami)); |
| 187 | } |
| 188 | #endif |
| 189 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 190 | void cpu_init_f (void) |
| 191 | { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 192 | extern void m8560_cpm_reset (void); |
Peter Tyser | a2cd50e | 2008-11-11 10:17:10 -0600 | [diff] [blame] | 193 | #ifdef CONFIG_MPC8548 |
| 194 | ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
| 195 | uint svr = get_svr(); |
| 196 | |
| 197 | /* |
| 198 | * CPU2 errata workaround: A core hang possible while executing |
| 199 | * a msync instruction and a snoopable transaction from an I/O |
| 200 | * master tagged to make quick forward progress is present. |
| 201 | * Fixed in silicon rev 2.1. |
| 202 | */ |
| 203 | if ((SVR_MAJ(svr) == 1) || ((SVR_MAJ(svr) == 2 && SVR_MIN(svr) == 0x0))) |
| 204 | out_be32(&ecm->eebpcr, in_be32(&ecm->eebpcr) | (1 << 16)); |
| 205 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 206 | |
Kumar Gala | 8716318 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 207 | disable_tlb(14); |
| 208 | disable_tlb(15); |
| 209 | |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 210 | #ifdef CONFIG_CPM2 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 211 | config_8560_ioports((ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 212 | #endif |
| 213 | |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 214 | init_early_memctl_regs(); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 215 | |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 216 | #if defined(CONFIG_CPM2) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 217 | m8560_cpm_reset(); |
| 218 | #endif |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 219 | #ifdef CONFIG_QE |
| 220 | /* Config QE ioports */ |
| 221 | config_qe_ioports(); |
| 222 | #endif |
Peter Tyser | 79f4333 | 2009-06-30 17:15:47 -0500 | [diff] [blame] | 223 | #if defined(CONFIG_FSL_DMA) |
| 224 | dma_init(); |
| 225 | #endif |
Kumar Gala | 3c2a67e | 2009-09-17 01:52:37 -0500 | [diff] [blame] | 226 | #ifdef CONFIG_FSL_CORENET |
| 227 | corenet_tb_init(); |
| 228 | #endif |
Kumar Gala | 94e9411 | 2009-11-12 10:26:16 -0600 | [diff] [blame] | 229 | init_used_tlb_cams(); |
Kumar Gala | 6aba33e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 230 | |
| 231 | /* Invalidate the CPC before DDR gets enabled */ |
| 232 | invalidate_cpc(); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 233 | } |
| 234 | |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 235 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 236 | /* |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 237 | * Initialize L2 as cache. |
| 238 | * |
| 239 | * The newer 8548, etc, parts have twice as much cache, but |
| 240 | * use the same bit-encoding as the older 8555, etc, parts. |
| 241 | * |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 242 | */ |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 243 | int cpu_init_r(void) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 244 | { |
Lan Chunhe | 3f0202e | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 245 | #ifdef CONFIG_SYS_LBC_LCRR |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 246 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Lan Chunhe | 3f0202e | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 247 | #endif |
| 248 | |
Kumar Gala | fd3c9be | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 249 | #if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) |
| 250 | flush_dcache(); |
| 251 | mtspr(L1CSR2, (mfspr(L1CSR2) | L1CSR2_DCWS)); |
| 252 | sync(); |
| 253 | #endif |
| 254 | |
Wolfgang Grandegger | 6beecfb | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 255 | puts ("L2: "); |
| 256 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 257 | #if defined(CONFIG_L2_CACHE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 258 | volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR; |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 259 | volatile uint cache_ctl; |
| 260 | uint svr, ver; |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 261 | uint l2srbar; |
Kumar Gala | 73f15a0 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 262 | u32 l2siz_field; |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 263 | |
| 264 | svr = get_svr(); |
Kumar Gala | f3e04bd | 2008-04-08 10:45:50 -0500 | [diff] [blame] | 265 | ver = SVR_SOC_VER(svr); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 266 | |
| 267 | asm("msync;isync"); |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 268 | cache_ctl = l2cache->l2ctl; |
Mingkai Hu | 7da5335 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 269 | |
| 270 | #if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L2_ADDR) |
| 271 | if (cache_ctl & MPC85xx_L2CTL_L2E) { |
| 272 | /* Clear L2 SRAM memory-mapped base address */ |
| 273 | out_be32(&l2cache->l2srbar0, 0x0); |
| 274 | out_be32(&l2cache->l2srbar1, 0x0); |
| 275 | |
| 276 | /* set MBECCDIS=0, SBECCDIS=0 */ |
| 277 | clrbits_be32(&l2cache->l2errdis, |
| 278 | (MPC85xx_L2ERRDIS_MBECC | |
| 279 | MPC85xx_L2ERRDIS_SBECC)); |
| 280 | |
| 281 | /* set L2E=0, L2SRAM=0 */ |
| 282 | clrbits_be32(&l2cache->l2ctl, |
| 283 | (MPC85xx_L2CTL_L2E | |
| 284 | MPC85xx_L2CTL_L2SRAM_ENTIRE)); |
| 285 | } |
| 286 | #endif |
| 287 | |
Kumar Gala | 73f15a0 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 288 | l2siz_field = (cache_ctl >> 28) & 0x3; |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 289 | |
Kumar Gala | 73f15a0 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 290 | switch (l2siz_field) { |
| 291 | case 0x0: |
| 292 | printf(" unknown size (0x%08x)\n", cache_ctl); |
| 293 | return -1; |
| 294 | break; |
| 295 | case 0x1: |
| 296 | if (ver == SVR_8540 || ver == SVR_8560 || |
| 297 | ver == SVR_8541 || ver == SVR_8541_E || |
| 298 | ver == SVR_8555 || ver == SVR_8555_E) { |
| 299 | puts("128 KB "); |
| 300 | /* set L2E=1, L2I=1, & L2BLKSZ=1 (128 Kbyte) */ |
| 301 | cache_ctl = 0xc4000000; |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 302 | } else { |
Wolfgang Grandegger | 6beecfb | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 303 | puts("256 KB "); |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 304 | cache_ctl = 0xc0000000; /* set L2E=1, L2I=1, & L2SRAM=0 */ |
| 305 | } |
| 306 | break; |
Kumar Gala | 73f15a0 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 307 | case 0x2: |
| 308 | if (ver == SVR_8540 || ver == SVR_8560 || |
| 309 | ver == SVR_8541 || ver == SVR_8541_E || |
| 310 | ver == SVR_8555 || ver == SVR_8555_E) { |
| 311 | puts("256 KB "); |
| 312 | /* set L2E=1, L2I=1, & L2BLKSZ=2 (256 Kbyte) */ |
| 313 | cache_ctl = 0xc8000000; |
| 314 | } else { |
| 315 | puts ("512 KB "); |
| 316 | /* set L2E=1, L2I=1, & L2SRAM=0 */ |
| 317 | cache_ctl = 0xc0000000; |
| 318 | } |
| 319 | break; |
| 320 | case 0x3: |
| 321 | puts("1024 KB "); |
| 322 | /* set L2E=1, L2I=1, & L2SRAM=0 */ |
| 323 | cache_ctl = 0xc0000000; |
| 324 | break; |
Jon Loeliger | d65cfe8 | 2005-07-25 10:58:39 -0500 | [diff] [blame] | 325 | } |
| 326 | |
Mingkai Hu | 76b474e | 2009-08-18 15:37:15 +0800 | [diff] [blame] | 327 | if (l2cache->l2ctl & MPC85xx_L2CTL_L2E) { |
Wolfgang Grandegger | 6beecfb | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 328 | puts("already enabled"); |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 329 | l2srbar = l2cache->l2srbar0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 330 | #ifdef CONFIG_SYS_INIT_L2_ADDR |
Mingkai Hu | 76b474e | 2009-08-18 15:37:15 +0800 | [diff] [blame] | 331 | if (l2cache->l2ctl & MPC85xx_L2CTL_L2SRAM_ENTIRE |
| 332 | && l2srbar >= CONFIG_SYS_FLASH_BASE) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 333 | l2srbar = CONFIG_SYS_INIT_L2_ADDR; |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 334 | l2cache->l2srbar0 = l2srbar; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 335 | printf("moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR); |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 336 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 337 | #endif /* CONFIG_SYS_INIT_L2_ADDR */ |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 338 | puts("\n"); |
| 339 | } else { |
| 340 | asm("msync;isync"); |
| 341 | l2cache->l2ctl = cache_ctl; /* invalidate & enable */ |
| 342 | asm("msync;isync"); |
Wolfgang Grandegger | 6beecfb | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 343 | puts("enabled\n"); |
Ed Swarthout | 29372ff | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 344 | } |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 345 | #elif defined(CONFIG_BACKSIDE_L2_CACHE) |
| 346 | u32 l2cfg0 = mfspr(SPRN_L2CFG0); |
| 347 | |
| 348 | /* invalidate the L2 cache */ |
Kumar Gala | 25bacf7 | 2009-09-22 15:45:44 -0500 | [diff] [blame] | 349 | mtspr(SPRN_L2CSR0, (L2CSR0_L2FI|L2CSR0_L2LFC)); |
| 350 | while (mfspr(SPRN_L2CSR0) & (L2CSR0_L2FI|L2CSR0_L2LFC)) |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 351 | ; |
| 352 | |
Kumar Gala | 82fd1f8 | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 353 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 354 | /* set stash id to (coreID) * 2 + 32 + L2 (1) */ |
| 355 | mtspr(SPRN_L2CSR1, (32 + 1)); |
| 356 | #endif |
| 357 | |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 358 | /* enable the cache */ |
| 359 | mtspr(SPRN_L2CSR0, CONFIG_SYS_INIT_L2CSR0); |
| 360 | |
Dave Liu | 654ea1f | 2009-10-22 00:10:23 -0500 | [diff] [blame] | 361 | if (CONFIG_SYS_INIT_L2CSR0 & L2CSR0_L2E) { |
| 362 | while (!(mfspr(SPRN_L2CSR0) & L2CSR0_L2E)) |
| 363 | ; |
Kumar Gala | 1b3e404 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 364 | printf("%d KB enabled\n", (l2cfg0 & 0x3fff) * 64); |
Dave Liu | 654ea1f | 2009-10-22 00:10:23 -0500 | [diff] [blame] | 365 | } |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 366 | #else |
Wolfgang Grandegger | 6beecfb | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 367 | puts("disabled\n"); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 368 | #endif |
Kumar Gala | 6aba33e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 369 | |
| 370 | enable_cpc(); |
| 371 | |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 372 | #ifdef CONFIG_QE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 373 | uint qe_base = CONFIG_SYS_IMMR + 0x00080000; /* QE immr base */ |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 374 | qe_init(qe_base); |
| 375 | qe_reset(); |
| 376 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 377 | |
Kumar Gala | af02506 | 2010-05-22 13:21:39 -0500 | [diff] [blame] | 378 | #if defined(CONFIG_SYS_HAS_SERDES) |
| 379 | /* needs to be in ram since code uses global static vars */ |
| 380 | fsl_serdes_init(); |
| 381 | #endif |
| 382 | |
Kumar Gala | ec2b74f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 383 | #if defined(CONFIG_MP) |
| 384 | setup_mp(); |
| 385 | #endif |
Lan Chunhe | 3f0202e | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 386 | |
| 387 | #ifdef CONFIG_SYS_LBC_LCRR |
| 388 | /* |
| 389 | * Modify the CLKDIV field of LCRR register to improve the writing |
| 390 | * speed for NOR flash. |
| 391 | */ |
| 392 | clrsetbits_be32(&lbc->lcrr, LCRR_CLKDIV, CONFIG_SYS_LBC_LCRR); |
| 393 | __raw_readl(&lbc->lcrr); |
| 394 | isync(); |
| 395 | #endif |
| 396 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 397 | return 0; |
| 398 | } |
Kumar Gala | 26f4cdba | 2009-08-14 13:37:54 -0500 | [diff] [blame] | 399 | |
| 400 | extern void setup_ivors(void); |
| 401 | |
| 402 | void arch_preboot_os(void) |
| 403 | { |
Kumar Gala | 15fba32 | 2009-09-11 15:28:41 -0500 | [diff] [blame] | 404 | u32 msr; |
| 405 | |
| 406 | /* |
| 407 | * We are changing interrupt offsets and are about to boot the OS so |
| 408 | * we need to make sure we disable all async interrupts. EE is already |
| 409 | * disabled by the time we get called. |
| 410 | */ |
| 411 | msr = mfmsr(); |
| 412 | msr &= ~(MSR_ME|MSR_CE|MSR_DE); |
| 413 | mtmsr(msr); |
| 414 | |
Kumar Gala | 26f4cdba | 2009-08-14 13:37:54 -0500 | [diff] [blame] | 415 | setup_ivors(); |
| 416 | } |
Kumar Gala | f54fe87 | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 417 | |
| 418 | #if defined(CONFIG_CMD_SATA) && defined(CONFIG_FSL_SATA) |
| 419 | int sata_initialize(void) |
| 420 | { |
| 421 | if (is_serdes_configured(SATA1) || is_serdes_configured(SATA2)) |
| 422 | return __sata_initialize(); |
| 423 | |
| 424 | return 1; |
| 425 | } |
| 426 | #endif |