ptp_time.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public functions for the Precision Time Protocol time specification.
  9. *
  10. */
  11. #ifndef ZEPHYR_INCLUDE_NET_PTP_TIME_H_
  12. #define ZEPHYR_INCLUDE_NET_PTP_TIME_H_
  13. /**
  14. * @brief Precision Time Protocol time specification
  15. * @defgroup ptp_time PTP time
  16. * @ingroup networking
  17. * @{
  18. */
  19. #include <net/net_core.h>
  20. #include <toolchain.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @brief Precision Time Protocol Timestamp format.
  26. *
  27. * This structure represents a timestamp according
  28. * to the Precision Time Protocol standard.
  29. *
  30. * Seconds are encoded as a 48 bits unsigned integer.
  31. * Nanoseconds are encoded as a 32 bits unsigned integer.
  32. */
  33. struct net_ptp_time {
  34. /** Seconds encoded on 48 bits. */
  35. union {
  36. struct {
  37. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  38. uint32_t low;
  39. uint16_t high;
  40. uint16_t unused;
  41. #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  42. uint16_t unused;
  43. uint16_t high;
  44. uint32_t low;
  45. #else
  46. #error "Unknown byte order"
  47. #endif
  48. } _sec;
  49. uint64_t second;
  50. };
  51. /** Nanoseconds. */
  52. uint32_t nanosecond;
  53. };
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. /**
  58. * @brief Precision Time Protocol Extended Timestamp format.
  59. *
  60. * This structure represents an extended timestamp according
  61. * to the Precision Time Protocol standard.
  62. *
  63. * Seconds are encoded as 48 bits unsigned integer.
  64. * Fractional nanoseconds are encoded as 48 bits, their unit
  65. * is 2*(-16) ns.
  66. */
  67. struct net_ptp_extended_time {
  68. /** Seconds encoded on 48 bits. */
  69. union {
  70. struct {
  71. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  72. uint32_t low;
  73. uint16_t high;
  74. uint16_t unused;
  75. #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  76. uint16_t unused;
  77. uint16_t high;
  78. uint32_t low;
  79. #else
  80. #error "Unknown byte order"
  81. #endif
  82. } _sec;
  83. uint64_t second;
  84. };
  85. /** Fractional nanoseconds on 48 bits. */
  86. union {
  87. struct {
  88. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  89. uint32_t low;
  90. uint16_t high;
  91. uint16_t unused;
  92. #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  93. uint16_t unused;
  94. uint16_t high;
  95. uint32_t low;
  96. #else
  97. #error "Unknown byte order"
  98. #endif
  99. } _fns;
  100. uint64_t fract_nsecond;
  101. };
  102. } __packed;
  103. /**
  104. * @}
  105. */
  106. #endif /* ZEPHYR_INCLUDE_NET_PTP_TIME_H_ */