ptp_clock.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_PTP_CLOCK_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_PTP_CLOCK_H_
  8. #include <kernel.h>
  9. #include <stdint.h>
  10. #include <device.h>
  11. #include <sys/util.h>
  12. #include <net/ptp_time.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /* Name of the PTP clock driver */
  17. #if !defined(PTP_CLOCK_NAME)
  18. #define PTP_CLOCK_NAME "PTP_CLOCK"
  19. #endif
  20. __subsystem struct ptp_clock_driver_api {
  21. int (*set)(const struct device *dev, struct net_ptp_time *tm);
  22. int (*get)(const struct device *dev, struct net_ptp_time *tm);
  23. int (*adjust)(const struct device *dev, int increment);
  24. int (*rate_adjust)(const struct device *dev, float ratio);
  25. };
  26. /**
  27. * @brief Set the time of the PTP clock.
  28. *
  29. * @param dev PTP clock device
  30. * @param tm Time to set
  31. *
  32. * @return 0 if ok, <0 if error
  33. */
  34. static inline int ptp_clock_set(const struct device *dev,
  35. struct net_ptp_time *tm)
  36. {
  37. const struct ptp_clock_driver_api *api =
  38. (const struct ptp_clock_driver_api *)dev->api;
  39. return api->set(dev, tm);
  40. }
  41. /**
  42. * @brief Get the time of the PTP clock.
  43. *
  44. * @param dev PTP clock device
  45. * @param tm Where to store the current time.
  46. *
  47. * @return 0 if ok, <0 if error
  48. */
  49. __syscall int ptp_clock_get(const struct device *dev, struct net_ptp_time *tm);
  50. static inline int z_impl_ptp_clock_get(const struct device *dev,
  51. struct net_ptp_time *tm)
  52. {
  53. const struct ptp_clock_driver_api *api =
  54. (const struct ptp_clock_driver_api *)dev->api;
  55. return api->get(dev, tm);
  56. }
  57. /**
  58. * @brief Adjust the PTP clock time.
  59. *
  60. * @param dev PTP clock device
  61. * @param increment Increment of the clock in nanoseconds
  62. *
  63. * @return 0 if ok, <0 if error
  64. */
  65. static inline int ptp_clock_adjust(const struct device *dev, int increment)
  66. {
  67. const struct ptp_clock_driver_api *api =
  68. (const struct ptp_clock_driver_api *)dev->api;
  69. return api->adjust(dev, increment);
  70. }
  71. /**
  72. * @brief Adjust the PTP clock time change rate when compared to its neighbor.
  73. *
  74. * @param dev PTP clock device
  75. * @param rate Rate of the clock time change
  76. *
  77. * @return 0 if ok, <0 if error
  78. */
  79. static inline int ptp_clock_rate_adjust(const struct device *dev, float rate)
  80. {
  81. const struct ptp_clock_driver_api *api =
  82. (const struct ptp_clock_driver_api *)dev->api;
  83. return api->rate_adjust(dev, rate);
  84. }
  85. #ifdef __cplusplus
  86. }
  87. #endif
  88. #include <syscalls/ptp_clock.h>
  89. #endif /* ZEPHYR_INCLUDE_DRIVERS_PTP_CLOCK_H_ */