[PATCH v2 net-next 03/12] drivers: net: xgene: Use rgmii mdio mac access
Florian Fainelli
f.fainelli at gmail.com
Wed May 10 14:48:36 PDT 2017
On 05/10/2017 01:45 PM, Iyappan Subramanian wrote:
> From: Quan Nguyen <qnguyen at apm.com>
>
> This patch switches to use rgmii mdio mac access routines if available,
> as they share the same HW.
>
> Signed-off-by: Quan Nguyen <qnguyen at apm.com>
> Signed-off-by: Iyappan Subramanian <isubramanian at apm.com>
> ---
> drivers/net/ethernet/apm/xgene/xgene_enet_hw.c | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c b/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c
> index 2050c58..47c5b75 100644
> --- a/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c
> +++ b/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c
> @@ -277,6 +277,13 @@ void xgene_enet_wr_mac(struct xgene_enet_pdata *pdata, u32 wr_addr, u32 wr_data)
> u8 wait = 10;
> u32 done;
>
> + if (pdata->mdio_driver && ndev->phydev &&
> + pdata->phy_mode == PHY_INTERFACE_MODE_RGMII) {
To be on the safe side you should check all 4 values of
PHY_INTERFACE_MODE_RGMII, not just this one.
--
Florian
More information about the linux-arm-kernel
mailing list