|
Mac Dev Center
Mac OS X Reference Library Drivers, Kernel, & Hardware: Kernel Device Drivers Kernel Framework Reference
|
IOFilterInterruptEventSource |
| Inherits from: | |
| Declared In: |
Filtering varient of the $link IOInterruptEventSource.
An interrupt event source that calls the client to determine if a interrupt event needs to be scheduled on the work loop. A filter interrupt event source call's the client in the primary interrupt context, the client can then interrogate its hardware and determine if the interrupt needs to be processed yet.
As the routine is called in the primary interrupt context great care must be taken in the writing of this routine. In general none of the generic IOKit environment is safe to call in this context. We intend this routine to be used by hardware that can interrogate its registers without destroying state. Primarily this variant of event sources will be used by drivers that share interrupts. The filter routine will determine if the interrupt is a real interrupt or a ghost and thus optimise the work thread context switch away.
If you are implementing 'SoftDMA' (or pseudo-DMA), you may not want the I/O Kit to automatically start your interrupt handler routine on your work loop when your filter routine returns true. In this case, you may choose to have your filter routine schedule the work on the work loop itself and then return false. If you do this, the interrupt will not be disabled in hardware and you could receive additional primary interrupts before your work loop–level service routine completes. Because this scheme has implications for synchronization between your filter routine and your interrupt service routine, you should avoid doing this unless your driver requires SoftDMA.
CAUTION: Called in primary interrupt context, if you need to disable interrupt to guard you registers against an unexpected call then it is better to use a straight IOInterruptEventSource and its secondary interrupt delivery mechanism.
Override $link IOInterruptEventSource::disableInterruptOccurred to make a filter callout.
Factor method to create and initialise an IOFilterInterruptEventSource. See $link init.
Get'ter for filterAction variable.
Primary initialiser for the IOFilterInterruptEventSource class.
Override $link IOInterruptEventSource::normalInterruptOccured to make a filter callout.
Cause the work loop to schedule the action.
disableInterruptOccurred |
Override $link IOInterruptEventSource::disableInterruptOccurred to make a filter callout.
filterInterruptEventSource |
Factor method to create and initialise an IOFilterInterruptEventSource. See $link init.
public
static IOFilterInterruptEventSource * filterInterruptEventSource( OSObject *owner, IOInterruptEventSource::Action action, Filter filter, IOService *provider, int intIndex = 0);
ownerOwner/client of this event source.
action'C' Function to call when something happens.
filter'C' Function to call when interrupt occurs.
providerService that provides interrupts.
intIndexDefaults to 0.
a new event source if succesful, 0 otherwise.
getFilterAction |
Get'ter for filterAction variable.
public
virtual Filter getFilterAction() const;
value of filterAction.
init |
Primary initialiser for the IOFilterInterruptEventSource class.
public
virtual bool init( OSObject *owner, IOInterruptEventSource::Action action, Filter filter, IOService *provider, int intIndex = 0);
ownerOwner/client of this event source.
action'C' Function to call when something happens.
filter'C' Function to call in primary interrupt context.
providerService that provides interrupts.
intIndexInterrupt source within provider. Defaults to 0.
true if the inherited classes and this instance initialise successfully.
normalInterruptOccurred |
Override $link IOInterruptEventSource::normalInterruptOccured to make a filter callout.
signalInterrupt |
Cause the work loop to schedule the action.
public
virtual void signalInterrupt();
Cause the work loop to schedule the interrupt action even if the filter routine returns 'false'. Note well the interrupting condition MUST be cleared from the hardware otherwise an infinite process interrupt loop will occur. Use this function when SoftDMA is desired. See $link IOFilterInterruptSource::Filter
Filter |
public
typedef bool ( *Filter)( OSObject *, IOFilterInterruptEventSource *);
ownerPointer to the owning/client instance.
senderWhere is the interrupt comming from.
false if this interrupt can be ignored.
C Function pointer to a routine to call when an interrupt occurs.
ExpansionData |
protected
struct ExpansionData { };
This structure will be used to expand the capablilties of the IOWorkLoop in the future.
filterAction |
protected
Filter filterAction;
Filter callout
reserved |
protected
ExpansionData *reserved;
Reserved for future use. (Internal use only)
IOFilterInterruptAction |
#define IOFilterInterruptAction IOFilterInterruptEventSource::Filter
Backward compatibilty define for the old non-class scoped type definition. See $link IOFilterInterruptSource::Filter
Last Updated: 2009-10-14