209 lines
6.5 KiB
C
209 lines
6.5 KiB
C
/****************************************************************************
|
|
* sched/clock/clock_adjtime.c
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#ifdef CONFIG_CLOCK_ADJTIME
|
|
|
|
#include <sys/time.h>
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
#include <debug.h>
|
|
|
|
#include <nuttx/irq.h>
|
|
#include <nuttx/arch.h>
|
|
|
|
#include "clock/clock.h"
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* Current adjtime implementation uses periodic clock tick to adjust clock
|
|
* period. Therefore this implementation will not work when tickless mode
|
|
* is enabled by CONFIG_SCHED_TICKLESS=y
|
|
*/
|
|
|
|
#ifdef CONFIG_SCHED_TICKLESS
|
|
# error CONFIG_CLOCK_ADJTIME is not supported when CONFIG_SCHED_TICKLESS \
|
|
is enabled!
|
|
#endif
|
|
|
|
/* Set slew limit. In real time systems we don't want the time to adjust
|
|
* too quickly. ADJTIME_SLEWLIMIT defines how many seconds can time change
|
|
* during each clock.
|
|
*/
|
|
|
|
#define ADJTIME_SLEWLIMIT (CONFIG_CLOCK_ADJTIME_SLEWLIMIT * 0.01)
|
|
|
|
/* Define system clock adjustment period. */
|
|
|
|
#define ADJTIME_PERIOD (CONFIG_CLOCK_ADJTIME_PERIOD * 0.01)
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: adjtime
|
|
*
|
|
* Description:
|
|
* The adjtime() function gradually adjusts the system clock (as returned
|
|
* by gettimeofday(2)). The amount of time by which the clock is to be
|
|
* adjusted is specified in the structure pointed to by delta.
|
|
*
|
|
* This structure has the following form:
|
|
*
|
|
* struct timeval
|
|
* {
|
|
* time_t tv_sec; (seconds)
|
|
* long tv_usec; (microseconds)
|
|
* };
|
|
*
|
|
* If the adjustment in delta is positive, then the system clock is
|
|
* speeded up by some small percentage until the adjustment has been
|
|
* completed. If the adjustment in delta is negative, then the clock is
|
|
* slowed down in a similar fashion.
|
|
*
|
|
* If a clock adjustment from an earlier adjtime() call is already in
|
|
* progress at the time of a later adjtime() call, and delta is not NULL
|
|
* for the later call, then the earlier adjustment is stopped, but any
|
|
* already completed part of that adjustment is not undone.
|
|
*
|
|
* If olddelta is not NULL, then the buffer that it points to is used to
|
|
* return the amount of time remaining from any previous adjustment that
|
|
* has not yet been completed.
|
|
*
|
|
* NOTE: This is not a POSIX interface but derives from 4.3BSD, System V.
|
|
* It is also supported for Linux compatibility.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int adjtime(FAR const struct timeval *delta, FAR struct timeval *olddelta)
|
|
{
|
|
irqstate_t flags;
|
|
long long adjust_usec;
|
|
long long period_usec;
|
|
long long adjust_usec_old;
|
|
long long count; /* Number of cycles over which
|
|
* we adjust the period
|
|
*/
|
|
long long incr; /* Period increment applied on
|
|
* every cycle.
|
|
*/
|
|
long long count_old; /* Previous number of cycles over which
|
|
* we adjust the period
|
|
*/
|
|
long long incr_old; /* Previous period increment applied on
|
|
* every cycle.
|
|
*/
|
|
long long incr_limit;
|
|
int is_negative;
|
|
|
|
is_negative = 0;
|
|
|
|
if (!delta)
|
|
{
|
|
set_errno(EINVAL);
|
|
return -1;
|
|
}
|
|
|
|
flags = enter_critical_section();
|
|
|
|
adjust_usec = (long long)delta->tv_sec * USEC_PER_SEC + delta->tv_usec;
|
|
|
|
if (adjust_usec < 0)
|
|
{
|
|
adjust_usec = -adjust_usec;
|
|
is_negative = 1;
|
|
}
|
|
|
|
/* Get period in usec. Target hardware has to provide support for
|
|
* this function call.
|
|
*/
|
|
|
|
up_get_timer_period(&period_usec);
|
|
|
|
/* Determine how much we want to adjust timer period and the number
|
|
* of cycles over which we want to do the adjustment.
|
|
*/
|
|
|
|
count = (USEC_PER_SEC * ADJTIME_PERIOD) / period_usec;
|
|
incr = adjust_usec / count;
|
|
|
|
/* Compute maximum possible period increase and check
|
|
* whether previously computed increase exceeds the maximum
|
|
* one.
|
|
*/
|
|
|
|
incr_limit = ADJTIME_SLEWLIMIT * period_usec;
|
|
if (incr > incr_limit)
|
|
{
|
|
/* It does... limit computed increase and increment count. */
|
|
|
|
incr = incr_limit;
|
|
count = adjust_usec / incr;
|
|
}
|
|
|
|
if (is_negative == 1)
|
|
{
|
|
/* Positive or negative? */
|
|
|
|
incr = -incr;
|
|
}
|
|
|
|
/* Ignore small differences. */
|
|
|
|
if (incr == 0)
|
|
{
|
|
count = 0;
|
|
}
|
|
|
|
leave_critical_section(flags);
|
|
|
|
/* Initialize clock adjustment and get old adjust values. */
|
|
|
|
clock_set_adjust(incr, count, &incr_old, &count_old);
|
|
|
|
adjust_usec_old = count_old * incr_old;
|
|
if (olddelta)
|
|
{
|
|
olddelta->tv_sec = adjust_usec_old / USEC_PER_SEC;
|
|
olddelta->tv_usec = adjust_usec_old;
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
|
|
#endif /* CONFIG_CLOCK_ADJTIME */
|