2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2014-08-09 04:43:02 +08:00
|
|
|
* sched/clock/clock_gettime.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-12-15 02:39:29 +08:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <time.h>
|
2011-10-03 01:53:17 +08:00
|
|
|
#include <assert.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2009-12-15 02:39:29 +08:00
|
|
|
|
2011-09-12 01:48:52 +08:00
|
|
|
#include <arch/irq.h>
|
2015-06-22 20:37:26 +08:00
|
|
|
#include <nuttx/arch.h>
|
2011-09-12 01:48:52 +08:00
|
|
|
|
2014-08-09 04:43:02 +08:00
|
|
|
#include "clock/clock.h"
|
2016-07-11 20:54:02 +08:00
|
|
|
#ifdef CONFIG_CLOCK_TIMEKEEPING
|
2016-07-11 06:14:25 +08:00
|
|
|
# include "clock/clock_timekeeping.h"
|
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Public Functions
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2015-10-03 07:43:18 +08:00
|
|
|
/****************************************************************************
|
2012-07-15 03:30:31 +08:00
|
|
|
* Name: clock_gettime
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Clock Functions based on POSIX APIs
|
|
|
|
*
|
2015-10-03 07:43:18 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
int clock_gettime(clockid_t clock_id, struct timespec *tp)
|
|
|
|
{
|
2014-08-15 17:55:41 +08:00
|
|
|
struct timespec ts;
|
2014-03-31 23:25:50 +08:00
|
|
|
uint32_t carry;
|
2007-02-18 07:21:28 +08:00
|
|
|
int ret = OK;
|
|
|
|
|
2016-06-12 06:42:42 +08:00
|
|
|
sinfo("clock_id=%d\n", clock_id);
|
2011-10-02 22:16:30 +08:00
|
|
|
DEBUGASSERT(tp != NULL);
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2014-06-24 01:01:31 +08:00
|
|
|
#ifdef CONFIG_CLOCK_MONOTONIC
|
2014-03-31 23:25:50 +08:00
|
|
|
/* CLOCK_MONOTONIC is an optional under POSIX: "If the Monotonic Clock
|
|
|
|
* option is supported, all implementations shall support a clock_id
|
|
|
|
* of CLOCK_MONOTONIC defined in <time.h>. This clock represents the
|
|
|
|
* monotonic clock for the system. For this clock, the value returned
|
|
|
|
* by clock_gettime() represents the amount of time (in seconds and
|
|
|
|
* nanoseconds) since an unspecified point in the past (for example,
|
|
|
|
* system start-up time, or the Epoch). This point does not change
|
|
|
|
* after system start-up time. The value of the CLOCK_MONOTONIC clock
|
|
|
|
* cannot be set via clock_settime(). This function shall fail if it
|
|
|
|
* is invoked with a clock_id argument of CLOCK_MONOTONIC."
|
|
|
|
*/
|
|
|
|
|
2020-12-05 16:40:48 +08:00
|
|
|
if (clock_id == CLOCK_MONOTONIC || clock_id == CLOCK_BOOTTIME)
|
2014-03-31 23:25:50 +08:00
|
|
|
{
|
2014-08-15 17:55:41 +08:00
|
|
|
/* The the time elapsed since the timer was initialized at power on
|
|
|
|
* reset.
|
|
|
|
*/
|
2014-03-31 23:25:50 +08:00
|
|
|
|
2020-05-04 22:15:10 +08:00
|
|
|
ret = clock_systime_timespec(tp);
|
2014-03-31 23:25:50 +08:00
|
|
|
}
|
2014-04-01 00:01:03 +08:00
|
|
|
else
|
|
|
|
#endif
|
2014-03-31 23:25:50 +08:00
|
|
|
|
|
|
|
/* CLOCK_REALTIME - POSIX demands this to be present. CLOCK_REALTIME
|
|
|
|
* represents the machine's best-guess as to the current wall-clock,
|
|
|
|
* time-of-day time. This means that CLOCK_REALTIME can jump forward and
|
|
|
|
* backward as the system time-of-day clock is changed.
|
2011-05-07 05:10:00 +08:00
|
|
|
*/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2014-04-01 00:01:03 +08:00
|
|
|
if (clock_id == CLOCK_REALTIME)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2015-02-25 21:24:03 +08:00
|
|
|
/* Get the elapsed time since the time-of-day was last set.
|
2020-05-04 22:15:10 +08:00
|
|
|
* clock_systime_timespec() provides the time since power was applied;
|
2014-08-15 17:55:41 +08:00
|
|
|
* the bias value corresponds to the time when the time-of-day was
|
|
|
|
* last set.
|
|
|
|
*/
|
|
|
|
|
2016-07-11 20:54:02 +08:00
|
|
|
#if defined(CONFIG_CLOCK_TIMEKEEPING)
|
2016-07-11 06:14:25 +08:00
|
|
|
ret = clock_timekeeping_get_wall_time(tp);
|
|
|
|
#else
|
2020-05-04 22:15:10 +08:00
|
|
|
ret = clock_systime_timespec(&ts);
|
2014-08-15 17:55:41 +08:00
|
|
|
if (ret == OK)
|
2011-05-07 05:10:00 +08:00
|
|
|
{
|
2017-04-21 22:45:57 +08:00
|
|
|
irqstate_t flags;
|
|
|
|
|
2014-03-31 23:25:50 +08:00
|
|
|
/* Add the base time to this. The base time is the time-of-day
|
|
|
|
* setting. When added to the elapsed time since the time-of-day
|
|
|
|
* was last set, this gives us the current time.
|
|
|
|
*/
|
2011-05-07 05:10:00 +08:00
|
|
|
|
arch, boards, drivers, include, sched, wireless: Change spinlock APIs.
Summary:
- This commit changes spinlock APIs (spin_lock_irqsave/spin_unlock_irqrestore)
- In the previous implementation, the global spinlock (i.e. g_irq_spin) was used.
- This commit allows to use caller specific spinlock but also supports to use
g_irq_spin for backword compatibility (In this case, NULL must be specified)
Impact:
- None
Testing:
- Tested with the following configurations
- spresnse:wifi, spresense:wifi_smp
- esp32-devkitc:smp (QEMU), sabre6-quad:smp (QEMU)
- maxi-bit:smp (QEMU), sim:smp
- stm32f4discovery:wifi
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
2021-02-08 08:21:26 +08:00
|
|
|
flags = spin_lock_irqsave(NULL);
|
2017-04-21 22:45:57 +08:00
|
|
|
|
2014-08-15 17:55:41 +08:00
|
|
|
ts.tv_sec += (uint32_t)g_basetime.tv_sec;
|
|
|
|
ts.tv_nsec += (uint32_t)g_basetime.tv_nsec;
|
2011-10-02 22:16:30 +08:00
|
|
|
|
arch, boards, drivers, include, sched, wireless: Change spinlock APIs.
Summary:
- This commit changes spinlock APIs (spin_lock_irqsave/spin_unlock_irqrestore)
- In the previous implementation, the global spinlock (i.e. g_irq_spin) was used.
- This commit allows to use caller specific spinlock but also supports to use
g_irq_spin for backword compatibility (In this case, NULL must be specified)
Impact:
- None
Testing:
- Tested with the following configurations
- spresnse:wifi, spresense:wifi_smp
- esp32-devkitc:smp (QEMU), sabre6-quad:smp (QEMU)
- maxi-bit:smp (QEMU), sim:smp
- stm32f4discovery:wifi
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
2021-02-08 08:21:26 +08:00
|
|
|
spin_unlock_irqrestore(NULL, flags);
|
2017-04-21 22:45:57 +08:00
|
|
|
|
2011-10-02 22:16:30 +08:00
|
|
|
/* Handle carry to seconds. */
|
|
|
|
|
2014-09-11 07:10:54 +08:00
|
|
|
if (ts.tv_nsec >= NSEC_PER_SEC)
|
2011-10-02 22:16:30 +08:00
|
|
|
{
|
2014-08-15 17:55:41 +08:00
|
|
|
carry = ts.tv_nsec / NSEC_PER_SEC;
|
|
|
|
ts.tv_sec += carry;
|
|
|
|
ts.tv_nsec -= (carry * NSEC_PER_SEC);
|
2011-10-02 22:16:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* And return the result to the caller. */
|
|
|
|
|
2014-08-15 17:55:41 +08:00
|
|
|
tp->tv_sec = ts.tv_sec;
|
|
|
|
tp->tv_nsec = ts.tv_nsec;
|
2011-10-02 22:16:30 +08:00
|
|
|
}
|
2016-07-11 20:54:02 +08:00
|
|
|
#endif /* CONFIG_CLOCK_TIMEKEEPING */
|
2011-10-02 22:16:30 +08:00
|
|
|
}
|
2011-05-07 05:10:00 +08:00
|
|
|
else
|
2014-08-15 17:55:41 +08:00
|
|
|
{
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for errors and set the errno value if necessary */
|
|
|
|
|
|
|
|
if (ret < 0)
|
2011-05-07 05:10:00 +08:00
|
|
|
{
|
2016-06-12 05:50:49 +08:00
|
|
|
serr("Returning ERROR\n");
|
2011-05-07 05:10:00 +08:00
|
|
|
|
2014-08-15 17:55:41 +08:00
|
|
|
set_errno(-ret);
|
2011-05-07 05:10:00 +08:00
|
|
|
ret = ERROR;
|
|
|
|
}
|
2014-08-15 17:55:41 +08:00
|
|
|
else
|
|
|
|
{
|
2016-06-12 06:42:42 +08:00
|
|
|
sinfo("Returning tp=(%d,%d)\n", (int)tp->tv_sec, (int)tp->tv_nsec);
|
2014-08-15 17:55:41 +08:00
|
|
|
}
|
2011-05-07 05:10:00 +08:00
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
return ret;
|
|
|
|
}
|