diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2022-01-26 10:25:55 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-01-26 11:20:37 +0000 |
commit | be6ec5b7026620b931e0fa9287d24ad2cd2ab9b6 (patch) | |
tree | 1bac086e5fa55151df980b32b11f958377cd0e76 /include/linux/pcs | |
parent | 3cade91d0e1817e7cf62943525c7b6fe15ff8f1b (diff) | |
download | linux-be6ec5b7026620b931e0fa9287d24ad2cd2ab9b6.tar.gz linux-be6ec5b7026620b931e0fa9287d24ad2cd2ab9b6.tar.bz2 linux-be6ec5b7026620b931e0fa9287d24ad2cd2ab9b6.zip |
net: xpcs: add support for retrieving supported interface modes
Add a function to the xpcs driver to retrieve the supported PHY
interface modes, which can be used by drivers to fill in phylink's
supported_interfaces mask.
We validate the interface bit index to ensure that it fits within the
bitmap as xpcs lists PHY_INTERFACE_MODE_MAX in an entry.
Tested-by: Wong Vee Khee <vee.khee.wong@linux.intel.com> # Intel EHL Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/pcs')
-rw-r--r-- | include/linux/pcs/pcs-xpcs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pcs/pcs-xpcs.h b/include/linux/pcs/pcs-xpcs.h index add077a81b21..3126a4924d92 100644 --- a/include/linux/pcs/pcs-xpcs.h +++ b/include/linux/pcs/pcs-xpcs.h @@ -33,6 +33,7 @@ int xpcs_do_config(struct dw_xpcs *xpcs, phy_interface_t interface, unsigned int mode); void xpcs_validate(struct dw_xpcs *xpcs, unsigned long *supported, struct phylink_link_state *state); +void xpcs_get_interfaces(struct dw_xpcs *xpcs, unsigned long *interfaces); int xpcs_config_eee(struct dw_xpcs *xpcs, int mult_fact_100ns, int enable); struct dw_xpcs *xpcs_create(struct mdio_device *mdiodev, |