vmkdrivers/BLD/build/HEADERS/vmkapi-current-all-public/vmkernel64/release/base/vmkapi_time.h

398 lines
13 KiB
C
Raw Normal View History

2015-10-23 19:21:55 +00:00
/* **********************************************************
2015-10-23 19:48:45 +00:00
* Copyright 2007 - 2010 VMware, Inc. All rights reserved.
2015-10-23 19:21:55 +00:00
* **********************************************************/
/*
* @VMKAPIMOD_LICENSE@
*/
/*
***********************************************************************
* Time */ /**
*
2015-10-23 19:48:45 +00:00
* \addtogroup Core
* @{
2015-10-23 19:21:55 +00:00
* \defgroup Time Time and Timers
*
* @{
***********************************************************************
*/
#ifndef _VMKAPI_TIME_H_
#define _VMKAPI_TIME_H_
/** \cond never */
#ifndef VMK_HEADER_INCLUDED_FROM_VMKAPI_H
#error This vmkapi file should never be included directly but only via vmkapi.h
#endif
/** \endcond never */
/** \brief Known invalid value for a timer */
2015-10-23 19:48:45 +00:00
#define VMK_INVALID_TIMER ((vmk_Timer)NULL)
2015-10-23 19:21:55 +00:00
typedef vmk_int64 vmk_TimerRelCycles;
typedef vmk_uint64 vmk_TimerCycles;
typedef vmk_AddrCookie vmk_TimerCookie;
typedef void (*vmk_TimerCallback)(vmk_TimerCookie data);
2015-10-23 19:48:45 +00:00
typedef struct vmk_TimerInt *vmk_Timer;
2015-10-23 19:21:55 +00:00
/**
2015-10-23 19:48:45 +00:00
* \brief Representation for Time
2015-10-23 19:21:55 +00:00
*/
typedef struct {
vmk_int64 sec; /* seconds */
vmk_int64 usec; /* microseconds */
} vmk_TimeVal;
2015-10-23 19:48:45 +00:00
/**
* \brief Timer Attributes
*/
typedef vmk_uint64 vmk_TimerAttributes;
/** One shot timer */
#define VMK_TIMER_ATTR_NONE (0)
/** Periodic timer */
#define VMK_TIMER_ATTR_PERIODIC (1 << 0)
2015-10-23 19:21:55 +00:00
/* Convenient time constants */
#define VMK_USEC_PER_SEC 1000000
#define VMK_MSEC_PER_SEC 1000
#define VMK_USEC_PER_MSEC 1000
2015-10-23 19:48:45 +00:00
/* Constants for specifying special timeouts. */
/**
* \brief Constant for specifying a nonblocking timeout.
*/
#define VMK_TIMEOUT_NONBLOCKING (0)
/**
* \brief Constant for specifying an unlimited timeout.
2015-10-23 19:21:55 +00:00
*/
2015-10-23 19:48:45 +00:00
#define VMK_TIMEOUT_UNLIMITED_MS (VMK_UINT32_MAX)
2015-10-23 19:21:55 +00:00
/*
***********************************************************************
* vmk_GetTimerCycles -- */ /**
*
* \brief Return the time elapsed since the VMKernel was loaded.
*
2015-10-23 19:48:45 +00:00
* The time is obtained from a clock that is fast to read (typically
* under 100 CPU cycles) but that may not be exactly synchronized
* across different physical CPUs. Therefore, time may appear to go
* backward slightly (typically less than 100 usec) if you compare
* readings taken close together in time on different PCPUs. Most
* applications can deal with this behavior by always treating the
* difference between two times as a signed quantity and (if needed)
* treating a negative difference as zero. See also vmk_GetUptime.
*
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_TimerCycles vmk_GetTimerCycles(void);
/*
***********************************************************************
* vmk_TimerCyclesPerSecond -- */ /**
*
* \brief Return the frequency in Hz of the vmk_GetTimerCycles() clock.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_uint64 vmk_TimerCyclesPerSecond(void);
/*
***********************************************************************
* vmk_TimerUSToTC -- */ /**
*
* \brief Convert signed microseconds into signed timer cycles.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_TimerRelCycles vmk_TimerUSToTC(
vmk_int64 us);
/*
***********************************************************************
* vmk_TimerTCToUS -- */ /**
*
* \brief Convert signed timer cycles into signed microseconds.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_int64 vmk_TimerTCToUS(
vmk_TimerRelCycles cycles);
/*
***********************************************************************
* vmk_TimerMSToTC -- */ /**
*
* \brief Convert signed milliseconds into signed timer cycles.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_TimerRelCycles vmk_TimerMSToTC(
vmk_int64 ms);
/*
***********************************************************************
* vmk_TimerTCToMS -- */ /**
*
* \brief Convert signed timer cycles into signed milliseconds.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_int64 vmk_TimerTCToMS(
vmk_TimerRelCycles cycles);
/*
***********************************************************************
* vmk_TimerUnsignedUSToTC -- */ /**
*
* \brief Convert unsigned microseconds into unsigned timer cycles.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_TimerCycles vmk_TimerUnsignedUSToTC(
vmk_uint64 us);
/*
***********************************************************************
* vmk_TimerUnsignedTCToUS -- */ /**
*
* \brief Convert unsigned timer cycles into unsigned microseconds.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_uint64 vmk_TimerUnsignedTCToUS(
vmk_TimerCycles cycles);
/*
***********************************************************************
* vmk_TimerUnsignedMSToTC -- */ /**
*
* \brief Convert unsigned millieconds into unsigned timer cycles.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_TimerCycles vmk_TimerUnsignedMSToTC(
vmk_uint64 ms);
/*
***********************************************************************
* vmk_TimerUnsignedTCToMS -- */ /**
*
* \brief Convert unsigned timer cycles into unsigned milliseconds.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
vmk_uint64 vmk_TimerUnsignedTCToMS(
vmk_TimerCycles cycles);
2015-10-23 19:48:45 +00:00
2015-10-23 19:21:55 +00:00
/*
***********************************************************************
* VMK_ABS_TIMEOUT_MS -- */ /**
*
* \brief Convert a delay in milliseconds into an absolute timeout in
* milliseconds.
*
* \param[in] delay_ms Millisecond delay to convert to absolute time.
*
* \return If delay_ms is nonzero, returns the absolute time in
* milliseconds that is delay_ms from the time of the call. If
* delay_ms is 0, returns 0, avoiding a call to vmk_GetTimerCycles.
*
***********************************************************************
*/
#define VMK_ABS_TIMEOUT_MS(delay_ms) \
((delay_ms) ? vmk_TimerUnsignedTCToMS(vmk_GetTimerCycles()) + (delay_ms) : 0)
/*
***********************************************************************
* vmk_GetTimeOfDay -- */ /**
*
* \brief Get the time in vmk_TimeVal representation.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
void vmk_GetTimeOfDay(
vmk_TimeVal *tv);
/*
***********************************************************************
* vmk_GetUptime -- */ /**
*
* \brief Get the uptime in vmk_TimeVal representation.
*
2015-10-23 19:48:45 +00:00
* vmk_GetUptime returns the system uptime as measured by a
* rate-corrected clock. The zero point is the same as that of
* vmk_GetTimerCycles, but a rate correction computed by the system's
* clock synchronization daemon is applied to measure the uptime more
* accurately. Note that this implies vmk_GetUptime may run slightly
* faster or slower than vmk_GetTimerCycles. Unlike
* vmk_GetTimerCycles, vmk_GetUptime contains internal synchronization
* that ensures it cannot appear to go backward even if you compare
* readings taken on different physical CPUs. Unlike
* vmk_GetTimeOfDay, which is rate-corrected in the same way but also
* can be reset from user space by the settimeofday system call,
* vmk_GetUptime always moves forward smoothly. The synchronization
* and rate-correction make vmk_GetUptime slower to read than
* vmk_GetTimerCycles.
*
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
void vmk_GetUptime(
vmk_TimeVal *tv);
/*
***********************************************************************
* vmk_DelayUsecs -- */ /**
*
* \brief Spin-wait for a specified number of microseconds.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
***********************************************************************
*/
void vmk_DelayUsecs(
vmk_uint32 uSecs);
2015-10-23 19:48:45 +00:00
2015-10-23 19:21:55 +00:00
/*
***********************************************************************
2015-10-23 19:48:45 +00:00
* vmk_TimerSchedule -- */ /**
2015-10-23 19:21:55 +00:00
*
2015-10-23 19:48:45 +00:00
* \brief Schedule a timer
2015-10-23 19:21:55 +00:00
*
* The VMKernel can schedule simultaneously a limited number of timers
* for each CPU.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
* \warning Timers are a limited resource. The VMKernel does not
* guarantee to provide more than 100 concurrent timers per CPU
* system-wide, and exceeding the limit is a fatal error.
*
2015-10-23 19:48:45 +00:00
* \param[in] moduleID ID of the module to which callback belongs
* \param[in] callback Timer callback.
* \param[in] data Argument passed to the timer callback on
* timeout.
* \param[in] timeoutUS Timeout in microseconds.
* \param[in] attributes Additional timer attributes
* \param[in] lockDomain Lock domain in which to check the lock rank.
* Note that if lockDomain is set to invalid
* then rank has to be set to unranked and if
* lockDomain is set to a valid value then
* rank has to contain a valid rank value.
* \param[in] lockRank Rank of the timer
* \param[out] timer Timer Handle
*
2015-10-23 19:21:55 +00:00
* \retval VMK_NO_RESOURCES Couldn't schedule the timer.
* \retval VMK_OK The timer was successfully scheduled.
*
***********************************************************************
*/
2015-10-23 19:48:45 +00:00
VMK_ReturnStatus vmk_TimerSchedule(
vmk_ModuleID moduleID,
2015-10-23 19:21:55 +00:00
vmk_TimerCallback callback,
vmk_TimerCookie data,
2015-10-23 19:48:45 +00:00
vmk_int64 timeoutUS,
vmk_TimerAttributes attributes,
vmk_LockDomainID lockDomain,
vmk_LockRank lockRank,
2015-10-23 19:21:55 +00:00
vmk_Timer *timer);
/*
***********************************************************************
2015-10-23 19:48:45 +00:00
* vmk_TimerCancel -- */ /**
2015-10-23 19:21:55 +00:00
*
* \brief Cancel a scheduled timer
*
2015-10-23 19:48:45 +00:00
* If wait is set to TRUE and the timer is currently executing, waits
* until the timer has finished executing before returning. If wait is
* set to FALSE, returns immediately after attempting to cancel the
* timer, even if the timer is still executing.
2015-10-23 19:21:55 +00:00
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
* \warning If wait is set to TRUE then this function must not be
* called from the timer callback itself. It must be called
* with current lock rank less than the timer's rank.
2015-10-23 19:21:55 +00:00
*
* \param[in] timer A timer reference.
2015-10-23 19:48:45 +00:00
* \param[in] wait Determines whether to wait for a timer that is
* currently executing.
2015-10-23 19:21:55 +00:00
*
* \retval VMK_OK The timer was successfully cancelled. If the
* timer was one-shot, it did not fire and
* never will.
* \retval VMK_NOT_FOUND The timer had previously been removed, was a
* one-shot that already fired, or is
* VMK_INVALID_TIMER.
*
***********************************************************************
*/
2015-10-23 19:48:45 +00:00
VMK_ReturnStatus vmk_TimerCancel(
vmk_Timer timer,
vmk_Bool wait);
2015-10-23 19:21:55 +00:00
/*
***********************************************************************
* vmk_TimerIsPending -- */ /**
*
* \brief Query a timer to see if it is pending.
*
2015-10-23 19:48:45 +00:00
* \note This function will not block.
*
2015-10-23 19:21:55 +00:00
* \param[in] timer A timer reference.
*
* \retval VMK_TRUE The timer is pending. For one-shot timers, this
* means the timer has neither fired nor been removed.
* For periodic timers, it means the timer has not
* been removed.
* \retval VMK_FALSE The timer is not pending. For one-shot timers,
* this means the timer has already fired, is in
* the process of firing, or has been removed. For
* periodic timers, it means the timer has been
* removed. VMK_FALSE is also returned for
* VMK_INVALID_TIMER.
*
***********************************************************************
*/
vmk_Bool vmk_TimerIsPending(
vmk_Timer timer);
#endif /* _VMKAPI_TIME_H_ */
/** @} */
2015-10-23 19:48:45 +00:00
/** @} */