Lines Matching +full:100 +full:base +full:- +full:t
8 * Copyright (c) 2021 IP-Logix Inc.
11 * SPDX-License-Identifier: Apache-2.0
33 /** 10Base-T Half-Duplex */
35 /** 10Base-T Full-Duplex */
37 /** 100Base-T Half-Duplex */
39 /** 100Base-T Full-Duplex */
41 /** 1000Base-T Half-Duplex */
43 /** 1000Base-T Full-Duplex */
45 /** 2.5GBase-T Full-Duplex */
47 /** 5GBase-T Full-Duplex */
70 * @brief Check if phy link speed is 100 Mbit/sec.
139 * @retval -EIO If communication with PHY failed.
140 * @retval -ENOTSUP If not supported.
146 (const struct ethphy_driver_api *)dev->api; in phy_configure_link()
148 return api->cfg_link(dev, speeds); in phy_configure_link()
162 * @retval -EIO If communication with PHY failed.
168 (const struct ethphy_driver_api *)dev->api; in phy_get_link_state()
170 return api->get_link(dev, state); in phy_get_link_state()
185 * @retval -ENOTSUP If not supported.
192 (const struct ethphy_driver_api *)dev->api; in phy_link_callback_set()
194 return api->link_cb_set(dev, callback, user_data); in phy_link_callback_set()
207 * @retval -EIO If communication with PHY failed.
213 (const struct ethphy_driver_api *)dev->api; in phy_read()
215 return api->read(dev, reg_addr, value); in phy_read()
228 * @retval -EIO If communication with PHY failed.
234 (const struct ethphy_driver_api *)dev->api; in phy_write()
236 return api->write(dev, reg_addr, value); in phy_write()