Home
last modified time | relevance | path

Searched refs:phylink (Results 1 – 25 of 80) sorted by relevance

1234

/linux-6.12.1/include/linux/
Dphylink.h12 struct phylink;
413 struct phylink *phylink; member
588 struct phylink *phylink_create(struct phylink_config *,
592 void phylink_destroy(struct phylink *);
593 bool phylink_expects_phy(struct phylink *pl);
595 int phylink_connect_phy(struct phylink *, struct phy_device *);
596 int phylink_of_phy_connect(struct phylink *, struct device_node *, u32 flags);
597 int phylink_fwnode_phy_connect(struct phylink *pl,
600 void phylink_disconnect_phy(struct phylink *);
601 int phylink_set_fixed_link(struct phylink *,
[all …]
/linux-6.12.1/drivers/net/ethernet/tehuti/
Dtn40_phy.c49 struct phylink *phylink; in tn40_phy_register() local
63 phylink = phylink_create(config, NULL, PHY_INTERFACE_MODE_XAUI, in tn40_phy_register()
65 if (IS_ERR(phylink)) in tn40_phy_register()
66 return PTR_ERR(phylink); in tn40_phy_register()
69 priv->phylink = phylink; in tn40_phy_register()
75 phylink_destroy(priv->phylink); in tn40_phy_unregister()
/linux-6.12.1/Documentation/networking/
Dsfp-phylink.rst4 phylink title
10 phylink is a mechanism to support hot-pluggable networking modules
14 phylink supports conventional phylib-based setups, fixed link setups
20 phylink has several modes of operation, which depend on the firmware
69 Rough guide to converting a network driver to sfp/phylink
73 phylib to the sfp/phylink support. Please send patches to improve
98 #include <linux/phylink.h>
104 struct phylink *phylink;
121 - phylink_start(priv->phylink)
123 - phylink_stop(priv->phylink)
[all …]
/linux-6.12.1/drivers/net/phy/
Dphylink.c46 struct phylink { struct
655 static int phylink_validate_mac_and_pcs(struct phylink *pl, in phylink_validate_mac_and_pcs()
710 static void phylink_validate_one(struct phylink *pl, struct phy_device *phy, in phylink_validate_one()
740 static int phylink_validate_mask(struct phylink *pl, struct phy_device *phy, in phylink_validate_mask()
759 static int phylink_validate(struct phylink *pl, unsigned long *supported, in phylink_validate()
774 static int phylink_parse_fixedlink(struct phylink *pl, in phylink_parse_fixedlink()
886 static int phylink_parse_mode(struct phylink *pl, in phylink_parse_mode()
963 static void phylink_apply_manual_flow(struct phylink *pl, in phylink_apply_manual_flow()
1044 static void phylink_pcs_poll_stop(struct phylink *pl) in phylink_pcs_poll_stop()
1050 static void phylink_pcs_poll_start(struct phylink *pl) in phylink_pcs_poll_start()
[all …]
/linux-6.12.1/drivers/net/ethernet/meta/fbnic/
Dfbnic_phylink.c134 struct phylink *phylink; in fbnic_phylink_init() local
152 phylink = phylink_create(&fbn->phylink_config, NULL, in fbnic_phylink_init()
155 if (IS_ERR(phylink)) in fbnic_phylink_init()
156 return PTR_ERR(phylink); in fbnic_phylink_init()
158 fbn->phylink = phylink; in fbnic_phylink_init()
Dfbnic_netdev.h28 struct phylink *phylink; member
/linux-6.12.1/drivers/net/ethernet/wangxun/ngbe/
Dngbe_mdio.c118 struct phylink *phylink; in ngbe_phylink_init() local
134 phylink = phylink_create(config, NULL, phy_mode, &ngbe_mac_ops); in ngbe_phylink_init()
135 if (IS_ERR(phylink)) in ngbe_phylink_init()
136 return PTR_ERR(phylink); in ngbe_phylink_init()
138 wx->phylink = phylink; in ngbe_phylink_init()
Dngbe_main.c318 phylink_stop(wx->phylink); in ngbe_down()
341 phylink_start(wx->phylink); in ngbe_up()
370 err = phylink_connect_phy(wx->phylink, wx->phydev); in ngbe_open()
386 phylink_disconnect_phy(wx->phylink); in ngbe_open()
414 phylink_disconnect_phy(wx->phylink); in ngbe_close()
699 phylink_destroy(wx->phylink); in ngbe_probe()
729 phylink_destroy(wx->phylink); in ngbe_remove()
/linux-6.12.1/drivers/net/ethernet/microchip/sparx5/
Dsparx5_netdev.c104 err = phylink_of_phy_connect(port->phylink, port->of_node, 0); in sparx5_port_open()
110 phylink_start(port->phylink); in sparx5_port_open()
128 phylink_stop(port->phylink); in sparx5_port_open()
129 phylink_disconnect_phy(port->phylink); in sparx5_port_open()
142 phylink_stop(port->phylink); in sparx5_port_stop()
143 phylink_disconnect_phy(port->phylink); in sparx5_port_stop()
314 if (port && port->phylink) { in sparx5_destroy_netdevs()
318 phylink_disconnect_phy(port->phylink); in sparx5_destroy_netdevs()
320 phylink_destroy(port->phylink); in sparx5_destroy_netdevs()
321 port->phylink = NULL; in sparx5_destroy_netdevs()
Dsparx5_main.c263 struct phylink *phylink; in sparx5_create_port() local
330 phylink = phylink_create(&spx5_port->phylink_config, in sparx5_create_port()
334 if (IS_ERR(phylink)) in sparx5_create_port()
335 return PTR_ERR(phylink); in sparx5_create_port()
337 spx5_port->phylink = phylink; in sparx5_create_port()
/linux-6.12.1/drivers/net/ethernet/freescale/dpaa2/
Ddpaa2-mac.c349 phylink_start(mac->phylink); in dpaa2_mac_start()
356 phylink_stop(mac->phylink); in dpaa2_mac_stop()
367 struct phylink *phylink; in dpaa2_mac_connect() local
427 phylink = phylink_create(&mac->phylink_config, in dpaa2_mac_connect()
430 if (IS_ERR(phylink)) { in dpaa2_mac_connect()
431 err = PTR_ERR(phylink); in dpaa2_mac_connect()
434 mac->phylink = phylink; in dpaa2_mac_connect()
437 err = phylink_fwnode_phy_connect(mac->phylink, dpmac_node, 0); in dpaa2_mac_connect()
447 phylink_destroy(mac->phylink); in dpaa2_mac_connect()
457 phylink_disconnect_phy(mac->phylink); in dpaa2_mac_disconnect()
[all …]
Ddpaa2-mac.h24 struct phylink *phylink; member
/linux-6.12.1/drivers/net/ethernet/freescale/fs_enet/
Dfs_enet-main.c77 return phylink_mii_ioctl(fep->phylink, ifr, cmd); in fs_eth_ioctl()
603 phylink_stop(fep->phylink); in fs_timeout_work()
604 phylink_start(fep->phylink); in fs_timeout_work()
678 err = phylink_of_phy_connect(fep->phylink, fep->dev->of_node, 0); in fs_enet_open()
684 phylink_start(fep->phylink); in fs_enet_open()
699 phylink_stop(fep->phylink); in fs_enet_close()
706 phylink_disconnect_phy(fep->phylink); in fs_enet_close()
801 return phylink_ethtool_ksettings_set(fep->phylink, cmd); in fs_ethtool_set_link_ksettings()
809 return phylink_ethtool_ksettings_get(fep->phylink, cmd); in fs_ethtool_get_link_ksettings()
861 struct phylink *phylink; in fs_enet_probe() local
[all …]
/linux-6.12.1/drivers/net/ethernet/wangxun/txgbe/
Dtxgbe_phy.c257 struct phylink *phylink; in txgbe_phylink_init() local
276 phylink = phylink_create(config, fwnode, phy_mode, &txgbe_mac_ops); in txgbe_phylink_init()
277 if (IS_ERR(phylink)) in txgbe_phylink_init()
278 return PTR_ERR(phylink); in txgbe_phylink_init()
283 ret = phylink_connect_phy(phylink, wx->phydev); in txgbe_phylink_init()
285 phylink_destroy(phylink); in txgbe_phylink_init()
290 wx->phylink = phylink; in txgbe_phylink_init()
779 phylink_destroy(wx->phylink); in txgbe_init_phy()
791 phylink_disconnect_phy(txgbe->wx->phylink); in txgbe_remove_phy()
792 phylink_destroy(txgbe->wx->phylink); in txgbe_remove_phy()
[all …]
/linux-6.12.1/drivers/net/usb/
Dasix_devices.c312 phylink_ethtool_get_pauseparam(priv->phylink, pause); in ax88772_ethtool_get_pauseparam()
321 return phylink_ethtool_set_pauseparam(priv->phylink, pause); in ax88772_ethtool_set_pauseparam()
366 phylink_start(priv->phylink); in ax88772_reset()
615 phylink_suspend(priv->phylink, false); in ax88772_suspend()
650 phylink_resume(priv->phylink); in ax88772_resume()
710 ret = phylink_connect_phy(priv->phylink, priv->phydev); in ax88772_init_phy()
731 phylink_disconnect_phy(priv->phylink); in ax88772_init_phy()
799 struct phylink *phylink; in ax88772_phylink_setup() local
816 phylink = phylink_create(&priv->phylink_config, dev->net->dev.fwnode, in ax88772_phylink_setup()
818 if (IS_ERR(phylink)) in ax88772_phylink_setup()
[all …]
/linux-6.12.1/drivers/net/ethernet/
Djme.c388 u32 phylink, bmsr; in jme_linkstat_from_phy() local
390 phylink = jme_mdio_read(jme->dev, jme->mii_if.phy_id, 17); in jme_linkstat_from_phy()
393 phylink |= PHY_LINK_AUTONEG_COMPLETE; in jme_linkstat_from_phy()
395 return phylink; in jme_linkstat_from_phy()
414 u32 phylink, cnt = JME_SPDRSV_TIMEOUT, bmcr; in jme_check_link() local
421 phylink = jme_linkstat_from_phy(jme); in jme_check_link()
423 phylink = jread32(jme, JME_PHY_LINK); in jme_check_link()
425 if (phylink & PHY_LINK_UP) { in jme_check_link()
426 if (!(phylink & PHY_LINK_AUTONEG_COMPLETE)) { in jme_check_link()
431 phylink = PHY_LINK_UP; in jme_check_link()
[all …]
/linux-6.12.1/Documentation/networking/device_drivers/ethernet/freescale/dpaa2/
Dmac-phy-support.rst22 the help of phylink.
26 directly by the dpaa2-eth driver or by phylink.
34 | net_device | | phylink |--| +-----+ +-----+ +-----+ +-----+ |
66 phylink instance, the dpaa2-eth driver will not bind to the connected dpmac
71 phylink) and its attached net_device driver (dpaa2-eth, dpaa2-ethsw),
184 A phylink integration is necessary only when the partner DPMAC is not of
/linux-6.12.1/drivers/net/ethernet/atheros/
Dag71xx.c371 struct phylink *phylink; member
451 return phylink_mii_ioctl(ag->phylink, ifr, cmd); in ag71xx_do_ioctl()
469 return phylink_ethtool_ksettings_get(ag->phylink, kset); in ag71xx_get_link_ksettings()
477 return phylink_ethtool_ksettings_set(ag->phylink, kset); in ag71xx_set_link_ksettings()
484 return phylink_ethtool_nway_reset(ag->phylink); in ag71xx_ethtool_nway_reset()
492 phylink_ethtool_get_pauseparam(ag->phylink, pause); in ag71xx_ethtool_get_pauseparam()
500 return phylink_ethtool_set_pauseparam(ag->phylink, pause); in ag71xx_ethtool_set_pauseparam()
1076 struct phylink *phylink; in ag71xx_phylink_setup() local
1109 phylink = phylink_create(&ag->phylink_config, ag->pdev->dev.fwnode, in ag71xx_phylink_setup()
1111 if (IS_ERR(phylink)) in ag71xx_phylink_setup()
[all …]
/linux-6.12.1/drivers/net/ethernet/microchip/lan966x/
Dlan966x_main.c186 err = phylink_fwnode_phy_connect(port->phylink, port->fwnode, 0); in lan966x_port_open()
192 phylink_start(port->phylink); in lan966x_port_open()
202 phylink_stop(port->phylink); in lan966x_port_stop()
203 phylink_disconnect_phy(port->phylink); in lan966x_port_stop()
756 if (port->phylink) { in lan966x_cleanup_ports()
760 phylink_destroy(port->phylink); in lan966x_cleanup_ports()
761 port->phylink = NULL; in lan966x_cleanup_ports()
791 struct phylink *phylink; in lan966x_probe_port() local
852 phylink = phylink_create(&port->phylink_config, in lan966x_probe_port()
856 if (IS_ERR(phylink)) { in lan966x_probe_port()
[all …]
/linux-6.12.1/drivers/net/ethernet/freescale/fman/
Dmac.h29 struct phylink *phylink; member
/linux-6.12.1/drivers/net/pcs/
DKconfig18 This module provides helpers to phylink for managing the Lynx PCS
25 This module provides helpers to phylink for managing the LynxI PCS
/linux-6.12.1/drivers/net/ethernet/mscc/
Docelot.h49 struct phylink *phylink; member
Docelot_net.c540 phylink_start(priv->phylink); in ocelot_port_open()
549 phylink_stop(priv->phylink); in ocelot_port_stop()
1727 struct phylink *phylink; in ocelot_port_phylink_create() local
1761 phylink = phylink_create(&priv->phylink_config, in ocelot_port_phylink_create()
1764 if (IS_ERR(phylink)) { in ocelot_port_phylink_create()
1765 err = PTR_ERR(phylink); in ocelot_port_phylink_create()
1766 dev_err(dev, "Could not create phylink (%pe)\n", phylink); in ocelot_port_phylink_create()
1770 priv->phylink = phylink; in ocelot_port_phylink_create()
1772 err = phylink_of_phy_connect(phylink, portnp, 0); in ocelot_port_phylink_create()
1775 phylink_destroy(phylink); in ocelot_port_phylink_create()
[all …]
/linux-6.12.1/drivers/net/ethernet/wangxun/libwx/
Dwx_ethtool.c219 return phylink_ethtool_nway_reset(wx->phylink); in wx_nway_reset()
228 return phylink_ethtool_ksettings_get(wx->phylink, cmd); in wx_get_link_ksettings()
237 return phylink_ethtool_ksettings_set(wx->phylink, cmd); in wx_set_link_ksettings()
246 phylink_ethtool_get_pauseparam(wx->phylink, pause); in wx_get_pauseparam()
255 return phylink_ethtool_set_pauseparam(wx->phylink, pause); in wx_set_pauseparam()
/linux-6.12.1/drivers/net/ethernet/freescale/dpaa/
Ddpaa_ethtool.c62 return phylink_ethtool_ksettings_get(mac_dev->phylink, cmd); in dpaa_get_link_ksettings()
71 return phylink_ethtool_ksettings_set(mac_dev->phylink, cmd); in dpaa_set_link_ksettings()
99 return phylink_ethtool_nway_reset(mac_dev->phylink); in dpaa_nway_reset()
108 phylink_ethtool_get_pauseparam(mac_dev->phylink, epause); in dpaa_get_pauseparam()
117 return phylink_ethtool_set_pauseparam(mac_dev->phylink, epause); in dpaa_set_pauseparam()

1234