Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / drivers / staging / csr / csr_time.h
blob2a45f3e4024d6c5fc32e4902b9f4ae81457cfbc9
1 #ifndef CSR_TIME_H__
2 #define CSR_TIME_H__
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
9 on the license terms.
11 *****************************************************************************/
13 #include <linux/types.h>
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 /*******************************************************************************
21 NAME
22 CsrTime
24 DESCRIPTION
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 *******************************************************************************/
30 typedef u32 CsrTime;
33 /*******************************************************************************
35 NAME
36 CsrTimeUtc
38 DESCRIPTION
39 Type to hold a value describing a UTC wallclock time expressed in
40 seconds and milliseconds elapsed since midnight January 1st 1970.
42 *******************************************************************************/
43 typedef struct
45 u32 sec;
46 u16 msec;
47 } CsrTimeUtc;
50 /*******************************************************************************
52 NAME
53 CsrTimeGet
55 DESCRIPTION
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.
67 PARAMETERS
68 high - Pointer to variable that will receive the high part of the
69 current system time. Passing NULL is valid.
71 RETURNS
72 Low part of current system time in microseconds.
74 *******************************************************************************/
75 CsrTime CsrTimeGet(CsrTime *high);
78 /*------------------------------------------------------------------*/
79 /* CsrTime Macros */
80 /*------------------------------------------------------------------*/
82 /*----------------------------------------------------------------------------*
83 * NAME
84 * CsrTimeAdd
86 * DESCRIPTION
87 * Add two time values. Adding the numbers can overflow the range of a
88 * CsrTime, so the user must be cautious.
90 * RETURNS
91 * CsrTime - the sum of "t1" and "t2".
93 *----------------------------------------------------------------------------*/
94 #define CsrTimeAdd(t1, t2) ((t1) + (t2))
96 /*----------------------------------------------------------------------------*
97 * NAME
98 * CsrTimeSub
100 * DESCRIPTION
101 * Subtract two time values. Subtracting the numbers can provoke an
102 * underflow, so the user must be cautious.
104 * RETURNS
105 * CsrTime - "t1" - "t2".
107 *----------------------------------------------------------------------------*/
108 #define CsrTimeSub(t1, t2) ((s32) (t1) - (s32) (t2))
110 #ifdef __cplusplus
112 #endif
114 #endif