2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2014-08-08 22:43:02 +02:00
|
|
|
* sched/clock/clock_settime.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01: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 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01: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 00:21:28 +01:00
|
|
|
*
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <time.h>
|
2011-10-02 19:53:17 +02:00
|
|
|
#include <assert.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2011-10-02 00:09:00 +02:00
|
|
|
|
2015-02-13 15:41:34 +01:00
|
|
|
#include <nuttx/arch.h>
|
2016-02-14 15:17:46 +01:00
|
|
|
#include <nuttx/irq.h>
|
2015-02-13 15:41:34 +01:00
|
|
|
|
2014-08-08 22:43:02 +02:00
|
|
|
#include "clock/clock.h"
|
2016-07-11 14:54:02 +02:00
|
|
|
#ifdef CONFIG_CLOCK_TIMEKEEPING
|
2016-07-11 00:14:25 +02:00
|
|
|
# include "clock/clock_timekeeping.h"
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: clock_settime
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Clock Functions based on POSIX APIs
|
|
|
|
*
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-10-02 00:09:00 +02:00
|
|
|
int clock_settime(clockid_t clock_id, FAR const struct timespec *tp)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2021-04-11 01:58:15 +02:00
|
|
|
#ifndef CONFIG_CLOCK_TIMEKEEPING
|
2014-09-11 00:36:25 +02:00
|
|
|
struct timespec bias;
|
2011-10-02 16:16:30 +02:00
|
|
|
irqstate_t flags;
|
2021-04-11 01:58:15 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
int ret = OK;
|
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("clock_id=%d\n", clock_id);
|
2011-10-02 16:16:30 +02:00
|
|
|
DEBUGASSERT(tp != NULL);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2011-05-06 23:10:00 +02:00
|
|
|
/* CLOCK_REALTIME - POSIX demands this to be present. This is the wall
|
|
|
|
* time clock.
|
|
|
|
*/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2021-01-20 11:26:32 +01:00
|
|
|
if (clock_id == CLOCK_REALTIME &&
|
|
|
|
tp->tv_nsec >= 0 && tp->tv_nsec < 1000000000)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2016-07-11 14:54:02 +02:00
|
|
|
#ifndef CONFIG_CLOCK_TIMEKEEPING
|
2011-10-02 16:16:30 +02:00
|
|
|
/* Interrupts are disabled here so that the in-memory time
|
|
|
|
* representation and the RTC setting will be as close as
|
|
|
|
* possible.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
flags = enter_critical_section();
|
2011-10-02 16:16:30 +02:00
|
|
|
|
2014-09-11 00:36:25 +02:00
|
|
|
/* Get the elapsed time since power up (in milliseconds). This is a
|
|
|
|
* bias value that we need to use to correct the base time.
|
2007-02-18 00:21:28 +01:00
|
|
|
*/
|
|
|
|
|
2020-05-04 16:15:10 +02:00
|
|
|
clock_systime_timespec(&bias);
|
2014-09-11 00:36:25 +02:00
|
|
|
|
2015-05-18 14:34:54 +02:00
|
|
|
/* Save the new base time. */
|
|
|
|
|
|
|
|
g_basetime.tv_sec = tp->tv_sec;
|
|
|
|
g_basetime.tv_nsec = tp->tv_nsec;
|
|
|
|
|
2014-09-11 00:36:25 +02:00
|
|
|
/* Subtract that bias from the basetime so that when the system
|
|
|
|
* timer is again added to the base time, the result is the current
|
|
|
|
* time relative to basetime.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (g_basetime.tv_nsec < bias.tv_nsec)
|
|
|
|
{
|
|
|
|
g_basetime.tv_nsec += NSEC_PER_SEC;
|
|
|
|
g_basetime.tv_sec--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Result could be negative seconds */
|
|
|
|
|
|
|
|
g_basetime.tv_nsec -= bias.tv_nsec;
|
|
|
|
g_basetime.tv_sec -= bias.tv_sec;
|
2011-05-06 23:10:00 +02:00
|
|
|
|
2011-10-02 16:16:30 +02:00
|
|
|
/* Setup the RTC (lo- or high-res) */
|
2011-05-06 23:10:00 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_RTC
|
2014-08-15 11:55:41 +02:00
|
|
|
if (g_rtc_enabled)
|
2011-05-06 23:10:00 +02:00
|
|
|
{
|
2011-10-02 00:09:00 +02:00
|
|
|
up_rtc_settime(tp);
|
2014-04-13 22:32:20 +02:00
|
|
|
}
|
2011-05-06 23:10:00 +02:00
|
|
|
#endif
|
2019-10-24 18:49:28 +02:00
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
leave_critical_section(flags);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("basetime=(%ld,%lu) bias=(%ld,%lu)\n",
|
|
|
|
(long)g_basetime.tv_sec, (unsigned long)g_basetime.tv_nsec,
|
|
|
|
(long)bias.tv_sec, (unsigned long)bias.tv_nsec);
|
2016-07-11 00:14:25 +02:00
|
|
|
#else
|
|
|
|
ret = clock_timekeeping_set_wall_time(tp);
|
|
|
|
#endif
|
2011-05-06 23:10:00 +02:00
|
|
|
}
|
2014-04-13 22:32:20 +02:00
|
|
|
else
|
2011-05-06 23:10:00 +02:00
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
serr("Returning ERROR\n");
|
2011-09-11 19:48:52 +02:00
|
|
|
set_errno(EINVAL);
|
2011-05-06 23:10:00 +02:00
|
|
|
ret = ERROR;
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|