blob: 5f1a0233525cf56b1efd7346b4cca0568f72f801 [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/*
Roy Zang111fd192012-10-08 07:44:21 +00003 * Copyright 2009-2012 Freescale Semiconductor, Inc.
Madalin Bucur6eb32a02020-04-23 16:25:19 +03004 * Copyright 2020 NXP
Kumar Galac916d7c2011-04-13 08:37:44 -05005 * Dave Liu <daveliu@freescale.com>
Kumar Galac916d7c2011-04-13 08:37:44 -05006 */
7#include <common.h>
8#include <asm/io.h>
Madalin Bucur6eb32a02020-04-23 16:25:19 +03009#ifdef CONFIG_DM_ETH
10#include <dm.h>
11#include <dm/ofnode.h>
12#include <linux/compat.h>
13#include <phy_interface.h>
14#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050015#include <malloc.h>
16#include <net.h>
17#include <hwconfig.h>
18#include <fm_eth.h>
19#include <fsl_mdio.h>
20#include <miiphy.h>
21#include <phy.h>
Shaohui Xie8225b2f2015-10-26 19:47:47 +080022#include <fsl_dtsec.h>
23#include <fsl_tgec.h>
Shaohui Xiecd348ef2015-03-20 19:28:19 -070024#include <fsl_memac.h>
Kumar Galac916d7c2011-04-13 08:37:44 -050025
26#include "fm.h"
27
Madalin Bucur6eb32a02020-04-23 16:25:19 +030028#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -050029static struct eth_device *devlist[NUM_FM_PORTS];
30static int num_controllers;
Madalin Bucur6eb32a02020-04-23 16:25:19 +030031#endif
Kumar Galac916d7c2011-04-13 08:37:44 -050032
33#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) && !defined(BITBANGMII)
34
35#define TBIANA_SETTINGS (TBIANA_ASYMMETRIC_PAUSE | TBIANA_SYMMETRIC_PAUSE | \
36 TBIANA_FULL_DUPLEX)
37
38#define TBIANA_SGMII_ACK 0x4001
39
40#define TBICR_SETTINGS (TBICR_ANEG_ENABLE | TBICR_RESTART_ANEG | \
41 TBICR_FULL_DUPLEX | TBICR_SPEED1_SET)
42
43/* Configure the TBI for SGMII operation */
Kim Phillips960d70c2012-10-29 13:34:34 +000044static void dtsec_configure_serdes(struct fm_eth *priv)
Kumar Galac916d7c2011-04-13 08:37:44 -050045{
Roy Zang111fd192012-10-08 07:44:21 +000046#ifdef CONFIG_SYS_FMAN_V3
47 u32 value;
48 struct mii_dev bus;
Shengzhou Liuc35f8692014-10-23 17:20:57 +080049 bool sgmii_2500 = (priv->enet_if ==
50 PHY_INTERFACE_MODE_SGMII_2500) ? true : false;
Madalin Bucur6eb32a02020-04-23 16:25:19 +030051 int i = 0, j;
52
53#ifndef CONFIG_DM_ETH
54 bus.priv = priv->mac->phyregs;
55#else
56 bus.priv = priv->pcs_mdio;
57#endif
58 bus.read = memac_mdio_read;
59 bus.write = memac_mdio_write;
60 bus.reset = memac_mdio_reset;
Roy Zang111fd192012-10-08 07:44:21 +000061
Shaohui Xiebc246112015-10-26 19:47:48 +080062qsgmii_loop:
Shengzhou Liuc35f8692014-10-23 17:20:57 +080063 /* SGMII IF mode + AN enable only for 1G SGMII, not for 2.5G */
shaohui xiebead0882016-11-15 14:36:47 +080064 if (sgmii_2500)
65 value = PHY_SGMII_CR_PHY_RESET |
66 PHY_SGMII_IF_SPEED_GIGABIT |
67 PHY_SGMII_IF_MODE_SGMII;
68 else
69 value = PHY_SGMII_IF_MODE_SGMII | PHY_SGMII_IF_MODE_AN;
Shengzhou Liuc35f8692014-10-23 17:20:57 +080070
Madalin Bucur6eb32a02020-04-23 16:25:19 +030071 for (j = 0; j <= 3; j++)
72 debug("dump PCS reg %#x: %#x\n", j,
73 memac_mdio_read(&bus, i, MDIO_DEVAD_NONE, j));
74
Shaohui Xiebc246112015-10-26 19:47:48 +080075 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x14, value);
Roy Zang111fd192012-10-08 07:44:21 +000076
77 /* Dev ability according to SGMII specification */
78 value = PHY_SGMII_DEV_ABILITY_SGMII;
Shaohui Xiebc246112015-10-26 19:47:48 +080079 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x4, value);
Roy Zang111fd192012-10-08 07:44:21 +000080
shaohui xiebead0882016-11-15 14:36:47 +080081 if (sgmii_2500) {
82 /* Adjust link timer for 2.5G SGMII,
83 * 1.6 ms in units of 3.2 ns:
84 * 1.6ms / 3.2ns = 5 * 10^5 = 0x7a120.
85 */
86 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x13, 0x0007);
87 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x12, 0xa120);
88 } else {
89 /* Adjust link timer for SGMII,
90 * 1.6 ms in units of 8 ns:
91 * 1.6ms / 8ns = 2 * 10^5 = 0x30d40.
92 */
93 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x13, 0x0003);
94 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x12, 0x0d40);
95 }
Roy Zang111fd192012-10-08 07:44:21 +000096
97 /* Restart AN */
shaohui xiebead0882016-11-15 14:36:47 +080098 value = PHY_SGMII_CR_DEF_VAL | PHY_SGMII_CR_RESET_AN;
Shaohui Xiebc246112015-10-26 19:47:48 +080099 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0, value);
100
101 if ((priv->enet_if == PHY_INTERFACE_MODE_QSGMII) && (i < 3)) {
102 i++;
103 goto qsgmii_loop;
104 }
Roy Zang111fd192012-10-08 07:44:21 +0000105#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500106 struct dtsec *regs = priv->mac->base;
107 struct tsec_mii_mng *phyregs = priv->mac->phyregs;
108
109 /*
110 * Access TBI PHY registers at given TSEC register offset as
111 * opposed to the register offset used for external PHY accesses
112 */
113 tsec_local_mdio_write(phyregs, in_be32(&regs->tbipa), 0, TBI_TBICON,
114 TBICON_CLK_SELECT);
115 tsec_local_mdio_write(phyregs, in_be32(&regs->tbipa), 0, TBI_ANA,
116 TBIANA_SGMII_ACK);
117 tsec_local_mdio_write(phyregs, in_be32(&regs->tbipa), 0,
118 TBI_CR, TBICR_SETTINGS);
Roy Zang111fd192012-10-08 07:44:21 +0000119#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500120}
121
Madalin Bucur8313cb02020-04-23 16:25:16 +0300122static void dtsec_init_phy(struct fm_eth *fm_eth)
Kumar Galac916d7c2011-04-13 08:37:44 -0500123{
Roy Zang111fd192012-10-08 07:44:21 +0000124#ifndef CONFIG_SYS_FMAN_V3
shaohui xie1f3bd3e2012-10-11 20:25:36 +0000125 struct dtsec *regs = (struct dtsec *)CONFIG_SYS_FSL_FM1_DTSEC1_ADDR;
126
Kumar Galac916d7c2011-04-13 08:37:44 -0500127 /* Assign a Physical address to the TBI */
128 out_be32(&regs->tbipa, CONFIG_SYS_TBIPA_VALUE);
Roy Zang111fd192012-10-08 07:44:21 +0000129#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500130
Shengzhou Liuc35f8692014-10-23 17:20:57 +0800131 if (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII ||
Shaohui Xiebc246112015-10-26 19:47:48 +0800132 fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII ||
Shengzhou Liuc35f8692014-10-23 17:20:57 +0800133 fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500)
Kumar Galac916d7c2011-04-13 08:37:44 -0500134 dtsec_configure_serdes(fm_eth);
135}
136
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300137#ifndef CONFIG_DM_ETH
Shaohui Xie29d8c812015-10-26 19:47:46 +0800138#ifdef CONFIG_PHYLIB
Madalin Bucur8313cb02020-04-23 16:25:16 +0300139static int tgec_is_fibre(struct fm_eth *fm)
Kumar Galac916d7c2011-04-13 08:37:44 -0500140{
Kumar Galac916d7c2011-04-13 08:37:44 -0500141 char phyopt[20];
142
143 sprintf(phyopt, "fsl_fm%d_xaui_phy", fm->fm_index + 1);
144
145 return hwconfig_arg_cmp(phyopt, "xfi");
146}
147#endif
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300148#endif /* CONFIG_DM_ETH */
Shaohui Xie29d8c812015-10-26 19:47:46 +0800149#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500150
151static u16 muram_readw(u16 *addr)
152{
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800153 ulong base = (ulong)addr & ~0x3UL;
154 u32 val32 = in_be32((void *)base);
Kumar Galac916d7c2011-04-13 08:37:44 -0500155 int byte_pos;
156 u16 ret;
157
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800158 byte_pos = (ulong)addr & 0x3UL;
Kumar Galac916d7c2011-04-13 08:37:44 -0500159 if (byte_pos)
160 ret = (u16)(val32 & 0x0000ffff);
161 else
162 ret = (u16)((val32 & 0xffff0000) >> 16);
163
164 return ret;
165}
166
167static void muram_writew(u16 *addr, u16 val)
168{
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800169 ulong base = (ulong)addr & ~0x3UL;
170 u32 org32 = in_be32((void *)base);
Kumar Galac916d7c2011-04-13 08:37:44 -0500171 u32 val32;
172 int byte_pos;
173
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800174 byte_pos = (ulong)addr & 0x3UL;
Kumar Galac916d7c2011-04-13 08:37:44 -0500175 if (byte_pos)
176 val32 = (org32 & 0xffff0000) | val;
177 else
178 val32 = (org32 & 0x0000ffff) | ((u32)val << 16);
179
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800180 out_be32((void *)base, val32);
Kumar Galac916d7c2011-04-13 08:37:44 -0500181}
182
183static void bmi_rx_port_disable(struct fm_bmi_rx_port *rx_port)
184{
185 int timeout = 1000000;
186
187 clrbits_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_EN);
188
189 /* wait until the rx port is not busy */
190 while ((in_be32(&rx_port->fmbm_rst) & FMBM_RST_BSY) && timeout--)
191 ;
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300192 if (!timeout)
193 printf("%s - timeout\n", __func__);
Kumar Galac916d7c2011-04-13 08:37:44 -0500194}
195
196static void bmi_rx_port_init(struct fm_bmi_rx_port *rx_port)
197{
198 /* set BMI to independent mode, Rx port disable */
199 out_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_IM);
200 /* clear FOF in IM case */
201 out_be32(&rx_port->fmbm_rim, 0);
202 /* Rx frame next engine -RISC */
203 out_be32(&rx_port->fmbm_rfne, NIA_ENG_RISC | NIA_RISC_AC_IM_RX);
204 /* Rx command attribute - no order, MR[3] = 1 */
205 clrbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_ORDER | FMBM_RFCA_MR_MASK);
206 setbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_MR(4));
207 /* enable Rx statistic counters */
208 out_be32(&rx_port->fmbm_rstc, FMBM_RSTC_EN);
209 /* disable Rx performance counters */
210 out_be32(&rx_port->fmbm_rpc, 0);
211}
212
213static void bmi_tx_port_disable(struct fm_bmi_tx_port *tx_port)
214{
215 int timeout = 1000000;
216
217 clrbits_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_EN);
218
219 /* wait until the tx port is not busy */
220 while ((in_be32(&tx_port->fmbm_tst) & FMBM_TST_BSY) && timeout--)
221 ;
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300222 if (!timeout)
223 printf("%s - timeout\n", __func__);
Kumar Galac916d7c2011-04-13 08:37:44 -0500224}
225
226static void bmi_tx_port_init(struct fm_bmi_tx_port *tx_port)
227{
228 /* set BMI to independent mode, Tx port disable */
229 out_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_IM);
230 /* Tx frame next engine -RISC */
231 out_be32(&tx_port->fmbm_tfne, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
232 out_be32(&tx_port->fmbm_tfene, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
233 /* Tx command attribute - no order, MR[3] = 1 */
234 clrbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_ORDER | FMBM_TFCA_MR_MASK);
235 setbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_MR(4));
236 /* enable Tx statistic counters */
237 out_be32(&tx_port->fmbm_tstc, FMBM_TSTC_EN);
238 /* disable Tx performance counters */
239 out_be32(&tx_port->fmbm_tpc, 0);
240}
241
242static int fm_eth_rx_port_parameter_init(struct fm_eth *fm_eth)
243{
244 struct fm_port_global_pram *pram;
245 u32 pram_page_offset;
246 void *rx_bd_ring_base;
247 void *rx_buf_pool;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800248 u32 bd_ring_base_lo, bd_ring_base_hi;
249 u32 buf_lo, buf_hi;
Kumar Galac916d7c2011-04-13 08:37:44 -0500250 struct fm_port_bd *rxbd;
251 struct fm_port_qd *rxqd;
252 struct fm_bmi_rx_port *bmi_rx_port = fm_eth->rx_port;
253 int i;
254
255 /* alloc global parameter ram at MURAM */
256 pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
257 FM_PRAM_SIZE, FM_PRAM_ALIGN);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800258 if (!pram) {
259 printf("%s: No muram for Rx global parameter\n", __func__);
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800260 return -ENOMEM;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800261 }
262
Kumar Galac916d7c2011-04-13 08:37:44 -0500263 fm_eth->rx_pram = pram;
264
265 /* parameter page offset to MURAM */
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800266 pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
Kumar Galac916d7c2011-04-13 08:37:44 -0500267
268 /* enable global mode- snooping data buffers and BDs */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800269 out_be32(&pram->mode, PRAM_MODE_GLOBAL);
Kumar Galac916d7c2011-04-13 08:37:44 -0500270
271 /* init the Rx queue descriptor pionter */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800272 out_be32(&pram->rxqd_ptr, pram_page_offset + 0x20);
Kumar Galac916d7c2011-04-13 08:37:44 -0500273
274 /* set the max receive buffer length, power of 2 */
275 muram_writew(&pram->mrblr, MAX_RXBUF_LOG2);
276
277 /* alloc Rx buffer descriptors from main memory */
278 rx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
279 * RX_BD_RING_SIZE);
280 if (!rx_bd_ring_base)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800281 return -ENOMEM;
282
Kumar Galac916d7c2011-04-13 08:37:44 -0500283 memset(rx_bd_ring_base, 0, sizeof(struct fm_port_bd)
284 * RX_BD_RING_SIZE);
285
286 /* alloc Rx buffer from main memory */
287 rx_buf_pool = malloc(MAX_RXBUF_LEN * RX_BD_RING_SIZE);
288 if (!rx_buf_pool)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800289 return -ENOMEM;
290
Kumar Galac916d7c2011-04-13 08:37:44 -0500291 memset(rx_buf_pool, 0, MAX_RXBUF_LEN * RX_BD_RING_SIZE);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800292 debug("%s: rx_buf_pool = %p\n", __func__, rx_buf_pool);
Kumar Galac916d7c2011-04-13 08:37:44 -0500293
294 /* save them to fm_eth */
295 fm_eth->rx_bd_ring = rx_bd_ring_base;
296 fm_eth->cur_rxbd = rx_bd_ring_base;
297 fm_eth->rx_buf = rx_buf_pool;
298
299 /* init Rx BDs ring */
300 rxbd = (struct fm_port_bd *)rx_bd_ring_base;
301 for (i = 0; i < RX_BD_RING_SIZE; i++) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800302 muram_writew(&rxbd->status, RxBD_EMPTY);
303 muram_writew(&rxbd->len, 0);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800304 buf_hi = upper_32_bits(virt_to_phys(rx_buf_pool +
305 i * MAX_RXBUF_LEN));
306 buf_lo = lower_32_bits(virt_to_phys(rx_buf_pool +
307 i * MAX_RXBUF_LEN));
308 muram_writew(&rxbd->buf_ptr_hi, (u16)buf_hi);
309 out_be32(&rxbd->buf_ptr_lo, buf_lo);
Kumar Galac916d7c2011-04-13 08:37:44 -0500310 rxbd++;
311 }
312
313 /* set the Rx queue descriptor */
314 rxqd = &pram->rxqd;
315 muram_writew(&rxqd->gen, 0);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800316 bd_ring_base_hi = upper_32_bits(virt_to_phys(rx_bd_ring_base));
317 bd_ring_base_lo = lower_32_bits(virt_to_phys(rx_bd_ring_base));
318 muram_writew(&rxqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
319 out_be32(&rxqd->bd_ring_base_lo, bd_ring_base_lo);
Kumar Galac916d7c2011-04-13 08:37:44 -0500320 muram_writew(&rxqd->bd_ring_size, sizeof(struct fm_port_bd)
321 * RX_BD_RING_SIZE);
322 muram_writew(&rxqd->offset_in, 0);
323 muram_writew(&rxqd->offset_out, 0);
324
325 /* set IM parameter ram pointer to Rx Frame Queue ID */
326 out_be32(&bmi_rx_port->fmbm_rfqid, pram_page_offset);
327
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800328 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500329}
330
331static int fm_eth_tx_port_parameter_init(struct fm_eth *fm_eth)
332{
333 struct fm_port_global_pram *pram;
334 u32 pram_page_offset;
335 void *tx_bd_ring_base;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800336 u32 bd_ring_base_lo, bd_ring_base_hi;
Kumar Galac916d7c2011-04-13 08:37:44 -0500337 struct fm_port_bd *txbd;
338 struct fm_port_qd *txqd;
339 struct fm_bmi_tx_port *bmi_tx_port = fm_eth->tx_port;
340 int i;
341
342 /* alloc global parameter ram at MURAM */
343 pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
344 FM_PRAM_SIZE, FM_PRAM_ALIGN);
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800345 if (!pram) {
346 printf("%s: No muram for Tx global parameter\n", __func__);
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800347 return -ENOMEM;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800348 }
Kumar Galac916d7c2011-04-13 08:37:44 -0500349 fm_eth->tx_pram = pram;
350
351 /* parameter page offset to MURAM */
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800352 pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
Kumar Galac916d7c2011-04-13 08:37:44 -0500353
354 /* enable global mode- snooping data buffers and BDs */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800355 out_be32(&pram->mode, PRAM_MODE_GLOBAL);
Kumar Galac916d7c2011-04-13 08:37:44 -0500356
357 /* init the Tx queue descriptor pionter */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800358 out_be32(&pram->txqd_ptr, pram_page_offset + 0x40);
Kumar Galac916d7c2011-04-13 08:37:44 -0500359
360 /* alloc Tx buffer descriptors from main memory */
361 tx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
362 * TX_BD_RING_SIZE);
363 if (!tx_bd_ring_base)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800364 return -ENOMEM;
365
Kumar Galac916d7c2011-04-13 08:37:44 -0500366 memset(tx_bd_ring_base, 0, sizeof(struct fm_port_bd)
367 * TX_BD_RING_SIZE);
368 /* save it to fm_eth */
369 fm_eth->tx_bd_ring = tx_bd_ring_base;
370 fm_eth->cur_txbd = tx_bd_ring_base;
371
372 /* init Tx BDs ring */
373 txbd = (struct fm_port_bd *)tx_bd_ring_base;
374 for (i = 0; i < TX_BD_RING_SIZE; i++) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800375 muram_writew(&txbd->status, TxBD_LAST);
376 muram_writew(&txbd->len, 0);
377 muram_writew(&txbd->buf_ptr_hi, 0);
378 out_be32(&txbd->buf_ptr_lo, 0);
379 txbd++;
Kumar Galac916d7c2011-04-13 08:37:44 -0500380 }
381
382 /* set the Tx queue decriptor */
383 txqd = &pram->txqd;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800384 bd_ring_base_hi = upper_32_bits(virt_to_phys(tx_bd_ring_base));
385 bd_ring_base_lo = lower_32_bits(virt_to_phys(tx_bd_ring_base));
386 muram_writew(&txqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
387 out_be32(&txqd->bd_ring_base_lo, bd_ring_base_lo);
Kumar Galac916d7c2011-04-13 08:37:44 -0500388 muram_writew(&txqd->bd_ring_size, sizeof(struct fm_port_bd)
389 * TX_BD_RING_SIZE);
390 muram_writew(&txqd->offset_in, 0);
391 muram_writew(&txqd->offset_out, 0);
392
393 /* set IM parameter ram pointer to Tx Confirmation Frame Queue ID */
394 out_be32(&bmi_tx_port->fmbm_tcfqid, pram_page_offset);
395
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800396 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500397}
398
399static int fm_eth_init(struct fm_eth *fm_eth)
400{
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800401 int ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500402
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800403 ret = fm_eth_rx_port_parameter_init(fm_eth);
404 if (ret)
405 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500406
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800407 ret = fm_eth_tx_port_parameter_init(fm_eth);
408 if (ret)
409 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500410
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800411 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500412}
413
414static int fm_eth_startup(struct fm_eth *fm_eth)
415{
416 struct fsl_enet_mac *mac;
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800417 int ret;
418
Kumar Galac916d7c2011-04-13 08:37:44 -0500419 mac = fm_eth->mac;
420
421 /* Rx/TxBDs, Rx/TxQDs, Rx buff and parameter ram init */
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800422 ret = fm_eth_init(fm_eth);
423 if (ret)
424 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500425 /* setup the MAC controller */
426 mac->init_mac(mac);
427
428 /* For some reason we need to set SPEED_100 */
Shaohui Xie1c68d012013-08-19 18:58:52 +0800429 if (((fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII) ||
shaohui xiebead0882016-11-15 14:36:47 +0800430 (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500) ||
Shaohui Xie1c68d012013-08-19 18:58:52 +0800431 (fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII)) &&
432 mac->set_if_mode)
Kumar Galac916d7c2011-04-13 08:37:44 -0500433 mac->set_if_mode(mac, fm_eth->enet_if, SPEED_100);
434
435 /* init bmi rx port, IM mode and disable */
436 bmi_rx_port_init(fm_eth->rx_port);
437 /* init bmi tx port, IM mode and disable */
438 bmi_tx_port_init(fm_eth->tx_port);
439
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800440 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500441}
442
443static void fmc_tx_port_graceful_stop_enable(struct fm_eth *fm_eth)
444{
445 struct fm_port_global_pram *pram;
446
447 pram = fm_eth->tx_pram;
448 /* graceful stop transmission of frames */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800449 setbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
Kumar Galac916d7c2011-04-13 08:37:44 -0500450 sync();
451}
452
453static void fmc_tx_port_graceful_stop_disable(struct fm_eth *fm_eth)
454{
455 struct fm_port_global_pram *pram;
456
457 pram = fm_eth->tx_pram;
458 /* re-enable transmission of frames */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800459 clrbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
Kumar Galac916d7c2011-04-13 08:37:44 -0500460 sync();
461}
462
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300463#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -0500464static int fm_eth_open(struct eth_device *dev, bd_t *bd)
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300465#else
466static int fm_eth_open(struct udevice *dev)
467#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500468{
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300469#ifndef CONFIG_DM_ETH
470 struct fm_eth *fm_eth = dev->priv;
471#else
472 struct eth_pdata *pdata = dev_get_platdata(dev);
473 struct fm_eth *fm_eth = dev_get_priv(dev);
474#endif
475 unsigned char *enetaddr;
Kumar Galac916d7c2011-04-13 08:37:44 -0500476 struct fsl_enet_mac *mac;
Timur Tabi11af8d62012-07-09 08:52:43 +0000477#ifdef CONFIG_PHYLIB
478 int ret;
479#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500480
Kumar Galac916d7c2011-04-13 08:37:44 -0500481 mac = fm_eth->mac;
482
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300483#ifndef CONFIG_DM_ETH
484 enetaddr = &dev->enetaddr[0];
485#else
486 enetaddr = pdata->enetaddr;
487#endif
488
Kumar Galac916d7c2011-04-13 08:37:44 -0500489 /* setup the MAC address */
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300490 if (enetaddr[0] & 0x01) {
491 printf("%s: MacAddress is multicast address\n", __func__);
492 enetaddr[0] = 0;
493 enetaddr[5] = fm_eth->num;
Kumar Galac916d7c2011-04-13 08:37:44 -0500494 }
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300495 mac->set_mac_addr(mac, enetaddr);
Kumar Galac916d7c2011-04-13 08:37:44 -0500496
497 /* enable bmi Rx port */
498 setbits_be32(&fm_eth->rx_port->fmbm_rcfg, FMBM_RCFG_EN);
499 /* enable MAC rx/tx port */
500 mac->enable_mac(mac);
501 /* enable bmi Tx port */
502 setbits_be32(&fm_eth->tx_port->fmbm_tcfg, FMBM_TCFG_EN);
503 /* re-enable transmission of frame */
504 fmc_tx_port_graceful_stop_disable(fm_eth);
505
506#ifdef CONFIG_PHYLIB
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200507 if (fm_eth->phydev) {
508 ret = phy_startup(fm_eth->phydev);
509 if (ret) {
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300510#ifndef CONFIG_DM_ETH
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200511 printf("%s: Could not initialize\n",
512 fm_eth->phydev->dev->name);
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300513#else
514 printf("%s: Could not initialize\n", dev->name);
515#endif
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200516 return ret;
517 }
518 } else {
519 return 0;
Timur Tabi11af8d62012-07-09 08:52:43 +0000520 }
Kumar Galac916d7c2011-04-13 08:37:44 -0500521#else
522 fm_eth->phydev->speed = SPEED_1000;
523 fm_eth->phydev->link = 1;
524 fm_eth->phydev->duplex = DUPLEX_FULL;
525#endif
526
527 /* set the MAC-PHY mode */
528 mac->set_if_mode(mac, fm_eth->enet_if, fm_eth->phydev->speed);
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300529 debug("MAC IF mode %d, speed %d, link %d\n", fm_eth->enet_if,
530 fm_eth->phydev->speed, fm_eth->phydev->link);
Kumar Galac916d7c2011-04-13 08:37:44 -0500531
532 if (!fm_eth->phydev->link)
533 printf("%s: No link.\n", fm_eth->phydev->dev->name);
534
535 return fm_eth->phydev->link ? 0 : -1;
536}
537
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300538#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -0500539static void fm_eth_halt(struct eth_device *dev)
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300540#else
541static void fm_eth_halt(struct udevice *dev)
542#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500543{
544 struct fm_eth *fm_eth;
545 struct fsl_enet_mac *mac;
546
547 fm_eth = (struct fm_eth *)dev->priv;
548 mac = fm_eth->mac;
549
550 /* graceful stop the transmission of frames */
551 fmc_tx_port_graceful_stop_enable(fm_eth);
552 /* disable bmi Tx port */
553 bmi_tx_port_disable(fm_eth->tx_port);
554 /* disable MAC rx/tx port */
555 mac->disable_mac(mac);
556 /* disable bmi Rx port */
557 bmi_rx_port_disable(fm_eth->rx_port);
558
Shaohui Xie29d8c812015-10-26 19:47:46 +0800559#ifdef CONFIG_PHYLIB
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200560 if (fm_eth->phydev)
561 phy_shutdown(fm_eth->phydev);
Shaohui Xie29d8c812015-10-26 19:47:46 +0800562#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500563}
564
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300565#ifndef CONFIG_DM_ETH
Joe Hershbergere9df2012012-05-22 07:56:15 +0000566static int fm_eth_send(struct eth_device *dev, void *buf, int len)
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300567#else
568static int fm_eth_send(struct udevice *dev, void *buf, int len)
569#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500570{
571 struct fm_eth *fm_eth;
572 struct fm_port_global_pram *pram;
573 struct fm_port_bd *txbd, *txbd_base;
574 u16 offset_in;
575 int i;
576
577 fm_eth = (struct fm_eth *)dev->priv;
578 pram = fm_eth->tx_pram;
579 txbd = fm_eth->cur_txbd;
580
581 /* find one empty TxBD */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800582 for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
Kumar Galac916d7c2011-04-13 08:37:44 -0500583 udelay(100);
584 if (i > 0x1000) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800585 printf("%s: Tx buffer not ready, txbd->status = 0x%x\n",
586 dev->name, muram_readw(&txbd->status));
Kumar Galac916d7c2011-04-13 08:37:44 -0500587 return 0;
588 }
589 }
590 /* setup TxBD */
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800591 muram_writew(&txbd->buf_ptr_hi, (u16)upper_32_bits(virt_to_phys(buf)));
592 out_be32(&txbd->buf_ptr_lo, lower_32_bits(virt_to_phys(buf)));
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800593 muram_writew(&txbd->len, len);
Kumar Galac916d7c2011-04-13 08:37:44 -0500594 sync();
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800595 muram_writew(&txbd->status, TxBD_READY | TxBD_LAST);
Kumar Galac916d7c2011-04-13 08:37:44 -0500596 sync();
597
598 /* update TxQD, let RISC to send the packet */
599 offset_in = muram_readw(&pram->txqd.offset_in);
600 offset_in += sizeof(struct fm_port_bd);
601 if (offset_in >= muram_readw(&pram->txqd.bd_ring_size))
602 offset_in = 0;
603 muram_writew(&pram->txqd.offset_in, offset_in);
604 sync();
605
606 /* wait for buffer to be transmitted */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800607 for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
Kumar Galac916d7c2011-04-13 08:37:44 -0500608 udelay(100);
609 if (i > 0x10000) {
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800610 printf("%s: Tx error, txbd->status = 0x%x\n",
611 dev->name, muram_readw(&txbd->status));
Kumar Galac916d7c2011-04-13 08:37:44 -0500612 return 0;
613 }
614 }
615
616 /* advance the TxBD */
617 txbd++;
618 txbd_base = (struct fm_port_bd *)fm_eth->tx_bd_ring;
619 if (txbd >= (txbd_base + TX_BD_RING_SIZE))
620 txbd = txbd_base;
621 /* update current txbd */
622 fm_eth->cur_txbd = (void *)txbd;
623
624 return 1;
625}
626
Madalin Bucur1c710182020-04-23 16:25:17 +0300627static struct fm_port_bd *fm_eth_free_one(struct fm_eth *fm_eth,
628 struct fm_port_bd *rxbd)
629{
630 struct fm_port_global_pram *pram;
631 struct fm_port_bd *rxbd_base;
632 u16 offset_out;
633
634 pram = fm_eth->rx_pram;
635
636 /* clear the RxBDs */
637 muram_writew(&rxbd->status, RxBD_EMPTY);
638 muram_writew(&rxbd->len, 0);
639 sync();
640
641 /* advance RxBD */
642 rxbd++;
643 rxbd_base = (struct fm_port_bd *)fm_eth->rx_bd_ring;
644 if (rxbd >= (rxbd_base + RX_BD_RING_SIZE))
645 rxbd = rxbd_base;
646
647 /* update RxQD */
648 offset_out = muram_readw(&pram->rxqd.offset_out);
649 offset_out += sizeof(struct fm_port_bd);
650 if (offset_out >= muram_readw(&pram->rxqd.bd_ring_size))
651 offset_out = 0;
652 muram_writew(&pram->rxqd.offset_out, offset_out);
653 sync();
654
655 return rxbd;
656}
657
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300658#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -0500659static int fm_eth_recv(struct eth_device *dev)
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300660#else
661static int fm_eth_recv(struct udevice *dev, int flags, uchar **packetp)
662#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500663{
Madalin Bucur1c710182020-04-23 16:25:17 +0300664 struct fm_eth *fm_eth = (struct fm_eth *)dev->priv;
665 struct fm_port_bd *rxbd = fm_eth->cur_rxbd;
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800666 u32 buf_lo, buf_hi;
Madalin Bucur1c710182020-04-23 16:25:17 +0300667 u16 status, len;
668 int ret = -1;
Kumar Galac916d7c2011-04-13 08:37:44 -0500669 u8 *data;
Kumar Galac916d7c2011-04-13 08:37:44 -0500670
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800671 status = muram_readw(&rxbd->status);
Kumar Galac916d7c2011-04-13 08:37:44 -0500672
673 while (!(status & RxBD_EMPTY)) {
674 if (!(status & RxBD_ERROR)) {
Hou Zhiqiang9fc29db2015-10-26 19:47:44 +0800675 buf_hi = muram_readw(&rxbd->buf_ptr_hi);
676 buf_lo = in_be32(&rxbd->buf_ptr_lo);
677 data = (u8 *)((ulong)(buf_hi << 16) << 16 | buf_lo);
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800678 len = muram_readw(&rxbd->len);
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300679#ifndef CONFIG_DM_ETH
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500680 net_process_received_packet(data, len);
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300681#else
682 *packetp = data;
683 return len;
684#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500685 } else {
686 printf("%s: Rx error\n", dev->name);
Daniel Inderbitzin466f7752015-07-10 14:06:02 +0200687 ret = 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500688 }
689
Madalin Bucur1c710182020-04-23 16:25:17 +0300690 /* free current bd, advance to next one */
691 rxbd = fm_eth_free_one(fm_eth, rxbd);
Kumar Galac916d7c2011-04-13 08:37:44 -0500692
Kumar Galac916d7c2011-04-13 08:37:44 -0500693 /* read next status */
Hou Zhiqiang648bde62015-10-26 19:47:43 +0800694 status = muram_readw(&rxbd->status);
Kumar Galac916d7c2011-04-13 08:37:44 -0500695 }
696 fm_eth->cur_rxbd = (void *)rxbd;
697
Daniel Inderbitzin466f7752015-07-10 14:06:02 +0200698 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500699}
700
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300701#ifdef CONFIG_DM_ETH
702static int fm_eth_free_pkt(struct udevice *dev, uchar *packet, int length)
703{
704 struct fm_eth *fm_eth = (struct fm_eth *)dev->priv;
705
706 fm_eth->cur_rxbd = fm_eth_free_one(fm_eth, fm_eth->cur_rxbd);
707
708 return 0;
709}
710#endif /* CONFIG_DM_ETH */
711
712#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -0500713static int fm_eth_init_mac(struct fm_eth *fm_eth, struct ccsr_fman *reg)
714{
715 struct fsl_enet_mac *mac;
716 int num;
717 void *base, *phyregs = NULL;
718
719 num = fm_eth->num;
720
Roy Zang111fd192012-10-08 07:44:21 +0000721#ifdef CONFIG_SYS_FMAN_V3
Shengzhou Liucc19c252014-11-24 17:11:57 +0800722#ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800723 if (fm_eth->type == FM_ETH_10G_E) {
Shengzhou Liucc19c252014-11-24 17:11:57 +0800724 /* 10GEC1/10GEC2 use mEMAC9/mEMAC10 on T2080/T4240.
725 * 10GEC3/10GEC4 use mEMAC1/mEMAC2 on T2080.
726 * 10GEC1 uses mEMAC1 on T1024.
Shengzhou Liu82a55c12013-11-22 17:39:09 +0800727 * so it needs to change the num.
728 */
729 if (fm_eth->num >= 2)
730 num -= 2;
731 else
732 num += 8;
733 }
Shengzhou Liucc19c252014-11-24 17:11:57 +0800734#endif
Roy Zang111fd192012-10-08 07:44:21 +0000735 base = &reg->memac[num].fm_memac;
736 phyregs = &reg->memac[num].fm_memac_mdio;
737#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500738 /* Get the mac registers base address */
739 if (fm_eth->type == FM_ETH_1G_E) {
740 base = &reg->mac_1g[num].fm_dtesc;
Timur Tabi30381712011-10-04 16:44:43 -0500741 phyregs = &reg->mac_1g[num].fm_mdio.miimcfg;
Kumar Galac916d7c2011-04-13 08:37:44 -0500742 } else {
743 base = &reg->mac_10g[num].fm_10gec;
744 phyregs = &reg->mac_10g[num].fm_10gec_mdio;
745 }
Roy Zang111fd192012-10-08 07:44:21 +0000746#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500747
748 /* alloc mac controller */
749 mac = malloc(sizeof(struct fsl_enet_mac));
750 if (!mac)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800751 return -ENOMEM;
Kumar Galac916d7c2011-04-13 08:37:44 -0500752 memset(mac, 0, sizeof(struct fsl_enet_mac));
753
754 /* save the mac to fm_eth struct */
755 fm_eth->mac = mac;
756
Roy Zang111fd192012-10-08 07:44:21 +0000757#ifdef CONFIG_SYS_FMAN_V3
758 init_memac(mac, base, phyregs, MAX_RXBUF_LEN);
759#else
Kumar Galac916d7c2011-04-13 08:37:44 -0500760 if (fm_eth->type == FM_ETH_1G_E)
Timur Tabi30381712011-10-04 16:44:43 -0500761 init_dtsec(mac, base, phyregs, MAX_RXBUF_LEN);
Kumar Galac916d7c2011-04-13 08:37:44 -0500762 else
763 init_tgec(mac, base, phyregs, MAX_RXBUF_LEN);
Roy Zang111fd192012-10-08 07:44:21 +0000764#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500765
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800766 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500767}
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300768#else /* CONFIG_DM_ETH */
769static int fm_eth_init_mac(struct fm_eth *fm_eth, void *reg)
770{
771#ifndef CONFIG_SYS_FMAN_V3
772 void *mdio;
773#endif
774
775 fm_eth->mac = kzalloc(sizeof(*fm_eth->mac), GFP_KERNEL);
776 if (!fm_eth->mac)
777 return -ENOMEM;
778
779#ifndef CONFIG_SYS_FMAN_V3
780 mdio = fman_mdio(fm_eth->dev->parent, fm_eth->mac_type, fm_eth->num);
781 debug("MDIO %d @ %p\n", fm_eth->num, mdio);
782#endif
783
784 switch (fm_eth->mac_type) {
785#ifdef CONFIG_SYS_FMAN_V3
786 case FM_MEMAC:
787 init_memac(fm_eth->mac, reg, NULL, MAX_RXBUF_LEN);
788 break;
789#else
790 case FM_DTSEC:
791 init_dtsec(fm_eth->mac, reg, mdio, MAX_RXBUF_LEN);
792 break;
793 case FM_TGEC:
794 init_tgec(fm_eth->mac, reg, mdio, MAX_RXBUF_LEN);
795 break;
796#endif
797 }
798
799 return 0;
800}
801#endif /* CONFIG_DM_ETH */
Kumar Galac916d7c2011-04-13 08:37:44 -0500802
Madalin Bucur8313cb02020-04-23 16:25:16 +0300803static int init_phy(struct fm_eth *fm_eth)
Kumar Galac916d7c2011-04-13 08:37:44 -0500804{
Shaohui Xie29d8c812015-10-26 19:47:46 +0800805#ifdef CONFIG_PHYLIB
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300806 u32 supported = PHY_GBIT_FEATURES;
807#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -0500808 struct phy_device *phydev = NULL;
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300809#endif
810
811 if (fm_eth->type == FM_ETH_10G_E)
812 supported = PHY_10G_FEATURES;
813 if (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500)
814 supported |= SUPPORTED_2500baseX_Full;
Shaohui Xie29d8c812015-10-26 19:47:46 +0800815#endif
Kumar Galac916d7c2011-04-13 08:37:44 -0500816
Kumar Galac916d7c2011-04-13 08:37:44 -0500817 if (fm_eth->type == FM_ETH_1G_E)
Madalin Bucur8313cb02020-04-23 16:25:16 +0300818 dtsec_init_phy(fm_eth);
Kumar Galac916d7c2011-04-13 08:37:44 -0500819
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300820#ifdef CONFIG_DM_ETH
821#ifdef CONFIG_PHYLIB
822#ifdef CONFIG_DM_MDIO
823 fm_eth->phydev = dm_eth_phy_connect(fm_eth->dev);
824 if (!fm_eth->phydev)
825 return -ENODEV;
826#endif
827 fm_eth->phydev->advertising &= supported;
828 fm_eth->phydev->supported &= supported;
829
830 phy_config(fm_eth->phydev);
831#endif
832#else /* CONFIG_DM_ETH */
Shaohui Xie29d8c812015-10-26 19:47:46 +0800833#ifdef CONFIG_PHYLIB
Kumar Galac916d7c2011-04-13 08:37:44 -0500834 if (fm_eth->bus) {
Madalin Bucur8313cb02020-04-23 16:25:16 +0300835 phydev = phy_connect(fm_eth->bus, fm_eth->phyaddr, fm_eth->dev,
836 fm_eth->enet_if);
Codrin Ciubotariu6798c322015-01-12 14:08:29 +0200837 if (!phydev) {
838 printf("Failed to connect\n");
839 return -1;
840 }
841 } else {
842 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500843 }
844
845 if (fm_eth->type == FM_ETH_1G_E) {
846 supported = (SUPPORTED_10baseT_Half |
847 SUPPORTED_10baseT_Full |
848 SUPPORTED_100baseT_Half |
849 SUPPORTED_100baseT_Full |
850 SUPPORTED_1000baseT_Full);
851 } else {
852 supported = SUPPORTED_10000baseT_Full;
853
Madalin Bucur8313cb02020-04-23 16:25:16 +0300854 if (tgec_is_fibre(fm_eth))
Kumar Galac916d7c2011-04-13 08:37:44 -0500855 phydev->port = PORT_FIBRE;
856 }
857
858 phydev->supported &= supported;
859 phydev->advertising = phydev->supported;
860
861 fm_eth->phydev = phydev;
862
863 phy_config(phydev);
864#endif
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300865#endif /* CONFIG_DM_ETH */
Kumar Galac916d7c2011-04-13 08:37:44 -0500866 return 0;
867}
868
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300869#ifndef CONFIG_DM_ETH
Kumar Galac916d7c2011-04-13 08:37:44 -0500870int fm_eth_initialize(struct ccsr_fman *reg, struct fm_eth_info *info)
871{
872 struct eth_device *dev;
873 struct fm_eth *fm_eth;
874 int i, num = info->num;
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800875 int ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500876
877 /* alloc eth device */
878 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
879 if (!dev)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800880 return -ENOMEM;
Kumar Galac916d7c2011-04-13 08:37:44 -0500881 memset(dev, 0, sizeof(struct eth_device));
882
883 /* alloc the FMan ethernet private struct */
884 fm_eth = (struct fm_eth *)malloc(sizeof(struct fm_eth));
885 if (!fm_eth)
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800886 return -ENOMEM;
Kumar Galac916d7c2011-04-13 08:37:44 -0500887 memset(fm_eth, 0, sizeof(struct fm_eth));
888
889 /* save off some things we need from the info struct */
890 fm_eth->fm_index = info->index - 1; /* keep as 0 based for muram */
891 fm_eth->num = num;
892 fm_eth->type = info->type;
893
894 fm_eth->rx_port = (void *)&reg->port[info->rx_port_id - 1].fm_bmi;
895 fm_eth->tx_port = (void *)&reg->port[info->tx_port_id - 1].fm_bmi;
896
897 /* set the ethernet max receive length */
898 fm_eth->max_rx_len = MAX_RXBUF_LEN;
899
900 /* init global mac structure */
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800901 ret = fm_eth_init_mac(fm_eth, reg);
902 if (ret)
903 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500904
905 /* keep same as the manual, we call FMAN1, FMAN2, DTSEC1, DTSEC2, etc */
906 if (fm_eth->type == FM_ETH_1G_E)
907 sprintf(dev->name, "FM%d@DTSEC%d", info->index, num + 1);
908 else
909 sprintf(dev->name, "FM%d@TGEC%d", info->index, num + 1);
910
911 devlist[num_controllers++] = dev;
912 dev->iobase = 0;
913 dev->priv = (void *)fm_eth;
914 dev->init = fm_eth_open;
915 dev->halt = fm_eth_halt;
916 dev->send = fm_eth_send;
917 dev->recv = fm_eth_recv;
918 fm_eth->dev = dev;
919 fm_eth->bus = info->bus;
920 fm_eth->phyaddr = info->phy_addr;
921 fm_eth->enet_if = info->enet_if;
922
923 /* startup the FM im */
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800924 ret = fm_eth_startup(fm_eth);
925 if (ret)
926 return ret;
Kumar Galac916d7c2011-04-13 08:37:44 -0500927
Madalin Bucur8313cb02020-04-23 16:25:16 +0300928 init_phy(fm_eth);
Kumar Galac916d7c2011-04-13 08:37:44 -0500929
930 /* clear the ethernet address */
931 for (i = 0; i < 6; i++)
932 dev->enetaddr[i] = 0;
933 eth_register(dev);
934
Hou Zhiqiang0f2cb9f2015-10-26 19:47:45 +0800935 return 0;
Kumar Galac916d7c2011-04-13 08:37:44 -0500936}
Madalin Bucur6eb32a02020-04-23 16:25:19 +0300937#else /* CONFIG_DM_ETH */
938#ifdef CONFIG_PHYLIB
939phy_interface_t fman_read_sys_if(struct udevice *dev)
940{
941 const char *if_str;
942
943 if_str = ofnode_read_string(dev->node, "phy-connection-type");
944 debug("MAC system interface mode %s\n", if_str);
945
946 return phy_get_interface_by_name(if_str);
947}
948#endif
949
950static int fm_eth_bind(struct udevice *dev)
951{
952 char mac_name[11];
953 u32 fm, num;
954
955 if (ofnode_read_u32(ofnode_get_parent(dev->node), "cell-index", &fm)) {
956 printf("FMan node property cell-index missing\n");
957 return -EINVAL;
958 }
959
960 if (dev && dev_read_u32(dev, "cell-index", &num)) {
961 printf("FMan MAC node property cell-index missing\n");
962 return -EINVAL;
963 }
964
965 sprintf(mac_name, "fm%d-mac%d", fm + 1, num + 1);
966 device_set_name(dev, mac_name);
967
968 debug("%s - binding %s\n", __func__, mac_name);
969
970 return 0;
971}
972
973static struct udevice *fm_get_internal_mdio(struct udevice *dev)
974{
975 struct ofnode_phandle_args phandle = {.node = ofnode_null()};
976 struct udevice *mdiodev;
977
978 if (dev_read_phandle_with_args(dev, "pcsphy-handle", NULL,
979 0, 0, &phandle) ||
980 !ofnode_valid(phandle.node)) {
981 if (dev_read_phandle_with_args(dev, "tbi-handle", NULL,
982 0, 0, &phandle) ||
983 !ofnode_valid(phandle.node)) {
984 printf("Issue reading pcsphy-handle/tbi-handle for MAC %s\n",
985 dev->name);
986 return NULL;
987 }
988 }
989
990 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
991 ofnode_get_parent(phandle.node),
992 &mdiodev)) {
993 printf("can't find MDIO bus for node %s\n",
994 ofnode_get_name(ofnode_get_parent(phandle.node)));
995 return NULL;
996 }
997 debug("Found internal MDIO bus %p\n", mdiodev);
998
999 return mdiodev;
1000}
1001
1002static int fm_eth_probe(struct udevice *dev)
1003{
1004 struct fm_eth *fm_eth = (struct fm_eth *)dev->priv;
1005 struct ofnode_phandle_args args;
1006 void *reg;
1007 int ret, index;
1008
1009 debug("%s enter for dev %p fm_eth %p - %s\n", __func__, dev, fm_eth,
1010 (dev) ? dev->name : "-");
1011
1012 if (fm_eth->dev) {
1013 printf("%s already probed, exit\n", (dev) ? dev->name : "-");
1014 return 0;
1015 }
1016
1017 fm_eth->dev = dev;
1018 fm_eth->fm_index = fman_id(dev->parent);
1019 reg = (void *)(uintptr_t)dev_read_addr(dev);
1020 fm_eth->mac_type = dev_get_driver_data(dev);
1021#ifdef CONFIG_PHYLIB
1022 fm_eth->enet_if = fman_read_sys_if(dev);
1023#else
1024 fm_eth->enet_if = PHY_INTERFACE_MODE_SGMII;
1025 printf("%s: warning - unable to determine interface type\n", __func__);
1026#endif
1027 switch (fm_eth->mac_type) {
1028#ifndef CONFIG_SYS_FMAN_V3
1029 case FM_TGEC:
1030 fm_eth->type = FM_ETH_10G_E;
1031 break;
1032 case FM_DTSEC:
1033#else
1034 case FM_MEMAC:
1035 /* default to 1G, 10G is indicated by port property in dts */
1036#endif
1037 fm_eth->type = FM_ETH_1G_E;
1038 break;
1039 }
1040
1041 if (dev_read_u32(dev, "cell-index", &fm_eth->num)) {
1042 printf("FMan MAC node property cell-index missing\n");
1043 return -EINVAL;
1044 }
1045
1046 if (dev_read_phandle_with_args(dev, "fsl,fman-ports", NULL,
1047 0, 0, &args))
1048 goto ports_ref_failure;
1049 index = ofnode_read_u32_default(args.node, "cell-index", 0);
1050 if (index <= 0)
1051 goto ports_ref_failure;
1052 fm_eth->rx_port = fman_port(dev->parent, index);
1053
1054 if (ofnode_read_bool(args.node, "fsl,fman-10g-port"))
1055 fm_eth->type = FM_ETH_10G_E;
1056
1057 if (dev_read_phandle_with_args(dev, "fsl,fman-ports", NULL,
1058 0, 1, &args))
1059 goto ports_ref_failure;
1060 index = ofnode_read_u32_default(args.node, "cell-index", 0);
1061 if (index <= 0)
1062 goto ports_ref_failure;
1063 fm_eth->tx_port = fman_port(dev->parent, index);
1064
1065 /* set the ethernet max receive length */
1066 fm_eth->max_rx_len = MAX_RXBUF_LEN;
1067
1068 switch (fm_eth->enet_if) {
1069 case PHY_INTERFACE_MODE_QSGMII:
1070 /* all PCS blocks are accessed on one controller */
1071 if (fm_eth->num != 0)
1072 break;
1073 case PHY_INTERFACE_MODE_SGMII:
1074 case PHY_INTERFACE_MODE_SGMII_2500:
1075 fm_eth->pcs_mdio = fm_get_internal_mdio(dev);
1076 break;
1077 default:
1078 break;
1079 }
1080
1081 /* init global mac structure */
1082 ret = fm_eth_init_mac(fm_eth, reg);
1083 if (ret)
1084 return ret;
1085
1086 /* startup the FM im */
1087 ret = fm_eth_startup(fm_eth);
1088
1089 if (!ret)
1090 ret = init_phy(fm_eth);
1091
1092 return ret;
1093
1094ports_ref_failure:
1095 printf("Issue reading fsl,fman-ports for MAC %s\n", dev->name);
1096 return -ENOENT;
1097}
1098
1099static int fm_eth_remove(struct udevice *dev)
1100{
1101 return 0;
1102}
1103
1104static const struct eth_ops fm_eth_ops = {
1105 .start = fm_eth_open,
1106 .send = fm_eth_send,
1107 .recv = fm_eth_recv,
1108 .free_pkt = fm_eth_free_pkt,
1109 .stop = fm_eth_halt,
1110};
1111
1112static const struct udevice_id fm_eth_ids[] = {
1113#ifdef CONFIG_SYS_FMAN_V3
1114 { .compatible = "fsl,fman-memac", .data = FM_MEMAC },
1115#else
1116 { .compatible = "fsl,fman-dtsec", .data = FM_DTSEC },
1117 { .compatible = "fsl,fman-xgec", .data = FM_TGEC },
1118#endif
1119 {}
1120};
1121
1122U_BOOT_DRIVER(eth_fman) = {
1123 .name = "eth_fman",
1124 .id = UCLASS_ETH,
1125 .of_match = fm_eth_ids,
1126 .bind = fm_eth_bind,
1127 .probe = fm_eth_probe,
1128 .remove = fm_eth_remove,
1129 .ops = &fm_eth_ops,
1130 .priv_auto_alloc_size = sizeof(struct fm_eth),
1131 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
1132 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1133};
1134#endif /* CONFIG_DM_ETH */