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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | /* * Copyright (c) 1998-2000, 2009-2010 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The 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, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <sys/cdefs.h> __BEGIN_DECLS #include <kern/thread_call.h> __END_DECLS #include <IOKit/assert.h> #include <IOKit/system.h> #include <IOKit/IOLib.h> #include <IOKit/IOTimerEventSource.h> #include <IOKit/IOWorkLoop.h> #include <IOKit/IOTimeStamp.h> #include <IOKit/IOKitDebug.h> #define super IOEventSource OSDefineMetaClassAndStructors(IOTimerEventSource, IOEventSource) OSMetaClassDefineReservedUnused(IOTimerEventSource, 0); OSMetaClassDefineReservedUnused(IOTimerEventSource, 1); OSMetaClassDefineReservedUnused(IOTimerEventSource, 2); OSMetaClassDefineReservedUnused(IOTimerEventSource, 3); OSMetaClassDefineReservedUnused(IOTimerEventSource, 4); OSMetaClassDefineReservedUnused(IOTimerEventSource, 5); OSMetaClassDefineReservedUnused(IOTimerEventSource, 6); OSMetaClassDefineReservedUnused(IOTimerEventSource, 7); #if IOKITSTATS #define IOStatisticsInitializeCounter() \ do { \ IOStatistics::setCounterType(IOEventSource::reserved->counter, kIOStatisticsTimerEventSourceCounter); \ } while (0) #define IOStatisticsOpenGate() \ do { \ IOStatistics::countOpenGate(me->IOEventSource::reserved->counter); \ } while (0) #define IOStatisticsCloseGate() \ do { \ IOStatistics::countCloseGate(me->IOEventSource::reserved->counter); \ } while (0) #define IOStatisticsTimeout() \ do { \ IOStatistics::countTimerTimeout(me->IOEventSource::reserved->counter); \ } while (0) #else #define IOStatisticsInitializeCounter() #define IOStatisticsOpenGate() #define IOStatisticsCloseGate() #define IOStatisticsTimeout() #endif /* IOKITSTATS */ // // reserved != 0 means IOTimerEventSource::timeoutAndRelease is being used, // not a subclassed implementation. // // Timeout handler function. This function is called by the kernel when // the timeout interval expires. // void IOTimerEventSource::timeout(void *self) { IOTimerEventSource *me = (IOTimerEventSource *) self; IOStatisticsTimeout(); if (me->enabled && me->action) { IOWorkLoop * wl = me->workLoop; if (wl) { Action doit; wl->closeGate(); IOStatisticsCloseGate(); doit = (Action) me->action; if (doit && me->enabled && AbsoluteTime_to_scalar(&me->abstime)) { bool trace = (gIOKitTrace & kIOTraceTimers) ? true : false; if (trace) IOTimeStampStartConstant(IODBG_TIMES(IOTIMES_ACTION), (uintptr_t) doit, (uintptr_t) me->owner); (*doit)(me->owner, me); if (trace) IOTimeStampEndConstant(IODBG_TIMES(IOTIMES_ACTION), (uintptr_t) doit, (uintptr_t) me->owner); } IOStatisticsOpenGate(); wl->openGate(); } } } void IOTimerEventSource::timeoutAndRelease(void * self, void * c) { IOTimerEventSource *me = (IOTimerEventSource *) self; /* The second parameter (a pointer) gets abused to carry an SInt32, so on LP64, "count" must be cast to "long" before, in order to tell GCC we're not truncating a pointer. */ SInt32 count = (SInt32) (long) c; IOStatisticsTimeout(); if (me->enabled && me->action) { IOWorkLoop * wl = me->reserved->workLoop; if (wl) { Action doit; wl->closeGate(); IOStatisticsCloseGate(); doit = (Action) me->action; if (doit && (me->reserved->calloutGeneration == count)) { bool trace = (gIOKitTrace & kIOTraceTimers) ? true : false; if (trace) IOTimeStampStartConstant(IODBG_TIMES(IOTIMES_ACTION), (uintptr_t) doit, (uintptr_t) me->owner); (*doit)(me->owner, me); if (trace) IOTimeStampEndConstant(IODBG_TIMES(IOTIMES_ACTION), (uintptr_t) doit, (uintptr_t) me->owner); } IOStatisticsOpenGate(); wl->openGate(); } } me->reserved->workLoop->release(); me->release(); } void IOTimerEventSource::setTimeoutFunc() { // reserved != 0 means IOTimerEventSource::timeoutAndRelease is being used, // not a subclassed implementation reserved = IONew(ExpansionData, 1); calloutEntry = (void *) thread_call_allocate((thread_call_func_t) &IOTimerEventSource::timeoutAndRelease, (thread_call_param_t) this); } bool IOTimerEventSource::init(OSObject *inOwner, Action inAction) { if (!super::init(inOwner, (IOEventSource::Action) inAction) ) return false; setTimeoutFunc(); if (!calloutEntry) return false; IOStatisticsInitializeCounter(); return true; } IOTimerEventSource * IOTimerEventSource::timerEventSource(OSObject *inOwner, Action inAction) { IOTimerEventSource *me = new IOTimerEventSource; if (me && !me->init(inOwner, inAction)) { me->release(); return 0; } return me; } void IOTimerEventSource::free() { if (calloutEntry) { cancelTimeout(); thread_call_free((thread_call_t) calloutEntry); } if (reserved) IODelete(reserved, ExpansionData, 1); super::free(); } void IOTimerEventSource::cancelTimeout() { if (reserved) reserved->calloutGeneration++; bool active = thread_call_cancel((thread_call_t) calloutEntry); AbsoluteTime_to_scalar(&abstime) = 0; if (active && reserved) { release(); workLoop->release(); } } void IOTimerEventSource::enable() { super::enable(); if (kIOReturnSuccess != wakeAtTime(abstime)) super::disable(); // Problem re-scheduling timeout ignore enable } void IOTimerEventSource::disable() { if (reserved) reserved->calloutGeneration++; bool active = thread_call_cancel((thread_call_t) calloutEntry); super::disable(); if (active && reserved) { release(); workLoop->release(); } } IOReturn IOTimerEventSource::setTimeoutTicks(UInt32 ticks) { return setTimeout(ticks, kTickScale); } IOReturn IOTimerEventSource::setTimeoutMS(UInt32 ms) { return setTimeout(ms, kMillisecondScale); } IOReturn IOTimerEventSource::setTimeoutUS(UInt32 us) { return setTimeout(us, kMicrosecondScale); } IOReturn IOTimerEventSource::setTimeout(UInt32 interval, UInt32 scale_factor) { AbsoluteTime end; clock_interval_to_deadline(interval, scale_factor, &end); return wakeAtTime(end); } #if !defined(__LP64__) IOReturn IOTimerEventSource::setTimeout(mach_timespec_t interval) { AbsoluteTime end, nsecs; clock_interval_to_absolutetime_interval (interval.tv_nsec, kNanosecondScale, &nsecs); clock_interval_to_deadline (interval.tv_sec, NSEC_PER_SEC, &end); ADD_ABSOLUTETIME(&end, &nsecs); return wakeAtTime(end); } #endif IOReturn IOTimerEventSource::setTimeout(AbsoluteTime interval) { AbsoluteTime end; clock_get_uptime(&end); ADD_ABSOLUTETIME(&end, &interval); return wakeAtTime(end); } IOReturn IOTimerEventSource::wakeAtTimeTicks(UInt32 ticks) { return wakeAtTime(ticks, kTickScale); } IOReturn IOTimerEventSource::wakeAtTimeMS(UInt32 ms) { return wakeAtTime(ms, kMillisecondScale); } IOReturn IOTimerEventSource::wakeAtTimeUS(UInt32 us) { return wakeAtTime(us, kMicrosecondScale); } IOReturn IOTimerEventSource::wakeAtTime(UInt32 inAbstime, UInt32 scale_factor) { AbsoluteTime end; clock_interval_to_absolutetime_interval(inAbstime, scale_factor, &end); return wakeAtTime(end); } #if !defined(__LP64__) IOReturn IOTimerEventSource::wakeAtTime(mach_timespec_t inAbstime) { AbsoluteTime end, nsecs; clock_interval_to_absolutetime_interval (inAbstime.tv_nsec, kNanosecondScale, &nsecs); clock_interval_to_absolutetime_interval (inAbstime.tv_sec, kSecondScale, &end); ADD_ABSOLUTETIME(&end, &nsecs); return wakeAtTime(end); } #endif void IOTimerEventSource::setWorkLoop(IOWorkLoop *inWorkLoop) { super::setWorkLoop(inWorkLoop); if ( enabled && AbsoluteTime_to_scalar(&abstime) && workLoop ) wakeAtTime(abstime); } IOReturn IOTimerEventSource::wakeAtTime(AbsoluteTime inAbstime) { if (!action) return kIOReturnNoResources; abstime = inAbstime; if ( enabled && AbsoluteTime_to_scalar(&inAbstime) && AbsoluteTime_to_scalar(&abstime) && workLoop ) { if (reserved) { retain(); workLoop->retain(); reserved->workLoop = workLoop; reserved->calloutGeneration++; if (thread_call_enter1_delayed((thread_call_t) calloutEntry, (void *) reserved->calloutGeneration, inAbstime)) { release(); workLoop->release(); } } else thread_call_enter_delayed((thread_call_t) calloutEntry, inAbstime); } return kIOReturnSuccess; } |