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