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