3 /*****************************************************************************
5 (c) Cambridge Silicon Radio Limited 2010
6 All rights reserved and confidential information of CSR
8 Refer to LICENSE.txt included with this source for details
11 *****************************************************************************/
13 #include <linux/types.h>
19 /*******************************************************************************
25 Type to hold a value describing the current system time, which is a
26 measure of time elapsed since some arbitrarily defined fixed time
27 reference, usually associated with system startup.
29 *******************************************************************************/
33 /*******************************************************************************
39 Type to hold a value describing a UTC wallclock time expressed in
40 seconds and milliseconds elapsed since midnight January 1st 1970.
42 *******************************************************************************/
50 /*******************************************************************************
56 Returns the current system time in a low and a high part. The low part
57 is expressed in microseconds. The high part is incremented when the low
58 part wraps to provide an extended range.
60 The caller may provide a NULL pointer as the high parameter. In this case
61 the function just returns the low part and ignores the high parameter.
63 Although the time is expressed in microseconds the actual resolution is
64 platform dependent and can be less. It is recommended that the
65 resolution is at least 10 milliseconds.
68 high - Pointer to variable that will receive the high part of the
69 current system time. Passing NULL is valid.
72 Low part of current system time in microseconds.
74 *******************************************************************************/
75 CsrTime
CsrTimeGet(CsrTime
*high
);
78 /*------------------------------------------------------------------*/
80 /*------------------------------------------------------------------*/
82 /*----------------------------------------------------------------------------*
87 * Add two time values. Adding the numbers can overflow the range of a
88 * CsrTime, so the user must be cautious.
91 * CsrTime - the sum of "t1" and "t2".
93 *----------------------------------------------------------------------------*/
94 #define CsrTimeAdd(t1, t2) ((t1) + (t2))
96 /*----------------------------------------------------------------------------*
101 * Subtract two time values. Subtracting the numbers can provoke an
102 * underflow, so the user must be cautious.
105 * CsrTime - "t1" - "t2".
107 *----------------------------------------------------------------------------*/
108 #define CsrTimeSub(t1, t2) ((s32) (t1) - (s32) (t2))