Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | /* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * File: kern/clock.h * Purpose: Data structures for the kernel alarm clock * facility. This file is used only by kernel * level clock facility routines. */ #ifndef _KERN_CLOCK_H_ #define _KERN_CLOCK_H_ #include <mach/message.h> #include <mach/clock_types.h> #include <mach/mach_time.h> #ifdef MACH_KERNEL_PRIVATE #include <ipc/ipc_port.h> /* * Actual clock alarm structure. Used for user clock_sleep() and * clock_alarm() calls. Alarms are allocated from the alarm free * list and entered in time priority order into the active alarm * chain of the target clock. */ struct alarm { struct alarm *al_next; /* next alarm in chain */ struct alarm *al_prev; /* previous alarm in chain */ int al_status; /* alarm status */ mach_timespec_t al_time; /* alarm time */ struct { /* message alarm data */ int type; /* alarm type */ ipc_port_t port; /* alarm port */ mach_msg_type_name_t port_type; /* alarm port type */ struct clock *clock; /* alarm clock */ void *data; /* alarm data */ } al_alrm; #define al_type al_alrm.type #define al_port al_alrm.port #define al_port_type al_alrm.port_type #define al_clock al_alrm.clock #define al_data al_alrm.data long al_seqno; /* alarm sequence number */ }; typedef struct alarm alarm_data_t; /* alarm status */ #define ALARM_FREE 0 /* alarm is on free list */ #define ALARM_SLEEP 1 /* active clock_sleep() */ #define ALARM_CLOCK 2 /* active clock_alarm() */ #define ALARM_DONE 4 /* alarm has expired */ /* * Clock operations list structure. Contains vectors to machine * dependent clock routines. The routines c_config, c_init, and * c_gettime must be implemented for every clock device. */ struct clock_ops { int (*c_config)(void); /* configuration */ int (*c_init)(void); /* initialize */ kern_return_t (*c_gettime)( /* get time */ mach_timespec_t *cur_time); kern_return_t (*c_settime)( /* set time */ mach_timespec_t *clock_time); kern_return_t (*c_getattr)( /* get attributes */ clock_flavor_t flavor, clock_attr_t attr, mach_msg_type_number_t *count); kern_return_t (*c_setattr)( /* set attributes */ clock_flavor_t flavor, clock_attr_t attr, mach_msg_type_number_t count); void (*c_setalrm)( /* set next alarm */ mach_timespec_t *alarm_time); }; typedef struct clock_ops *clock_ops_t; typedef struct clock_ops clock_ops_data_t; /* * Actual clock object data structure. Contains the machine * dependent operations list, clock operations ports, and a * chain of pending alarms. */ struct clock { clock_ops_t cl_ops; /* operations list */ struct ipc_port *cl_service; /* service port */ struct ipc_port *cl_control; /* control port */ struct { /* alarm chain head */ struct alarm *al_next; } cl_alarm; }; typedef struct clock clock_data_t; /* * Configure the clock system. */ extern void clock_config(void); /* * Initialize the clock system. */ extern void clock_init(void); /* * Initialize the clock ipc service facility. */ extern void clock_service_create(void); /* * Service clock alarm interrupts. Called from machine dependent * layer at splclock(). The clock_id argument specifies the clock, * and the clock_time argument gives that clock's current time. */ extern void clock_alarm_intr( clock_id_t clock_id, mach_timespec_t *clock_time); extern kern_return_t clock_sleep_internal( clock_t clock, sleep_type_t sleep_type, mach_timespec_t *sleep_time); typedef void (*clock_timer_func_t)( uint64_t timestamp); extern void clock_set_timer_func( clock_timer_func_t func); extern void clock_set_timer_deadline( uint64_t deadline); extern void mk_timebase_info( uint32_t *delta, uint32_t *abs_to_ns_numer, uint32_t *abs_to_ns_denom, uint32_t *proc_to_abs_numer, uint32_t *proc_to_abs_denom); #endif /* MACH_KERNEL_PRIVATE */ #define MACH_TIMESPEC_SEC_MAX (0 - 1) #define MACH_TIMESPEC_NSEC_MAX (NSEC_PER_SEC - 1) #define MACH_TIMESPEC_MAX ((mach_timespec_t) { \ MACH_TIMESPEC_SEC_MAX, \ MACH_TIMESPEC_NSEC_MAX } ) #define MACH_TIMESPEC_ZERO ((mach_timespec_t) { 0, 0 } ) #define ADD_MACH_TIMESPEC_NSEC(t1, nsec) \ do { \ (t1)->tv_nsec += (clock_res_t)(nsec); \ if ((clock_res_t)(nsec) > 0 && \ (t1)->tv_nsec >= NSEC_PER_SEC) { \ (t1)->tv_nsec -= NSEC_PER_SEC; \ (t1)->tv_sec += 1; \ } \ else if ((clock_res_t)(nsec) < 0 && \ (t1)->tv_nsec < 0) { \ (t1)->tv_nsec += NSEC_PER_SEC; \ (t1)->tv_sec -= 1; \ } \ } while (0) extern mach_timespec_t clock_get_system_value(void); extern mach_timespec_t clock_get_calendar_value(void); extern void clock_set_calendar_value( mach_timespec_t value); extern void clock_adjust_calendar( clock_res_t nsec); extern void clock_initialize_calendar(void); extern mach_timespec_t clock_get_calendar_offset(void); extern void clock_timebase_info( mach_timebase_info_t info); extern void clock_get_uptime( uint64_t *result); extern void clock_interval_to_deadline( uint32_t interval, uint32_t scale_factor, uint64_t *result); extern void clock_interval_to_absolutetime_interval( uint32_t interval, uint32_t scale_factor, uint64_t *result); extern void clock_absolutetime_interval_to_deadline( uint64_t abstime, uint64_t *result); extern void clock_deadline_for_periodic_event( uint64_t interval, uint64_t abstime, uint64_t *deadline); extern void clock_delay_for_interval( uint32_t interval, uint32_t scale_factor); extern void clock_delay_until( uint64_t deadline); extern void absolutetime_to_nanoseconds( uint64_t abstime, uint64_t *result); extern void nanoseconds_to_absolutetime( uint64_t nanoseconds, uint64_t *result); #if !defined(MACH_KERNEL_PRIVATE) && !defined(ABSOLUTETIME_SCALAR_TYPE) #include <libkern/OSBase.h> #define clock_get_uptime(a) \ clock_get_uptime(__OSAbsoluteTimePtr(a)) #define clock_interval_to_deadline(a, b, c) \ clock_interval_to_deadline((a), (b), __OSAbsoluteTimePtr(c)) #define clock_interval_to_absolutetime_interval(a, b, c) \ clock_interval_to_absolutetime_interval((a), (b), __OSAbsoluteTimePtr(c)) #define clock_absolutetime_interval_to_deadline(a, b) \ clock_absolutetime_interval_to_deadline(__OSAbsoluteTime(a), __OSAbsoluteTimePtr(b)) #define clock_deadline_for_periodic_event(a, b, c) \ clock_deadline_for_periodic_event(__OSAbsoluteTime(a), __OSAbsoluteTime(b), __OSAbsoluteTimePtr(c)) #define clock_delay_until(a) \ clock_delay_until(__OSAbsoluteTime(a)) #define absolutetime_to_nanoseconds(a, b) \ absolutetime_to_nanoseconds(__OSAbsoluteTime(a), (b)) #define nanoseconds_to_absolutetime(a, b) \ nanoseconds_to_absolutetime((a), __OSAbsoluteTimePtr(b)) #define AbsoluteTime_to_scalar(x) (*(uint64_t *)(x)) /* t1 < = > t2 */ #define CMP_ABSOLUTETIME(t1, t2) \ (AbsoluteTime_to_scalar(t1) > \ AbsoluteTime_to_scalar(t2)? (int)+1 : \ (AbsoluteTime_to_scalar(t1) < \ AbsoluteTime_to_scalar(t2)? (int)-1 : 0)) /* t1 += t2 */ #define ADD_ABSOLUTETIME(t1, t2) \ (AbsoluteTime_to_scalar(t1) += \ AbsoluteTime_to_scalar(t2)) /* t1 -= t2 */ #define SUB_ABSOLUTETIME(t1, t2) \ (AbsoluteTime_to_scalar(t1) -= \ AbsoluteTime_to_scalar(t2)) #define ADD_ABSOLUTETIME_TICKS(t1, ticks) \ (AbsoluteTime_to_scalar(t1) += \ (int32_t)(ticks)) #endif #endif /* _KERN_CLOCK_H_ */ |