summaryrefslogtreecommitdiff
path: root/include/net/dsa.h
diff options
context:
space:
mode:
authorMarek BehĂșn <kabel@kernel.org>2020-10-20 19:09:11 +0200
committerRussell King <rmk+kernel@armlinux.org.uk>2021-02-15 13:22:01 +0000
commit59c428e36d2326b535a4b3fc86eb354c596fb50d (patch)
treec98bb92aa030cca32bade5913a6d4e74108aa312 /include/net/dsa.h
parent8801d251db192cf7a2d08f379e0f40b98aae7370 (diff)
net: dsa: fill phylink's config 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 phylink's config supported_interfaces member. This allows for phylink to determine which PHY_INTERFACE_MODE to use with SFP modules. Signed-off-by: Marek BehĂșn <kabel@kernel.org> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r--include/net/dsa.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h
index 4e60d2610f20..090187ea0114 100644
--- a/include/net/dsa.h
+++ b/include/net/dsa.h
@@ -456,6 +456,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);