2 * Copyright (c) 2007 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@
29 #ifndef _IOKIT_IOSERVICEPMPRIVATE_H
30 #define _IOKIT_IOSERVICEPMPRIVATE_H
32 #include <IOKit/IOCommand.h>
33 #include <IOKit/IOEventSource.h>
35 //******************************************************************************
37 //******************************************************************************
41 kIOPMRequestTypeInvalid
= 0x00,
42 kIOPMRequestTypePMStop
= 0x01,
43 kIOPMRequestTypeAddPowerChild1
= 0x02,
44 kIOPMRequestTypeAddPowerChild2
= 0x03,
45 kIOPMRequestTypeAddPowerChild3
= 0x04,
46 kIOPMRequestTypeRegisterPowerDriver
= 0x05,
47 kIOPMRequestTypeAdjustPowerState
= 0x06,
48 kIOPMRequestTypePowerDomainWillChange
= 0x07,
49 kIOPMRequestTypePowerDomainDidChange
= 0x08,
50 kIOPMRequestTypePowerOverrideOnPriv
= 0x09,
51 kIOPMRequestTypePowerOverrideOffPriv
= 0x0A,
52 kIOPMRequestTypeActivityTickle
= 0x0B,
53 kIOPMRequestTypeRequestPowerState
= 0x0C,
54 kIOPMRequestTypeSynchronizePowerTree
= 0x0D,
55 kIOPMRequestTypeRequestPowerStateOverride
= 0x0E,
56 kIOPMRequestTypeSetIdleTimerPeriod
= 0x0F,
57 kIOPMRequestTypeIgnoreIdleTimer
= 0x10,
58 kIOPMRequestTypeQuiescePowerTree
= 0x11,
61 kIOPMRequestTypeReplyStart
= 0x80,
62 kIOPMRequestTypeAckPowerChange
= 0x81,
63 kIOPMRequestTypeAckSetPowerState
= 0x82,
64 kIOPMRequestTypeAllowPowerChange
= 0x83,
65 kIOPMRequestTypeCancelPowerChange
= 0x84,
66 kIOPMRequestTypeInterestChanged
= 0x85,
67 kIOPMRequestTypeIdleCancel
= 0x86,
68 kIOPMRequestTypeChildNotifyDelayCancel
= 0x87
71 //******************************************************************************
72 // PM actions - For root domain only
73 //******************************************************************************
78 (*IOPMActionPowerChangeStart
)(
81 IOPMActions
* actions
,
82 IOPMPowerStateIndex powerState
,
83 IOPMPowerChangeFlags
* changeFlags
,
84 IOPMRequestTag requestTag
);
87 (*IOPMActionPowerChangeDone
)(
90 IOPMActions
* actions
,
91 IOPMPowerStateIndex powerState
,
92 IOPMPowerChangeFlags changeFlags
,
93 IOPMRequestTag requestTag
);
96 (*IOPMActionPowerChangeOverride
)(
99 IOPMActions
* actions
,
100 IOPMPowerStateIndex
* powerState
,
101 IOPMPowerChangeFlags
* changeFlags
,
102 IOPMRequestTag requestTag
);
105 (*IOPMActionActivityTickle
)(
108 IOPMActions
* actions
);
111 (*IOPMActionUpdatePowerClient
)(
114 IOPMActions
* actions
,
115 const OSSymbol
* powerClient
,
116 IOPMPowerStateIndex oldPowerState
,
117 IOPMPowerStateIndex newPowerState
123 IOPMActionPowerChangeStart actionPowerChangeStart
;
124 IOPMActionPowerChangeDone actionPowerChangeDone
;
125 IOPMActionPowerChangeOverride actionPowerChangeOverride
;
126 IOPMActionActivityTickle actionActivityTickle
;
127 IOPMActionUpdatePowerClient actionUpdatePowerClient
;
130 // IOPMActions parameter flags
132 kPMActionsFlagIsDisplayWrangler
= 0x00000100,
133 kPMActionsFlagIsGraphicsDevice
= 0x00000200,
134 kPMActionsFlagIsAudioDevice
= 0x00000400,
135 kPMActionsFlagLimitPower
= 0x00000800,
136 kPMActionsPCIBitNumberMask
= 0x000000ff
139 //******************************************************************************
140 // Internal concise representation of IOPMPowerState
143 IOPMPowerFlags capabilityFlags
;
144 IOPMPowerFlags outputPowerFlags
;
145 IOPMPowerFlags inputPowerFlags
;
146 uint32_t staticPower
;
147 uint32_t settleUpTime
;
148 uint32_t settleDownTime
;
149 IOPMPowerStateIndex stateOrder
;
150 IOPMPowerStateIndex stateOrderToIndex
;
153 //******************************************************************************
155 //******************************************************************************
157 class IOServicePM
: public OSObject
159 friend class IOService
;
160 friend class IOPMWorkQueue
;
162 OSDeclareDefaultStructors( IOServicePM
)
165 // Link IOServicePM objects on IOPMWorkQueue.
166 queue_chain_t WorkChain
;
168 // Queue of IOPMRequest objects.
169 queue_head_t RequestHead
;
171 // IOService creator and owner.
174 // List of interested drivers (protected by PMLock).
175 IOPMinformeeList
* InterestedDrivers
;
177 // How long to wait for controlling driver to acknowledge.
178 IOReturn DriverTimer
;
180 // Current power management machine state.
181 uint32_t MachineState
;
183 thread_call_t AckTimer
;
184 thread_call_t SettleTimer
;
185 thread_call_t IdleTimer
;
186 thread_call_t WatchdogTimer
;
187 thread_call_t SpinDumpTimer
;
189 // Settle time after changing power state.
190 uint32_t SettleTimeUS
;
191 uint32_t IdleTimerGeneration
;
193 // The flags describing current change note.
194 IOPMPowerChangeFlags HeadNoteChangeFlags
;
196 // The new power state number being changed to.
197 IOPMPowerStateIndex HeadNotePowerState
;
199 // Points to the entry in the power state array.
200 IOPMPSEntry
* HeadNotePowerArrayEntry
;
202 // Power flags supplied by all parents (domain).
203 IOPMPowerFlags HeadNoteDomainFlags
;
205 // Power flags supplied by domain accounting for parent changes.
206 IOPMPowerFlags HeadNoteDomainTargetFlags
;
208 // Connection attached to the changing parent.
209 IOPowerConnection
* HeadNoteParentConnection
;
211 // Power flags supplied by the changing parent.
212 IOPMPowerFlags HeadNoteParentFlags
;
214 // Number of acks still outstanding.
215 uint32_t HeadNotePendingAcks
;
220 unsigned int InitialPowerChange
:1;
221 unsigned int InitialSetPowerState
:1;
222 unsigned int DeviceOverrideEnabled
:1;
223 unsigned int DoNotPowerDown
:1;
224 unsigned int ParentsKnowState
:1;
225 unsigned int StrictTreeOrder
:1;
226 unsigned int IdleTimerStopped
:1;
227 unsigned int AdjustPowerScheduled
:1;
229 unsigned int IsPreChange
:1;
230 unsigned int DriverCallBusy
:1;
231 unsigned int PCDFunctionOverride
:1;
232 unsigned int IdleTimerIgnored
:1;
233 unsigned int HasAdvisoryDesire
:1;
234 unsigned int AdvisoryTickleUsed
:1;
235 unsigned int ResetPowerStateOnWake
:1;
237 // Time of last device activity.
238 AbsoluteTime DeviceActiveTimestamp
;
239 AbsoluteTime MaxPowerStateEntryTime
;
240 AbsoluteTime MaxPowerStateExitTime
;
242 // Used to protect activity flag.
243 IOLock
* ActivityLock
;
245 // Idle timer's period in seconds.
246 unsigned long IdleTimerPeriod
;
247 unsigned long IdleTimerMinPowerState
;
248 unsigned long NextIdleTimerPeriod
;
249 AbsoluteTime IdleTimerStartTime
;
251 // Power state desired by a subclassed device object.
252 IOPMPowerStateIndex DeviceDesire
;
254 // This is the power state we desire currently.
255 IOPMPowerStateIndex DesiredPowerState
;
257 // This is what our parent thinks our need is.
258 IOPMPowerFlags PreviousRequestPowerFlags
;
260 // Cache result from getName(), used in logging.
263 // Number of power states in the power array.
264 IOPMPowerStateIndex NumberOfPowerStates
;
266 // Ordered highest power state in the power array.
267 IOPMPowerStateIndex HighestPowerState
;
269 // Power state array.
270 IOPMPSEntry
* PowerStates
;
272 // The controlling driver.
273 IOService
* ControllingDriver
;
275 // Our current power state.
276 IOPMPowerStateIndex CurrentPowerState
;
278 // Logical OR of power flags for each power domain parent.
279 IOPMPowerFlags ParentsCurrentPowerFlags
;
281 // The highest power state we can achieve in current power domain.
282 IOPMPowerStateIndex MaxPowerState
;
284 // Logical OR of all output power flags in the power state array.
285 IOPMPowerFlags MergedOutputPowerFlags
;
287 // OSArray which manages responses from notified apps and clients.
288 OSArray
* ResponseArray
;
289 OSArray
* NotifyClientArray
;
291 // Used to uniquely identify power management notification to apps and clients.
294 // Used to communicate desired function to tellClientsWithResponse().
295 // This is used because it avoids changing the signatures of the affected virtual methods.
296 int OutOfBandParameter
;
298 AbsoluteTime DriverCallStartTime
;
299 IOPMPowerFlags CurrentCapabilityFlags
;
300 unsigned long CurrentPowerConsumption
;
301 IOPMPowerStateIndex TempClampPowerState
;
302 OSArray
* NotifyChildArray
;
303 OSDictionary
* PowerClients
;
304 thread_call_t DriverCallEntry
;
305 void * DriverCallParamPtr
;
306 IOItemCount DriverCallParamCount
;
307 IOItemCount DriverCallParamSlots
;
308 uint32_t DriverCallReason
;
309 uint32_t OutOfBandMessage
;
310 uint32_t TempClampCount
;
311 uint32_t OverrideMaxPowerState
;
312 uint32_t DeviceUsablePowerState
;
314 // Protected by ActivityLock - BEGIN
315 IOPMPowerStateIndex ActivityTicklePowerState
;
316 IOPMPowerStateIndex AdvisoryTicklePowerState
;
317 uint32_t ActivityTickleCount
;
318 uint32_t DeviceWasActive
: 1;
319 uint32_t AdvisoryTickled
: 1;
320 // Protected by ActivityLock - END
323 uint32_t SavedMachineState
;
325 // Protected by PMLock - BEGIN
328 uint32_t PMDriverCallWait
: 1;
331 queue_head_t PMDriverCallQueue
;
332 OSSet
* InsertInterestSet
;
333 OSSet
* RemoveInterestSet
;
336 uint32_t ReportClientCnt
;
338 // Protected by PMLock - END
344 IOPMActions PMActions
;
346 // Serialize IOServicePM state for debug output.
347 IOReturn
gatedSerialize( OSSerialize
* s
) const;
348 virtual bool serialize( OSSerialize
* s
) const APPLE_KEXT_OVERRIDE
;
351 void pmPrint( uint32_t event
, uintptr_t param1
, uintptr_t param2
) const;
352 void pmTrace( uint32_t event
, uintptr_t param1
, uintptr_t param2
) const;
355 #define fOwner pwrMgt->Owner
356 #define fInterestedDrivers pwrMgt->InterestedDrivers
357 #define fDriverTimer pwrMgt->DriverTimer
358 #define fMachineState pwrMgt->MachineState
359 #define fAckTimer pwrMgt->AckTimer
360 #define fSettleTimer pwrMgt->SettleTimer
361 #define fIdleTimer pwrMgt->IdleTimer
362 #define fWatchdogTimer pwrMgt->WatchdogTimer
363 #define fSpinDumpTimer pwrMgt->SpinDumpTimer
364 #define fSettleTimeUS pwrMgt->SettleTimeUS
365 #define fIdleTimerGeneration pwrMgt->IdleTimerGeneration
366 #define fHeadNoteChangeFlags pwrMgt->HeadNoteChangeFlags
367 #define fHeadNotePowerState pwrMgt->HeadNotePowerState
368 #define fHeadNotePowerArrayEntry pwrMgt->HeadNotePowerArrayEntry
369 #define fHeadNoteDomainFlags pwrMgt->HeadNoteDomainFlags
370 #define fHeadNoteDomainTargetFlags pwrMgt->HeadNoteDomainTargetFlags
371 #define fHeadNoteParentConnection pwrMgt->HeadNoteParentConnection
372 #define fHeadNoteParentFlags pwrMgt->HeadNoteParentFlags
373 #define fHeadNotePendingAcks pwrMgt->HeadNotePendingAcks
374 #define fPMLock pwrMgt->PMLock
375 #define fInitialPowerChange pwrMgt->InitialPowerChange
376 #define fInitialSetPowerState pwrMgt->InitialSetPowerState
377 #define fDeviceOverrideEnabled pwrMgt->DeviceOverrideEnabled
378 #define fDoNotPowerDown pwrMgt->DoNotPowerDown
379 #define fParentsKnowState pwrMgt->ParentsKnowState
380 #define fStrictTreeOrder pwrMgt->StrictTreeOrder
381 #define fIdleTimerStopped pwrMgt->IdleTimerStopped
382 #define fAdjustPowerScheduled pwrMgt->AdjustPowerScheduled
383 #define fIsPreChange pwrMgt->IsPreChange
384 #define fDriverCallBusy pwrMgt->DriverCallBusy
385 #define fPCDFunctionOverride pwrMgt->PCDFunctionOverride
386 #define fIdleTimerIgnored pwrMgt->IdleTimerIgnored
387 #define fHasAdvisoryDesire pwrMgt->HasAdvisoryDesire
388 #define fAdvisoryTickleUsed pwrMgt->AdvisoryTickleUsed
389 #define fResetPowerStateOnWake pwrMgt->ResetPowerStateOnWake
390 #define fDeviceActiveTimestamp pwrMgt->DeviceActiveTimestamp
391 #define fMaxPowerStateEntryTime pwrMgt->MaxPowerStateEntryTime
392 #define fMaxPowerStateExitTime pwrMgt->MaxPowerStateExitTime
393 #define fActivityLock pwrMgt->ActivityLock
394 #define fIdleTimerPeriod pwrMgt->IdleTimerPeriod
395 #define fIdleTimerMinPowerState pwrMgt->IdleTimerMinPowerState
396 #define fNextIdleTimerPeriod pwrMgt->NextIdleTimerPeriod
397 #define fIdleTimerStartTime pwrMgt->IdleTimerStartTime
398 #define fDeviceDesire pwrMgt->DeviceDesire
399 #define fDesiredPowerState pwrMgt->DesiredPowerState
400 #define fPreviousRequestPowerFlags pwrMgt->PreviousRequestPowerFlags
401 #define fName pwrMgt->Name
402 #define fNumberOfPowerStates pwrMgt->NumberOfPowerStates
403 #define fHighestPowerState pwrMgt->HighestPowerState
404 #define fPowerStates pwrMgt->PowerStates
405 #define fControllingDriver pwrMgt->ControllingDriver
406 #define fCurrentPowerState pwrMgt->CurrentPowerState
407 #define fParentsCurrentPowerFlags pwrMgt->ParentsCurrentPowerFlags
408 #define fMaxPowerState pwrMgt->MaxPowerState
409 #define fMergedOutputPowerFlags pwrMgt->MergedOutputPowerFlags
410 #define fResponseArray pwrMgt->ResponseArray
411 #define fNotifyClientArray pwrMgt->NotifyClientArray
412 #define fSerialNumber pwrMgt->SerialNumber
413 #define fOutOfBandParameter pwrMgt->OutOfBandParameter
414 #define fDriverCallStartTime pwrMgt->DriverCallStartTime
415 #define fCurrentCapabilityFlags pwrMgt->CurrentCapabilityFlags
416 #define fCurrentPowerConsumption pwrMgt->CurrentPowerConsumption
417 #define fTempClampPowerState pwrMgt->TempClampPowerState
418 #define fNotifyChildArray pwrMgt->NotifyChildArray
419 #define fPowerClients pwrMgt->PowerClients
420 #define fDriverCallEntry pwrMgt->DriverCallEntry
421 #define fDriverCallParamPtr pwrMgt->DriverCallParamPtr
422 #define fDriverCallParamCount pwrMgt->DriverCallParamCount
423 #define fDriverCallParamSlots pwrMgt->DriverCallParamSlots
424 #define fDriverCallReason pwrMgt->DriverCallReason
425 #define fOutOfBandMessage pwrMgt->OutOfBandMessage
426 #define fTempClampCount pwrMgt->TempClampCount
427 #define fOverrideMaxPowerState pwrMgt->OverrideMaxPowerState
428 #define fDeviceUsablePowerState pwrMgt->DeviceUsablePowerState
429 #define fActivityTicklePowerState pwrMgt->ActivityTicklePowerState
430 #define fAdvisoryTicklePowerState pwrMgt->AdvisoryTicklePowerState
431 #define fActivityTickleCount pwrMgt->ActivityTickleCount
432 #define fDeviceWasActive pwrMgt->DeviceWasActive
433 #define fAdvisoryTickled pwrMgt->AdvisoryTickled
434 #define fWaitReason pwrMgt->WaitReason
435 #define fSavedMachineState pwrMgt->SavedMachineState
436 #define fLockedFlags pwrMgt->LockedFlags
437 #define fPMDriverCallQueue pwrMgt->PMDriverCallQueue
438 #define fInsertInterestSet pwrMgt->InsertInterestSet
439 #define fRemoveInterestSet pwrMgt->RemoveInterestSet
440 #define fReportClientCnt pwrMgt->ReportClientCnt
441 #define fReportBuf pwrMgt->ReportBuf
442 #define fPMVars pwrMgt->PMVars
443 #define fPMActions pwrMgt->PMActions
445 #define StateOrder(state) (((state) < fNumberOfPowerStates) \
446 ? pwrMgt->PowerStates[(state)].stateOrder \
448 #define StateMax(a,b) (StateOrder((a)) < StateOrder((b)) ? (b) : (a))
449 #define StateMin(a,b) (StateOrder((a)) < StateOrder((b)) ? (a) : (b))
451 #define kPowerStateZero (0)
454 When an IOService is waiting for acknowledgement to a power change
455 notification from an interested driver or the controlling driver,
456 the ack timer is ticking every tenth of a second.
457 (100000000 nanoseconds are one tenth of a second).
459 #define ACK_TIMER_PERIOD 100000000
461 #define WATCHDOG_TIMER_PERIOD (300) // 300 secs
463 // Max wait time in microseconds for kernel priority and capability clients
464 // with async message handlers to acknowledge.
466 #define kPriorityClientMaxWait (90 * 1000 * 1000)
467 #define kCapabilityClientMaxWait (240 * 1000 * 1000)
469 // Attributes describing a power state change.
470 // See IOPMPowerChangeFlags data type.
472 #define kIOPMParentInitiated 0x0001 // power change initiated by our parent
473 #define kIOPMSelfInitiated 0x0002 // power change initiated by this device
474 #define kIOPMNotDone 0x0004 // we couldn't make this change
475 #define kIOPMDomainWillChange 0x0008 // change started by PowerDomainWillChangeTo
476 #define kIOPMDomainDidChange 0x0010 // change started by PowerDomainDidChangeTo
477 #define kIOPMDomainPowerDrop 0x0020 // Domain is lowering power
478 #define kIOPMIgnoreChildren 0x0040 // Ignore children and driver power desires
479 #define kIOPMSkipAskPowerDown 0x0080 // skip the ask app phase
480 #define kIOPMSynchronize 0x0100 // change triggered by power tree re-sync
481 #define kIOPMSyncNoChildNotify 0x0200 // sync root domain only, not entire tree
482 #define kIOPMSyncTellPowerDown 0x0400 // send the ask/will power off messages
483 #define kIOPMSyncCancelPowerDown 0x0800 // sleep cancel for maintenance wake
484 #define kIOPMInitialPowerChange 0x1000 // set for initial power change
485 #define kIOPMRootChangeUp 0x2000 // Root power domain change up
486 #define kIOPMRootChangeDown 0x4000 // Root power domain change down
487 #define kIOPMExpireIdleTimer 0x8000 // Accelerate idle timer expiration
489 #define kIOPMRootBroadcastFlags (kIOPMSynchronize | \
490 kIOPMRootChangeUp | kIOPMRootChangeDown)
492 // Activity tickle request flags
493 #define kTickleTypePowerDrop 0x01
494 #define kTickleTypePowerRise 0x02
495 #define kTickleTypeActivity 0x04
496 #define kTickleTypeAdvisory 0x08
499 kDriverCallInformPreChange
,
500 kDriverCallInformPostChange
,
501 kDriverCallSetPowerState
,
502 kRootDomainInformPreChange
505 struct DriverCallParam
{
510 // values of OutOfBandParameter
514 kNotifyCapabilityChangeApps
,
515 kNotifyCapabilityChangePriority
518 typedef bool (*IOPMMessageFilter
)(
519 void * target
, void * object
, void * arg1
, void * arg2
, void * arg3
);
521 // used for applyToInterested
522 struct IOPMInterestContext
{
523 OSArray
* responseArray
;
524 OSArray
* notifyClients
;
525 uint16_t serialNumber
;
527 uint8_t enableTracing
;
528 uint32_t maxTimeRequested
;
529 uint32_t messageType
;
532 IOPMPowerStateIndex stateNumber
;
533 IOPMPowerFlags stateFlags
;
534 IOPMPowerChangeFlags changeFlags
;
535 const char * errorLog
;
536 IOPMMessageFilter messageFilter
;
539 // assertPMDriverCall() options
541 kIOPMADC_NoInactiveCheck
= 1
544 //******************************************************************************
545 // PM Statistics & Diagnostics
546 //******************************************************************************
548 extern const OSSymbol
*gIOPMStatsApplicationResponseTimedOut
;
549 extern const OSSymbol
*gIOPMStatsApplicationResponseCancel
;
550 extern const OSSymbol
*gIOPMStatsApplicationResponseSlow
;
551 extern const OSSymbol
*gIOPMStatsApplicationResponsePrompt
;
552 extern const OSSymbol
*gIOPMStatsDriverPSChangeSlow
;
554 //******************************************************************************
556 //******************************************************************************
558 class IOPMRequest
: public IOCommand
560 OSDeclareDefaultStructors( IOPMRequest
)
563 IOService
* fTarget
; // request target
564 IOPMRequest
* fRequestNext
; // the next request in the chain
565 IOPMRequest
* fRequestRoot
; // the root request in the call tree
566 IOItemCount fWorkWaitCount
; // execution blocked if non-zero
567 IOItemCount fFreeWaitCount
; // completion blocked if non-zero
568 uint32_t fRequestType
; // request type
569 bool fIsQuiesceBlocker
;
571 IOPMCompletionAction fCompletionAction
;
572 void * fCompletionTarget
;
573 void * fCompletionParam
;
576 uint32_t fRequestTag
;
581 inline bool isWorkBlocked( void ) const
583 return (fWorkWaitCount
!= 0);
586 inline bool isFreeBlocked( void ) const
588 return (fFreeWaitCount
!= 0);
591 inline IOPMRequest
* getNextRequest( void ) const
596 inline IOPMRequest
* getRootRequest( void ) const
598 if (fRequestRoot
) return fRequestRoot
;
600 if (fCompletionAction
) return (IOPMRequest
*) this;
605 inline uint32_t getType( void ) const
610 inline bool isReplyType( void ) const
612 return (fRequestType
> kIOPMRequestTypeReplyStart
);
615 inline IOService
* getTarget( void ) const
620 inline bool isQuiesceBlocker( void ) const
622 return fIsQuiesceBlocker
;
625 inline bool isQuiesceType( void ) const
627 return ((kIOPMRequestTypeQuiescePowerTree
== fRequestType
) &&
628 (fCompletionAction
!= 0) && (fCompletionTarget
!= 0));
631 inline void installCompletionAction(
633 IOPMCompletionAction action
,
636 fCompletionTarget
= target
;
637 fCompletionAction
= action
;
638 fCompletionParam
= param
;
641 static IOPMRequest
* create( void );
642 bool init( IOService
* owner
, IOOptionBits type
);
644 bool attachNextRequest( IOPMRequest
* next
);
645 bool detachNextRequest( void );
646 bool attachRootRequest( IOPMRequest
* root
);
647 bool detachRootRequest( void );
650 //******************************************************************************
652 //******************************************************************************
654 class IOPMRequestQueue
: public IOEventSource
656 OSDeclareDefaultStructors( IOPMRequestQueue
)
659 typedef bool (*Action
)( IOService
*, IOPMRequest
*, IOPMRequestQueue
* );
665 enum { kMaxDequeueCount
= 256 };
667 virtual bool checkForWork( void ) APPLE_KEXT_OVERRIDE
;
668 virtual void free( void ) APPLE_KEXT_OVERRIDE
;
669 virtual bool init( IOService
* inOwner
, Action inAction
);
672 static IOPMRequestQueue
* create( IOService
* inOwner
, Action inAction
);
673 void queuePMRequest( IOPMRequest
* request
);
674 void queuePMRequestChain( IOPMRequest
** requests
, IOItemCount count
);
677 //******************************************************************************
679 //******************************************************************************
681 #define WORK_QUEUE_STATS 1
683 class IOPMWorkQueue
: public IOEventSource
685 OSDeclareDefaultStructors( IOPMWorkQueue
)
688 typedef bool (*Action
)( IOService
*, IOPMRequest
*, IOPMWorkQueue
* );
691 uint64_t fStatCheckForWork
;
692 uint64_t fStatScanEntries
;
693 uint64_t fStatQueueEmpty
;
694 uint64_t fStatNoWorkDone
;
698 queue_head_t fWorkQueue
;
699 Action fInvokeAction
;
700 Action fRetireAction
;
701 uint32_t fQueueLength
;
702 uint32_t fConsumerCount
;
703 volatile uint32_t fProducerCount
;
704 IOPMRequest
* fQuiesceRequest
;
705 AbsoluteTime fQuiesceStartTime
;
706 AbsoluteTime fQuiesceFinishTime
;
708 virtual bool checkForWork( void ) APPLE_KEXT_OVERRIDE
;
709 virtual bool init( IOService
* inOwner
, Action invoke
, Action retire
);
710 bool checkRequestQueue( queue_head_t
* queue
, bool * empty
);
713 static IOPMWorkQueue
* create( IOService
* inOwner
, Action invoke
, Action retire
);
714 bool queuePMRequest( IOPMRequest
* request
, IOServicePM
* pwrMgt
);
715 void signalWorkAvailable( void );
716 void incrementProducerCount( void );
717 void attachQuiesceRequest( IOPMRequest
* quiesceRequest
);
718 void finishQuiesceRequest( IOPMRequest
* quiesceRequest
);
721 //******************************************************************************
722 // IOPMCompletionQueue
723 //******************************************************************************
725 class IOPMCompletionQueue
: public IOEventSource
727 OSDeclareDefaultStructors( IOPMCompletionQueue
)
730 typedef bool (*Action
)( IOService
*, IOPMRequest
*, IOPMCompletionQueue
* );
735 virtual bool checkForWork( void ) APPLE_KEXT_OVERRIDE
;
736 virtual bool init( IOService
* inOwner
, Action inAction
);
739 static IOPMCompletionQueue
* create( IOService
* inOwner
, Action inAction
);
740 bool queuePMRequest( IOPMRequest
* request
);
743 #endif /* !_IOKIT_IOSERVICEPMPRIVATE_H */