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 */ 28 29 #include <sys/cdefs.h> 30 __FBSDID("$FreeBSD$"); 31 32 #include "opt_acpi.h" 33 #include <sys/param.h> 34 #include <sys/kernel.h> 35 #include <sys/malloc.h> 36 #include <sys/module.h> 37 #include <sys/bus.h> 38 #include <sys/power.h> 39 40 #include <contrib/dev/acpica/acpi.h> 41 #include <dev/acpica/acpivar.h> 42 43 #define _COMPONENT ACPI_OEM 44 ACPI_MODULE_NAME("Panasonic") 45 46 /* Debug */ 47 #undef ACPI_PANASONIC_DEBUG 48 49 /* Operations */ 50 #define HKEY_SET 0 51 #define HKEY_GET 1 52 53 /* Functions */ 54 #define HKEY_REG_LCD_BRIGHTNESS_MAX_AC 0x02 55 #define HKEY_REG_LCD_BRIGHTNESS_MIN_AC 0x03 56 #define HKEY_REG_LCD_BRIGHTNESS_AC 0x04 57 #define HKEY_REG_LCD_BRIGHTNESS_MAX_DC 0x05 58 #define HKEY_REG_LCD_BRIGHTNESS_MIN_DC 0x06 59 #define HKEY_REG_LCD_BRIGHTNESS_DC 0x07 60 #define HKEY_REG_SOUND_MUTE 0x08 61 62 /* Field definitions */ 63 #define HKEY_LCD_BRIGHTNESS_BITS 4 64 #define HKEY_LCD_BRIGHTNESS_DIV ((1 << HKEY_LCD_BRIGHTNESS_BITS) - 1) 65 66 struct acpi_panasonic_softc { 67 device_t dev; 68 ACPI_HANDLE handle; 69 70 struct sysctl_ctx_list sysctl_ctx; 71 struct sysctl_oid *sysctl_tree; 72 73 eventhandler_tag power_evh; 74 }; 75 76 /* Prototype for HKEY functions for getting/setting a value. */ 77 typedef int hkey_fn_t(ACPI_HANDLE, int, UINT32 *); 78 79 static int acpi_panasonic_probe(device_t dev); 80 static int acpi_panasonic_attach(device_t dev); 81 static int acpi_panasonic_detach(device_t dev); 82 static void acpi_panasonic_shutdown(device_t dev); 83 static int acpi_panasonic_sysctl(SYSCTL_HANDLER_ARGS); 84 static ACPI_INTEGER acpi_panasonic_sinf(ACPI_HANDLE h, ACPI_INTEGER index); 85 static void acpi_panasonic_sset(ACPI_HANDLE h, ACPI_INTEGER index, 86 ACPI_INTEGER val); 87 static int acpi_panasonic_hkey_event(struct acpi_panasonic_softc *sc, 88 ACPI_HANDLE h, UINT32 *arg); 89 static void acpi_panasonic_hkey_action(struct acpi_panasonic_softc *sc, 90 ACPI_HANDLE h, UINT32 key); 91 static void acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify, 92 void *context); 93 static void acpi_panasonic_power_profile(void *arg); 94 95 static hkey_fn_t hkey_lcd_brightness_max; 96 static hkey_fn_t hkey_lcd_brightness_min; 97 static hkey_fn_t hkey_lcd_brightness; 98 static hkey_fn_t hkey_sound_mute; 99 ACPI_SERIAL_DECL(panasonic, "ACPI Panasonic extras"); 100 101 /* Table of sysctl names and HKEY functions to call. */ 102 static struct { 103 char *name; 104 hkey_fn_t *handler; 105 } sysctl_table[] = { 106 /* name, handler */ 107 {"lcd_brightness_max", hkey_lcd_brightness_max}, 108 {"lcd_brightness_min", hkey_lcd_brightness_min}, 109 {"lcd_brightness", hkey_lcd_brightness}, 110 {"sound_mute", hkey_sound_mute}, 111 {NULL, NULL} 112 }; 113 114 static device_method_t acpi_panasonic_methods[] = { 115 DEVMETHOD(device_probe, acpi_panasonic_probe), 116 DEVMETHOD(device_attach, acpi_panasonic_attach), 117 DEVMETHOD(device_detach, acpi_panasonic_detach), 118 DEVMETHOD(device_shutdown, acpi_panasonic_shutdown), 119 120 {0, 0} 121 }; 122 123 static driver_t acpi_panasonic_driver = { 124 "acpi_panasonic", 125 acpi_panasonic_methods, 126 sizeof(struct acpi_panasonic_softc), 127 }; 128 129 static devclass_t acpi_panasonic_devclass; 130 131 DRIVER_MODULE(acpi_panasonic, acpi, acpi_panasonic_driver, 132 acpi_panasonic_devclass, 0, 0); 133 MODULE_DEPEND(acpi_panasonic, acpi, 1, 1, 1); 134 135 static int 136 acpi_panasonic_probe(device_t dev) 137 { 138 static char *mat_ids[] = { "MAT0019", NULL }; 139 140 if (acpi_disabled("panasonic") || 141 ACPI_ID_PROBE(device_get_parent(dev), dev, mat_ids) == NULL || 142 device_get_unit(dev) != 0) 143 return (ENXIO); 144 145 device_set_desc(dev, "Panasonic Notebook Hotkeys"); 146 return (0); 147 } 148 149 static int 150 acpi_panasonic_attach(device_t dev) 151 { 152 struct acpi_panasonic_softc *sc; 153 struct acpi_softc *acpi_sc; 154 ACPI_STATUS status; 155 int i; 156 157 sc = device_get_softc(dev); 158 sc->dev = dev; 159 sc->handle = acpi_get_handle(dev); 160 161 acpi_sc = acpi_device_get_parent_softc(dev); 162 163 /* Build sysctl tree */ 164 sysctl_ctx_init(&sc->sysctl_ctx); 165 sc->sysctl_tree = SYSCTL_ADD_NODE(&sc->sysctl_ctx, 166 SYSCTL_CHILDREN(acpi_sc->acpi_sysctl_tree), OID_AUTO, 167 "panasonic", CTLFLAG_RD, 0, ""); 168 for (i = 0; sysctl_table[i].name != NULL; i++) { 169 SYSCTL_ADD_PROC(&sc->sysctl_ctx, 170 SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO, 171 sysctl_table[i].name, 172 CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_ANYBODY, 173 sc, i, acpi_panasonic_sysctl, "I", ""); 174 } 175 176 #if 0 177 /* Activate hotkeys */ 178 status = AcpiEvaluateObject(sc->handle, "", NULL, NULL); 179 if (ACPI_FAILURE(status)) { 180 device_printf(dev, "enable FN keys failed\n"); 181 sysctl_ctx_free(&sc->sysctl_ctx); 182 return (ENXIO); 183 } 184 #endif 185 186 /* Handle notifies */ 187 status = AcpiInstallNotifyHandler(sc->handle, ACPI_DEVICE_NOTIFY, 188 acpi_panasonic_notify, sc); 189 if (ACPI_FAILURE(status)) { 190 device_printf(dev, "couldn't install notify handler - %s\n", 191 AcpiFormatException(status)); 192 sysctl_ctx_free(&sc->sysctl_ctx); 193 return (ENXIO); 194 } 195 196 /* Install power profile event handler */ 197 sc->power_evh = EVENTHANDLER_REGISTER(power_profile_change, 198 acpi_panasonic_power_profile, sc->handle, 0); 199 200 return (0); 201 } 202 203 static int 204 acpi_panasonic_detach(device_t dev) 205 { 206 struct acpi_panasonic_softc *sc; 207 208 sc = device_get_softc(dev); 209 210 /* Remove power profile event handler */ 211 EVENTHANDLER_DEREGISTER(power_profile_change, sc->power_evh); 212 213 /* Remove notify handler */ 214 AcpiRemoveNotifyHandler(sc->handle, ACPI_DEVICE_NOTIFY, 215 acpi_panasonic_notify); 216 217 /* Free sysctl tree */ 218 sysctl_ctx_free(&sc->sysctl_ctx); 219 220 return (0); 221 } 222 223 static void 224 acpi_panasonic_shutdown(device_t dev) 225 { 226 struct acpi_panasonic_softc *sc; 227 int mute; 228 229 /* Mute the main audio during reboot to prevent static burst to speaker. */ 230 sc = device_get_softc(dev); 231 mute = 1; 232 hkey_sound_mute(sc->handle, HKEY_SET, &mute); 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 } 514