2 * Copyright (c) 2000-2008 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
34 #ifndef _KERN_CLOCK_H_
35 #define _KERN_CLOCK_H_
38 #include <mach/mach_types.h>
39 #include <mach/clock_types.h>
40 #include <mach/message.h>
41 #include <mach/mach_time.h>
43 #include <kern/kern_types.h>
45 #include <sys/cdefs.h>
49 typedef unsigned long clock_sec_t
;
50 typedef unsigned int clock_usec_t
, clock_nsec_t
;
54 typedef uint32_t clock_sec_t
;
55 typedef uint32_t clock_usec_t
, clock_nsec_t
;
59 #ifdef MACH_KERNEL_PRIVATE
61 #include <kern/queue.h>
64 * Clock operations list structure. Contains vectors to machine
65 * dependent clock routines.
68 int (*c_config
)(void); /* configuration */
70 int (*c_init
)(void); /* initialize */
72 kern_return_t (*c_gettime
)( /* get time */
73 mach_timespec_t
*cur_time
);
75 kern_return_t (*c_getattr
)( /* get attributes */
76 clock_flavor_t flavor
,
78 mach_msg_type_number_t
*count
);
80 typedef struct clock_ops
*clock_ops_t
;
81 typedef struct clock_ops clock_ops_data_t
;
84 * Actual clock object data structure. Contains the machine
85 * dependent operations list and clock operation ports.
88 clock_ops_t cl_ops
; /* operations list */
89 struct ipc_port
*cl_service
; /* service port */
90 struct ipc_port
*cl_control
; /* control port */
92 typedef struct clock clock_data_t
;
95 * Configure the clock system.
97 extern void clock_config(void);
98 extern void clock_oldconfig(void);
101 * Initialize the clock system.
103 extern void clock_init(void);
104 extern void clock_oldinit(void);
106 extern void clock_timebase_init(void);
109 * Initialize the clock ipc service facility.
111 extern void clock_service_create(void);
113 extern void clock_gettimeofday_set_commpage(
118 clock_usec_t
*microsecs
);
120 extern void machine_delay_until(
123 #include <stat_time.h>
125 #if STAT_TIME || GPROF
127 extern void hertz_tick(
129 boolean_t usermode
, /* executing user code */
132 #endif /* STAT_TIME */
134 extern uint32_t hz_tick_interval
;
136 extern void absolutetime_to_nanotime(
139 clock_nsec_t
*nanosecs
);
141 extern void nanotime_to_absolutetime(
143 clock_nsec_t nanosecs
,
146 #endif /* MACH_KERNEL_PRIVATE */
150 #ifdef XNU_KERNEL_PRIVATE
152 extern void clock_adjtime(
156 extern void clock_initialize_calendar(void);
158 extern void clock_wakeup_calendar(void);
160 extern void clock_gettimeofday(
162 clock_usec_t
*microsecs
);
164 extern void clock_set_calendar_microtime(
166 clock_usec_t microsecs
);
168 extern void clock_get_boottime_nanotime(
170 clock_nsec_t
*nanosecs
);
172 extern void absolutetime_to_microtime(
175 clock_usec_t
*microsecs
);
177 extern void clock_deadline_for_periodic_event(
184 extern void clock_get_calendar_nanotime_nowait(
186 clock_nsec_t
*nanosecs
);
188 #endif /* CONFIG_DTRACE */
190 #endif /* XNU_KERNEL_PRIVATE */
192 extern void clock_get_calendar_microtime(
194 clock_usec_t
*microsecs
);
196 extern void clock_get_calendar_nanotime(
198 clock_nsec_t
*nanosecs
);
200 extern void clock_get_system_microtime(
202 clock_usec_t
*microsecs
);
204 extern void clock_get_system_nanotime(
206 clock_nsec_t
*nanosecs
);
208 extern void clock_timebase_info(
209 mach_timebase_info_t info
);
211 extern void clock_get_uptime(
214 extern void clock_interval_to_deadline(
216 uint32_t scale_factor
,
219 extern void clock_interval_to_absolutetime_interval(
221 uint32_t scale_factor
,
224 extern void clock_absolutetime_interval_to_deadline(
228 extern void clock_delay_until(
231 extern void absolutetime_to_nanoseconds(
235 extern void nanoseconds_to_absolutetime(
236 uint64_t nanoseconds
,
239 #ifdef KERNEL_PRIVATE
242 * Obsolete interfaces.
247 #define MACH_TIMESPEC_SEC_MAX (0 - 1)
248 #define MACH_TIMESPEC_NSEC_MAX (NSEC_PER_SEC - 1)
250 #define MACH_TIMESPEC_MAX ((mach_timespec_t) { \
251 MACH_TIMESPEC_SEC_MAX, \
252 MACH_TIMESPEC_NSEC_MAX } )
253 #define MACH_TIMESPEC_ZERO ((mach_timespec_t) { 0, 0 } )
255 #define ADD_MACH_TIMESPEC_NSEC(t1, nsec) \
257 (t1)->tv_nsec += (clock_res_t)(nsec); \
258 if ((clock_res_t)(nsec) > 0 && \
259 (t1)->tv_nsec >= NSEC_PER_SEC) { \
260 (t1)->tv_nsec -= NSEC_PER_SEC; \
263 else if ((clock_res_t)(nsec) < 0 && \
264 (t1)->tv_nsec < 0) { \
265 (t1)->tv_nsec += NSEC_PER_SEC; \
271 extern mach_timespec_t
clock_get_system_value(void);
273 extern mach_timespec_t
clock_get_calendar_value(void);
277 #ifdef XNU_KERNEL_PRIVATE
279 #define MACH_TIMESPEC_ZERO ((mach_timespec_t) { 0, 0 } )
281 #endif /* XNU_KERNEL_PRIVATE */
283 #endif /* __LP64__ */
285 extern void delay_for_interval(
287 uint32_t scale_factor
);
289 #ifndef MACH_KERNEL_PRIVATE
293 #ifndef ABSOLUTETIME_SCALAR_TYPE
295 #define clock_get_uptime(a) \
296 clock_get_uptime(__OSAbsoluteTimePtr(a))
298 #define clock_interval_to_deadline(a, b, c) \
299 clock_interval_to_deadline((a), (b), __OSAbsoluteTimePtr(c))
301 #define clock_interval_to_absolutetime_interval(a, b, c) \
302 clock_interval_to_absolutetime_interval((a), (b), __OSAbsoluteTimePtr(c))
304 #define clock_absolutetime_interval_to_deadline(a, b) \
305 clock_absolutetime_interval_to_deadline(__OSAbsoluteTime(a), __OSAbsoluteTimePtr(b))
307 #define clock_deadline_for_periodic_event(a, b, c) \
308 clock_deadline_for_periodic_event(__OSAbsoluteTime(a), __OSAbsoluteTime(b), __OSAbsoluteTimePtr(c))
310 #define clock_delay_until(a) \
311 clock_delay_until(__OSAbsoluteTime(a))
313 #define absolutetime_to_nanoseconds(a, b) \
314 absolutetime_to_nanoseconds(__OSAbsoluteTime(a), (b))
316 #define nanoseconds_to_absolutetime(a, b) \
317 nanoseconds_to_absolutetime((a), __OSAbsoluteTimePtr(b))
319 #endif /* ABSOLUTETIME_SCALAR_TYPE */
321 #endif /* __LP64__ */
323 #endif /* MACH_KERNEL_PRIVATE */
325 #endif /* KERNEL_PRIVATE */
329 #endif /* _KERN_CLOCK_H_ */