1 /* 2 * Copyright 2011-2015 Freescale Semiconductor, Inc. 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 #include <errno.h> 7 #include <common.h> 8 #include <asm/io.h> 9 #include <fsl_mdio.h> 10 #ifdef CONFIG_FSL_LAYERSCAPE 11 #include <asm/arch/fsl_serdes.h> 12 #else 13 #include <asm/fsl_serdes.h> 14 #endif 15 16 #include "fm.h" 17 18 struct fm_eth_info fm_info[] = { 19 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 1) 20 FM_DTSEC_INFO_INITIALIZER(1, 1), 21 #endif 22 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 2) 23 FM_DTSEC_INFO_INITIALIZER(1, 2), 24 #endif 25 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 3) 26 FM_DTSEC_INFO_INITIALIZER(1, 3), 27 #endif 28 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 4) 29 FM_DTSEC_INFO_INITIALIZER(1, 4), 30 #endif 31 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 5) 32 FM_DTSEC_INFO_INITIALIZER(1, 5), 33 #endif 34 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 6) 35 FM_DTSEC_INFO_INITIALIZER(1, 6), 36 #endif 37 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 7) 38 FM_DTSEC_INFO_INITIALIZER(1, 9), 39 #endif 40 #if (CONFIG_SYS_NUM_FM1_DTSEC >= 8) 41 FM_DTSEC_INFO_INITIALIZER(1, 10), 42 #endif 43 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 1) 44 FM_DTSEC_INFO_INITIALIZER(2, 1), 45 #endif 46 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 2) 47 FM_DTSEC_INFO_INITIALIZER(2, 2), 48 #endif 49 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 3) 50 FM_DTSEC_INFO_INITIALIZER(2, 3), 51 #endif 52 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 4) 53 FM_DTSEC_INFO_INITIALIZER(2, 4), 54 #endif 55 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 5) 56 FM_DTSEC_INFO_INITIALIZER(2, 5), 57 #endif 58 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 6) 59 FM_DTSEC_INFO_INITIALIZER(2, 6), 60 #endif 61 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 7) 62 FM_DTSEC_INFO_INITIALIZER(2, 9), 63 #endif 64 #if (CONFIG_SYS_NUM_FM2_DTSEC >= 8) 65 FM_DTSEC_INFO_INITIALIZER(2, 10), 66 #endif 67 #if (CONFIG_SYS_NUM_FM1_10GEC >= 1) 68 FM_TGEC_INFO_INITIALIZER(1, 1), 69 #endif 70 #if (CONFIG_SYS_NUM_FM1_10GEC >= 2) 71 FM_TGEC_INFO_INITIALIZER(1, 2), 72 #endif 73 #if (CONFIG_SYS_NUM_FM1_10GEC >= 3) 74 FM_TGEC_INFO_INITIALIZER2(1, 3), 75 #endif 76 #if (CONFIG_SYS_NUM_FM1_10GEC >= 4) 77 FM_TGEC_INFO_INITIALIZER2(1, 4), 78 #endif 79 #if (CONFIG_SYS_NUM_FM2_10GEC >= 1) 80 FM_TGEC_INFO_INITIALIZER(2, 1), 81 #endif 82 #if (CONFIG_SYS_NUM_FM2_10GEC >= 2) 83 FM_TGEC_INFO_INITIALIZER(2, 2), 84 #endif 85 }; 86 87 int fm_standard_init(bd_t *bis) 88 { 89 int i; 90 struct ccsr_fman *reg; 91 92 reg = (void *)CONFIG_SYS_FSL_FM1_ADDR; 93 if (fm_init_common(0, reg)) 94 return 0; 95 96 for (i = 0; i < ARRAY_SIZE(fm_info); i++) { 97 if ((fm_info[i].enabled) && (fm_info[i].index == 1)) 98 fm_eth_initialize(reg, &fm_info[i]); 99 } 100 101 #if (CONFIG_SYS_NUM_FMAN == 2) 102 reg = (void *)CONFIG_SYS_FSL_FM2_ADDR; 103 if (fm_init_common(1, reg)) 104 return 0; 105 106 for (i = 0; i < ARRAY_SIZE(fm_info); i++) { 107 if ((fm_info[i].enabled) && (fm_info[i].index == 2)) 108 fm_eth_initialize(reg, &fm_info[i]); 109 } 110 #endif 111 112 return 1; 113 } 114 115 /* simple linear search to map from port to array index */ 116 static int fm_port_to_index(enum fm_port port) 117 { 118 int i; 119 120 for (i = 0; i < ARRAY_SIZE(fm_info); i++) { 121 if (fm_info[i].port == port) 122 return i; 123 } 124 125 return -1; 126 } 127 128 /* 129 * Determine if an interface is actually active based on HW config 130 * we expect fman_port_enet_if() to report PHY_INTERFACE_MODE_NONE if 131 * the interface is not active based on HW cfg of the SoC 132 */ 133 void fman_enet_init(void) 134 { 135 int i; 136 137 for (i = 0; i < ARRAY_SIZE(fm_info); i++) { 138 phy_interface_t enet_if; 139 140 enet_if = fman_port_enet_if(fm_info[i].port); 141 if (enet_if != PHY_INTERFACE_MODE_NONE) { 142 fm_info[i].enabled = 1; 143 fm_info[i].enet_if = enet_if; 144 } else { 145 fm_info[i].enabled = 0; 146 } 147 } 148 149 return ; 150 } 151 152 void fm_disable_port(enum fm_port port) 153 { 154 int i = fm_port_to_index(port); 155 156 if (i == -1) 157 return; 158 159 fm_info[i].enabled = 0; 160 #ifndef CONFIG_SYS_FMAN_V3 161 fman_disable_port(port); 162 #endif 163 } 164 165 void fm_enable_port(enum fm_port port) 166 { 167 int i = fm_port_to_index(port); 168 169 if (i == -1) 170 return; 171 172 fm_info[i].enabled = 1; 173 fman_enable_port(port); 174 } 175 176 void fm_info_set_mdio(enum fm_port port, struct mii_dev *bus) 177 { 178 int i = fm_port_to_index(port); 179 180 if (i == -1) 181 return; 182 183 fm_info[i].bus = bus; 184 } 185 186 void fm_info_set_phy_address(enum fm_port port, int address) 187 { 188 int i = fm_port_to_index(port); 189 190 if (i == -1) 191 return; 192 193 fm_info[i].phy_addr = address; 194 } 195 196 /* 197 * Returns the PHY address for a given Fman port 198 * 199 * The port must be set via a prior call to fm_info_set_phy_address(). 200 * A negative error code is returned if the port is invalid. 201 */ 202 int fm_info_get_phy_address(enum fm_port port) 203 { 204 int i = fm_port_to_index(port); 205 206 if (i == -1) 207 return -1; 208 209 return fm_info[i].phy_addr; 210 } 211 212 /* 213 * Returns the type of the data interface between the given MAC and its PHY. 214 * This is typically determined by the RCW. 215 */ 216 phy_interface_t fm_info_get_enet_if(enum fm_port port) 217 { 218 int i = fm_port_to_index(port); 219 220 if (i == -1) 221 return PHY_INTERFACE_MODE_NONE; 222 223 if (fm_info[i].enabled) 224 return fm_info[i].enet_if; 225 226 return PHY_INTERFACE_MODE_NONE; 227 } 228 229 static void 230 __def_board_ft_fman_fixup_port(void *blob, char * prop, phys_addr_t pa, 231 enum fm_port port, int offset) 232 { 233 return ; 234 } 235 236 void board_ft_fman_fixup_port(void *blob, char * prop, phys_addr_t pa, 237 enum fm_port port, int offset) 238 __attribute__((weak, alias("__def_board_ft_fman_fixup_port"))); 239 240 int ft_fixup_port(void *blob, struct fm_eth_info *info, char *prop) 241 { 242 int off; 243 uint32_t ph; 244 phys_addr_t paddr = CONFIG_SYS_CCSRBAR_PHYS + info->compat_offset; 245 u64 dtsec1_addr = (u64)CONFIG_SYS_CCSRBAR_PHYS + 246 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET; 247 248 off = fdt_node_offset_by_compat_reg(blob, prop, paddr); 249 if (off == -FDT_ERR_NOTFOUND) 250 return -EINVAL; 251 252 if (info->enabled) { 253 fdt_fixup_phy_connection(blob, off, info->enet_if); 254 board_ft_fman_fixup_port(blob, prop, paddr, info->port, off); 255 return 0; 256 } 257 258 #ifdef CONFIG_SYS_FMAN_V3 259 #ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION 260 /* 261 * On T2/T4 SoCs, physically FM1_DTSEC9 and FM1_10GEC1 use the same 262 * dual-role MAC, when FM1_10GEC1 is enabled and FM1_DTSEC9 263 * is disabled, ensure that the dual-role MAC is not disabled, 264 * ditto for other dual-role MACs. 265 */ 266 if (((info->port == FM1_DTSEC9) && (PORT_IS_ENABLED(FM1_10GEC1))) || 267 ((info->port == FM1_DTSEC10) && (PORT_IS_ENABLED(FM1_10GEC2))) || 268 ((info->port == FM1_DTSEC1) && (PORT_IS_ENABLED(FM1_10GEC3))) || 269 ((info->port == FM1_DTSEC2) && (PORT_IS_ENABLED(FM1_10GEC4))) || 270 ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC9))) || 271 ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC10))) || 272 ((info->port == FM1_10GEC3) && (PORT_IS_ENABLED(FM1_DTSEC1))) || 273 ((info->port == FM1_10GEC4) && (PORT_IS_ENABLED(FM1_DTSEC2))) 274 #if (CONFIG_SYS_NUM_FMAN == 2) 275 || 276 ((info->port == FM2_DTSEC9) && (PORT_IS_ENABLED(FM2_10GEC1))) || 277 ((info->port == FM2_DTSEC10) && (PORT_IS_ENABLED(FM2_10GEC2))) || 278 ((info->port == FM2_10GEC1) && (PORT_IS_ENABLED(FM2_DTSEC9))) || 279 ((info->port == FM2_10GEC2) && (PORT_IS_ENABLED(FM2_DTSEC10))) 280 #endif 281 #else 282 /* FM1_DTSECx and FM1_10GECx use the same dual-role MAC */ 283 if (((info->port == FM1_DTSEC1) && (PORT_IS_ENABLED(FM1_10GEC1))) || 284 ((info->port == FM1_DTSEC2) && (PORT_IS_ENABLED(FM1_10GEC2))) || 285 ((info->port == FM1_DTSEC3) && (PORT_IS_ENABLED(FM1_10GEC3))) || 286 ((info->port == FM1_DTSEC4) && (PORT_IS_ENABLED(FM1_10GEC4))) || 287 ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC1))) || 288 ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC2))) || 289 ((info->port == FM1_10GEC3) && (PORT_IS_ENABLED(FM1_DTSEC3))) || 290 ((info->port == FM1_10GEC4) && (PORT_IS_ENABLED(FM1_DTSEC4))) 291 #endif 292 ) 293 return 0; 294 #endif 295 /* board code might have caused offset to change */ 296 off = fdt_node_offset_by_compat_reg(blob, prop, paddr); 297 298 /* Don't disable FM1-DTSEC1 MAC as its used for MDIO */ 299 if (paddr != dtsec1_addr) 300 fdt_status_disabled(blob, off); /* disable the MAC node */ 301 302 /* disable the fsl,dpa-ethernet node that points to the MAC */ 303 ph = fdt_get_phandle(blob, off); 304 do_fixup_by_prop(blob, "fsl,fman-mac", &ph, sizeof(ph), 305 "status", "disabled", strlen("disabled") + 1, 1); 306 307 return 0; 308 } 309 310 void fdt_fixup_fman_ethernet(void *blob) 311 { 312 int i; 313 314 #ifdef CONFIG_SYS_FMAN_V3 315 for (i = 0; i < ARRAY_SIZE(fm_info); i++) 316 ft_fixup_port(blob, &fm_info[i], "fsl,fman-memac"); 317 #else 318 for (i = 0; i < ARRAY_SIZE(fm_info); i++) { 319 /* Try the new compatible first. 320 * If the node is missing, try the old. 321 */ 322 if (fm_info[i].type == FM_ETH_1G_E) { 323 if (ft_fixup_port(blob, &fm_info[i], "fsl,fman-dtsec")) 324 ft_fixup_port(blob, &fm_info[i], 325 "fsl,fman-1g-mac"); 326 } else { 327 if (ft_fixup_port(blob, &fm_info[i], "fsl,fman-tgec")) 328 ft_fixup_port(blob, &fm_info[i], 329 "fsl,fman-10g-mac"); 330 } 331 } 332 #endif 333 } 334 335 /*QSGMII Riser Card can work in SGMII mode, but the PHY address is different. 336 *This function scans which Riser Card being used(QSGMII or SGMII Riser Card), 337 *then set the correct PHY address 338 */ 339 void set_sgmii_phy(struct mii_dev *bus, enum fm_port base_port, 340 unsigned int port_num, int phy_base_addr) 341 { 342 unsigned int regnum = 0; 343 int qsgmii; 344 int i; 345 int phy_real_addr; 346 347 qsgmii = is_qsgmii_riser_card(bus, phy_base_addr, port_num, regnum); 348 349 if (!qsgmii) 350 return; 351 352 for (i = base_port; i < base_port + port_num; i++) { 353 if (fm_info_get_enet_if(i) == PHY_INTERFACE_MODE_SGMII) { 354 phy_real_addr = phy_base_addr + i - base_port; 355 fm_info_set_phy_address(i, phy_real_addr); 356 } 357 } 358 } 359 360 /*to check whether qsgmii riser card is used*/ 361 int is_qsgmii_riser_card(struct mii_dev *bus, int phy_base_addr, 362 unsigned int port_num, unsigned regnum) 363 { 364 int i; 365 int val; 366 367 if (!bus) 368 return 0; 369 370 for (i = phy_base_addr; i < phy_base_addr + port_num; i++) { 371 val = bus->read(bus, i, MDIO_DEVAD_NONE, regnum); 372 if (val != MIIM_TIMEOUT) 373 return 1; 374 } 375 376 return 0; 377 } 378