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