wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 2 | * Copyright 2007-2011 Freescale Semiconductor, Inc. |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 3 | * |
wdenk | 9c53f40 | 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 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
| 14 | #include <watchdog.h> |
| 15 | #include <asm/processor.h> |
| 16 | #include <ioports.h> |
Kumar Gala | eb453df | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 17 | #include <sata.h> |
Kumar Gala | 2683c53 | 2011-04-13 08:37:44 -0500 | [diff] [blame] | 18 | #include <fm_eth.h> |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 19 | #include <asm/io.h> |
Kumar Gala | 6b245b9 | 2010-05-05 22:35:27 -0500 | [diff] [blame] | 20 | #include <asm/cache.h> |
Kumar Gala | 9772ee7 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 21 | #include <asm/mmu.h> |
York Sun | b195425 | 2013-09-16 12:49:31 -0700 | [diff] [blame] | 22 | #include <asm/fsl_errata.h> |
Kumar Gala | 95fd2f6 | 2008-01-16 01:13:58 -0600 | [diff] [blame] | 23 | #include <asm/fsl_law.h> |
Kumar Gala | eb453df | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 24 | #include <asm/fsl_serdes.h> |
Liu Gang | 4cc8532 | 2012-03-08 00:33:17 +0000 | [diff] [blame] | 25 | #include <asm/fsl_srio.h> |
ramneek mehresh | c65e882 | 2013-08-05 16:00:16 +0530 | [diff] [blame] | 26 | #include <fsl_usb.h> |
York Sun | 5315553 | 2012-08-08 18:04:53 +0000 | [diff] [blame] | 27 | #include <hwconfig.h> |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 28 | #include <linux/compiler.h> |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 29 | #include "mp.h" |
Ruchika Gupta | ac1b269 | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 30 | #ifdef CONFIG_FSL_CAAM |
| 31 | #include <fsl_sec.h> |
| 32 | #endif |
Timur Tabi | 275f4bb | 2011-11-22 09:21:25 -0600 | [diff] [blame] | 33 | #ifdef CONFIG_SYS_QE_FMAN_FW_IN_NAND |
Haiying Wang | c0938d6 | 2011-02-07 16:14:15 -0500 | [diff] [blame] | 34 | #include <nand.h> |
| 35 | #include <errno.h> |
| 36 | #endif |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 37 | |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 38 | #include "../../../../drivers/block/fsl_sata.h" |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 39 | #ifdef CONFIG_U_QE |
| 40 | #include "../../../../drivers/qe/qe.h" |
| 41 | #endif |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 42 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 43 | DECLARE_GLOBAL_DATA_PTR; |
| 44 | |
Nikhil Badola | 006e83a | 2014-04-15 14:44:52 +0530 | [diff] [blame] | 45 | #ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK |
| 46 | /* |
| 47 | * For deriving usb clock from 100MHz sysclk, reference divisor is set |
| 48 | * to a value of 5, which gives an intermediate value 20(100/5). The |
| 49 | * multiplication factor integer is set to 24, which when multiplied to |
| 50 | * above intermediate value provides clock for usb ip. |
| 51 | */ |
| 52 | void usb_single_source_clk_configure(struct ccsr_usb_phy *usb_phy) |
| 53 | { |
| 54 | sys_info_t sysinfo; |
| 55 | |
| 56 | get_sys_info(&sysinfo); |
| 57 | if (sysinfo.diff_sysclk == 1) { |
| 58 | clrbits_be32(&usb_phy->pllprg[1], |
| 59 | CONFIG_SYS_FSL_USB_PLLPRG2_MFI); |
| 60 | setbits_be32(&usb_phy->pllprg[1], |
| 61 | CONFIG_SYS_FSL_USB_PLLPRG2_REF_DIV_INTERNAL_CLK | |
| 62 | CONFIG_SYS_FSL_USB_PLLPRG2_MFI_INTERNAL_CLK | |
| 63 | CONFIG_SYS_FSL_USB_INTERNAL_SOC_CLK_EN); |
| 64 | } |
| 65 | } |
| 66 | #endif |
| 67 | |
Suresh Gupta | 086f0a7 | 2014-02-26 14:29:12 +0530 | [diff] [blame] | 68 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006261 |
| 69 | void fsl_erratum_a006261_workaround(struct ccsr_usb_phy __iomem *usb_phy) |
| 70 | { |
| 71 | #ifdef CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE |
| 72 | u32 xcvrprg = in_be32(&usb_phy->port1.xcvrprg); |
| 73 | |
| 74 | /* Increase Disconnect Threshold by 50mV */ |
| 75 | xcvrprg &= ~CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK | |
| 76 | INC_DCNT_THRESHOLD_50MV; |
| 77 | /* Enable programming of USB High speed Disconnect threshold */ |
| 78 | xcvrprg |= CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN; |
| 79 | out_be32(&usb_phy->port1.xcvrprg, xcvrprg); |
| 80 | |
| 81 | xcvrprg = in_be32(&usb_phy->port2.xcvrprg); |
| 82 | /* Increase Disconnect Threshold by 50mV */ |
| 83 | xcvrprg &= ~CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_MASK | |
| 84 | INC_DCNT_THRESHOLD_50MV; |
| 85 | /* Enable programming of USB High speed Disconnect threshold */ |
| 86 | xcvrprg |= CONFIG_SYS_FSL_USB_XCVRPRG_HS_DCNT_PROG_EN; |
| 87 | out_be32(&usb_phy->port2.xcvrprg, xcvrprg); |
| 88 | #else |
| 89 | |
| 90 | u32 temp = 0; |
| 91 | u32 status = in_be32(&usb_phy->status1); |
| 92 | |
| 93 | u32 squelch_prog_rd_0_2 = |
| 94 | (status >> CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_0) |
| 95 | & CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK; |
| 96 | |
| 97 | u32 squelch_prog_rd_3_5 = |
| 98 | (status >> CONFIG_SYS_FSL_USB_SQUELCH_PROG_RD_3) |
| 99 | & CONFIG_SYS_FSL_USB_SQUELCH_PROG_MASK; |
| 100 | |
| 101 | setbits_be32(&usb_phy->config1, |
| 102 | CONFIG_SYS_FSL_USB_HS_DISCNCT_INC); |
| 103 | setbits_be32(&usb_phy->config2, |
| 104 | CONFIG_SYS_FSL_USB_RX_AUTO_CAL_RD_WR_SEL); |
| 105 | |
| 106 | temp = squelch_prog_rd_0_2 << CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_0; |
| 107 | out_be32(&usb_phy->config2, in_be32(&usb_phy->config2) | temp); |
| 108 | |
| 109 | temp = squelch_prog_rd_3_5 << CONFIG_SYS_FSL_USB_SQUELCH_PROG_WR_3; |
| 110 | out_be32(&usb_phy->config2, in_be32(&usb_phy->config2) | temp); |
| 111 | #endif |
| 112 | } |
| 113 | #endif |
| 114 | |
| 115 | |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 116 | #if defined(CONFIG_QE) && !defined(CONFIG_U_QE) |
Andy Fleming | ee0e917 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 117 | extern qe_iop_conf_t qe_iop_conf_tab[]; |
| 118 | extern void qe_config_iopin(u8 port, u8 pin, int dir, |
| 119 | int open_drain, int assign); |
| 120 | extern void qe_init(uint qe_base); |
| 121 | extern void qe_reset(void); |
| 122 | |
| 123 | static void config_qe_ioports(void) |
| 124 | { |
| 125 | u8 port, pin; |
| 126 | int dir, open_drain, assign; |
| 127 | int i; |
| 128 | |
| 129 | for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) { |
| 130 | port = qe_iop_conf_tab[i].port; |
| 131 | pin = qe_iop_conf_tab[i].pin; |
| 132 | dir = qe_iop_conf_tab[i].dir; |
| 133 | open_drain = qe_iop_conf_tab[i].open_drain; |
| 134 | assign = qe_iop_conf_tab[i].assign; |
| 135 | qe_config_iopin(port, pin, dir, open_drain, assign); |
| 136 | } |
| 137 | } |
| 138 | #endif |
Matthew McClintock | 148e26a | 2006-06-28 10:43:36 -0500 | [diff] [blame] | 139 | |
Jon Loeliger | f5ad378 | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 140 | #ifdef CONFIG_CPM2 |
Kumar Gala | cd113a0 | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 141 | void config_8560_ioports (volatile ccsr_cpm_t * cpm) |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 142 | { |
| 143 | int portnum; |
| 144 | |
| 145 | for (portnum = 0; portnum < 4; portnum++) { |
| 146 | uint pmsk = 0, |
| 147 | ppar = 0, |
| 148 | psor = 0, |
| 149 | pdir = 0, |
| 150 | podr = 0, |
| 151 | pdat = 0; |
| 152 | iop_conf_t *iopc = (iop_conf_t *) & iop_conf_tab[portnum][0]; |
| 153 | iop_conf_t *eiopc = iopc + 32; |
| 154 | uint msk = 1; |
| 155 | |
| 156 | /* |
| 157 | * NOTE: |
| 158 | * index 0 refers to pin 31, |
| 159 | * index 31 refers to pin 0 |
| 160 | */ |
| 161 | while (iopc < eiopc) { |
| 162 | if (iopc->conf) { |
| 163 | pmsk |= msk; |
| 164 | if (iopc->ppar) |
| 165 | ppar |= msk; |
| 166 | if (iopc->psor) |
| 167 | psor |= msk; |
| 168 | if (iopc->pdir) |
| 169 | pdir |= msk; |
| 170 | if (iopc->podr) |
| 171 | podr |= msk; |
| 172 | if (iopc->pdat) |
| 173 | pdat |= msk; |
| 174 | } |
| 175 | |
| 176 | msk <<= 1; |
| 177 | iopc++; |
| 178 | } |
| 179 | |
| 180 | if (pmsk != 0) { |
Kumar Gala | cd113a0 | 2007-11-28 00:36:33 -0600 | [diff] [blame] | 181 | volatile ioport_t *iop = ioport_addr (cpm, portnum); |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 182 | uint tpmsk = ~pmsk; |
| 183 | |
| 184 | /* |
| 185 | * the (somewhat confused) paragraph at the |
| 186 | * bottom of page 35-5 warns that there might |
| 187 | * be "unknown behaviour" when programming |
| 188 | * PSORx and PDIRx, if PPARx = 1, so I |
| 189 | * decided this meant I had to disable the |
| 190 | * dedicated function first, and enable it |
| 191 | * last. |
| 192 | */ |
| 193 | iop->ppar &= tpmsk; |
| 194 | iop->psor = (iop->psor & tpmsk) | psor; |
| 195 | iop->podr = (iop->podr & tpmsk) | podr; |
| 196 | iop->pdat = (iop->pdat & tpmsk) | pdat; |
| 197 | iop->pdir = (iop->pdir & tpmsk) | pdir; |
| 198 | iop->ppar |= ppar; |
| 199 | } |
| 200 | } |
| 201 | } |
| 202 | #endif |
| 203 | |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 204 | #ifdef CONFIG_SYS_FSL_CPC |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 205 | #if defined(CONFIG_RAMBOOT_PBL) || defined(CONFIG_SYS_CPC_REINIT_F) |
Tang Yuantian | efd6da6 | 2014-07-04 17:39:26 +0800 | [diff] [blame] | 206 | void disable_cpc_sram(void) |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 207 | { |
| 208 | int i; |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 209 | |
| 210 | cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR; |
| 211 | |
| 212 | for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) { |
Shaohui Xie | 25a2b39 | 2011-03-16 10:10:32 +0800 | [diff] [blame] | 213 | if (in_be32(&cpc->cpcsrcr0) & CPC_SRCR0_SRAMEN) { |
| 214 | /* find and disable LAW of SRAM */ |
| 215 | struct law_entry law = find_law(CONFIG_SYS_INIT_L3_ADDR); |
| 216 | |
| 217 | if (law.index == -1) { |
| 218 | printf("\nFatal error happened\n"); |
| 219 | return; |
| 220 | } |
| 221 | disable_law(law.index); |
| 222 | |
| 223 | clrbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_CDQ_SPEC_DIS); |
| 224 | out_be32(&cpc->cpccsr0, 0); |
| 225 | out_be32(&cpc->cpcsrcr0, 0); |
| 226 | } |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 227 | } |
| 228 | } |
Shaohui Xie | 25a2b39 | 2011-03-16 10:10:32 +0800 | [diff] [blame] | 229 | #endif |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 230 | |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 231 | #if defined(T1040_TDM_QUIRK_CCSR_BASE) |
| 232 | #ifdef CONFIG_POST |
| 233 | #error POST memory test cannot be enabled with TDM |
| 234 | #endif |
| 235 | static void enable_tdm_law(void) |
| 236 | { |
| 237 | int ret; |
| 238 | char buffer[HWCONFIG_BUFFER_SIZE] = {0}; |
| 239 | int tdm_hwconfig_enabled = 0; |
| 240 | |
| 241 | /* |
| 242 | * Extract hwconfig from environment since environment |
| 243 | * is not setup properly yet. Search for tdm entry in |
| 244 | * hwconfig. |
| 245 | */ |
| 246 | ret = getenv_f("hwconfig", buffer, sizeof(buffer)); |
| 247 | if (ret > 0) { |
| 248 | tdm_hwconfig_enabled = hwconfig_f("tdm", buffer); |
| 249 | /* If tdm is defined in hwconfig, set law for tdm workaround */ |
| 250 | if (tdm_hwconfig_enabled) |
| 251 | set_next_law(T1040_TDM_QUIRK_CCSR_BASE, LAW_SIZE_16M, |
| 252 | LAW_TRGT_IF_CCSR); |
| 253 | } |
| 254 | } |
| 255 | #endif |
| 256 | |
Tang Yuantian | efd6da6 | 2014-07-04 17:39:26 +0800 | [diff] [blame] | 257 | void enable_cpc(void) |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 258 | { |
| 259 | int i; |
Shaveta Leekha | a7b7097 | 2014-07-02 11:44:15 +0530 | [diff] [blame] | 260 | int ret; |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 261 | u32 size = 0; |
Shaveta Leekha | a7b7097 | 2014-07-02 11:44:15 +0530 | [diff] [blame] | 262 | u32 cpccfg0; |
| 263 | char buffer[HWCONFIG_BUFFER_SIZE]; |
| 264 | char cpc_subarg[16]; |
| 265 | bool have_hwconfig = false; |
| 266 | int cpc_args = 0; |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 267 | cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR; |
| 268 | |
Shaveta Leekha | a7b7097 | 2014-07-02 11:44:15 +0530 | [diff] [blame] | 269 | /* Extract hwconfig from environment */ |
| 270 | ret = getenv_f("hwconfig", buffer, sizeof(buffer)); |
| 271 | if (ret > 0) { |
| 272 | /* |
| 273 | * If "en_cpc" is not defined in hwconfig then by default all |
| 274 | * cpcs are enable. If this config is defined then individual |
| 275 | * cpcs which have to be enabled should also be defined. |
| 276 | * e.g en_cpc:cpc1,cpc2; |
| 277 | */ |
| 278 | if (hwconfig_f("en_cpc", buffer)) |
| 279 | have_hwconfig = true; |
| 280 | } |
| 281 | |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 282 | for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) { |
Shaveta Leekha | a7b7097 | 2014-07-02 11:44:15 +0530 | [diff] [blame] | 283 | if (have_hwconfig) { |
| 284 | sprintf(cpc_subarg, "cpc%u", i + 1); |
| 285 | cpc_args = hwconfig_sub_f("en_cpc", cpc_subarg, buffer); |
| 286 | if (cpc_args == 0) |
| 287 | continue; |
| 288 | } |
| 289 | cpccfg0 = in_be32(&cpc->cpccfg0); |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 290 | size += CPC_CFG0_SZ_K(cpccfg0); |
| 291 | |
Kumar Gala | 9780b59 | 2011-01-13 01:54:01 -0600 | [diff] [blame] | 292 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002 |
| 293 | setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_TAG_ECC_SCRUB_DIS); |
| 294 | #endif |
Kumar Gala | 887c0e1 | 2011-01-13 01:56:18 -0600 | [diff] [blame] | 295 | #ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A003 |
| 296 | setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_DATA_ECC_SCRUB_DIS); |
| 297 | #endif |
Scott Wood | 3f4a5c4 | 2013-05-15 17:50:13 -0500 | [diff] [blame] | 298 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006593 |
| 299 | setbits_be32(&cpc->cpchdbcr0, 1 << (31 - 21)); |
| 300 | #endif |
York Sun | b195425 | 2013-09-16 12:49:31 -0700 | [diff] [blame] | 301 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006379 |
| 302 | if (has_erratum_a006379()) { |
| 303 | setbits_be32(&cpc->cpchdbcr0, |
| 304 | CPC_HDBCR0_SPLRU_LEVEL_EN); |
| 305 | } |
| 306 | #endif |
Kumar Gala | 9780b59 | 2011-01-13 01:54:01 -0600 | [diff] [blame] | 307 | |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 308 | out_be32(&cpc->cpccsr0, CPC_CSR0_CE | CPC_CSR0_PE); |
| 309 | /* Read back to sync write */ |
| 310 | in_be32(&cpc->cpccsr0); |
| 311 | |
| 312 | } |
| 313 | |
Shruti Kanetkar | 3adfb91 | 2013-08-15 11:25:37 -0500 | [diff] [blame] | 314 | puts("Corenet Platform Cache: "); |
| 315 | print_size(size * 1024, " enabled\n"); |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 316 | } |
| 317 | |
Kim Phillips | 402673f | 2012-10-29 13:34:38 +0000 | [diff] [blame] | 318 | static void invalidate_cpc(void) |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 319 | { |
| 320 | int i; |
| 321 | cpc_corenet_t *cpc = (cpc_corenet_t *)CONFIG_SYS_FSL_CPC_ADDR; |
| 322 | |
| 323 | for (i = 0; i < CONFIG_SYS_NUM_CPC; i++, cpc++) { |
Shaohui Xie | 25a2b39 | 2011-03-16 10:10:32 +0800 | [diff] [blame] | 324 | /* skip CPC when it used as all SRAM */ |
| 325 | if (in_be32(&cpc->cpcsrcr0) & CPC_SRCR0_SRAMEN) |
| 326 | continue; |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 327 | /* Flash invalidate the CPC and clear all the locks */ |
| 328 | out_be32(&cpc->cpccsr0, CPC_CSR0_FI | CPC_CSR0_LFC); |
| 329 | while (in_be32(&cpc->cpccsr0) & (CPC_CSR0_FI | CPC_CSR0_LFC)) |
| 330 | ; |
| 331 | } |
| 332 | } |
| 333 | #else |
| 334 | #define enable_cpc() |
| 335 | #define invalidate_cpc() |
Tang Yuantian | efd6da6 | 2014-07-04 17:39:26 +0800 | [diff] [blame] | 336 | #define disable_cpc_sram() |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 337 | #endif /* CONFIG_SYS_FSL_CPC */ |
| 338 | |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 339 | /* |
| 340 | * Breathe some life into the CPU... |
| 341 | * |
| 342 | * Set up the memory map |
| 343 | * initialize a bunch of registers |
| 344 | */ |
| 345 | |
Kumar Gala | 24f86a8 | 2009-09-17 01:52:37 -0500 | [diff] [blame] | 346 | #ifdef CONFIG_FSL_CORENET |
| 347 | static void corenet_tb_init(void) |
| 348 | { |
| 349 | volatile ccsr_rcpm_t *rcpm = |
| 350 | (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR); |
| 351 | volatile ccsr_pic_t *pic = |
Kim Phillips | 2ecbfeb | 2010-08-09 18:39:57 -0500 | [diff] [blame] | 352 | (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR); |
Kumar Gala | 24f86a8 | 2009-09-17 01:52:37 -0500 | [diff] [blame] | 353 | u32 whoami = in_be32(&pic->whoami); |
| 354 | |
| 355 | /* Enable the timebase register for this core */ |
| 356 | out_be32(&rcpm->ctbenrl, (1 << whoami)); |
| 357 | } |
| 358 | #endif |
| 359 | |
York Sun | 7b083df | 2014-03-28 15:07:27 -0700 | [diff] [blame] | 360 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007212 |
| 361 | void fsl_erratum_a007212_workaround(void) |
| 362 | { |
| 363 | ccsr_gur_t __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 364 | u32 ddr_pll_ratio; |
| 365 | u32 __iomem *plldgdcr1 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c20); |
| 366 | u32 __iomem *plldadcr1 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c28); |
| 367 | u32 __iomem *dpdovrcr4 = (void *)(CONFIG_SYS_DCSRBAR + 0x21e80); |
| 368 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 2) |
| 369 | u32 __iomem *plldgdcr2 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c40); |
| 370 | u32 __iomem *plldadcr2 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c48); |
| 371 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 3) |
| 372 | u32 __iomem *plldgdcr3 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c60); |
| 373 | u32 __iomem *plldadcr3 = (void *)(CONFIG_SYS_DCSRBAR + 0x21c68); |
| 374 | #endif |
| 375 | #endif |
| 376 | /* |
| 377 | * Even this workaround applies to selected version of SoCs, it is |
| 378 | * safe to apply to all versions, with the limitation of odd ratios. |
| 379 | * If RCW has disabled DDR PLL, we have to apply this workaround, |
| 380 | * otherwise DDR will not work. |
| 381 | */ |
| 382 | ddr_pll_ratio = (in_be32(&gur->rcwsr[0]) >> |
| 383 | FSL_CORENET_RCWSR0_MEM_PLL_RAT_SHIFT) & |
| 384 | FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK; |
| 385 | /* check if RCW sets ratio to 0, required by this workaround */ |
| 386 | if (ddr_pll_ratio != 0) |
| 387 | return; |
| 388 | ddr_pll_ratio = (in_be32(&gur->rcwsr[0]) >> |
| 389 | FSL_CORENET_RCWSR0_MEM_PLL_RAT_RESV_SHIFT) & |
| 390 | FSL_CORENET_RCWSR0_MEM_PLL_RAT_MASK; |
| 391 | /* check if reserved bits have the desired ratio */ |
| 392 | if (ddr_pll_ratio == 0) { |
| 393 | printf("Error: Unknown DDR PLL ratio!\n"); |
| 394 | return; |
| 395 | } |
| 396 | ddr_pll_ratio >>= 1; |
| 397 | |
| 398 | setbits_be32(plldadcr1, 0x02000001); |
| 399 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 2) |
| 400 | setbits_be32(plldadcr2, 0x02000001); |
| 401 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 3) |
| 402 | setbits_be32(plldadcr3, 0x02000001); |
| 403 | #endif |
| 404 | #endif |
| 405 | setbits_be32(dpdovrcr4, 0xe0000000); |
| 406 | out_be32(plldgdcr1, 0x08000001 | (ddr_pll_ratio << 1)); |
| 407 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 2) |
| 408 | out_be32(plldgdcr2, 0x08000001 | (ddr_pll_ratio << 1)); |
| 409 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 3) |
| 410 | out_be32(plldgdcr3, 0x08000001 | (ddr_pll_ratio << 1)); |
| 411 | #endif |
| 412 | #endif |
| 413 | udelay(100); |
| 414 | clrbits_be32(plldadcr1, 0x02000001); |
| 415 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 2) |
| 416 | clrbits_be32(plldadcr2, 0x02000001); |
| 417 | #if (CONFIG_NUM_DDR_CONTROLLERS >= 3) |
| 418 | clrbits_be32(plldadcr3, 0x02000001); |
| 419 | #endif |
| 420 | #endif |
| 421 | clrbits_be32(dpdovrcr4, 0xe0000000); |
| 422 | } |
| 423 | #endif |
| 424 | |
York Sun | 695c0c3 | 2014-04-30 14:43:47 -0700 | [diff] [blame] | 425 | ulong cpu_init_f(void) |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 426 | { |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 427 | extern void m8560_cpm_reset (void); |
Ruchika Gupta | 2998af1 | 2014-09-29 11:35:33 +0530 | [diff] [blame] | 428 | #if defined(CONFIG_SYS_DCSRBAR_PHYS) || \ |
| 429 | (defined(CONFIG_SECURE_BOOT) && defined(CONFIG_FSL_CORENET)) |
Stephen George | 5bbf29c | 2011-07-20 09:47:26 -0500 | [diff] [blame] | 430 | ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 431 | #endif |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 432 | #if defined(CONFIG_SECURE_BOOT) |
| 433 | struct law_entry law; |
| 434 | #endif |
Peter Tyser | 30103c6 | 2008-11-11 10:17:10 -0600 | [diff] [blame] | 435 | #ifdef CONFIG_MPC8548 |
| 436 | ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
| 437 | uint svr = get_svr(); |
| 438 | |
| 439 | /* |
| 440 | * CPU2 errata workaround: A core hang possible while executing |
| 441 | * a msync instruction and a snoopable transaction from an I/O |
| 442 | * master tagged to make quick forward progress is present. |
| 443 | * Fixed in silicon rev 2.1. |
| 444 | */ |
| 445 | if ((SVR_MAJ(svr) == 1) || ((SVR_MAJ(svr) == 2 && SVR_MIN(svr) == 0x0))) |
| 446 | out_be32(&ecm->eebpcr, in_be32(&ecm->eebpcr) | (1 << 16)); |
| 447 | #endif |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 448 | |
Kumar Gala | 9772ee7 | 2008-01-16 22:38:34 -0600 | [diff] [blame] | 449 | disable_tlb(14); |
| 450 | disable_tlb(15); |
| 451 | |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 452 | #if defined(CONFIG_SECURE_BOOT) |
| 453 | /* Disable the LAW created for NOR flash by the PBI commands */ |
| 454 | law = find_law(CONFIG_SYS_PBI_FLASH_BASE); |
| 455 | if (law.index != -1) |
| 456 | disable_law(law.index); |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 457 | |
| 458 | #if defined(CONFIG_SYS_CPC_REINIT_F) |
| 459 | disable_cpc_sram(); |
| 460 | #endif |
Ruchika Gupta | 2998af1 | 2014-09-29 11:35:33 +0530 | [diff] [blame] | 461 | |
| 462 | #if defined(CONFIG_FSL_CORENET) |
| 463 | /* Put PAMU in bypass mode */ |
| 464 | out_be32(&gur->pamubypenr, FSL_CORENET_PAMU_BYPASS); |
| 465 | #endif |
| 466 | |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 467 | #endif |
| 468 | |
Jon Loeliger | f5ad378 | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 469 | #ifdef CONFIG_CPM2 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 470 | config_8560_ioports((ccsr_cpm_t *)CONFIG_SYS_MPC85xx_CPM_ADDR); |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 471 | #endif |
| 472 | |
Becky Bruce | 0d4cee1 | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 473 | init_early_memctl_regs(); |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 474 | |
Jon Loeliger | f5ad378 | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 475 | #if defined(CONFIG_CPM2) |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 476 | m8560_cpm_reset(); |
| 477 | #endif |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 478 | |
| 479 | #if defined(CONFIG_QE) && !defined(CONFIG_U_QE) |
Andy Fleming | ee0e917 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 480 | /* Config QE ioports */ |
| 481 | config_qe_ioports(); |
| 482 | #endif |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 483 | |
Peter Tyser | a9af1dc | 2009-06-30 17:15:47 -0500 | [diff] [blame] | 484 | #if defined(CONFIG_FSL_DMA) |
| 485 | dma_init(); |
| 486 | #endif |
Kumar Gala | 24f86a8 | 2009-09-17 01:52:37 -0500 | [diff] [blame] | 487 | #ifdef CONFIG_FSL_CORENET |
| 488 | corenet_tb_init(); |
| 489 | #endif |
Kumar Gala | 42f9918 | 2009-11-12 10:26:16 -0600 | [diff] [blame] | 490 | init_used_tlb_cams(); |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 491 | |
| 492 | /* Invalidate the CPC before DDR gets enabled */ |
| 493 | invalidate_cpc(); |
Stephen George | 5bbf29c | 2011-07-20 09:47:26 -0500 | [diff] [blame] | 494 | |
| 495 | #ifdef CONFIG_SYS_DCSRBAR_PHYS |
| 496 | /* set DCSRCR so that DCSR space is 1G */ |
| 497 | setbits_be32(&gur->dcsrcr, FSL_CORENET_DCSR_SZ_1G); |
| 498 | in_be32(&gur->dcsrcr); |
| 499 | #endif |
| 500 | |
York Sun | 7b083df | 2014-03-28 15:07:27 -0700 | [diff] [blame] | 501 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007212 |
| 502 | fsl_erratum_a007212_workaround(); |
| 503 | #endif |
| 504 | |
tang yuantian | a434191 | 2014-12-18 10:26:34 +0800 | [diff] [blame] | 505 | return 0; |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 506 | } |
| 507 | |
Kumar Gala | a38a9ce | 2010-12-15 03:50:47 -0600 | [diff] [blame] | 508 | /* Implement a dummy function for those platforms w/o SERDES */ |
| 509 | static void __fsl_serdes__init(void) |
| 510 | { |
| 511 | return ; |
| 512 | } |
| 513 | __attribute__((weak, alias("__fsl_serdes__init"))) void fsl_serdes_init(void); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 514 | |
Prabhakar Kushwaha | cc3c5b6 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 515 | #if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 516 | int enable_cluster_l2(void) |
| 517 | { |
| 518 | int i = 0; |
Shengzhou Liu | 26ed2d0 | 2014-04-25 16:31:22 +0800 | [diff] [blame] | 519 | u32 cluster, svr = get_svr(); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 520 | ccsr_gur_t *gur = (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 521 | struct ccsr_cluster_l2 __iomem *l2cache; |
| 522 | |
Shengzhou Liu | 26ed2d0 | 2014-04-25 16:31:22 +0800 | [diff] [blame] | 523 | /* only the L2 of first cluster should be enabled as expected on T4080, |
| 524 | * but there is no EOC in the first cluster as HW sake, so return here |
| 525 | * to skip enabling L2 cache of the 2nd cluster. |
| 526 | */ |
| 527 | if (SVR_SOC_VER(svr) == SVR_T4080) |
| 528 | return 0; |
| 529 | |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 530 | cluster = in_be32(&gur->tp_cluster[i].lower); |
| 531 | if (cluster & TP_CLUSTER_EOC) |
| 532 | return 0; |
| 533 | |
| 534 | /* The first cache has already been set up, so skip it */ |
| 535 | i++; |
| 536 | |
| 537 | /* Look through the remaining clusters, and set up their caches */ |
| 538 | do { |
Prabhakar Kushwaha | ccf0e68 | 2012-12-23 19:25:18 +0000 | [diff] [blame] | 539 | int j, cluster_valid = 0; |
| 540 | |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 541 | l2cache = (void __iomem *)(CONFIG_SYS_FSL_CLUSTER_1_L2 + i * 0x40000); |
Prabhakar Kushwaha | ccf0e68 | 2012-12-23 19:25:18 +0000 | [diff] [blame] | 542 | |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 543 | cluster = in_be32(&gur->tp_cluster[i].lower); |
| 544 | |
Prabhakar Kushwaha | ccf0e68 | 2012-12-23 19:25:18 +0000 | [diff] [blame] | 545 | /* check that at least one core/accel is enabled in cluster */ |
| 546 | for (j = 0; j < 4; j++) { |
| 547 | u32 idx = (cluster >> (j*8)) & TP_CLUSTER_INIT_MASK; |
| 548 | u32 type = in_be32(&gur->tp_ityp[idx]); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 549 | |
Shaveta Leekha | 6e125a2 | 2014-07-02 11:44:54 +0530 | [diff] [blame] | 550 | if ((type & TP_ITYP_AV) && |
| 551 | TP_ITYP_TYPE(type) == TP_ITYP_TYPE_PPC) |
Prabhakar Kushwaha | ccf0e68 | 2012-12-23 19:25:18 +0000 | [diff] [blame] | 552 | cluster_valid = 1; |
| 553 | } |
| 554 | |
| 555 | if (cluster_valid) { |
| 556 | /* set stash ID to (cluster) * 2 + 32 + 1 */ |
| 557 | clrsetbits_be32(&l2cache->l2csr1, 0xff, 32 + i * 2 + 1); |
| 558 | |
| 559 | printf("enable l2 for cluster %d %p\n", i, l2cache); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 560 | |
Prabhakar Kushwaha | ccf0e68 | 2012-12-23 19:25:18 +0000 | [diff] [blame] | 561 | out_be32(&l2cache->l2csr0, L2CSR0_L2FI|L2CSR0_L2LFC); |
| 562 | while ((in_be32(&l2cache->l2csr0) |
| 563 | & (L2CSR0_L2FI|L2CSR0_L2LFC)) != 0) |
| 564 | ; |
James Yang | 284ce50 | 2013-03-25 07:40:03 +0000 | [diff] [blame] | 565 | out_be32(&l2cache->l2csr0, L2CSR0_L2E|L2CSR0_L2PE|L2CSR0_L2REP_MODE); |
Prabhakar Kushwaha | ccf0e68 | 2012-12-23 19:25:18 +0000 | [diff] [blame] | 566 | } |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 567 | i++; |
| 568 | } while (!(cluster & TP_CLUSTER_EOC)); |
| 569 | |
| 570 | return 0; |
| 571 | } |
| 572 | #endif |
| 573 | |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 574 | /* |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 575 | * Initialize L2 as cache. |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 576 | */ |
Tang Yuantian | efd6da6 | 2014-07-04 17:39:26 +0800 | [diff] [blame] | 577 | int l2cache_init(void) |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 578 | { |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 579 | __maybe_unused u32 svr = get_svr(); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 580 | #ifdef CONFIG_L2_CACHE |
| 581 | ccsr_l2cache_t *l2cache = (void __iomem *)CONFIG_SYS_MPC85xx_L2_ADDR; |
Prabhakar Kushwaha | cc3c5b6 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 582 | #elif defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 583 | struct ccsr_cluster_l2 * l2cache = (void __iomem *)CONFIG_SYS_FSL_CLUSTER_1_L2; |
Lan Chunhe | e0ef732 | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 584 | #endif |
York Sun | f066a04 | 2012-10-28 08:12:54 +0000 | [diff] [blame] | 585 | |
Wolfgang Grandegger | 09cb120 | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 586 | puts ("L2: "); |
| 587 | |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 588 | #if defined(CONFIG_L2_CACHE) |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 589 | volatile uint cache_ctl; |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 590 | uint ver; |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 591 | u32 l2siz_field; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 592 | |
Kumar Gala | 1f109fd | 2008-04-08 10:45:50 -0500 | [diff] [blame] | 593 | ver = SVR_SOC_VER(svr); |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 594 | |
| 595 | asm("msync;isync"); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 596 | cache_ctl = l2cache->l2ctl; |
Mingkai Hu | 0255cd7 | 2009-09-11 14:19:10 +0800 | [diff] [blame] | 597 | |
| 598 | #if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L2_ADDR) |
| 599 | if (cache_ctl & MPC85xx_L2CTL_L2E) { |
| 600 | /* Clear L2 SRAM memory-mapped base address */ |
| 601 | out_be32(&l2cache->l2srbar0, 0x0); |
| 602 | out_be32(&l2cache->l2srbar1, 0x0); |
| 603 | |
| 604 | /* set MBECCDIS=0, SBECCDIS=0 */ |
| 605 | clrbits_be32(&l2cache->l2errdis, |
| 606 | (MPC85xx_L2ERRDIS_MBECC | |
| 607 | MPC85xx_L2ERRDIS_SBECC)); |
| 608 | |
| 609 | /* set L2E=0, L2SRAM=0 */ |
| 610 | clrbits_be32(&l2cache->l2ctl, |
| 611 | (MPC85xx_L2CTL_L2E | |
| 612 | MPC85xx_L2CTL_L2SRAM_ENTIRE)); |
| 613 | } |
| 614 | #endif |
| 615 | |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 616 | l2siz_field = (cache_ctl >> 28) & 0x3; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 617 | |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 618 | switch (l2siz_field) { |
| 619 | case 0x0: |
| 620 | printf(" unknown size (0x%08x)\n", cache_ctl); |
| 621 | return -1; |
| 622 | break; |
| 623 | case 0x1: |
| 624 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 625 | ver == SVR_8541 || ver == SVR_8555) { |
Shruti Kanetkar | 8115936 | 2013-08-15 11:25:38 -0500 | [diff] [blame] | 626 | puts("128 KiB "); |
| 627 | /* set L2E=1, L2I=1, & L2BLKSZ=1 (128 KiBibyte) */ |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 628 | cache_ctl = 0xc4000000; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 629 | } else { |
Shruti Kanetkar | 8115936 | 2013-08-15 11:25:38 -0500 | [diff] [blame] | 630 | puts("256 KiB "); |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 631 | cache_ctl = 0xc0000000; /* set L2E=1, L2I=1, & L2SRAM=0 */ |
| 632 | } |
| 633 | break; |
| 634 | case 0x2: |
| 635 | if (ver == SVR_8540 || ver == SVR_8560 || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 636 | ver == SVR_8541 || ver == SVR_8555) { |
Shruti Kanetkar | 8115936 | 2013-08-15 11:25:38 -0500 | [diff] [blame] | 637 | puts("256 KiB "); |
| 638 | /* set L2E=1, L2I=1, & L2BLKSZ=2 (256 KiBibyte) */ |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 639 | cache_ctl = 0xc8000000; |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 640 | } else { |
Shruti Kanetkar | 8115936 | 2013-08-15 11:25:38 -0500 | [diff] [blame] | 641 | puts("512 KiB "); |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 642 | /* set L2E=1, L2I=1, & L2SRAM=0 */ |
| 643 | cache_ctl = 0xc0000000; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 644 | } |
Jon Loeliger | 4fc25e4 | 2005-07-25 10:58:39 -0500 | [diff] [blame] | 645 | break; |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 646 | case 0x3: |
Shruti Kanetkar | 8115936 | 2013-08-15 11:25:38 -0500 | [diff] [blame] | 647 | puts("1024 KiB "); |
Kumar Gala | 2011997 | 2008-07-14 14:07:00 -0500 | [diff] [blame] | 648 | /* set L2E=1, L2I=1, & L2SRAM=0 */ |
| 649 | cache_ctl = 0xc0000000; |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 650 | break; |
Jon Loeliger | 4fc25e4 | 2005-07-25 10:58:39 -0500 | [diff] [blame] | 651 | } |
| 652 | |
Mingkai Hu | d2088e0 | 2009-08-18 15:37:15 +0800 | [diff] [blame] | 653 | if (l2cache->l2ctl & MPC85xx_L2CTL_L2E) { |
Wolfgang Grandegger | 09cb120 | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 654 | puts("already enabled"); |
Haiying Wang | 05beab7 | 2010-12-01 10:35:30 -0500 | [diff] [blame] | 655 | #if defined(CONFIG_SYS_INIT_L2_ADDR) && defined(CONFIG_SYS_FLASH_BASE) |
Kumar Gala | 1882fab | 2011-11-09 09:56:41 -0600 | [diff] [blame] | 656 | u32 l2srbar = l2cache->l2srbar0; |
Mingkai Hu | d2088e0 | 2009-08-18 15:37:15 +0800 | [diff] [blame] | 657 | if (l2cache->l2ctl & MPC85xx_L2CTL_L2SRAM_ENTIRE |
| 658 | && l2srbar >= CONFIG_SYS_FLASH_BASE) { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 659 | l2srbar = CONFIG_SYS_INIT_L2_ADDR; |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 660 | l2cache->l2srbar0 = l2srbar; |
Scott Wood | 55f9f3a | 2012-10-29 19:00:41 -0500 | [diff] [blame] | 661 | printf(", moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR); |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 662 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 663 | #endif /* CONFIG_SYS_INIT_L2_ADDR */ |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 664 | puts("\n"); |
| 665 | } else { |
| 666 | asm("msync;isync"); |
| 667 | l2cache->l2ctl = cache_ctl; /* invalidate & enable */ |
| 668 | asm("msync;isync"); |
Wolfgang Grandegger | 09cb120 | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 669 | puts("enabled\n"); |
Ed Swarthout | dd93d8f | 2007-07-27 01:50:47 -0500 | [diff] [blame] | 670 | } |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 671 | #elif defined(CONFIG_BACKSIDE_L2_CACHE) |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 672 | if (SVR_SOC_VER(svr) == SVR_P2040) { |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 673 | puts("N/A\n"); |
| 674 | goto skip_l2; |
| 675 | } |
| 676 | |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 677 | u32 l2cfg0 = mfspr(SPRN_L2CFG0); |
| 678 | |
| 679 | /* invalidate the L2 cache */ |
Kumar Gala | b6a4090 | 2009-09-22 15:45:44 -0500 | [diff] [blame] | 680 | mtspr(SPRN_L2CSR0, (L2CSR0_L2FI|L2CSR0_L2LFC)); |
| 681 | while (mfspr(SPRN_L2CSR0) & (L2CSR0_L2FI|L2CSR0_L2LFC)) |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 682 | ; |
| 683 | |
Kumar Gala | 8d2817c | 2009-03-19 02:53:01 -0500 | [diff] [blame] | 684 | #ifdef CONFIG_SYS_CACHE_STASHING |
| 685 | /* set stash id to (coreID) * 2 + 32 + L2 (1) */ |
| 686 | mtspr(SPRN_L2CSR1, (32 + 1)); |
| 687 | #endif |
| 688 | |
Kumar Gala | e56f2c5 | 2009-03-19 09:16:10 -0500 | [diff] [blame] | 689 | /* enable the cache */ |
| 690 | mtspr(SPRN_L2CSR0, CONFIG_SYS_INIT_L2CSR0); |
| 691 | |
Dave Liu | 1721819 | 2009-10-22 00:10:23 -0500 | [diff] [blame] | 692 | if (CONFIG_SYS_INIT_L2CSR0 & L2CSR0_L2E) { |
| 693 | while (!(mfspr(SPRN_L2CSR0) & L2CSR0_L2E)) |
| 694 | ; |
Shruti Kanetkar | 3adfb91 | 2013-08-15 11:25:37 -0500 | [diff] [blame] | 695 | print_size((l2cfg0 & 0x3fff) * 64 * 1024, " enabled\n"); |
Dave Liu | 1721819 | 2009-10-22 00:10:23 -0500 | [diff] [blame] | 696 | } |
Kumar Gala | e08c6d8 | 2011-07-21 00:20:21 -0500 | [diff] [blame] | 697 | |
| 698 | skip_l2: |
Prabhakar Kushwaha | cc3c5b6 | 2013-08-29 13:10:38 +0530 | [diff] [blame] | 699 | #elif defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500) |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 700 | if (l2cache->l2csr0 & L2CSR0_L2E) |
Shruti Kanetkar | 3adfb91 | 2013-08-15 11:25:37 -0500 | [diff] [blame] | 701 | print_size((l2cache->l2cfg0 & 0x3fff) * 64 * 1024, |
| 702 | " enabled\n"); |
York Sun | c3d87b1 | 2012-10-08 07:44:08 +0000 | [diff] [blame] | 703 | |
| 704 | enable_cluster_l2(); |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 705 | #else |
Wolfgang Grandegger | 09cb120 | 2008-06-05 13:11:59 +0200 | [diff] [blame] | 706 | puts("disabled\n"); |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 707 | #endif |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 708 | |
Tang Yuantian | efd6da6 | 2014-07-04 17:39:26 +0800 | [diff] [blame] | 709 | return 0; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * |
| 714 | * The newer 8548, etc, parts have twice as much cache, but |
| 715 | * use the same bit-encoding as the older 8555, etc, parts. |
| 716 | * |
| 717 | */ |
| 718 | int cpu_init_r(void) |
| 719 | { |
| 720 | __maybe_unused u32 svr = get_svr(); |
| 721 | #ifdef CONFIG_SYS_LBC_LCRR |
| 722 | fsl_lbc_t *lbc = (void __iomem *)LBC_BASE_ADDR; |
| 723 | #endif |
| 724 | #if defined(CONFIG_PPC_SPINTABLE_COMPATIBLE) && defined(CONFIG_MP) |
| 725 | extern int spin_table_compat; |
| 726 | const char *spin; |
| 727 | #endif |
| 728 | #ifdef CONFIG_SYS_FSL_ERRATUM_SEC_A003571 |
| 729 | ccsr_sec_t __iomem *sec = (void *)CONFIG_SYS_FSL_SEC_ADDR; |
| 730 | #endif |
| 731 | #if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) || \ |
| 732 | defined(CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011) |
| 733 | /* |
| 734 | * CPU22 and NMG_CPU_A011 share the same workaround. |
| 735 | * CPU22 applies to P4080 rev 1.0, 2.0, fixed in 3.0 |
| 736 | * NMG_CPU_A011 applies to P4080 rev 1.0, 2.0, fixed in 3.0 |
| 737 | * also applies to P3041 rev 1.0, 1.1, P2041 rev 1.0, 1.1, both |
| 738 | * fixed in 2.0. NMG_CPU_A011 is activated by default and can |
| 739 | * be disabled by hwconfig with syntax: |
| 740 | * |
| 741 | * fsl_cpu_a011:disable |
| 742 | */ |
| 743 | extern int enable_cpu_a011_workaround; |
| 744 | #ifdef CONFIG_SYS_P4080_ERRATUM_CPU22 |
| 745 | enable_cpu_a011_workaround = (SVR_MAJ(svr) < 3); |
| 746 | #else |
| 747 | char buffer[HWCONFIG_BUFFER_SIZE]; |
| 748 | char *buf = NULL; |
| 749 | int n, res; |
| 750 | |
| 751 | n = getenv_f("hwconfig", buffer, sizeof(buffer)); |
| 752 | if (n > 0) |
| 753 | buf = buffer; |
| 754 | |
| 755 | res = hwconfig_arg_cmp_f("fsl_cpu_a011", "disable", buf); |
| 756 | if (res > 0) { |
| 757 | enable_cpu_a011_workaround = 0; |
| 758 | } else { |
| 759 | if (n >= HWCONFIG_BUFFER_SIZE) { |
| 760 | printf("fsl_cpu_a011 was not found. hwconfig variable " |
| 761 | "may be too long\n"); |
| 762 | } |
| 763 | enable_cpu_a011_workaround = |
| 764 | (SVR_SOC_VER(svr) == SVR_P4080 && SVR_MAJ(svr) < 3) || |
| 765 | (SVR_SOC_VER(svr) != SVR_P4080 && SVR_MAJ(svr) < 2); |
| 766 | } |
| 767 | #endif |
| 768 | if (enable_cpu_a011_workaround) { |
| 769 | flush_dcache(); |
| 770 | mtspr(L1CSR2, (mfspr(L1CSR2) | L1CSR2_DCWS)); |
| 771 | sync(); |
| 772 | } |
| 773 | #endif |
| 774 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005812 |
| 775 | /* |
| 776 | * A-005812 workaround sets bit 32 of SPR 976 for SoCs running |
| 777 | * in write shadow mode. Checking DCWS before setting SPR 976. |
| 778 | */ |
| 779 | if (mfspr(L1CSR2) & L1CSR2_DCWS) |
| 780 | mtspr(SPRN_HDBCR0, (mfspr(SPRN_HDBCR0) | 0x80000000)); |
| 781 | #endif |
| 782 | |
| 783 | #if defined(CONFIG_PPC_SPINTABLE_COMPATIBLE) && defined(CONFIG_MP) |
| 784 | spin = getenv("spin_table_compat"); |
| 785 | if (spin && (*spin == 'n')) |
| 786 | spin_table_compat = 0; |
| 787 | else |
| 788 | spin_table_compat = 1; |
| 789 | #endif |
| 790 | |
| 791 | l2cache_init(); |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 792 | #if defined(CONFIG_RAMBOOT_PBL) |
| 793 | disable_cpc_sram(); |
| 794 | #endif |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 795 | enable_cpc(); |
Sandeep Singh | 4fb16a1 | 2014-06-05 18:49:57 +0530 | [diff] [blame] | 796 | #if defined(T1040_TDM_QUIRK_CCSR_BASE) |
| 797 | enable_tdm_law(); |
| 798 | #endif |
Kumar Gala | 76eef3e | 2009-03-19 03:40:08 -0500 | [diff] [blame] | 799 | |
York Sun | 972cc40 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 800 | #ifndef CONFIG_SYS_FSL_NO_SERDES |
Kumar Gala | 86853d4 | 2010-05-22 13:21:39 -0500 | [diff] [blame] | 801 | /* needs to be in ram since code uses global static vars */ |
| 802 | fsl_serdes_init(); |
York Sun | 972cc40 | 2013-06-25 11:37:41 -0700 | [diff] [blame] | 803 | #endif |
Kumar Gala | 86853d4 | 2010-05-22 13:21:39 -0500 | [diff] [blame] | 804 | |
Shengzhou Liu | 097be70 | 2013-08-15 09:31:47 +0800 | [diff] [blame] | 805 | #ifdef CONFIG_SYS_FSL_ERRATUM_SEC_A003571 |
| 806 | #define MCFGR_AXIPIPE 0x000000f0 |
| 807 | if (IS_SVR_REV(svr, 1, 0)) |
Ruchika Gupta | bb7143b | 2014-09-09 11:50:31 +0530 | [diff] [blame] | 808 | sec_clrbits32(&sec->mcfgr, MCFGR_AXIPIPE); |
Shengzhou Liu | 097be70 | 2013-08-15 09:31:47 +0800 | [diff] [blame] | 809 | #endif |
| 810 | |
Shengzhou Liu | 95bd8e5 | 2013-01-23 19:56:23 +0000 | [diff] [blame] | 811 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005871 |
| 812 | if (IS_SVR_REV(svr, 1, 0)) { |
| 813 | int i; |
| 814 | __be32 *p = (void __iomem *)CONFIG_SYS_DCSRBAR + 0xb004c; |
| 815 | |
| 816 | for (i = 0; i < 12; i++) { |
| 817 | p += i + (i > 5 ? 11 : 0); |
| 818 | out_be32(p, 0x2); |
| 819 | } |
| 820 | p = (void __iomem *)CONFIG_SYS_DCSRBAR + 0xb0108; |
| 821 | out_be32(p, 0x34); |
| 822 | } |
| 823 | #endif |
| 824 | |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 825 | #ifdef CONFIG_SYS_SRIO |
| 826 | srio_init(); |
Liu Gang | 27afb9c | 2013-05-07 16:30:46 +0800 | [diff] [blame] | 827 | #ifdef CONFIG_SRIO_PCIE_BOOT_MASTER |
Liu Gang | d7b17a9 | 2012-08-09 05:09:59 +0000 | [diff] [blame] | 828 | char *s = getenv("bootmaster"); |
| 829 | if (s) { |
| 830 | if (!strcmp(s, "SRIO1")) { |
| 831 | srio_boot_master(1); |
| 832 | srio_boot_master_release_slave(1); |
| 833 | } |
| 834 | if (!strcmp(s, "SRIO2")) { |
| 835 | srio_boot_master(2); |
| 836 | srio_boot_master_release_slave(2); |
| 837 | } |
| 838 | } |
Liu Gang | 4cc8532 | 2012-03-08 00:33:17 +0000 | [diff] [blame] | 839 | #endif |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 840 | #endif |
| 841 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 842 | #if defined(CONFIG_MP) |
| 843 | setup_mp(); |
| 844 | #endif |
Lan Chunhe | e0ef732 | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 845 | |
Zang Roy-R61911 | 8365992 | 2012-09-18 09:50:08 +0000 | [diff] [blame] | 846 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC13 |
Roy Zang | c65dc4d | 2011-01-07 00:24:27 -0600 | [diff] [blame] | 847 | { |
Zang Roy-R61911 | 8365992 | 2012-09-18 09:50:08 +0000 | [diff] [blame] | 848 | if (SVR_MAJ(svr) < 3) { |
| 849 | void *p; |
| 850 | p = (void *)CONFIG_SYS_DCSRBAR + 0x20520; |
| 851 | setbits_be32(p, 1 << (31 - 14)); |
| 852 | } |
Roy Zang | c65dc4d | 2011-01-07 00:24:27 -0600 | [diff] [blame] | 853 | } |
| 854 | #endif |
| 855 | |
Lan Chunhe | e0ef732 | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 856 | #ifdef CONFIG_SYS_LBC_LCRR |
| 857 | /* |
| 858 | * Modify the CLKDIV field of LCRR register to improve the writing |
| 859 | * speed for NOR flash. |
| 860 | */ |
| 861 | clrsetbits_be32(&lbc->lcrr, LCRR_CLKDIV, CONFIG_SYS_LBC_LCRR); |
| 862 | __raw_readl(&lbc->lcrr); |
| 863 | isync(); |
Kumar Gala | f3339d6 | 2011-10-03 08:37:57 -0500 | [diff] [blame] | 864 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_LBC103 |
| 865 | udelay(100); |
| 866 | #endif |
Lan Chunhe | e0ef732 | 2010-04-21 07:40:50 -0500 | [diff] [blame] | 867 | #endif |
| 868 | |
Roy Zang | 6d6a0e1 | 2011-04-13 00:08:51 -0500 | [diff] [blame] | 869 | #ifdef CONFIG_SYS_FSL_USB1_PHY_ENABLE |
| 870 | { |
ramneek mehresh | c65e882 | 2013-08-05 16:00:16 +0530 | [diff] [blame] | 871 | struct ccsr_usb_phy __iomem *usb_phy1 = |
Roy Zang | 6d6a0e1 | 2011-04-13 00:08:51 -0500 | [diff] [blame] | 872 | (void *)CONFIG_SYS_MPC85xx_USB1_PHY_ADDR; |
Suresh Gupta | 086f0a7 | 2014-02-26 14:29:12 +0530 | [diff] [blame] | 873 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006261 |
| 874 | if (has_erratum_a006261()) |
| 875 | fsl_erratum_a006261_workaround(usb_phy1); |
| 876 | #endif |
Roy Zang | 6d6a0e1 | 2011-04-13 00:08:51 -0500 | [diff] [blame] | 877 | out_be32(&usb_phy1->usb_enable_override, |
| 878 | CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE); |
| 879 | } |
| 880 | #endif |
| 881 | #ifdef CONFIG_SYS_FSL_USB2_PHY_ENABLE |
| 882 | { |
ramneek mehresh | c65e882 | 2013-08-05 16:00:16 +0530 | [diff] [blame] | 883 | struct ccsr_usb_phy __iomem *usb_phy2 = |
Roy Zang | 6d6a0e1 | 2011-04-13 00:08:51 -0500 | [diff] [blame] | 884 | (void *)CONFIG_SYS_MPC85xx_USB2_PHY_ADDR; |
Suresh Gupta | 086f0a7 | 2014-02-26 14:29:12 +0530 | [diff] [blame] | 885 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006261 |
| 886 | if (has_erratum_a006261()) |
| 887 | fsl_erratum_a006261_workaround(usb_phy2); |
| 888 | #endif |
Roy Zang | 6d6a0e1 | 2011-04-13 00:08:51 -0500 | [diff] [blame] | 889 | out_be32(&usb_phy2->usb_enable_override, |
| 890 | CONFIG_SYS_FSL_USB_ENABLE_OVERRIDE); |
| 891 | } |
| 892 | #endif |
| 893 | |
Xulei | cf4f493 | 2013-03-11 17:56:34 +0000 | [diff] [blame] | 894 | #ifdef CONFIG_SYS_FSL_ERRATUM_USB14 |
| 895 | /* On P204x/P304x/P50x0 Rev1.0, USB transmit will result internal |
| 896 | * multi-bit ECC errors which has impact on performance, so software |
| 897 | * should disable all ECC reporting from USB1 and USB2. |
| 898 | */ |
| 899 | if (IS_SVR_REV(get_svr(), 1, 0)) { |
| 900 | struct dcsr_dcfg_regs *dcfg = (struct dcsr_dcfg_regs *) |
| 901 | (CONFIG_SYS_DCSRBAR + CONFIG_SYS_DCSR_DCFG_OFFSET); |
| 902 | setbits_be32(&dcfg->ecccr1, |
| 903 | (DCSR_DCFG_ECC_DISABLE_USB1 | |
| 904 | DCSR_DCFG_ECC_DISABLE_USB2)); |
| 905 | } |
| 906 | #endif |
| 907 | |
Roy Zang | 59a539a | 2013-03-25 07:39:33 +0000 | [diff] [blame] | 908 | #if defined(CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE) |
ramneek mehresh | c65e882 | 2013-08-05 16:00:16 +0530 | [diff] [blame] | 909 | struct ccsr_usb_phy __iomem *usb_phy = |
Roy Zang | 59a539a | 2013-03-25 07:39:33 +0000 | [diff] [blame] | 910 | (void *)CONFIG_SYS_MPC85xx_USB1_PHY_ADDR; |
| 911 | setbits_be32(&usb_phy->pllprg[1], |
| 912 | CONFIG_SYS_FSL_USB_PLLPRG2_PHY2_CLK_EN | |
| 913 | CONFIG_SYS_FSL_USB_PLLPRG2_PHY1_CLK_EN | |
| 914 | CONFIG_SYS_FSL_USB_PLLPRG2_MFI | |
| 915 | CONFIG_SYS_FSL_USB_PLLPRG2_PLL_EN); |
Nikhil Badola | 006e83a | 2014-04-15 14:44:52 +0530 | [diff] [blame] | 916 | #ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK |
| 917 | usb_single_source_clk_configure(usb_phy); |
| 918 | #endif |
Roy Zang | 59a539a | 2013-03-25 07:39:33 +0000 | [diff] [blame] | 919 | setbits_be32(&usb_phy->port1.ctrl, |
| 920 | CONFIG_SYS_FSL_USB_CTRL_PHY_EN); |
| 921 | setbits_be32(&usb_phy->port1.drvvbuscfg, |
| 922 | CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN); |
| 923 | setbits_be32(&usb_phy->port1.pwrfltcfg, |
| 924 | CONFIG_SYS_FSL_USB_PWRFLT_CR_EN); |
| 925 | setbits_be32(&usb_phy->port2.ctrl, |
| 926 | CONFIG_SYS_FSL_USB_CTRL_PHY_EN); |
| 927 | setbits_be32(&usb_phy->port2.drvvbuscfg, |
| 928 | CONFIG_SYS_FSL_USB_DRVVBUS_CR_EN); |
| 929 | setbits_be32(&usb_phy->port2.pwrfltcfg, |
| 930 | CONFIG_SYS_FSL_USB_PWRFLT_CR_EN); |
Suresh Gupta | 086f0a7 | 2014-02-26 14:29:12 +0530 | [diff] [blame] | 931 | |
| 932 | #ifdef CONFIG_SYS_FSL_ERRATUM_A006261 |
| 933 | if (has_erratum_a006261()) |
| 934 | fsl_erratum_a006261_workaround(usb_phy); |
Roy Zang | 59a539a | 2013-03-25 07:39:33 +0000 | [diff] [blame] | 935 | #endif |
| 936 | |
Suresh Gupta | 086f0a7 | 2014-02-26 14:29:12 +0530 | [diff] [blame] | 937 | #endif /* CONFIG_SYS_FSL_USB_DUAL_PHY_ENABLE */ |
| 938 | |
Kumar Gala | 2683c53 | 2011-04-13 08:37:44 -0500 | [diff] [blame] | 939 | #ifdef CONFIG_FMAN_ENET |
| 940 | fman_enet_init(); |
| 941 | #endif |
| 942 | |
Ruchika Gupta | ac1b269 | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 943 | #ifdef CONFIG_FSL_CAAM |
| 944 | sec_init(); |
| 945 | #endif |
| 946 | |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 947 | #if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001) |
| 948 | /* |
| 949 | * For P1022/1013 Rev1.0 silicon, after power on SATA host |
| 950 | * controller is configured in legacy mode instead of the |
| 951 | * expected enterprise mode. Software needs to clear bit[28] |
| 952 | * of HControl register to change to enterprise mode from |
| 953 | * legacy mode. We assume that the controller is offline. |
| 954 | */ |
| 955 | if (IS_SVR_REV(svr, 1, 0) && |
| 956 | ((SVR_SOC_VER(svr) == SVR_P1022) || |
York Sun | 8cb6548 | 2012-07-06 17:10:33 -0500 | [diff] [blame] | 957 | (SVR_SOC_VER(svr) == SVR_P1013))) { |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 958 | fsl_sata_reg_t *reg; |
| 959 | |
| 960 | /* first SATA controller */ |
| 961 | reg = (void *)CONFIG_SYS_MPC85xx_SATA1_ADDR; |
| 962 | clrbits_le32(®->hcontrol, HCONTROL_ENTERPRISE_EN); |
| 963 | |
| 964 | /* second SATA controller */ |
| 965 | reg = (void *)CONFIG_SYS_MPC85xx_SATA2_ADDR; |
| 966 | clrbits_le32(®->hcontrol, HCONTROL_ENTERPRISE_EN); |
| 967 | } |
| 968 | #endif |
| 969 | |
Alexander Graf | cfb90e3 | 2014-04-30 19:21:12 +0200 | [diff] [blame] | 970 | init_used_tlb_cams(); |
Timur Tabi | d7acf5c | 2011-11-21 17:10:23 -0600 | [diff] [blame] | 971 | |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 972 | return 0; |
| 973 | } |
Kumar Gala | c24a905 | 2009-08-14 13:37:54 -0500 | [diff] [blame] | 974 | |
Kumar Gala | c24a905 | 2009-08-14 13:37:54 -0500 | [diff] [blame] | 975 | void arch_preboot_os(void) |
| 976 | { |
Kumar Gala | 9faa23a | 2009-09-11 15:28:41 -0500 | [diff] [blame] | 977 | u32 msr; |
| 978 | |
| 979 | /* |
| 980 | * We are changing interrupt offsets and are about to boot the OS so |
| 981 | * we need to make sure we disable all async interrupts. EE is already |
| 982 | * disabled by the time we get called. |
| 983 | */ |
| 984 | msr = mfmsr(); |
Prabhakar Kushwaha | 8f3e892 | 2012-04-29 23:56:30 +0000 | [diff] [blame] | 985 | msr &= ~(MSR_ME|MSR_CE); |
Kumar Gala | 9faa23a | 2009-09-11 15:28:41 -0500 | [diff] [blame] | 986 | mtmsr(msr); |
Kumar Gala | c24a905 | 2009-08-14 13:37:54 -0500 | [diff] [blame] | 987 | } |
Kumar Gala | eb453df | 2010-04-20 10:21:25 -0500 | [diff] [blame] | 988 | |
| 989 | #if defined(CONFIG_CMD_SATA) && defined(CONFIG_FSL_SATA) |
| 990 | int sata_initialize(void) |
| 991 | { |
| 992 | if (is_serdes_configured(SATA1) || is_serdes_configured(SATA2)) |
| 993 | return __sata_initialize(); |
| 994 | |
| 995 | return 1; |
| 996 | } |
| 997 | #endif |
Kumar Gala | 2ef216b | 2011-02-02 11:23:50 -0600 | [diff] [blame] | 998 | |
| 999 | void cpu_secondary_init_r(void) |
| 1000 | { |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 1001 | #ifdef CONFIG_U_QE |
| 1002 | uint qe_base = CONFIG_SYS_IMMR + 0x00140000; /* QE immr base */ |
| 1003 | #elif defined CONFIG_QE |
Kumar Gala | 2ef216b | 2011-02-02 11:23:50 -0600 | [diff] [blame] | 1004 | uint qe_base = CONFIG_SYS_IMMR + 0x00080000; /* QE immr base */ |
Zhao Qiang | b818ba2 | 2014-03-21 16:21:45 +0800 | [diff] [blame] | 1005 | #endif |
| 1006 | |
| 1007 | #ifdef CONFIG_QE |
Kumar Gala | 2ef216b | 2011-02-02 11:23:50 -0600 | [diff] [blame] | 1008 | qe_init(qe_base); |
| 1009 | qe_reset(); |
| 1010 | #endif |
| 1011 | } |