xref: /minix3/minix/drivers/power/acpi/include/acevents.h (revision 29492bb71c7148a089a5afafa0c99409161218df)
1433d6423SLionel Sambuc /******************************************************************************
2433d6423SLionel Sambuc  *
3433d6423SLionel Sambuc  * Name: acevents.h - Event subcomponent prototypes and defines
4433d6423SLionel Sambuc  *
5433d6423SLionel Sambuc  *****************************************************************************/
6433d6423SLionel Sambuc 
7*29492bb7SDavid van Moolenbroek /*
8*29492bb7SDavid van Moolenbroek  * Copyright (C) 2000 - 2014, Intel Corp.
9433d6423SLionel Sambuc  * All rights reserved.
10433d6423SLionel Sambuc  *
11*29492bb7SDavid van Moolenbroek  * Redistribution and use in source and binary forms, with or without
12*29492bb7SDavid van Moolenbroek  * modification, are permitted provided that the following conditions
13*29492bb7SDavid van Moolenbroek  * are met:
14*29492bb7SDavid van Moolenbroek  * 1. Redistributions of source code must retain the above copyright
15*29492bb7SDavid van Moolenbroek  *    notice, this list of conditions, and the following disclaimer,
16*29492bb7SDavid van Moolenbroek  *    without modification.
17*29492bb7SDavid van Moolenbroek  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18*29492bb7SDavid van Moolenbroek  *    substantially similar to the "NO WARRANTY" disclaimer below
19*29492bb7SDavid van Moolenbroek  *    ("Disclaimer") and any redistribution must be conditioned upon
20*29492bb7SDavid van Moolenbroek  *    including a substantially similar Disclaimer requirement for further
21*29492bb7SDavid van Moolenbroek  *    binary redistribution.
22*29492bb7SDavid van Moolenbroek  * 3. Neither the names of the above-listed copyright holders nor the names
23*29492bb7SDavid van Moolenbroek  *    of any contributors may be used to endorse or promote products derived
24*29492bb7SDavid van Moolenbroek  *    from this software without specific prior written permission.
25433d6423SLionel Sambuc  *
26*29492bb7SDavid van Moolenbroek  * Alternatively, this software may be distributed under the terms of the
27*29492bb7SDavid van Moolenbroek  * GNU General Public License ("GPL") version 2 as published by the Free
28*29492bb7SDavid van Moolenbroek  * Software Foundation.
29433d6423SLionel Sambuc  *
30*29492bb7SDavid van Moolenbroek  * NO WARRANTY
31*29492bb7SDavid van Moolenbroek  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32*29492bb7SDavid van Moolenbroek  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33*29492bb7SDavid van Moolenbroek  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34*29492bb7SDavid van Moolenbroek  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35*29492bb7SDavid van Moolenbroek  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36*29492bb7SDavid van Moolenbroek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37*29492bb7SDavid van Moolenbroek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38*29492bb7SDavid van Moolenbroek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39*29492bb7SDavid van Moolenbroek  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40*29492bb7SDavid van Moolenbroek  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41*29492bb7SDavid van Moolenbroek  * POSSIBILITY OF SUCH DAMAGES.
42*29492bb7SDavid van Moolenbroek  */
43433d6423SLionel Sambuc 
44433d6423SLionel Sambuc #ifndef __ACEVENTS_H__
45433d6423SLionel Sambuc #define __ACEVENTS_H__
46433d6423SLionel Sambuc 
47433d6423SLionel Sambuc 
48433d6423SLionel Sambuc /*
49433d6423SLionel Sambuc  * evevent
50433d6423SLionel Sambuc  */
51433d6423SLionel Sambuc ACPI_STATUS
52433d6423SLionel Sambuc AcpiEvInitializeEvents (
53433d6423SLionel Sambuc     void);
54433d6423SLionel Sambuc 
55433d6423SLionel Sambuc ACPI_STATUS
56433d6423SLionel Sambuc AcpiEvInstallXruptHandlers (
57433d6423SLionel Sambuc     void);
58433d6423SLionel Sambuc 
59433d6423SLionel Sambuc UINT32
60433d6423SLionel Sambuc AcpiEvFixedEventDetect (
61433d6423SLionel Sambuc     void);
62433d6423SLionel Sambuc 
63433d6423SLionel Sambuc 
64433d6423SLionel Sambuc /*
65433d6423SLionel Sambuc  * evmisc
66433d6423SLionel Sambuc  */
67433d6423SLionel Sambuc BOOLEAN
68433d6423SLionel Sambuc AcpiEvIsNotifyObject (
69433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node);
70433d6423SLionel Sambuc 
71433d6423SLionel Sambuc UINT32
72433d6423SLionel Sambuc AcpiEvGetGpeNumberIndex (
73433d6423SLionel Sambuc     UINT32                  GpeNumber);
74433d6423SLionel Sambuc 
75433d6423SLionel Sambuc ACPI_STATUS
76433d6423SLionel Sambuc AcpiEvQueueNotifyRequest (
77433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node,
78433d6423SLionel Sambuc     UINT32                  NotifyValue);
79433d6423SLionel Sambuc 
80433d6423SLionel Sambuc 
81433d6423SLionel Sambuc /*
82*29492bb7SDavid van Moolenbroek  * evglock - Global Lock support
83*29492bb7SDavid van Moolenbroek  */
84*29492bb7SDavid van Moolenbroek ACPI_STATUS
85*29492bb7SDavid van Moolenbroek AcpiEvInitGlobalLockHandler (
86*29492bb7SDavid van Moolenbroek     void);
87*29492bb7SDavid van Moolenbroek 
88*29492bb7SDavid van Moolenbroek ACPI_HW_DEPENDENT_RETURN_OK (
89*29492bb7SDavid van Moolenbroek ACPI_STATUS
90*29492bb7SDavid van Moolenbroek AcpiEvAcquireGlobalLock(
91*29492bb7SDavid van Moolenbroek     UINT16                  Timeout))
92*29492bb7SDavid van Moolenbroek 
93*29492bb7SDavid van Moolenbroek ACPI_HW_DEPENDENT_RETURN_OK (
94*29492bb7SDavid van Moolenbroek ACPI_STATUS
95*29492bb7SDavid van Moolenbroek AcpiEvReleaseGlobalLock(
96*29492bb7SDavid van Moolenbroek     void))
97*29492bb7SDavid van Moolenbroek 
98*29492bb7SDavid van Moolenbroek ACPI_STATUS
99*29492bb7SDavid van Moolenbroek AcpiEvRemoveGlobalLockHandler (
100*29492bb7SDavid van Moolenbroek     void);
101*29492bb7SDavid van Moolenbroek 
102*29492bb7SDavid van Moolenbroek 
103*29492bb7SDavid van Moolenbroek /*
104433d6423SLionel Sambuc  * evgpe - Low-level GPE support
105433d6423SLionel Sambuc  */
106433d6423SLionel Sambuc UINT32
107433d6423SLionel Sambuc AcpiEvGpeDetect (
108433d6423SLionel Sambuc     ACPI_GPE_XRUPT_INFO     *GpeXruptList);
109433d6423SLionel Sambuc 
110433d6423SLionel Sambuc ACPI_STATUS
111433d6423SLionel Sambuc AcpiEvUpdateGpeEnableMask (
112433d6423SLionel Sambuc     ACPI_GPE_EVENT_INFO     *GpeEventInfo);
113433d6423SLionel Sambuc 
114433d6423SLionel Sambuc ACPI_STATUS
115433d6423SLionel Sambuc AcpiEvEnableGpe (
116433d6423SLionel Sambuc     ACPI_GPE_EVENT_INFO     *GpeEventInfo);
117433d6423SLionel Sambuc 
118*29492bb7SDavid van Moolenbroek ACPI_STATUS
119*29492bb7SDavid van Moolenbroek AcpiEvAddGpeReference (
120*29492bb7SDavid van Moolenbroek     ACPI_GPE_EVENT_INFO     *GpeEventInfo);
121*29492bb7SDavid van Moolenbroek 
122*29492bb7SDavid van Moolenbroek ACPI_STATUS
123*29492bb7SDavid van Moolenbroek AcpiEvRemoveGpeReference (
124*29492bb7SDavid van Moolenbroek     ACPI_GPE_EVENT_INFO     *GpeEventInfo);
125*29492bb7SDavid van Moolenbroek 
126433d6423SLionel Sambuc ACPI_GPE_EVENT_INFO *
127433d6423SLionel Sambuc AcpiEvGetGpeEventInfo (
128433d6423SLionel Sambuc     ACPI_HANDLE             GpeDevice,
129433d6423SLionel Sambuc     UINT32                  GpeNumber);
130433d6423SLionel Sambuc 
131433d6423SLionel Sambuc ACPI_GPE_EVENT_INFO *
132433d6423SLionel Sambuc AcpiEvLowGetGpeInfo (
133433d6423SLionel Sambuc     UINT32                  GpeNumber,
134433d6423SLionel Sambuc     ACPI_GPE_BLOCK_INFO     *GpeBlock);
135433d6423SLionel Sambuc 
136*29492bb7SDavid van Moolenbroek ACPI_STATUS
137*29492bb7SDavid van Moolenbroek AcpiEvFinishGpe (
138*29492bb7SDavid van Moolenbroek     ACPI_GPE_EVENT_INFO     *GpeEventInfo);
139*29492bb7SDavid van Moolenbroek 
140433d6423SLionel Sambuc 
141433d6423SLionel Sambuc /*
142433d6423SLionel Sambuc  * evgpeblk - Upper-level GPE block support
143433d6423SLionel Sambuc  */
144433d6423SLionel Sambuc ACPI_STATUS
145433d6423SLionel Sambuc AcpiEvCreateGpeBlock (
146433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *GpeDevice,
147*29492bb7SDavid van Moolenbroek     UINT64                  Address,
148*29492bb7SDavid van Moolenbroek     UINT8                   SpaceId,
149433d6423SLionel Sambuc     UINT32                  RegisterCount,
150*29492bb7SDavid van Moolenbroek     UINT16                  GpeBlockBaseNumber,
151433d6423SLionel Sambuc     UINT32                  InterruptNumber,
152433d6423SLionel Sambuc     ACPI_GPE_BLOCK_INFO     **ReturnGpeBlock);
153433d6423SLionel Sambuc 
154433d6423SLionel Sambuc ACPI_STATUS
155433d6423SLionel Sambuc AcpiEvInitializeGpeBlock (
156*29492bb7SDavid van Moolenbroek     ACPI_GPE_XRUPT_INFO     *GpeXruptInfo,
157*29492bb7SDavid van Moolenbroek     ACPI_GPE_BLOCK_INFO     *GpeBlock,
158*29492bb7SDavid van Moolenbroek     void                    *Context);
159433d6423SLionel Sambuc 
160*29492bb7SDavid van Moolenbroek ACPI_HW_DEPENDENT_RETURN_OK (
161433d6423SLionel Sambuc ACPI_STATUS
162433d6423SLionel Sambuc AcpiEvDeleteGpeBlock (
163*29492bb7SDavid van Moolenbroek     ACPI_GPE_BLOCK_INFO     *GpeBlock))
164433d6423SLionel Sambuc 
165433d6423SLionel Sambuc UINT32
166433d6423SLionel Sambuc AcpiEvGpeDispatch (
167*29492bb7SDavid van Moolenbroek     ACPI_NAMESPACE_NODE     *GpeDevice,
168433d6423SLionel Sambuc     ACPI_GPE_EVENT_INFO     *GpeEventInfo,
169433d6423SLionel Sambuc     UINT32                  GpeNumber);
170433d6423SLionel Sambuc 
171*29492bb7SDavid van Moolenbroek 
172433d6423SLionel Sambuc /*
173433d6423SLionel Sambuc  * evgpeinit - GPE initialization and update
174433d6423SLionel Sambuc  */
175433d6423SLionel Sambuc ACPI_STATUS
176433d6423SLionel Sambuc AcpiEvGpeInitialize (
177433d6423SLionel Sambuc     void);
178433d6423SLionel Sambuc 
179*29492bb7SDavid van Moolenbroek ACPI_HW_DEPENDENT_RETURN_VOID (
180433d6423SLionel Sambuc void
181433d6423SLionel Sambuc AcpiEvUpdateGpes (
182*29492bb7SDavid van Moolenbroek     ACPI_OWNER_ID           TableOwnerId))
183433d6423SLionel Sambuc 
184433d6423SLionel Sambuc ACPI_STATUS
185433d6423SLionel Sambuc AcpiEvMatchGpeMethod (
186433d6423SLionel Sambuc     ACPI_HANDLE             ObjHandle,
187433d6423SLionel Sambuc     UINT32                  Level,
188433d6423SLionel Sambuc     void                    *Context,
189433d6423SLionel Sambuc     void                    **ReturnValue);
190433d6423SLionel Sambuc 
191433d6423SLionel Sambuc 
192433d6423SLionel Sambuc /*
193433d6423SLionel Sambuc  * evgpeutil - GPE utilities
194433d6423SLionel Sambuc  */
195433d6423SLionel Sambuc ACPI_STATUS
196433d6423SLionel Sambuc AcpiEvWalkGpeList (
197433d6423SLionel Sambuc     ACPI_GPE_CALLBACK       GpeWalkCallback,
198433d6423SLionel Sambuc     void                    *Context);
199433d6423SLionel Sambuc 
200433d6423SLionel Sambuc BOOLEAN
201433d6423SLionel Sambuc AcpiEvValidGpeEvent (
202433d6423SLionel Sambuc     ACPI_GPE_EVENT_INFO     *GpeEventInfo);
203433d6423SLionel Sambuc 
204*29492bb7SDavid van Moolenbroek ACPI_STATUS
205*29492bb7SDavid van Moolenbroek AcpiEvGetGpeDevice (
206*29492bb7SDavid van Moolenbroek     ACPI_GPE_XRUPT_INFO     *GpeXruptInfo,
207*29492bb7SDavid van Moolenbroek     ACPI_GPE_BLOCK_INFO     *GpeBlock,
208*29492bb7SDavid van Moolenbroek     void                    *Context);
209*29492bb7SDavid van Moolenbroek 
210*29492bb7SDavid van Moolenbroek ACPI_STATUS
211433d6423SLionel Sambuc AcpiEvGetGpeXruptBlock (
212*29492bb7SDavid van Moolenbroek     UINT32                  InterruptNumber,
213*29492bb7SDavid van Moolenbroek     ACPI_GPE_XRUPT_INFO     **GpeXruptBlock);
214433d6423SLionel Sambuc 
215433d6423SLionel Sambuc ACPI_STATUS
216433d6423SLionel Sambuc AcpiEvDeleteGpeXrupt (
217433d6423SLionel Sambuc     ACPI_GPE_XRUPT_INFO     *GpeXrupt);
218433d6423SLionel Sambuc 
219433d6423SLionel Sambuc ACPI_STATUS
220433d6423SLionel Sambuc AcpiEvDeleteGpeHandlers (
221433d6423SLionel Sambuc     ACPI_GPE_XRUPT_INFO     *GpeXruptInfo,
222433d6423SLionel Sambuc     ACPI_GPE_BLOCK_INFO     *GpeBlock,
223433d6423SLionel Sambuc     void                    *Context);
224433d6423SLionel Sambuc 
225433d6423SLionel Sambuc 
226433d6423SLionel Sambuc /*
227*29492bb7SDavid van Moolenbroek  * evhandler - Address space handling
228433d6423SLionel Sambuc  */
229*29492bb7SDavid van Moolenbroek BOOLEAN
230*29492bb7SDavid van Moolenbroek AcpiEvHasDefaultHandler (
231*29492bb7SDavid van Moolenbroek     ACPI_NAMESPACE_NODE     *Node,
232*29492bb7SDavid van Moolenbroek     ACPI_ADR_SPACE_TYPE     SpaceId);
233*29492bb7SDavid van Moolenbroek 
234433d6423SLionel Sambuc ACPI_STATUS
235433d6423SLionel Sambuc AcpiEvInstallRegionHandlers (
236433d6423SLionel Sambuc     void);
237433d6423SLionel Sambuc 
238433d6423SLionel Sambuc ACPI_STATUS
239*29492bb7SDavid van Moolenbroek AcpiEvInstallSpaceHandler (
240*29492bb7SDavid van Moolenbroek     ACPI_NAMESPACE_NODE     *Node,
241*29492bb7SDavid van Moolenbroek     ACPI_ADR_SPACE_TYPE     SpaceId,
242*29492bb7SDavid van Moolenbroek     ACPI_ADR_SPACE_HANDLER  Handler,
243*29492bb7SDavid van Moolenbroek     ACPI_ADR_SPACE_SETUP    Setup,
244*29492bb7SDavid van Moolenbroek     void                    *Context);
245*29492bb7SDavid van Moolenbroek 
246*29492bb7SDavid van Moolenbroek 
247*29492bb7SDavid van Moolenbroek /*
248*29492bb7SDavid van Moolenbroek  * evregion - Operation region support
249*29492bb7SDavid van Moolenbroek  */
250*29492bb7SDavid van Moolenbroek ACPI_STATUS
251433d6423SLionel Sambuc AcpiEvInitializeOpRegions (
252433d6423SLionel Sambuc     void);
253433d6423SLionel Sambuc 
254433d6423SLionel Sambuc ACPI_STATUS
255433d6423SLionel Sambuc AcpiEvAddressSpaceDispatch (
256433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT     *RegionObj,
257*29492bb7SDavid van Moolenbroek     ACPI_OPERAND_OBJECT     *FieldObj,
258433d6423SLionel Sambuc     UINT32                  Function,
259433d6423SLionel Sambuc     UINT32                  RegionOffset,
260433d6423SLionel Sambuc     UINT32                  BitWidth,
261433d6423SLionel Sambuc     UINT64                  *Value);
262433d6423SLionel Sambuc 
263433d6423SLionel Sambuc ACPI_STATUS
264433d6423SLionel Sambuc AcpiEvAttachRegion (
265433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT     *HandlerObj,
266433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT     *RegionObj,
267433d6423SLionel Sambuc     BOOLEAN                 AcpiNsIsLocked);
268433d6423SLionel Sambuc 
269433d6423SLionel Sambuc void
270433d6423SLionel Sambuc AcpiEvDetachRegion (
271433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT    *RegionObj,
272433d6423SLionel Sambuc     BOOLEAN                 AcpiNsIsLocked);
273433d6423SLionel Sambuc 
274433d6423SLionel Sambuc ACPI_STATUS
275433d6423SLionel Sambuc AcpiEvExecuteRegMethods (
276433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node,
277433d6423SLionel Sambuc     ACPI_ADR_SPACE_TYPE     SpaceId);
278433d6423SLionel Sambuc 
279433d6423SLionel Sambuc ACPI_STATUS
280433d6423SLionel Sambuc AcpiEvExecuteRegMethod (
281433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT    *RegionObj,
282433d6423SLionel Sambuc     UINT32                  Function);
283433d6423SLionel Sambuc 
284433d6423SLionel Sambuc 
285433d6423SLionel Sambuc /*
286433d6423SLionel Sambuc  * evregini - Region initialization and setup
287433d6423SLionel Sambuc  */
288433d6423SLionel Sambuc ACPI_STATUS
289433d6423SLionel Sambuc AcpiEvSystemMemoryRegionSetup (
290433d6423SLionel Sambuc     ACPI_HANDLE             Handle,
291433d6423SLionel Sambuc     UINT32                  Function,
292433d6423SLionel Sambuc     void                    *HandlerContext,
293433d6423SLionel Sambuc     void                    **RegionContext);
294433d6423SLionel Sambuc 
295433d6423SLionel Sambuc ACPI_STATUS
296433d6423SLionel Sambuc AcpiEvIoSpaceRegionSetup (
297433d6423SLionel Sambuc     ACPI_HANDLE             Handle,
298433d6423SLionel Sambuc     UINT32                  Function,
299433d6423SLionel Sambuc     void                    *HandlerContext,
300433d6423SLionel Sambuc     void                    **RegionContext);
301433d6423SLionel Sambuc 
302433d6423SLionel Sambuc ACPI_STATUS
303433d6423SLionel Sambuc AcpiEvPciConfigRegionSetup (
304433d6423SLionel Sambuc     ACPI_HANDLE             Handle,
305433d6423SLionel Sambuc     UINT32                  Function,
306433d6423SLionel Sambuc     void                    *HandlerContext,
307433d6423SLionel Sambuc     void                    **RegionContext);
308433d6423SLionel Sambuc 
309433d6423SLionel Sambuc ACPI_STATUS
310433d6423SLionel Sambuc AcpiEvCmosRegionSetup (
311433d6423SLionel Sambuc     ACPI_HANDLE             Handle,
312433d6423SLionel Sambuc     UINT32                  Function,
313433d6423SLionel Sambuc     void                    *HandlerContext,
314433d6423SLionel Sambuc     void                    **RegionContext);
315433d6423SLionel Sambuc 
316433d6423SLionel Sambuc ACPI_STATUS
317433d6423SLionel Sambuc AcpiEvPciBarRegionSetup (
318433d6423SLionel Sambuc     ACPI_HANDLE             Handle,
319433d6423SLionel Sambuc     UINT32                  Function,
320433d6423SLionel Sambuc     void                    *HandlerContext,
321433d6423SLionel Sambuc     void                    **RegionContext);
322433d6423SLionel Sambuc 
323433d6423SLionel Sambuc ACPI_STATUS
324433d6423SLionel Sambuc AcpiEvDefaultRegionSetup (
325433d6423SLionel Sambuc     ACPI_HANDLE             Handle,
326433d6423SLionel Sambuc     UINT32                  Function,
327433d6423SLionel Sambuc     void                    *HandlerContext,
328433d6423SLionel Sambuc     void                    **RegionContext);
329433d6423SLionel Sambuc 
330433d6423SLionel Sambuc ACPI_STATUS
331433d6423SLionel Sambuc AcpiEvInitializeRegion (
332433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT     *RegionObj,
333433d6423SLionel Sambuc     BOOLEAN                 AcpiNsLocked);
334433d6423SLionel Sambuc 
335433d6423SLionel Sambuc 
336433d6423SLionel Sambuc /*
337433d6423SLionel Sambuc  * evsci - SCI (System Control Interrupt) handling/dispatch
338433d6423SLionel Sambuc  */
339433d6423SLionel Sambuc UINT32 ACPI_SYSTEM_XFACE
340433d6423SLionel Sambuc AcpiEvGpeXruptHandler (
341433d6423SLionel Sambuc     void                    *Context);
342433d6423SLionel Sambuc 
343433d6423SLionel Sambuc UINT32
344*29492bb7SDavid van Moolenbroek AcpiEvSciDispatch (
345*29492bb7SDavid van Moolenbroek     void);
346*29492bb7SDavid van Moolenbroek 
347*29492bb7SDavid van Moolenbroek UINT32
348433d6423SLionel Sambuc AcpiEvInstallSciHandler (
349433d6423SLionel Sambuc     void);
350433d6423SLionel Sambuc 
351433d6423SLionel Sambuc ACPI_STATUS
352*29492bb7SDavid van Moolenbroek AcpiEvRemoveAllSciHandlers (
353433d6423SLionel Sambuc     void);
354433d6423SLionel Sambuc 
355*29492bb7SDavid van Moolenbroek ACPI_HW_DEPENDENT_RETURN_VOID (
356433d6423SLionel Sambuc void
357433d6423SLionel Sambuc AcpiEvTerminate (
358*29492bb7SDavid van Moolenbroek     void))
359433d6423SLionel Sambuc 
360433d6423SLionel Sambuc #endif  /* __ACEVENTS_H__  */
361