mdio.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for MDIO drivers.
  5. */
  6. /*
  7. * Copyright (c) 2021 IP-Logix Inc.
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_MDIO_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_MDIO_H_
  13. /**
  14. * @brief MDIO Interface
  15. * @defgroup mdio_interface MDIO Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <device.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @cond INTERNAL_HIDDEN
  26. *
  27. * These are for internal use only, so skip these in
  28. * public documentation.
  29. */
  30. /** Order of items in this enum must match the `protocol` dts binding */
  31. enum MDIO_PROTOCOL {
  32. CLAUSE_22 = 0,
  33. CLAUSE_45 = 1,
  34. MICREL_SMI = 2,
  35. };
  36. __subsystem struct mdio_driver_api {
  37. /** Enable the MDIO bus device */
  38. void (*bus_enable)(const struct device *dev);
  39. /** Disable the MDIO bus device */
  40. void (*bus_disable)(const struct device *dev);
  41. /** Read data from MDIO bus */
  42. int (*read)(const struct device *dev, uint8_t prtad, uint8_t devad,
  43. uint16_t *data);
  44. /** Write data to MDIO bus */
  45. int (*write)(const struct device *dev, uint8_t prtad, uint8_t devad,
  46. uint16_t data);
  47. };
  48. /**
  49. * @endcond
  50. */
  51. /**
  52. * @brief Enable MDIO bus
  53. *
  54. * @param[in] dev Pointer to the device structure for the controller
  55. *
  56. */
  57. __syscall void mdio_bus_enable(const struct device *dev);
  58. static inline void z_impl_mdio_bus_enable(const struct device *dev)
  59. {
  60. const struct mdio_driver_api *api =
  61. (const struct mdio_driver_api *)dev->api;
  62. return api->bus_enable(dev);
  63. }
  64. /**
  65. * @brief Disable MDIO bus and tri-state drivers
  66. *
  67. * @param[in] dev Pointer to the device structure for the controller
  68. *
  69. */
  70. __syscall void mdio_bus_disable(const struct device *dev);
  71. static inline void z_impl_mdio_bus_disable(const struct device *dev)
  72. {
  73. const struct mdio_driver_api *api =
  74. (const struct mdio_driver_api *)dev->api;
  75. return api->bus_disable(dev);
  76. }
  77. /**
  78. * @brief Read from MDIO Bus
  79. *
  80. * This routine provides a generic interface to perform a read on the
  81. * MDIO bus.
  82. *
  83. * @param[in] dev Pointer to the device structure for the controller
  84. * @param[in] prtad Port address
  85. * @param[in] devad Device address
  86. * @param data Pointer to receive read data
  87. *
  88. * @retval 0 If successful.
  89. * @retval -EIO General input / output error.
  90. * @retval -ETIMEDOUT If transaction timedout on the bus
  91. */
  92. __syscall int mdio_read(const struct device *dev, uint8_t prtad, uint8_t devad,
  93. uint16_t *data);
  94. static inline int z_impl_mdio_read(const struct device *dev, uint8_t prtad,
  95. uint8_t devad, uint16_t *data)
  96. {
  97. const struct mdio_driver_api *api =
  98. (const struct mdio_driver_api *)dev->api;
  99. return api->read(dev, prtad, devad, data);
  100. }
  101. /**
  102. * @brief Write to MDIO bus
  103. *
  104. * This routine provides a generic interface to perform a write on the
  105. * MDIO bus.
  106. *
  107. * @param[in] dev Pointer to the device structure for the controller
  108. * @param[in] prtad Port address
  109. * @param[in] devad Device address
  110. * @param[in] data Data to write
  111. *
  112. * @retval 0 If successful.
  113. * @retval -EIO General input / output error.
  114. * @retval -ETIMEDOUT If transaction timedout on the bus
  115. */
  116. __syscall int mdio_write(const struct device *dev, uint8_t prtad, uint8_t devad,
  117. uint16_t data);
  118. static inline int z_impl_mdio_write(const struct device *dev, uint8_t prtad,
  119. uint8_t devad, uint16_t data)
  120. {
  121. const struct mdio_driver_api *api =
  122. (const struct mdio_driver_api *)dev->api;
  123. return api->write(dev, prtad, devad, data);
  124. }
  125. #ifdef __cplusplus
  126. }
  127. #endif
  128. /**
  129. * @}
  130. */
  131. #include <syscalls/mdio.h>
  132. #endif /* ZEPHYR_INCLUDE_DRIVERS_MDIO_H_ */