clock_gettime.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /****************************************************************************
  2. * sched/clock/clock_gettime.c
  3. *
  4. * Copyright (C) 2007, 2009, 2011, 2014, 2016 Gregory Nutt. All rights reserved.
  5. * Author: Gregory Nutt <gnutt@nuttx.org>
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in
  15. * the documentation and/or other materials provided with the
  16. * distribution.
  17. * 3. Neither the name NuttX nor the names of its contributors may be
  18. * used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  24. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  25. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  26. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  27. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  28. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  29. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  31. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  32. * POSSIBILITY OF SUCH DAMAGE.
  33. *
  34. ****************************************************************************/
  35. /****************************************************************************
  36. * Included Files
  37. ****************************************************************************/
  38. #include <nuttx/config.h>
  39. #include <stdint.h>
  40. #include <time.h>
  41. #include <assert.h>
  42. #include <errno.h>
  43. #include <debug.h>
  44. #include <arch/irq.h>
  45. #include <nuttx/arch.h>
  46. #include "clock/clock.h"
  47. #ifdef CONFIG_CLOCK_TIMEKEEPING
  48. # include "clock/clock_timekeeping.h"
  49. #endif
  50. /****************************************************************************
  51. * Public Functions
  52. ****************************************************************************/
  53. /****************************************************************************
  54. * Name: clock_gettime
  55. *
  56. * Description:
  57. * Clock Functions based on POSIX APIs
  58. *
  59. ****************************************************************************/
  60. int clock_gettime(clockid_t clock_id, struct timespec *tp)
  61. {
  62. struct timespec ts;
  63. uint32_t carry;
  64. int ret = OK;
  65. sinfo("clock_id=%d\n", clock_id);
  66. DEBUGASSERT(tp != NULL);
  67. #ifdef CONFIG_CLOCK_MONOTONIC
  68. /* CLOCK_MONOTONIC is an optional under POSIX: "If the Monotonic Clock
  69. * option is supported, all implementations shall support a clock_id
  70. * of CLOCK_MONOTONIC defined in <time.h>. This clock represents the
  71. * monotonic clock for the system. For this clock, the value returned
  72. * by clock_gettime() represents the amount of time (in seconds and
  73. * nanoseconds) since an unspecified point in the past (for example,
  74. * system start-up time, or the Epoch). This point does not change
  75. * after system start-up time. The value of the CLOCK_MONOTONIC clock
  76. * cannot be set via clock_settime(). This function shall fail if it
  77. * is invoked with a clock_id argument of CLOCK_MONOTONIC."
  78. */
  79. if (clock_id == CLOCK_MONOTONIC)
  80. {
  81. /* The the time elapsed since the timer was initialized at power on
  82. * reset.
  83. */
  84. ret = clock_systimespec(tp);
  85. }
  86. else
  87. #endif
  88. /* CLOCK_REALTIME - POSIX demands this to be present. CLOCK_REALTIME
  89. * represents the machine's best-guess as to the current wall-clock,
  90. * time-of-day time. This means that CLOCK_REALTIME can jump forward and
  91. * backward as the system time-of-day clock is changed.
  92. */
  93. if (clock_id == CLOCK_REALTIME)
  94. {
  95. /* Get the elapsed time since the time-of-day was last set.
  96. * clock_systimespec() provides the time since power was applied;
  97. * the bias value corresponds to the time when the time-of-day was
  98. * last set.
  99. */
  100. #if defined(CONFIG_CLOCK_TIMEKEEPING)
  101. ret = clock_timekeeping_get_wall_time(tp);
  102. #else
  103. ret = clock_systimespec(&ts);
  104. if (ret == OK)
  105. {
  106. irqstate_t flags;
  107. /* Add the base time to this. The base time is the time-of-day
  108. * setting. When added to the elapsed time since the time-of-day
  109. * was last set, this gives us the current time.
  110. */
  111. flags = spin_lock_irqsave();
  112. ts.tv_sec += (uint32_t)g_basetime.tv_sec;
  113. ts.tv_nsec += (uint32_t)g_basetime.tv_nsec;
  114. spin_unlock_irqrestore(flags);
  115. /* Handle carry to seconds. */
  116. if (ts.tv_nsec >= NSEC_PER_SEC)
  117. {
  118. carry = ts.tv_nsec / NSEC_PER_SEC;
  119. ts.tv_sec += carry;
  120. ts.tv_nsec -= (carry * NSEC_PER_SEC);
  121. }
  122. /* And return the result to the caller. */
  123. tp->tv_sec = ts.tv_sec;
  124. tp->tv_nsec = ts.tv_nsec;
  125. }
  126. #endif /* CONFIG_CLOCK_TIMEKEEPING */
  127. }
  128. else
  129. {
  130. ret = -EINVAL;
  131. }
  132. /* Check for errors and set the errno value if necessary */
  133. if (ret < 0)
  134. {
  135. serr("Returning ERROR\n");
  136. set_errno(-ret);
  137. ret = ERROR;
  138. }
  139. else
  140. {
  141. sinfo("Returning tp=(%d,%d)\n", (int)tp->tv_sec, (int)tp->tv_nsec);
  142. }
  143. return ret;
  144. }