blob: 147d0437c5b5d20ce63cf9a372fdd6f1c3fb7463 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Galac916d7c2011-04-13 08:37:44 -05002/*
Shaohui Xiee8297342015-10-26 19:47:54 +08003 * Copyright 2011-2015 Freescale Semiconductor, Inc.
Kumar Galac916d7c2011-04-13 08:37:44 -05004 */
Igal Liberman97a8d012015-08-18 14:47:05 +03005#include <errno.h>
Kumar Galac916d7c2011-04-13 08:37:44 -05006#include <common.h>
7#include <asm/io.h>
Simon Glass73223f02016-02-22 22:55:43 -07008#include <fdt_support.h>
Claudiu Manoil93f26f12014-09-05 13:52:36 +08009#include <fsl_mdio.h>
Shaohui Xiee8297342015-10-26 19:47:54 +080010#ifdef CONFIG_FSL_LAYERSCAPE
11#include <asm/arch/fsl_serdes.h>
12#else
13#include <asm/fsl_serdes.h>
14#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050015
16#include "fm.h"
17
18struct 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
York Sun9e758752012-10-08 07:44:19 +000034#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
Kumar Galac916d7c2011-04-13 08:37:44 -050043#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
Timur Tabi99abf7d2012-08-14 06:47:21 +000055#if (CONFIG_SYS_NUM_FM2_DTSEC >= 5)
56 FM_DTSEC_INFO_INITIALIZER(2, 5),
57#endif
York Sun9e758752012-10-08 07:44:19 +000058#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
Kumar Galac916d7c2011-04-13 08:37:44 -050067#if (CONFIG_SYS_NUM_FM1_10GEC >= 1)
68 FM_TGEC_INFO_INITIALIZER(1, 1),
69#endif
Shaohui Xie944b6cc2013-03-25 07:33:17 +000070#if (CONFIG_SYS_NUM_FM1_10GEC >= 2)
71 FM_TGEC_INFO_INITIALIZER(1, 2),
72#endif
Shengzhou Liu82a55c12013-11-22 17:39:09 +080073#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
Kumar Galac916d7c2011-04-13 08:37:44 -050079#if (CONFIG_SYS_NUM_FM2_10GEC >= 1)
80 FM_TGEC_INFO_INITIALIZER(2, 1),
81#endif
Shaohui Xie944b6cc2013-03-25 07:33:17 +000082#if (CONFIG_SYS_NUM_FM2_10GEC >= 2)
83 FM_TGEC_INFO_INITIALIZER(2, 2),
84#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050085};
86
87int 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 */
116static 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 */
133void 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
Kumar Gala69a85242011-09-14 12:01:35 -0500152void fm_disable_port(enum fm_port port)
153{
154 int i = fm_port_to_index(port);
155
Rotariu Marian-Cristian1155d8d2014-05-19 10:59:52 +0300156 if (i == -1)
157 return;
158
Kumar Gala69a85242011-09-14 12:01:35 -0500159 fm_info[i].enabled = 0;
Shaohui Xiee8297342015-10-26 19:47:54 +0800160#ifndef CONFIG_SYS_FMAN_V3
Kumar Gala69a85242011-09-14 12:01:35 -0500161 fman_disable_port(port);
Shaohui Xiee8297342015-10-26 19:47:54 +0800162#endif
Kumar Gala69a85242011-09-14 12:01:35 -0500163}
164
Valentin Longchampf51d3b72013-10-18 11:47:21 +0200165void fm_enable_port(enum fm_port port)
166{
167 int i = fm_port_to_index(port);
168
Rotariu Marian-Cristian1155d8d2014-05-19 10:59:52 +0300169 if (i == -1)
170 return;
171
Valentin Longchampf51d3b72013-10-18 11:47:21 +0200172 fm_info[i].enabled = 1;
173 fman_enable_port(port);
174}
175
Kumar Galac916d7c2011-04-13 08:37:44 -0500176void 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
186void 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/*
Timur Tabiae2291f2012-08-14 06:47:22 +0000197 * 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 */
202int 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/*
Kumar Galac916d7c2011-04-13 08:37:44 -0500213 * Returns the type of the data interface between the given MAC and its PHY.
214 * This is typically determined by the RCW.
215 */
216phy_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
229static 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
236void 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
Igal Liberman97a8d012015-08-18 14:47:05 +0300240int ft_fixup_port(void *blob, struct fm_eth_info *info, char *prop)
Kumar Galac916d7c2011-04-13 08:37:44 -0500241{
Timur Tabi4376b4c2012-08-14 06:47:24 +0000242 int off;
243 uint32_t ph;
Kumar Galac916d7c2011-04-13 08:37:44 -0500244 phys_addr_t paddr = CONFIG_SYS_CCSRBAR_PHYS + info->compat_offset;
Shaohui Xieea1332c2015-12-04 10:22:03 +0800245#ifndef CONFIG_SYS_FMAN_V3
Kumar Galae81c0ab2011-10-13 14:55:59 -0500246 u64 dtsec1_addr = (u64)CONFIG_SYS_CCSRBAR_PHYS +
247 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET;
Shaohui Xieea1332c2015-12-04 10:22:03 +0800248#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500249
250 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
Igal Liberman97a8d012015-08-18 14:47:05 +0300251 if (off == -FDT_ERR_NOTFOUND)
252 return -EINVAL;
Kumar Galac916d7c2011-04-13 08:37:44 -0500253
254 if (info->enabled) {
255 fdt_fixup_phy_connection(blob, off, info->enet_if);
256 board_ft_fman_fixup_port(blob, prop, paddr, info->port, off);
Igal Liberman97a8d012015-08-18 14:47:05 +0300257 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500258 }
259
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000260#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liu24d827f2014-12-03 15:27:03 +0800261#ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000262 /*
Shengzhou Liu24d827f2014-12-03 15:27:03 +0800263 * On T2/T4 SoCs, physically FM1_DTSEC9 and FM1_10GEC1 use the same
264 * dual-role MAC, when FM1_10GEC1 is enabled and FM1_DTSEC9
265 * is disabled, ensure that the dual-role MAC is not disabled,
266 * ditto for other dual-role MACs.
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000267 */
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800268 if (((info->port == FM1_DTSEC9) && (PORT_IS_ENABLED(FM1_10GEC1))) ||
269 ((info->port == FM1_DTSEC10) && (PORT_IS_ENABLED(FM1_10GEC2))) ||
270 ((info->port == FM1_DTSEC1) && (PORT_IS_ENABLED(FM1_10GEC3))) ||
271 ((info->port == FM1_DTSEC2) && (PORT_IS_ENABLED(FM1_10GEC4))) ||
272 ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC9))) ||
273 ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC10))) ||
274 ((info->port == FM1_10GEC3) && (PORT_IS_ENABLED(FM1_DTSEC1))) ||
275 ((info->port == FM1_10GEC4) && (PORT_IS_ENABLED(FM1_DTSEC2)))
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000276#if (CONFIG_SYS_NUM_FMAN == 2)
277 ||
278 ((info->port == FM2_DTSEC9) && (PORT_IS_ENABLED(FM2_10GEC1))) ||
279 ((info->port == FM2_DTSEC10) && (PORT_IS_ENABLED(FM2_10GEC2))) ||
280 ((info->port == FM2_10GEC1) && (PORT_IS_ENABLED(FM2_DTSEC9))) ||
281 ((info->port == FM2_10GEC2) && (PORT_IS_ENABLED(FM2_DTSEC10)))
282#endif
Shengzhou Liu24d827f2014-12-03 15:27:03 +0800283#else
284 /* FM1_DTSECx and FM1_10GECx use the same dual-role MAC */
285 if (((info->port == FM1_DTSEC1) && (PORT_IS_ENABLED(FM1_10GEC1))) ||
286 ((info->port == FM1_DTSEC2) && (PORT_IS_ENABLED(FM1_10GEC2))) ||
287 ((info->port == FM1_DTSEC3) && (PORT_IS_ENABLED(FM1_10GEC3))) ||
288 ((info->port == FM1_DTSEC4) && (PORT_IS_ENABLED(FM1_10GEC4))) ||
289 ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC1))) ||
290 ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC2))) ||
291 ((info->port == FM1_10GEC3) && (PORT_IS_ENABLED(FM1_DTSEC3))) ||
292 ((info->port == FM1_10GEC4) && (PORT_IS_ENABLED(FM1_DTSEC4)))
293#endif
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000294 )
Igal Liberman97a8d012015-08-18 14:47:05 +0300295 return 0;
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000296#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500297 /* board code might have caused offset to change */
298 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
299
Shaohui Xieea1332c2015-12-04 10:22:03 +0800300#ifndef CONFIG_SYS_FMAN_V3
Kumar Galae81c0ab2011-10-13 14:55:59 -0500301 /* Don't disable FM1-DTSEC1 MAC as its used for MDIO */
Timur Tabi4376b4c2012-08-14 06:47:24 +0000302 if (paddr != dtsec1_addr)
Shaohui Xieea1332c2015-12-04 10:22:03 +0800303#endif
Timur Tabi4376b4c2012-08-14 06:47:24 +0000304 fdt_status_disabled(blob, off); /* disable the MAC node */
Kumar Galac916d7c2011-04-13 08:37:44 -0500305
Timur Tabi4376b4c2012-08-14 06:47:24 +0000306 /* disable the fsl,dpa-ethernet node that points to the MAC */
Kumar Galac916d7c2011-04-13 08:37:44 -0500307 ph = fdt_get_phandle(blob, off);
308 do_fixup_by_prop(blob, "fsl,fman-mac", &ph, sizeof(ph),
309 "status", "disabled", strlen("disabled") + 1, 1);
Igal Liberman97a8d012015-08-18 14:47:05 +0300310
311 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500312}
313
314void fdt_fixup_fman_ethernet(void *blob)
315{
316 int i;
317
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000318#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liu43994342014-01-13 15:32:24 +0800319 for (i = 0; i < ARRAY_SIZE(fm_info); i++)
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000320 ft_fixup_port(blob, &fm_info[i], "fsl,fman-memac");
321#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500322 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
Igal Liberman97a8d012015-08-18 14:47:05 +0300323 /* Try the new compatible first.
324 * If the node is missing, try the old.
325 */
326 if (fm_info[i].type == FM_ETH_1G_E) {
327 if (ft_fixup_port(blob, &fm_info[i], "fsl,fman-dtsec"))
328 ft_fixup_port(blob, &fm_info[i],
329 "fsl,fman-1g-mac");
330 } else {
331 if (ft_fixup_port(blob, &fm_info[i], "fsl,fman-tgec"))
332 ft_fixup_port(blob, &fm_info[i],
333 "fsl,fman-10g-mac");
334 }
Kumar Galac916d7c2011-04-13 08:37:44 -0500335 }
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000336#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500337}
Zhao Qiangffee1dd2013-09-04 10:11:27 +0800338
339/*QSGMII Riser Card can work in SGMII mode, but the PHY address is different.
340 *This function scans which Riser Card being used(QSGMII or SGMII Riser Card),
341 *then set the correct PHY address
342 */
343void set_sgmii_phy(struct mii_dev *bus, enum fm_port base_port,
344 unsigned int port_num, int phy_base_addr)
345{
346 unsigned int regnum = 0;
347 int qsgmii;
348 int i;
349 int phy_real_addr;
350
351 qsgmii = is_qsgmii_riser_card(bus, phy_base_addr, port_num, regnum);
352
353 if (!qsgmii)
354 return;
355
356 for (i = base_port; i < base_port + port_num; i++) {
357 if (fm_info_get_enet_if(i) == PHY_INTERFACE_MODE_SGMII) {
358 phy_real_addr = phy_base_addr + i - base_port;
359 fm_info_set_phy_address(i, phy_real_addr);
360 }
361 }
362}
363
364/*to check whether qsgmii riser card is used*/
365int is_qsgmii_riser_card(struct mii_dev *bus, int phy_base_addr,
366 unsigned int port_num, unsigned regnum)
367{
368 int i;
369 int val;
370
371 if (!bus)
372 return 0;
373
374 for (i = phy_base_addr; i < phy_base_addr + port_num; i++) {
375 val = bus->read(bus, i, MDIO_DEVAD_NONE, regnum);
376 if (val != MIIM_TIMEOUT)
377 return 1;
378 }
379
380 return 0;
381}