]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
39236c6e A |
2 | * Copyright (c) 2007-2012 Apple Inc. All rights reserved. |
3 | * Copyright (c) 1998-2006 Apple Computer, Inc. All rights reserved. | |
1c79356b | 4 | * |
2d21ac55 | 5 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
0a7de745 | 6 | * |
2d21ac55 A |
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. | |
0a7de745 | 15 | * |
2d21ac55 A |
16 | * Please obtain a copy of the License at |
17 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
0a7de745 | 18 | * |
2d21ac55 A |
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 | |
8f6c56a5 A |
21 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
22 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
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. | |
0a7de745 | 26 | * |
2d21ac55 | 27 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 28 | */ |
1c79356b | 29 | |
1c79356b A |
30 | #include <IOKit/IOLib.h> |
31 | #include <IOKit/IOService.h> | |
32 | #include <IOKit/IOPlatformExpert.h> | |
91447636 | 33 | #include <IOKit/IODeviceTreeSupport.h> |
1c79356b A |
34 | #include <IOKit/IOInterrupts.h> |
35 | #include <IOKit/IOInterruptController.h> | |
060df5ea A |
36 | #include <IOKit/IOKitDebug.h> |
37 | #include <IOKit/IOTimeStamp.h> | |
38 | ||
1c79356b | 39 | |
1c79356b A |
40 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
41 | ||
42 | #define super IOService | |
43 | ||
44 | OSDefineMetaClassAndAbstractStructors(IOInterruptController, IOService); | |
45 | ||
46 | OSMetaClassDefineReservedUnused(IOInterruptController, 0); | |
47 | OSMetaClassDefineReservedUnused(IOInterruptController, 1); | |
48 | OSMetaClassDefineReservedUnused(IOInterruptController, 2); | |
49 | OSMetaClassDefineReservedUnused(IOInterruptController, 3); | |
50 | OSMetaClassDefineReservedUnused(IOInterruptController, 4); | |
51 | OSMetaClassDefineReservedUnused(IOInterruptController, 5); | |
52 | ||
53 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
54 | ||
0a7de745 A |
55 | IOReturn |
56 | IOInterruptController::registerInterrupt(IOService *nub, int source, | |
57 | void *target, | |
58 | IOInterruptHandler handler, | |
59 | void *refCon) | |
1c79356b | 60 | { |
0a7de745 A |
61 | IOInterruptSource *interruptSources; |
62 | IOInterruptVectorNumber vectorNumber; | |
63 | IOInterruptVector *vector; | |
64 | int wasDisabledSoft; | |
65 | IOReturn error; | |
66 | OSData *vectorData; | |
67 | IOOptionBits options; | |
68 | bool canBeShared, shouldBeShared, wasAlreadyRegisterd; | |
69 | ||
70 | IOService *originalNub = NULL;// Protected by wasAlreadyRegisterd | |
71 | int originalSource = 0;// Protected by wasAlreadyRegisterd | |
72 | ||
73 | ||
74 | interruptSources = nub->_interruptSources; | |
75 | vectorData = interruptSources[source].vectorData; | |
76 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
77 | vector = &vectors[vectorNumber]; | |
78 | ||
79 | // Get the lock for this vector. | |
80 | IOLockLock(vector->interruptLock); | |
81 | ||
82 | // Check if the interrupt source can/should be shared. | |
83 | canBeShared = vectorCanBeShared(vectorNumber, vector); | |
84 | IODTGetInterruptOptions(nub, source, &options); | |
cf7d32b8 | 85 | #if defined(__i386__) || defined(__x86_64__) |
0a7de745 A |
86 | int interruptType; |
87 | if (OSDynamicCast(IOPlatformDevice, getProvider()) && | |
88 | (getInterruptType(nub, source, &interruptType) == kIOReturnSuccess) && | |
89 | (kIOInterruptTypeLevel & interruptType)) { | |
90 | options |= kIODTInterruptShared; | |
91 | } | |
cf7d32b8 | 92 | #endif |
0a7de745 A |
93 | shouldBeShared = canBeShared && (options & kIODTInterruptShared); |
94 | wasAlreadyRegisterd = vector->interruptRegistered; | |
95 | ||
96 | // If the vector is registered and can not be shared return error. | |
97 | if (wasAlreadyRegisterd && !canBeShared) { | |
98 | IOLockUnlock(vector->interruptLock); | |
99 | return kIOReturnNoResources; | |
91447636 | 100 | } |
0a7de745 A |
101 | |
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 == 0) { | |
108 | // Make the IOShareInterruptController instance | |
109 | vector->sharedController = new IOSharedInterruptController; | |
110 | if (vector->sharedController == 0) { | |
111 | IOLockUnlock(vector->interruptLock); | |
112 | return kIOReturnNoMemory; | |
113 | } | |
114 | ||
115 | if (wasAlreadyRegisterd) { | |
116 | // Save the nub and source for the original consumer. | |
117 | originalNub = vector->nub; | |
118 | originalSource = vector->source; | |
119 | ||
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; | |
124 | } | |
125 | ||
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); | |
134 | } | |
135 | vector->sharedController->release(); | |
136 | vector->sharedController = 0; | |
137 | IOLockUnlock(vector->interruptLock); | |
138 | return error; | |
139 | } | |
140 | ||
141 | // If there was an original consumer try to register it on the shared controller. | |
142 | if (wasAlreadyRegisterd) { | |
143 | error = vector->sharedController->registerInterrupt(originalNub, | |
144 | originalSource, | |
145 | vector->target, | |
146 | vector->handler, | |
147 | vector->refCon); | |
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; | |
154 | ||
155 | // Make the interrupt really hard disabled. | |
156 | vector->interruptDisabledSoft = 1; | |
157 | vector->interruptDisabledHard = 1; | |
158 | ||
159 | // Enable the original consumer's interrupt if needed. | |
160 | if (!wasDisabledSoft) { | |
161 | originalNub->enableInterrupt(originalSource); | |
162 | } | |
163 | enableInterrupt(originalNub, originalSource); | |
164 | ||
165 | vector->sharedController->release(); | |
166 | vector->sharedController = 0; | |
167 | IOLockUnlock(vector->interruptLock); | |
168 | return error; | |
169 | } | |
170 | } | |
171 | ||
172 | // Fill in vector with the shared controller's info. | |
173 | vector->handler = (IOInterruptHandler)vector->sharedController->getInterruptHandlerAddress(); | |
174 | vector->nub = vector->sharedController; | |
175 | vector->source = 0; | |
176 | vector->target = vector->sharedController; | |
177 | vector->refCon = 0; | |
178 | ||
179 | // If the interrupt was already registered, | |
180 | // save the driver's interrupt enablement state. | |
181 | if (wasAlreadyRegisterd) { | |
182 | wasDisabledSoft = vector->interruptDisabledSoft; | |
183 | } else { | |
184 | wasDisabledSoft = true; | |
185 | } | |
186 | ||
187 | // Do any specific initalization for this vector if it has not yet been used. | |
188 | if (!wasAlreadyRegisterd) { | |
189 | initVector(vectorNumber, vector); | |
190 | } | |
191 | ||
192 | // Make the interrupt really hard disabled. | |
193 | vector->interruptDisabledSoft = 1; | |
194 | vector->interruptDisabledHard = 1; | |
195 | vector->interruptRegistered = 1; | |
196 | ||
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); | |
201 | } | |
202 | } | |
203 | ||
204 | error = vector->sharedController->registerInterrupt(nub, source, target, | |
205 | handler, refCon); | |
206 | IOLockUnlock(vector->interruptLock); | |
207 | return error; | |
208 | } | |
209 | ||
210 | // Fill in vector with the client's info. | |
211 | vector->handler = handler; | |
212 | vector->nub = nub; | |
213 | vector->source = source; | |
214 | vector->target = target; | |
215 | vector->refCon = refCon; | |
216 | ||
217 | // Do any specific initalization for this vector. | |
218 | initVector(vectorNumber, vector); | |
219 | ||
220 | // Get the vector ready. It starts hard disabled. | |
221 | vector->interruptDisabledHard = 1; | |
222 | vector->interruptDisabledSoft = 1; | |
223 | vector->interruptRegistered = 1; | |
224 | ||
225 | IOLockUnlock(vector->interruptLock); | |
226 | return kIOReturnSuccess; | |
1c79356b A |
227 | } |
228 | ||
0a7de745 A |
229 | IOReturn |
230 | IOInterruptController::unregisterInterrupt(IOService *nub, int source) | |
1c79356b | 231 | { |
0a7de745 A |
232 | IOInterruptSource *interruptSources; |
233 | IOInterruptVectorNumber vectorNumber; | |
234 | IOInterruptVector *vector; | |
235 | OSData *vectorData; | |
236 | ||
237 | interruptSources = nub->_interruptSources; | |
238 | vectorData = interruptSources[source].vectorData; | |
239 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
240 | vector = &vectors[vectorNumber]; | |
241 | ||
242 | // Get the lock for this vector. | |
243 | IOLockLock(vector->interruptLock); | |
244 | ||
245 | // Return success if it is not already registered | |
246 | if (!vector->interruptRegistered) { | |
247 | IOLockUnlock(vector->interruptLock); | |
248 | return kIOReturnSuccess; | |
249 | } | |
250 | ||
251 | // Soft disable the source. | |
252 | disableInterrupt(nub, source); | |
253 | ||
254 | // Turn the source off at hardware. | |
255 | disableVectorHard(vectorNumber, vector); | |
256 | ||
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; | |
262 | vector->nub = 0; | |
263 | vector->source = 0; | |
264 | vector->handler = 0; | |
265 | vector->target = 0; | |
266 | vector->refCon = 0; | |
267 | ||
268 | IOLockUnlock(vector->interruptLock); | |
269 | return kIOReturnSuccess; | |
1c79356b A |
270 | } |
271 | ||
0a7de745 A |
272 | IOReturn |
273 | IOInterruptController::getInterruptType(IOService *nub, int source, | |
274 | int *interruptType) | |
1c79356b | 275 | { |
0a7de745 A |
276 | IOInterruptSource *interruptSources; |
277 | IOInterruptVectorNumber vectorNumber; | |
278 | IOInterruptVector *vector; | |
279 | OSData *vectorData; | |
280 | ||
281 | if (interruptType == 0) { | |
282 | return kIOReturnBadArgument; | |
283 | } | |
284 | ||
285 | interruptSources = nub->_interruptSources; | |
286 | vectorData = interruptSources[source].vectorData; | |
287 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
288 | vector = &vectors[vectorNumber]; | |
289 | ||
290 | *interruptType = getVectorType(vectorNumber, vector); | |
291 | ||
292 | return kIOReturnSuccess; | |
1c79356b A |
293 | } |
294 | ||
0a7de745 A |
295 | IOReturn |
296 | IOInterruptController::enableInterrupt(IOService *nub, int source) | |
1c79356b | 297 | { |
0a7de745 A |
298 | IOInterruptSource *interruptSources; |
299 | IOInterruptVectorNumber vectorNumber; | |
300 | IOInterruptVector *vector; | |
301 | OSData *vectorData; | |
302 | ||
303 | interruptSources = nub->_interruptSources; | |
304 | vectorData = interruptSources[source].vectorData; | |
305 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
306 | vector = &vectors[vectorNumber]; | |
307 | ||
308 | if (vector->interruptDisabledSoft) { | |
309 | vector->interruptDisabledSoft = 0; | |
39236c6e | 310 | #if !defined(__i386__) && !defined(__x86_64__) |
0a7de745 | 311 | OSMemoryBarrier(); |
39236c6e A |
312 | #endif |
313 | ||
0a7de745 A |
314 | if (!getPlatform()->atInterruptLevel()) { |
315 | while (vector->interruptActive) { | |
316 | } | |
317 | } | |
318 | if (vector->interruptDisabledHard) { | |
319 | vector->interruptDisabledHard = 0; | |
320 | ||
321 | enableVector(vectorNumber, vector); | |
322 | } | |
323 | } | |
324 | ||
325 | return kIOReturnSuccess; | |
1c79356b A |
326 | } |
327 | ||
0a7de745 A |
328 | IOReturn |
329 | IOInterruptController::disableInterrupt(IOService *nub, int source) | |
1c79356b | 330 | { |
0a7de745 A |
331 | IOInterruptSource *interruptSources; |
332 | IOInterruptVectorNumber vectorNumber; | |
333 | IOInterruptVector *vector; | |
334 | OSData *vectorData; | |
335 | ||
336 | interruptSources = nub->_interruptSources; | |
337 | vectorData = interruptSources[source].vectorData; | |
338 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
339 | vector = &vectors[vectorNumber]; | |
340 | ||
341 | vector->interruptDisabledSoft = 1; | |
39236c6e | 342 | #if !defined(__i386__) && !defined(__x86_64__) |
0a7de745 | 343 | OSMemoryBarrier(); |
39236c6e | 344 | #endif |
0a7de745 A |
345 | |
346 | if (!getPlatform()->atInterruptLevel()) { | |
347 | while (vector->interruptActive) { | |
348 | } | |
349 | } | |
350 | ||
351 | return kIOReturnSuccess; | |
1c79356b A |
352 | } |
353 | ||
0a7de745 A |
354 | IOReturn |
355 | IOInterruptController::causeInterrupt(IOService *nub, int source) | |
1c79356b | 356 | { |
0a7de745 A |
357 | IOInterruptSource *interruptSources; |
358 | IOInterruptVectorNumber vectorNumber; | |
359 | IOInterruptVector *vector; | |
360 | OSData *vectorData; | |
361 | ||
362 | interruptSources = nub->_interruptSources; | |
363 | vectorData = interruptSources[source].vectorData; | |
364 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
365 | vector = &vectors[vectorNumber]; | |
366 | ||
367 | causeVector(vectorNumber, vector); | |
368 | ||
369 | return kIOReturnSuccess; | |
1c79356b A |
370 | } |
371 | ||
0a7de745 A |
372 | IOInterruptAction |
373 | IOInterruptController::getInterruptHandlerAddress(void) | |
1c79356b | 374 | { |
0a7de745 | 375 | return 0; |
1c79356b A |
376 | } |
377 | ||
0a7de745 A |
378 | IOReturn |
379 | IOInterruptController::handleInterrupt(void *refCon, IOService *nub, | |
380 | int source) | |
1c79356b | 381 | { |
0a7de745 | 382 | return kIOReturnInvalid; |
1c79356b A |
383 | } |
384 | ||
385 | ||
386 | // Methods to be overridden for simplifed interrupt controller subclasses. | |
387 | ||
0a7de745 A |
388 | bool |
389 | IOInterruptController::vectorCanBeShared(IOInterruptVectorNumber /*vectorNumber*/, | |
390 | IOInterruptVector */*vector*/) | |
1c79356b | 391 | { |
0a7de745 | 392 | return false; |
1c79356b A |
393 | } |
394 | ||
0a7de745 A |
395 | void |
396 | IOInterruptController::initVector(IOInterruptVectorNumber /*vectorNumber*/, | |
397 | IOInterruptVector */*vector*/) | |
1c79356b A |
398 | { |
399 | } | |
400 | ||
0a7de745 A |
401 | int |
402 | IOInterruptController::getVectorType(IOInterruptVectorNumber /*vectorNumber*/, | |
403 | IOInterruptVector */*vector*/) | |
1c79356b | 404 | { |
0a7de745 | 405 | return kIOInterruptTypeEdge; |
1c79356b A |
406 | } |
407 | ||
0a7de745 A |
408 | void |
409 | IOInterruptController::disableVectorHard(IOInterruptVectorNumber /*vectorNumber*/, | |
410 | IOInterruptVector */*vector*/) | |
1c79356b A |
411 | { |
412 | } | |
413 | ||
0a7de745 A |
414 | void |
415 | IOInterruptController::enableVector(IOInterruptVectorNumber /*vectorNumber*/, | |
416 | IOInterruptVector */*vector*/) | |
1c79356b A |
417 | { |
418 | } | |
419 | ||
0a7de745 A |
420 | void |
421 | IOInterruptController::causeVector(IOInterruptVectorNumber /*vectorNumber*/, | |
422 | IOInterruptVector */*vector*/) | |
1c79356b A |
423 | { |
424 | } | |
425 | ||
0a7de745 A |
426 | void |
427 | IOInterruptController::timeStampSpuriousInterrupt(void) | |
5ba3f43e | 428 | { |
0a7de745 A |
429 | uint64_t providerID = 0; |
430 | IOService * provider = getProvider(); | |
5ba3f43e | 431 | |
0a7de745 A |
432 | if (provider) { |
433 | providerID = provider->getRegistryEntryID(); | |
434 | } | |
5ba3f43e | 435 | |
0a7de745 | 436 | IOTimeStampConstant(IODBG_INTC(IOINTC_SPURIOUS), providerID); |
5ba3f43e A |
437 | } |
438 | ||
0a7de745 A |
439 | void |
440 | IOInterruptController::timeStampInterruptHandlerInternal(bool isStart, IOInterruptVectorNumber vectorNumber, IOInterruptVector *vector) | |
5ba3f43e | 441 | { |
0a7de745 A |
442 | uint64_t providerID = 0; |
443 | vm_offset_t unslidHandler = 0; | |
444 | vm_offset_t unslidTarget = 0; | |
5ba3f43e | 445 | |
0a7de745 | 446 | IOService * provider = getProvider(); |
5ba3f43e | 447 | |
0a7de745 A |
448 | if (provider) { |
449 | providerID = provider->getRegistryEntryID(); | |
450 | } | |
5ba3f43e | 451 | |
0a7de745 A |
452 | if (vector) { |
453 | unslidHandler = VM_KERNEL_UNSLIDE((vm_offset_t)vector->handler); | |
454 | unslidTarget = VM_KERNEL_UNSLIDE_OR_PERM((vm_offset_t)vector->target); | |
455 | } | |
5ba3f43e A |
456 | |
457 | ||
0a7de745 A |
458 | if (isStart) { |
459 | IOTimeStampStartConstant(IODBG_INTC(IOINTC_HANDLER), (uintptr_t)vectorNumber, (uintptr_t)unslidHandler, | |
460 | (uintptr_t)unslidTarget, (uintptr_t)providerID); | |
461 | } else { | |
462 | IOTimeStampEndConstant(IODBG_INTC(IOINTC_HANDLER), (uintptr_t)vectorNumber, (uintptr_t)unslidHandler, | |
463 | (uintptr_t)unslidTarget, (uintptr_t)providerID); | |
464 | } | |
5ba3f43e A |
465 | } |
466 | ||
0a7de745 A |
467 | void |
468 | IOInterruptController::timeStampInterruptHandlerStart(IOInterruptVectorNumber vectorNumber, IOInterruptVector *vector) | |
5ba3f43e | 469 | { |
0a7de745 | 470 | timeStampInterruptHandlerInternal(true, vectorNumber, vector); |
5ba3f43e A |
471 | } |
472 | ||
0a7de745 A |
473 | void |
474 | IOInterruptController::timeStampInterruptHandlerEnd(IOInterruptVectorNumber vectorNumber, IOInterruptVector *vector) | |
5ba3f43e | 475 | { |
0a7de745 | 476 | timeStampInterruptHandlerInternal(false, vectorNumber, vector); |
5ba3f43e | 477 | } |
1c79356b A |
478 | |
479 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
480 | ||
481 | #undef super | |
482 | #define super IOInterruptController | |
483 | ||
484 | OSDefineMetaClassAndStructors(IOSharedInterruptController, IOInterruptController); | |
485 | ||
486 | OSMetaClassDefineReservedUnused(IOSharedInterruptController, 0); | |
487 | OSMetaClassDefineReservedUnused(IOSharedInterruptController, 1); | |
488 | OSMetaClassDefineReservedUnused(IOSharedInterruptController, 2); | |
489 | OSMetaClassDefineReservedUnused(IOSharedInterruptController, 3); | |
490 | ||
491 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |
492 | ||
91447636 A |
493 | #define kIOSharedInterruptControllerDefaultVectors (128) |
494 | ||
0a7de745 A |
495 | IOReturn |
496 | IOSharedInterruptController::initInterruptController(IOInterruptController *parentController, OSData *parentSource) | |
1c79356b | 497 | { |
0a7de745 A |
498 | int cnt, interruptType; |
499 | IOReturn error; | |
500 | ||
501 | if (!super::init()) { | |
502 | return kIOReturnNoResources; | |
503 | } | |
504 | ||
505 | // Set provider to this so enable/disable nub stuff works. | |
506 | provider = this; | |
507 | ||
508 | // Allocate the IOInterruptSource so this can act like a nub. | |
509 | _interruptSources = (IOInterruptSource *)IOMalloc(sizeof(IOInterruptSource)); | |
510 | if (_interruptSources == 0) { | |
511 | return kIOReturnNoMemory; | |
512 | } | |
513 | _numInterruptSources = 1; | |
514 | ||
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; | |
520 | ||
521 | sourceIsLevel = false; | |
522 | error = provider->getInterruptType(0, &interruptType); | |
523 | if (error == kIOReturnSuccess) { | |
524 | if (interruptType & kIOInterruptTypeLevel) { | |
525 | sourceIsLevel = true; | |
526 | } | |
527 | } | |
528 | ||
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; | |
535 | } | |
536 | bzero(vectors, numVectors * sizeof(IOInterruptVector)); | |
537 | ||
538 | // Allocate the lock for the controller. | |
539 | controllerLock = IOSimpleLockAlloc(); | |
540 | if (controllerLock == 0) { | |
541 | return kIOReturnNoResources; | |
542 | } | |
543 | ||
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); | |
551 | } | |
552 | } | |
553 | return kIOReturnNoResources; | |
554 | } | |
555 | } | |
556 | ||
557 | numVectors = 0; // reset the high water mark for used vectors | |
558 | vectorsRegistered = 0; | |
559 | vectorsEnabled = 0; | |
560 | controllerDisabled = 1; | |
561 | ||
562 | return kIOReturnSuccess; | |
1c79356b A |
563 | } |
564 | ||
0a7de745 A |
565 | IOReturn |
566 | IOSharedInterruptController::registerInterrupt(IOService *nub, | |
567 | int source, | |
568 | void *target, | |
569 | IOInterruptHandler handler, | |
570 | void *refCon) | |
1c79356b | 571 | { |
0a7de745 A |
572 | IOInterruptSource *interruptSources; |
573 | IOInterruptVectorNumber vectorNumber; | |
574 | IOInterruptVector *vector = 0; | |
575 | OSData *vectorData; | |
576 | IOInterruptState interruptState; | |
577 | ||
578 | interruptSources = nub->_interruptSources; | |
579 | ||
580 | // Find a free vector. | |
581 | vectorNumber = kIOSharedInterruptControllerDefaultVectors; | |
582 | while (vectorsRegistered != kIOSharedInterruptControllerDefaultVectors) { | |
583 | for (vectorNumber = 0; vectorNumber < kIOSharedInterruptControllerDefaultVectors; vectorNumber++) { | |
584 | vector = &vectors[vectorNumber]; | |
585 | ||
586 | // Get the lock for this vector. | |
587 | IOLockLock(vector->interruptLock); | |
588 | ||
589 | // Is it unregistered? | |
590 | if (!vector->interruptRegistered) { | |
591 | break; | |
592 | } | |
593 | ||
594 | // Move along to the next one. | |
595 | IOLockUnlock(vector->interruptLock); | |
596 | } | |
597 | ||
598 | if (vectorNumber != kIOSharedInterruptControllerDefaultVectors) { | |
599 | break; | |
600 | } | |
601 | } | |
602 | ||
603 | // Could not find a free one, so give up. | |
604 | if (vectorNumber == kIOSharedInterruptControllerDefaultVectors) { | |
605 | return kIOReturnNoResources; | |
606 | } | |
607 | ||
608 | // Create the vectorData for the IOInterruptSource. | |
609 | vectorData = OSData::withBytes(&vectorNumber, sizeof(vectorNumber)); | |
610 | if (vectorData == 0) { | |
611 | IOLockUnlock(vector->interruptLock); | |
612 | return kIOReturnNoMemory; | |
613 | } | |
614 | ||
615 | // Fill in the IOInterruptSource with the controller's info. | |
616 | interruptSources[source].interruptController = this; | |
617 | interruptSources[source].vectorData = vectorData; | |
618 | ||
619 | // Fill in vector with the client's info. | |
620 | vector->handler = handler; | |
621 | vector->nub = nub; | |
622 | vector->source = source; | |
623 | vector->target = target; | |
624 | vector->refCon = refCon; | |
625 | ||
626 | // Get the vector ready. It starts off soft disabled. | |
627 | vector->interruptDisabledSoft = 1; | |
628 | vector->interruptRegistered = 1; | |
629 | ||
630 | interruptState = IOSimpleLockLockDisableInterrupt(controllerLock); | |
631 | // Move the high water mark if needed | |
632 | if (++vectorsRegistered > numVectors) { | |
633 | numVectors = vectorsRegistered; | |
634 | } | |
635 | IOSimpleLockUnlockEnableInterrupt(controllerLock, interruptState); | |
636 | ||
637 | IOLockUnlock(vector->interruptLock); | |
638 | return kIOReturnSuccess; | |
1c79356b A |
639 | } |
640 | ||
0a7de745 A |
641 | IOReturn |
642 | IOSharedInterruptController::unregisterInterrupt(IOService *nub, | |
643 | int source) | |
1c79356b | 644 | { |
0a7de745 A |
645 | IOInterruptVectorNumber vectorNumber; |
646 | IOInterruptVector *vector; | |
647 | IOInterruptState interruptState; | |
648 | ||
649 | for (vectorNumber = 0; vectorNumber < kIOSharedInterruptControllerDefaultVectors; vectorNumber++) { | |
650 | vector = &vectors[vectorNumber]; | |
651 | ||
652 | // Get the lock for this vector. | |
653 | IOLockLock(vector->interruptLock); | |
654 | ||
655 | // Return success if it is not already registered | |
656 | if (!vector->interruptRegistered | |
657 | || (vector->nub != nub) || (vector->source != source)) { | |
658 | IOLockUnlock(vector->interruptLock); | |
659 | continue; | |
660 | } | |
661 | ||
662 | // Soft disable the source and the controller too. | |
663 | disableInterrupt(nub, source); | |
664 | ||
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; | |
670 | vector->nub = 0; | |
671 | vector->source = 0; | |
672 | vector->handler = 0; | |
673 | vector->target = 0; | |
674 | vector->refCon = 0; | |
675 | ||
676 | interruptState = IOSimpleLockLockDisableInterrupt(controllerLock); | |
677 | vectorsRegistered--; | |
678 | IOSimpleLockUnlockEnableInterrupt(controllerLock, interruptState); | |
679 | ||
680 | // Move along to the next one. | |
681 | IOLockUnlock(vector->interruptLock); | |
682 | } | |
683 | ||
684 | // Re-enable the controller if all vectors are enabled. | |
685 | if (vectorsEnabled == vectorsRegistered) { | |
686 | controllerDisabled = 0; | |
687 | provider->enableInterrupt(0); | |
688 | } | |
689 | ||
690 | return kIOReturnSuccess; | |
1c79356b A |
691 | } |
692 | ||
0a7de745 A |
693 | IOReturn |
694 | IOSharedInterruptController::getInterruptType(IOService */*nub*/, | |
695 | int /*source*/, | |
696 | int *interruptType) | |
1c79356b | 697 | { |
0a7de745 | 698 | return provider->getInterruptType(0, interruptType); |
1c79356b A |
699 | } |
700 | ||
0a7de745 A |
701 | IOReturn |
702 | IOSharedInterruptController::enableInterrupt(IOService *nub, | |
703 | int source) | |
1c79356b | 704 | { |
0a7de745 A |
705 | IOInterruptSource *interruptSources; |
706 | IOInterruptVectorNumber vectorNumber; | |
707 | IOInterruptVector *vector; | |
708 | OSData *vectorData; | |
709 | IOInterruptState interruptState; | |
710 | ||
711 | interruptSources = nub->_interruptSources; | |
712 | vectorData = interruptSources[source].vectorData; | |
713 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
714 | vector = &vectors[vectorNumber]; | |
715 | ||
716 | interruptState = IOSimpleLockLockDisableInterrupt(controllerLock); | |
717 | if (!vector->interruptDisabledSoft) { | |
718 | IOSimpleLockUnlockEnableInterrupt(controllerLock, interruptState); | |
719 | return kIOReturnSuccess; | |
720 | } | |
721 | ||
722 | vector->interruptDisabledSoft = 0; | |
723 | vectorsEnabled++; | |
724 | IOSimpleLockUnlockEnableInterrupt(controllerLock, interruptState); | |
725 | ||
726 | if (controllerDisabled && (vectorsEnabled == vectorsRegistered)) { | |
727 | controllerDisabled = 0; | |
728 | provider->enableInterrupt(0); | |
729 | } | |
730 | ||
731 | return kIOReturnSuccess; | |
1c79356b A |
732 | } |
733 | ||
0a7de745 A |
734 | IOReturn |
735 | IOSharedInterruptController::disableInterrupt(IOService *nub, | |
736 | int source) | |
1c79356b | 737 | { |
0a7de745 A |
738 | IOInterruptSource *interruptSources; |
739 | IOInterruptVectorNumber vectorNumber; | |
740 | IOInterruptVector *vector; | |
741 | OSData *vectorData; | |
742 | IOInterruptState interruptState; | |
743 | ||
744 | interruptSources = nub->_interruptSources; | |
745 | vectorData = interruptSources[source].vectorData; | |
746 | vectorNumber = *(IOInterruptVectorNumber *)vectorData->getBytesNoCopy(); | |
747 | vector = &vectors[vectorNumber]; | |
748 | ||
749 | interruptState = IOSimpleLockLockDisableInterrupt(controllerLock); | |
750 | if (!vector->interruptDisabledSoft) { | |
751 | vector->interruptDisabledSoft = 1; | |
39236c6e | 752 | #if !defined(__i386__) && !defined(__x86_64__) |
0a7de745 | 753 | OSMemoryBarrier(); |
39236c6e A |
754 | #endif |
755 | ||
0a7de745 A |
756 | vectorsEnabled--; |
757 | } | |
758 | IOSimpleLockUnlockEnableInterrupt(controllerLock, interruptState); | |
759 | ||
760 | if (!getPlatform()->atInterruptLevel()) { | |
761 | while (vector->interruptActive) { | |
762 | } | |
763 | } | |
764 | ||
765 | return kIOReturnSuccess; | |
1c79356b A |
766 | } |
767 | ||
0a7de745 A |
768 | IOInterruptAction |
769 | IOSharedInterruptController::getInterruptHandlerAddress(void) | |
1c79356b | 770 | { |
0a7de745 A |
771 | return OSMemberFunctionCast(IOInterruptAction, |
772 | this, &IOSharedInterruptController::handleInterrupt); | |
1c79356b A |
773 | } |
774 | ||
0a7de745 A |
775 | IOReturn |
776 | IOSharedInterruptController::handleInterrupt(void * /*refCon*/, | |
777 | IOService * nub, | |
778 | int /*source*/) | |
1c79356b | 779 | { |
0a7de745 A |
780 | IOInterruptVectorNumber vectorNumber; |
781 | IOInterruptVector *vector; | |
782 | ||
783 | for (vectorNumber = 0; vectorNumber < numVectors; vectorNumber++) { | |
784 | vector = &vectors[vectorNumber]; | |
785 | ||
786 | vector->interruptActive = 1; | |
39236c6e | 787 | #if !defined(__i386__) && !defined(__x86_64__) |
0a7de745 | 788 | OSMemoryBarrier(); |
39236c6e A |
789 | #endif |
790 | ||
0a7de745 A |
791 | if (!vector->interruptDisabledSoft) { |
792 | // Call the handler if it exists. | |
793 | if (vector->interruptRegistered) { | |
794 | bool trace = (gIOKitTrace & kIOTraceInterrupts) ? true : false; | |
795 | ||
796 | if (trace) { | |
797 | timeStampInterruptHandlerStart(vectorNumber, vector); | |
798 | } | |
799 | ||
800 | // Call handler. | |
801 | vector->handler(vector->target, vector->refCon, vector->nub, vector->source); | |
802 | ||
803 | if (trace) { | |
804 | timeStampInterruptHandlerEnd(vectorNumber, vector); | |
805 | } | |
806 | } | |
807 | } | |
1c79356b | 808 | |
0a7de745 A |
809 | vector->interruptActive = 0; |
810 | } | |
811 | ||
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; | |
817 | } | |
818 | IOSimpleLockUnlock(controllerLock); | |
819 | ||
820 | return kIOReturnSuccess; | |
821 | } |