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