2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-04-13 13:37:44 +00:00
|
|
|
/*
|
2012-10-08 07:44:21 +00:00
|
|
|
* Copyright 2009-2012 Freescale Semiconductor, Inc.
|
2020-04-23 13:25:19 +00:00
|
|
|
* Copyright 2020 NXP
|
2011-04-13 13:37:44 +00:00
|
|
|
* Dave Liu <daveliu@freescale.com>
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2020-05-10 17:39:58 +00:00
|
|
|
#include <part.h>
|
2011-04-13 13:37:44 +00:00
|
|
|
#include <asm/io.h>
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
#include <dm.h>
|
|
|
|
#include <dm/ofnode.h>
|
|
|
|
#include <linux/compat.h>
|
|
|
|
#include <phy_interface.h>
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <net.h>
|
|
|
|
#include <hwconfig.h>
|
|
|
|
#include <fm_eth.h>
|
|
|
|
#include <fsl_mdio.h>
|
|
|
|
#include <miiphy.h>
|
|
|
|
#include <phy.h>
|
2015-10-26 11:47:47 +00:00
|
|
|
#include <fsl_dtsec.h>
|
|
|
|
#include <fsl_tgec.h>
|
2015-03-21 02:28:19 +00:00
|
|
|
#include <fsl_memac.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
#include "fm.h"
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
static struct eth_device *devlist[NUM_FM_PORTS];
|
|
|
|
static int num_controllers;
|
2020-04-23 13:25:19 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) && !defined(BITBANGMII)
|
|
|
|
|
|
|
|
#define TBIANA_SETTINGS (TBIANA_ASYMMETRIC_PAUSE | TBIANA_SYMMETRIC_PAUSE | \
|
|
|
|
TBIANA_FULL_DUPLEX)
|
|
|
|
|
|
|
|
#define TBIANA_SGMII_ACK 0x4001
|
|
|
|
|
|
|
|
#define TBICR_SETTINGS (TBICR_ANEG_ENABLE | TBICR_RESTART_ANEG | \
|
|
|
|
TBICR_FULL_DUPLEX | TBICR_SPEED1_SET)
|
|
|
|
|
|
|
|
/* Configure the TBI for SGMII operation */
|
2012-10-29 13:34:34 +00:00
|
|
|
static void dtsec_configure_serdes(struct fm_eth *priv)
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
2012-10-08 07:44:21 +00:00
|
|
|
#ifdef CONFIG_SYS_FMAN_V3
|
|
|
|
u32 value;
|
|
|
|
struct mii_dev bus;
|
2014-10-23 09:20:57 +00:00
|
|
|
bool sgmii_2500 = (priv->enet_if ==
|
net: freescale: replace usage of phy-mode = "sgmii-2500" with "2500base-x"
After the discussion here:
https://lore.kernel.org/netdev/20210603143453.if7hgifupx5k433b@pali/
which resulted in this patch:
https://patchwork.kernel.org/project/netdevbpf/patch/20210704134325.24842-1-pali@kernel.org/
and many other discussions before it, notably:
https://patchwork.kernel.org/project/linux-arm-kernel/patch/1512016235-15909-1-git-send-email-Bhaskar.Upadhaya@nxp.com/
it became apparent that nobody really knows what "SGMII 2500" is.
Certainly, Freescale/NXP hardware engineers name this protocol
"SGMII 2500" in the reference manuals, but the PCS devices do not
support any "SGMII" specific features when operating at the speed of
2500 Mbps, no in-band autoneg and no speed change via symbol replication
. So that leaves a fixed speed of 2500 Mbps using a coding of 8b/10b
with a SERDES lane frequency of 3.125 GHz. In fact, "SGMII 2500 without
in-band autoneg and at a fixed speed" is indistinguishable from
"2500base-x without in-band autoneg", which is precisely what these NXP
devices support.
So it just appears that "SGMII 2500" is an unclear name with no clear
definition that stuck.
As such, in the Linux kernel, the drivers which use this SERDES protocol
use the 2500base-x phy-mode.
This patch converts U-Boot to use 2500base-x too, or at least, as much
as it can.
Note that I would have really liked to delete PHY_INTERFACE_MODE_SGMII_2500
completely, but the mvpp2 driver seems to even distinguish between SGMII
2500 and 2500base-X. Namely, it enables in-band autoneg for one but not
the other, and forces flow control for one but not the other. This goes
back to the idea that maybe 2500base-X is a fiber protocol and SGMII-2500
is an MII protocol (connects a MAC to a PHY such as Aquantia), but the
two are practically indistinguishable through everything except use case.
NXP devices can support both use cases through an identical configuration,
for example RX flow control can be unconditionally enabled in order to
support rate adaptation performed by an Aquantia PHY. At least I can
find no indication in online documents published by Cisco which would
point towards "SGMII-2500" being an actual standard with an actual
definition, so I cannot say "yes, NXP devices support it".
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
2021-09-18 12:32:35 +00:00
|
|
|
PHY_INTERFACE_MODE_2500BASEX) ? true : false;
|
2020-04-23 13:25:19 +00:00
|
|
|
int i = 0, j;
|
|
|
|
|
|
|
|
#ifndef CONFIG_DM_ETH
|
|
|
|
bus.priv = priv->mac->phyregs;
|
|
|
|
#else
|
|
|
|
bus.priv = priv->pcs_mdio;
|
|
|
|
bus.read = memac_mdio_read;
|
|
|
|
bus.write = memac_mdio_write;
|
|
|
|
bus.reset = memac_mdio_reset;
|
2020-05-04 10:09:12 +00:00
|
|
|
#endif
|
2014-10-23 09:20:57 +00:00
|
|
|
|
2015-10-26 11:47:48 +00:00
|
|
|
qsgmii_loop:
|
2014-10-23 09:20:57 +00:00
|
|
|
/* SGMII IF mode + AN enable only for 1G SGMII, not for 2.5G */
|
2016-11-15 06:36:47 +00:00
|
|
|
if (sgmii_2500)
|
|
|
|
value = PHY_SGMII_CR_PHY_RESET |
|
|
|
|
PHY_SGMII_IF_SPEED_GIGABIT |
|
|
|
|
PHY_SGMII_IF_MODE_SGMII;
|
|
|
|
else
|
|
|
|
value = PHY_SGMII_IF_MODE_SGMII | PHY_SGMII_IF_MODE_AN;
|
2012-10-08 07:44:21 +00:00
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
for (j = 0; j <= 3; j++)
|
|
|
|
debug("dump PCS reg %#x: %#x\n", j,
|
|
|
|
memac_mdio_read(&bus, i, MDIO_DEVAD_NONE, j));
|
|
|
|
|
2015-10-26 11:47:48 +00:00
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x14, value);
|
2012-10-08 07:44:21 +00:00
|
|
|
|
|
|
|
/* Dev ability according to SGMII specification */
|
|
|
|
value = PHY_SGMII_DEV_ABILITY_SGMII;
|
2015-10-26 11:47:48 +00:00
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x4, value);
|
2012-10-08 07:44:21 +00:00
|
|
|
|
2016-11-15 06:36:47 +00:00
|
|
|
if (sgmii_2500) {
|
|
|
|
/* Adjust link timer for 2.5G SGMII,
|
|
|
|
* 1.6 ms in units of 3.2 ns:
|
|
|
|
* 1.6ms / 3.2ns = 5 * 10^5 = 0x7a120.
|
|
|
|
*/
|
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x13, 0x0007);
|
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x12, 0xa120);
|
|
|
|
} else {
|
|
|
|
/* Adjust link timer for SGMII,
|
|
|
|
* 1.6 ms in units of 8 ns:
|
|
|
|
* 1.6ms / 8ns = 2 * 10^5 = 0x30d40.
|
|
|
|
*/
|
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x13, 0x0003);
|
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x12, 0x0d40);
|
|
|
|
}
|
2012-10-08 07:44:21 +00:00
|
|
|
|
|
|
|
/* Restart AN */
|
2016-11-15 06:36:47 +00:00
|
|
|
value = PHY_SGMII_CR_DEF_VAL | PHY_SGMII_CR_RESET_AN;
|
2015-10-26 11:47:48 +00:00
|
|
|
memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0, value);
|
|
|
|
|
|
|
|
if ((priv->enet_if == PHY_INTERFACE_MODE_QSGMII) && (i < 3)) {
|
|
|
|
i++;
|
|
|
|
goto qsgmii_loop;
|
|
|
|
}
|
2012-10-08 07:44:21 +00:00
|
|
|
#else
|
2011-04-13 13:37:44 +00:00
|
|
|
struct dtsec *regs = priv->mac->base;
|
|
|
|
struct tsec_mii_mng *phyregs = priv->mac->phyregs;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Access TBI PHY registers at given TSEC register offset as
|
|
|
|
* opposed to the register offset used for external PHY accesses
|
|
|
|
*/
|
|
|
|
tsec_local_mdio_write(phyregs, in_be32(®s->tbipa), 0, TBI_TBICON,
|
|
|
|
TBICON_CLK_SELECT);
|
|
|
|
tsec_local_mdio_write(phyregs, in_be32(®s->tbipa), 0, TBI_ANA,
|
|
|
|
TBIANA_SGMII_ACK);
|
|
|
|
tsec_local_mdio_write(phyregs, in_be32(®s->tbipa), 0,
|
|
|
|
TBI_CR, TBICR_SETTINGS);
|
2012-10-08 07:44:21 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:16 +00:00
|
|
|
static void dtsec_init_phy(struct fm_eth *fm_eth)
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
2012-10-08 07:44:21 +00:00
|
|
|
#ifndef CONFIG_SYS_FMAN_V3
|
2012-10-11 20:25:36 +00:00
|
|
|
struct dtsec *regs = (struct dtsec *)CONFIG_SYS_FSL_FM1_DTSEC1_ADDR;
|
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
/* Assign a Physical address to the TBI */
|
|
|
|
out_be32(®s->tbipa, CONFIG_SYS_TBIPA_VALUE);
|
2012-10-08 07:44:21 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2014-10-23 09:20:57 +00:00
|
|
|
if (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII ||
|
2015-10-26 11:47:48 +00:00
|
|
|
fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII ||
|
net: freescale: replace usage of phy-mode = "sgmii-2500" with "2500base-x"
After the discussion here:
https://lore.kernel.org/netdev/20210603143453.if7hgifupx5k433b@pali/
which resulted in this patch:
https://patchwork.kernel.org/project/netdevbpf/patch/20210704134325.24842-1-pali@kernel.org/
and many other discussions before it, notably:
https://patchwork.kernel.org/project/linux-arm-kernel/patch/1512016235-15909-1-git-send-email-Bhaskar.Upadhaya@nxp.com/
it became apparent that nobody really knows what "SGMII 2500" is.
Certainly, Freescale/NXP hardware engineers name this protocol
"SGMII 2500" in the reference manuals, but the PCS devices do not
support any "SGMII" specific features when operating at the speed of
2500 Mbps, no in-band autoneg and no speed change via symbol replication
. So that leaves a fixed speed of 2500 Mbps using a coding of 8b/10b
with a SERDES lane frequency of 3.125 GHz. In fact, "SGMII 2500 without
in-band autoneg and at a fixed speed" is indistinguishable from
"2500base-x without in-band autoneg", which is precisely what these NXP
devices support.
So it just appears that "SGMII 2500" is an unclear name with no clear
definition that stuck.
As such, in the Linux kernel, the drivers which use this SERDES protocol
use the 2500base-x phy-mode.
This patch converts U-Boot to use 2500base-x too, or at least, as much
as it can.
Note that I would have really liked to delete PHY_INTERFACE_MODE_SGMII_2500
completely, but the mvpp2 driver seems to even distinguish between SGMII
2500 and 2500base-X. Namely, it enables in-band autoneg for one but not
the other, and forces flow control for one but not the other. This goes
back to the idea that maybe 2500base-X is a fiber protocol and SGMII-2500
is an MII protocol (connects a MAC to a PHY such as Aquantia), but the
two are practically indistinguishable through everything except use case.
NXP devices can support both use cases through an identical configuration,
for example RX flow control can be unconditionally enabled in order to
support rate adaptation performed by an Aquantia PHY. At least I can
find no indication in online documents published by Cisco which would
point towards "SGMII-2500" being an actual standard with an actual
definition, so I cannot say "yes, NXP devices support it".
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
2021-09-18 12:32:35 +00:00
|
|
|
fm_eth->enet_if == PHY_INTERFACE_MODE_2500BASEX)
|
2011-04-13 13:37:44 +00:00
|
|
|
dtsec_configure_serdes(fm_eth);
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2015-10-26 11:47:46 +00:00
|
|
|
#ifdef CONFIG_PHYLIB
|
2020-04-23 13:25:16 +00:00
|
|
|
static int tgec_is_fibre(struct fm_eth *fm)
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
|
|
|
char phyopt[20];
|
|
|
|
|
|
|
|
sprintf(phyopt, "fsl_fm%d_xaui_phy", fm->fm_index + 1);
|
|
|
|
|
|
|
|
return hwconfig_arg_cmp(phyopt, "xfi");
|
|
|
|
}
|
|
|
|
#endif
|
2020-04-23 13:25:19 +00:00
|
|
|
#endif /* CONFIG_DM_ETH */
|
2015-10-26 11:47:46 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
static u16 muram_readw(u16 *addr)
|
|
|
|
{
|
2015-10-26 11:47:44 +00:00
|
|
|
ulong base = (ulong)addr & ~0x3UL;
|
|
|
|
u32 val32 = in_be32((void *)base);
|
2011-04-13 13:37:44 +00:00
|
|
|
int byte_pos;
|
|
|
|
u16 ret;
|
|
|
|
|
2015-10-26 11:47:44 +00:00
|
|
|
byte_pos = (ulong)addr & 0x3UL;
|
2011-04-13 13:37:44 +00:00
|
|
|
if (byte_pos)
|
|
|
|
ret = (u16)(val32 & 0x0000ffff);
|
|
|
|
else
|
|
|
|
ret = (u16)((val32 & 0xffff0000) >> 16);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void muram_writew(u16 *addr, u16 val)
|
|
|
|
{
|
2015-10-26 11:47:44 +00:00
|
|
|
ulong base = (ulong)addr & ~0x3UL;
|
|
|
|
u32 org32 = in_be32((void *)base);
|
2011-04-13 13:37:44 +00:00
|
|
|
u32 val32;
|
|
|
|
int byte_pos;
|
|
|
|
|
2015-10-26 11:47:44 +00:00
|
|
|
byte_pos = (ulong)addr & 0x3UL;
|
2011-04-13 13:37:44 +00:00
|
|
|
if (byte_pos)
|
|
|
|
val32 = (org32 & 0xffff0000) | val;
|
|
|
|
else
|
|
|
|
val32 = (org32 & 0x0000ffff) | ((u32)val << 16);
|
|
|
|
|
2015-10-26 11:47:44 +00:00
|
|
|
out_be32((void *)base, val32);
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void bmi_rx_port_disable(struct fm_bmi_rx_port *rx_port)
|
|
|
|
{
|
|
|
|
int timeout = 1000000;
|
|
|
|
|
|
|
|
clrbits_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_EN);
|
|
|
|
|
|
|
|
/* wait until the rx port is not busy */
|
|
|
|
while ((in_be32(&rx_port->fmbm_rst) & FMBM_RST_BSY) && timeout--)
|
|
|
|
;
|
2020-04-23 13:25:19 +00:00
|
|
|
if (!timeout)
|
|
|
|
printf("%s - timeout\n", __func__);
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void bmi_rx_port_init(struct fm_bmi_rx_port *rx_port)
|
|
|
|
{
|
|
|
|
/* set BMI to independent mode, Rx port disable */
|
|
|
|
out_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_IM);
|
|
|
|
/* clear FOF in IM case */
|
|
|
|
out_be32(&rx_port->fmbm_rim, 0);
|
|
|
|
/* Rx frame next engine -RISC */
|
|
|
|
out_be32(&rx_port->fmbm_rfne, NIA_ENG_RISC | NIA_RISC_AC_IM_RX);
|
|
|
|
/* Rx command attribute - no order, MR[3] = 1 */
|
|
|
|
clrbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_ORDER | FMBM_RFCA_MR_MASK);
|
|
|
|
setbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_MR(4));
|
|
|
|
/* enable Rx statistic counters */
|
|
|
|
out_be32(&rx_port->fmbm_rstc, FMBM_RSTC_EN);
|
|
|
|
/* disable Rx performance counters */
|
|
|
|
out_be32(&rx_port->fmbm_rpc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bmi_tx_port_disable(struct fm_bmi_tx_port *tx_port)
|
|
|
|
{
|
|
|
|
int timeout = 1000000;
|
|
|
|
|
|
|
|
clrbits_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_EN);
|
|
|
|
|
|
|
|
/* wait until the tx port is not busy */
|
|
|
|
while ((in_be32(&tx_port->fmbm_tst) & FMBM_TST_BSY) && timeout--)
|
|
|
|
;
|
2020-04-23 13:25:19 +00:00
|
|
|
if (!timeout)
|
|
|
|
printf("%s - timeout\n", __func__);
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void bmi_tx_port_init(struct fm_bmi_tx_port *tx_port)
|
|
|
|
{
|
|
|
|
/* set BMI to independent mode, Tx port disable */
|
|
|
|
out_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_IM);
|
|
|
|
/* Tx frame next engine -RISC */
|
|
|
|
out_be32(&tx_port->fmbm_tfne, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
|
|
|
|
out_be32(&tx_port->fmbm_tfene, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
|
|
|
|
/* Tx command attribute - no order, MR[3] = 1 */
|
|
|
|
clrbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_ORDER | FMBM_TFCA_MR_MASK);
|
|
|
|
setbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_MR(4));
|
|
|
|
/* enable Tx statistic counters */
|
|
|
|
out_be32(&tx_port->fmbm_tstc, FMBM_TSTC_EN);
|
|
|
|
/* disable Tx performance counters */
|
|
|
|
out_be32(&tx_port->fmbm_tpc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fm_eth_rx_port_parameter_init(struct fm_eth *fm_eth)
|
|
|
|
{
|
|
|
|
struct fm_port_global_pram *pram;
|
|
|
|
u32 pram_page_offset;
|
|
|
|
void *rx_bd_ring_base;
|
|
|
|
void *rx_buf_pool;
|
2015-10-26 11:47:44 +00:00
|
|
|
u32 bd_ring_base_lo, bd_ring_base_hi;
|
|
|
|
u32 buf_lo, buf_hi;
|
2011-04-13 13:37:44 +00:00
|
|
|
struct fm_port_bd *rxbd;
|
|
|
|
struct fm_port_qd *rxqd;
|
|
|
|
struct fm_bmi_rx_port *bmi_rx_port = fm_eth->rx_port;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* alloc global parameter ram at MURAM */
|
|
|
|
pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
|
|
|
|
FM_PRAM_SIZE, FM_PRAM_ALIGN);
|
2015-10-26 11:47:44 +00:00
|
|
|
if (!pram) {
|
|
|
|
printf("%s: No muram for Rx global parameter\n", __func__);
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
2015-10-26 11:47:44 +00:00
|
|
|
}
|
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
fm_eth->rx_pram = pram;
|
|
|
|
|
|
|
|
/* parameter page offset to MURAM */
|
2015-10-26 11:47:44 +00:00
|
|
|
pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* enable global mode- snooping data buffers and BDs */
|
2015-10-26 11:47:43 +00:00
|
|
|
out_be32(&pram->mode, PRAM_MODE_GLOBAL);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* init the Rx queue descriptor pionter */
|
2015-10-26 11:47:43 +00:00
|
|
|
out_be32(&pram->rxqd_ptr, pram_page_offset + 0x20);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* set the max receive buffer length, power of 2 */
|
|
|
|
muram_writew(&pram->mrblr, MAX_RXBUF_LOG2);
|
|
|
|
|
|
|
|
/* alloc Rx buffer descriptors from main memory */
|
|
|
|
rx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
|
|
|
|
* RX_BD_RING_SIZE);
|
|
|
|
if (!rx_bd_ring_base)
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
memset(rx_bd_ring_base, 0, sizeof(struct fm_port_bd)
|
|
|
|
* RX_BD_RING_SIZE);
|
|
|
|
|
|
|
|
/* alloc Rx buffer from main memory */
|
|
|
|
rx_buf_pool = malloc(MAX_RXBUF_LEN * RX_BD_RING_SIZE);
|
2021-06-12 18:15:41 +00:00
|
|
|
if (!rx_buf_pool) {
|
|
|
|
free(rx_bd_ring_base);
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
2021-06-12 18:15:41 +00:00
|
|
|
}
|
2015-10-26 11:47:45 +00:00
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
memset(rx_buf_pool, 0, MAX_RXBUF_LEN * RX_BD_RING_SIZE);
|
2015-10-26 11:47:44 +00:00
|
|
|
debug("%s: rx_buf_pool = %p\n", __func__, rx_buf_pool);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* save them to fm_eth */
|
|
|
|
fm_eth->rx_bd_ring = rx_bd_ring_base;
|
|
|
|
fm_eth->cur_rxbd = rx_bd_ring_base;
|
|
|
|
fm_eth->rx_buf = rx_buf_pool;
|
|
|
|
|
|
|
|
/* init Rx BDs ring */
|
|
|
|
rxbd = (struct fm_port_bd *)rx_bd_ring_base;
|
|
|
|
for (i = 0; i < RX_BD_RING_SIZE; i++) {
|
2015-10-26 11:47:43 +00:00
|
|
|
muram_writew(&rxbd->status, RxBD_EMPTY);
|
|
|
|
muram_writew(&rxbd->len, 0);
|
2015-10-26 11:47:44 +00:00
|
|
|
buf_hi = upper_32_bits(virt_to_phys(rx_buf_pool +
|
|
|
|
i * MAX_RXBUF_LEN));
|
|
|
|
buf_lo = lower_32_bits(virt_to_phys(rx_buf_pool +
|
|
|
|
i * MAX_RXBUF_LEN));
|
|
|
|
muram_writew(&rxbd->buf_ptr_hi, (u16)buf_hi);
|
|
|
|
out_be32(&rxbd->buf_ptr_lo, buf_lo);
|
2011-04-13 13:37:44 +00:00
|
|
|
rxbd++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set the Rx queue descriptor */
|
|
|
|
rxqd = &pram->rxqd;
|
|
|
|
muram_writew(&rxqd->gen, 0);
|
2015-10-26 11:47:44 +00:00
|
|
|
bd_ring_base_hi = upper_32_bits(virt_to_phys(rx_bd_ring_base));
|
|
|
|
bd_ring_base_lo = lower_32_bits(virt_to_phys(rx_bd_ring_base));
|
|
|
|
muram_writew(&rxqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
|
|
|
|
out_be32(&rxqd->bd_ring_base_lo, bd_ring_base_lo);
|
2011-04-13 13:37:44 +00:00
|
|
|
muram_writew(&rxqd->bd_ring_size, sizeof(struct fm_port_bd)
|
|
|
|
* RX_BD_RING_SIZE);
|
|
|
|
muram_writew(&rxqd->offset_in, 0);
|
|
|
|
muram_writew(&rxqd->offset_out, 0);
|
|
|
|
|
|
|
|
/* set IM parameter ram pointer to Rx Frame Queue ID */
|
|
|
|
out_be32(&bmi_rx_port->fmbm_rfqid, pram_page_offset);
|
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int fm_eth_tx_port_parameter_init(struct fm_eth *fm_eth)
|
|
|
|
{
|
|
|
|
struct fm_port_global_pram *pram;
|
|
|
|
u32 pram_page_offset;
|
|
|
|
void *tx_bd_ring_base;
|
2015-10-26 11:47:44 +00:00
|
|
|
u32 bd_ring_base_lo, bd_ring_base_hi;
|
2011-04-13 13:37:44 +00:00
|
|
|
struct fm_port_bd *txbd;
|
|
|
|
struct fm_port_qd *txqd;
|
|
|
|
struct fm_bmi_tx_port *bmi_tx_port = fm_eth->tx_port;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* alloc global parameter ram at MURAM */
|
|
|
|
pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
|
|
|
|
FM_PRAM_SIZE, FM_PRAM_ALIGN);
|
2015-10-26 11:47:44 +00:00
|
|
|
if (!pram) {
|
|
|
|
printf("%s: No muram for Tx global parameter\n", __func__);
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
2015-10-26 11:47:44 +00:00
|
|
|
}
|
2011-04-13 13:37:44 +00:00
|
|
|
fm_eth->tx_pram = pram;
|
|
|
|
|
|
|
|
/* parameter page offset to MURAM */
|
2015-10-26 11:47:44 +00:00
|
|
|
pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* enable global mode- snooping data buffers and BDs */
|
2015-10-26 11:47:43 +00:00
|
|
|
out_be32(&pram->mode, PRAM_MODE_GLOBAL);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* init the Tx queue descriptor pionter */
|
2015-10-26 11:47:43 +00:00
|
|
|
out_be32(&pram->txqd_ptr, pram_page_offset + 0x40);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* alloc Tx buffer descriptors from main memory */
|
|
|
|
tx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
|
|
|
|
* TX_BD_RING_SIZE);
|
|
|
|
if (!tx_bd_ring_base)
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
memset(tx_bd_ring_base, 0, sizeof(struct fm_port_bd)
|
|
|
|
* TX_BD_RING_SIZE);
|
|
|
|
/* save it to fm_eth */
|
|
|
|
fm_eth->tx_bd_ring = tx_bd_ring_base;
|
|
|
|
fm_eth->cur_txbd = tx_bd_ring_base;
|
|
|
|
|
|
|
|
/* init Tx BDs ring */
|
|
|
|
txbd = (struct fm_port_bd *)tx_bd_ring_base;
|
|
|
|
for (i = 0; i < TX_BD_RING_SIZE; i++) {
|
2015-10-26 11:47:43 +00:00
|
|
|
muram_writew(&txbd->status, TxBD_LAST);
|
|
|
|
muram_writew(&txbd->len, 0);
|
|
|
|
muram_writew(&txbd->buf_ptr_hi, 0);
|
|
|
|
out_be32(&txbd->buf_ptr_lo, 0);
|
|
|
|
txbd++;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set the Tx queue decriptor */
|
|
|
|
txqd = &pram->txqd;
|
2015-10-26 11:47:44 +00:00
|
|
|
bd_ring_base_hi = upper_32_bits(virt_to_phys(tx_bd_ring_base));
|
|
|
|
bd_ring_base_lo = lower_32_bits(virt_to_phys(tx_bd_ring_base));
|
|
|
|
muram_writew(&txqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
|
|
|
|
out_be32(&txqd->bd_ring_base_lo, bd_ring_base_lo);
|
2011-04-13 13:37:44 +00:00
|
|
|
muram_writew(&txqd->bd_ring_size, sizeof(struct fm_port_bd)
|
|
|
|
* TX_BD_RING_SIZE);
|
|
|
|
muram_writew(&txqd->offset_in, 0);
|
|
|
|
muram_writew(&txqd->offset_out, 0);
|
|
|
|
|
|
|
|
/* set IM parameter ram pointer to Tx Confirmation Frame Queue ID */
|
|
|
|
out_be32(&bmi_tx_port->fmbm_tcfqid, pram_page_offset);
|
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int fm_eth_init(struct fm_eth *fm_eth)
|
|
|
|
{
|
2015-10-26 11:47:45 +00:00
|
|
|
int ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
ret = fm_eth_rx_port_parameter_init(fm_eth);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
ret = fm_eth_tx_port_parameter_init(fm_eth);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int fm_eth_startup(struct fm_eth *fm_eth)
|
|
|
|
{
|
|
|
|
struct fsl_enet_mac *mac;
|
2015-10-26 11:47:45 +00:00
|
|
|
int ret;
|
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
mac = fm_eth->mac;
|
|
|
|
|
|
|
|
/* Rx/TxBDs, Rx/TxQDs, Rx buff and parameter ram init */
|
2015-10-26 11:47:45 +00:00
|
|
|
ret = fm_eth_init(fm_eth);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
/* setup the MAC controller */
|
|
|
|
mac->init_mac(mac);
|
|
|
|
|
|
|
|
/* For some reason we need to set SPEED_100 */
|
2013-08-19 10:58:52 +00:00
|
|
|
if (((fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII) ||
|
net: freescale: replace usage of phy-mode = "sgmii-2500" with "2500base-x"
After the discussion here:
https://lore.kernel.org/netdev/20210603143453.if7hgifupx5k433b@pali/
which resulted in this patch:
https://patchwork.kernel.org/project/netdevbpf/patch/20210704134325.24842-1-pali@kernel.org/
and many other discussions before it, notably:
https://patchwork.kernel.org/project/linux-arm-kernel/patch/1512016235-15909-1-git-send-email-Bhaskar.Upadhaya@nxp.com/
it became apparent that nobody really knows what "SGMII 2500" is.
Certainly, Freescale/NXP hardware engineers name this protocol
"SGMII 2500" in the reference manuals, but the PCS devices do not
support any "SGMII" specific features when operating at the speed of
2500 Mbps, no in-band autoneg and no speed change via symbol replication
. So that leaves a fixed speed of 2500 Mbps using a coding of 8b/10b
with a SERDES lane frequency of 3.125 GHz. In fact, "SGMII 2500 without
in-band autoneg and at a fixed speed" is indistinguishable from
"2500base-x without in-band autoneg", which is precisely what these NXP
devices support.
So it just appears that "SGMII 2500" is an unclear name with no clear
definition that stuck.
As such, in the Linux kernel, the drivers which use this SERDES protocol
use the 2500base-x phy-mode.
This patch converts U-Boot to use 2500base-x too, or at least, as much
as it can.
Note that I would have really liked to delete PHY_INTERFACE_MODE_SGMII_2500
completely, but the mvpp2 driver seems to even distinguish between SGMII
2500 and 2500base-X. Namely, it enables in-band autoneg for one but not
the other, and forces flow control for one but not the other. This goes
back to the idea that maybe 2500base-X is a fiber protocol and SGMII-2500
is an MII protocol (connects a MAC to a PHY such as Aquantia), but the
two are practically indistinguishable through everything except use case.
NXP devices can support both use cases through an identical configuration,
for example RX flow control can be unconditionally enabled in order to
support rate adaptation performed by an Aquantia PHY. At least I can
find no indication in online documents published by Cisco which would
point towards "SGMII-2500" being an actual standard with an actual
definition, so I cannot say "yes, NXP devices support it".
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
2021-09-18 12:32:35 +00:00
|
|
|
(fm_eth->enet_if == PHY_INTERFACE_MODE_2500BASEX) ||
|
2013-08-19 10:58:52 +00:00
|
|
|
(fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII)) &&
|
|
|
|
mac->set_if_mode)
|
2011-04-13 13:37:44 +00:00
|
|
|
mac->set_if_mode(mac, fm_eth->enet_if, SPEED_100);
|
|
|
|
|
|
|
|
/* init bmi rx port, IM mode and disable */
|
|
|
|
bmi_rx_port_init(fm_eth->rx_port);
|
|
|
|
/* init bmi tx port, IM mode and disable */
|
|
|
|
bmi_tx_port_init(fm_eth->tx_port);
|
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void fmc_tx_port_graceful_stop_enable(struct fm_eth *fm_eth)
|
|
|
|
{
|
|
|
|
struct fm_port_global_pram *pram;
|
|
|
|
|
|
|
|
pram = fm_eth->tx_pram;
|
|
|
|
/* graceful stop transmission of frames */
|
2015-10-26 11:47:43 +00:00
|
|
|
setbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
|
2011-04-13 13:37:44 +00:00
|
|
|
sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fmc_tx_port_graceful_stop_disable(struct fm_eth *fm_eth)
|
|
|
|
{
|
|
|
|
struct fm_port_global_pram *pram;
|
|
|
|
|
|
|
|
pram = fm_eth->tx_pram;
|
|
|
|
/* re-enable transmission of frames */
|
2015-10-26 11:47:43 +00:00
|
|
|
clrbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
|
2011-04-13 13:37:44 +00:00
|
|
|
sync();
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2020-06-26 06:13:33 +00:00
|
|
|
static int fm_eth_open(struct eth_device *dev, struct bd_info *bd)
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
static int fm_eth_open(struct udevice *dev)
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
|
|
|
struct fm_eth *fm_eth = dev->priv;
|
|
|
|
#else
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2020-04-23 13:25:19 +00:00
|
|
|
struct fm_eth *fm_eth = dev_get_priv(dev);
|
|
|
|
#endif
|
|
|
|
unsigned char *enetaddr;
|
2011-04-13 13:37:44 +00:00
|
|
|
struct fsl_enet_mac *mac;
|
2012-07-09 08:52:43 +00:00
|
|
|
#ifdef CONFIG_PHYLIB
|
|
|
|
int ret;
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
mac = fm_eth->mac;
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
|
|
|
enetaddr = &dev->enetaddr[0];
|
|
|
|
#else
|
|
|
|
enetaddr = pdata->enetaddr;
|
|
|
|
#endif
|
|
|
|
|
2011-04-13 13:37:44 +00:00
|
|
|
/* setup the MAC address */
|
2020-04-23 13:25:19 +00:00
|
|
|
if (enetaddr[0] & 0x01) {
|
|
|
|
printf("%s: MacAddress is multicast address\n", __func__);
|
|
|
|
enetaddr[0] = 0;
|
|
|
|
enetaddr[5] = fm_eth->num;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
2020-04-23 13:25:19 +00:00
|
|
|
mac->set_mac_addr(mac, enetaddr);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* enable bmi Rx port */
|
|
|
|
setbits_be32(&fm_eth->rx_port->fmbm_rcfg, FMBM_RCFG_EN);
|
|
|
|
/* enable MAC rx/tx port */
|
|
|
|
mac->enable_mac(mac);
|
|
|
|
/* enable bmi Tx port */
|
|
|
|
setbits_be32(&fm_eth->tx_port->fmbm_tcfg, FMBM_TCFG_EN);
|
|
|
|
/* re-enable transmission of frame */
|
|
|
|
fmc_tx_port_graceful_stop_disable(fm_eth);
|
|
|
|
|
|
|
|
#ifdef CONFIG_PHYLIB
|
2015-01-12 12:08:29 +00:00
|
|
|
if (fm_eth->phydev) {
|
|
|
|
ret = phy_startup(fm_eth->phydev);
|
|
|
|
if (ret) {
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2015-01-12 12:08:29 +00:00
|
|
|
printf("%s: Could not initialize\n",
|
|
|
|
fm_eth->phydev->dev->name);
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
printf("%s: Could not initialize\n", dev->name);
|
|
|
|
#endif
|
2015-01-12 12:08:29 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 0;
|
2012-07-09 08:52:43 +00:00
|
|
|
}
|
2011-04-13 13:37:44 +00:00
|
|
|
#else
|
|
|
|
fm_eth->phydev->speed = SPEED_1000;
|
|
|
|
fm_eth->phydev->link = 1;
|
|
|
|
fm_eth->phydev->duplex = DUPLEX_FULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* set the MAC-PHY mode */
|
|
|
|
mac->set_if_mode(mac, fm_eth->enet_if, fm_eth->phydev->speed);
|
2020-04-23 13:25:19 +00:00
|
|
|
debug("MAC IF mode %d, speed %d, link %d\n", fm_eth->enet_if,
|
|
|
|
fm_eth->phydev->speed, fm_eth->phydev->link);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
if (!fm_eth->phydev->link)
|
|
|
|
printf("%s: No link.\n", fm_eth->phydev->dev->name);
|
|
|
|
|
|
|
|
return fm_eth->phydev->link ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
static void fm_eth_halt(struct eth_device *dev)
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
static void fm_eth_halt(struct udevice *dev)
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
|
|
|
struct fm_eth *fm_eth;
|
|
|
|
struct fsl_enet_mac *mac;
|
|
|
|
|
2020-12-23 02:30:28 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
fm_eth = (struct fm_eth *)dev->priv;
|
2020-12-23 02:30:28 +00:00
|
|
|
#else
|
|
|
|
fm_eth = dev_get_priv(dev);
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
mac = fm_eth->mac;
|
|
|
|
|
|
|
|
/* graceful stop the transmission of frames */
|
|
|
|
fmc_tx_port_graceful_stop_enable(fm_eth);
|
|
|
|
/* disable bmi Tx port */
|
|
|
|
bmi_tx_port_disable(fm_eth->tx_port);
|
|
|
|
/* disable MAC rx/tx port */
|
|
|
|
mac->disable_mac(mac);
|
|
|
|
/* disable bmi Rx port */
|
|
|
|
bmi_rx_port_disable(fm_eth->rx_port);
|
|
|
|
|
2015-10-26 11:47:46 +00:00
|
|
|
#ifdef CONFIG_PHYLIB
|
2015-01-12 12:08:29 +00:00
|
|
|
if (fm_eth->phydev)
|
|
|
|
phy_shutdown(fm_eth->phydev);
|
2015-10-26 11:47:46 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2012-05-22 07:56:15 +00:00
|
|
|
static int fm_eth_send(struct eth_device *dev, void *buf, int len)
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
static int fm_eth_send(struct udevice *dev, void *buf, int len)
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
|
|
|
struct fm_eth *fm_eth;
|
|
|
|
struct fm_port_global_pram *pram;
|
|
|
|
struct fm_port_bd *txbd, *txbd_base;
|
|
|
|
u16 offset_in;
|
|
|
|
int i;
|
|
|
|
|
2020-12-23 02:30:28 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
fm_eth = (struct fm_eth *)dev->priv;
|
2020-12-23 02:30:28 +00:00
|
|
|
#else
|
|
|
|
fm_eth = dev_get_priv(dev);
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
pram = fm_eth->tx_pram;
|
|
|
|
txbd = fm_eth->cur_txbd;
|
|
|
|
|
|
|
|
/* find one empty TxBD */
|
2015-10-26 11:47:43 +00:00
|
|
|
for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
|
2011-04-13 13:37:44 +00:00
|
|
|
udelay(100);
|
|
|
|
if (i > 0x1000) {
|
2015-10-26 11:47:43 +00:00
|
|
|
printf("%s: Tx buffer not ready, txbd->status = 0x%x\n",
|
|
|
|
dev->name, muram_readw(&txbd->status));
|
2011-04-13 13:37:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* setup TxBD */
|
2015-10-26 11:47:44 +00:00
|
|
|
muram_writew(&txbd->buf_ptr_hi, (u16)upper_32_bits(virt_to_phys(buf)));
|
|
|
|
out_be32(&txbd->buf_ptr_lo, lower_32_bits(virt_to_phys(buf)));
|
2015-10-26 11:47:43 +00:00
|
|
|
muram_writew(&txbd->len, len);
|
2011-04-13 13:37:44 +00:00
|
|
|
sync();
|
2015-10-26 11:47:43 +00:00
|
|
|
muram_writew(&txbd->status, TxBD_READY | TxBD_LAST);
|
2011-04-13 13:37:44 +00:00
|
|
|
sync();
|
|
|
|
|
|
|
|
/* update TxQD, let RISC to send the packet */
|
|
|
|
offset_in = muram_readw(&pram->txqd.offset_in);
|
|
|
|
offset_in += sizeof(struct fm_port_bd);
|
|
|
|
if (offset_in >= muram_readw(&pram->txqd.bd_ring_size))
|
|
|
|
offset_in = 0;
|
|
|
|
muram_writew(&pram->txqd.offset_in, offset_in);
|
|
|
|
sync();
|
|
|
|
|
|
|
|
/* wait for buffer to be transmitted */
|
2015-10-26 11:47:43 +00:00
|
|
|
for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
|
2011-04-13 13:37:44 +00:00
|
|
|
udelay(100);
|
|
|
|
if (i > 0x10000) {
|
2015-10-26 11:47:43 +00:00
|
|
|
printf("%s: Tx error, txbd->status = 0x%x\n",
|
|
|
|
dev->name, muram_readw(&txbd->status));
|
2011-04-13 13:37:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* advance the TxBD */
|
|
|
|
txbd++;
|
|
|
|
txbd_base = (struct fm_port_bd *)fm_eth->tx_bd_ring;
|
|
|
|
if (txbd >= (txbd_base + TX_BD_RING_SIZE))
|
|
|
|
txbd = txbd_base;
|
|
|
|
/* update current txbd */
|
|
|
|
fm_eth->cur_txbd = (void *)txbd;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:17 +00:00
|
|
|
static struct fm_port_bd *fm_eth_free_one(struct fm_eth *fm_eth,
|
|
|
|
struct fm_port_bd *rxbd)
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
|
|
|
struct fm_port_global_pram *pram;
|
2020-04-23 13:25:17 +00:00
|
|
|
struct fm_port_bd *rxbd_base;
|
2011-04-13 13:37:44 +00:00
|
|
|
u16 offset_out;
|
|
|
|
|
|
|
|
pram = fm_eth->rx_pram;
|
2020-04-23 13:25:17 +00:00
|
|
|
|
|
|
|
/* clear the RxBDs */
|
|
|
|
muram_writew(&rxbd->status, RxBD_EMPTY);
|
|
|
|
muram_writew(&rxbd->len, 0);
|
|
|
|
sync();
|
|
|
|
|
|
|
|
/* advance RxBD */
|
|
|
|
rxbd++;
|
|
|
|
rxbd_base = (struct fm_port_bd *)fm_eth->rx_bd_ring;
|
|
|
|
if (rxbd >= (rxbd_base + RX_BD_RING_SIZE))
|
|
|
|
rxbd = rxbd_base;
|
|
|
|
|
|
|
|
/* update RxQD */
|
|
|
|
offset_out = muram_readw(&pram->rxqd.offset_out);
|
|
|
|
offset_out += sizeof(struct fm_port_bd);
|
|
|
|
if (offset_out >= muram_readw(&pram->rxqd.bd_ring_size))
|
|
|
|
offset_out = 0;
|
|
|
|
muram_writew(&pram->rxqd.offset_out, offset_out);
|
|
|
|
sync();
|
|
|
|
|
|
|
|
return rxbd;
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2020-04-23 13:25:17 +00:00
|
|
|
static int fm_eth_recv(struct eth_device *dev)
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
static int fm_eth_recv(struct udevice *dev, int flags, uchar **packetp)
|
|
|
|
#endif
|
2020-04-23 13:25:17 +00:00
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct fm_eth *fm_eth;
|
|
|
|
struct fm_port_bd *rxbd;
|
2020-04-23 13:25:17 +00:00
|
|
|
u32 buf_lo, buf_hi;
|
|
|
|
u16 status, len;
|
|
|
|
int ret = -1;
|
|
|
|
u8 *data;
|
|
|
|
|
2020-12-23 02:30:28 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
|
|
|
fm_eth = (struct fm_eth *)dev->priv;
|
|
|
|
#else
|
|
|
|
fm_eth = dev_get_priv(dev);
|
|
|
|
#endif
|
|
|
|
rxbd = fm_eth->cur_rxbd;
|
2015-10-26 11:47:43 +00:00
|
|
|
status = muram_readw(&rxbd->status);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
while (!(status & RxBD_EMPTY)) {
|
|
|
|
if (!(status & RxBD_ERROR)) {
|
2015-10-26 11:47:44 +00:00
|
|
|
buf_hi = muram_readw(&rxbd->buf_ptr_hi);
|
|
|
|
buf_lo = in_be32(&rxbd->buf_ptr_lo);
|
|
|
|
data = (u8 *)((ulong)(buf_hi << 16) << 16 | buf_lo);
|
2015-10-26 11:47:43 +00:00
|
|
|
len = muram_readw(&rxbd->len);
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2015-04-08 06:41:06 +00:00
|
|
|
net_process_received_packet(data, len);
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
*packetp = data;
|
|
|
|
return len;
|
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
} else {
|
|
|
|
printf("%s: Rx error\n", dev->name);
|
2015-07-10 12:06:02 +00:00
|
|
|
ret = 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:17 +00:00
|
|
|
/* free current bd, advance to next one */
|
|
|
|
rxbd = fm_eth_free_one(fm_eth, rxbd);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* read next status */
|
2015-10-26 11:47:43 +00:00
|
|
|
status = muram_readw(&rxbd->status);
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
fm_eth->cur_rxbd = (void *)rxbd;
|
|
|
|
|
2015-07-10 12:06:02 +00:00
|
|
|
return ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
static int fm_eth_free_pkt(struct udevice *dev, uchar *packet, int length)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct fm_eth *fm_eth = (struct fm_eth *)dev_get_priv(dev);
|
2020-04-23 13:25:19 +00:00
|
|
|
|
|
|
|
fm_eth->cur_rxbd = fm_eth_free_one(fm_eth, fm_eth->cur_rxbd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_DM_ETH */
|
|
|
|
|
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
static int fm_eth_init_mac(struct fm_eth *fm_eth, struct ccsr_fman *reg)
|
|
|
|
{
|
|
|
|
struct fsl_enet_mac *mac;
|
|
|
|
int num;
|
|
|
|
void *base, *phyregs = NULL;
|
|
|
|
|
|
|
|
num = fm_eth->num;
|
|
|
|
|
2012-10-08 07:44:21 +00:00
|
|
|
#ifdef CONFIG_SYS_FMAN_V3
|
2014-11-24 09:11:57 +00:00
|
|
|
#ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
|
2013-11-22 09:39:09 +00:00
|
|
|
if (fm_eth->type == FM_ETH_10G_E) {
|
2014-11-24 09:11:57 +00:00
|
|
|
/* 10GEC1/10GEC2 use mEMAC9/mEMAC10 on T2080/T4240.
|
|
|
|
* 10GEC3/10GEC4 use mEMAC1/mEMAC2 on T2080.
|
|
|
|
* 10GEC1 uses mEMAC1 on T1024.
|
2013-11-22 09:39:09 +00:00
|
|
|
* so it needs to change the num.
|
|
|
|
*/
|
|
|
|
if (fm_eth->num >= 2)
|
|
|
|
num -= 2;
|
|
|
|
else
|
|
|
|
num += 8;
|
|
|
|
}
|
2014-11-24 09:11:57 +00:00
|
|
|
#endif
|
2012-10-08 07:44:21 +00:00
|
|
|
base = ®->memac[num].fm_memac;
|
|
|
|
phyregs = ®->memac[num].fm_memac_mdio;
|
|
|
|
#else
|
2011-04-13 13:37:44 +00:00
|
|
|
/* Get the mac registers base address */
|
|
|
|
if (fm_eth->type == FM_ETH_1G_E) {
|
|
|
|
base = ®->mac_1g[num].fm_dtesc;
|
2011-10-04 21:44:43 +00:00
|
|
|
phyregs = ®->mac_1g[num].fm_mdio.miimcfg;
|
2011-04-13 13:37:44 +00:00
|
|
|
} else {
|
|
|
|
base = ®->mac_10g[num].fm_10gec;
|
|
|
|
phyregs = ®->mac_10g[num].fm_10gec_mdio;
|
|
|
|
}
|
2012-10-08 07:44:21 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* alloc mac controller */
|
|
|
|
mac = malloc(sizeof(struct fsl_enet_mac));
|
|
|
|
if (!mac)
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
2011-04-13 13:37:44 +00:00
|
|
|
memset(mac, 0, sizeof(struct fsl_enet_mac));
|
|
|
|
|
|
|
|
/* save the mac to fm_eth struct */
|
|
|
|
fm_eth->mac = mac;
|
|
|
|
|
2012-10-08 07:44:21 +00:00
|
|
|
#ifdef CONFIG_SYS_FMAN_V3
|
|
|
|
init_memac(mac, base, phyregs, MAX_RXBUF_LEN);
|
|
|
|
#else
|
2011-04-13 13:37:44 +00:00
|
|
|
if (fm_eth->type == FM_ETH_1G_E)
|
2011-10-04 21:44:43 +00:00
|
|
|
init_dtsec(mac, base, phyregs, MAX_RXBUF_LEN);
|
2011-04-13 13:37:44 +00:00
|
|
|
else
|
|
|
|
init_tgec(mac, base, phyregs, MAX_RXBUF_LEN);
|
2012-10-08 07:44:21 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
2020-04-23 13:25:19 +00:00
|
|
|
#else /* CONFIG_DM_ETH */
|
|
|
|
static int fm_eth_init_mac(struct fm_eth *fm_eth, void *reg)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_SYS_FMAN_V3
|
|
|
|
void *mdio;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fm_eth->mac = kzalloc(sizeof(*fm_eth->mac), GFP_KERNEL);
|
|
|
|
if (!fm_eth->mac)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
#ifndef CONFIG_SYS_FMAN_V3
|
|
|
|
mdio = fman_mdio(fm_eth->dev->parent, fm_eth->mac_type, fm_eth->num);
|
|
|
|
debug("MDIO %d @ %p\n", fm_eth->num, mdio);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (fm_eth->mac_type) {
|
|
|
|
#ifdef CONFIG_SYS_FMAN_V3
|
|
|
|
case FM_MEMAC:
|
|
|
|
init_memac(fm_eth->mac, reg, NULL, MAX_RXBUF_LEN);
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
case FM_DTSEC:
|
|
|
|
init_dtsec(fm_eth->mac, reg, mdio, MAX_RXBUF_LEN);
|
|
|
|
break;
|
|
|
|
case FM_TGEC:
|
|
|
|
init_tgec(fm_eth->mac, reg, mdio, MAX_RXBUF_LEN);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_DM_ETH */
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2020-04-23 13:25:16 +00:00
|
|
|
static int init_phy(struct fm_eth *fm_eth)
|
2011-04-13 13:37:44 +00:00
|
|
|
{
|
2015-10-26 11:47:46 +00:00
|
|
|
#ifdef CONFIG_PHYLIB
|
2020-04-23 13:25:19 +00:00
|
|
|
u32 supported = PHY_GBIT_FEATURES;
|
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
struct phy_device *phydev = NULL;
|
2020-04-23 13:25:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (fm_eth->type == FM_ETH_10G_E)
|
|
|
|
supported = PHY_10G_FEATURES;
|
net: freescale: replace usage of phy-mode = "sgmii-2500" with "2500base-x"
After the discussion here:
https://lore.kernel.org/netdev/20210603143453.if7hgifupx5k433b@pali/
which resulted in this patch:
https://patchwork.kernel.org/project/netdevbpf/patch/20210704134325.24842-1-pali@kernel.org/
and many other discussions before it, notably:
https://patchwork.kernel.org/project/linux-arm-kernel/patch/1512016235-15909-1-git-send-email-Bhaskar.Upadhaya@nxp.com/
it became apparent that nobody really knows what "SGMII 2500" is.
Certainly, Freescale/NXP hardware engineers name this protocol
"SGMII 2500" in the reference manuals, but the PCS devices do not
support any "SGMII" specific features when operating at the speed of
2500 Mbps, no in-band autoneg and no speed change via symbol replication
. So that leaves a fixed speed of 2500 Mbps using a coding of 8b/10b
with a SERDES lane frequency of 3.125 GHz. In fact, "SGMII 2500 without
in-band autoneg and at a fixed speed" is indistinguishable from
"2500base-x without in-band autoneg", which is precisely what these NXP
devices support.
So it just appears that "SGMII 2500" is an unclear name with no clear
definition that stuck.
As such, in the Linux kernel, the drivers which use this SERDES protocol
use the 2500base-x phy-mode.
This patch converts U-Boot to use 2500base-x too, or at least, as much
as it can.
Note that I would have really liked to delete PHY_INTERFACE_MODE_SGMII_2500
completely, but the mvpp2 driver seems to even distinguish between SGMII
2500 and 2500base-X. Namely, it enables in-band autoneg for one but not
the other, and forces flow control for one but not the other. This goes
back to the idea that maybe 2500base-X is a fiber protocol and SGMII-2500
is an MII protocol (connects a MAC to a PHY such as Aquantia), but the
two are practically indistinguishable through everything except use case.
NXP devices can support both use cases through an identical configuration,
for example RX flow control can be unconditionally enabled in order to
support rate adaptation performed by an Aquantia PHY. At least I can
find no indication in online documents published by Cisco which would
point towards "SGMII-2500" being an actual standard with an actual
definition, so I cannot say "yes, NXP devices support it".
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
2021-09-18 12:32:35 +00:00
|
|
|
if (fm_eth->enet_if == PHY_INTERFACE_MODE_2500BASEX)
|
2020-04-23 13:25:19 +00:00
|
|
|
supported |= SUPPORTED_2500baseX_Full;
|
2015-10-26 11:47:46 +00:00
|
|
|
#endif
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
if (fm_eth->type == FM_ETH_1G_E)
|
2020-04-23 13:25:16 +00:00
|
|
|
dtsec_init_phy(fm_eth);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
#ifdef CONFIG_PHYLIB
|
|
|
|
#ifdef CONFIG_DM_MDIO
|
|
|
|
fm_eth->phydev = dm_eth_phy_connect(fm_eth->dev);
|
|
|
|
if (!fm_eth->phydev)
|
|
|
|
return -ENODEV;
|
|
|
|
#endif
|
|
|
|
fm_eth->phydev->advertising &= supported;
|
|
|
|
fm_eth->phydev->supported &= supported;
|
|
|
|
|
|
|
|
phy_config(fm_eth->phydev);
|
|
|
|
#endif
|
|
|
|
#else /* CONFIG_DM_ETH */
|
2015-10-26 11:47:46 +00:00
|
|
|
#ifdef CONFIG_PHYLIB
|
2011-04-13 13:37:44 +00:00
|
|
|
if (fm_eth->bus) {
|
2020-04-23 13:25:16 +00:00
|
|
|
phydev = phy_connect(fm_eth->bus, fm_eth->phyaddr, fm_eth->dev,
|
|
|
|
fm_eth->enet_if);
|
2015-01-12 12:08:29 +00:00
|
|
|
if (!phydev) {
|
|
|
|
printf("Failed to connect\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fm_eth->type == FM_ETH_1G_E) {
|
|
|
|
supported = (SUPPORTED_10baseT_Half |
|
|
|
|
SUPPORTED_10baseT_Full |
|
|
|
|
SUPPORTED_100baseT_Half |
|
|
|
|
SUPPORTED_100baseT_Full |
|
|
|
|
SUPPORTED_1000baseT_Full);
|
|
|
|
} else {
|
|
|
|
supported = SUPPORTED_10000baseT_Full;
|
|
|
|
|
2020-04-23 13:25:16 +00:00
|
|
|
if (tgec_is_fibre(fm_eth))
|
2011-04-13 13:37:44 +00:00
|
|
|
phydev->port = PORT_FIBRE;
|
|
|
|
}
|
|
|
|
|
|
|
|
phydev->supported &= supported;
|
|
|
|
phydev->advertising = phydev->supported;
|
|
|
|
|
|
|
|
fm_eth->phydev = phydev;
|
|
|
|
|
|
|
|
phy_config(phydev);
|
|
|
|
#endif
|
2020-04-23 13:25:19 +00:00
|
|
|
#endif /* CONFIG_DM_ETH */
|
2011-04-13 13:37:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:25:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2011-04-13 13:37:44 +00:00
|
|
|
int fm_eth_initialize(struct ccsr_fman *reg, struct fm_eth_info *info)
|
|
|
|
{
|
|
|
|
struct eth_device *dev;
|
|
|
|
struct fm_eth *fm_eth;
|
|
|
|
int i, num = info->num;
|
2015-10-26 11:47:45 +00:00
|
|
|
int ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* alloc eth device */
|
|
|
|
dev = (struct eth_device *)malloc(sizeof(struct eth_device));
|
|
|
|
if (!dev)
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
2011-04-13 13:37:44 +00:00
|
|
|
memset(dev, 0, sizeof(struct eth_device));
|
|
|
|
|
|
|
|
/* alloc the FMan ethernet private struct */
|
|
|
|
fm_eth = (struct fm_eth *)malloc(sizeof(struct fm_eth));
|
|
|
|
if (!fm_eth)
|
2015-10-26 11:47:45 +00:00
|
|
|
return -ENOMEM;
|
2011-04-13 13:37:44 +00:00
|
|
|
memset(fm_eth, 0, sizeof(struct fm_eth));
|
|
|
|
|
|
|
|
/* save off some things we need from the info struct */
|
|
|
|
fm_eth->fm_index = info->index - 1; /* keep as 0 based for muram */
|
|
|
|
fm_eth->num = num;
|
|
|
|
fm_eth->type = info->type;
|
|
|
|
|
|
|
|
fm_eth->rx_port = (void *)®->port[info->rx_port_id - 1].fm_bmi;
|
|
|
|
fm_eth->tx_port = (void *)®->port[info->tx_port_id - 1].fm_bmi;
|
|
|
|
|
|
|
|
/* set the ethernet max receive length */
|
|
|
|
fm_eth->max_rx_len = MAX_RXBUF_LEN;
|
|
|
|
|
|
|
|
/* init global mac structure */
|
2015-10-26 11:47:45 +00:00
|
|
|
ret = fm_eth_init_mac(fm_eth, reg);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* keep same as the manual, we call FMAN1, FMAN2, DTSEC1, DTSEC2, etc */
|
|
|
|
if (fm_eth->type == FM_ETH_1G_E)
|
|
|
|
sprintf(dev->name, "FM%d@DTSEC%d", info->index, num + 1);
|
|
|
|
else
|
|
|
|
sprintf(dev->name, "FM%d@TGEC%d", info->index, num + 1);
|
|
|
|
|
|
|
|
devlist[num_controllers++] = dev;
|
|
|
|
dev->iobase = 0;
|
|
|
|
dev->priv = (void *)fm_eth;
|
|
|
|
dev->init = fm_eth_open;
|
|
|
|
dev->halt = fm_eth_halt;
|
|
|
|
dev->send = fm_eth_send;
|
|
|
|
dev->recv = fm_eth_recv;
|
|
|
|
fm_eth->dev = dev;
|
|
|
|
fm_eth->bus = info->bus;
|
|
|
|
fm_eth->phyaddr = info->phy_addr;
|
|
|
|
fm_eth->enet_if = info->enet_if;
|
|
|
|
|
|
|
|
/* startup the FM im */
|
2015-10-26 11:47:45 +00:00
|
|
|
ret = fm_eth_startup(fm_eth);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-04-13 13:37:44 +00:00
|
|
|
|
2020-04-23 13:25:16 +00:00
|
|
|
init_phy(fm_eth);
|
2011-04-13 13:37:44 +00:00
|
|
|
|
|
|
|
/* clear the ethernet address */
|
|
|
|
for (i = 0; i < 6; i++)
|
|
|
|
dev->enetaddr[i] = 0;
|
|
|
|
eth_register(dev);
|
|
|
|
|
2015-10-26 11:47:45 +00:00
|
|
|
return 0;
|
2011-04-13 13:37:44 +00:00
|
|
|
}
|
2020-04-23 13:25:19 +00:00
|
|
|
#else /* CONFIG_DM_ETH */
|
|
|
|
|
|
|
|
static int fm_eth_bind(struct udevice *dev)
|
|
|
|
{
|
|
|
|
char mac_name[11];
|
|
|
|
u32 fm, num;
|
|
|
|
|
2020-12-19 17:40:14 +00:00
|
|
|
if (ofnode_read_u32(ofnode_get_parent(dev_ofnode(dev)), "cell-index", &fm)) {
|
2020-04-23 13:25:19 +00:00
|
|
|
printf("FMan node property cell-index missing\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev && dev_read_u32(dev, "cell-index", &num)) {
|
|
|
|
printf("FMan MAC node property cell-index missing\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintf(mac_name, "fm%d-mac%d", fm + 1, num + 1);
|
|
|
|
device_set_name(dev, mac_name);
|
|
|
|
|
|
|
|
debug("%s - binding %s\n", __func__, mac_name);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct udevice *fm_get_internal_mdio(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ofnode_phandle_args phandle = {.node = ofnode_null()};
|
|
|
|
struct udevice *mdiodev;
|
|
|
|
|
|
|
|
if (dev_read_phandle_with_args(dev, "pcsphy-handle", NULL,
|
|
|
|
0, 0, &phandle) ||
|
|
|
|
!ofnode_valid(phandle.node)) {
|
|
|
|
if (dev_read_phandle_with_args(dev, "tbi-handle", NULL,
|
|
|
|
0, 0, &phandle) ||
|
|
|
|
!ofnode_valid(phandle.node)) {
|
|
|
|
printf("Issue reading pcsphy-handle/tbi-handle for MAC %s\n",
|
|
|
|
dev->name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uclass_get_device_by_ofnode(UCLASS_MDIO,
|
|
|
|
ofnode_get_parent(phandle.node),
|
|
|
|
&mdiodev)) {
|
|
|
|
printf("can't find MDIO bus for node %s\n",
|
|
|
|
ofnode_get_name(ofnode_get_parent(phandle.node)));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
debug("Found internal MDIO bus %p\n", mdiodev);
|
|
|
|
|
|
|
|
return mdiodev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fm_eth_probe(struct udevice *dev)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct fm_eth *fm_eth = (struct fm_eth *)dev_get_priv(dev);
|
2020-04-23 13:25:19 +00:00
|
|
|
struct ofnode_phandle_args args;
|
|
|
|
void *reg;
|
|
|
|
int ret, index;
|
|
|
|
|
|
|
|
debug("%s enter for dev %p fm_eth %p - %s\n", __func__, dev, fm_eth,
|
|
|
|
(dev) ? dev->name : "-");
|
|
|
|
|
|
|
|
if (fm_eth->dev) {
|
|
|
|
printf("%s already probed, exit\n", (dev) ? dev->name : "-");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fm_eth->dev = dev;
|
|
|
|
fm_eth->fm_index = fman_id(dev->parent);
|
|
|
|
reg = (void *)(uintptr_t)dev_read_addr(dev);
|
|
|
|
fm_eth->mac_type = dev_get_driver_data(dev);
|
|
|
|
#ifdef CONFIG_PHYLIB
|
2022-04-06 22:33:01 +00:00
|
|
|
fm_eth->enet_if = dev_read_phy_mode(dev);
|
2020-04-23 13:25:19 +00:00
|
|
|
#else
|
|
|
|
fm_eth->enet_if = PHY_INTERFACE_MODE_SGMII;
|
|
|
|
printf("%s: warning - unable to determine interface type\n", __func__);
|
|
|
|
#endif
|
|
|
|
switch (fm_eth->mac_type) {
|
|
|
|
#ifndef CONFIG_SYS_FMAN_V3
|
|
|
|
case FM_TGEC:
|
|
|
|
fm_eth->type = FM_ETH_10G_E;
|
|
|
|
break;
|
|
|
|
case FM_DTSEC:
|
|
|
|
#else
|
|
|
|
case FM_MEMAC:
|
|
|
|
/* default to 1G, 10G is indicated by port property in dts */
|
|
|
|
#endif
|
|
|
|
fm_eth->type = FM_ETH_1G_E;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev_read_u32(dev, "cell-index", &fm_eth->num)) {
|
|
|
|
printf("FMan MAC node property cell-index missing\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev_read_phandle_with_args(dev, "fsl,fman-ports", NULL,
|
|
|
|
0, 0, &args))
|
|
|
|
goto ports_ref_failure;
|
|
|
|
index = ofnode_read_u32_default(args.node, "cell-index", 0);
|
|
|
|
if (index <= 0)
|
|
|
|
goto ports_ref_failure;
|
|
|
|
fm_eth->rx_port = fman_port(dev->parent, index);
|
|
|
|
|
|
|
|
if (ofnode_read_bool(args.node, "fsl,fman-10g-port"))
|
|
|
|
fm_eth->type = FM_ETH_10G_E;
|
|
|
|
|
|
|
|
if (dev_read_phandle_with_args(dev, "fsl,fman-ports", NULL,
|
|
|
|
0, 1, &args))
|
|
|
|
goto ports_ref_failure;
|
|
|
|
index = ofnode_read_u32_default(args.node, "cell-index", 0);
|
|
|
|
if (index <= 0)
|
|
|
|
goto ports_ref_failure;
|
|
|
|
fm_eth->tx_port = fman_port(dev->parent, index);
|
|
|
|
|
|
|
|
/* set the ethernet max receive length */
|
|
|
|
fm_eth->max_rx_len = MAX_RXBUF_LEN;
|
|
|
|
|
|
|
|
switch (fm_eth->enet_if) {
|
|
|
|
case PHY_INTERFACE_MODE_QSGMII:
|
|
|
|
/* all PCS blocks are accessed on one controller */
|
|
|
|
if (fm_eth->num != 0)
|
|
|
|
break;
|
|
|
|
case PHY_INTERFACE_MODE_SGMII:
|
net: freescale: replace usage of phy-mode = "sgmii-2500" with "2500base-x"
After the discussion here:
https://lore.kernel.org/netdev/20210603143453.if7hgifupx5k433b@pali/
which resulted in this patch:
https://patchwork.kernel.org/project/netdevbpf/patch/20210704134325.24842-1-pali@kernel.org/
and many other discussions before it, notably:
https://patchwork.kernel.org/project/linux-arm-kernel/patch/1512016235-15909-1-git-send-email-Bhaskar.Upadhaya@nxp.com/
it became apparent that nobody really knows what "SGMII 2500" is.
Certainly, Freescale/NXP hardware engineers name this protocol
"SGMII 2500" in the reference manuals, but the PCS devices do not
support any "SGMII" specific features when operating at the speed of
2500 Mbps, no in-band autoneg and no speed change via symbol replication
. So that leaves a fixed speed of 2500 Mbps using a coding of 8b/10b
with a SERDES lane frequency of 3.125 GHz. In fact, "SGMII 2500 without
in-band autoneg and at a fixed speed" is indistinguishable from
"2500base-x without in-band autoneg", which is precisely what these NXP
devices support.
So it just appears that "SGMII 2500" is an unclear name with no clear
definition that stuck.
As such, in the Linux kernel, the drivers which use this SERDES protocol
use the 2500base-x phy-mode.
This patch converts U-Boot to use 2500base-x too, or at least, as much
as it can.
Note that I would have really liked to delete PHY_INTERFACE_MODE_SGMII_2500
completely, but the mvpp2 driver seems to even distinguish between SGMII
2500 and 2500base-X. Namely, it enables in-band autoneg for one but not
the other, and forces flow control for one but not the other. This goes
back to the idea that maybe 2500base-X is a fiber protocol and SGMII-2500
is an MII protocol (connects a MAC to a PHY such as Aquantia), but the
two are practically indistinguishable through everything except use case.
NXP devices can support both use cases through an identical configuration,
for example RX flow control can be unconditionally enabled in order to
support rate adaptation performed by an Aquantia PHY. At least I can
find no indication in online documents published by Cisco which would
point towards "SGMII-2500" being an actual standard with an actual
definition, so I cannot say "yes, NXP devices support it".
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
2021-09-18 12:32:35 +00:00
|
|
|
case PHY_INTERFACE_MODE_2500BASEX:
|
2020-04-23 13:25:19 +00:00
|
|
|
fm_eth->pcs_mdio = fm_get_internal_mdio(dev);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* init global mac structure */
|
|
|
|
ret = fm_eth_init_mac(fm_eth, reg);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* startup the FM im */
|
|
|
|
ret = fm_eth_startup(fm_eth);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
ret = init_phy(fm_eth);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ports_ref_failure:
|
|
|
|
printf("Issue reading fsl,fman-ports for MAC %s\n", dev->name);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fm_eth_remove(struct udevice *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct eth_ops fm_eth_ops = {
|
|
|
|
.start = fm_eth_open,
|
|
|
|
.send = fm_eth_send,
|
|
|
|
.recv = fm_eth_recv,
|
|
|
|
.free_pkt = fm_eth_free_pkt,
|
|
|
|
.stop = fm_eth_halt,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct udevice_id fm_eth_ids[] = {
|
|
|
|
#ifdef CONFIG_SYS_FMAN_V3
|
|
|
|
{ .compatible = "fsl,fman-memac", .data = FM_MEMAC },
|
|
|
|
#else
|
|
|
|
{ .compatible = "fsl,fman-dtsec", .data = FM_DTSEC },
|
|
|
|
{ .compatible = "fsl,fman-xgec", .data = FM_TGEC },
|
|
|
|
#endif
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(eth_fman) = {
|
|
|
|
.name = "eth_fman",
|
|
|
|
.id = UCLASS_ETH,
|
|
|
|
.of_match = fm_eth_ids,
|
|
|
|
.bind = fm_eth_bind,
|
|
|
|
.probe = fm_eth_probe,
|
|
|
|
.remove = fm_eth_remove,
|
|
|
|
.ops = &fm_eth_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct fm_eth),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct eth_pdata),
|
2020-04-23 13:25:19 +00:00
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|
|
|
|
#endif /* CONFIG_DM_ETH */
|