1/*
2 * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28/*
29 * Copyright (c) 1998,1999 Apple Computer, Inc.  All rights reserved.
30 *
31 * HISTORY
32 *
33 */
34/*!
35	@header
36	This header contains the definition of the IOService class.  IOService is the sole direct subclass of IORegistryEntry and is the base class of almost all I/O Kit family superclasses.  IOService defines methods that support the life cycle of I/O Kit drivers.  For more information on IOService, see {@linkdoc //apple_ref/doc/uid/TP0000011 I/O Kit Fundamentals}.
37
38	@seealso //apple_ref/doc/header/IORegistryEntry.h IORegistryEntry
39*/
40
41#ifndef _IOKIT_IOSERVICE_H
42#define _IOKIT_IOSERVICE_H
43
44#include <IOKit/IORegistryEntry.h>
45#include <IOKit/IOReturn.h>
46#include <IOKit/IODeviceMemory.h>
47#include <IOKit/IONotifier.h>
48#include <IOKit/IOLocks.h>
49
50#include <IOKit/IOKitDebug.h>
51#include <IOKit/IOInterrupts.h>
52
53#include <IOKit/pwr_mgt/IOPMpowerState.h>
54#include <IOKit/IOServicePM.h>
55
56extern "C" {
57#include <kern/thread_call.h>
58}
59
60enum {
61    kIODefaultProbeScore 	= 0
62};
63
64// masks for getState()
65enum {
66    kIOServiceInactiveState	= 0x00000001,
67    kIOServiceRegisteredState	= 0x00000002,
68    kIOServiceMatchedState	= 0x00000004,
69    kIOServiceFirstPublishState	= 0x00000008,
70    kIOServiceFirstMatchState	= 0x00000010
71};
72
73enum {
74    // options for registerService()
75    kIOServiceExclusive		= 0x00000001,
76
77    // options for terminate()
78    kIOServiceRequired		= 0x00000001,
79    kIOServiceTerminate		= 0x00000004,
80
81    // options for registerService() & terminate()
82    kIOServiceSynchronous	= 0x00000002,
83    // options for registerService()
84    kIOServiceAsynchronous	= 0x00000008
85};
86
87// options for open()
88enum {
89    kIOServiceSeize		= 0x00000001,
90    kIOServiceFamilyOpenOptions = 0xffff0000
91};
92
93// options for close()
94enum {
95    kIOServiceFamilyCloseOptions = 0xffff0000
96};
97
98typedef void * IONotificationRef;
99
100extern const IORegistryPlane *	gIOServicePlane;
101extern const IORegistryPlane *  gIOPowerPlane;
102
103extern const OSSymbol *		gIOResourcesKey;
104extern const OSSymbol *		gIOResourceMatchKey;
105extern const OSSymbol *		gIOProviderClassKey;
106extern const OSSymbol * 	gIONameMatchKey;
107extern const OSSymbol *		gIONameMatchedKey;
108extern const OSSymbol *		gIOPropertyMatchKey;
109extern const OSSymbol *		gIOLocationMatchKey;
110extern const OSSymbol *		gIOParentMatchKey;
111extern const OSSymbol *		gIOPathMatchKey;
112extern const OSSymbol *		gIOMatchCategoryKey;
113extern const OSSymbol *		gIODefaultMatchCategoryKey;
114extern const OSSymbol *		gIOMatchedServiceCountKey;
115
116extern const OSSymbol *		gIOUserClientClassKey;
117extern const OSSymbol *		gIOKitDebugKey;
118extern const OSSymbol *		gIOServiceKey;
119
120extern const OSSymbol *		gIOCommandPoolSizeKey;
121
122extern const OSSymbol *		gIOPublishNotification;
123extern const OSSymbol *		gIOFirstPublishNotification;
124extern const OSSymbol *		gIOMatchedNotification;
125extern const OSSymbol *		gIOFirstMatchNotification;
126extern const OSSymbol *		gIOTerminatedNotification;
127
128extern const OSSymbol *		gIOGeneralInterest;
129extern const OSSymbol *		gIOBusyInterest;
130extern const OSSymbol *		gIOOpenInterest;
131extern const OSSymbol *		gIOAppPowerStateInterest;
132extern const OSSymbol *		gIOPriorityPowerStateInterest;
133
134extern const OSSymbol *		gIODeviceMemoryKey;
135extern const OSSymbol *		gIOInterruptControllersKey;
136extern const OSSymbol *		gIOInterruptSpecifiersKey;
137
138extern SInt32 IOServiceOrdering( const OSMetaClassBase * inObj1, const OSMetaClassBase * inObj2, void * ref );
139
140typedef void (*IOInterruptAction)( OSObject * target, void * refCon,
141				   IOService * nub, int source );
142
143/*! @typedef IOServiceNotificationHandler
144    @param target Reference supplied when the notification was registered.
145    @param refCon Reference constant supplied when the notification was registered.
146    @param newService The IOService object the notification is delivering. It is retained for the duration of the handler's invocation and doesn't need to be released by the handler. */
147
148typedef bool (*IOServiceNotificationHandler)( void * target, void * refCon,
149                  IOService * newService );
150
151/*! @typedef IOServiceInterestHandler
152    @param target Reference supplied when the notification was registered.
153    @param refCon Reference constant supplied when the notification was registered.
154    @param messageType Type of the message - IOKit defined in IOKit/IOMessage.h or family specific.
155    @param provider The IOService object who is delivering the notification. It is retained for the duration of the handler's invocation and doesn't need to be released by the handler.
156    @param messageArgument An argument for message, dependent on its type.
157    @param argSize Non zero if the argument represents a struct of that size, used when delivering messages outside the kernel. */
158
159typedef IOReturn (*IOServiceInterestHandler)( void * target, void * refCon,
160                                              UInt32 messageType, IOService * provider,
161                                              void * messageArgument, vm_size_t argSize );
162
163typedef void (*IOServiceApplierFunction)(IOService * service, void * context);
164typedef void (*OSObjectApplierFunction)(OSObject * object, void * context);
165
166class IOUserClient;
167class IOPlatformExpert;
168
169/*! @class IOService
170    @abstract The base class for most I/O Kit families, devices, and drivers.
171    @discussion The IOService base class defines APIs used to publish services, instantiate other services based on the existance of a providing service (ie. driver stacking), destroy a service and its dependent stack, notify interested parties of service state changes, and general utility functions useful across all families.
172
173Types of service are specified with a matching dictionary that describes properties of the service. For example, a matching dictionary might describe any IOUSBDevice (or subclass), an IOUSBDevice with a certain class code, or a IOPCIDevice with a set of OpenFirmware matching names or device & vendor IDs. Since the matching dictionary is interpreted by the family which created the service, as well as generically by IOService, the list of properties considered for matching depends on the familiy.
174
175Matching dictionaries are associated with IOService classes by the catalogue, as driver property tables, and also supplied by clients of the notification APIs.
176
177IOService provides matching based on C++ class (via OSMetaClass dynamic casting), registry entry name, a registry path to the service (which includes OpenFirmware paths), a name assigned by BSD, or by its location (its point of attachment).
178
179<br><br>Driver Instantiation by IOService<br><br>
180
181Drivers are subclasses of IOService, and their availability is managed through the catalogue. They are instantiated based on the publication of an IOService they use (for example, an IOPCIDevice or IOUSBDevice), or when they are added to  the catalogue and the IOService(s) they use are already available.
182
183When an IOService (the "provider") is published with the @link registerService registerService@/link method, the matching and probing process begins, which is always single threaded per provider. A list of matching dictionaries from the catalog and installed publish notification requests, that successfully match the IOService, is constructed, with ordering supplied by <code>kIOProbeScoreKey</code> ("IOProbeScore") property in the dictionary, or supplied with the notification.
184
185Each entry in the list is then processed in order - for notifications, the notification is delivered, for driver property tables a lot more happens.
186
187The driver class is instantiated and <code>init()</code> called with its property table. The new driver instance is then attached to the provider, and has its @link probe probe@/link method called with the provider as an argument. The default <code>probe</code> method does nothing but return success, but a driver may implement this method to interrogate the provider to make sure it can work with it. It may also modify its probe score at this time. After probe, the driver is detached and the next in the list is considered (ie. attached, probed, and detached).
188
189When the probing phase is complete, the list consists of successfully probed drivers, in order of their probe score (after adjustment during the @link probe probe@/link call). The list is then divided into categories based on the <code>kIOMatchCategoryKey</code> property ("IOMatchCategory"); drivers without a match category are all considered in one default category. Match categories allow multiple clients of a provider to be attached and started, though the provider may also enforce open/close semantics to gain active access to it.
190
191For each category, the highest scoring driver in that category is attached to the provider, and its @link start start@/link method called. If <code>start</code> is successful, the rest of the drivers in the same match category are discarded, otherwise the next highest scoring driver is started, and so on.
192
193The driver should only consider itself in action when the start method is called, meaning it has been selected for use on the provider, and consuming that particular match category. It should also be prepared to be allocated, probed and freed even if the probe was successful.
194
195After the drivers have all synchronously been started, the installed "matched" notifications that match the registered IOService are delivered.
196
197<br><br>Properties used by IOService<br><br>
198
199	<code>kIOClassKey, extern const OSSymbol * gIOClassKey, "IOClass"</code>
200<br>
201<br>
202Class of the driver to instantiate on matching providers.
203<br>
204<br>
205	<code>kIOProviderClassKey, extern const OSSymbol * gIOProviderClassKey, "IOProviderClass"</code>
206<br>
207<br>
208Class of the provider(s) to be considered for matching, checked with OSDynamicCast so subclasses will also match.
209<br>
210<br>
211	<code>kIOProbeScoreKey, extern const OSSymbol * gIOProbeScoreKey, "IOProbeScore"</code>
212<br>
213<br>
214The probe score initially used to order multiple matching drivers.
215<br>
216<br>
217	<code>kIOMatchCategoryKey, extern const OSSymbol * gIOMatchCategoryKey, "IOMatchCategory"</code>
218<br>
219<br>
220A string defining the driver category for matching purposes. All drivers with no <code>IOMatchCategory</code> property are considered to be in the same default category. Only one driver in a category can be started on each provider.
221<br>
222<br>
223	<code>kIONameMatchKey, extern const OSSymbol * gIONameMatchKey, "IONameMatch"</code>
224<br>
225A string or collection of strings that match the provider's name. The comparison is implemented with the @link //apple_ref/cpp/instm/IORegistryEntry/compareNames/virtualbool/(OSObject*,OSString**) IORegistryEntry::compareNames@/link method, which supports a single string, or any collection (OSArray, OSSet, OSDictionary etc.) of strings. IOService objects with OpenFirmware device tree properties (eg. IOPCIDevice) will also be matched based on that standard's "compatible", "name", "device_type" properties. The matching name will be left in the driver's property table in the <code>kIONameMatchedKey</code> property.
226<br>
227Examples
228<pre>
229@textblock
230	<key>IONameMatch</key>
231	<string>pci106b,7</string>
232@/textblock
233</pre>
234
235For a list of possible matching names, a serialized array of strings should used, eg.
236<pre>
237@textblock
238	<key>IONameMatch</key>
239	<array>
240		<string>APPL,happy16</string>
241		<string>pci106b,7</string>
242	</array>
243@/textblock
244</pre>
245
246<br>
247	<code>kIONameMatchedKey, extern const OSSymbol * gIONameMatchedKey, "IONameMatched"</code>
248<br>
249The name successfully matched name from the <code>kIONameMatchKey</code> property will be left in the driver's property table as the <code>kIONameMatchedKey</code> property.
250<br>
251<br>
252	<code>kIOPropertyMatchKey, extern const OSSymbol * gIOPropertyMatchKey, "IOPropertyMatch"</code>
253<br>
254A dictionary of properties that each must exist in the matching IOService and compare successfully with the <code>isEqualTo</code> method.
255
256<pre>
257@textblock
258	<key>IOPropertyMatch</key>
259	<dictionary>
260		<key>APPL,happy16</key>
261		<string>APPL,meek8</string>
262	</dictionary>
263@/textblock
264</pre>
265
266<br>
267	<code>kIOUserClientClassKey, extern const OSSymbol * gIOUserClientClassKey, "IOUserClientClass"</code>
268<br>
269The class name that the service will attempt to allocate when a user client connection is requested.  First the device nub is queried, then the nub's provider is queried by default.
270<br>
271<br>
272	<code>kIOKitDebugKey, extern const OSSymbol * gIOKitDebugKey, "IOKitDebug"</code>
273<br>
274Set some debug flags for logging the driver loading process. Flags are defined in <code>IOKit/IOKitDebug.h</code>, but <code>65535</code> works well.*/
275
276class IOService : public IORegistryEntry
277{
278    OSDeclareDefaultStructors(IOService)
279
280protected:
281/*! @struct ExpansionData
282    @discussion This structure will be used to expand the capablilties of this class in the future.
283    */
284    struct ExpansionData { };
285
286/*! @var reserved
287    Reserved for future use.  (Internal use only)  */
288    ExpansionData * reserved;
289
290private:
291    IOService *		__provider;
292    SInt32		__providerGeneration;
293    IOService *		__owner;
294    IOOptionBits	__state[2];
295    IOOptionBits	__reserved[4];
296    IOServicePM *	pwrMgt;
297
298protected:
299    // TRUE once PMinit has been called
300    bool			initialized;
301
302public:
303    // DEPRECATED
304    IOPMprot * 	 	pm_vars;
305
306public:
307    /* methods available in Mac OS X 10.1 or later */
308/*! @function requestTerminate
309    @abstract Passes a termination up the stack.
310    @discussion When an IOService is made inactive the default behavior is to also make any of its clients that have it as their only provider also inactive, in this way recursing the termination up the driver stack. This method allows an IOService object to override this behavior. Returning <code>true</code> from this method when passed a just terminated provider will cause the client to also be terminated.
311    @param provider The terminated provider of this object.
312    @param options Options originally passed to terminate, plus <code>kIOServiceRecursing</code>.
313    @result <code>true</code> if this object should be terminated now that its provider has been. */
314
315    virtual bool requestTerminate( IOService * provider, IOOptionBits options );
316
317/*! @function willTerminate
318    @abstract Passes a termination up the stack.
319    @discussion Notification that a provider has been terminated, sent before recursing up the stack, in root-to-leaf order.
320    @param provider The terminated provider of this object.
321    @param options Options originally passed to terminate.
322    @result <code>true</code>. */
323
324    virtual bool willTerminate( IOService * provider, IOOptionBits options );
325
326/*! @function didTerminate
327    @abstract Passes a termination up the stack.
328    @discussion Notification that a provider has been terminated, sent after recursing up the stack, in leaf-to-root order.
329    @param provider The terminated provider of this object.
330    @param options Options originally passed to terminate.
331    @param defer If there is pending I/O that requires this object to persist, and the provider is not opened by this object set <code>defer</code> to <code>true</code> and call the <code>IOService::didTerminate()</code> implementation when the I/O completes. Otherwise, leave <code>defer</code> set to its default value of <code>false</code>.
332    @result <code>true</code>. */
333
334    virtual bool didTerminate( IOService * provider, IOOptionBits options, bool * defer );
335
336/*! @function nextIdleTimeout
337    @availability Mac OS X v10.4 and later
338    @abstract Allows subclasses to customize idle power management behavior.
339    @discussion Returns the next time that the device should idle into its next lower power state. Subclasses may override for custom idle behavior.
340
341    A power managed driver might override this method to provide a more sophisticated idle power off algorithm than the one defined by power management.
342    @param currentTime The current time
343    @param lastActivity The time of last activity on this device
344    @param powerState The device's current power state.
345    @result Returns the next time the device should idle off (in seconds, relative to the current time). */
346
347    virtual SInt32 nextIdleTimeout(AbsoluteTime currentTime,
348        AbsoluteTime lastActivity, unsigned int powerState);
349
350/*! @function systemWillShutdown
351    @availability Mac OS X v10.5 and later
352    @abstract Notifies members of the power plane of system shutdown and restart.
353    @discussion This function is called for all members of the power plane in leaf-to-root order. If a subclass needs to wait for a pending I/O, then the call to <code>systemWillShutdown</code> should be postponed until the I/O completes.
354
355    Any power managed driver (which has called @link joinPMtree joinPMtree@/link to join the power plane) interested in taking action at system shutdown or restart should override this method.
356    @param specifier <code>kIOMessageSystemWillPowerOff</code> or <code>kIOMessageSystemWillRestart</code>. */
357
358    virtual void systemWillShutdown( IOOptionBits specifier );
359
360private:
361    OSMetaClassDeclareReservedUsed(IOService, 0);
362    OSMetaClassDeclareReservedUsed(IOService, 1);
363    OSMetaClassDeclareReservedUsed(IOService, 2);
364    OSMetaClassDeclareReservedUsed(IOService, 3);
365    OSMetaClassDeclareReservedUsed(IOService, 4);
366
367    OSMetaClassDeclareReservedUnused(IOService, 5);
368    OSMetaClassDeclareReservedUnused(IOService, 6);
369    OSMetaClassDeclareReservedUnused(IOService, 7);
370    OSMetaClassDeclareReservedUnused(IOService, 8);
371    OSMetaClassDeclareReservedUnused(IOService, 9);
372    OSMetaClassDeclareReservedUnused(IOService, 10);
373    OSMetaClassDeclareReservedUnused(IOService, 11);
374    OSMetaClassDeclareReservedUnused(IOService, 12);
375    OSMetaClassDeclareReservedUnused(IOService, 13);
376    OSMetaClassDeclareReservedUnused(IOService, 14);
377    OSMetaClassDeclareReservedUnused(IOService, 15);
378    OSMetaClassDeclareReservedUnused(IOService, 16);
379    OSMetaClassDeclareReservedUnused(IOService, 17);
380    OSMetaClassDeclareReservedUnused(IOService, 18);
381    OSMetaClassDeclareReservedUnused(IOService, 19);
382    OSMetaClassDeclareReservedUnused(IOService, 20);
383    OSMetaClassDeclareReservedUnused(IOService, 21);
384    OSMetaClassDeclareReservedUnused(IOService, 22);
385    OSMetaClassDeclareReservedUnused(IOService, 23);
386    OSMetaClassDeclareReservedUnused(IOService, 24);
387    OSMetaClassDeclareReservedUnused(IOService, 25);
388    OSMetaClassDeclareReservedUnused(IOService, 26);
389    OSMetaClassDeclareReservedUnused(IOService, 27);
390    OSMetaClassDeclareReservedUnused(IOService, 28);
391    OSMetaClassDeclareReservedUnused(IOService, 29);
392    OSMetaClassDeclareReservedUnused(IOService, 30);
393    OSMetaClassDeclareReservedUnused(IOService, 31);
394    OSMetaClassDeclareReservedUnused(IOService, 32);
395    OSMetaClassDeclareReservedUnused(IOService, 33);
396    OSMetaClassDeclareReservedUnused(IOService, 34);
397    OSMetaClassDeclareReservedUnused(IOService, 35);
398    OSMetaClassDeclareReservedUnused(IOService, 36);
399    OSMetaClassDeclareReservedUnused(IOService, 37);
400    OSMetaClassDeclareReservedUnused(IOService, 38);
401    OSMetaClassDeclareReservedUnused(IOService, 39);
402    OSMetaClassDeclareReservedUnused(IOService, 40);
403    OSMetaClassDeclareReservedUnused(IOService, 41);
404    OSMetaClassDeclareReservedUnused(IOService, 42);
405    OSMetaClassDeclareReservedUnused(IOService, 43);
406    OSMetaClassDeclareReservedUnused(IOService, 44);
407    OSMetaClassDeclareReservedUnused(IOService, 45);
408    OSMetaClassDeclareReservedUnused(IOService, 46);
409    OSMetaClassDeclareReservedUnused(IOService, 47);
410
411#ifdef __ppc__
412    OSMetaClassDeclareReservedUnused(IOService, 48);
413    OSMetaClassDeclareReservedUnused(IOService, 49);
414    OSMetaClassDeclareReservedUnused(IOService, 50);
415    OSMetaClassDeclareReservedUnused(IOService, 51);
416    OSMetaClassDeclareReservedUnused(IOService, 52);
417    OSMetaClassDeclareReservedUnused(IOService, 53);
418    OSMetaClassDeclareReservedUnused(IOService, 54);
419    OSMetaClassDeclareReservedUnused(IOService, 55);
420    OSMetaClassDeclareReservedUnused(IOService, 56);
421    OSMetaClassDeclareReservedUnused(IOService, 57);
422    OSMetaClassDeclareReservedUnused(IOService, 58);
423    OSMetaClassDeclareReservedUnused(IOService, 59);
424    OSMetaClassDeclareReservedUnused(IOService, 60);
425    OSMetaClassDeclareReservedUnused(IOService, 61);
426    OSMetaClassDeclareReservedUnused(IOService, 62);
427    OSMetaClassDeclareReservedUnused(IOService, 63);
428#endif
429
430public:
431/*! @function getState
432    @abstract Accessor for IOService state bits, not normally needed or used outside IOService.
433    @result State bits for the IOService, eg. <code>kIOServiceInactiveState</code>, <code>kIOServiceRegisteredState</code>. */
434
435    virtual IOOptionBits getState( void ) const;
436
437/*! @function isInactive
438    @abstract Checks if the IOService object has been terminated, and is in the process of being destroyed.
439    @discussion When an IOService object is successfully terminated, it is immediately made inactive, which blocks further attach()es, matching or notifications occuring on the object. It remains inactive until the last client closes, and is then finalized and destroyed.
440    @result <code>true</code> if the IOService object has been terminated. */
441
442    bool isInactive( void ) const;
443
444    /* Stack creation */
445
446/*! @function registerService
447    @abstract Starts the registration process for a newly discovered IOService object.
448    @discussion This function allows an IOService subclass to be published and made available to possible clients, by starting the registration process and delivering notifications to registered clients. The object should be completely setup and ready to field requests from clients before <code>registerService</code> is called.
449    @param options The default zero options mask is recommended and should be used in most cases. The registration process is usually asynchronous, with possible driver probing and notification occurring some time later. <code>kIOServiceSynchronous</code> may be passed to carry out the matching and notification process for currently registered clients before returning to the caller. */
450
451    virtual void registerService( IOOptionBits options = 0 );
452
453/*! @function probe
454    @abstract During an IOService object's instantiation, probes a matched service to see if it can be used.
455    @discussion The registration process for an IOService object (the provider) includes instantiating possible driver clients. The <code>probe</code> method is called in the client instance to check the matched service can be used before the driver is considered to be started. Since matching screens many possible providers, in many cases the <code>probe</code> method can be left unimplemented by IOService subclasses. The client is already attached to the provider when <code>probe</code> is called.
456    @param provider The registered IOService object that matches a driver personality's matching dictionary.
457    @param score Pointer to the current driver's probe score, which is used to order multiple matching drivers in the same match category. It defaults to the value of the <code>IOProbeScore</code> property in the drivers property table, or <code>kIODefaultProbeScore</code> if none is specified. The <code>probe</code> method may alter the score to affect start order.
458    @result An IOService instance or zero when the probe is unsuccessful. In almost all cases the value of <code>this</code> is returned on success. If another IOService object is returned, the probed instance is detached and freed, and the returned instance is used in its stead for <code>start</code>. */
459
460    virtual IOService * probe(	IOService * 	provider,
461				SInt32 	  *	score );
462
463/*! @function start
464    @abstract During an IOService object's instantiation, starts the IOService object that has been selected to run on the provider.
465    @discussion The <code>start</code> method of an IOService instance is called by its provider when it has been selected (due to its probe score and match category) as the winning client. The client is already attached to the provider when <code>start</code> is called.<br>Implementations of <code>start</code> must call <code>start</code> on their superclass at an appropriate point. If an implementation of <code>start</code> has already called <code>super::start</code> but subsequently determines that it will fail, it must call <code>super::stop</code> to balance the prior call to <code>super::start</code> and prevent reference leaks.
466    @result <code>true</code> if the start was successful; <code>false</code> otherwise (which will cause the instance to be detached and usually freed). */
467
468    virtual bool start( IOService * provider );
469
470/*! @function stop
471    @abstract During an IOService termination, the stop method is called in its clients before they are detached & it is destroyed.
472    @discussion The termination process for an IOService (the provider) will call stop in each of its clients, after they have closed the provider if they had it open, or immediately on termination. */
473
474    virtual void stop( IOService * provider );
475
476    /* Open / Close */
477
478/*! @function open
479    @abstract Requests active access to a provider.
480    @discussion IOService provides generic open and close semantics to track clients of a provider that have established an active datapath. The use of <code>open</code> and @link close close@/link, and rules regarding ownership are family defined, and defined by the @link handleOpen handleOpen@/link and @link handleClose handleClose@/link methods in the provider. Some families will limit access to a provider based on its open state.
481    @param forClient Designates the client of the provider requesting the open.
482    @param options Options for the open. The provider family may implement options for open; IOService defines only <code>kIOServiceSeize</code> to request the device be withdrawn from its current owner.
483    @result <code>true</code> if the open was successful; <code>false</code> otherwise. */
484
485    virtual bool open( 	 IOService *	   forClient,
486                         IOOptionBits	   options = 0,
487                         void *		   arg = 0 );
488
489/*! @function close
490    @abstract Releases active access to a provider.
491    @discussion IOService provides generic open and close semantics to track clients of a provider that have established an active datapath. The use of @link open open@/link and <code>close</code>, and rules regarding ownership are family defined, and defined by the @link handleOpen handleOpen@/link and @link handleClose handleClose@/link methods in the provider.
492    @param forClient Designates the client of the provider requesting the close.
493    @param options Options available for the close. The provider family may implement options for close; IOService defines none.
494    @param arg Family specific arguments which are ignored by IOService. */
495
496    virtual void close(  IOService *	   forClient,
497                         IOOptionBits	   options = 0 );
498
499/*! @function isOpen
500    @abstract Determines whether a specific, or any, client has an IOService object open.
501    @discussion Returns the open state of an IOService object with respect to the specified client, or when it is open by any client.
502    @param forClient If non-zero, <codeisOpen</code returns the open state for that client. If zero is passed, <codeisOpen</code returns the open state for all clients.
503    @result <codetrue</code if the specific, or any, client has the IOService object open. */
504
505    virtual bool isOpen( const IOService * forClient = 0 ) const;
506
507/*! @function handleOpen
508    @abstract Controls the open / close behavior of an IOService object (overrideable by subclasses).
509    @discussion IOService calls this method in its subclasses in response to the @link open open@/link method, so the subclass may implement the request. The default implementation provides single owner access to an IOService object via <code>open</code>. The object is locked via @link lockForArbitration lockForArbitration@/link before <code>handleOpen</code> is called.
510    @param forClient Designates the client of the provider requesting the open.
511    @param options Options for the open, may be interpreted by the implementor of <code>handleOpen</code>.
512    @result <code>true</code>if the open was successful; <code>false</code> otherwise. */
513
514    virtual bool handleOpen( 	IOService *	  forClient,
515                                IOOptionBits	  options,
516                                void *		  arg );
517
518/*! @function handleClose
519    @abstract Controls the open / close behavior of an IOService object (overrideable by subclasses).
520    @discussion IOService calls this method in its subclasses in response to the @link close close@/link method, so the subclass may implement the request. The default implementation provides single owner access to an IOService object via @link open open@/link. The object is locked via @link lockForArbitration lockForArbitration@/link before <code>handleClose</code> is called.
521    @param forClient Designates the client of the provider requesting the close.
522    @param options Options for the close, may be interpreted by the implementor of @link handleOpen handleOpen@/link. */
523
524    virtual void handleClose(   IOService *	  forClient,
525                                IOOptionBits	  options );
526
527/*! @function handleIsOpen
528    @abstract Controls the open / close behavior of an IOService object (overrideable by subclasses).
529    @discussion IOService calls this method in its subclasses in response to the @link open open@/link method, so the subclass may implement the request. The default implementation provides single owner access to an IOService object via @link open open@/link. The object is locked via @link lockForArbitration lockForArbitration@/link before <code>handleIsOpen</code> is called.
530    @param forClient If non-zero, <code>isOpen</code> returns the open state for that client. If zero is passed, <code>isOpen</code> returns the open state for all clients.
531    @result <code>true</code> if the specific, or any, client has the IOService object open. */
532
533    virtual bool handleIsOpen(  const IOService * forClient ) const;
534
535    /* Stacking change */
536
537/*! @function terminate
538    @abstract Makes an IOService object inactive and begins its destruction.
539    @discussion Registering an IOService object informs possible clients of its existance and instantiates drivers that may be used with it; <code>terminate</code> involves the opposite process of informing clients that an IOService object is no longer able to be used and will be destroyed. By default, if any client has the service open, <code>terminate</code> fails. If the <code>kIOServiceRequired</code> flag is passed however, <code>terminate</code> will be successful though further progress in the destruction of the IOService object will not proceed until the last client has closed it. The service will be made inactive immediately upon successful termination, and all its clients will be notified via their @link message message@/link method with a message of type <code>kIOMessageServiceIsTerminated</code>. Both these actions take place on the caller's thread. After the IOService object is made inactive, further matching or attach calls will fail on it. Each client has its @link stop stop@/link method called upon their close of an inactive IOService object , or on its termination if they do not have it open. After <code>stop</code>, @link detach detach@/link is called in each client. When all clients have been detached, the @link finalize finalize@/link method is called in the inactive service. The termination process is inherently asynchronous because it will be deferred until all clients have chosen to close.
540    @param options In most cases no options are needed. <code>kIOServiceSynchronous</code> may be passed to cause <code>terminate</code> to not return until the service is finalized. */
541
542    virtual bool terminate( IOOptionBits options = 0 );
543
544/*! @function finalize
545    @abstract Finalizes the destruction of an IOService object.
546    @discussion The <code>finalize</code> method is called in an inactive (ie. terminated) IOService object after the last client has detached. IOService's implementation will call @link stop stop@/link, @link close close@/link, and @link detach detach@/link on each provider. When <code>finalize</code> returns, the object's retain count will have no references generated by IOService's registration process.
547    @param options The options passed to the @link terminate terminate@/link method of the IOService object are passed on to <code>finalize</code>.
548    @result <code>true</code>. */
549
550    virtual bool finalize( IOOptionBits options );
551
552/*! @function free
553    @abstract Frees data structures that were allocated when power management was initialized on this service. */
554
555    virtual void free( void );
556
557/*! @function lockForArbitration
558    @abstract Locks an IOService object against changes in state or ownership.
559    @discussion The registration, termination and open / close functions of IOService use <code>lockForArbtration</code> to single-thread access to an IOService object. <code>lockForArbitration</code> grants recursive access to the same thread.
560    @param isSuccessRequired If a request for access to an IOService object should be denied if it is terminated, pass <code>false</code>, otherwise pass <code>true</code>. */
561
562    virtual bool lockForArbitration( bool isSuccessRequired = true );
563
564/*! @function unlockForArbitration
565    @abstract Unlocks an IOService obkect after a successful @link lockForArbitration lockForArbitration@/link.
566    @discussion A thread granted exclusive access to an IOService object should release it with <code>unlockForArbitration</code>. */
567
568    virtual void unlockForArbitration( void );
569
570/*! @function terminateClient
571    @abstract Passes a termination up the stack.
572    @discussion When an IOService object is made inactive the default behavior is to also make any of its clients that have it as their only provider inactive, in this way recursing the termination up the driver stack. This method allows a terminated  IOService object to override this behavior. Note the client may also override this behavior by overriding its @link terminate terminate@/link method.
573    @param client The client of the terminated provider.
574    @param options Options originally passed to @link terminate terminate@/link, plus <code>kIOServiceRecursing</code>.
575    @result result of the terminate request on the client. */
576
577    virtual bool terminateClient( IOService * client, IOOptionBits options );
578
579    /* Busy state indicates discovery, matching or termination is in progress */
580
581/*! @function getBusyState
582    @abstract Returns the <code>busyState</code> of an IOService object.
583    @discussion Many activities in IOService are asynchronous. When registration, matching, or termination is in progress on an IOService object, its <code>busyState</code> is increased by one. Change in <code>busyState</code> to or from zero also changes the IOService object's provider's <code>busyState</code> by one, which means that an IOService object is marked busy when any of the above activities is ocurring on it or any of its clients.
584    @result The <code>busyState</code> value. */
585
586    virtual UInt32 getBusyState( void );
587
588/*! @function adjustBusy
589    @abstract Adjusts the <code>busyState</code> of an IOService object.
590    @discussion Applies a delta to an IOService object's <code>busyState</code>. A change in the <code>busyState</code> to or from zero will change the IOService object's provider's <code>busyState</code> by one (in the same direction).
591    @param delta The delta to be applied to the IOService object's <code>busyState</code>. */
592
593    virtual void adjustBusy( SInt32 delta );
594
595/*! @function waitQuiet
596    @abstract Waits for an IOService object's <code>busyState</code> to be zero.
597    @discussion Blocks the caller until an IOService object is non busy.
598    @param timeout Specifies a maximum time to wait.
599    @result Returns an error code if Mach synchronization primitives fail, <code>kIOReturnTimeout</code>, or <code>kIOReturnSuccess</code>. */
600
601    virtual IOReturn waitQuiet( mach_timespec_t * timeout = 0 );
602
603    /* Matching */
604
605/*! @function matchPropertyTable
606    @abstract Allows a registered IOService object to implement family specific matching.
607    @discussion All matching on an IOService object will call this method to allow a family writer to implement matching in addition to the generic methods provided by IOService. The implementer should examine the matching dictionary passed to see if it contains properties the family understands for matching, and use them to match with the IOService object if so. Note that since matching is also carried out by other parts of the I/O Kit, the matching dictionary may contain properties the family does not understand - these should not be considered matching failures.
608    @param table The dictionary of properties to be matched against.
609    @param score Pointer to the current driver's probe score, which is used to order multiple matching drivers in the same match category. It defaults to the value of the <code>IOProbeScore</code> property in the drivers property table, or <code>kIODefaultProbeScore</code> if none is specified.
610    @result <code>false</code> if the family considers the matching dictionary does not match in properties it understands; <code>true</code> otherwise. */
611
612    virtual bool matchPropertyTable( OSDictionary *	table,
613                                     SInt32       *	score );
614
615    virtual bool matchPropertyTable( OSDictionary * table );
616
617/*! @function matchLocation
618    @abstract Allows a registered IOService object to direct location matching.
619    @discussion By default, a location matching property will be applied to an IOService object's provider. This method allows that behavior to be overridden by families.
620    @param client The IOService object at which matching is taking place.
621    @result Returns the IOService instance to be used for location matching. */
622
623    virtual IOService * matchLocation( IOService * client );
624
625    /* Resource service */
626
627/*! @function publishResource
628    @abstract Uses the resource service to publish a property.
629    @discussion The resource service uses IOService's matching and notification to allow objects to be published and found by any I/O Kit client by a global name. <code>publishResource</code> makes an object available to anyone waiting for it or looking for it in the future.
630    @param key An OSSymbol key that globally identifies the object.
631    @param The object to be published. */
632
633    static void publishResource( const OSSymbol * key, OSObject * value = 0 );
634
635/*! @function publishResource
636    @abstract Uses the resource service to publish a property.
637    @discussion The resource service uses IOService object's matching and notification to allow objects to be published and found by any I/O Kit client by a global name. <code>publishResource</code> makes an object available to anyone waiting for it or looking for it in the future.
638    @param key A C string key that globally identifies the object.
639    @param The object to be published. */
640
641    static void publishResource( const char * key, OSObject * value = 0 );
642    virtual bool addNeededResource( const char * key );
643
644    /* Notifications */
645
646/*! @function addNotification
647    @abstract Adds a persistant notification handler to be notified of IOService events.
648    @discussion IOService will deliver notifications of changes in state of an IOService object to registered clients. The type of notification is specified by a symbol, for example <code>gIOMatchedNotification</code> or <code>gIOTerminatedNotification</code>, and notifications will only include IOService objects that match the supplied matching dictionary. Notifications are ordered by a priority set with <code>addNotification</code>. When the notification is installed, its handler will be called with each of any currently existing IOService objects that are in the correct state (eg. registered) and match the supplied matching dictionary, avoiding races between finding preexisting and new IOService events. The notification request is identified by an instance of an IONotifier object, through which it can be enabled, disabled, or removed. <code>addNotification</code> consumes a retain count on the matching dictionary when the notification is removed.
649    @param type An OSSymbol identifying the type of notification and IOService state:
650<br>	<code>gIOPublishNotification</code> Delivered when an IOService object is registered.
651<br>	<code>gIOFirstPublishNotification</code> Delivered when an IOService object is registered, but only once per IOService instance. Some IOService objects may be reregistered when their state is changed.
652<br>	<code>gIOMatchedNotification</code> Delivered when an IOService object has been matched with all client drivers, and they have been probed and started.
653<br>	<code>gIOFirstMatchNotification</code> Delivered when an IOService object has been matched with all client drivers, but only once per IOService instance. Some IOService objects may be reregistered when their state is changed.
654<br>	<code>gIOTerminatedNotification</code> Delivered after an IOService object has been terminated, during its finalize stage.
655    @param matching A matching dictionary to restrict notifications to only matching IOService objects. The dictionary will be released when the notification is removed, consuming the passed-in reference.
656    @param handler A C function callback to deliver notifications.
657    @param target An instance reference for the callback's use.
658    @param ref A reference constant for the callback's use.
659    @param priority A constant ordering all notifications of a each type.
660    @result An instance of an IONotifier object that can be used to control or destroy the notification request. */
661
662    static IONotifier * addNotification(
663                            const OSSymbol * type, OSDictionary * matching,
664                            IOServiceNotificationHandler handler,
665                            void * target, void * ref = 0,
666                            SInt32 priority = 0 );
667
668/*! @function waitForService
669    @abstract Waits for a matching to service to be published.
670    @discussion Provides a method of waiting for an IOService object matching the supplied matching dictionary to be registered and fully matched.
671    @param matching The matching dictionary describing the desired IOService object. <code>waitForService</code> consumes one reference of the matching dictionary.
672    @param timeout The maximum time to wait.
673    @result A published IOService object matching the supplied dictionary. */
674
675    static IOService * waitForService( OSDictionary * matching,
676                            mach_timespec_t * timeout = 0);
677
678/*! @function getMatchingServices
679    @abstract Finds the set of current published IOService objects matching a matching dictionary.
680    @discussion Provides a method of finding the current set of published IOService objects matching the supplied matching dictionary.
681    @param matching The matching dictionary describing the desired IOService objects.
682    @result An instance of an iterator over a set of IOService objects. To be released by the caller. */
683
684    static OSIterator * getMatchingServices( OSDictionary * matching );
685
686/*! @function installNotification
687    @abstract Adds a persistant notification handler to be notified of IOService events.
688    @discussion A lower level interface to @link addNotification addNotification@/link that installs a handler and returns the current set of IOService objects that are in the specified state and match the matching dictionary.
689    @param type See <code>addNotification</code>.
690    @param matching See <code>addNotification</code>.
691    @param handler See <code>addNotification</code>.
692    @param self See <code>addNotification</code>.
693    @param ref See <code>addNotification</code>.
694    @param priority See <code>addNotification</code>.
695    @param existing Returns an iterator over the set of IOService objects that are currently in the specified state and match the matching dictionary.
696    @result See <code>addNotification</code>.  */
697
698    static IONotifier * installNotification(
699			const OSSymbol * type, OSDictionary * matching,
700			IOServiceNotificationHandler handler,
701			void * target, void * ref,
702			SInt32 priority, OSIterator ** existing );
703
704    /* Helpers to make matching dictionaries for simple cases,
705     * they add keys to an existing dictionary, or create one. */
706
707/*! @function serviceMatching
708    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify an IOService class match.
709    @discussion A very common matching criteria for IOService object is based on its class. <code>serviceMatching</code> creates a matching dictionary that specifies any IOService object of a class, or its subclasses. The class is specified by name, and an existing dictionary may be passed in, in which case the matching properties will be added to that dictionary rather than creating a new one.
710    @param className The class name, as a const C string. Class matching is successful on IOService objects of this class or any subclass.
711    @param table If zero, <code>serviceMatching</code> creates a matching dictionary and returns a reference to it, otherwise the matching properties are added to the specified dictionary.
712    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
713
714    static OSDictionary * serviceMatching( const char * className,
715			OSDictionary * table = 0 );
716
717/*! @function serviceMatching
718    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify an IOService class match.
719    @discussion A very common matching criteria for IOService object is based on its class. <code>serviceMatching</code> creates a matching dictionary that specifies any IOService of a class, or its subclasses. The class is specified by name, and an existing dictionary may be passed in, in which case the matching properties will be added to that dictionary rather than creating a new one.
720    @param className The class name, as an OSString (which includes OSSymbol). Class matching is successful on IOService objects of this class or any subclass.
721    @param table If zero, <code>serviceMatching</code> creates a matching dictionary and returns a reference to it, otherwise the matching properties are added to the specified dictionary.
722    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
723
724    static OSDictionary * serviceMatching( const OSString * className,
725			OSDictionary * table = 0 );
726
727/*! @function nameMatching
728    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify an IOService name match.
729    @discussion A very common matching criteria for IOService object is based on its name. <code>nameMatching</code> creates a matching dictionary that specifies any IOService object which responds successfully to the @link //apple_ref/cpp/instm/IORegistryEntry/compareName/virtualbool/(OSString*,OSString**) IORegistryEntry::compareName@/link method. An existing dictionary may be passed in, in which case the matching properties will be added to that dictionary rather than creating a new one.
730    @param name The service's name, as a const C string. Name matching is successful on IOService objects that respond successfully to the <code>IORegistryEntry::compareName</code> method.
731    @param table If zero, <code>nameMatching</code> creates a matching dictionary and returns a reference to it, otherwise the matching properties are added to the specified dictionary.
732    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
733
734    static OSDictionary * nameMatching( const char * name,
735			OSDictionary * table = 0 );
736
737/*! @function nameMatching
738    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify an IOService name match.
739    @discussion A very common matching criteria for IOService object is based on its name. <code>nameMatching</code> creates a matching dictionary that specifies any IOService object which responds successfully to the @link //apple_ref/cpp/instm/IORegistryEntry/compareName/virtualbool/(OSString*,OSString**) IORegistryEntry::compareName@/link method. An existing dictionary may be passed in, in which case the matching properties will be added to that dictionary rather than creating a new one.
740    @param name The service's name, as an OSString (which includes OSSymbol). Name matching is successful on IOService objects that respond successfully to the <code>IORegistryEntry::compareName</code> method.
741    @param table If zero, <code>nameMatching</code> creates a matching dictionary and returns a reference to it, otherwise the matching properties are added to the specified dictionary.
742    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
743
744    static OSDictionary * nameMatching( const OSString* name,
745			OSDictionary * table = 0 );
746
747/*! @function resourceMatching
748    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify a resource service match.
749    @discussion IOService maintains a resource service IOResources that allows objects to be published and found globally in the I/O Kit based on a name, using the standard IOService matching and notification calls.
750    @param name The resource name, as a const C string. Resource matching is successful when an object by that name has been published with the <code>publishResource</code> method.
751    @param table If zero, <code>resourceMatching</code> creates a matching dictionary and returns a reference to it, otherwise the matching properties are added to the specified dictionary.
752    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
753
754    static OSDictionary * resourceMatching( const char * name,
755			OSDictionary * table = 0 );
756
757/*! @function resourceMatching
758    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify a resource service match.
759    @discussion IOService maintains a resource service IOResources that allows objects to be published and found globally in the I/O Kit based on a name, using the standard IOService matching and notification calls.
760    @param name The resource name, as an OSString (which includes OSSymbol). Resource matching is successful when an object by that name has been published with the <code>publishResource</code> method.
761    @param table If zero, <code>resourceMatching</code> creates a matching dictionary and returns a reference to it, otherwise the matching properties are added to the specified dictionary.
762    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
763
764    static OSDictionary * resourceMatching( const OSString * name,
765			OSDictionary * table = 0 );
766
767
768/*! @function propertyMatching
769    @abstract Creates a matching dictionary, or adds matching properties to an existing dictionary, that specify an IOService phandle match.
770    @discussion TODO A very common matching criteria for IOService is based on its name. nameMatching will create a matching dictionary that specifies any IOService which respond successfully to the IORegistryEntry method compareName. An existing dictionary may be passed in, in which case the matching properties will be added to that dictionary rather than creating a new one.
771    @param key The service's phandle, as a const UInt32. PHandle matching is successful on IOService objects that respond successfully to the IORegistryEntry method compareName.
772    @param value The service's phandle, as a const UInt32. PHandle matching is successful on IOService's which respond successfully to the IORegistryEntry method compareName.
773    @param table If zero, nameMatching will create a matching dictionary and return a reference to it, otherwise the matching properties are added to the specified dictionary.
774    @result The matching dictionary created, or passed in, is returned on success, or zero on failure. */
775
776    static OSDictionary * propertyMatching( const OSSymbol * key, const OSObject * value,
777			OSDictionary * table = 0 );
778
779/*! @function addLocation
780    @abstract Adds a location matching property to an existing dictionary.
781    @discussion This function creates matching properties that specify the location of a IOService object, as an embedded matching dictionary. This matching will be successful on an IOService object that attached to an IOService object which matches this location matching dictionary.
782    @param table The matching properties are added to the specified dictionary, which must be non-zero.
783    @result The location matching dictionary created is returned on success, or zero on failure. */
784
785    static OSDictionary * addLocation( OSDictionary * table );
786
787    /* Helpers for matching dictionaries. */
788
789/*! @function compareProperty
790    @abstract Compares a property in a matching dictionary with an IOService object's property table.
791    @discussion This is a helper function to aid in implementing @link matchPropertyTable matchPropertyTable@/link. If the property specified by <code>key</code> exists in the matching dictionary, it is compared with a property of the same name in the IOService object's property table. The comparison is performed with the <code>isEqualTo</code> method. If the property does not exist in the matching table, success is returned. If the property exists in the matching dictionary but not the IOService property table, failure is returned.
792    @param matching The matching dictionary, which must be non-zero.
793    @param key The dictionary key specifying the property to be compared, as a C string.
794    @result <code>true</code> if the property does not exist in the matching table. If the property exists in the matching dictionary but not the IOService property table, failure is returned. Otherwise the result of calling the property from the matching dictionary's <code>isEqualTo</code> method with the IOService property as an argument is returned. */
795
796    virtual bool compareProperty(   OSDictionary   * matching,
797                                    const char     * key );
798/*! @function compareProperty
799    @abstract Compares a property in a matching dictionary with an IOService object's property table.
800    @discussion This is a helper function to aid in implementing @link matchPropertyTable matchPropertyTable@/link. If the property specified by <code>key</code> exists in the matching dictionary, it is compared with a property of the same name in the IOService object's property table. The comparison is performed with the <code>isEqualTo</code> method. If the property does not exist in the matching table, success is returned. If the property exists in the matching dictionary but not the IOService property table, failure is returned.
801    @param matching The matching dictionary, which must be non-zero.
802    @param key The dictionary key specifying the property to be compared, as an OSString (which includes OSSymbol).
803    @result <code>true</code> if the property does not exist in the matching table. If the property exists in the matching dictionary but not the IOService property table, failure is returned. Otherwise the result of calling the property from the matching dictionary's <code>isEqualTo</code> method with the IOService property as an argument is returned. */
804
805    virtual bool compareProperty(   OSDictionary   * matching,
806                                    const OSString * key );
807
808/*! @function compareProperties
809    @abstract Compares a set of properties in a matching dictionary with an IOService object's property table.
810    @discussion This is a helper function to aid in implementing @link matchPropertyTable matchPropertyTable@/link. A collection of dictionary keys specifies properties in a matching dictionary to be compared, with <code>compareProperty</code>, with an IOService object's property table, if <code>compareProperty</code> returns <code>true</code> for each key, success is returned; otherwise failure.
811    @param matching The matching dictionary, which must be non-zero.
812    @param keys A collection (eg. OSSet, OSArray, OSDictionary) which should contain OSStrings (or OSSymbols) that specify the property keys to be compared.
813    @result Success if <code>compareProperty</code> returns <code>true</code> for each key in the collection; otherwise failure. */
814
815    virtual bool compareProperties( OSDictionary   * matching,
816                                    OSCollection   * keys );
817
818    /* Client / provider accessors */
819
820/*! @function attach
821    @abstract Attaches an IOService client to a provider in the I/O Registry.
822    @discussion This function called in an IOService client enters the client into the I/O Registry as a child of the provider in the service plane. The provider must be active or the attach will fail. Multiple attach calls to the same provider are no-ops and return success. A client may be attached to multiple providers. Entering an object into the I/O Registry retains both the client and provider until they are detached.
823    @param provider The IOService object which will serve as this object's provider.
824    @result <code>false</code> if the provider is inactive or on a resource failure; otherwise <code>true</code>. */
825
826    virtual bool attach( IOService * provider );
827
828/*! @function detach
829    @abstract Detaches an IOService client from a provider in the I/O Registry.
830    @discussion This function called in an IOService client removes the client as a child of the provider in the service plane of the I/O Registry. If the provider is not a parent of the client this is a no-op, otherwise the I/O Registry releases both the client and provider.
831    @param provider The IOService object to detach from. */
832
833    virtual void detach( IOService * provider );
834
835/*! @function getProvider
836    @abstract Returns an IOService object's primary provider.
837    @discussion This function called in an IOService client will return the provider to which it was first attached. Because the majority of IOService objects have only one provider, this is a useful simplification and also supports caching of the provider when the I/O Registry is unchanged.
838    @result The first provider of the client, or zero if the IOService object is not attached into the I/O Registry. The provider is retained while the client is attached, and should not be released by the caller. */
839
840    virtual IOService * getProvider( void ) const;
841
842/*! @function getWorkLoop
843    @abstract Returns the current work loop or <code>provider->getWorkLoop</code>.
844    @discussion This function returns a valid work loop that a client can use to add an IOCommandGate to. The intention is that an IOService client has data that needs to be protected but doesn't want to pay the cost of a dedicated thread. This data has to be accessed from a provider's call-out context as well. So to achieve both of these goals the client creates an IOCommandGate to lock access to his data but he registers it with the provider's work loop, i.e. the work loop which will make the completion call-outs. This avoids a potential deadlock because the work loop gate uses a recursive lock, which allows the same lock to be held multiple times by a single thread.
845    @result A work loop, either the current work loop or it walks up the @link getProvider getProvider@/link chain calling <code>getWorkLoop</code>. Eventually it will reach a valid work loop-based driver or the root of the I/O tree, where it will return a system-wide work loop. Returns 0 if it fails to find (or create) a work loop.*/
846
847    virtual IOWorkLoop * getWorkLoop() const;
848
849/*! @function getProviderIterator
850    @abstract Returns an iterator over an IOService object's providers.
851    @discussion For those few IOService objects that obtain service from multiple providers, this method supplies an iterator over a client's providers.
852    @result An iterator over the providers of the client, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, though they may no longer be attached during the iteration. */
853
854    virtual OSIterator * getProviderIterator( void ) const;
855
856/*! @function getOpenProviderIterator
857    @abstract Returns an iterator over an client's providers that are currently opened by the client.
858    @discussion For those few IOService objects that obtain service from multiple providers, this method supplies an iterator over a client's providers, locking each in turn with @link lockForArbitration lockForArbitration@/link and returning those that have been opened by the client.
859    @result An iterator over the providers the client has open, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, and the current entry in the iteration is locked with <code>lockForArbitration</code>, protecting it from state changes. */
860
861    virtual OSIterator * getOpenProviderIterator( void ) const;
862
863/*! @function getClient
864    @abstract Returns an IOService object's primary client.
865    @discussion This function called in an IOService provider will return the first client to attach to it. For IOService objects which have only only one client, this may be a useful simplification.
866    @result The first client of the provider, or zero if the IOService object is not attached into the I/O Registry. The client is retained while it is attached, and should not be released by the caller. */
867
868    virtual IOService * getClient( void ) const;
869
870/*! @function getClientIterator
871    @abstract Returns an iterator over an IOService object's clients.
872    @discussion For IOService objects that may have multiple clients, this method supplies an iterator over a provider's clients.
873    @result An iterator over the clients of the provider, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, though they may no longer be attached during the iteration. */
874
875    virtual OSIterator * getClientIterator( void ) const;
876
877/*! @function getOpenClientIterator
878    @abstract Returns an iterator over a provider's clients that currently have opened the provider.
879    @discussion For IOService objects that may have multiple clients, this method supplies an iterator over a provider's clients, locking each in turn with @link lockForArbitration lockForArbitration@/link and returning those that have opened the provider.
880    @result An iterator over the clients that have opened the provider, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, and the current entry in the iteration is locked with <code>lockForArbitration</code>, protecting it from state changes. */
881
882    virtual OSIterator * getOpenClientIterator( void ) const;
883
884/*! @function callPlatformFunction
885    @abstract Calls the platform function with the given name.
886    @discussion The platform expert or other drivers may implement various functions to control hardware features.  <code>callPlatformFunction</code> allows any IOService object to access these functions. Normally <code>callPlatformFunction</code> is called on a service's provider. The provider services the request or passes it to its provider. The system's IOPlatformExpert subclass catches functions it knows about and redirects them into other parts of the service plane. If the IOPlatformExpert subclass cannot execute the function, the base class is called. The IOPlatformExpert base class attempts to find a service to execute the function by looking up the function name in an IOResources name space. A service may publish a service using <code>publishResource(functionName, this)</code>. If no service can be found to execute the function an error is returned.
887    @param functionName Name of the function to be called. When <code>functionName</code> is a C string, <code>callPlatformFunction</code> converts the C string to an OSSymbol and calls the OSSymbol version of <code>callPlatformFunction</code>. This process can block and should not be used from an interrupt context.
888    @param waitForFunction If <code>true</code>, <code>callPlatformFunction</code> will not return until the function has been called.
889    @result An IOReturn code; <code>kIOReturnSuccess</code> if the function was successfully executed, <code>kIOReturnUnsupported</code> if a service to execute the function could not be found. Other return codes may be returned by the function.*/
890
891    virtual IOReturn callPlatformFunction( const OSSymbol * functionName,
892					   bool waitForFunction,
893					   void *param1, void *param2,
894					   void *param3, void *param4 );
895
896    virtual IOReturn callPlatformFunction( const char * functionName,
897					   bool waitForFunction,
898					   void *param1, void *param2,
899					   void *param3, void *param4 );
900
901
902    /* Some accessors */
903
904/*! @function getPlatform
905    @abstract Returns a pointer to the platform expert instance for the computer.
906    @discussion This method provides an accessor to the platform expert instance for the computer.
907    @result A pointer to the IOPlatformExport instance. It should not be released by the caller. */
908
909    static IOPlatformExpert * getPlatform( void );
910
911/*! @function getPMRootDomain
912    @abstract Returns a pointer to the power management root domain instance for the computer.
913    @discussion This method provides an accessor to the power management root domain instance for the computer.
914    @result A pointer to the power management root domain instance. It should not be released by the caller. */
915
916    static class IOPMrootDomain * getPMRootDomain( void );
917
918/*! @function getServiceRoot
919    @abstract Returns a pointer to the root of the service plane.
920    @discussion This method provides an accessor to the root of the service plane for the computer.
921    @result A pointer to the IOService instance at the root of the service plane. It should not be released by the caller. */
922
923    static IOService * getServiceRoot( void );
924
925/*! @function getResourceService
926    @abstract Returns a pointer to the IOResources service.
927    @discussion IOService maintains a resource service IOResources that allows objects to be published and found globally in the I/O Kit based on a name, using the standard IOService matching and notification calls.
928    @result A pointer to the IOResources instance. It should not be released by the caller. */
929
930    static IOService * getResourceService( void );
931
932    /* Allocate resources for a matched service */
933
934/*! @function getResources
935    @abstract Allocates any needed resources for a published IOService object before clients attach.
936    @discussion This method is called during the registration process for an IOService object if there are successful driver matches, before any clients attach. It allows for lazy allocation of resources to an IOService object when a matching driver is found.
937    @result An IOReturn code; <code>kIOReturnSuccess</code> is necessary for the IOService object to be successfully used, otherwise the registration process for the object is halted. */
938
939    virtual IOReturn getResources( void );
940
941    /* Device memory accessors */
942
943/*! @function getDeviceMemoryCount
944    @abstract Returns a count of the physical memory ranges available for a device.
945    @discussion This method returns the count of physical memory ranges, each represented by an IODeviceMemory instance, that have been allocated for a memory mapped device.
946    @result An integer count of the number of ranges available. */
947
948    virtual IOItemCount getDeviceMemoryCount( void );
949
950/*! @function getDeviceMemoryWithIndex
951    @abstract Returns an instance of IODeviceMemory representing one of a device's memory mapped ranges.
952    @discussion This method returns a pointer to an instance of IODeviceMemory for the physical memory range at the given index for a memory mapped device.
953    @param index An index into the array of ranges assigned to the device.
954    @result A pointer to an instance of IODeviceMemory, or zero if the index is beyond the count available. The IODeviceMemory is retained by the provider, so is valid while attached, or while any mappings to it exist. It should not be released by the caller. See also @link mapDeviceMemoryWithIndex mapDeviceMemoryWithIndex@/link, which creates a device memory mapping. */
955
956    virtual IODeviceMemory * getDeviceMemoryWithIndex( unsigned int index );
957
958/*! @function mapDeviceMemoryWithIndex
959    @abstract Maps a physical range of a device.
960    @discussion This method creates a mapping for the IODeviceMemory at the given index, with <code>IODeviceMemory::map(options)</code>. The mapping is represented by the returned instance of IOMemoryMap, which should not be released until the mapping is no longer required.
961    @param index An index into the array of ranges assigned to the device.
962    @result An instance of IOMemoryMap, or zero if the index is beyond the count available. The mapping should be released only when access to it is no longer required. */
963
964    virtual IOMemoryMap * mapDeviceMemoryWithIndex( unsigned int index,
965						IOOptionBits options = 0 );
966
967/*! @function getDeviceMemory
968    @abstract Returns the array of IODeviceMemory objects representing a device's memory mapped ranges.
969    @discussion This method returns an array of IODeviceMemory objects representing the physical memory ranges allocated to a memory mapped device.
970    @result An OSArray of IODeviceMemory objects, or zero if none are available. The array is retained by the provider, so is valid while attached. */
971
972    virtual OSArray * getDeviceMemory( void );
973
974/*! @function setDeviceMemory
975    @abstract Sets the array of IODeviceMemory objects representing a device's memory mapped ranges.
976    @discussion This method sets an array of IODeviceMemory objects representing the physical memory ranges allocated to a memory mapped device.
977    @param array An OSArray of IODeviceMemory objects, or zero if none are available. The array will be retained by the object. */
978
979    virtual void setDeviceMemory( OSArray * array );
980
981    /* Interrupt accessors */
982
983/*! @function registerInterrupt
984    @abstract Registers a C function interrupt handler for a device supplying interrupts.
985    @discussion This method installs a C function interrupt handler to be called at primary interrupt time for a device's interrupt. Only one handler may be installed per interrupt source. IOInterruptEventSource provides a work loop based abstraction for interrupt delivery that may be more appropriate for work loop based drivers.
986    @param source The index of the interrupt source in the device.
987    @param target An object instance to be passed to the interrupt handler.
988    @param handler The C function to be called at primary interrupt time when the interrupt occurs. The handler should process the interrupt by clearing the interrupt, or by disabling the source.
989    @param refCon A reference constant for the handler's use.
990    @result An IOReturn code.<br><code>kIOReturnNoInterrupt</code> is returned if the source is not valid; <code>kIOReturnNoResources</code> is returned if the interrupt already has an installed handler. */
991
992    virtual IOReturn registerInterrupt(int source, OSObject *target,
993				       IOInterruptAction handler,
994				       void *refCon = 0);
995
996/*! @function unregisterInterrupt
997    @abstract Removes a C function interrupt handler for a device supplying hardware interrupts.
998    @discussion This method removes a C function interrupt handler previously installed with @link registerInterrupt registerInterrupt@/link.
999    @param source The index of the interrupt source in the device.
1000    @result An IOReturn code (<code>kIOReturnNoInterrupt</code> is returned if the source is not valid). */
1001
1002    virtual IOReturn unregisterInterrupt(int source);
1003
1004/*! @function getInterruptType
1005    @abstract Returns the type of interrupt used for a device supplying hardware interrupts.
1006    @param source The index of the interrupt source in the device.
1007    @param interruptType The interrupt type for the interrupt source will be stored here by <code>getInterruptType</code>.<br> <code>kIOInterruptTypeEdge</code> will be returned for edge-trigggered sources.<br><code>kIOInterruptTypeLevel</code> will be returned for level-trigggered sources.
1008    @result An IOReturn code (<code>kIOReturnNoInterrupt</code> is returned if the source is not valid). */
1009
1010    virtual IOReturn getInterruptType(int source, int *interruptType);
1011
1012/*! @function enableInterrupt
1013    @abstract Enables a device interrupt.
1014    @discussion It is the caller's responsiblity to keep track of the enable state of the interrupt source.
1015    @param source The index of the interrupt source in the device.
1016    @result An IOReturn code (<code>kIOReturnNoInterrupt</code> is returned if the source is not valid). */
1017
1018    virtual IOReturn enableInterrupt(int source);
1019
1020/*! @function disableInterrupt
1021    @abstract Synchronously disables a device interrupt.
1022    @discussion If the interrupt routine is running, the call will block until the routine completes. It is the caller's responsiblity to keep track of the enable state of the interrupt source.
1023    @param source The index of the interrupt source in the device.
1024    @result An IOReturn code (<code>kIOReturnNoInterrupt</code> is returned if the source is not valid). */
1025
1026    virtual IOReturn disableInterrupt(int source);
1027
1028/*! @function causeInterrupt
1029    @abstract Causes a device interrupt to occur.
1030    @discussion Emulates a hardware interrupt, to be called from task level.
1031    @param source The index of the interrupt source in the device.
1032    @result An IOReturn code (<code>kIOReturnNoInterrupt</code> is returned if the source is not valid). */
1033
1034    virtual IOReturn causeInterrupt(int source);
1035
1036/*! @function requestProbe
1037    @abstract Requests that hardware be re-scanned for devices.
1038    @discussion For bus families that do not usually detect device addition or removal, this method represents an external request (eg. from a utility application) to rescan and publish or remove found devices.
1039    @param options Family defined options, not interpreted by IOService.
1040    @result An IOReturn code. */
1041
1042    virtual IOReturn requestProbe( IOOptionBits options );
1043
1044    /* Generic API for non-data-path upstream calls */
1045
1046/*! @function message
1047    @abstract Receives a generic message delivered from an attached provider.
1048    @discussion A provider may deliver messages via the <code>message</code> method to its clients informing them of state changes, such as <code>kIOMessageServiceIsTerminated</code> or <code>kIOMessageServiceIsSuspended</code>. Certain messages are defined by the I/O Kit in <code>IOMessage.h</code> while others may be family dependent. This method is implemented in the client to receive messages.
1049    @param type A type defined in <code>IOMessage.h</code> or defined by the provider family.
1050    @param provider The provider from which the message originates.
1051    @param argument An argument defined by the provider family, not used by IOService.
1052    @result An IOReturn code defined by the message type. */
1053
1054    virtual IOReturn message( UInt32 type, IOService * provider,
1055                              void * argument = 0 );
1056
1057/*! @function messageClient
1058    @abstract Sends a generic message to an attached client.
1059    @discussion A provider may deliver messages via the @link message message@/link method to its clients informing them of state changes, such as <code>kIOMessageServiceIsTerminated</code> or <code>kIOMessageServiceIsSuspended</code>. Certain messages are defined by the I/O Kit in <code>IOMessage.h</code> while others may be family dependent. This method may be called in the provider to send a message to the specified client, which may be useful for overrides.
1060    @param type A type defined in <code>IOMessage.h</code> or defined by the provider family.
1061    @param client A client of the IOService to send the message.
1062    @param argument An argument defined by the provider family, not used by IOService.
1063    @result The return code from the client message call. */
1064
1065    virtual IOReturn messageClient( UInt32 messageType, OSObject * client,
1066                                    void * messageArgument = 0, vm_size_t argSize = 0 );
1067
1068/*! @function messageClients
1069    @abstract Sends a generic message to all attached clients.
1070    @discussion A provider may deliver messages via the @link message message@/link method to its clients informing them of state changes, such as <code>kIOMessageServiceIsTerminated</code> or <code>kIOMessageServiceIsSuspended</code>. Certain messages are defined by the I/O Kit in <code>IOMessage.h</code> while others may be family dependent. This method may be called in the provider to send a message to all the attached clients, via the @link messageClient messageClient@/link method.
1071    @param type A type defined in <code>IOMessage.h</code> or defined by the provider family.
1072    @param argument An argument defined by the provider family, not used by IOService.
1073    @result Any non-<code>kIOReturnSuccess</code> return codes returned by the clients, or <code>kIOReturnSuccess</code> if all return <code>kIOReturnSuccess</code>. */
1074
1075    virtual IOReturn messageClients( UInt32 type,
1076                                     void * argument = 0, vm_size_t argSize = 0 );
1077
1078    virtual IONotifier * registerInterest( const OSSymbol * typeOfInterest,
1079                                           IOServiceInterestHandler handler,
1080                                           void * target, void * ref = 0 );
1081
1082    virtual void applyToProviders( IOServiceApplierFunction applier,
1083                                   void * context );
1084
1085    virtual void applyToClients( IOServiceApplierFunction applier,
1086                                 void * context );
1087
1088    virtual void applyToInterested( const OSSymbol * typeOfInterest,
1089                                    OSObjectApplierFunction applier,
1090                                    void * context );
1091
1092    virtual IOReturn acknowledgeNotification( IONotificationRef notification,
1093                                              IOOptionBits response );
1094
1095    /* User client create */
1096
1097/*! @function newUserClient
1098    @abstract Creates a connection for a non kernel client.
1099    @discussion A non kernel client may request a connection be opened via the @link //apple_ref/c/func/IOServiceOpen IOServiceOpen@/link library function, which will call this method in an IOService object. The rules and capabilities of user level clients are family dependent, and use the functions of the IOUserClient class for support. IOService's implementation returns <code>kIOReturnUnsupported</code>, so any family supporting user clients must implement this method.
1100    @param owningTask The Mach task of the client thread in the process of opening the user client. Note that in Mac OS X, each process is based on a Mach task and one or more Mach threads. For more information on the composition of a Mach task and its relationship with Mach threads, see {@linkdoc //apple_ref/doc/uid/TP30000905-CH209-TPXREF103 "Tasks and Threads"}.
1101    @param securityID A token representing the access level for the task.
1102    @param type A constant specifying the type of connection to be created, specified by the caller of @link //apple_ref/c/func/IOServiceOpen IOServiceOpen@/link and interpreted only by the family.
1103    @param handler An instance of an IOUserClient object to represent the connection, which will be released when the connection is closed, or zero if the connection was not opened.
1104    @param properties A dictionary of additional properties for the connection.
1105    @result A return code to be passed back to the caller of <code>IOServiceOpen</code>. */
1106
1107    virtual IOReturn newUserClient( task_t owningTask, void * securityID,
1108                                    UInt32 type, OSDictionary * properties,
1109                                    IOUserClient ** handler );
1110
1111    virtual IOReturn newUserClient( task_t owningTask, void * securityID,
1112                                    UInt32 type, IOUserClient ** handler );
1113
1114    /* Return code utilities */
1115
1116/*! @function stringFromReturn
1117    @abstract Supplies a programmer-friendly string from an IOReturn code.
1118    @discussion Strings are available for the standard return codes in <code>IOReturn.h</code> in IOService, while subclasses may implement this method to interpret family dependent return codes.
1119    @param rtn The IOReturn code.
1120    @result A pointer to a constant string, or zero if the return code is unknown. */
1121
1122    virtual const char * stringFromReturn( IOReturn rtn );
1123
1124/*! @function errnoFromReturn
1125    @abstract Translates an IOReturn code to a BSD <code>errno</code>.
1126    @discussion BSD defines its own return codes for its functions in <code>sys/errno.h</code>, and I/O Kit families may need to supply compliant results in BSD shims. Results are available for the standard return codes in <code>IOReturn.h</code> in IOService, while subclasses may implement this method to interpret family dependent return codes.
1127    @param rtn The IOReturn code.
1128    @result The BSD <code>errno</code> or <code>EIO</code> if unknown. */
1129
1130    virtual int errnoFromReturn( IOReturn rtn );
1131
1132    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1133    /* * * * * * * * * * * * Internals * * * * * * * * * * * */
1134    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1135
1136public:
1137    int               _numInterruptSources;
1138    IOInterruptSource *_interruptSources;
1139
1140    static void initialize( void );
1141
1142    virtual bool serializeProperties( OSSerialize * s ) const;
1143
1144    static void setPlatform( IOPlatformExpert * platform);
1145    static void setPMRootDomain( class IOPMrootDomain * rootDomain );
1146
1147    static IOReturn catalogNewDrivers( OSOrderedSet * newTables );
1148    static IOReturn waitMatchIdle( UInt32 ms );
1149
1150    static IOService * resources( void );
1151    virtual bool checkResources( void );
1152    virtual bool checkResource( OSObject * matching );
1153
1154    virtual void probeCandidates( OSOrderedSet * matches );
1155    virtual bool startCandidate( IOService * candidate );
1156    virtual IOService * getClientWithCategory( const OSSymbol * category );
1157
1158    virtual bool passiveMatch( OSDictionary * matching, bool changesOK = false);
1159
1160    virtual void startMatching( IOOptionBits options = 0 );
1161    virtual void doServiceMatch( IOOptionBits options );
1162    virtual void doServiceTerminate( IOOptionBits options );
1163
1164    static OSObject * getExistingServices( OSDictionary * matching,
1165		 IOOptionBits inState, IOOptionBits options = 0 );
1166
1167    static IONotifier * setNotification(
1168			const OSSymbol * type, OSDictionary * matching,
1169                    	IOServiceNotificationHandler handler,
1170                        void * target, void * ref,
1171                        SInt32 priority = 0 );
1172
1173    static IONotifier * doInstallNotification(
1174			const OSSymbol * type, OSDictionary * matching,
1175			IOServiceNotificationHandler handler,
1176			void * target, void * ref,
1177			SInt32 priority, OSIterator ** existing );
1178
1179    static bool syncNotificationHandler( void * target, void * ref,
1180			IOService * newService );
1181
1182    virtual void deliverNotification( const OSSymbol * type,
1183                            IOOptionBits orNewState, IOOptionBits andNewState );
1184
1185    bool invokeNotifer( class _IOServiceNotifier * notify );
1186
1187    virtual void unregisterAllInterest( void );
1188
1189    virtual IOReturn waitForState( UInt32 mask, UInt32 value,
1190				 mach_timespec_t * timeout = 0 );
1191
1192    UInt32 _adjustBusy( SInt32 delta );
1193
1194    bool terminatePhase1( IOOptionBits options = 0 );
1195    void scheduleTerminatePhase2( IOOptionBits options = 0 );
1196    void scheduleStop( IOService * provider );
1197    void scheduleFinalize( void );
1198    static void terminateThread( void * arg );
1199    static void terminateWorker( IOOptionBits options );
1200    static void actionWillTerminate( IOService * victim, IOOptionBits options,
1201                                        OSArray * doPhase2List );
1202    static void actionDidTerminate( IOService * victim, IOOptionBits options );
1203    static void actionFinalize( IOService * victim, IOOptionBits options );
1204    static void actionStop( IOService * client, IOService * provider );
1205
1206    virtual IOReturn resolveInterrupt(IOService *nub, int source);
1207    virtual IOReturn lookupInterrupt(int source, bool resolve, IOInterruptController **interruptController);
1208
1209    // SPI to control CPU low power modes
1210    void  setCPUSnoopDelay(UInt32 ns);
1211    UInt32 getCPUSnoopDelay();
1212    void   requireMaxBusStall(UInt32 ns);
1213
1214    void PMfree( void );
1215
1216    /* power management */
1217
1218/*! @function PMinit
1219    @abstract Initializes power management for a driver.
1220    @discussion <code>PMinit</code> allocates and initializes the power management instance variables, and it should be called before accessing those variables or calling the power management methods. This method should be called inside the driver's <code>start</code> routine and must be paired with a call to @link PMstop PMstop@/link.
1221
1222    Most calls to <code>PMinit</code> are followed by calls to @link joinPMtree joinPMtree@/link and @link registerPowerDriver registerPowerDriver@/link.
1223*/
1224    virtual void PMinit (void );
1225
1226/*! @function PMstop
1227    @abstract Frees and removes the driver from power management.
1228    @discussion The power managment variables don't exist after this call and the power managment methods in the caller shouldn't be called.
1229
1230    Calling <code>PMstop</code> cleans up for the three power management initialization calls: @link PMinit PMinit@/link, @link joinPMtree joinPMtree@/link, and @link registerPowerDriver registerPowerDriver@/link.
1231*/
1232    virtual void PMstop ( void );
1233
1234/*! @function joinPMtree
1235    @abstract Joins the driver into the power plane of the I/O Registry .
1236    @discussion A driver uses this method to call its nub when initializing (usually in its <code>start</code> routine after calling @link PMinit PMinit@/link), to be attached into the power management hierarchy (i.e., the power plane). A driver usually calls this method on the driver for the device that provides it power (this is frequently the nub).
1237
1238    Before this call returns, the caller will probably be called at @link setPowerParent setPowerParent@/link and @link setAggressiveness setAggressiveness@/link and possibly at @link addPowerChild addPowerChild@/link as it is added to the hierarchy.
1239
1240    This method may be overridden by a nub subclass.
1241    @param driver The driver to be added to the power plane, usually <code>this</code>.
1242*/
1243    virtual void joinPMtree ( IOService * driver );
1244
1245/*! @function registerPowerDriver
1246    @abstract Registers a set of power states that the driver supports.
1247
1248    @discussion A driver defines its array of supported power states with power management in its power management initialization (its <code>start</code> routine). If successful, power management will call the driver to instruct it to change its power state through @link setPowerState setPowerState@/link.
1249
1250    Most drivers do not need to override <code>registerPowerDriver</code>. A nub may override <code>registerPowerDriver</code> if it needs to arrange its children in the power plane differently than the default placement, but this is uncommon.
1251
1252    @param controllingDriver A pointer to the calling driver, usually <code>this</code>.
1253    @param powerStates A driver-defined array of power states that the driver and device support. Power states are defined in <code>pwr_mgt/IOPMpowerState.h</code>.
1254    @param numberOfStates The number of power states in the array.
1255    @result </code>IOPMNoErr</code>. All errors are logged via <code>kprintf</code>.
1256*/
1257    virtual IOReturn registerPowerDriver (
1258                    IOService* controllingDriver,
1259                    IOPMPowerState* powerStates,
1260                    unsigned long numberOfStates );
1261
1262/*!
1263    @function registerInterestedDriver
1264    @abstract Allows an IOService object to register interest in the changing power state of a power-managed IOService object.
1265    @discussion Call <code>registerInterestedDriver</code> on the IOService object you are interested in receiving power state messages from, and pass a pointer to the interested driver (<code>this</code>) as an argument.
1266
1267    The interested driver should override @link powerStateWillChangeTo powerStateWillChangeTo@/link and @link powerStateDidChangeTo powerStateDidChangeTo@/link to receive these power change messages.
1268
1269    Interested drivers must acknowledge power changes in <code>powerStateWillChangeTo</code> or <code>powerStateDidChangeTo</code>, either via return value or later calls to @link acknowledgePowerChange acknowledgePowerChange@/link.
1270
1271    Most drivers do not need to override <code>registerInterestedDriver</code>.
1272    @param theDriver The driver of interest adds this pointer to the list of interested drivers. It informs drivers on this list before and after the power change.
1273    @result Flags describing the capability of the device in its current power state. If the current power state is not yet defined, zero is returned (this is the case when the driver is not yet in the power domain hierarchy or hasn't fully registered with power management yet).
1274*/
1275    virtual IOPMPowerFlags registerInterestedDriver ( IOService* theDriver );
1276
1277/*! @function deRegisterInterestedDriver
1278    @abstract De-registers power state interest from a previous call to <code>registerInterestedDriver</code>.
1279    @discussion Most drivers do not need to override <code>deRegisterInterestedDriver</code>.
1280    @param theDriver The interested driver previously passed into @link registerInterestedDriver registerInterestedDriver@/link.
1281    @result A return code that can be ignored by the caller.
1282*/
1283    virtual IOReturn deRegisterInterestedDriver ( IOService * theDriver );
1284
1285/*! @function acknowledgePowerChange
1286    @abstract Acknowledges an in-progress power state change.
1287    @discussion When power management informs an interested object (via @link powerStateWillChangeTo powerStateWillChangeTo@/link or @link powerStateDidChangeTo powerStateDidChangeTo@/link), the object can return an immediate acknowledgement via a return code, or it may return an indication that it will acknowledge later by calling <code>acknowledgePowerChange</code>.
1288
1289    Interested objects are those that have registered as interested drivers, as well as power plane children of the power changing driver.
1290
1291    A driver that calls @link registerInterestedDriver registerInterestedDriver@/link must call <code>acknowledgePowerChange</code>, or use an immediate acknowledgement return from <code>powerStateWillChangeTo</code> or <code>powerStateDidChangeTo</code>.
1292
1293    Most drivers do not need to override <code>acknowledgePowerChange</code>.
1294
1295    @param whichDriver A pointer to the calling driver. The called object tracks all interested parties to ensure that all have acknowledged the power state change.
1296    @result <code>IOPMNoErr</code>.
1297*/
1298    virtual IOReturn acknowledgePowerChange ( IOService * whichDriver );
1299
1300
1301
1302/*! @function acknowledgeSetPowerState
1303    @abstract Acknowledges the belated completion of a driver's <code>setPowerState</code> power state change.
1304    @discussion After power management instructs a driver to change its state via @link setPowerState setPowerState@/link, that driver must acknowledge the change when its device has completed its transition. The acknowledgement may be immediate, via a return code from <code>setPowerState</code>, or delayed, via this call to <code>acknowledgeSetPowerState</code>.
1305
1306    Any driver that does not return <code>kIOPMAckImplied</code> from its <code>setPowerState</code> implementation must later call <code>acknowledgeSetPowerState</code>.
1307
1308    Most drivers do not need to override <code>acknowledgeSetPowerState</code>.
1309    @result <code>IOPMNoErr</code>.
1310*/
1311    virtual IOReturn acknowledgeSetPowerState ( void );
1312
1313/*! @function powerDomainWillChangeTo
1314    @abstract Notifies a driver that its power domain is about to change state.
1315    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1316*/
1317    IOReturn powerDomainWillChangeTo (
1318                    IOPMPowerFlags newPowerStateFlags,
1319                    IOPowerConnection * whichParent );
1320
1321/*! @function powerDomainDidChangeTo
1322    @abstract Notifies a driver that its power domain is about to change state.
1323    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1324*/
1325    IOReturn powerDomainDidChangeTo (
1326                    IOPMPowerFlags newPowerStateFlags,
1327                    IOPowerConnection * whichParent );
1328
1329/*! @function requestPowerDomainState
1330    @abstract Tells a driver to adjust its power state.
1331    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1332*/
1333    virtual IOReturn requestPowerDomainState (
1334                    IOPMPowerFlags desiredState,
1335                    IOPowerConnection * whichChild,
1336                    unsigned long specificationFlags );
1337
1338/*! @function makeUsable
1339    @abstract Requests that a device become usable.
1340    @discussion This method is called when some client of a device (or the device's own driver) is asking for the device to become usable. Power management responds by telling the object upon which this method is called to change to its highest power state.
1341
1342    <code>makeUsable</code> is implemented using @link changePowerStateToPriv changePowerStateToPriv@/link.
1343
1344    Subsequent requests for lower power, such as from <code>changePowerStateToPriv</code>, will pre-empt this request.
1345    @result A return code that can be ignored by the caller.
1346*/
1347    virtual IOReturn makeUsable ( void );
1348
1349/*! @function temporaryPowerClampOn
1350    @abstract A driver calls this method to hold itself in the highest power state until it has children.
1351    @discussion Use <code>temporaryPowerClampOn</code> to hold your driver in its highest power state while waiting for child devices to attach. After children have attached, the clamp is released and the device's power state is controlled by the children's requirements.
1352    @result A return code that can be ignored by the caller.
1353*/
1354    virtual IOReturn temporaryPowerClampOn ( void );
1355
1356/*! @function changePowerStateTo
1357    @abstract Sets a driver's power state.
1358    @discussion This function is one of several that are used to set a driver's power state. In most circumstances, however, you should call @link changePowerStateToPriv changePowerStateToPriv@/link instead.
1359
1360	Calls to <code>changePowerStateTo</code>, <code>changePowerStateToPriv</code>, and a driver's power children all affect the power state of a driver. For legacy design reasons, they have overlapping functionality. Although you should call <code>changePowerStateToPriv</code> to change your device's power state, you might need to call <code>changePowerStateTo</code> in the following circumstances:
1361
1362    <ul><li>If a driver will be using <code>changePowerStateToPriv</code> to change its power state, it should call <code>changePowerStateTo(0)</code> in its <code>start</code> routine to eliminate the influence <code>changePowerStateTo</code> has on power state calculations.
1363
1364    <li>Call <code>changePowerStateTo</code> in conjunction with @link setIdleTimerPeriod setIdleTimerPeriod@/link and @link activityTickle activityTickle@/link to idle a driver into a low power state. For a driver with 3 power states, for example, <code>changePowerStateTo(1)</code> sets a minimum level of power state 1, such that the idle timer period may not set your device's power any lower than state 1.</ul>
1365
1366    @param ordinal The number of the desired power state in the power state array.
1367    @result A return code that can be ignored by the caller. */
1368    virtual IOReturn changePowerStateTo ( unsigned long ordinal );
1369
1370/*! @function currentCapability
1371    @abstract Finds out the capability of a device's current power state.
1372    @result A copy of the <code>capabilityFlags</code> field for the current power state in the power state array.
1373    */
1374   virtual  IOPMPowerFlags currentCapability ( void );
1375
1376/*! @function currentPowerConsumption
1377    @abstract Finds out the current power consumption of a device.
1378    @discussion Most Mac OS X power managed drivers do not report their power consumption via the <code>staticPower</code> field. Thus this call will not accurately reflect power consumption for most drivers.
1379    @result A copy of the <code>staticPower</code> field for the current power state in the power state array.
1380*/
1381    virtual  unsigned long currentPowerConsumption ( void );
1382
1383/*! @function activityTickle
1384    @abstract Informs power management when a power-managed device is in use, so that power management can track when it is idle and adjust its power state accordingly.
1385    @discussion The <code>activityTickle</code> method is provided for objects in the system (or for the driver itself) to tell a driver that its device is being used.
1386
1387    The IOService superclass can manage idleness determination with a simple idle timer mechanism and this <code>activityTickle</code> call. To start this up, the driver calls its superclass's <code>setIdleTimerPeriod</code>. This starts a timer for the time interval specified in the call. When the timer expires, the superclass checks to see if there has been any activity since the last timer expiration. (It checks to see if <code>activityTickle</code> has been called). If there has been activity, it restarts the timer, and this process continues. When the timer expires, and there has been no device activity, the superclass lowers the device power state to the next lower state. This can continue until the device is in state zero.
1388
1389    After the device has been powered down by at least one power state, a subsequent call to <code>activityTickle</code> causes the device to be switched to a higher state required for the activity.
1390
1391    If the driver is managing the idleness determination totally on its own, the value of the <code>type</code> parameter should be <code>kIOPMSubclassPolicy</code>, and the driver should override the <code>activityTickle</code> method. The superclass IOService implementation of <code>activityTickle</code> does nothing with the <code>kIOPMSubclassPolicy</code> argument.
1392
1393    @param type When <code>type</code> is <code>kIOPMSubclassPolicy</code>, <code>activityTickle</code> is not handled in IOService and should be intercepted by the subclass. When <code>type</code> is <code>kIOPMSuperclassPolicy1</code>, an activity flag is set and the device state is checked. If the device has been powered down, it is powered up again.
1394    @param stateNumber When <code>type</code> is <code>kIOPMSuperclassPolicy1</code>, <code>stateNumber</code> contains the desired power state ordinal for the activity. If the device is in a lower state, the superclass will switch it to this state. This is for devices that can handle some accesses in lower power states; the device is powered up only as far as it needs to be for the activity.
1395    @result When <code>type</code> is <code>kIOPMSuperclassPolicy1</code>, the superclass returns <code>true</code> if the device is currently in the state specified by <code>stateNumber</code>. If the device is in a lower state and must be powered up, the superclass returns <code>false</code>; in this case the superclass will initiate a power change to power the device up.
1396*/
1397    virtual bool activityTickle (
1398                unsigned long type,
1399                unsigned long stateNumber=0 );
1400
1401/*! @function setAggressiveness
1402    @abstract Broadcasts an aggressiveness factor from the parent of a driver to the driver.
1403
1404    @discussion Implement <code>setAggressiveness</code> to receive a notification when an "aggressiveness Aggressiveness factors are a loose set of power management variables that contain values for system sleep timeout, display sleep timeout, whether the system is on battery or AC, and other power management features. There are several aggressiveness factors that can be broadcast and a driver may take action on whichever factors apply to it.
1405
1406    A driver that has joined the power plane via @link joinPMtree joinPMtree@/link will receive <code>setAgressiveness</code> calls when aggressiveness factors change.
1407
1408    A driver may override this call if it needs to do something with the new factor (such as change its idle timeout). If overridden, the driver must  call its superclass's <code>setAgressiveness</code> method in its own <code>setAgressiveness</code> implementation.
1409
1410    Most drivers do not need to implement <code>setAgressiveness</code>.
1411
1412    @param type The aggressiveness factor type, such as <code>kPMMinutesToDim</code>, <code>kPMMinutesToSpinDown</code>, <code>kPMMinutesToSleep</code>, and <code>kPMPowerSource</code>. (Aggressiveness factors are defined in <code>pwr_mgt/IOPM.h</code>.)
1413
1414    @param newLevel The aggressiveness factor's new value.
1415    @result <code>IOPMNoErr</code>.
1416*/
1417    virtual  IOReturn setAggressiveness (
1418                unsigned long type,
1419                unsigned long newLevel );
1420
1421/*! @function getAggressiveness
1422    @abstract Returns the current aggressiveness value for the given type.
1423    @param type The aggressiveness factor to query.
1424    @param currentLevel Upon successful return, contains the value of aggressiveness factor <code>type</code>.
1425    @result <code>kIOReturnSuccess</code> upon success; an I/O Kit error code otherwise.
1426 */
1427    virtual IOReturn getAggressiveness (
1428                unsigned long type,
1429                unsigned long *currentLevel );
1430
1431/*! @function systemWake
1432    @abstract Tells every driver in the power plane that the system is waking up.
1433    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1434*/
1435    virtual  IOReturn systemWake ( void );
1436
1437/*! @function temperatureCriticalForZone
1438    @abstract Alerts a driver to a critical temperature in some thermal zone.
1439    @discussion This call is unused by power management. It is not intended to be called or overridden.
1440*/
1441    virtual  IOReturn temperatureCriticalForZone ( IOService * whichZone );
1442
1443/*! @function youAreRoot
1444    @abstract Informs the root power domain IOService object that is is the root power domain.
1445    @discussion The Platform Expert instantiates the root power domain IOService object and calls it with this method to inform it that it is the root power domain.
1446
1447	This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1448*/
1449    virtual IOReturn youAreRoot ( void );
1450
1451/*! @function setPowerParent
1452    @abstract For internal use only; deprecated; not intended to be called or overridden.
1453*/
1454    virtual IOReturn setPowerParent (
1455                IOPowerConnection * theParent,
1456                bool stateKnown,
1457                IOPMPowerFlags currentState );
1458
1459/*! @function addPowerChild
1460    @abstract Informs a driver that it has a new child.
1461    @discussion The Platform Expert uses this method to call a driver and introduce it to a new child.
1462
1463	This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1464    @param theChild A pointer to the child IOService object.
1465*/
1466    virtual IOReturn addPowerChild ( IOService * theChild );
1467
1468/*! @function removePowerChild
1469    @abstract Informs a power managed driver that one of its power plane childen is disappearing.
1470    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1471
1472*/
1473    virtual IOReturn removePowerChild ( IOPowerConnection * theChild );
1474
1475/* @function command_received
1476    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1477*/
1478    virtual void command_received ( void *, void * , void * , void *);
1479
1480/* @function start_PM_idle_timer
1481    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1482*/
1483    virtual void start_PM_idle_timer ( void );
1484
1485/* @function PM_idle_timer_expiration
1486    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1487*/
1488    virtual void PM_idle_timer_expiration ( void );
1489
1490/* @function PM_Clamp_Timer_Expired
1491    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1492*/
1493    virtual void PM_Clamp_Timer_Expired (void);
1494
1495/*! @function setIdleTimerPeriod
1496    @abstract Sets or changes the idle timer period.
1497    @discussion A driver using the idleness determination provided by IOService calls its superclass with this method to set or change the idle timer period. See @link activityTickle activityTickle@/link for a description of this type of idleness determination.
1498    @param period The desired idle timer period in seconds.
1499    @result <code>kIOReturnSuccess</code> if successful. May return <code>kIOReturnError</code> if there was difficulty creating the timer event or the command queue.
1500*/
1501    virtual IOReturn  setIdleTimerPeriod ( unsigned long );
1502
1503/*! @function getPMworkloop
1504    @abstract Returns a pointer to the system-wide power management work loop.
1505    @discussion Most drivers should create their own work loops to synchronize their code; drivers should not run arbitrary code on the power management work loop.
1506*/
1507    virtual IOWorkLoop *getPMworkloop ( void );
1508
1509/*! @function getPowerState
1510    @abstract Determines a device's power state.
1511    @discussion A device's "current power state" is updated at the end of each power state transition (e.g. transition from state 1 to state 0, or state 0 to state 2). This transition includes the time spent powering on or off any power plane children. Thus, if a child calls <code>getPowerState</code> on its power parent during system wake from sleep, the call will return the index to the device's off state rather than its on state.
1512    @result The current power state's index into the device's power state array.
1513*/
1514    UInt32 getPowerState();
1515
1516
1517/* @function ack_timer_ticked
1518    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1519*/
1520    void ack_timer_ticked ( void );
1521
1522/* @function settleTimerExpired
1523   @abstract For internal use only.
1524*/
1525    void settleTimerExpired ( void );
1526
1527/* @function serializedAllowPowerChange2
1528    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1529*/
1530    IOReturn serializedAllowPowerChange2 ( unsigned long );
1531
1532/* @function serializedCancelPowerChange2
1533    @discussion This call is handled internally by power management. It is not intended to be overridden or called by drivers.
1534*/
1535    IOReturn serializedCancelPowerChange2 ( unsigned long );
1536
1537
1538/*! @function setPowerState
1539    @abstract Requests a power managed driver to change the power state of its device.
1540
1541    @discussion A power managed driver must override <code>setPowerState</code> to take part in system power management. After a driver is registered with power management, the system uses <code>setPowerState</code> to power the device off and on for system sleep and wake.
1542
1543    Calls to @link PMinit PMinit@/link and @link registerPowerDriver registerPowerDriver@/link enable power management to change a device's power state using <code>setPowerState</code>.
1544
1545    <code>setPowerState</code> is called in a clean and separate thread context.
1546
1547    @param powerStateOrdinal The number in the power state array of the state the driver is being instructed to switch to.
1548
1549    @param whatDevice A pointer to the power management object which registered to manage power for this device. In most cases, <code>whatDevice</code> will be equal to your driver's own <code>this</code> pointer.
1550    @result The driver must return <code>IOPMAckImplied</code> if it has complied with the request when it returns. Otherwise if it has started the process of changing power state but not finished it, the driver should return a number of microseconds which is an upper limit of the time it will need to finish. Then, when it has completed the power switch, it should call @link acknowledgeSetPowerState acknowledgeSetPowerState@/link.
1551*/
1552virtual IOReturn setPowerState (
1553                unsigned long powerStateOrdinal,
1554                IOService* whatDevice );
1555
1556/*! @function clampPowerOn
1557    @abstract Deprecated. Do not use.
1558 */
1559virtual void clampPowerOn (unsigned long duration);
1560
1561/*! @function maxCapabilityForDomainState
1562    @abstract Determines a driver's highest power state possible for a given power domain state.
1563    @discussion This happens when the power domain is changing state and power management needs to determine which state the device is capable of in the new domain state.
1564
1565    Most drivers do not need to implement this method, and can rely upon the default IOService implementation. The IOService implementation scans the power state array looking for the highest state whose <code>inputPowerRequirement</code> field exactly matches the value of the <code>domainState</code> parameter. If more intelligent determination is required, the driver itself should implement the method and override the superclass's implementation.
1566
1567    @param domainState Flags that describe the character of "domain power"; they represent the <code>outputPowerCharacter</code> field of a state in the power domain's power state array.
1568
1569    @result A state number.
1570 */
1571virtual unsigned long maxCapabilityForDomainState (
1572                IOPMPowerFlags domainState );
1573
1574/*! @function initialPowerStateForDomainState
1575    @abstract Determines which power state a device is in, given the current power domain state.
1576    @discussion Power management calls this method once, when the driver is initializing power management.
1577
1578    Most drivers do not need to implement this method, and can rely upon the default IOService implementation. The IOService implementation scans the power state array looking for the highest state whose <code>inputPowerRequirement</code> field exactly matches the value of the <code>domainState</code> parameter. If more intelligent determination is required, the power managed driver should implement the method and override the superclass's implementation.
1579
1580    @param domainState Flags that describe the character of "domain power"; they represent the <code>outputPowerCharacter</code> field of a state in the power domain's power state array.
1581    @result A state number.
1582*/
1583virtual unsigned long initialPowerStateForDomainState (
1584                IOPMPowerFlags domainState);
1585
1586/*! @function powerStateForDomainState
1587    @abstract Determines what power state the device would be in for a given power domain state.
1588    @discussion Power management calls a driver with this method to find out what power state the device would be in for a given power domain state. This happens when the power domain is changing state and power management needs to determine the effect of the change.
1589
1590    Most drivers do not need to implement this method, and can rely upon the default IOService implementation. The IOService implementation scans the power state array looking for the highest state whose <code>inputPowerRequirement</code> field exactly matches the value of the <code>domainState</code> parameter. If more intelligent determination is required, the power managed driver should implement the method and override the superclass's implementation.
1591
1592    @param domainState Flags that describe the character of "domain power"; they represent the <code>outputPowerCharacter</code> field of a state in the power domain's power state array.
1593
1594    @result A state number.
1595*/
1596virtual unsigned long powerStateForDomainState ( IOPMPowerFlags domainState );
1597
1598/*! @function powerStateWillChangeTo
1599    @abstract Informs interested parties that a device is about to change its power state.
1600    @discussion Power management informs interested parties that a device is about to change to a different power state. Interested parties are those that have registered for this notification via @link registerInterestedDriver registerInterestedDriver@/link. If you have called <code>registerInterestedDriver</code> on a power managed driver, you must implement <code>powerStateWillChangeTo</code> and @link powerStateDidChangeTo powerStateDidChangeTo@/link to receive the notifications.
1601
1602    <code>powerStateWillChangeTo</code> is called in a clean and separate thread context.
1603
1604    <code>powerStateWillChangeTo</code> is called before a power state transition takes place; <code>powerStateDidChangeTo</code> is called after the transition has completed.
1605
1606    @param capabilities Flags that describe the capability of the device in the new power state (they come from the <code>capabilityFlags</code> field of the new state in the power state array).
1607	@param stateNumber The number of the state in the state array that the device is switching to.
1608    @param whatDevice A pointer to the driver that is changing. It can be used by a driver that is receiving power state change notifications for multiple devices to distinguish between them.
1609    @result The driver returns <code>IOPMAckImplied</code> if it has prepared for the power change when it returns. If it has started preparing but not finished, it should return a number of microseconds which is an upper limit of the time it will need to finish preparing. Then, when it has completed its preparations, it should call @link acknowledgePowerChange acknowledgePowerChange@/link.
1610*/
1611virtual IOReturn powerStateWillChangeTo (
1612                    IOPMPowerFlags  capabilities,
1613                    unsigned long   stateNumber,
1614                    IOService*      whatDevice);
1615
1616/*! @function powerStateDidChangeTo
1617    @abstract Informs interested parties that a device has changed to a different power state.
1618    @discussion Power management informs interested parties that a device has changed to a different power state. Interested parties are those that have registered for this notification via @link registerInterestedDriver registerInterestedDriver@/link. If you have called <code>registerInterestedDriver</code> on a power managed driver, you must implemnt @link powerStateWillChangeTo powerStateWillChangeTo@/link and <code>powerStateDidChangeTo</code> to receive the notifications.
1619
1620    <code>powerStateDidChangeTo</code> is called in a clean and separate thread context.
1621
1622    <code>powerStateWillChangeTo</code> is called before a power state transition takes place; <code>powerStateDidChangeTo</code> is called after the transition has completed.
1623
1624    @param capabilities Flags that describe the capability of the device in the new power state (they come from the <code>capabilityFlags</code> field of the new state in the power state array).
1625	@param stateNumber The number of the state in the state array that the device is switching to.
1626    @param whatDevice A pointer to the driver that is changing. It can be used by a driver that is receiving power state change notifications for multiple devices to distinguish between them.
1627    @result The driver returns <code>IOPMAckImplied</code> if it has prepared for the power change when it returns. If it has started preparing but not finished, it should return a number of microseconds which is an upper limit of the time it will need to finish preparing. Then, when it has completed its preparations, it should call @link acknowledgePowerChange acknowledgePowerChange@/link.
1628*/
1629virtual IOReturn powerStateDidChangeTo (
1630                    IOPMPowerFlags  capabilities,
1631                    unsigned long   stateNumber,
1632                    IOService*      whatDevice);
1633
1634/*! @function didYouWakeSystem
1635    @abstract Asks a driver if its device is the one that just woke the system from sleep.
1636    @discussion Power management calls a power managed driver with this method to ask if its device is the one that just woke the system from sleep. If a device is capable of waking the system from sleep, its driver should implement <code>didYouWakeSystem</code> and return <code>true</code> if its device was responsible for waking the system.
1637    @result <code>true</code> if the driver's device did wake the system and <code>false</code> if it didn't.
1638*/
1639virtual bool didYouWakeSystem  ( void );
1640
1641/*! @function newTemperature
1642    @abstract (Deprecated. Do not use.) Tells a power managed driver that the temperature in the thermal zone has changed.
1643    @discussion A thermal-zone driver calls a power managed driver with this method to tell it that the temperature in the zone has changed. This method is not intended to be overridden or called by drivers. This method is deprecated.
1644*/
1645virtual IOReturn newTemperature  ( long currentTemp, IOService * whichZone );
1646
1647    virtual bool askChangeDown ( unsigned long );
1648    virtual bool tellChangeDown ( unsigned long );
1649    bool tellChangeDown1 ( unsigned long );
1650    bool tellChangeDown2 ( unsigned long );
1651    virtual void tellNoChangeDown ( unsigned long );
1652    virtual void tellChangeUp ( unsigned long );
1653    virtual IOReturn allowPowerChange ( unsigned long refcon );
1654    virtual IOReturn cancelPowerChange ( unsigned long refcon );
1655
1656
1657    protected:
1658/*! @function changePowerStateToPriv
1659    @abstract Tells a driver's superclass to change the power state of its device.
1660    @discussion A driver uses this method to tell its superclass to change the power state of the device. This is the recommended way to change the power state of a device.
1661
1662    Three things affect driver power state: @link changePowerStateTo changePowerStateTo@/link, <code>changePowerStateToPriv</code>, and the desires of the driver's power plane children. Power management puts the device into the maximum state governed by those three entities.
1663
1664    Drivers may eliminate the influence of the <code>changePowerStateTo</code> method on power state one of two ways. See @link powerOverrideOnPriv powerOverrideOnPriv@/link to ignore the method's influence, or call <code>changePowerStateTo(0)</code> in the driver's <code>start</code> routine to remove the <code>changePowerStateTo</code> method's power request.
1665
1666    @param ordinal The number of the desired power state in the power state array.
1667    @result A return code that can be ignored by the caller.
1668*/
1669    IOReturn changePowerStateToPriv ( unsigned long ordinal );
1670
1671/*! @function powerOverrideOnPriv
1672    @abstract Allows a driver to ignore its children's power management requests and only use changePowerStateToPriv to define its own power state.
1673
1674    @discussion Power management normally keeps a device at the highest state required by its requests via @link changePowerStateTo changePowerStateTo@/link, @link changePowerStateToPriv changePowerStateToPriv@/link, and its children. However, a driver may ensure a lower power state than otherwise required by itself and its children using <code>powerOverrideOnPriv</code>.
1675
1676    When the override is on, power management keeps the device's power state in the state specified by <code>changePowerStateToPriv</code>.
1677
1678    Turning on the override will initiate a power change if the driver's <code>changePowerStateToPriv</code> desired power state is different from the maximum of the <code>changePowerStateTo</code> desired power state and the children's desires.
1679
1680    @result A return code that can be ignored by the caller.
1681
1682*/
1683    IOReturn powerOverrideOnPriv ( void );
1684
1685/*! @function powerOverrideOffPriv
1686    @abstract Allows a driver to disable a power override.
1687
1688    @discussion When a driver has enabled an override via @link powerOverrideOnPriv powerOverrideOnPriv@/link, it can disable it again by calling this method in its superclass. Disabling the override reverts to the default algorithm for determining a device's power state. The superclass will now keep the device at the highest state required by <code>changePowerStateTo</code>, <code>changePowerStateToPriv</code>, and its children.
1689
1690    Turning off the override will initiate a power change if the driver's desired power state is different from the maximum of the power managed driver's desire and the children's desires.
1691
1692    @result A return code that can be ignored by the caller.
1693*/
1694    IOReturn powerOverrideOffPriv ( void );
1695
1696        /*! @function powerChangeDone
1697    @abstract Tells a driver when a power change is complete.
1698
1699    @discussion Power management uses this method to call into a driver when a power change is completely done, when all interested parties have acknowledged the @link powerStateDidChangeTo powerStateDidChangeTo@/link call. The default implementation of this method is null; the method is meant to be overridden by subclassed power managed drivers. A driver should use this method to find out if a power change it initiated is complete.
1700    @param stateNumber The number of the state in the state array that the device has switched from.
1701*/
1702    virtual void powerChangeDone ( unsigned long stateNumber);
1703
1704    bool tellClientsWithResponse ( int messageType );
1705    void tellClients ( int messageType );
1706
1707private:
1708    IOReturn enqueuePowerChange ( unsigned long, unsigned long, unsigned long, IOPowerConnection *, unsigned long );
1709	void setParentInfo ( IOPMPowerFlags, IOPowerConnection *, bool );
1710    IOReturn notifyAll ( bool is_prechange );
1711    bool notifyChild ( IOPowerConnection * nextObject, bool is_prechange );
1712
1713    // power change initiated by driver
1714    void OurChangeTellClientsPowerDown ( void );
1715    void OurChangeTellPriorityClientsPowerDown ( void );
1716    void OurChangeNotifyInterestedDriversWillChange ( void );
1717    void OurChangeSetPowerState ( void );
1718    void OurChangeWaitForPowerSettle ( void );
1719    void OurChangeNotifyInterestedDriversDidChange ( void );
1720    void OurChangeFinish ( void );
1721
1722    // downward power change initiated by a power parent
1723    void ParentDownTellPriorityClientsPowerDown ( void );
1724    void ParentDownNotifyInterestedDriversWillChange ( void );
1725    void ParentDownNotifyDidChangeAndAcknowledgeChange ( void );
1726    void ParentDownSetPowerState ( void );
1727    void ParentDownWaitForPowerSettle ( void );
1728    void ParentDownAcknowledgeChange ( void );
1729
1730    // upward power change initiated by a power parent
1731    void ParentUpSetPowerState ( void );
1732    void ParentUpWaitForSettleTime ( void );
1733    void ParentUpNotifyInterestedDriversDidChange ( void );
1734    void ParentUpAcknowledgePowerChange ( void );
1735
1736    void all_done ( void );
1737    void start_ack_timer ( void );
1738    void stop_ack_timer ( void );
1739    unsigned long compute_settle_time ( void );
1740    IOReturn startSettleTimer ( unsigned long delay );
1741    IOReturn changeState ( void );
1742    IOReturn ask_parent ( unsigned long requestedState );
1743    bool checkForDone ( void );
1744    bool responseValid ( unsigned long x, int pid );
1745    void computeDesiredState ( unsigned long tempDesire = 0 );
1746    void rebuildChildClampBits ( void );
1747
1748	static void ack_timer_expired( thread_call_param_t, thread_call_param_t );
1749	static IOReturn actionAckTimerExpired(OSObject *, void *, void *, void *, void * );
1750 	static IOReturn actionDriverCalloutDone(OSObject *, void *, void *, void *, void * );
1751	static IOPMRequest * acquirePMRequest( IOService * target, UInt32 type );
1752	static void releasePMRequest( IOPMRequest * request );
1753	static void pmDriverCallout( IOService * from );
1754	static void pmTellClientWithResponse( OSObject * object, void * context );
1755	static void pmTellAppWithResponse( OSObject * object, void * context );
1756	bool ackTimerTick( void );
1757	void addPowerChild1( IOPMRequest * request );
1758	void addPowerChild2( IOPMRequest * request );
1759	void addPowerChild3( IOPMRequest * request );
1760    void adjustPowerState( void );
1761	void start_ack_timer( UInt32 value, UInt32 scale );
1762	void handlePMstop( IOPMRequest * request );
1763	void handleRegisterPowerDriver( IOPMRequest * request );
1764	bool handleAcknowledgePowerChange( IOPMRequest * request );
1765	void handlePowerDomainWillChangeTo( IOPMRequest * request );
1766	void handlePowerDomainDidChangeTo( IOPMRequest * request );
1767	void handleMakeUsable( IOPMRequest * request );
1768	void handleChangePowerStateTo( IOPMRequest * request );
1769	void handleChangePowerStateToPriv( IOPMRequest * request );
1770	void handlePowerOverrideChanged( IOPMRequest * request );
1771	void handleInterestChanged( IOPMRequest * request );
1772	void submitPMRequest( IOPMRequest * request );
1773	void submitPMRequest( IOPMRequest ** request, IOItemCount count );
1774	void executePMRequest( IOPMRequest * request );
1775	bool servicePMRequest( IOPMRequest * request, IOPMWorkQueue * queue  );
1776	bool retirePMRequest(  IOPMRequest * request, IOPMWorkQueue * queue );
1777	bool servicePMRequestQueue( IOPMRequest * request, IOPMRequestQueue * queue );
1778	bool servicePMReplyQueue( IOPMRequest * request, IOPMRequestQueue * queue );
1779	bool servicePMFreeQueue( IOPMRequest * request, IOPMRequestQueue * queue );
1780	bool notifyInterestedDrivers( void );
1781	void notifyInterestedDriversDone( void );
1782	bool notifyControllingDriver( void );
1783	void notifyControllingDriverDone( void );
1784	void driverSetPowerState( void );
1785	void driverInformPowerChange( void );
1786	bool isPMBlocked( IOPMRequest * request, int count );
1787	void start_our_change( const changeNoteItem * changeNote );
1788	IOReturn start_parent_change( const changeNoteItem * changeNote );
1789	void notifyChildren( void );
1790	void notifyChildrenDone( void );
1791    void cleanClientResponses ( bool logErrors );
1792};
1793
1794#endif /* ! _IOKIT_IOSERVICE_H */
1795