xref: /xnu-10002.81.5/iokit/IOKit/IOInterruptEventSource.h (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587)
1*5e3eaea3SApple OSS Distributions /*
2*5e3eaea3SApple OSS Distributions  * Copyright (c) 1998-2019 Apple Inc. All rights reserved.
3*5e3eaea3SApple OSS Distributions  *
4*5e3eaea3SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*5e3eaea3SApple OSS Distributions  *
6*5e3eaea3SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*5e3eaea3SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*5e3eaea3SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*5e3eaea3SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*5e3eaea3SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*5e3eaea3SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*5e3eaea3SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*5e3eaea3SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*5e3eaea3SApple OSS Distributions  *
15*5e3eaea3SApple OSS Distributions  * Please obtain a copy of the License at
16*5e3eaea3SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*5e3eaea3SApple OSS Distributions  *
18*5e3eaea3SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*5e3eaea3SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*5e3eaea3SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*5e3eaea3SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*5e3eaea3SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*5e3eaea3SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*5e3eaea3SApple OSS Distributions  * limitations under the License.
25*5e3eaea3SApple OSS Distributions  *
26*5e3eaea3SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*5e3eaea3SApple OSS Distributions  */
28*5e3eaea3SApple OSS Distributions /*
29*5e3eaea3SApple OSS Distributions  *  Copyright (c) 1998 Apple Computer, Inc.	 All rights reserved.
30*5e3eaea3SApple OSS Distributions  *
31*5e3eaea3SApple OSS Distributions  *  HISTORY
32*5e3eaea3SApple OSS Distributions  *   1998-7-13	Godfrey van der Linden(gvdl)
33*5e3eaea3SApple OSS Distributions  *       Created.
34*5e3eaea3SApple OSS Distributions  *   1998-10-30	Godfrey van der Linden(gvdl)
35*5e3eaea3SApple OSS Distributions  *       Converted to C++
36*5e3eaea3SApple OSS Distributions  */
37*5e3eaea3SApple OSS Distributions 
38*5e3eaea3SApple OSS Distributions #ifndef _IOKIT_IOINTERRUPTEVENTSOURCE_H
39*5e3eaea3SApple OSS Distributions #define _IOKIT_IOINTERRUPTEVENTSOURCE_H
40*5e3eaea3SApple OSS Distributions 
41*5e3eaea3SApple OSS Distributions #include <libkern/c++/OSPtr.h>
42*5e3eaea3SApple OSS Distributions #include <IOKit/IOEventSource.h>
43*5e3eaea3SApple OSS Distributions 
44*5e3eaea3SApple OSS Distributions class IOService;
45*5e3eaea3SApple OSS Distributions 
46*5e3eaea3SApple OSS Distributions struct IOInterruptAccountingData;
47*5e3eaea3SApple OSS Distributions 
48*5e3eaea3SApple OSS Distributions /*! @class IOInterruptEventSource : public IOEventSource
49*5e3eaea3SApple OSS Distributions  *   @abstract Event source for interrupt delivery to work-loop based drivers.
50*5e3eaea3SApple OSS Distributions  *   @discussion The IOInterruptEventSource is a generic object that delivers calls interrupt routines in it's client in a guaranteed single-threaded manner.  IOInterruptEventSource is part of the IOKit $link IOWorkLoop infrastructure where the semantic that one and only one action method is executing within a work-loops event chain.
51*5e3eaea3SApple OSS Distributions  *  <br><br>
52*5e3eaea3SApple OSS Distributions  *  When the action method is called in the client member function will receive 2 arguments, (IOEventSource *) sender and (int) count, See $link IOInterruptEventSource::Action.	Where sender will be reference to the interrupt that occurred and the count will be computed by the difference between the $link producerCount and $link consumerCount.  This number may not be reliable as no attempt is made to adjust for around the world type problems but is provided for general information and statistic gathering.
53*5e3eaea3SApple OSS Distributions  *  <br><br>
54*5e3eaea3SApple OSS Distributions  *  In general a client will use the factory member function to create and initialise the event source and then add it to their work-loop.  It is the work loop's responsiblity to maintain the new event source in it's event chain.  See $link IOWorkLoop.
55*5e3eaea3SApple OSS Distributions  *  <br><br>
56*5e3eaea3SApple OSS Distributions  *  An interrupt event source attaches itself to the given provider's interrupt source at initialisation time.  At this time it determines if it is connected to a level or edge triggered interrupt.  If the interrupt is an level triggered interrupt the event source automatically disables the interrupt source at primary interrupt time and after it call's the client it automatically reenables the interrupt.  This action is fairly expensive but it is 100% safe and defaults sensibly so that the driver writer does not have to implement type dependant interrupt routines.  So to repeat, the driver writer does not have to be concerned by the actual underlying interrupt mechanism as the event source hides the complexity.
57*5e3eaea3SApple OSS Distributions  *  <br><br>
58*5e3eaea3SApple OSS Distributions  *  Saying this if the hardware is a multi-device card, for instance a 4 port NIC, where all of the devices are sharing one level triggered interrupt AND it is possible to determine each port's interrupt state non-destructively then the $link IOFilterInterruptEventSource would be a better choice.
59*5e3eaea3SApple OSS Distributions  *  <br><br>
60*5e3eaea3SApple OSS Distributions  *  Warning:  All IOInterruptEventSources are created in the disabled state.  If you want to actually schedule interrupt delivery do not forget to enable the source.
61*5e3eaea3SApple OSS Distributions  */
62*5e3eaea3SApple OSS Distributions class IOInterruptEventSource : public IOEventSource
63*5e3eaea3SApple OSS Distributions {
64*5e3eaea3SApple OSS Distributions 	OSDeclareDefaultStructors(IOInterruptEventSource);
65*5e3eaea3SApple OSS Distributions 
66*5e3eaea3SApple OSS Distributions public:
67*5e3eaea3SApple OSS Distributions /*! @typedef Action
68*5e3eaea3SApple OSS Distributions  *   @discussion 'C' pointer prototype of functions that are called in a single threaded context when an interrupt occurs.
69*5e3eaea3SApple OSS Distributions  *   @param owner Pointer to client instance.
70*5e3eaea3SApple OSS Distributions  *   @param sender Pointer to generation interrupt event source.
71*5e3eaea3SApple OSS Distributions  *   @param count Number of interrupts seen before delivery. */
72*5e3eaea3SApple OSS Distributions 	typedef void (*Action)(OSObject *owner, IOInterruptEventSource *sender, int count);
73*5e3eaea3SApple OSS Distributions 
74*5e3eaea3SApple OSS Distributions #ifdef __BLOCKS__
75*5e3eaea3SApple OSS Distributions 	typedef void (^ActionBlock)(IOInterruptEventSource *sender, int count);
76*5e3eaea3SApple OSS Distributions #endif /* __BLOCKS__ */
77*5e3eaea3SApple OSS Distributions 
78*5e3eaea3SApple OSS Distributions /*! @defined IOInterruptEventAction
79*5e3eaea3SApple OSS Distributions  *   @discussion Backward compatibilty define for the old non-class scoped type definition.  See $link IOInterruptEventSource::Action */
80*5e3eaea3SApple OSS Distributions #define IOInterruptEventAction IOInterruptEventSource::Action
81*5e3eaea3SApple OSS Distributions 
82*5e3eaea3SApple OSS Distributions protected:
83*5e3eaea3SApple OSS Distributions /*! @var provider IOService that provides interrupts for delivery. */
84*5e3eaea3SApple OSS Distributions 	IOService *provider;
85*5e3eaea3SApple OSS Distributions 
86*5e3eaea3SApple OSS Distributions /*! @var intIndex */
87*5e3eaea3SApple OSS Distributions 	int intIndex;
88*5e3eaea3SApple OSS Distributions 
89*5e3eaea3SApple OSS Distributions /*! @var producerCount
90*5e3eaea3SApple OSS Distributions  *   Current count of produced interrupts that have been received. */
91*5e3eaea3SApple OSS Distributions 	volatile unsigned int producerCount;
92*5e3eaea3SApple OSS Distributions 
93*5e3eaea3SApple OSS Distributions /*! @var consumerCount
94*5e3eaea3SApple OSS Distributions  *   Current count of produced interrupts that the owner has been informed of. */
95*5e3eaea3SApple OSS Distributions 	unsigned int consumerCount;
96*5e3eaea3SApple OSS Distributions 
97*5e3eaea3SApple OSS Distributions /*! @var autoDisable Do we need to automatically disable the interrupt source when we take an interrupt, i.e. we are level triggered. */
98*5e3eaea3SApple OSS Distributions 	bool autoDisable;
99*5e3eaea3SApple OSS Distributions 
100*5e3eaea3SApple OSS Distributions /*! @var explicitDisable Has the user expicitly disabled this event source, if so then do not overide their request when returning from the callout */
101*5e3eaea3SApple OSS Distributions 	bool explicitDisable;
102*5e3eaea3SApple OSS Distributions 
103*5e3eaea3SApple OSS Distributions /*! @struct ExpansionData
104*5e3eaea3SApple OSS Distributions  *   @discussion This structure will be used to expand the capablilties of the IOWorkLoop in the future.
105*5e3eaea3SApple OSS Distributions  */
106*5e3eaea3SApple OSS Distributions 	struct ExpansionData {
107*5e3eaea3SApple OSS Distributions 		IOInterruptAccountingData * statistics;
108*5e3eaea3SApple OSS Distributions 	};
109*5e3eaea3SApple OSS Distributions 
110*5e3eaea3SApple OSS Distributions /*! @var reserved
111*5e3eaea3SApple OSS Distributions  *   Reserved for future use.  (Internal use only)  */
112*5e3eaea3SApple OSS Distributions 	APPLE_KEXT_WSHADOW_PUSH;
113*5e3eaea3SApple OSS Distributions 	ExpansionData *reserved;
114*5e3eaea3SApple OSS Distributions 	APPLE_KEXT_WSHADOW_POP;
115*5e3eaea3SApple OSS Distributions 
116*5e3eaea3SApple OSS Distributions /*! @function free
117*5e3eaea3SApple OSS Distributions  *   @abstract Sub-class implementation of free method, disconnects from the interrupt source. */
118*5e3eaea3SApple OSS Distributions 	virtual void free() APPLE_KEXT_OVERRIDE;
119*5e3eaea3SApple OSS Distributions 
120*5e3eaea3SApple OSS Distributions /*! @function checkForWork
121*5e3eaea3SApple OSS Distributions  *   @abstract Pure Virtual member function used by IOWorkLoop for issueing a client calls.
122*5e3eaea3SApple OSS Distributions  *   @discussion This function called when the work-loop is ready to check for any work to do and then to call out the owner/action.
123*5e3eaea3SApple OSS Distributions  *   @result Return true if this function needs to be called again before all its outstanding events have been processed. */
124*5e3eaea3SApple OSS Distributions 	virtual bool checkForWork() APPLE_KEXT_OVERRIDE;
125*5e3eaea3SApple OSS Distributions 
126*5e3eaea3SApple OSS Distributions /*! @function setWorkLoop
127*5e3eaea3SApple OSS Distributions  *   @abstract Sub-class implementation of setWorkLoop method. */
128*5e3eaea3SApple OSS Distributions 	virtual void setWorkLoop(IOWorkLoop *inWorkLoop) APPLE_KEXT_OVERRIDE;
129*5e3eaea3SApple OSS Distributions 
130*5e3eaea3SApple OSS Distributions public:
131*5e3eaea3SApple OSS Distributions 
132*5e3eaea3SApple OSS Distributions /*! @function interruptEventSource
133*5e3eaea3SApple OSS Distributions  *   @abstract Factory function for IOInterruptEventSources creation and initialisation.
134*5e3eaea3SApple OSS Distributions  *   @param owner Owning client of the new event source.
135*5e3eaea3SApple OSS Distributions  *   @param action 'C' Function to call when something happens.
136*5e3eaea3SApple OSS Distributions  *   @param provider IOService that represents the interrupt source.  Defaults to 0.  When no provider is defined the event source assumes that the client will in some manner call the interruptOccured method explicitly.  This will start the ball rolling for safe delivery of asynchronous event's into the driver.
137*5e3eaea3SApple OSS Distributions  *   @param intIndex The index of the interrupt within the provider's interrupt sources.  Defaults to 0, i.e. the first interrupt in the provider.
138*5e3eaea3SApple OSS Distributions  *   @result A new interrupt event source if successfully created and initialised, 0 otherwise.  */
139*5e3eaea3SApple OSS Distributions 	static OSPtr<IOInterruptEventSource>
140*5e3eaea3SApple OSS Distributions 	interruptEventSource(OSObject *owner,
141*5e3eaea3SApple OSS Distributions 	    Action action,
142*5e3eaea3SApple OSS Distributions 	    IOService *provider = NULL,
143*5e3eaea3SApple OSS Distributions 	    int intIndex = 0);
144*5e3eaea3SApple OSS Distributions 
145*5e3eaea3SApple OSS Distributions 
146*5e3eaea3SApple OSS Distributions #ifdef __BLOCKS__
147*5e3eaea3SApple OSS Distributions /*! @function interruptEventSource
148*5e3eaea3SApple OSS Distributions  *   @abstract Factory function for IOInterruptEventSources creation and initialisation.
149*5e3eaea3SApple OSS Distributions  *   @param owner Owning client of the new event source.
150*5e3eaea3SApple OSS Distributions  *   @param provider IOService that represents the interrupt source.  When no provider is defined the event source assumes that the client will in some manner call the interruptOccured method explicitly.  This will start the ball rolling for safe delivery of asynchronous event's into the driver.
151*5e3eaea3SApple OSS Distributions  *   @param intIndex The index of the interrupt within the provider's interrupt sources.
152*5e3eaea3SApple OSS Distributions  *   @param action Block for the callout routine of this event source..
153*5e3eaea3SApple OSS Distributions  *   @result A new interrupt event source if successfully created and initialised, 0 otherwise.  */
154*5e3eaea3SApple OSS Distributions 	static OSPtr<IOInterruptEventSource>
155*5e3eaea3SApple OSS Distributions 	interruptEventSource(OSObject *owner,
156*5e3eaea3SApple OSS Distributions 	    IOService *provider,
157*5e3eaea3SApple OSS Distributions 	    int intIndex,
158*5e3eaea3SApple OSS Distributions 	    ActionBlock action);
159*5e3eaea3SApple OSS Distributions #endif /* __BLOCKS__ */
160*5e3eaea3SApple OSS Distributions 
161*5e3eaea3SApple OSS Distributions #if XNU_KERNEL_PRIVATE
162*5e3eaea3SApple OSS Distributions 	static void actionToBlock(OSObject *owner, IOInterruptEventSource *sender, int count);
163*5e3eaea3SApple OSS Distributions #endif /* XNU_KERNEL_PRIVATE */
164*5e3eaea3SApple OSS Distributions 
165*5e3eaea3SApple OSS Distributions /*! @function init
166*5e3eaea3SApple OSS Distributions  *   @abstract Primary initialiser for the IOInterruptEventSource class.
167*5e3eaea3SApple OSS Distributions  *   @param owner Owning client of the new event source.
168*5e3eaea3SApple OSS Distributions  *   @param action 'C' Function to call when something happens.
169*5e3eaea3SApple OSS Distributions  *   @param provider IOService that represents the interrupt source.  Defaults to 0.  When no provider is defined the event source assumes that the client will in some manner call the interruptOccured method explicitly.  This will start the ball rolling for safe delivery of asynchronous event's into the driver.
170*5e3eaea3SApple OSS Distributions  *   @param intIndex The index of the interrupt within the provider's interrupt sources.  Defaults to 0, i.e. the first interrupt in the provider.
171*5e3eaea3SApple OSS Distributions  *   @result true if the inherited classes and this instance initialise
172*5e3eaea3SApple OSS Distributions  *  successfully.  */
173*5e3eaea3SApple OSS Distributions 	virtual bool init(OSObject *owner,
174*5e3eaea3SApple OSS Distributions 	    Action action,
175*5e3eaea3SApple OSS Distributions 	    IOService *provider = NULL,
176*5e3eaea3SApple OSS Distributions 	    int intIndex = 0);
177*5e3eaea3SApple OSS Distributions 
178*5e3eaea3SApple OSS Distributions /*! @function enable
179*5e3eaea3SApple OSS Distributions  *   @abstract Enable event source.
180*5e3eaea3SApple OSS Distributions  *   @discussion A subclass implementation is expected to respect the enabled
181*5e3eaea3SApple OSS Distributions  *  state when checkForWork is called.  Calling this function will cause the
182*5e3eaea3SApple OSS Distributions  *  work-loop to be signalled so that a checkForWork is performed. */
183*5e3eaea3SApple OSS Distributions 	virtual void enable() APPLE_KEXT_OVERRIDE;
184*5e3eaea3SApple OSS Distributions 
185*5e3eaea3SApple OSS Distributions /*! @function disable
186*5e3eaea3SApple OSS Distributions  *   @abstract Disable event source.
187*5e3eaea3SApple OSS Distributions  *   @discussion A subclass implementation is expected to respect the enabled
188*5e3eaea3SApple OSS Distributions  *  state when checkForWork is called. */
189*5e3eaea3SApple OSS Distributions 	virtual void disable() APPLE_KEXT_OVERRIDE;
190*5e3eaea3SApple OSS Distributions 
191*5e3eaea3SApple OSS Distributions /*! @function getProvider
192*5e3eaea3SApple OSS Distributions  *   @abstract Get'ter for $link provider variable.
193*5e3eaea3SApple OSS Distributions  *   @result value of provider. */
194*5e3eaea3SApple OSS Distributions 	virtual const IOService *getProvider() const;
195*5e3eaea3SApple OSS Distributions 
196*5e3eaea3SApple OSS Distributions /*! @function getIntIndex
197*5e3eaea3SApple OSS Distributions  *   @abstract Get'ter for $link intIndex interrupt index variable.
198*5e3eaea3SApple OSS Distributions  *   @result value of intIndex. */
199*5e3eaea3SApple OSS Distributions 	virtual int getIntIndex() const;
200*5e3eaea3SApple OSS Distributions 
201*5e3eaea3SApple OSS Distributions /*! @function getAutoDisable
202*5e3eaea3SApple OSS Distributions  *   @abstract Get'ter for $link autoDisable variable.
203*5e3eaea3SApple OSS Distributions  *   @result value of autoDisable. */
204*5e3eaea3SApple OSS Distributions 	virtual bool getAutoDisable() const;
205*5e3eaea3SApple OSS Distributions 
206*5e3eaea3SApple OSS Distributions /*! @function interruptOccurred
207*5e3eaea3SApple OSS Distributions  *   @abstract Functions that get called by the interrupt controller. See $link IOService::registerInterrupt
208*5e3eaea3SApple OSS Distributions  *   @param nub Where did the interrupt originate from
209*5e3eaea3SApple OSS Distributions  *   @param ind What is this interrupts index within 'nub'. */
210*5e3eaea3SApple OSS Distributions 	virtual void interruptOccurred(void *, IOService *nub, int ind);
211*5e3eaea3SApple OSS Distributions 
212*5e3eaea3SApple OSS Distributions /*! @function normalInterruptOccurred
213*5e3eaea3SApple OSS Distributions  *   @abstract Functions that get called by the interrupt controller.See $link IOService::registerInterrupt
214*5e3eaea3SApple OSS Distributions  *   @param nub Where did the interrupt originate from
215*5e3eaea3SApple OSS Distributions  *   @param ind What is this interrupts index within 'nub'. */
216*5e3eaea3SApple OSS Distributions 	virtual void normalInterruptOccurred(void *, IOService *nub, int ind);
217*5e3eaea3SApple OSS Distributions 
218*5e3eaea3SApple OSS Distributions /*! @function disableInterruptOccurred
219*5e3eaea3SApple OSS Distributions  *   @abstract Functions that get called by the interrupt controller.See $link IOService::registerInterrupt
220*5e3eaea3SApple OSS Distributions  *   @param nub Where did the interrupt originate from
221*5e3eaea3SApple OSS Distributions  *   @param ind What is this interrupts index within 'nub'. */
222*5e3eaea3SApple OSS Distributions 	virtual void disableInterruptOccurred(void *, IOService *nub, int ind);
223*5e3eaea3SApple OSS Distributions 
224*5e3eaea3SApple OSS Distributions /*! @function warmCPU
225*5e3eaea3SApple OSS Distributions  *   @abstract Tries to reduce latency for an interrupt which will be received near a specified time.
226*5e3eaea3SApple OSS Distributions  *   @discussion Warms up a CPU in advance of an interrupt so that the interrupt may be serviced with predictable latency.
227*5e3eaea3SApple OSS Distributions  *   The warm-up is not periodic; callers should call warmCPU once in advance of each interrupt.  It is recommended that
228*5e3eaea3SApple OSS Distributions  *   requests be issues in serial (i.e. each after the target for the previous call has elapsed), as there is a systemwide
229*5e3eaea3SApple OSS Distributions  *   cap on the number of outstanding requests.  This routine may be disruptive to the system if used with very small intervals
230*5e3eaea3SApple OSS Distributions  *   between requests; it should be used only in cases where interrupt latency is absolutely critical, and tens or hundreds of
231*5e3eaea3SApple OSS Distributions  *   milliseconds between targets is the expected time scale.  NOTE: it is not safe to call this method with interrupts disabled.
232*5e3eaea3SApple OSS Distributions  *   @param abstime Time at which interrupt is expected. */
233*5e3eaea3SApple OSS Distributions 	IOReturn warmCPU(uint64_t abstime);
234*5e3eaea3SApple OSS Distributions 
235*5e3eaea3SApple OSS Distributions /*! @function enablePrimaryInterruptTimestamp
236*5e3eaea3SApple OSS Distributions  *   @abstract Enables collection of mach_absolute_time at primary interrupt.
237*5e3eaea3SApple OSS Distributions  *   @discussion Enables collection of mach_absolute_time at primary interrupt.
238*5e3eaea3SApple OSS Distributions  *   @param enable True to enable timestamp. */
239*5e3eaea3SApple OSS Distributions 
240*5e3eaea3SApple OSS Distributions 	void enablePrimaryInterruptTimestamp(bool enable);
241*5e3eaea3SApple OSS Distributions 
242*5e3eaea3SApple OSS Distributions /*! @function getPrimaryInterruptTimestamp
243*5e3eaea3SApple OSS Distributions  *   @abstract Returns mach_absolute_time timestamp of primary interrupt.
244*5e3eaea3SApple OSS Distributions  *   @discussion Returns mach_absolute_time timestamp of primary interrupt.
245*5e3eaea3SApple OSS Distributions  *   @result Value of the timestamp. Zero if never interrupted, or -1ULL if timestamp collection has not been enabled. */
246*5e3eaea3SApple OSS Distributions 
247*5e3eaea3SApple OSS Distributions 	uint64_t getPrimaryInterruptTimestamp();
248*5e3eaea3SApple OSS Distributions 
249*5e3eaea3SApple OSS Distributions private:
250*5e3eaea3SApple OSS Distributions 	IOReturn registerInterruptHandler(IOService *inProvider, int inIntIndex);
251*5e3eaea3SApple OSS Distributions 	void unregisterInterruptHandler(IOService *inProvider, int inIntIndex);
252*5e3eaea3SApple OSS Distributions 
253*5e3eaea3SApple OSS Distributions private:
254*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 0);
255*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 1);
256*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 2);
257*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 3);
258*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 4);
259*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 5);
260*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 6);
261*5e3eaea3SApple OSS Distributions 	OSMetaClassDeclareReservedUnused(IOInterruptEventSource, 7);
262*5e3eaea3SApple OSS Distributions };
263*5e3eaea3SApple OSS Distributions 
264*5e3eaea3SApple OSS Distributions #endif /* !_IOKIT_IOINTERRUPTEVENTSOURCE_H */
265