xref: /xnu-12377.41.6/iokit/IOKit/IOFilterInterruptEventSource.h (revision bbb1b6f9e71b8cdde6e5cd6f4841f207dee3d828)
1*bbb1b6f9SApple OSS Distributions /*
2*bbb1b6f9SApple OSS Distributions  * Copyright (c) 1998-2019 Apple Inc. All rights reserved.
3*bbb1b6f9SApple OSS Distributions  *
4*bbb1b6f9SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*bbb1b6f9SApple OSS Distributions  *
6*bbb1b6f9SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*bbb1b6f9SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*bbb1b6f9SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*bbb1b6f9SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*bbb1b6f9SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*bbb1b6f9SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*bbb1b6f9SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*bbb1b6f9SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*bbb1b6f9SApple OSS Distributions  *
15*bbb1b6f9SApple OSS Distributions  * Please obtain a copy of the License at
16*bbb1b6f9SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*bbb1b6f9SApple OSS Distributions  *
18*bbb1b6f9SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*bbb1b6f9SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*bbb1b6f9SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*bbb1b6f9SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*bbb1b6f9SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*bbb1b6f9SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*bbb1b6f9SApple OSS Distributions  * limitations under the License.
25*bbb1b6f9SApple OSS Distributions  *
26*bbb1b6f9SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*bbb1b6f9SApple OSS Distributions  */
28*bbb1b6f9SApple OSS Distributions /*
29*bbb1b6f9SApple OSS Distributions  *  Copyright (c) 1999 Apple Computer, Inc.	 All rights reserved.
30*bbb1b6f9SApple OSS Distributions  *
31*bbb1b6f9SApple OSS Distributions  *  HISTORY
32*bbb1b6f9SApple OSS Distributions  *   1999-4-15	Godfrey van der Linden(gvdl)
33*bbb1b6f9SApple OSS Distributions  *       Created.
34*bbb1b6f9SApple OSS Distributions  */
35*bbb1b6f9SApple OSS Distributions #ifndef _IOKIT_IOFILTERINTERRUPTEVENTSOURCE_H
36*bbb1b6f9SApple OSS Distributions #define _IOKIT_IOFILTERINTERRUPTEVENTSOURCE_H
37*bbb1b6f9SApple OSS Distributions 
38*bbb1b6f9SApple OSS Distributions #include <libkern/c++/OSPtr.h>
39*bbb1b6f9SApple OSS Distributions #include <IOKit/IOInterruptEventSource.h>
40*bbb1b6f9SApple OSS Distributions #include <libkern/c++/OSPtr.h>
41*bbb1b6f9SApple OSS Distributions 
42*bbb1b6f9SApple OSS Distributions class IOService;
43*bbb1b6f9SApple OSS Distributions 
44*bbb1b6f9SApple OSS Distributions /*! @class IOFilterInterruptEventSource : public IOInterruptEventSource
45*bbb1b6f9SApple OSS Distributions  *   @abstract Filtering varient of the $link IOInterruptEventSource.
46*bbb1b6f9SApple OSS Distributions  *   @discussion 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.
47*bbb1b6f9SApple OSS Distributions  *  <br><br>
48*bbb1b6f9SApple OSS Distributions  *   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.
49*bbb1b6f9SApple OSS Distributions  *  <br><br>
50*bbb1b6f9SApple OSS Distributions  *  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.
51*bbb1b6f9SApple OSS Distributions  *  <br><br>
52*bbb1b6f9SApple OSS Distributions  *  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.
53*bbb1b6f9SApple OSS Distributions  */
54*bbb1b6f9SApple OSS Distributions class IOFilterInterruptEventSource : public IOInterruptEventSource
55*bbb1b6f9SApple OSS Distributions {
56*bbb1b6f9SApple OSS Distributions 	OSDeclareDefaultStructors(IOFilterInterruptEventSource);
57*bbb1b6f9SApple OSS Distributions 
58*bbb1b6f9SApple OSS Distributions public:
59*bbb1b6f9SApple OSS Distributions /*!
60*bbb1b6f9SApple OSS Distributions  *   @typedef Filter
61*bbb1b6f9SApple OSS Distributions  *   @discussion C Function pointer to a routine to call when an interrupt occurs.
62*bbb1b6f9SApple OSS Distributions  *   @param owner Pointer to the owning/client instance.
63*bbb1b6f9SApple OSS Distributions  *   @param sender Where is the interrupt comming from.
64*bbb1b6f9SApple OSS Distributions  *   @result false if this interrupt can be ignored. */
65*bbb1b6f9SApple OSS Distributions 	typedef bool (*Filter)(OSObject *owner, IOFilterInterruptEventSource *sender);
66*bbb1b6f9SApple OSS Distributions 
67*bbb1b6f9SApple OSS Distributions /*! @defined IOFilterInterruptAction
68*bbb1b6f9SApple OSS Distributions  *   @discussion Backward compatibilty define for the old non-class scoped type definition.  See $link IOFilterInterruptSource::Filter */
69*bbb1b6f9SApple OSS Distributions #define IOFilterInterruptAction IOFilterInterruptEventSource::Filter
70*bbb1b6f9SApple OSS Distributions 
71*bbb1b6f9SApple OSS Distributions #ifdef __BLOCKS__
72*bbb1b6f9SApple OSS Distributions 	typedef bool (^FilterBlock)(IOFilterInterruptEventSource *sender);
73*bbb1b6f9SApple OSS Distributions #endif /* __BLOCKS__ */
74*bbb1b6f9SApple OSS Distributions 
75*bbb1b6f9SApple OSS Distributions private:
76*bbb1b6f9SApple OSS Distributions // Hide the superclass initializers
77*bbb1b6f9SApple OSS Distributions 	virtual bool init(OSObject *inOwner,
78*bbb1b6f9SApple OSS Distributions 	    IOInterruptEventSource::Action inAction = NULL,
79*bbb1b6f9SApple OSS Distributions 	    IOService *inProvider = NULL,
80*bbb1b6f9SApple OSS Distributions 	    int inIntIndex = 0) APPLE_KEXT_OVERRIDE;
81*bbb1b6f9SApple OSS Distributions 
82*bbb1b6f9SApple OSS Distributions 	static OSPtr<IOInterruptEventSource>
83*bbb1b6f9SApple OSS Distributions 	interruptEventSource(OSObject *inOwner,
84*bbb1b6f9SApple OSS Distributions 	    IOInterruptEventSource::Action inAction = NULL,
85*bbb1b6f9SApple OSS Distributions 	    IOService *inProvider = NULL,
86*bbb1b6f9SApple OSS Distributions 	    int inIntIndex = 0);
87*bbb1b6f9SApple OSS Distributions 
88*bbb1b6f9SApple OSS Distributions protected:
89*bbb1b6f9SApple OSS Distributions /*! @var filterAction Filter callout */
90*bbb1b6f9SApple OSS Distributions 
91*bbb1b6f9SApple OSS Distributions #if XNU_KERNEL_PRIVATE
92*bbb1b6f9SApple OSS Distributions 	union { Filter filterAction; FilterBlock filterActionBlock; };
93*bbb1b6f9SApple OSS Distributions #else /* XNU_KERNEL_PRIVATE */
94*bbb1b6f9SApple OSS Distributions 	Filter filterAction;
95*bbb1b6f9SApple OSS Distributions #endif /* !XNU_KERNEL_PRIVATE */
96*bbb1b6f9SApple OSS Distributions 
97*bbb1b6f9SApple OSS Distributions /*! @struct ExpansionData
98*bbb1b6f9SApple OSS Distributions  *   @discussion This structure will be used to expand the capablilties of the IOWorkLoop in the future.
99*bbb1b6f9SApple OSS Distributions  */
100*bbb1b6f9SApple OSS Distributions 	struct ExpansionData { };
101*bbb1b6f9SApple OSS Distributions 
102*bbb1b6f9SApple OSS Distributions /*! @var reserved
103*bbb1b6f9SApple OSS Distributions  *   Reserved for future use.  (Internal use only)  */
104*bbb1b6f9SApple OSS Distributions 	APPLE_KEXT_WSHADOW_PUSH;
105*bbb1b6f9SApple OSS Distributions 	ExpansionData *reserved;
106*bbb1b6f9SApple OSS Distributions 	APPLE_KEXT_WSHADOW_POP;
107*bbb1b6f9SApple OSS Distributions 
108*bbb1b6f9SApple OSS Distributions public:
109*bbb1b6f9SApple OSS Distributions /*! @function filterInterruptEventSource
110*bbb1b6f9SApple OSS Distributions  *   @abstract Factor method to create and initialise an IOFilterInterruptEventSource.  See $link init.
111*bbb1b6f9SApple OSS Distributions  *   @param owner Owner/client of this event source.
112*bbb1b6f9SApple OSS Distributions  *   @param action 'C' Function to call when something happens.
113*bbb1b6f9SApple OSS Distributions  *   @param filter 'C' Function to call when interrupt occurs.
114*bbb1b6f9SApple OSS Distributions  *   @param provider Service that provides interrupts.
115*bbb1b6f9SApple OSS Distributions  *   @param intIndex Defaults to 0.
116*bbb1b6f9SApple OSS Distributions  *   @result a new event source if succesful, 0 otherwise.  */
117*bbb1b6f9SApple OSS Distributions 	static OSPtr<IOFilterInterruptEventSource>
118*bbb1b6f9SApple OSS Distributions 	filterInterruptEventSource(OSObject *owner,
119*bbb1b6f9SApple OSS Distributions 	    IOInterruptEventSource::Action action,
120*bbb1b6f9SApple OSS Distributions 	    Filter filter,
121*bbb1b6f9SApple OSS Distributions 	    IOService *provider,
122*bbb1b6f9SApple OSS Distributions 	    int intIndex = 0);
123*bbb1b6f9SApple OSS Distributions 
124*bbb1b6f9SApple OSS Distributions #ifdef __BLOCKS__
125*bbb1b6f9SApple OSS Distributions /*! @function filterInterruptEventSource
126*bbb1b6f9SApple OSS Distributions  *   @abstract Factor method to create and initialise an IOFilterInterruptEventSource.  See $link init.
127*bbb1b6f9SApple OSS Distributions  *   @param owner Owner/client of this event source.
128*bbb1b6f9SApple OSS Distributions  *   @param provider Service that provides interrupts.
129*bbb1b6f9SApple OSS Distributions  *   @param intIndex The index of the interrupt within the provider's interrupt sources.
130*bbb1b6f9SApple OSS Distributions  *   @param action Block for the callout routine of this event source.
131*bbb1b6f9SApple OSS Distributions  *   @param filter Block to invoke when HW interrupt occurs.
132*bbb1b6f9SApple OSS Distributions  *   @result a new event source if succesful, 0 otherwise.  */
133*bbb1b6f9SApple OSS Distributions 	static OSPtr<IOFilterInterruptEventSource>
134*bbb1b6f9SApple OSS Distributions 	filterInterruptEventSource(OSObject *owner,
135*bbb1b6f9SApple OSS Distributions 	    IOService *provider,
136*bbb1b6f9SApple OSS Distributions 	    int intIndex,
137*bbb1b6f9SApple OSS Distributions 	    IOInterruptEventSource::ActionBlock action,
138*bbb1b6f9SApple OSS Distributions 	    FilterBlock filter);
139*bbb1b6f9SApple OSS Distributions #endif /* __BLOCKS__ */
140*bbb1b6f9SApple OSS Distributions 
141*bbb1b6f9SApple OSS Distributions #if XNU_KERNEL_PRIVATE
142*bbb1b6f9SApple OSS Distributions 	enum{
143*bbb1b6f9SApple OSS Distributions 		kFilterBlock = kSubClass0,
144*bbb1b6f9SApple OSS Distributions 	};
145*bbb1b6f9SApple OSS Distributions #endif
146*bbb1b6f9SApple OSS Distributions 
147*bbb1b6f9SApple OSS Distributions /*! @function init
148*bbb1b6f9SApple OSS Distributions  *   @abstract Primary initialiser for the IOFilterInterruptEventSource class.
149*bbb1b6f9SApple OSS Distributions  *   @param owner Owner/client of this event source.
150*bbb1b6f9SApple OSS Distributions  *   @param action 'C' Function to call when something happens.
151*bbb1b6f9SApple OSS Distributions  *   @param filter 'C' Function to call in primary interrupt context.
152*bbb1b6f9SApple OSS Distributions  *   @param provider Service that provides interrupts.
153*bbb1b6f9SApple OSS Distributions  *   @param intIndex Interrupt source within provider.  Defaults to 0.
154*bbb1b6f9SApple OSS Distributions  *   @result true if the inherited classes and this instance initialise
155*bbb1b6f9SApple OSS Distributions  *  successfully.  */
156*bbb1b6f9SApple OSS Distributions 	virtual bool init(OSObject *owner,
157*bbb1b6f9SApple OSS Distributions 	    IOInterruptEventSource::Action action,
158*bbb1b6f9SApple OSS Distributions 	    Filter filter,
159*bbb1b6f9SApple OSS Distributions 	    IOService *provider,
160*bbb1b6f9SApple OSS Distributions 	    int intIndex = 0);
161*bbb1b6f9SApple OSS Distributions 
162*bbb1b6f9SApple OSS Distributions 	virtual void free( void ) APPLE_KEXT_OVERRIDE;
163*bbb1b6f9SApple OSS Distributions 
164*bbb1b6f9SApple OSS Distributions /*! @function signalInterrupt
165*bbb1b6f9SApple OSS Distributions  *   @abstract Cause the work loop to schedule the action.
166*bbb1b6f9SApple OSS Distributions  *   @discussion 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 */
167*bbb1b6f9SApple OSS Distributions 	virtual void signalInterrupt();
168*bbb1b6f9SApple OSS Distributions 
169*bbb1b6f9SApple OSS Distributions /*! @function getFilterAction
170*bbb1b6f9SApple OSS Distributions  *   @abstract Get'ter for filterAction variable.
171*bbb1b6f9SApple OSS Distributions  *   @result value of filterAction. */
172*bbb1b6f9SApple OSS Distributions 	virtual Filter getFilterAction() const;
173*bbb1b6f9SApple OSS Distributions 
174*bbb1b6f9SApple OSS Distributions #ifdef __BLOCKS__
175*bbb1b6f9SApple OSS Distributions /*! @function getFilterActionBlock
176*bbb1b6f9SApple OSS Distributions  *   @abstract Get'ter for filterAction variable.
177*bbb1b6f9SApple OSS Distributions  *   @result value of filterAction. */
178*bbb1b6f9SApple OSS Distributions 	FilterBlock getFilterActionBlock() const;
179*bbb1b6f9SApple OSS Distributions #endif /* __BLOCKS__ */
180*bbb1b6f9SApple OSS Distributions 
181*bbb1b6f9SApple OSS Distributions /*! @function normalInterruptOccurred
182*bbb1b6f9SApple OSS Distributions  *   @abstract Override $link IOInterruptEventSource::normalInterruptOccured to make a filter callout. */
183*bbb1b6f9SApple OSS Distributions 	virtual void normalInterruptOccurred(void *self, IOService *prov, int ind) APPLE_KEXT_OVERRIDE;
184*bbb1b6f9SApple OSS Distributions 
185*bbb1b6f9SApple OSS Distributions /*! @function disableInterruptOccurred
186*bbb1b6f9SApple OSS Distributions  *   @abstract Override $link IOInterruptEventSource::disableInterruptOccurred to make a filter callout. */
187*bbb1b6f9SApple OSS Distributions 	virtual void disableInterruptOccurred(void *self, IOService *prov, int ind) APPLE_KEXT_OVERRIDE;
188*bbb1b6f9SApple OSS Distributions 
189*bbb1b6f9SApple OSS Distributions private:
190*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 0);
191*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 1);
192*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 2);
193*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 3);
194*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 4);
195*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 5);
196*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 6);
197*bbb1b6f9SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOFilterInterruptEventSource, 7);
198*bbb1b6f9SApple OSS Distributions };
199*bbb1b6f9SApple OSS Distributions 
200*bbb1b6f9SApple OSS Distributions #endif /* !_IOKIT_IOFILTERINTERRUPTEVENTSOURCE_H */
201