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