OsdInterrupt.c revision 1.2 1 /* $NetBSD: OsdInterrupt.c,v 1.2 2006/08/27 22:33:49 christos Exp $ */
2
3 /*
4 * Copyright 2001 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed for the NetBSD Project by
20 * Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 * or promote products derived from this software without specific prior
23 * written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38 /*
39 * OS Services Layer
40 *
41 * 6.5: Interrupt Handling
42 */
43
44 #include <sys/cdefs.h>
45 __KERNEL_RCSID(0, "$NetBSD: OsdInterrupt.c,v 1.2 2006/08/27 22:33:49 christos Exp $");
46
47 #include <sys/param.h>
48 #include <sys/malloc.h>
49 #include <sys/lock.h>
50 #include <sys/queue.h>
51
52 #include <dev/acpi/acpica.h>
53
54 #include <machine/acpi_machdep.h>
55
56 #define _COMPONENT ACPI_OS_SERVICES
57 ACPI_MODULE_NAME("INTERRUPT")
58
59 MALLOC_DEFINE(M_ACPI, "acpi", "Advanced Configuration and Power Interface");
60
61 /*
62 * We're lucky -- ACPI uses the same convention for interrupt service
63 * routine return values at NetBSD does -- so we can just ask MD code
64 * to hook it up directly (ACPI interrupts are always level triggered
65 * and shareable, and return 0 for "not handled" and 1 for "handled").
66 */
67
68 struct acpi_interrupt_handler {
69 LIST_ENTRY(acpi_interrupt_handler) aih_list;
70 UINT32 aih_intrnum;
71 ACPI_OSD_HANDLER aih_func;
72 void *aih_ih;
73 };
74
75 static LIST_HEAD(, acpi_interrupt_handler) acpi_interrupt_list =
76 LIST_HEAD_INITIALIZER(&acpi_interrupt_list);
77 static struct simplelock acpi_interrupt_list_slock = SIMPLELOCK_INITIALIZER;
78
79 #define ACPI_INTERRUPT_LIST_LOCK(s) \
80 do { \
81 (s) = splhigh(); \
82 simple_lock(&acpi_interrupt_list_slock); \
83 } while (/*CONSTCOND*/0)
84
85 #define ACPI_INTERRUPT_LIST_UNLOCK(s) \
86 do { \
87 simple_unlock(&acpi_interrupt_list_slock); \
88 splx((s)); \
89 } while (/*CONSTCOND*/0)
90
91 /*
92 * AcpiOsInstallInterruptHandler:
93 *
94 * Install a handler for a hardware interrupt level.
95 */
96 ACPI_STATUS
97 AcpiOsInstallInterruptHandler(UINT32 InterruptNumber,
98 ACPI_OSD_HANDLER ServiceRoutine, void *Context)
99 {
100 struct acpi_interrupt_handler *aih;
101 ACPI_STATUS rv;
102 int s;
103
104 ACPI_FUNCTION_TRACE(__FUNCTION__);
105
106 if (InterruptNumber > 255)
107 return_ACPI_STATUS(AE_BAD_PARAMETER);
108 if (ServiceRoutine == NULL)
109 return_ACPI_STATUS(AE_BAD_PARAMETER);
110
111 aih = malloc(sizeof(*aih), M_ACPI, M_NOWAIT);
112 if (aih == NULL)
113 return_ACPI_STATUS(AE_NO_MEMORY);
114
115 aih->aih_intrnum = InterruptNumber;
116 aih->aih_func = ServiceRoutine;
117
118 rv = acpi_md_OsInstallInterruptHandler(InterruptNumber,
119 ServiceRoutine, Context, &aih->aih_ih);
120 if (rv == AE_OK) {
121 ACPI_INTERRUPT_LIST_LOCK(s);
122 LIST_INSERT_HEAD(&acpi_interrupt_list, aih, aih_list);
123 ACPI_INTERRUPT_LIST_UNLOCK(s);
124 } else
125 free(aih, M_ACPI);
126
127 return_ACPI_STATUS(rv);
128 }
129
130 /*
131 * AcpiOsRemoveInterruptHandler:
132 *
133 * Remove an interrupt handler.
134 */
135 ACPI_STATUS
136 AcpiOsRemoveInterruptHandler(UINT32 InterruptNumber,
137 ACPI_OSD_HANDLER ServiceRoutine)
138 {
139 struct acpi_interrupt_handler *aih;
140 int s;
141
142 ACPI_FUNCTION_TRACE(__FUNCTION__);
143
144 if (InterruptNumber > 255)
145 return_ACPI_STATUS(AE_BAD_PARAMETER);
146 if (ServiceRoutine == NULL)
147 return_ACPI_STATUS(AE_BAD_PARAMETER);
148
149 ACPI_INTERRUPT_LIST_LOCK(s);
150 LIST_FOREACH(aih, &acpi_interrupt_list, aih_list) {
151 if (aih->aih_intrnum == InterruptNumber &&
152 aih->aih_func == ServiceRoutine) {
153 LIST_REMOVE(aih, aih_list);
154 ACPI_INTERRUPT_LIST_UNLOCK(s);
155 acpi_md_OsRemoveInterruptHandler(aih->aih_ih);
156 free(aih, M_ACPI);
157 return_ACPI_STATUS(AE_OK);
158 }
159 }
160 ACPI_INTERRUPT_LIST_UNLOCK(s);
161 return_ACPI_STATUS(AE_NOT_EXIST);
162 }
163