blob: 3a1de59fd8f5fc21ff30d921bd93c03fa944ae3f [file] [log] [blame]
Kumar Gala2683c532011-04-13 08:37:44 -05001/*
Shaohui Xie04643262015-10-26 19:47:54 +08002 * Copyright 2011-2015 Freescale Semiconductor, Inc.
Kumar Gala2683c532011-04-13 08:37:44 -05003 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Kumar Gala2683c532011-04-13 08:37:44 -05005 */
Igal Libermane14ec992015-08-18 14:47:05 +03006#include <errno.h>
Kumar Gala2683c532011-04-13 08:37:44 -05007#include <common.h>
8#include <asm/io.h>
Claudiu Manoilde9ad7a2014-09-05 13:52:36 +08009#include <fsl_mdio.h>
Shaohui Xie04643262015-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 Gala2683c532011-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 Sun9941a222012-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 Gala2683c532011-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 Tabi7920fb12012-08-14 06:47:21 +000055#if (CONFIG_SYS_NUM_FM2_DTSEC >= 5)
56 FM_DTSEC_INFO_INITIALIZER(2, 5),
57#endif
York Sun9941a222012-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 Gala2683c532011-04-13 08:37:44 -050067#if (CONFIG_SYS_NUM_FM1_10GEC >= 1)
68 FM_TGEC_INFO_INITIALIZER(1, 1),
69#endif
Shaohui Xief25c70c2013-03-25 07:33:17 +000070#if (CONFIG_SYS_NUM_FM1_10GEC >= 2)
71 FM_TGEC_INFO_INITIALIZER(1, 2),
72#endif
Shengzhou Liu4227e492013-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 Gala2683c532011-04-13 08:37:44 -050079#if (CONFIG_SYS_NUM_FM2_10GEC >= 1)
80 FM_TGEC_INFO_INITIALIZER(2, 1),
81#endif
Shaohui Xief25c70c2013-03-25 07:33:17 +000082#if (CONFIG_SYS_NUM_FM2_10GEC >= 2)
83 FM_TGEC_INFO_INITIALIZER(2, 2),
84#endif
Kumar Gala2683c532011-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 Gala5536d922011-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-Cristian092af032014-05-19 10:59:52 +0300156 if (i == -1)
157 return;
158
Kumar Gala5536d922011-09-14 12:01:35 -0500159 fm_info[i].enabled = 0;
Shaohui Xie04643262015-10-26 19:47:54 +0800160#ifndef CONFIG_SYS_FMAN_V3
Kumar Gala5536d922011-09-14 12:01:35 -0500161 fman_disable_port(port);
Shaohui Xie04643262015-10-26 19:47:54 +0800162#endif
Kumar Gala5536d922011-09-14 12:01:35 -0500163}
164
Valentin Longchamp51b2ca32013-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-Cristian092af032014-05-19 10:59:52 +0300169 if (i == -1)
170 return;
171
Valentin Longchamp51b2ca32013-10-18 11:47:21 +0200172 fm_info[i].enabled = 1;
173 fman_enable_port(port);
174}
175
Kumar Gala2683c532011-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 Tabibad16ea2012-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 Gala2683c532011-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 Libermane14ec992015-08-18 14:47:05 +0300240int ft_fixup_port(void *blob, struct fm_eth_info *info, char *prop)
Kumar Gala2683c532011-04-13 08:37:44 -0500241{
Timur Tabi52effa62012-08-14 06:47:24 +0000242 int off;
243 uint32_t ph;
Kumar Gala2683c532011-04-13 08:37:44 -0500244 phys_addr_t paddr = CONFIG_SYS_CCSRBAR_PHYS + info->compat_offset;
Kumar Gala1ec665a2011-10-13 14:55:59 -0500245 u64 dtsec1_addr = (u64)CONFIG_SYS_CCSRBAR_PHYS +
246 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET;
Kumar Gala2683c532011-04-13 08:37:44 -0500247
248 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
Igal Libermane14ec992015-08-18 14:47:05 +0300249 if (off == -FDT_ERR_NOTFOUND)
250 return -EINVAL;
Kumar Gala2683c532011-04-13 08:37:44 -0500251
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);
Igal Libermane14ec992015-08-18 14:47:05 +0300255 return 0;
Kumar Gala2683c532011-04-13 08:37:44 -0500256 }
257
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000258#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liu92fb6ac2014-12-03 15:27:03 +0800259#ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000260 /*
Shengzhou Liu92fb6ac2014-12-03 15:27:03 +0800261 * 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.
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000265 */
Shengzhou Liu4227e492013-11-22 17:39:09 +0800266 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)))
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000274#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
Shengzhou Liu92fb6ac2014-12-03 15:27:03 +0800281#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
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000292 )
Igal Libermane14ec992015-08-18 14:47:05 +0300293 return 0;
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000294#endif
Kumar Gala2683c532011-04-13 08:37:44 -0500295 /* board code might have caused offset to change */
296 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
297
Kumar Gala1ec665a2011-10-13 14:55:59 -0500298 /* Don't disable FM1-DTSEC1 MAC as its used for MDIO */
Timur Tabi52effa62012-08-14 06:47:24 +0000299 if (paddr != dtsec1_addr)
300 fdt_status_disabled(blob, off); /* disable the MAC node */
Kumar Gala2683c532011-04-13 08:37:44 -0500301
Timur Tabi52effa62012-08-14 06:47:24 +0000302 /* disable the fsl,dpa-ethernet node that points to the MAC */
Kumar Gala2683c532011-04-13 08:37:44 -0500303 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);
Igal Libermane14ec992015-08-18 14:47:05 +0300306
307 return 0;
Kumar Gala2683c532011-04-13 08:37:44 -0500308}
309
310void fdt_fixup_fman_ethernet(void *blob)
311{
312 int i;
313
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000314#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liu84bbe682014-01-13 15:32:24 +0800315 for (i = 0; i < ARRAY_SIZE(fm_info); i++)
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000316 ft_fixup_port(blob, &fm_info[i], "fsl,fman-memac");
317#else
Kumar Gala2683c532011-04-13 08:37:44 -0500318 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
Igal Libermane14ec992015-08-18 14:47:05 +0300319 /* 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 }
Kumar Gala2683c532011-04-13 08:37:44 -0500331 }
Shengzhou Liu0348bf82013-03-25 07:39:29 +0000332#endif
Kumar Gala2683c532011-04-13 08:37:44 -0500333}
Zhao Qiang1ae99192013-09-04 10:11:27 +0800334
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 */
339void 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*/
361int 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}