Commit c07c6e8e authored by Marek Behún's avatar Marek Behún Committed by David S. Miller

net: dsa: populate supported_interfaces member

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: default avatarMarek Behún <kabel@kernel.org>
[tweaked patch and description to add more complete support -- rmk]
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ebed1cf5
...@@ -645,6 +645,8 @@ struct dsa_switch_ops { ...@@ -645,6 +645,8 @@ struct dsa_switch_ops {
/* /*
* PHYLINK integration * 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, void (*phylink_validate)(struct dsa_switch *ds, int port,
unsigned long *supported, unsigned long *supported,
struct phylink_link_state *state); struct phylink_link_state *state);
......
...@@ -1168,6 +1168,10 @@ static int dsa_port_phylink_register(struct dsa_port *dp) ...@@ -1168,6 +1168,10 @@ static int dsa_port_phylink_register(struct dsa_port *dp)
dp->pl_config.type = PHYLINK_DEV; dp->pl_config.type = PHYLINK_DEV;
dp->pl_config.pcs_poll = ds->pcs_poll; 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), dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn),
mode, &dsa_port_phylink_mac_ops); mode, &dsa_port_phylink_mac_ops);
if (IS_ERR(dp->pl)) { if (IS_ERR(dp->pl)) {
......
...@@ -1871,6 +1871,10 @@ static int dsa_slave_phy_setup(struct net_device *slave_dev) ...@@ -1871,6 +1871,10 @@ static int dsa_slave_phy_setup(struct net_device *slave_dev)
dp->pl_config.poll_fixed_state = true; 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, dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn), mode,
&dsa_port_phylink_mac_ops); &dsa_port_phylink_mac_ops);
if (IS_ERR(dp->pl)) { if (IS_ERR(dp->pl)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment