]>
git.saurik.com Git - apple/xnu.git/blob - iokit/Kernel/IOPMinformeeList.cpp
2 * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 #include <IOKit/pwr_mgt/IOPM.h>
29 #include <IOKit/pwr_mgt/IOPMinformeeList.h>
30 #include <IOKit/pwr_mgt/IOPMinformee.h>
32 #define super OSObject
33 OSDefineMetaClassAndStructors(IOPMinformeeList
, OSObject
)
35 //*********************************************************************************
38 //*********************************************************************************
40 IOPMinformeeList::initialize( void )
46 //******************************************************************************
47 // getSharedRecursiveLock
49 //******************************************************************************
51 IOPMinformeeList::getSharedRecursiveLock( void )
53 static IORecursiveLock
*sharedListLock
= NULL
;
55 /* A running system could have 50-60+ instances of IOPMInformeeList.
56 * They'll share this lock, since list insertion and removal is relatively
57 * rare, and generally tied to major events like device discovery.
59 * getSharedRecursiveLock() is called from IOStartIOKit to initialize
60 * the sharedListLock before any IOPMinformeeLists are instantiated.
62 * The IOPMinformeeList class will be around for the lifetime of the system,
63 * we don't worry about freeing this lock.
66 if (NULL
== sharedListLock
) {
67 sharedListLock
= IORecursiveLockAlloc();
69 return sharedListLock
;
72 //*********************************************************************************
75 //*********************************************************************************
77 IOPMinformeeList::appendNewInformee( IOService
* newObject
)
79 IOPMinformee
* newInformee
;
85 newInformee
= IOPMinformee::withObject(newObject
);
91 if (IOPMNoErr
== addToList(newInformee
)) {
94 newInformee
->release();
100 //*********************************************************************************
102 // *OBSOLETE* do not call from outside of this file.
103 // Try appendNewInformee() instead
104 //*********************************************************************************
106 IOPMinformeeList::addToList( IOPMinformee
* newInformee
)
108 IORecursiveLock
*listLock
= getSharedRecursiveLock();
109 IOReturn ret
= kIOReturnError
;
115 IORecursiveLockLock(listLock
);
117 // Is new object already in the list?
118 if (findItem(newInformee
->whatObject
) != NULL
) {
119 // object is present; just exit
120 goto unlock_and_exit
;
123 // add it to the front of the list
124 newInformee
->nextInList
= firstItem
;
125 firstItem
= newInformee
;
130 IORecursiveLockUnlock(listLock
);
135 //*********************************************************************************
138 // Find the item in the list, unlink it, and free it.
139 //*********************************************************************************
142 IOPMinformeeList::removeFromList( IOService
* theItem
)
144 IOPMinformee
* item
= firstItem
;
146 IORecursiveLock
*listLock
= getSharedRecursiveLock();
152 return kIOReturnError
;
155 IORecursiveLockLock( listLock
);
157 if (item
->whatObject
== theItem
) {
158 firstItem
= item
->nextInList
;
161 goto unlock_and_exit
;
164 while (item
->nextInList
!= NULL
) {
165 if (item
->nextInList
->whatObject
== theItem
) {
166 temp
= item
->nextInList
;
167 item
->nextInList
= temp
->nextInList
;
170 goto unlock_and_exit
;
172 item
= item
->nextInList
;
176 IORecursiveLockUnlock(listLock
);
181 //*********************************************************************************
184 //*********************************************************************************
187 IOPMinformeeList::firstInList( void )
192 //*********************************************************************************
195 //*********************************************************************************
198 IOPMinformeeList::nextInList( IOPMinformee
* currentItem
)
200 if (currentItem
!= NULL
) {
201 return currentItem
->nextInList
;
206 //*********************************************************************************
209 //*********************************************************************************
212 IOPMinformeeList::numberOfItems( void )
217 //*********************************************************************************
220 // Look through the list for the one which points to the object identified
221 // by the parameter. Return a pointer to the list item or NULL.
222 //*********************************************************************************
225 IOPMinformeeList::findItem( IOService
* driverOrChild
)
227 IOPMinformee
* nextObject
;
229 nextObject
= firstInList();
230 while (nextObject
!= NULL
) {
231 if (nextObject
->whatObject
== driverOrChild
) {
234 nextObject
= nextInList(nextObject
);
241 //*********************************************************************************
244 // Free all items in the list, and then free the list itself
245 //*********************************************************************************
248 IOPMinformeeList::free(void )
250 IOPMinformee
* next
= firstItem
;
252 while (next
!= NULL
) {
253 firstItem
= next
->nextInList
;