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:   Wed, 5 Jul 2017 16:43:29 +0200
From:   Alvaro Gamez Machado <alvaro.gamez@...ent.com>
To:     Andrew Lunn <andrew@...n.ch>
Cc:     Florian Fainelli <f.fainelli@...il.com>,
        Anirudha Sarangi <anirudh@...inx.com>,
        John Linn <John.Linn@...inx.com>,
        Michal Simek <michal.simek@...inx.com>,
        Sören Brinkmann <soren.brinkmann@...inx.com>,
        netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] net: axienet: add of_phy_connect call for
 XAE_PHY_TYPE_MII case

On Wed, Jul 05, 2017 at 04:34:36PM +0200, Andrew Lunn wrote:
> So the only property which is currently wrong is xlnx,phy-type. As you
> said, all the others are garbage. So i would suggest something like:
> 
> diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> index 33c595f4691d..34a514d3288a 100644
> --- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> +++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> @@ -1539,7 +1539,38 @@ static int axienet_probe(struct platform_device *pdev)
>          * the device-tree and accordingly set flags.
>          */
>         of_property_read_u32(pdev->dev.of_node, "xlnx,rxmem", &lp->rxmem);
> -       of_property_read_u32(pdev->dev.of_node, "xlnx,phy-type", &lp->phy_type);
> +
> +       /* Start with the proprietary, and broken phy_type */
> +       err = of_property_read_u32(pdev->dev.of_node, "xlnx,phy-type", &phy_type);
> +       if (!err) {
> +               netdev_warn(ndev, "Please upgrade your device tree binary blob to use phy-mode");
> +               switch (phy_type) {
> +               case XAE_PHY_TYPE_MII:
> +                       lp->phy_mode = PHY_INTERFACE_MODE_MII;
> +                       break;
> +               case XAE_PHY_TYPE_GMII:
> +                       lp->phy_mode = PHY_INTERFACE_MODE_GMII;
> +                       break;
> +               case XAE_PHY_TYPE_RGMII_2_0:
> +                       lp->phy_mode = PHY_INTERFACE_MODE_RGMII;
> +                       break;
> +               case XAE_PHY_TYPE_SGMII:
> +                       lp->pht_mode = PHY_INTERFACE_MODE_SGMII;
> +                       break;
> +               case XAE_PHY_TYPE_1000BASE_X:
> +                       lp->pht_mode = PHY_INTERFACE_MODE_1000BASEX;
> +                       break;
> +               default:
> +                       ret = -EINVAL;
> +                       goto free_netdev;
> +               }
> +       } else {
> +               lp->phy_mode = of_get_phy_mode(pdev->dev.of_node);
> +               if (lp->phy_mode < 0) {
> +                       ret = -EINVAL;
> +                       goto free_netdev;
> +               }
> +       }
>  
>         /* Find the DMA node, map the DMA registers, and decode the DMA IRQs */
>         np = of_parse_phandle(pdev->dev.of_node, "axistream-connected", 0);
> 
> 	Andrew

That sounds really respectful with current users and sets the basis for a
future removal of that proprietary parameter without causing more harm than
needed, so I like that a lot.

-- 
Alvaro G. M.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ