2 * Copyright (c) 2007-2012 Apple Inc. All rights reserved.
3 * Copyright (c) 1998-2006 Apple Computer, Inc. All rights reserved.
5 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
7 * This file contains Original Code and/or Modifications of Original Code
8 * as defined in and that are subject to the Apple Public Source License
9 * Version 2.0 (the 'License'). You may not use this file except in
10 * compliance with the License. The rights granted to you under the License
11 * may not be used to create, or enable the creation or redistribution of,
12 * unlawful or unlicensed copies of an Apple operating system, or to
13 * circumvent, violate, or enable the circumvention or violation of, any
14 * terms of an Apple operating system software license agreement.
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this file.
19 * The Original Code and all software distributed under the License are
20 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
21 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
22 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
24 * Please see the License for the specific language governing rights and
25 * limitations under the License.
27 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 #include <IOKit/IOLib.h>
31 #include <IOKit/IOService.h>
32 #include <IOKit/IOPlatformExpert.h>
33 #include <IOKit/IODeviceTreeSupport.h>
34 #include <IOKit/IOInterrupts.h>
35 #include <IOKit/IOInterruptController.h>
36 #include <IOKit/IOKitDebug.h>
37 #include <IOKit/IOTimeStamp.h>
40 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
42 #define super IOService
44 OSDefineMetaClassAndAbstractStructors(IOInterruptController
, IOService
);
46 OSMetaClassDefineReservedUnused(IOInterruptController
, 0);
47 OSMetaClassDefineReservedUnused(IOInterruptController
, 1);
48 OSMetaClassDefineReservedUnused(IOInterruptController
, 2);
49 OSMetaClassDefineReservedUnused(IOInterruptController
, 3);
50 OSMetaClassDefineReservedUnused(IOInterruptController
, 4);
51 OSMetaClassDefineReservedUnused(IOInterruptController
, 5);
53 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
56 IOInterruptController::registerInterrupt(IOService
*nub
, int source
,
58 IOInterruptHandler handler
,
61 IOInterruptSource
*interruptSources
;
62 IOInterruptVectorNumber vectorNumber
;
63 IOInterruptVector
*vector
;
68 bool canBeShared
, shouldBeShared
, wasAlreadyRegisterd
;
70 IOService
*originalNub
= NULL
;// Protected by wasAlreadyRegisterd
71 int originalSource
= 0;// Protected by wasAlreadyRegisterd
74 interruptSources
= nub
->_interruptSources
;
75 vectorData
= interruptSources
[source
].vectorData
;
76 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
77 vector
= &vectors
[vectorNumber
];
79 // Get the lock for this vector.
80 IOLockLock(vector
->interruptLock
);
82 // Check if the interrupt source can/should be shared.
83 canBeShared
= vectorCanBeShared(vectorNumber
, vector
);
84 IODTGetInterruptOptions(nub
, source
, &options
);
85 #if defined(__i386__) || defined(__x86_64__)
87 if (OSDynamicCast(IOPlatformDevice
, getProvider()) &&
88 (getInterruptType(nub
, source
, &interruptType
) == kIOReturnSuccess
) &&
89 (kIOInterruptTypeLevel
& interruptType
)) {
90 options
|= kIODTInterruptShared
;
93 shouldBeShared
= canBeShared
&& (options
& kIODTInterruptShared
);
94 wasAlreadyRegisterd
= vector
->interruptRegistered
;
96 // If the vector is registered and can not be shared return error.
97 if (wasAlreadyRegisterd
&& !canBeShared
) {
98 IOLockUnlock(vector
->interruptLock
);
99 return kIOReturnNoResources
;
102 // If this vector is already in use, and can be shared (implied),
103 // or it is not registered and should be shared,
104 // register as a shared interrupt.
105 if (wasAlreadyRegisterd
|| shouldBeShared
) {
106 // If this vector is not already shared, break it out.
107 if (vector
->sharedController
== NULL
) {
108 // Make the IOShareInterruptController instance
109 vector
->sharedController
= new IOSharedInterruptController
;
110 if (vector
->sharedController
== NULL
) {
111 IOLockUnlock(vector
->interruptLock
);
112 return kIOReturnNoMemory
;
115 if (wasAlreadyRegisterd
) {
116 // Save the nub and source for the original consumer.
117 originalNub
= vector
->nub
;
118 originalSource
= vector
->source
;
120 // Physically disable the interrupt, but mark it as being enabled in the hardware.
121 // The interruptDisabledSoft now indicates the driver's request for enablement.
122 disableVectorHard(vectorNumber
, vector
);
123 vector
->interruptDisabledHard
= 0;
126 // Initialize the new shared interrupt controller.
127 error
= vector
->sharedController
->initInterruptController(this, vectorData
);
128 // If the IOSharedInterruptController could not be initalized,
129 // if needed, put the original consumer's interrupt back to normal and
130 // get rid of whats left of the shared controller.
131 if (error
!= kIOReturnSuccess
) {
132 if (wasAlreadyRegisterd
) {
133 enableInterrupt(originalNub
, originalSource
);
135 vector
->sharedController
->release();
136 vector
->sharedController
= NULL
;
137 IOLockUnlock(vector
->interruptLock
);
141 // If there was an original consumer try to register it on the shared controller.
142 if (wasAlreadyRegisterd
) {
143 error
= vector
->sharedController
->registerInterrupt(originalNub
,
148 // If the original consumer could not be moved to the shared controller,
149 // put the original consumor's interrupt back to normal and
150 // get rid of whats left of the shared controller.
151 if (error
!= kIOReturnSuccess
) {
152 // Save the driver's interrupt enablement state.
153 wasDisabledSoft
= vector
->interruptDisabledSoft
;
155 // Make the interrupt really hard disabled.
156 vector
->interruptDisabledSoft
= 1;
157 vector
->interruptDisabledHard
= 1;
159 // Enable the original consumer's interrupt if needed.
160 if (!wasDisabledSoft
) {
161 originalNub
->enableInterrupt(originalSource
);
163 enableInterrupt(originalNub
, originalSource
);
165 vector
->sharedController
->release();
166 vector
->sharedController
= NULL
;
167 IOLockUnlock(vector
->interruptLock
);
172 // Fill in vector with the shared controller's info.
173 vector
->handler
= (IOInterruptHandler
)vector
->sharedController
->getInterruptHandlerAddress();
174 vector
->nub
= vector
->sharedController
;
176 vector
->target
= vector
->sharedController
;
177 vector
->refCon
= NULL
;
179 // If the interrupt was already registered,
180 // save the driver's interrupt enablement state.
181 if (wasAlreadyRegisterd
) {
182 wasDisabledSoft
= vector
->interruptDisabledSoft
;
184 wasDisabledSoft
= true;
187 // Do any specific initalization for this vector if it has not yet been used.
188 if (!wasAlreadyRegisterd
) {
189 initVector(vectorNumber
, vector
);
192 // Make the interrupt really hard disabled.
193 vector
->interruptDisabledSoft
= 1;
194 vector
->interruptDisabledHard
= 1;
195 vector
->interruptRegistered
= 1;
197 // Enable the original consumer's interrupt if needed.
198 // originalNub is protected by wasAlreadyRegisterd here (see line 184).
199 if (!wasDisabledSoft
) {
200 originalNub
->enableInterrupt(originalSource
);
204 error
= vector
->sharedController
->registerInterrupt(nub
, source
, target
,
206 IOLockUnlock(vector
->interruptLock
);
210 // Fill in vector with the client's info.
211 vector
->handler
= handler
;
213 vector
->source
= source
;
214 vector
->target
= target
;
215 vector
->refCon
= refCon
;
217 // Do any specific initalization for this vector.
218 initVector(vectorNumber
, vector
);
220 // Get the vector ready. It starts hard disabled.
221 vector
->interruptDisabledHard
= 1;
222 vector
->interruptDisabledSoft
= 1;
223 vector
->interruptRegistered
= 1;
225 IOLockUnlock(vector
->interruptLock
);
226 return kIOReturnSuccess
;
230 IOInterruptController::unregisterInterrupt(IOService
*nub
, int source
)
232 IOInterruptSource
*interruptSources
;
233 IOInterruptVectorNumber vectorNumber
;
234 IOInterruptVector
*vector
;
237 interruptSources
= nub
->_interruptSources
;
238 vectorData
= interruptSources
[source
].vectorData
;
239 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
240 vector
= &vectors
[vectorNumber
];
242 // Get the lock for this vector.
243 IOLockLock(vector
->interruptLock
);
245 // Return success if it is not already registered
246 if (!vector
->interruptRegistered
) {
247 IOLockUnlock(vector
->interruptLock
);
248 return kIOReturnSuccess
;
251 // Soft disable the source.
252 disableInterrupt(nub
, source
);
254 // Turn the source off at hardware.
255 disableVectorHard(vectorNumber
, vector
);
257 // Clear all the storage for the vector except for interruptLock.
258 vector
->interruptActive
= 0;
259 vector
->interruptDisabledSoft
= 0;
260 vector
->interruptDisabledHard
= 0;
261 vector
->interruptRegistered
= 0;
264 vector
->handler
= NULL
;
265 vector
->target
= NULL
;
266 vector
->refCon
= NULL
;
268 IOLockUnlock(vector
->interruptLock
);
269 return kIOReturnSuccess
;
273 IOInterruptController::getInterruptType(IOService
*nub
, int source
,
276 IOInterruptSource
*interruptSources
;
277 IOInterruptVectorNumber vectorNumber
;
278 IOInterruptVector
*vector
;
281 if (interruptType
== NULL
) {
282 return kIOReturnBadArgument
;
285 interruptSources
= nub
->_interruptSources
;
286 vectorData
= interruptSources
[source
].vectorData
;
287 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
288 vector
= &vectors
[vectorNumber
];
290 *interruptType
= getVectorType(vectorNumber
, vector
);
292 return kIOReturnSuccess
;
296 IOInterruptController::enableInterrupt(IOService
*nub
, int source
)
298 IOInterruptSource
*interruptSources
;
299 IOInterruptVectorNumber vectorNumber
;
300 IOInterruptVector
*vector
;
303 interruptSources
= nub
->_interruptSources
;
304 vectorData
= interruptSources
[source
].vectorData
;
305 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
306 vector
= &vectors
[vectorNumber
];
308 if (vector
->interruptDisabledSoft
) {
309 vector
->interruptDisabledSoft
= 0;
310 #if !defined(__i386__) && !defined(__x86_64__)
314 if (!getPlatform()->atInterruptLevel()) {
315 while (vector
->interruptActive
) {
318 if (vector
->interruptDisabledHard
) {
319 vector
->interruptDisabledHard
= 0;
321 enableVector(vectorNumber
, vector
);
325 return kIOReturnSuccess
;
329 IOInterruptController::disableInterrupt(IOService
*nub
, int source
)
331 IOInterruptSource
*interruptSources
;
332 IOInterruptVectorNumber vectorNumber
;
333 IOInterruptVector
*vector
;
336 interruptSources
= nub
->_interruptSources
;
337 vectorData
= interruptSources
[source
].vectorData
;
338 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
339 vector
= &vectors
[vectorNumber
];
341 vector
->interruptDisabledSoft
= 1;
342 #if !defined(__i386__) && !defined(__x86_64__)
346 if (!getPlatform()->atInterruptLevel()) {
347 while (vector
->interruptActive
) {
351 return kIOReturnSuccess
;
355 IOInterruptController::causeInterrupt(IOService
*nub
, int source
)
357 IOInterruptSource
*interruptSources
;
358 IOInterruptVectorNumber vectorNumber
;
359 IOInterruptVector
*vector
;
362 interruptSources
= nub
->_interruptSources
;
363 vectorData
= interruptSources
[source
].vectorData
;
364 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
365 vector
= &vectors
[vectorNumber
];
367 causeVector(vectorNumber
, vector
);
369 return kIOReturnSuccess
;
373 IOInterruptController::getInterruptHandlerAddress(void)
379 IOInterruptController::handleInterrupt(void *refCon
, IOService
*nub
,
382 return kIOReturnInvalid
;
386 // Methods to be overridden for simplifed interrupt controller subclasses.
389 IOInterruptController::vectorCanBeShared(IOInterruptVectorNumber
/*vectorNumber*/,
390 IOInterruptVector */
*vector*/
)
396 IOInterruptController::initVector(IOInterruptVectorNumber
/*vectorNumber*/,
397 IOInterruptVector */
*vector*/
)
402 IOInterruptController::getVectorType(IOInterruptVectorNumber
/*vectorNumber*/,
403 IOInterruptVector */
*vector*/
)
405 return kIOInterruptTypeEdge
;
409 IOInterruptController::disableVectorHard(IOInterruptVectorNumber
/*vectorNumber*/,
410 IOInterruptVector */
*vector*/
)
415 IOInterruptController::enableVector(IOInterruptVectorNumber
/*vectorNumber*/,
416 IOInterruptVector */
*vector*/
)
421 IOInterruptController::causeVector(IOInterruptVectorNumber
/*vectorNumber*/,
422 IOInterruptVector */
*vector*/
)
427 IOInterruptController::timeStampSpuriousInterrupt(void)
429 uint64_t providerID
= 0;
430 IOService
* provider
= getProvider();
433 providerID
= provider
->getRegistryEntryID();
436 IOTimeStampConstant(IODBG_INTC(IOINTC_SPURIOUS
), providerID
);
440 IOInterruptController::timeStampInterruptHandlerInternal(bool isStart
, IOInterruptVectorNumber vectorNumber
, IOInterruptVector
*vector
)
442 uint64_t providerID
= 0;
443 vm_offset_t unslidHandler
= 0;
444 vm_offset_t unslidTarget
= 0;
446 IOService
* provider
= getProvider();
449 providerID
= provider
->getRegistryEntryID();
453 unslidHandler
= VM_KERNEL_UNSLIDE((vm_offset_t
)vector
->handler
);
454 unslidTarget
= VM_KERNEL_UNSLIDE_OR_PERM((vm_offset_t
)vector
->target
);
459 IOTimeStampStartConstant(IODBG_INTC(IOINTC_HANDLER
), (uintptr_t)vectorNumber
, (uintptr_t)unslidHandler
,
460 (uintptr_t)unslidTarget
, (uintptr_t)providerID
);
462 IOTimeStampEndConstant(IODBG_INTC(IOINTC_HANDLER
), (uintptr_t)vectorNumber
, (uintptr_t)unslidHandler
,
463 (uintptr_t)unslidTarget
, (uintptr_t)providerID
);
468 IOInterruptController::timeStampInterruptHandlerStart(IOInterruptVectorNumber vectorNumber
, IOInterruptVector
*vector
)
470 timeStampInterruptHandlerInternal(true, vectorNumber
, vector
);
474 IOInterruptController::timeStampInterruptHandlerEnd(IOInterruptVectorNumber vectorNumber
, IOInterruptVector
*vector
)
476 timeStampInterruptHandlerInternal(false, vectorNumber
, vector
);
479 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
482 #define super IOInterruptController
484 OSDefineMetaClassAndStructors(IOSharedInterruptController
, IOInterruptController
);
486 OSMetaClassDefineReservedUnused(IOSharedInterruptController
, 0);
487 OSMetaClassDefineReservedUnused(IOSharedInterruptController
, 1);
488 OSMetaClassDefineReservedUnused(IOSharedInterruptController
, 2);
489 OSMetaClassDefineReservedUnused(IOSharedInterruptController
, 3);
491 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
493 #define kIOSharedInterruptControllerDefaultVectors (128)
496 IOSharedInterruptController::initInterruptController(IOInterruptController
*parentController
, OSData
*parentSource
)
498 int cnt
, interruptType
;
501 if (!super::init()) {
502 return kIOReturnNoResources
;
505 // Set provider to this so enable/disable nub stuff works.
508 // Allocate the IOInterruptSource so this can act like a nub.
509 _interruptSources
= (IOInterruptSource
*)IOMalloc(sizeof(IOInterruptSource
));
510 if (_interruptSources
== NULL
) {
511 return kIOReturnNoMemory
;
513 _numInterruptSources
= 1;
515 // Set up the IOInterruptSource to point at this.
516 parentController
->retain();
517 parentSource
->retain();
518 _interruptSources
[0].interruptController
= parentController
;
519 _interruptSources
[0].vectorData
= parentSource
;
521 sourceIsLevel
= false;
522 error
= provider
->getInterruptType(0, &interruptType
);
523 if (error
== kIOReturnSuccess
) {
524 if (interruptType
& kIOInterruptTypeLevel
) {
525 sourceIsLevel
= true;
529 // Allocate the memory for the vectors
530 numVectors
= kIOSharedInterruptControllerDefaultVectors
; // For now a constant number.
531 vectors
= (IOInterruptVector
*)IOMalloc(numVectors
* sizeof(IOInterruptVector
));
532 if (vectors
== NULL
) {
533 IOFree(_interruptSources
, sizeof(IOInterruptSource
));
534 return kIOReturnNoMemory
;
536 bzero(vectors
, numVectors
* sizeof(IOInterruptVector
));
538 // Allocate the lock for the controller.
539 controllerLock
= IOSimpleLockAlloc();
540 if (controllerLock
== NULL
) {
541 return kIOReturnNoResources
;
544 // Allocate locks for the vectors.
545 for (cnt
= 0; cnt
< numVectors
; cnt
++) {
546 vectors
[cnt
].interruptLock
= IOLockAlloc();
547 if (vectors
[cnt
].interruptLock
== NULL
) {
548 for (cnt
= 0; cnt
< numVectors
; cnt
++) {
549 if (vectors
[cnt
].interruptLock
!= NULL
) {
550 IOLockFree(vectors
[cnt
].interruptLock
);
553 return kIOReturnNoResources
;
557 numVectors
= 0; // reset the high water mark for used vectors
558 vectorsRegistered
= 0;
560 controllerDisabled
= 1;
562 return kIOReturnSuccess
;
566 IOSharedInterruptController::registerInterrupt(IOService
*nub
,
569 IOInterruptHandler handler
,
572 IOInterruptSource
*interruptSources
;
573 IOInterruptVectorNumber vectorNumber
;
574 IOInterruptVector
*vector
= NULL
;
576 IOInterruptState interruptState
;
578 interruptSources
= nub
->_interruptSources
;
580 // Find a free vector.
581 vectorNumber
= kIOSharedInterruptControllerDefaultVectors
;
582 while (vectorsRegistered
!= kIOSharedInterruptControllerDefaultVectors
) {
583 for (vectorNumber
= 0; vectorNumber
< kIOSharedInterruptControllerDefaultVectors
; vectorNumber
++) {
584 vector
= &vectors
[vectorNumber
];
586 // Get the lock for this vector.
587 IOLockLock(vector
->interruptLock
);
589 // Is it unregistered?
590 if (!vector
->interruptRegistered
) {
594 // Move along to the next one.
595 IOLockUnlock(vector
->interruptLock
);
598 if (vectorNumber
!= kIOSharedInterruptControllerDefaultVectors
) {
603 // Could not find a free one, so give up.
604 if (vectorNumber
== kIOSharedInterruptControllerDefaultVectors
) {
605 return kIOReturnNoResources
;
608 // Create the vectorData for the IOInterruptSource.
609 vectorData
= OSData::withBytes(&vectorNumber
, sizeof(vectorNumber
));
610 if (vectorData
== NULL
) {
611 IOLockUnlock(vector
->interruptLock
);
612 return kIOReturnNoMemory
;
615 // Fill in the IOInterruptSource with the controller's info.
616 interruptSources
[source
].interruptController
= this;
617 interruptSources
[source
].vectorData
= vectorData
;
619 // Fill in vector with the client's info.
620 vector
->handler
= handler
;
622 vector
->source
= source
;
623 vector
->target
= target
;
624 vector
->refCon
= refCon
;
626 // Get the vector ready. It starts off soft disabled.
627 vector
->interruptDisabledSoft
= 1;
628 vector
->interruptRegistered
= 1;
630 interruptState
= IOSimpleLockLockDisableInterrupt(controllerLock
);
631 // Move the high water mark if needed
632 if (++vectorsRegistered
> numVectors
) {
633 numVectors
= vectorsRegistered
;
635 IOSimpleLockUnlockEnableInterrupt(controllerLock
, interruptState
);
637 IOLockUnlock(vector
->interruptLock
);
638 return kIOReturnSuccess
;
642 IOSharedInterruptController::unregisterInterrupt(IOService
*nub
,
645 IOInterruptVectorNumber vectorNumber
;
646 IOInterruptVector
*vector
;
647 IOInterruptState interruptState
;
649 for (vectorNumber
= 0; vectorNumber
< kIOSharedInterruptControllerDefaultVectors
; vectorNumber
++) {
650 vector
= &vectors
[vectorNumber
];
652 // Get the lock for this vector.
653 IOLockLock(vector
->interruptLock
);
655 // Return success if it is not already registered
656 if (!vector
->interruptRegistered
657 || (vector
->nub
!= nub
) || (vector
->source
!= source
)) {
658 IOLockUnlock(vector
->interruptLock
);
662 // Soft disable the source and the controller too.
663 disableInterrupt(nub
, source
);
665 // Clear all the storage for the vector except for interruptLock.
666 vector
->interruptActive
= 0;
667 vector
->interruptDisabledSoft
= 0;
668 vector
->interruptDisabledHard
= 0;
669 vector
->interruptRegistered
= 0;
672 vector
->handler
= NULL
;
673 vector
->target
= NULL
;
674 vector
->refCon
= NULL
;
676 interruptState
= IOSimpleLockLockDisableInterrupt(controllerLock
);
678 IOSimpleLockUnlockEnableInterrupt(controllerLock
, interruptState
);
680 // Move along to the next one.
681 IOLockUnlock(vector
->interruptLock
);
684 // Re-enable the controller if all vectors are enabled.
685 if (vectorsEnabled
== vectorsRegistered
) {
686 controllerDisabled
= 0;
687 provider
->enableInterrupt(0);
690 return kIOReturnSuccess
;
694 IOSharedInterruptController::getInterruptType(IOService */
*nub*/
,
698 return provider
->getInterruptType(0, interruptType
);
702 IOSharedInterruptController::enableInterrupt(IOService
*nub
,
705 IOInterruptSource
*interruptSources
;
706 IOInterruptVectorNumber vectorNumber
;
707 IOInterruptVector
*vector
;
709 IOInterruptState interruptState
;
711 interruptSources
= nub
->_interruptSources
;
712 vectorData
= interruptSources
[source
].vectorData
;
713 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
714 vector
= &vectors
[vectorNumber
];
716 interruptState
= IOSimpleLockLockDisableInterrupt(controllerLock
);
717 if (!vector
->interruptDisabledSoft
) {
718 IOSimpleLockUnlockEnableInterrupt(controllerLock
, interruptState
);
719 return kIOReturnSuccess
;
722 vector
->interruptDisabledSoft
= 0;
724 IOSimpleLockUnlockEnableInterrupt(controllerLock
, interruptState
);
726 if (controllerDisabled
&& (vectorsEnabled
== vectorsRegistered
)) {
727 controllerDisabled
= 0;
728 provider
->enableInterrupt(0);
731 return kIOReturnSuccess
;
735 IOSharedInterruptController::disableInterrupt(IOService
*nub
,
738 IOInterruptSource
*interruptSources
;
739 IOInterruptVectorNumber vectorNumber
;
740 IOInterruptVector
*vector
;
742 IOInterruptState interruptState
;
744 interruptSources
= nub
->_interruptSources
;
745 vectorData
= interruptSources
[source
].vectorData
;
746 vectorNumber
= *(IOInterruptVectorNumber
*)vectorData
->getBytesNoCopy();
747 vector
= &vectors
[vectorNumber
];
749 interruptState
= IOSimpleLockLockDisableInterrupt(controllerLock
);
750 if (!vector
->interruptDisabledSoft
) {
751 vector
->interruptDisabledSoft
= 1;
752 #if !defined(__i386__) && !defined(__x86_64__)
758 IOSimpleLockUnlockEnableInterrupt(controllerLock
, interruptState
);
760 if (!getPlatform()->atInterruptLevel()) {
761 while (vector
->interruptActive
) {
765 return kIOReturnSuccess
;
769 IOSharedInterruptController::getInterruptHandlerAddress(void)
771 return OSMemberFunctionCast(IOInterruptAction
,
772 this, &IOSharedInterruptController::handleInterrupt
);
776 IOSharedInterruptController::handleInterrupt(void * /*refCon*/,
780 IOInterruptVectorNumber vectorNumber
;
781 IOInterruptVector
*vector
;
783 for (vectorNumber
= 0; vectorNumber
< numVectors
; vectorNumber
++) {
784 vector
= &vectors
[vectorNumber
];
786 vector
->interruptActive
= 1;
787 #if !defined(__i386__) && !defined(__x86_64__)
791 if (!vector
->interruptDisabledSoft
) {
792 // Call the handler if it exists.
793 if (vector
->interruptRegistered
) {
794 bool trace
= (gIOKitTrace
& kIOTraceInterrupts
) ? true : false;
797 timeStampInterruptHandlerStart(vectorNumber
, vector
);
801 vector
->handler(vector
->target
, vector
->refCon
, vector
->nub
, vector
->source
);
804 timeStampInterruptHandlerEnd(vectorNumber
, vector
);
809 vector
->interruptActive
= 0;
812 // if any of the vectors are dissabled, then dissable this controller.
813 IOSimpleLockLock(controllerLock
);
814 if (vectorsEnabled
!= vectorsRegistered
) {
815 nub
->disableInterrupt(0);
816 controllerDisabled
= 1;
818 IOSimpleLockUnlock(controllerLock
);
820 return kIOReturnSuccess
;