phy.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for Ethernet PHY drivers.
  5. */
  6. /*
  7. * Copyright (c) 2021 IP-Logix Inc.
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_PHY_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_PHY_H_
  13. /**
  14. * @brief Ethernet PHY Interface
  15. * @defgroup ethernet_phy Ethernet PHY Interface
  16. * @ingroup networking
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <device.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /** @brief Ethernet link speeds. */
  25. enum phy_link_speed {
  26. /** 10Base-T Half-Duplex */
  27. LINK_HALF_10BASE_T = BIT(0),
  28. /** 10Base-T Full-Duplex */
  29. LINK_FULL_10BASE_T = BIT(1),
  30. /** 100Base-T Half-Duplex */
  31. LINK_HALF_100BASE_T = BIT(2),
  32. /** 100Base-T Full-Duplex */
  33. LINK_FULL_100BASE_T = BIT(3),
  34. };
  35. #define PHY_LINK_IS_FULL_DUPLEX(x) (x & (BIT(1) | BIT(3)))
  36. #define PHY_LINK_IS_SPEED_100M(x) (x & (BIT(2) | BIT(3)))
  37. /** @brief Link state */
  38. struct phy_link_state {
  39. /** Link speed */
  40. enum phy_link_speed speed;
  41. /** When true the link is active and connected */
  42. bool is_up;
  43. };
  44. /**
  45. * @typedef phy_callback_t
  46. * @brief Define the callback function signature for
  47. * `phy_link_callback_set()` function.
  48. *
  49. * @param dev PHY device structure
  50. * @param state Pointer to link_state structure.
  51. * @param user_data Pointer to data specified by user
  52. */
  53. typedef void (*phy_callback_t)(const struct device *dev,
  54. struct phy_link_state *state,
  55. void *user_data);
  56. /**
  57. * @cond INTERNAL_HIDDEN
  58. *
  59. * These are for internal use only, so skip these in
  60. * public documentation.
  61. */
  62. __subsystem struct ethphy_driver_api {
  63. /** Get link state */
  64. int (*get_link)(const struct device *dev,
  65. struct phy_link_state *state);
  66. /** Configure link */
  67. int (*cfg_link)(const struct device *dev,
  68. enum phy_link_speed adv_speeds);
  69. /** Set callback to be invoked when link state changes. */
  70. int (*link_cb_set)(const struct device *dev, phy_callback_t cb,
  71. void *user_data);
  72. /** Read PHY register */
  73. int (*read)(const struct device *dev, uint16_t reg_addr,
  74. uint32_t *data);
  75. /** Write PHY register */
  76. int (*write)(const struct device *dev, uint16_t reg_addr,
  77. uint32_t data);
  78. };
  79. /**
  80. * @endcond
  81. */
  82. /**
  83. * @brief Configure PHY link
  84. *
  85. * This route configures the advertised link speeds.
  86. *
  87. * @param[in] dev PHY device structure
  88. * @param speeds OR'd link speeds to be advertised by the PHY
  89. *
  90. * @retval 0 If successful.
  91. * @retval -EIO If communication with PHY failed.
  92. * @retval -ENOTSUP If not supported.
  93. */
  94. __syscall int phy_configure_link(const struct device *dev,
  95. enum phy_link_speed speeds);
  96. static inline int z_impl_phy_configure_link(const struct device *dev,
  97. enum phy_link_speed speeds)
  98. {
  99. const struct ethphy_driver_api *api =
  100. (const struct ethphy_driver_api *)dev->api;
  101. return api->cfg_link(dev, speeds);
  102. }
  103. /**
  104. * @brief Get PHY link state
  105. *
  106. * Returns the current state of the PHY link. This can be used by
  107. * to determine when a link is up and the negotiated link speed.
  108. *
  109. *
  110. * @param[in] dev PHY device structure
  111. * @param state Pointer to receive PHY state
  112. *
  113. * @retval 0 If successful.
  114. * @retval -EIO If communication with PHY failed.
  115. */
  116. __syscall int phy_get_link_state(const struct device *dev,
  117. struct phy_link_state *state);
  118. static inline int z_impl_phy_get_link_state(const struct device *dev,
  119. struct phy_link_state *state)
  120. {
  121. const struct ethphy_driver_api *api =
  122. (const struct ethphy_driver_api *)dev->api;
  123. return api->get_link(dev, state);
  124. }
  125. /**
  126. * @brief Set link state change callback
  127. *
  128. * Sets a callback that is invoked when link state changes. This is the
  129. * preferred method for ethernet drivers to be notified of the PHY link
  130. * state change.
  131. *
  132. * @param[in] dev PHY device structure
  133. * @param callback Callback handler
  134. * @param user_data Pointer to data specified by user.
  135. *
  136. * @retval 0 If successful.
  137. * @retval -ENOTSUP If not supported.
  138. */
  139. __syscall int phy_link_callback_set(const struct device *dev,
  140. phy_callback_t callback,
  141. void *user_data);
  142. static inline int z_impl_phy_link_callback_set(const struct device *dev,
  143. phy_callback_t callback,
  144. void *user_data)
  145. {
  146. const struct ethphy_driver_api *api =
  147. (const struct ethphy_driver_api *)dev->api;
  148. return api->link_cb_set(dev, callback, user_data);
  149. }
  150. /**
  151. * @brief Read PHY registers
  152. *
  153. * This routine provides a generic interface to read from a PHY register.
  154. *
  155. * @param[in] dev PHY device structure
  156. * @param[in] reg_addr Register address
  157. * @param value Pointer to receive read value
  158. *
  159. * @retval 0 If successful.
  160. * @retval -EIO If communication with PHY failed.
  161. */
  162. __syscall int phy_read(const struct device *dev, uint16_t reg_addr,
  163. uint32_t *value);
  164. static inline int z_impl_phy_read(const struct device *dev, uint16_t reg_addr,
  165. uint32_t *value)
  166. {
  167. const struct ethphy_driver_api *api =
  168. (const struct ethphy_driver_api *)dev->api;
  169. return api->read(dev, reg_addr, value);
  170. }
  171. /**
  172. * @brief Write PHY register
  173. *
  174. * This routine provides a generic interface to write to a PHY register.
  175. *
  176. * @param[in] dev PHY device structure
  177. * @param[in] reg_addr Register address
  178. * @param[in] value Value to write
  179. *
  180. * @retval 0 If successful.
  181. * @retval -EIO If communication with PHY failed.
  182. */
  183. __syscall int phy_write(const struct device *dev, uint16_t reg_addr,
  184. uint32_t value);
  185. static inline int z_impl_phy_write(const struct device *dev, uint16_t reg_addr,
  186. uint32_t value)
  187. {
  188. const struct ethphy_driver_api *api =
  189. (const struct ethphy_driver_api *)dev->api;
  190. return api->write(dev, reg_addr, value);
  191. }
  192. #ifdef __cplusplus
  193. }
  194. #endif
  195. /**
  196. * @}
  197. */
  198. #include <syscalls/phy.h>
  199. #endif /* ZEPHYR_INCLUDE_DRIVERS_PHY_H_ */