kernel: Use DEVMETHOD_END in the drivers.
[dragonfly.git] / sys / dev / acpica / acpi_panasonic / acpi_panasonic.c
1 /*-
2  * Copyright (c) 2003 OGAWA Takaya <t-ogawa@triaez.kaisei.org>
3  * Copyright (c) 2004 TAKAHASHI Yoshihiro <nyan@FreeBSD.org>
4  * All rights Reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/acpi_support/acpi_panasonic.c,v 1.15 2009/06/05 18:44:36 jkim
28  */
29
30 #include "opt_acpi.h"
31 #include <sys/param.h>
32 #include <sys/kernel.h>
33 #include <sys/malloc.h>
34 #include <sys/module.h>
35 #include <sys/bus.h>
36 #include <sys/power.h>
37
38 #include "acpi.h"
39
40 #include <dev/acpica/acpivar.h>
41
42 #define _COMPONENT      ACPI_OEM
43 ACPI_MODULE_NAME("Panasonic")
44
45 /* Debug */
46 #undef  ACPI_PANASONIC_DEBUG
47
48 /* Operations */
49 #define HKEY_SET        0
50 #define HKEY_GET        1
51
52 /* Functions */
53 #define HKEY_REG_LCD_BRIGHTNESS_MAX_AC  0x02
54 #define HKEY_REG_LCD_BRIGHTNESS_MIN_AC  0x03
55 #define HKEY_REG_LCD_BRIGHTNESS_AC      0x04
56 #define HKEY_REG_LCD_BRIGHTNESS_MAX_DC  0x05
57 #define HKEY_REG_LCD_BRIGHTNESS_MIN_DC  0x06
58 #define HKEY_REG_LCD_BRIGHTNESS_DC      0x07
59 #define HKEY_REG_SOUND_MUTE             0x08
60
61 /* Field definitions */
62 #define HKEY_LCD_BRIGHTNESS_BITS        4
63 #define HKEY_LCD_BRIGHTNESS_DIV         ((1 << HKEY_LCD_BRIGHTNESS_BITS) - 1)
64
65 struct acpi_panasonic_softc {
66         device_t        dev;
67         ACPI_HANDLE     handle;
68
69         struct sysctl_ctx_list  sysctl_ctx;
70         struct sysctl_oid       *sysctl_tree;
71
72         eventhandler_tag        power_evh;
73 };
74
75 /* Prototype for HKEY functions for getting/setting a value. */
76 typedef int hkey_fn_t(ACPI_HANDLE, int, UINT32 *);
77
78 static int      acpi_panasonic_probe(device_t dev);
79 static int      acpi_panasonic_attach(device_t dev);
80 static int      acpi_panasonic_detach(device_t dev);
81 static int      acpi_panasonic_shutdown(device_t dev);
82 static int      acpi_panasonic_sysctl(SYSCTL_HANDLER_ARGS);
83 static ACPI_INTEGER acpi_panasonic_sinf(ACPI_HANDLE h, ACPI_INTEGER index);
84 static void     acpi_panasonic_sset(ACPI_HANDLE h, ACPI_INTEGER index,
85                     ACPI_INTEGER val);
86 static int      acpi_panasonic_hkey_event(struct acpi_panasonic_softc *sc,
87                     ACPI_HANDLE h, UINT32 *arg);
88 static void     acpi_panasonic_hkey_action(struct acpi_panasonic_softc *sc,
89                     ACPI_HANDLE h, UINT32 key);
90 static void     acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify,
91                     void *context);
92 static void     acpi_panasonic_power_profile(void *arg);
93
94 static hkey_fn_t        hkey_lcd_brightness_max;
95 static hkey_fn_t        hkey_lcd_brightness_min;
96 static hkey_fn_t        hkey_lcd_brightness;
97 static hkey_fn_t        hkey_sound_mute;
98 ACPI_SERIAL_DECL(panasonic, "ACPI Panasonic extras");
99
100 /* Table of sysctl names and HKEY functions to call. */
101 static struct {
102         char            *name;
103         hkey_fn_t       *handler;
104 } sysctl_table[] = {
105         /* name,                handler */
106         {"lcd_brightness_max",  hkey_lcd_brightness_max},
107         {"lcd_brightness_min",  hkey_lcd_brightness_min},
108         {"lcd_brightness",      hkey_lcd_brightness},
109         {"sound_mute",          hkey_sound_mute},
110         {NULL, NULL}
111 };
112
113 static device_method_t acpi_panasonic_methods[] = {
114         DEVMETHOD(device_probe,         acpi_panasonic_probe),
115         DEVMETHOD(device_attach,        acpi_panasonic_attach),
116         DEVMETHOD(device_detach,        acpi_panasonic_detach),
117         DEVMETHOD(device_shutdown,      acpi_panasonic_shutdown),
118
119         DEVMETHOD_END
120 };
121
122 static driver_t acpi_panasonic_driver = {
123         "acpi_panasonic",
124         acpi_panasonic_methods,
125         sizeof(struct acpi_panasonic_softc),
126 };
127
128 static devclass_t acpi_panasonic_devclass;
129
130 DRIVER_MODULE(acpi_panasonic, acpi, acpi_panasonic_driver,
131     acpi_panasonic_devclass, 0, 0);
132 MODULE_DEPEND(acpi_panasonic, acpi, 1, 1, 1);
133
134 static int
135 acpi_panasonic_probe(device_t dev)
136 {
137         static char *mat_ids[] = { "MAT0019", NULL };
138
139         if (acpi_disabled("panasonic") ||
140             ACPI_ID_PROBE(device_get_parent(dev), dev, mat_ids) == NULL ||
141             device_get_unit(dev) != 0)
142                 return (ENXIO);
143
144         device_set_desc(dev, "Panasonic Notebook Hotkeys");
145         return (0);
146 }
147
148 static int
149 acpi_panasonic_attach(device_t dev)
150 {
151         struct acpi_panasonic_softc *sc;
152         struct acpi_softc *acpi_sc;
153         ACPI_STATUS status;
154         int i;
155
156         sc = device_get_softc(dev);
157         sc->dev = dev;
158         sc->handle = acpi_get_handle(dev);
159
160         acpi_sc = acpi_device_get_parent_softc(dev);
161
162         /* Build sysctl tree */
163         sysctl_ctx_init(&sc->sysctl_ctx);
164         sc->sysctl_tree = SYSCTL_ADD_NODE(&sc->sysctl_ctx,
165             SYSCTL_CHILDREN(acpi_sc->acpi_sysctl_tree), OID_AUTO,
166             "panasonic", CTLFLAG_RD, 0, "");
167         for (i = 0; sysctl_table[i].name != NULL; i++) {
168                 SYSCTL_ADD_PROC(&sc->sysctl_ctx,
169                     SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO,
170                     sysctl_table[i].name,
171                     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY,
172                     sc, i, acpi_panasonic_sysctl, "I", "");
173         }
174
175 #if 0
176         /* Activate hotkeys */
177         status = AcpiEvaluateObject(sc->handle, "", NULL, NULL);
178         if (ACPI_FAILURE(status)) {
179                 device_printf(dev, "enable FN keys failed\n");
180                 sysctl_ctx_free(&sc->sysctl_ctx);
181                 return (ENXIO);
182         }
183 #endif
184
185         /* Handle notifies */
186         status = AcpiInstallNotifyHandler(sc->handle, ACPI_DEVICE_NOTIFY,
187             acpi_panasonic_notify, sc);
188         if (ACPI_FAILURE(status)) {
189                 device_printf(dev, "couldn't install notify handler - %s\n",
190                     AcpiFormatException(status));
191                 sysctl_ctx_free(&sc->sysctl_ctx);
192                 return (ENXIO);
193         }
194
195         /* Install power profile event handler */
196         sc->power_evh = EVENTHANDLER_REGISTER(power_profile_change,
197             acpi_panasonic_power_profile, sc->handle, 0);
198
199         return (0);
200 }
201
202 static int
203 acpi_panasonic_detach(device_t dev)
204 {
205         struct acpi_panasonic_softc *sc;
206
207         sc = device_get_softc(dev);
208
209         /* Remove power profile event handler */
210         EVENTHANDLER_DEREGISTER(power_profile_change, sc->power_evh);
211
212         /* Remove notify handler */
213         AcpiRemoveNotifyHandler(sc->handle, ACPI_DEVICE_NOTIFY,
214             acpi_panasonic_notify);
215
216         /* Free sysctl tree */
217         sysctl_ctx_free(&sc->sysctl_ctx);
218
219         return (0);
220 }
221
222 static int
223 acpi_panasonic_shutdown(device_t dev)
224 {
225         struct acpi_panasonic_softc *sc;
226         int mute;
227
228         /* Mute the main audio during reboot to prevent static burst to speaker. */
229         sc = device_get_softc(dev);
230         mute = 1;
231         hkey_sound_mute(sc->handle, HKEY_SET, &mute);
232         return (0);
233 }
234
235 static int
236 acpi_panasonic_sysctl(SYSCTL_HANDLER_ARGS)
237 {
238         struct acpi_panasonic_softc *sc;
239         UINT32 arg;
240         int function, error;
241         hkey_fn_t *handler;
242
243         sc = (struct acpi_panasonic_softc *)oidp->oid_arg1;
244         function = oidp->oid_arg2;
245         handler = sysctl_table[function].handler;
246
247         /* Get the current value from the appropriate function. */
248         ACPI_SERIAL_BEGIN(panasonic);
249         error = handler(sc->handle, HKEY_GET, &arg);
250         if (error != 0)
251                 goto out;
252
253         /* Send the current value to the user and return if no new value. */
254         error = sysctl_handle_int(oidp, &arg, 0, req);
255         if (error != 0 || req->newptr == NULL)
256                 goto out;
257
258         /* Set the new value via the appropriate function. */
259         error = handler(sc->handle, HKEY_SET, &arg);
260
261 out:
262         ACPI_SERIAL_END(panasonic);
263         return (error);
264 }
265
266 static ACPI_INTEGER
267 acpi_panasonic_sinf(ACPI_HANDLE h, ACPI_INTEGER index)
268 {
269         ACPI_BUFFER buf;
270         ACPI_OBJECT *res;
271         ACPI_INTEGER ret;
272
273         ACPI_SERIAL_ASSERT(panasonic);
274         ret = -1;
275         buf.Length = ACPI_ALLOCATE_BUFFER;
276         buf.Pointer = NULL;
277         AcpiEvaluateObject(h, "SINF", NULL, &buf);
278         res = (ACPI_OBJECT *)buf.Pointer;
279         if (res->Type == ACPI_TYPE_PACKAGE)
280                 ret = res->Package.Elements[index].Integer.Value;
281         AcpiOsFree(buf.Pointer);
282
283         return (ret);
284 }
285
286 static void
287 acpi_panasonic_sset(ACPI_HANDLE h, ACPI_INTEGER index, ACPI_INTEGER val)
288 {
289         ACPI_OBJECT_LIST args;
290         ACPI_OBJECT obj[2];
291
292         ACPI_SERIAL_ASSERT(panasonic);
293         obj[0].Type = ACPI_TYPE_INTEGER;
294         obj[0].Integer.Value = index;
295         obj[1].Type = ACPI_TYPE_INTEGER;
296         obj[1].Integer.Value = val;
297         args.Count = 2;
298         args.Pointer = obj;
299         AcpiEvaluateObject(h, "SSET", &args, NULL);
300 }
301
302 static int
303 hkey_lcd_brightness_max(ACPI_HANDLE h, int op, UINT32 *val)
304 {
305         int reg;
306
307         ACPI_SERIAL_ASSERT(panasonic);
308         reg = (power_profile_get_state() == POWER_PROFILE_PERFORMANCE) ?
309             HKEY_REG_LCD_BRIGHTNESS_MAX_AC : HKEY_REG_LCD_BRIGHTNESS_MAX_DC;
310
311         switch (op) {
312         case HKEY_SET:
313                 return (EPERM);
314                 break;
315         case HKEY_GET:
316                 *val = acpi_panasonic_sinf(h, reg);
317                 break;
318         }
319
320         return (0);
321 }
322
323 static int
324 hkey_lcd_brightness_min(ACPI_HANDLE h, int op, UINT32 *val)
325 {
326         int reg;
327
328         ACPI_SERIAL_ASSERT(panasonic);
329         reg = (power_profile_get_state() == POWER_PROFILE_PERFORMANCE) ?
330             HKEY_REG_LCD_BRIGHTNESS_MIN_AC : HKEY_REG_LCD_BRIGHTNESS_MIN_DC;
331
332         switch (op) {
333         case HKEY_SET:
334                 return (EPERM);
335                 break;
336         case HKEY_GET:
337                 *val = acpi_panasonic_sinf(h, reg);
338                 break;
339         }
340
341         return (0);
342 }
343
344 static int
345 hkey_lcd_brightness(ACPI_HANDLE h, int op, UINT32 *val)
346 {
347         int reg;
348         UINT32 max, min;
349
350         reg = (power_profile_get_state() == POWER_PROFILE_PERFORMANCE) ?
351             HKEY_REG_LCD_BRIGHTNESS_AC : HKEY_REG_LCD_BRIGHTNESS_DC;
352
353         ACPI_SERIAL_ASSERT(panasonic);
354         switch (op) {
355         case HKEY_SET:
356                 hkey_lcd_brightness_max(h, HKEY_GET, &max);
357                 hkey_lcd_brightness_min(h, HKEY_GET, &min);
358                 if (*val < min || *val > max)
359                         return (EINVAL);
360                 acpi_panasonic_sset(h, reg, *val);
361                 break;
362         case HKEY_GET:
363                 *val = acpi_panasonic_sinf(h, reg);
364                 break;
365         }
366
367         return (0);
368 }
369
370 static int
371 hkey_sound_mute(ACPI_HANDLE h, int op, UINT32 *val)
372 {
373
374         ACPI_SERIAL_ASSERT(panasonic);
375         switch (op) {
376         case HKEY_SET:
377                 if (*val != 0 && *val != 1)
378                         return (EINVAL);
379                 acpi_panasonic_sset(h, HKEY_REG_SOUND_MUTE, *val);
380                 break;
381         case HKEY_GET:
382                 *val = acpi_panasonic_sinf(h, HKEY_REG_SOUND_MUTE);
383                 break;
384         }
385
386         return (0);
387 }
388
389 static int
390 acpi_panasonic_hkey_event(struct acpi_panasonic_softc *sc, ACPI_HANDLE h,
391     UINT32 *arg)
392 {
393         ACPI_BUFFER buf;
394         ACPI_OBJECT *res;
395         ACPI_INTEGER val;
396         int status;
397
398         ACPI_SERIAL_ASSERT(panasonic);
399         status = ENXIO;
400
401         buf.Length = ACPI_ALLOCATE_BUFFER;
402         buf.Pointer = NULL;
403         AcpiEvaluateObject(h, "HINF", NULL, &buf);
404         res = (ACPI_OBJECT *)buf.Pointer;
405         if (res->Type != ACPI_TYPE_INTEGER) {
406                 device_printf(sc->dev, "HINF returned non-integer\n");
407                 goto end;
408         }
409         val = res->Integer.Value;
410 #ifdef ACPI_PANASONIC_DEBUG
411         device_printf(sc->dev, "%s button Fn+F%d\n",
412                       (val & 0x80) ? "Pressed" : "Released",
413                       (int)(val & 0x7f));
414 #endif
415         if ((val & 0x7f) > 0 && (val & 0x7f) < 11) {
416                 *arg = val;
417                 status = 0;
418         }
419 end:
420         if (buf.Pointer)
421                 AcpiOsFree(buf.Pointer);
422
423         return (status);
424 }
425
426 static void
427 acpi_panasonic_hkey_action(struct acpi_panasonic_softc *sc, ACPI_HANDLE h,
428     UINT32 key)
429 {
430         struct acpi_softc *acpi_sc;
431         int arg, max, min;
432
433         acpi_sc = acpi_device_get_parent_softc(sc->dev);
434
435         ACPI_SERIAL_ASSERT(panasonic);
436         switch (key) {
437         case 1:
438                 /* Decrease LCD brightness. */
439                 hkey_lcd_brightness_max(h, HKEY_GET, &max);
440                 hkey_lcd_brightness_min(h, HKEY_GET, &min);
441                 hkey_lcd_brightness(h, HKEY_GET, &arg);
442                 arg -= max / HKEY_LCD_BRIGHTNESS_DIV;
443                 if (arg < min)
444                         arg = min;
445                 else if (arg > max)
446                         arg = max;
447                 hkey_lcd_brightness(h, HKEY_SET, &arg);
448                 break;
449         case 2:
450                 /* Increase LCD brightness. */
451                 hkey_lcd_brightness_max(h, HKEY_GET, &max);
452                 hkey_lcd_brightness_min(h, HKEY_GET, &min);
453                 hkey_lcd_brightness(h, HKEY_GET, &arg);
454                 arg += max / HKEY_LCD_BRIGHTNESS_DIV;
455                 if (arg < min)
456                         arg = min;
457                 else if (arg > max)
458                         arg = max;
459                 hkey_lcd_brightness(h, HKEY_SET, &arg);
460                 break;
461         case 4:
462                 /* Toggle sound mute. */
463                 hkey_sound_mute(h, HKEY_GET, &arg);
464                 if (arg)
465                         arg = 0;
466                 else
467                         arg = 1;
468                 hkey_sound_mute(h, HKEY_SET, &arg);
469                 break;
470         case 7:
471                 /* Suspend. */
472                 acpi_event_sleep_button_sleep(acpi_sc);
473                 break;
474         }
475 }
476
477 static void
478 acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify, void *context)
479 {
480         struct acpi_panasonic_softc *sc;
481         UINT32 key = 0;
482
483         sc = (struct acpi_panasonic_softc *)context;
484
485         switch (notify) {
486         case 0x80:
487                 ACPI_SERIAL_BEGIN(panasonic);
488                 if (acpi_panasonic_hkey_event(sc, h, &key) == 0) {
489                         acpi_panasonic_hkey_action(sc, h, key);
490                         acpi_UserNotify("Panasonic", h, (uint8_t)key);
491                 }
492                 ACPI_SERIAL_END(panasonic);
493                 break;
494         default:
495                 device_printf(sc->dev, "unknown notify: %#x\n", notify);
496                 break;
497         }
498 }
499
500 static void
501 acpi_panasonic_power_profile(void *arg)
502 {
503         ACPI_HANDLE handle;
504         UINT32 brightness;
505
506         handle = (ACPI_HANDLE)arg;
507
508         /* Reset current brightness according to new power state. */
509         ACPI_SERIAL_BEGIN(panasonic);
510         hkey_lcd_brightness(handle, HKEY_GET, &brightness);
511         hkey_lcd_brightness(handle, HKEY_SET, &brightness);
512         ACPI_SERIAL_END(panasonic);
513 }