Skip to content

Commit

Permalink
net: bcmgenet: Allow changing carrier from user-space
Browse files Browse the repository at this point in the history
The GENET driver interfaces with internal MoCA interface as well as
external MoCA chips like the BCM6802/6803 through a fixed link
interface. It is desirable for the mocad user-space daemon to be able to
control the carrier state based upon out of band messages that it
receives from the MoCA chip.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Florian Fainelli authored and David S. Miller committed Jul 3, 2020
1 parent de2afdc commit 47ff615
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions drivers/net/ethernet/broadcom/genet/bcmgenet.c
Original file line number Diff line number Diff line change
Expand Up @@ -3647,6 +3647,22 @@ static struct net_device_stats *bcmgenet_get_stats(struct net_device *dev)
return &dev->stats;
}

static int bcmgenet_change_carrier(struct net_device *dev, bool new_carrier)
{
struct bcmgenet_priv *priv = netdev_priv(dev);

if (!dev->phydev || !phy_is_pseudo_fixed_link(dev->phydev) ||
priv->phy_interface != PHY_INTERFACE_MODE_MOCA)
return -EOPNOTSUPP;

if (new_carrier)
netif_carrier_on(dev);
else
netif_carrier_off(dev);

return 0;
}

static const struct net_device_ops bcmgenet_netdev_ops = {
.ndo_open = bcmgenet_open,
.ndo_stop = bcmgenet_close,
Expand All @@ -3660,6 +3676,7 @@ static const struct net_device_ops bcmgenet_netdev_ops = {
.ndo_poll_controller = bcmgenet_poll_controller,
#endif
.ndo_get_stats = bcmgenet_get_stats,
.ndo_change_carrier = bcmgenet_change_carrier,
};

/* Array of GENET hardware parameters/characteristics */
Expand Down

0 comments on commit 47ff615

Please sign in to comment.