lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Sat, 30 Mar 2013 14:13:40 +0900
From:	Byungho An <bh74.an@...sung.com>
To:	'Giuseppe CAVALLARO' <peppe.cavallaro@...com>,
	netdev@...r.kernel.org
Cc:	rayagond@...avyalabs.com, richardcochran@...il.com
Subject: RE: [net-next.git 4/8] stmmac: initial support to manage pcs modes

On 3/26/2013 11:46 PM, Giuseppe CAVALLARO wrote:
> This patch adds the minimal support to manage the PCS
> modes (RGMII/SGMII) and restart the ANE.
> Both TBI and RTBI are not yet supported.
> 
[snip]
.
>  /**
>   * stmmac_init_phy - PHY initialization
>   * @dev: net device structure
> @@ -1141,10 +1159,13 @@ static int stmmac_open(struct net_device *dev)
> 
>  	stmmac_check_ether_addr(priv);
> 
> -	ret = stmmac_init_phy(dev);
> -	if (unlikely(ret)) {
> -		pr_err("%s: Cannot attach to PHY (error: %d)\n", __func__,
> ret);
> -		goto open_error;
> +	if (!priv->pcs) {
> +		ret = stmmac_init_phy(dev);
> +		if (ret) {
> +			pr_err("%s: Cannot attach to PHY (error: %d)\n",
> +			       __func__, ret);
> +			goto open_error;
> +		}
>  	}
> 
I think, even though SGMII do auto-negotiation with phy, stmmac_init_phy
function is needed. In this condition "if (!priv->pcs)", SGMII platform
can't attach phy.
IMO, it is same in case of stmmac_mdio_register(ndev).
In my platform, I modified this condition for SGMII like below.
	if (priv->pcs != STMMAC_PCS_RGMII && priv->pcs STMMAC_PCS_TBI &&
priv->pcs != STMMAC_PCS_RTBI)

>  	/* Create and initialize the TX/RX descriptors chains. */
> @@ -1233,7 +1254,12 @@ static int stmmac_open(struct net_device *dev)
>  		phy_start(priv->phydev);
> 
>  	priv->tx_lpi_timer = STMMAC_DEFAULT_TWT_LS_TIMER;
> -	priv->eee_enabled = stmmac_eee_init(priv);
> +
> +	/* Using PCS we cannot dial with the phy registers at this stage
> +	 * so we do not support extra feature like EEE.
> +	 */
> +	if (!priv->pcs)
> +		priv->eee_enabled = stmmac_eee_init(priv);
> 
>  	stmmac_init_tx_coalesce(priv);
> 
> @@ -1242,6 +1268,9 @@ static int stmmac_open(struct net_device *dev)
>  		priv->hw->dma->rx_watchdog(priv->ioaddr, MAX_DMA_RIWT);
>  	}
> 
> +	if (priv->pcs && priv->hw->mac->ctrl_ane)
> +		priv->hw->mac->ctrl_ane(priv->ioaddr, 0);
> +
>  	napi_enable(&priv->napi);
>  	netif_start_queue(dev);
> 
> @@ -2225,12 +2254,16 @@ struct stmmac_priv *stmmac_dvr_probe(struct device
> *device,
>  	else
>  		priv->clk_csr = priv->plat->clk_csr;
> 
> -	/* MDIO bus Registration */
> -	ret = stmmac_mdio_register(ndev);
> -	if (ret < 0) {
> -		pr_debug("%s: MDIO bus (id: %d) registration failed",
> -			 __func__, priv->plat->bus_id);
> -		goto error_mdio_register;
> +	stmmac_check_pcs_mode(priv);
> +
> +	if (!priv->pcs) {
> +		/* MDIO bus Registration */
> +		ret = stmmac_mdio_register(ndev);
> +		if (ret < 0) {
> +			pr_debug("%s: MDIO bus (id: %d) registration
failed",
> +				 __func__, priv->plat->bus_id);
> +			goto error_mdio_register;
> +		}
>  	}
> 
>  	return priv;
> @@ -2263,7 +2296,8 @@ int stmmac_dvr_remove(struct net_device *ndev)
>  	priv->hw->dma->stop_tx(priv->ioaddr);
> 
>  	stmmac_set_mac(priv->ioaddr, false);
> -	stmmac_mdio_unregister(ndev);
> +	if (!priv->pcs)
> +		stmmac_mdio_unregister(ndev);
>  	netif_carrier_off(ndev);
>  	unregister_netdev(ndev);
>  	free_netdev(ndev);
> --
> 1.7.4.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ