dalb_acpi.c revision 1.2 1 1.2 jmcneill /* $NetBSD: dalb_acpi.c,v 1.2 2008/06/01 23:35:18 jmcneill Exp $ */
2 1.1 cegger
3 1.1 cegger /*-
4 1.1 cegger * Copyright (c) 2008 Christoph Egger <cegger (at) netbsd.org>
5 1.1 cegger * Copyright (c) 2008 Jared D. McNeill <jmcneill (at) netbsd.org>
6 1.1 cegger * All rights reserved.
7 1.1 cegger *
8 1.1 cegger * Redistribution and use in source and binary forms, with or without
9 1.1 cegger * modification, are permitted provided that the following conditions
10 1.1 cegger * are met:
11 1.1 cegger * 1. Redistributions of source code must retain the above copyright
12 1.1 cegger * notice, this list of conditions and the following disclaimer.
13 1.1 cegger * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 cegger * notice, this list of conditions and the following disclaimer in the
15 1.1 cegger * documentation and/or other materials provided with the distribution.
16 1.1 cegger *
17 1.1 cegger * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 1.1 cegger * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 1.1 cegger * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 1.1 cegger * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 1.1 cegger * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 1.1 cegger * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 1.1 cegger * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 1.1 cegger * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 1.1 cegger * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 1.1 cegger * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 1.1 cegger * POSSIBILITY OF SUCH DAMAGE.
28 1.1 cegger */
29 1.1 cegger #include <sys/cdefs.h>
30 1.2 jmcneill __KERNEL_RCSID(0, "$NetBSD: dalb_acpi.c,v 1.2 2008/06/01 23:35:18 jmcneill Exp $");
31 1.1 cegger
32 1.1 cegger /*
33 1.1 cegger * Direct Application Launch Button:
34 1.1 cegger * http://www.microsoft.com/whdc/system/vista/DirAppLaunch.mspx
35 1.1 cegger */
36 1.1 cegger
37 1.1 cegger #include <sys/param.h>
38 1.1 cegger #include <sys/systm.h>
39 1.1 cegger #include <sys/device.h>
40 1.1 cegger #include <sys/proc.h>
41 1.1 cegger #include <sys/kernel.h>
42 1.1 cegger #include <sys/callout.h>
43 1.1 cegger #include <sys/sysctl.h>
44 1.1 cegger
45 1.1 cegger #include <machine/bus.h>
46 1.1 cegger
47 1.1 cegger #include <dev/acpi/acpica.h>
48 1.1 cegger #include <dev/acpi/acpivar.h>
49 1.1 cegger
50 1.1 cegger #define DALB_ID_INVALID -1
51 1.1 cegger
52 1.1 cegger struct acpi_dalb_softc {
53 1.1 cegger device_t sc_dev;
54 1.1 cegger struct acpi_devnode *sc_node;
55 1.1 cegger struct sysctllog *sc_log;
56 1.1 cegger
57 1.1 cegger ACPI_INTEGER sc_usageid;
58 1.1 cegger
59 1.1 cegger /* There's one PNP0C32 ACPI device for each button.
60 1.1 cegger * Therefore, one instance is enough. */
61 1.1 cegger struct sysmon_pswitch sc_smpsw;
62 1.1 cegger bool sc_smpsw_valid;
63 1.1 cegger };
64 1.1 cegger
65 1.1 cegger static int acpi_dalb_match(device_t, cfdata_t, void *);
66 1.1 cegger static void acpi_dalb_attach(device_t, device_t, void *);
67 1.1 cegger static void acpi_dalb_notify_handler(ACPI_HANDLE, UINT32, void *);
68 1.1 cegger static bool acpi_dalb_resume(device_t PMF_FN_PROTO);
69 1.1 cegger
70 1.1 cegger static void acpi_dalb_get_wakeup_hotkeys(void *opaque);
71 1.1 cegger static void acpi_dalb_get_runtime_hotkeys(void *opaque);
72 1.1 cegger
73 1.1 cegger CFATTACH_DECL_NEW(acpidalb, sizeof(struct acpi_dalb_softc),
74 1.1 cegger acpi_dalb_match, acpi_dalb_attach, NULL, NULL);
75 1.1 cegger
76 1.1 cegger static const char * const acpi_dalb_ids[] = {
77 1.1 cegger "PNP0C32", /* Direct Application Launch Button */
78 1.1 cegger NULL
79 1.1 cegger };
80 1.1 cegger
81 1.1 cegger #ifdef DEBUG
82 1.1 cegger #define DPRINTF(x) printf x
83 1.1 cegger #else
84 1.1 cegger #define DPRINTF(x)
85 1.1 cegger #endif
86 1.1 cegger
87 1.1 cegger #define DALB_SYSTEM_WAKEUP 0x02
88 1.1 cegger #define DALB_SYSTEM_RUNTIME 0x80
89 1.1 cegger
90 1.1 cegger static int
91 1.1 cegger acpi_dalb_match(device_t parent, cfdata_t match, void *aux)
92 1.1 cegger {
93 1.1 cegger struct acpi_attach_args *aa = aux;
94 1.1 cegger
95 1.1 cegger if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
96 1.1 cegger return 0;
97 1.1 cegger
98 1.1 cegger return acpi_match_hid(aa->aa_node->ad_devinfo, acpi_dalb_ids);
99 1.1 cegger }
100 1.1 cegger
101 1.1 cegger static void
102 1.1 cegger acpi_dalb_sysmon_init(struct acpi_dalb_softc *sc)
103 1.1 cegger {
104 1.1 cegger sc->sc_smpsw_valid = true;
105 1.1 cegger sc->sc_smpsw.smpsw_name = device_xname(sc->sc_dev);
106 1.1 cegger sc->sc_smpsw.smpsw_type = PSWITCH_TYPE_HOTKEY;
107 1.1 cegger if (sysmon_pswitch_register(&sc->sc_smpsw)) {
108 1.1 cegger aprint_error_dev(sc->sc_dev,
109 1.1 cegger "couldn't register sleep with sysmon\n");
110 1.1 cegger sc->sc_smpsw_valid = false;
111 1.1 cegger }
112 1.1 cegger }
113 1.1 cegger
114 1.1 cegger
115 1.1 cegger static void
116 1.1 cegger acpi_dalb_init(device_t dev)
117 1.1 cegger {
118 1.1 cegger struct acpi_dalb_softc *sc = device_private(dev);
119 1.1 cegger ACPI_OBJECT *obj;
120 1.1 cegger ACPI_STATUS rv;
121 1.1 cegger ACPI_BUFFER ret;
122 1.1 cegger
123 1.1 cegger ret.Pointer = NULL;
124 1.1 cegger ret.Length = ACPI_ALLOCATE_BUFFER;
125 1.1 cegger
126 1.1 cegger rv = AcpiEvaluateObject(sc->sc_node->ad_handle, "GHID", NULL, &ret);
127 1.1 cegger if (ACPI_FAILURE(rv) || ret.Pointer == NULL) {
128 1.1 cegger aprint_error_dev(dev,
129 1.1 cegger "couldn't enable notify handler: (%s)\n",
130 1.1 cegger AcpiFormatException(rv));
131 1.1 cegger return;
132 1.1 cegger }
133 1.1 cegger
134 1.1 cegger obj = (ACPI_OBJECT *)ret.Pointer;
135 1.1 cegger if (obj->Type != ACPI_TYPE_BUFFER) {
136 1.1 cegger sc->sc_usageid = DALB_ID_INVALID;
137 1.1 cegger aprint_debug_dev(dev, "invalid ACPI type: %d\n", obj->Type);
138 1.1 cegger goto out;
139 1.1 cegger }
140 1.1 cegger
141 1.1 cegger switch (obj->Buffer.Length) {
142 1.1 cegger case 1:
143 1.1 cegger sc->sc_usageid = *(uint8_t *)obj->Buffer.Pointer;
144 1.1 cegger break;
145 1.1 cegger case 2:
146 1.1 cegger sc->sc_usageid = le16toh(*(uint16_t *)obj->Buffer.Pointer);
147 1.1 cegger break;
148 1.1 cegger case 4:
149 1.1 cegger sc->sc_usageid = le32toh(*(uint32_t *)obj->Buffer.Pointer);
150 1.1 cegger break;
151 1.1 cegger default:
152 1.1 cegger aprint_debug_dev(dev, "unhandled ret.Length: 0x%lx\n",
153 1.1 cegger (unsigned long)obj->Buffer.Length);
154 1.1 cegger sc->sc_usageid = DALB_ID_INVALID;
155 1.1 cegger break;
156 1.1 cegger }
157 1.1 cegger
158 1.1 cegger out:
159 1.1 cegger AcpiOsFree(ret.Pointer);
160 1.1 cegger }
161 1.1 cegger
162 1.1 cegger static void
163 1.1 cegger acpi_dalb_attach(device_t parent, device_t self, void *aux)
164 1.1 cegger {
165 1.1 cegger struct acpi_dalb_softc *sc = device_private(self);
166 1.1 cegger struct acpi_attach_args *aa = aux;
167 1.1 cegger ACPI_STATUS rv;
168 1.1 cegger
169 1.1 cegger aprint_naive("\n");
170 1.1 cegger aprint_normal(": Direct Application Launch Button\n");
171 1.1 cegger
172 1.1 cegger sc->sc_node = aa->aa_node;
173 1.1 cegger sc->sc_dev = self;
174 1.1 cegger
175 1.1 cegger config_interrupts(self, acpi_dalb_init);
176 1.1 cegger
177 1.1 cegger /* Install notify handler */
178 1.1 cegger rv = AcpiInstallNotifyHandler(sc->sc_node->ad_handle,
179 1.1 cegger ACPI_ALL_NOTIFY, acpi_dalb_notify_handler, self);
180 1.1 cegger if (ACPI_FAILURE(rv))
181 1.1 cegger aprint_error_dev(self,
182 1.1 cegger "couldn't install notify handler: (%s)\n",
183 1.1 cegger AcpiFormatException(rv));
184 1.1 cegger
185 1.1 cegger sc->sc_smpsw_valid = false;
186 1.1 cegger acpi_dalb_sysmon_init(sc);
187 1.1 cegger
188 1.1 cegger if (!pmf_device_register(self, NULL, acpi_dalb_resume))
189 1.1 cegger aprint_error_dev(self, "couldn't establish power handler\n");
190 1.1 cegger }
191 1.1 cegger
192 1.1 cegger static void
193 1.1 cegger acpi_dalb_notify_handler(ACPI_HANDLE hdl, UINT32 notify, void *opaque)
194 1.1 cegger {
195 1.1 cegger device_t dev = opaque;
196 1.1 cegger struct acpi_dalb_softc *sc = device_private(dev);
197 1.1 cegger ACPI_STATUS rv;
198 1.1 cegger
199 1.1 cegger switch (notify) {
200 1.1 cegger case DALB_SYSTEM_WAKEUP:
201 1.1 cegger rv = AcpiOsExecute(OSL_NOTIFY_HANDLER,
202 1.1 cegger acpi_dalb_get_wakeup_hotkeys, dev);
203 1.1 cegger break;
204 1.1 cegger case DALB_SYSTEM_RUNTIME:
205 1.1 cegger rv = AcpiOsExecute(OSL_NOTIFY_HANDLER,
206 1.1 cegger acpi_dalb_get_runtime_hotkeys, dev);
207 1.1 cegger break;
208 1.1 cegger
209 1.1 cegger default:
210 1.1 cegger aprint_error_dev(dev,
211 1.1 cegger "unknown notification event 0x%x from button 0x%x\n",
212 1.1 cegger notify, (uint32_t)sc->sc_usageid);
213 1.1 cegger return;
214 1.1 cegger }
215 1.1 cegger
216 1.1 cegger if (ACPI_FAILURE(rv))
217 1.1 cegger aprint_error_dev(dev, "couldn't queue hotkey handler: %s\n",
218 1.1 cegger AcpiFormatException(rv));
219 1.1 cegger }
220 1.1 cegger
221 1.1 cegger static void
222 1.1 cegger acpi_dalb_get_wakeup_hotkeys(void *opaque)
223 1.1 cegger {
224 1.1 cegger device_t dev = opaque;
225 1.1 cegger struct acpi_dalb_softc *sc = device_private(dev);
226 1.1 cegger
227 1.1 cegger if (!sc->sc_smpsw_valid)
228 1.1 cegger return;
229 1.1 cegger DPRINTF(("%s: %s: invoking sysmon_pswitch_event\n",
230 1.1 cegger sc->sc_smpsw.smpsw_name, __func__));
231 1.1 cegger sysmon_pswitch_event(&sc->sc_smpsw, PSWITCH_EVENT_PRESSED);
232 1.1 cegger }
233 1.1 cegger
234 1.1 cegger static void
235 1.1 cegger acpi_dalb_get_runtime_hotkeys(void *opaque)
236 1.1 cegger {
237 1.1 cegger device_t dev = opaque;
238 1.1 cegger struct acpi_dalb_softc *sc = device_private(dev);
239 1.1 cegger
240 1.1 cegger if (!sc->sc_smpsw_valid)
241 1.1 cegger return;
242 1.1 cegger DPRINTF(("%s: %s: invoking sysmon_pswitch_event\n",
243 1.1 cegger sc->sc_smpsw.smpsw_name, __func__));
244 1.1 cegger sysmon_pswitch_event(&sc->sc_smpsw, PSWITCH_EVENT_PRESSED);
245 1.1 cegger }
246 1.1 cegger
247 1.1 cegger static bool
248 1.1 cegger acpi_dalb_resume(device_t dev PMF_FN_ARGS)
249 1.1 cegger {
250 1.2 jmcneill struct acpi_dalb_softc *sc = device_private(dev);
251 1.2 jmcneill ACPI_STATUS rv;
252 1.2 jmcneill ACPI_BUFFER ret;
253 1.2 jmcneill
254 1.2 jmcneill ret.Pointer = NULL;
255 1.2 jmcneill ret.Length = ACPI_ALLOCATE_BUFFER;
256 1.2 jmcneill
257 1.2 jmcneill rv = AcpiEvaluateObject(sc->sc_node->ad_handle, "GHID", NULL, &ret);
258 1.2 jmcneill if (ACPI_FAILURE(rv)) {
259 1.2 jmcneill aprint_error_dev(dev, "couldn't evaluate GHID: %s\n",
260 1.2 jmcneill AcpiFormatException(rv));
261 1.2 jmcneill return false;
262 1.2 jmcneill }
263 1.2 jmcneill if (ret.Pointer)
264 1.2 jmcneill AcpiOsFree(ret.Pointer);
265 1.2 jmcneill
266 1.1 cegger return true;
267 1.1 cegger }
268