2016-08-07 16:32:11 +02:00
|
|
|
/****************************************************************************
|
2014-08-08 22:43:02 +02:00
|
|
|
* sched/clock/clock.h
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2017-04-21 16:45:57 +02:00
|
|
|
* Copyright (C) 2007-2009, 2014, 2017 Gregory Nutt. All rights reserved.
|
2012-07-14 21:30:31 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2008-02-11 20:16:45 +01:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2016-08-07 16:32:11 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-08-08 22:43:02 +02:00
|
|
|
#ifndef __SCHED_CLOCK_CLOCK_H
|
|
|
|
#define __SCHED_CLOCK_CLOCK_H
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-08-07 16:32:11 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2016-08-07 16:32:11 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-06-09 17:49:44 +02:00
|
|
|
#include <nuttx/config.h>
|
2009-12-14 20:30:18 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2011-10-02 16:16:30 +02:00
|
|
|
|
2007-09-09 13:58:50 +02:00
|
|
|
#include <nuttx/clock.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <nuttx/compiler.h>
|
|
|
|
|
2016-08-07 16:32:11 +02:00
|
|
|
/****************************************************************************
|
2011-10-02 16:16:30 +02:00
|
|
|
* Pre-processor Definitions
|
2016-08-07 16:32:11 +02:00
|
|
|
****************************************************************************/
|
2011-10-02 16:16:30 +02:00
|
|
|
/* Configuration ************************************************************/
|
|
|
|
/* If CONFIG_SYSTEM_TIME64 is selected and the CPU supports long long types,
|
|
|
|
* then a 64-bit system time will be used.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_HAVE_LONG_LONG
|
|
|
|
# undef CONFIG_SYSTEM_TIME64
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-08-07 16:32:11 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Type Definitions
|
2016-08-07 16:32:11 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-08-07 16:32:11 +02:00
|
|
|
/****************************************************************************
|
2015-10-03 00:30:35 +02:00
|
|
|
* Public Data
|
2016-08-07 16:32:11 +02:00
|
|
|
****************************************************************************/
|
2014-10-03 18:20:46 +02:00
|
|
|
|
2014-08-30 22:44:48 +02:00
|
|
|
#if !defined(CONFIG_SCHED_TICKLESS) && !defined(__HAVE_KERNEL_GLOBALS)
|
2014-08-29 01:00:03 +02:00
|
|
|
/* The system clock exists (CONFIG_SCHED_TICKLESS), but it not prototyped
|
|
|
|
* globally in include/nuttx/clock.h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
# ifdef CONFIG_SYSTEM_TIME64
|
|
|
|
extern volatile uint64_t g_system_timer;
|
|
|
|
# else
|
|
|
|
extern volatile uint32_t g_system_timer;
|
|
|
|
# endif
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-07-11 14:54:02 +02:00
|
|
|
#ifndef CONFIG_CLOCK_TIMEKEEPING
|
2014-08-29 01:00:03 +02:00
|
|
|
extern struct timespec g_basetime;
|
2016-07-11 00:14:25 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-08-07 16:32:11 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Function Prototypes
|
2016-08-07 16:32:11 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-11-12 14:00:41 +01:00
|
|
|
int clock_basetime(FAR struct timespec *tp);
|
|
|
|
|
2012-07-14 21:30:31 +02:00
|
|
|
void weak_function clock_initialize(void);
|
2014-08-07 02:29:05 +02:00
|
|
|
#ifndef CONFIG_SCHED_TICKLESS
|
2012-07-14 21:30:31 +02:00
|
|
|
void weak_function clock_timer(void);
|
2014-08-07 02:29:05 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-07-26 23:03:47 +02:00
|
|
|
int clock_abstime2ticks(clockid_t clockid,
|
|
|
|
FAR const struct timespec *abstime,
|
2018-06-16 20:16:13 +02:00
|
|
|
FAR sclock_t *ticks);
|
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);
|
|
|
|
int clock_ticks2time(sclock_t ticks, FAR struct timespec *reltime);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-08-08 22:43:02 +02:00
|
|
|
#endif /* __SCHED_CLOCK_CLOCK_H */
|