blob: 9a8a007861435872ca883e087c03284574425b7f [file] [log] [blame]
Kumar Galac916d7c2011-04-13 08:37:44 -05001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Kumar Galac916d7c2011-04-13 08:37:44 -05005 */
6#include <common.h>
7#include <asm/io.h>
8#include <asm/fsl_serdes.h>
Claudiu Manoil93f26f12014-09-05 13:52:36 +08009#include <fsl_mdio.h>
Kumar Galac916d7c2011-04-13 08:37:44 -050010
11#include "fm.h"
12
13struct fm_eth_info fm_info[] = {
14#if (CONFIG_SYS_NUM_FM1_DTSEC >= 1)
15 FM_DTSEC_INFO_INITIALIZER(1, 1),
16#endif
17#if (CONFIG_SYS_NUM_FM1_DTSEC >= 2)
18 FM_DTSEC_INFO_INITIALIZER(1, 2),
19#endif
20#if (CONFIG_SYS_NUM_FM1_DTSEC >= 3)
21 FM_DTSEC_INFO_INITIALIZER(1, 3),
22#endif
23#if (CONFIG_SYS_NUM_FM1_DTSEC >= 4)
24 FM_DTSEC_INFO_INITIALIZER(1, 4),
25#endif
26#if (CONFIG_SYS_NUM_FM1_DTSEC >= 5)
27 FM_DTSEC_INFO_INITIALIZER(1, 5),
28#endif
York Sun9e758752012-10-08 07:44:19 +000029#if (CONFIG_SYS_NUM_FM1_DTSEC >= 6)
30 FM_DTSEC_INFO_INITIALIZER(1, 6),
31#endif
32#if (CONFIG_SYS_NUM_FM1_DTSEC >= 7)
33 FM_DTSEC_INFO_INITIALIZER(1, 9),
34#endif
35#if (CONFIG_SYS_NUM_FM1_DTSEC >= 8)
36 FM_DTSEC_INFO_INITIALIZER(1, 10),
37#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050038#if (CONFIG_SYS_NUM_FM2_DTSEC >= 1)
39 FM_DTSEC_INFO_INITIALIZER(2, 1),
40#endif
41#if (CONFIG_SYS_NUM_FM2_DTSEC >= 2)
42 FM_DTSEC_INFO_INITIALIZER(2, 2),
43#endif
44#if (CONFIG_SYS_NUM_FM2_DTSEC >= 3)
45 FM_DTSEC_INFO_INITIALIZER(2, 3),
46#endif
47#if (CONFIG_SYS_NUM_FM2_DTSEC >= 4)
48 FM_DTSEC_INFO_INITIALIZER(2, 4),
49#endif
Timur Tabi99abf7d2012-08-14 06:47:21 +000050#if (CONFIG_SYS_NUM_FM2_DTSEC >= 5)
51 FM_DTSEC_INFO_INITIALIZER(2, 5),
52#endif
York Sun9e758752012-10-08 07:44:19 +000053#if (CONFIG_SYS_NUM_FM2_DTSEC >= 6)
54 FM_DTSEC_INFO_INITIALIZER(2, 6),
55#endif
56#if (CONFIG_SYS_NUM_FM2_DTSEC >= 7)
57 FM_DTSEC_INFO_INITIALIZER(2, 9),
58#endif
59#if (CONFIG_SYS_NUM_FM2_DTSEC >= 8)
60 FM_DTSEC_INFO_INITIALIZER(2, 10),
61#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050062#if (CONFIG_SYS_NUM_FM1_10GEC >= 1)
63 FM_TGEC_INFO_INITIALIZER(1, 1),
64#endif
Shaohui Xie944b6cc2013-03-25 07:33:17 +000065#if (CONFIG_SYS_NUM_FM1_10GEC >= 2)
66 FM_TGEC_INFO_INITIALIZER(1, 2),
67#endif
Shengzhou Liu82a55c12013-11-22 17:39:09 +080068#if (CONFIG_SYS_NUM_FM1_10GEC >= 3)
69 FM_TGEC_INFO_INITIALIZER2(1, 3),
70#endif
71#if (CONFIG_SYS_NUM_FM1_10GEC >= 4)
72 FM_TGEC_INFO_INITIALIZER2(1, 4),
73#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050074#if (CONFIG_SYS_NUM_FM2_10GEC >= 1)
75 FM_TGEC_INFO_INITIALIZER(2, 1),
76#endif
Shaohui Xie944b6cc2013-03-25 07:33:17 +000077#if (CONFIG_SYS_NUM_FM2_10GEC >= 2)
78 FM_TGEC_INFO_INITIALIZER(2, 2),
79#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050080};
81
82int fm_standard_init(bd_t *bis)
83{
84 int i;
85 struct ccsr_fman *reg;
86
87 reg = (void *)CONFIG_SYS_FSL_FM1_ADDR;
88 if (fm_init_common(0, reg))
89 return 0;
90
91 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
92 if ((fm_info[i].enabled) && (fm_info[i].index == 1))
93 fm_eth_initialize(reg, &fm_info[i]);
94 }
95
96#if (CONFIG_SYS_NUM_FMAN == 2)
97 reg = (void *)CONFIG_SYS_FSL_FM2_ADDR;
98 if (fm_init_common(1, reg))
99 return 0;
100
101 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
102 if ((fm_info[i].enabled) && (fm_info[i].index == 2))
103 fm_eth_initialize(reg, &fm_info[i]);
104 }
105#endif
106
107 return 1;
108}
109
110/* simple linear search to map from port to array index */
111static int fm_port_to_index(enum fm_port port)
112{
113 int i;
114
115 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
116 if (fm_info[i].port == port)
117 return i;
118 }
119
120 return -1;
121}
122
123/*
124 * Determine if an interface is actually active based on HW config
125 * we expect fman_port_enet_if() to report PHY_INTERFACE_MODE_NONE if
126 * the interface is not active based on HW cfg of the SoC
127 */
128void fman_enet_init(void)
129{
130 int i;
131
132 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
133 phy_interface_t enet_if;
134
135 enet_if = fman_port_enet_if(fm_info[i].port);
136 if (enet_if != PHY_INTERFACE_MODE_NONE) {
137 fm_info[i].enabled = 1;
138 fm_info[i].enet_if = enet_if;
139 } else {
140 fm_info[i].enabled = 0;
141 }
142 }
143
144 return ;
145}
146
Kumar Gala69a85242011-09-14 12:01:35 -0500147void fm_disable_port(enum fm_port port)
148{
149 int i = fm_port_to_index(port);
150
Rotariu Marian-Cristian1155d8d2014-05-19 10:59:52 +0300151 if (i == -1)
152 return;
153
Kumar Gala69a85242011-09-14 12:01:35 -0500154 fm_info[i].enabled = 0;
155 fman_disable_port(port);
156}
157
Valentin Longchampf51d3b72013-10-18 11:47:21 +0200158void fm_enable_port(enum fm_port port)
159{
160 int i = fm_port_to_index(port);
161
Rotariu Marian-Cristian1155d8d2014-05-19 10:59:52 +0300162 if (i == -1)
163 return;
164
Valentin Longchampf51d3b72013-10-18 11:47:21 +0200165 fm_info[i].enabled = 1;
166 fman_enable_port(port);
167}
168
Kumar Galac916d7c2011-04-13 08:37:44 -0500169void fm_info_set_mdio(enum fm_port port, struct mii_dev *bus)
170{
171 int i = fm_port_to_index(port);
172
173 if (i == -1)
174 return;
175
176 fm_info[i].bus = bus;
177}
178
179void fm_info_set_phy_address(enum fm_port port, int address)
180{
181 int i = fm_port_to_index(port);
182
183 if (i == -1)
184 return;
185
186 fm_info[i].phy_addr = address;
187}
188
189/*
Timur Tabiae2291f2012-08-14 06:47:22 +0000190 * Returns the PHY address for a given Fman port
191 *
192 * The port must be set via a prior call to fm_info_set_phy_address().
193 * A negative error code is returned if the port is invalid.
194 */
195int fm_info_get_phy_address(enum fm_port port)
196{
197 int i = fm_port_to_index(port);
198
199 if (i == -1)
200 return -1;
201
202 return fm_info[i].phy_addr;
203}
204
205/*
Kumar Galac916d7c2011-04-13 08:37:44 -0500206 * Returns the type of the data interface between the given MAC and its PHY.
207 * This is typically determined by the RCW.
208 */
209phy_interface_t fm_info_get_enet_if(enum fm_port port)
210{
211 int i = fm_port_to_index(port);
212
213 if (i == -1)
214 return PHY_INTERFACE_MODE_NONE;
215
216 if (fm_info[i].enabled)
217 return fm_info[i].enet_if;
218
219 return PHY_INTERFACE_MODE_NONE;
220}
221
222static void
223__def_board_ft_fman_fixup_port(void *blob, char * prop, phys_addr_t pa,
224 enum fm_port port, int offset)
225{
226 return ;
227}
228
229void board_ft_fman_fixup_port(void *blob, char * prop, phys_addr_t pa,
230 enum fm_port port, int offset)
231 __attribute__((weak, alias("__def_board_ft_fman_fixup_port")));
232
233static void ft_fixup_port(void *blob, struct fm_eth_info *info, char *prop)
234{
Timur Tabi4376b4c2012-08-14 06:47:24 +0000235 int off;
236 uint32_t ph;
Kumar Galac916d7c2011-04-13 08:37:44 -0500237 phys_addr_t paddr = CONFIG_SYS_CCSRBAR_PHYS + info->compat_offset;
Kumar Galae81c0ab2011-10-13 14:55:59 -0500238 u64 dtsec1_addr = (u64)CONFIG_SYS_CCSRBAR_PHYS +
239 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET;
Kumar Galac916d7c2011-04-13 08:37:44 -0500240
241 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
242
243 if (info->enabled) {
244 fdt_fixup_phy_connection(blob, off, info->enet_if);
245 board_ft_fman_fixup_port(blob, prop, paddr, info->port, off);
246 return ;
247 }
248
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000249#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liu24d827f2014-12-03 15:27:03 +0800250#ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000251 /*
Shengzhou Liu24d827f2014-12-03 15:27:03 +0800252 * On T2/T4 SoCs, physically FM1_DTSEC9 and FM1_10GEC1 use the same
253 * dual-role MAC, when FM1_10GEC1 is enabled and FM1_DTSEC9
254 * is disabled, ensure that the dual-role MAC is not disabled,
255 * ditto for other dual-role MACs.
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000256 */
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800257 if (((info->port == FM1_DTSEC9) && (PORT_IS_ENABLED(FM1_10GEC1))) ||
258 ((info->port == FM1_DTSEC10) && (PORT_IS_ENABLED(FM1_10GEC2))) ||
259 ((info->port == FM1_DTSEC1) && (PORT_IS_ENABLED(FM1_10GEC3))) ||
260 ((info->port == FM1_DTSEC2) && (PORT_IS_ENABLED(FM1_10GEC4))) ||
261 ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC9))) ||
262 ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC10))) ||
263 ((info->port == FM1_10GEC3) && (PORT_IS_ENABLED(FM1_DTSEC1))) ||
264 ((info->port == FM1_10GEC4) && (PORT_IS_ENABLED(FM1_DTSEC2)))
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000265#if (CONFIG_SYS_NUM_FMAN == 2)
266 ||
267 ((info->port == FM2_DTSEC9) && (PORT_IS_ENABLED(FM2_10GEC1))) ||
268 ((info->port == FM2_DTSEC10) && (PORT_IS_ENABLED(FM2_10GEC2))) ||
269 ((info->port == FM2_10GEC1) && (PORT_IS_ENABLED(FM2_DTSEC9))) ||
270 ((info->port == FM2_10GEC2) && (PORT_IS_ENABLED(FM2_DTSEC10)))
271#endif
Shengzhou Liu24d827f2014-12-03 15:27:03 +0800272#else
273 /* FM1_DTSECx and FM1_10GECx use the same dual-role MAC */
274 if (((info->port == FM1_DTSEC1) && (PORT_IS_ENABLED(FM1_10GEC1))) ||
275 ((info->port == FM1_DTSEC2) && (PORT_IS_ENABLED(FM1_10GEC2))) ||
276 ((info->port == FM1_DTSEC3) && (PORT_IS_ENABLED(FM1_10GEC3))) ||
277 ((info->port == FM1_DTSEC4) && (PORT_IS_ENABLED(FM1_10GEC4))) ||
278 ((info->port == FM1_10GEC1) && (PORT_IS_ENABLED(FM1_DTSEC1))) ||
279 ((info->port == FM1_10GEC2) && (PORT_IS_ENABLED(FM1_DTSEC2))) ||
280 ((info->port == FM1_10GEC3) && (PORT_IS_ENABLED(FM1_DTSEC3))) ||
281 ((info->port == FM1_10GEC4) && (PORT_IS_ENABLED(FM1_DTSEC4)))
282#endif
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000283 )
284 return;
285#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500286 /* board code might have caused offset to change */
287 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
288
Kumar Galae81c0ab2011-10-13 14:55:59 -0500289 /* Don't disable FM1-DTSEC1 MAC as its used for MDIO */
Timur Tabi4376b4c2012-08-14 06:47:24 +0000290 if (paddr != dtsec1_addr)
291 fdt_status_disabled(blob, off); /* disable the MAC node */
Kumar Galac916d7c2011-04-13 08:37:44 -0500292
Timur Tabi4376b4c2012-08-14 06:47:24 +0000293 /* disable the fsl,dpa-ethernet node that points to the MAC */
Kumar Galac916d7c2011-04-13 08:37:44 -0500294 ph = fdt_get_phandle(blob, off);
295 do_fixup_by_prop(blob, "fsl,fman-mac", &ph, sizeof(ph),
296 "status", "disabled", strlen("disabled") + 1, 1);
297}
298
299void fdt_fixup_fman_ethernet(void *blob)
300{
301 int i;
302
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000303#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liu43994342014-01-13 15:32:24 +0800304 for (i = 0; i < ARRAY_SIZE(fm_info); i++)
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000305 ft_fixup_port(blob, &fm_info[i], "fsl,fman-memac");
306#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500307 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
308 if (fm_info[i].type == FM_ETH_1G_E)
309 ft_fixup_port(blob, &fm_info[i], "fsl,fman-1g-mac");
310 else
311 ft_fixup_port(blob, &fm_info[i], "fsl,fman-10g-mac");
312 }
Shengzhou Liuae8a5d12013-03-25 07:39:29 +0000313#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500314}
Zhao Qiangffee1dd2013-09-04 10:11:27 +0800315
316/*QSGMII Riser Card can work in SGMII mode, but the PHY address is different.
317 *This function scans which Riser Card being used(QSGMII or SGMII Riser Card),
318 *then set the correct PHY address
319 */
320void set_sgmii_phy(struct mii_dev *bus, enum fm_port base_port,
321 unsigned int port_num, int phy_base_addr)
322{
323 unsigned int regnum = 0;
324 int qsgmii;
325 int i;
326 int phy_real_addr;
327
328 qsgmii = is_qsgmii_riser_card(bus, phy_base_addr, port_num, regnum);
329
330 if (!qsgmii)
331 return;
332
333 for (i = base_port; i < base_port + port_num; i++) {
334 if (fm_info_get_enet_if(i) == PHY_INTERFACE_MODE_SGMII) {
335 phy_real_addr = phy_base_addr + i - base_port;
336 fm_info_set_phy_address(i, phy_real_addr);
337 }
338 }
339}
340
341/*to check whether qsgmii riser card is used*/
342int is_qsgmii_riser_card(struct mii_dev *bus, int phy_base_addr,
343 unsigned int port_num, unsigned regnum)
344{
345 int i;
346 int val;
347
348 if (!bus)
349 return 0;
350
351 for (i = phy_base_addr; i < phy_base_addr + port_num; i++) {
352 val = bus->read(bus, i, MDIO_DEVAD_NONE, regnum);
353 if (val != MIIM_TIMEOUT)
354 return 1;
355 }
356
357 return 0;
358}