net: dsa: populate supported_interfaces member
authorMarek Behún <kabel@kernel.org>
Thu, 28 Oct 2021 17:00:14 +0000 (18:00 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 1 Nov 2021 13:06:32 +0000 (13:06 +0000)
Add a new DSA switch operation, phylink_get_interfaces, which should
fill in which PHY_INTERFACE_MODE_* are supported by given port.

Use this before phylink_create() to fill phylinks supported_interfaces
member, allowing phylink to determine which PHY_INTERFACE_MODEs are
supported.

Signed-off-by: Marek Behún <kabel@kernel.org>
[tweaked patch and description to add more complete support -- rmk]
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dsa.h
net/dsa/port.c
net/dsa/slave.c

index badd214..eff5c44 100644 (file)
@@ -645,6 +645,8 @@ struct dsa_switch_ops {
        /*
         * PHYLINK integration
         */
+       void    (*phylink_get_interfaces)(struct dsa_switch *ds, int port,
+                                         unsigned long *supported_interfaces);
        void    (*phylink_validate)(struct dsa_switch *ds, int port,
                                    unsigned long *supported,
                                    struct phylink_link_state *state);
index c0e630f..f6f12ad 100644 (file)
@@ -1168,6 +1168,10 @@ static int dsa_port_phylink_register(struct dsa_port *dp)
        dp->pl_config.type = PHYLINK_DEV;
        dp->pl_config.pcs_poll = ds->pcs_poll;
 
+       if (ds->ops->phylink_get_interfaces)
+               ds->ops->phylink_get_interfaces(ds, dp->index,
+                                       dp->pl_config.supported_interfaces);
+
        dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn),
                                mode, &dsa_port_phylink_mac_ops);
        if (IS_ERR(dp->pl)) {
index db066f0..ad61f6b 100644 (file)
@@ -1871,6 +1871,10 @@ static int dsa_slave_phy_setup(struct net_device *slave_dev)
                dp->pl_config.poll_fixed_state = true;
        }
 
+       if (ds->ops->phylink_get_interfaces)
+               ds->ops->phylink_get_interfaces(ds, dp->index,
+                                       dp->pl_config.supported_interfaces);
+
        dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn), mode,
                                &dsa_port_phylink_mac_ops);
        if (IS_ERR(dp->pl)) {