2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2021-11-04 12:18:38 +01:00
|
|
|
* libs/libc/sched/clock_time2ticks.c
|
2007-03-21 18:21:26 +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-03-21 18:21:26 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-03-21 18:21:26 +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-03-21 18:21:26 +01:00
|
|
|
*
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2007-03-21 18:21:26 +01:00
|
|
|
* Included Files
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-21 18:21:26 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2007-03-21 18:21:26 +01:00
|
|
|
#include <time.h>
|
2021-06-08 20:00:55 +02:00
|
|
|
#include <assert.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
2021-11-04 12:18:38 +01:00
|
|
|
#include <nuttx/clock.h>
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2007-03-21 18:21:26 +01:00
|
|
|
* Public Functions
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: clock_time2ticks
|
2007-03-21 18:21:26 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2016-08-07 16:25:30 +02:00
|
|
|
* Convert a timespec delay to system timer ticks. This function is
|
|
|
|
* suitable for calculating relative time delays and does not depend on
|
|
|
|
* the other clock_* logic.
|
2007-03-21 18:21:26 +01:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-03-21 18:21:26 +01:00
|
|
|
* reltime - Convert this relative time to system clock ticks.
|
|
|
|
* ticks - Return the converted number of ticks here.
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-03-21 18:21:26 +01:00
|
|
|
* Always returns OK
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2017-04-21 16:51:31 +02:00
|
|
|
int clock_time2ticks(FAR const struct timespec *reltime,
|
2018-06-16 20:16:13 +02:00
|
|
|
FAR sclock_t *ticks)
|
2007-03-21 18:21:26 +01:00
|
|
|
{
|
2013-01-10 15:07:30 +01:00
|
|
|
#ifdef CONFIG_HAVE_LONG_LONG
|
|
|
|
int64_t relnsec;
|
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/* Convert the relative time into nanoseconds. The range of the int64_t
|
|
|
|
* is sufficiently large that there is no real need for range checking.
|
2013-01-10 15:07:30 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
relnsec = (int64_t)reltime->tv_sec * NSEC_PER_SEC +
|
|
|
|
(int64_t)reltime->tv_nsec;
|
2013-12-13 03:12:33 +01:00
|
|
|
|
2013-01-10 15:07:30 +01:00
|
|
|
/* Convert nanoseconds to clock ticks, rounding up to the smallest integer
|
|
|
|
* that is greater than or equal to the exact number of tick.
|
|
|
|
*/
|
|
|
|
|
2018-06-16 20:16:13 +02:00
|
|
|
*ticks = (sclock_t)((relnsec + NSEC_PER_TICK - 1) / NSEC_PER_TICK);
|
2013-01-10 15:07:30 +01:00
|
|
|
return OK;
|
|
|
|
#else
|
2009-12-14 19:39:29 +01:00
|
|
|
int32_t relusec;
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2013-01-10 15:07:30 +01:00
|
|
|
/* This function uses an int32_t to only the relative time in microseconds.
|
|
|
|
* that means that the maximum supported relative time is 2,147,487.647
|
|
|
|
* seconds
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if 0 // overkill
|
|
|
|
DEBUGASSERT(reltime->tv_sec < 2147487 ||
|
|
|
|
reltime->tv_sec == 2147487 &&
|
|
|
|
reltime->tv_nsec <= 647 * NSEC_PER_MSEC);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Convert the relative time into microseconds, rounding up to the smallest
|
|
|
|
* value that is greater than or equal to the exact number of microseconds.
|
|
|
|
*/
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2013-01-10 15:07:30 +01:00
|
|
|
relusec = reltime->tv_sec * USEC_PER_SEC +
|
|
|
|
(reltime->tv_nsec + NSEC_PER_USEC - 1) / NSEC_PER_USEC;
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2013-01-10 15:07:30 +01:00
|
|
|
/* Convert microseconds to clock ticks, rounding up to the smallest integer
|
|
|
|
* that is greater than or equal to the exact number of tick.
|
|
|
|
*/
|
2007-03-21 18:21:26 +01:00
|
|
|
|
2018-06-16 20:16:13 +02:00
|
|
|
*ticks = (sclock_t)((relusec + USEC_PER_TICK - 1) / USEC_PER_TICK);
|
2007-03-21 18:21:26 +01:00
|
|
|
return OK;
|
2013-01-10 15:07:30 +01:00
|
|
|
#endif
|
2007-03-21 18:21:26 +01:00
|
|
|
}
|