1 /* $NetBSD: acpi_tz.c,v 1.57 2010/02/01 09:45:04 jruoho Exp $ */ 2 3 /* 4 * Copyright (c) 2003 Jared D. McNeill <jmcneill@invisible.ca> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. The name of the author may not be used to endorse or promote products 13 * derived from this software without specific prior written permission. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 20 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 22 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 23 * 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 * ACPI Thermal Zone driver 30 */ 31 32 #include <sys/cdefs.h> 33 __KERNEL_RCSID(0, "$NetBSD: acpi_tz.c,v 1.57 2010/02/01 09:45:04 jruoho Exp $"); 34 35 #include <sys/param.h> 36 #include <sys/systm.h> 37 #include <sys/kernel.h> 38 #include <sys/errno.h> 39 #include <sys/ioctl.h> 40 #include <sys/syslog.h> 41 #include <sys/device.h> 42 #include <sys/callout.h> 43 #include <sys/proc.h> 44 #include <dev/sysmon/sysmonvar.h> 45 46 #include <dev/acpi/acpica.h> 47 #include <dev/acpi/acpireg.h> 48 #include <dev/acpi/acpivar.h> 49 50 #define _COMPONENT ACPI_TZ_COMPONENT 51 ACPI_MODULE_NAME ("acpi_tz") 52 53 /* flags */ 54 #define ATZ_F_VERBOSE 0x01 /* show events to console */ 55 #define ATZ_F_CRITICAL 0x02 /* zone critical */ 56 #define ATZ_F_HOT 0x04 /* zone hot */ 57 #define ATZ_F_PASSIVE 0x08 /* zone passive cooling */ 58 #define ATZ_F_PASSIVEONLY 0x10 /* zone is passive cooling only */ 59 60 /* no active cooling level */ 61 #define ATZ_ACTIVE_NONE -1 62 63 /* constants */ 64 #define ATZ_TZP_RATE 300 /* default if no _TZP CM present (30 secs) */ 65 #define ATZ_NLEVELS 10 /* number of cooling levels, from ACPI spec */ 66 #define ATZ_ZEROC 2732 /* 0C in tenths degrees Kelvin */ 67 #define ATZ_TMP_INVALID 0xffffffff /* invalid temperature */ 68 #define ATZ_ZONE_EXPIRE 9000 /* zone info refetch interval (15min) */ 69 70 /* sensor indexes */ 71 #define ATZ_SENSOR_TEMP 0 /* thermal zone temperature */ 72 73 static int acpitz_match(device_t, cfdata_t, void *); 74 static void acpitz_attach(device_t, device_t, void *); 75 76 /* 77 * ACPI Temperature Zone information. Note all temperatures are reported 78 * in tenths of degrees Kelvin, and that the ACPI specification assumes 79 * that K = C + 273.2 rather than the nominal 273.15 used by envsys(4). 80 * So define an appropriate conversion. 81 */ 82 83 #define ATZ2UKELVIN(t) ((t) * 100000 - 50000) 84 85 struct acpitz_zone { 86 /* Active cooling temperature threshold */ 87 UINT32 ac[ATZ_NLEVELS]; 88 /* Package of references to all active cooling devices for a level */ 89 ACPI_BUFFER al[ATZ_NLEVELS]; 90 /* Critical temperature threshold for system shutdown */ 91 UINT32 crt; 92 /* Critical temperature threshold for S4 sleep */ 93 UINT32 hot; 94 /* Package of references to processor objects for passive cooling */ 95 ACPI_BUFFER psl; 96 /* Conveys if temperatures are absolute or relative values. */ 97 UINT32 rtv; 98 /* Passive cooling temperature threshold */ 99 UINT32 psv; 100 /* Thermal constants for use in passive cooling formulas */ 101 UINT32 tc1, tc2; 102 /* Current temperature of the thermal zone */ 103 UINT32 prevtmp, tmp; 104 /* Thermal sampling period for passive cooling, in tenths of seconds */ 105 UINT32 tsp; 106 /* Package of references to devices in this TZ (optional) */ 107 ACPI_BUFFER tzd; 108 /* Recommended TZ polling frequency, in tenths of seconds */ 109 UINT32 tzp; 110 /* Thermal zone name */ 111 char *name; 112 /* FAN min, max, current rpms */ 113 UINT32 fanmin, fanmax, fancurrent; 114 }; 115 116 struct acpitz_softc { 117 struct acpi_devnode *sc_devnode; 118 struct acpitz_zone sc_zone; 119 struct callout sc_callout; 120 struct sysmon_envsys *sc_sme; 121 envsys_data_t sc_temp_sensor; 122 envsys_data_t sc_fan_sensor; 123 int sc_active; /* active cooling level */ 124 int sc_flags; 125 int sc_rate; /* tz poll rate */ 126 int sc_zone_expire; 127 128 int sc_first; 129 int sc_have_fan; /* FAN sensor is optional */ 130 }; 131 132 static void acpitz_get_status(void *); 133 static void acpitz_get_zone(void *, int); 134 static void acpitz_get_zone_quiet(void *); 135 static char *acpitz_celcius_string(int); 136 static void acpitz_print_status(device_t); 137 static void acpitz_power_off(struct acpitz_softc *); 138 static void acpitz_power_zone(struct acpitz_softc *, int, int); 139 static void acpitz_sane_temp(UINT32 *tmp); 140 static ACPI_STATUS 141 acpitz_switch_cooler(ACPI_OBJECT *, void *); 142 static void acpitz_notify_handler(ACPI_HANDLE, UINT32, void *); 143 static int acpitz_get_integer(device_t, const char *, UINT32 *); 144 static void acpitz_tick(void *); 145 static void acpitz_init_envsys(device_t); 146 static void acpitz_get_limits(struct sysmon_envsys *, envsys_data_t *, 147 sysmon_envsys_lim_t *); 148 static int acpitz_get_fanspeed(device_t, UINT32 *, UINT32 *, UINT32 *); 149 #ifdef notyet 150 static ACPI_STATUS 151 acpitz_set_fanspeed(device_t, UINT32); 152 #endif 153 154 CFATTACH_DECL_NEW(acpitz, sizeof(struct acpitz_softc), acpitz_match, 155 acpitz_attach, NULL, NULL); 156 157 /* 158 * acpitz_match: autoconf(9) match routine 159 */ 160 static int 161 acpitz_match(device_t parent, cfdata_t match, void *aux) 162 { 163 struct acpi_attach_args *aa = aux; 164 165 if (aa->aa_node->ad_type != ACPI_TYPE_THERMAL) 166 return 0; 167 168 return 1; 169 } 170 171 /* 172 * acpitz_attach: autoconf(9) attach routine 173 */ 174 static void 175 acpitz_attach(device_t parent, device_t self, void *aux) 176 { 177 struct acpitz_softc *sc = device_private(self); 178 struct acpi_attach_args *aa = aux; 179 ACPI_STATUS rv; 180 ACPI_INTEGER v; 181 182 #if 0 183 sc->sc_flags = ATZ_F_VERBOSE; 184 #endif 185 sc->sc_devnode = aa->aa_node; 186 187 aprint_naive("\n"); 188 189 rv = acpi_eval_integer(sc->sc_devnode->ad_handle, "_TZP", &v); 190 if (ACPI_FAILURE(rv)) 191 sc->sc_zone.tzp = ATZ_TZP_RATE; 192 else 193 sc->sc_zone.tzp = v; 194 195 aprint_debug(" sample rate %d.%ds\n", 196 sc->sc_zone.tzp / 10, sc->sc_zone.tzp % 10); 197 198 /* XXX a value of 0 means "polling is not necessary" */ 199 if (sc->sc_zone.tzp == 0) 200 sc->sc_zone.tzp = ATZ_TZP_RATE; 201 202 sc->sc_zone_expire = ATZ_ZONE_EXPIRE / sc->sc_zone.tzp; 203 sc->sc_first = 1; 204 sc->sc_have_fan = 0; 205 if (acpitz_get_fanspeed(self, 206 &sc->sc_zone.fanmin, &sc->sc_zone.fanmax, &sc->sc_zone.fancurrent) 207 == 0) 208 sc->sc_have_fan = 1; 209 210 rv = acpi_eval_string(sc->sc_devnode->ad_handle, 211 "REGN", &sc->sc_zone.name); 212 if (ACPI_FAILURE(rv)) 213 sc->sc_zone.name = __UNCONST("temperature"); 214 acpitz_get_zone(self, 1); 215 acpitz_get_status(self); 216 217 rv = AcpiInstallNotifyHandler(sc->sc_devnode->ad_handle, 218 ACPI_DEVICE_NOTIFY, acpitz_notify_handler, self); 219 220 if (ACPI_FAILURE(rv)) 221 return; 222 223 callout_init(&sc->sc_callout, CALLOUT_MPSAFE); 224 callout_setfunc(&sc->sc_callout, acpitz_tick, self); 225 226 acpitz_init_envsys(self); 227 228 if (!pmf_device_register(self, NULL, NULL)) 229 aprint_error(": couldn't establish power handler\n"); 230 231 callout_schedule(&sc->sc_callout, sc->sc_zone.tzp * hz / 10); 232 } 233 234 static void 235 acpitz_get_zone_quiet(void *opaque) 236 { 237 acpitz_get_zone(opaque, 0); 238 } 239 240 static void 241 acpitz_get_status(void *opaque) 242 { 243 device_t dv = opaque; 244 struct acpitz_softc *sc = device_private(dv); 245 UINT32 tmp, active; 246 int i, flags; 247 UINT32 fmin, fmax, fcurrent; 248 249 sc->sc_zone_expire--; 250 if (sc->sc_zone_expire <= 0) { 251 sc->sc_zone_expire = ATZ_ZONE_EXPIRE / sc->sc_zone.tzp; 252 if (sc->sc_flags & ATZ_F_VERBOSE) 253 printf("%s: force refetch zone\n", device_xname(dv)); 254 acpitz_get_zone(dv, 0); 255 } 256 257 if (acpitz_get_integer(dv, "_TMP", &tmp)) { 258 aprint_error_dev(dv, "failed to evaluate _TMP\n"); 259 return; 260 } 261 262 sc->sc_zone.prevtmp = sc->sc_zone.tmp; 263 sc->sc_zone.tmp = tmp; 264 if (sc->sc_first) 265 sc->sc_zone.prevtmp = tmp; 266 /* XXX sanity check for tmp here? */ 267 268 if (acpitz_get_fanspeed(dv, &fmin, &fmax, &fcurrent) == 0) { 269 if (fcurrent != ATZ_TMP_INVALID) 270 sc->sc_zone.fancurrent = fcurrent; 271 } 272 273 /* 274 * The temperature unit for envsys(4) is microKelvin, so convert to 275 * that from ACPI's microKelvin. Also, the ACPI specification assumes 276 * that K = C + 273.2 rather than the nominal 273.15 used by envsys(4), 277 * so we correct for that too. 278 */ 279 sc->sc_temp_sensor.value_cur = ATZ2UKELVIN(sc->sc_zone.tmp); 280 sc->sc_temp_sensor.state = ENVSYS_SVALID; 281 282 sc->sc_fan_sensor.value_cur = sc->sc_zone.fancurrent; 283 sc->sc_fan_sensor.state = ENVSYS_SVALID; 284 285 if (sc->sc_flags & ATZ_F_VERBOSE) 286 acpitz_print_status(dv); 287 288 if (sc->sc_flags & ATZ_F_PASSIVEONLY) { 289 /* Passive Cooling: XXX not yet */ 290 291 } else { 292 /* Active Cooling */ 293 294 /* temperature threshold: _AC0 > ... > _AC9 */ 295 active = ATZ_ACTIVE_NONE; 296 for (i = ATZ_NLEVELS - 1; i >= 0; i--) { 297 if (sc->sc_zone.ac[i] == ATZ_TMP_INVALID) 298 continue; 299 300 /* we want to keep highest cooling mode in 'active' */ 301 if (sc->sc_zone.ac[i] <= tmp) 302 active = i; 303 } 304 305 flags = sc->sc_flags & 306 ~(ATZ_F_CRITICAL|ATZ_F_HOT|ATZ_F_PASSIVE); 307 if (sc->sc_zone.psv != ATZ_TMP_INVALID && 308 tmp >= sc->sc_zone.psv) 309 flags |= ATZ_F_PASSIVE; 310 if (sc->sc_zone.hot != ATZ_TMP_INVALID && 311 tmp >= sc->sc_zone.hot) 312 flags |= ATZ_F_HOT; 313 if (sc->sc_zone.crt != ATZ_TMP_INVALID && 314 tmp >= sc->sc_zone.crt) 315 flags |= ATZ_F_CRITICAL; 316 317 if (flags != sc->sc_flags) { 318 int changed = (sc->sc_flags ^ flags) & flags; 319 sc->sc_flags = flags; 320 if (changed & ATZ_F_CRITICAL) { 321 sc->sc_temp_sensor.state = ENVSYS_SCRITOVER; 322 aprint_debug_dev(dv, 323 "zone went critical at temp %sC\n", 324 acpitz_celcius_string(tmp)); 325 } else if (changed & ATZ_F_HOT) { 326 sc->sc_temp_sensor.state = ENVSYS_SCRITOVER; 327 aprint_debug_dev(dv, 328 "zone went hot at temp %sC\n", 329 acpitz_celcius_string(tmp)); 330 } 331 } 332 333 /* power on fans */ 334 if (sc->sc_active != active) { 335 if (sc->sc_active != ATZ_ACTIVE_NONE) 336 acpitz_power_zone(sc, sc->sc_active, 0); 337 338 if (active != ATZ_ACTIVE_NONE) { 339 if (sc->sc_flags & ATZ_F_VERBOSE) 340 printf("%s: active cooling level %u\n", 341 device_xname(dv), active); 342 acpitz_power_zone(sc, active, 1); 343 } else if (sc->sc_flags & ATZ_F_VERBOSE) 344 printf("%s: no active cooling level\n", 345 device_xname(dv)); 346 347 sc->sc_active = active; 348 } 349 } 350 351 return; 352 } 353 354 static char * 355 acpitz_celcius_string(int dk) 356 { 357 static char buf[10]; 358 359 snprintf(buf, sizeof(buf), "%d.%d", (dk - ATZ_ZEROC) / 10, 360 (dk - ATZ_ZEROC) % 10); 361 362 return buf; 363 } 364 365 static void 366 acpitz_print_status(device_t dv) 367 { 368 struct acpitz_softc *sc = device_private(dv); 369 370 printf("%s: zone temperature is now %sC\n", device_xname(dv), 371 acpitz_celcius_string(sc->sc_zone.tmp)); 372 if (sc->sc_have_fan) { 373 printf("%s: fan rpm %u\n", device_xname(dv), 374 sc->sc_zone.fancurrent); 375 } 376 377 return; 378 } 379 380 static ACPI_STATUS 381 acpitz_switch_cooler(ACPI_OBJECT *obj, void *arg) 382 { 383 ACPI_HANDLE cooler; 384 ACPI_STATUS rv; 385 int pwr_state, flag; 386 387 flag = *(int *)arg; 388 389 if (flag) 390 pwr_state = ACPI_STATE_D0; 391 else 392 pwr_state = ACPI_STATE_D3; 393 394 rv = acpi_eval_reference_handle(obj, &cooler); 395 if (ACPI_FAILURE(rv)) { 396 aprint_error("%s: failed to get handle\n", __func__); 397 return rv; 398 } 399 400 rv = acpi_pwr_switch_consumer(cooler, pwr_state); 401 if (rv != AE_BAD_PARAMETER && ACPI_FAILURE(rv)) 402 aprint_error("%s: failed to change state for %s: %s\n", 403 __func__, acpi_name(cooler), AcpiFormatException(rv)); 404 405 return AE_OK; 406 } 407 408 /* 409 * acpitz_power_zone: 410 * power on or off the i:th part of the zone zone 411 */ 412 static void 413 acpitz_power_zone(struct acpitz_softc *sc, int i, int on) 414 { 415 KASSERT(i >= 0 && i < ATZ_NLEVELS); 416 417 acpi_foreach_package_object(sc->sc_zone.al[i].Pointer, 418 acpitz_switch_cooler, &on); 419 } 420 421 422 /* 423 * acpitz_power_off: 424 * power off parts of the zone 425 */ 426 static void 427 acpitz_power_off(struct acpitz_softc *sc) 428 { 429 int i; 430 431 for (i = 0 ; i < ATZ_NLEVELS; i++) { 432 if (sc->sc_zone.al[i].Pointer == NULL) 433 continue; 434 acpitz_power_zone(sc, i, 0); 435 } 436 sc->sc_active = ATZ_ACTIVE_NONE; 437 sc->sc_flags &= ~(ATZ_F_CRITICAL|ATZ_F_HOT|ATZ_F_PASSIVE); 438 } 439 440 static void 441 acpitz_get_zone(void *opaque, int verbose) 442 { 443 device_t dv = opaque; 444 struct acpitz_softc *sc = device_private(dv); 445 ACPI_STATUS rv; 446 char buf[8]; 447 int i, valid_levels; 448 449 if (!sc->sc_first) { 450 acpitz_power_off(sc); 451 452 for (i = 0; i < ATZ_NLEVELS; i++) { 453 if (sc->sc_zone.al[i].Pointer != NULL) 454 ACPI_FREE(sc->sc_zone.al[i].Pointer); 455 sc->sc_zone.al[i].Pointer = NULL; 456 } 457 } else 458 aprint_normal(":"); 459 460 valid_levels = 0; 461 462 for (i = 0; i < ATZ_NLEVELS; i++) { 463 ACPI_OBJECT *obj; 464 465 snprintf(buf, sizeof(buf), "_AC%d", i); 466 if (acpitz_get_integer(dv, buf, &sc->sc_zone.ac[i])) 467 continue; 468 469 snprintf(buf, sizeof(buf), "_AL%d", i); 470 rv = acpi_eval_struct(sc->sc_devnode->ad_handle, buf, 471 &sc->sc_zone.al[i]); 472 if (ACPI_FAILURE(rv)) { 473 sc->sc_zone.al[i].Pointer = NULL; 474 continue; 475 } 476 477 obj = sc->sc_zone.al[i].Pointer; 478 if (obj != NULL) { 479 if (obj->Type != ACPI_TYPE_PACKAGE) { 480 aprint_error("%d not package\n", i); 481 ACPI_FREE(obj); 482 sc->sc_zone.al[i].Pointer = NULL; 483 continue; 484 } 485 } 486 487 if (sc->sc_first) 488 aprint_normal(" active cooling level %d: %sC", i, 489 acpitz_celcius_string(sc->sc_zone.ac[i])); 490 491 valid_levels++; 492 } 493 494 acpitz_get_integer(dv, "_TMP", &sc->sc_zone.tmp); 495 acpitz_get_integer(dv, "_CRT", &sc->sc_zone.crt); 496 acpitz_get_integer(dv, "_HOT", &sc->sc_zone.hot); 497 acpitz_get_integer(dv, "_PSV", &sc->sc_zone.psv); 498 acpitz_get_integer(dv, "_TC1", &sc->sc_zone.tc1); 499 acpitz_get_integer(dv, "_TC2", &sc->sc_zone.tc2); 500 501 #if 0 502 sc->sc_zone.psl.Length = ACPI_ALLOCATE_LOCAL_BUFFER; 503 sc->sc_zone.psl.Pointer = NULL; 504 AcpiEvaluateObject(sc->sc_devnode->ad_handle, 505 "_PSL", NULL, &sc->sc_zone.psl); 506 #endif 507 508 /* ACPI spec: If _RTV is not present or present and zero, 509 * values are absolute. */ 510 acpitz_get_integer(dv, "_RTV", &sc->sc_zone.rtv); 511 if (sc->sc_zone.rtv == ATZ_TMP_INVALID) 512 sc->sc_zone.rtv = 0; 513 514 515 acpitz_sane_temp(&sc->sc_zone.tmp); 516 acpitz_sane_temp(&sc->sc_zone.crt); 517 acpitz_sane_temp(&sc->sc_zone.hot); 518 acpitz_sane_temp(&sc->sc_zone.psv); 519 520 if (verbose) { 521 if (sc->sc_zone.crt != ATZ_TMP_INVALID) 522 aprint_normal(" critical %sC", 523 acpitz_celcius_string(sc->sc_zone.crt)); 524 if (sc->sc_zone.hot != ATZ_TMP_INVALID) 525 aprint_normal(" hot %sC", 526 acpitz_celcius_string(sc->sc_zone.hot)); 527 if (sc->sc_zone.psv != ATZ_TMP_INVALID) 528 aprint_normal(" passive %sC", 529 acpitz_celcius_string(sc->sc_zone.tmp)); 530 } 531 532 if (valid_levels == 0) { 533 sc->sc_flags |= ATZ_F_PASSIVEONLY; 534 if (sc->sc_first) 535 aprint_normal(", passive cooling"); 536 } 537 if (verbose) 538 aprint_normal("\n"); 539 540 for (i = 0; i < ATZ_NLEVELS; i++) 541 acpitz_sane_temp(&sc->sc_zone.ac[i]); 542 543 acpitz_power_off(sc); 544 sc->sc_first = 0; 545 } 546 547 548 static void 549 acpitz_notify_handler(ACPI_HANDLE hdl, UINT32 notify, void *opaque) 550 { 551 device_t dv = opaque; 552 ACPI_OSD_EXEC_CALLBACK func = NULL; 553 const char *name; 554 ACPI_STATUS rv; 555 556 switch (notify) { 557 case ACPI_NOTIFY_ThermalZoneStatusChanged: 558 func = acpitz_get_status; 559 name = "status check"; 560 break; 561 case ACPI_NOTIFY_ThermalZoneTripPointsChanged: 562 case ACPI_NOTIFY_DeviceListsChanged: 563 func = acpitz_get_zone_quiet; 564 name = "get zone"; 565 break; 566 default: 567 aprint_debug_dev(dv, 568 "received unhandled notify message 0x%x\n", notify); 569 return; 570 } 571 572 KASSERT(func != NULL); 573 574 rv = AcpiOsExecute(OSL_NOTIFY_HANDLER, func, dv); 575 if (ACPI_FAILURE(rv)) 576 aprint_debug_dev(dv, "unable to queue %s\n", name); 577 } 578 579 static void 580 acpitz_sane_temp(UINT32 *tmp) 581 { 582 /* Sane temperatures are beteen 0 and 150 C */ 583 if (*tmp < ATZ_ZEROC || *tmp > ATZ_ZEROC + 1500) 584 *tmp = ATZ_TMP_INVALID; 585 } 586 587 static int 588 acpitz_get_integer(device_t dv, const char *cm, UINT32 *val) 589 { 590 struct acpitz_softc *sc = device_private(dv); 591 ACPI_STATUS rv; 592 ACPI_INTEGER tmp; 593 594 rv = acpi_eval_integer(sc->sc_devnode->ad_handle, cm, &tmp); 595 if (ACPI_FAILURE(rv)) { 596 #ifdef ACPI_DEBUG 597 aprint_debug_dev(dv, "failed to evaluate %s: %s\n", 598 cm, AcpiFormatException(rv)); 599 #endif 600 *val = ATZ_TMP_INVALID; 601 return 1; 602 } 603 604 *val = tmp; 605 606 return 0; 607 } 608 609 static int 610 acpitz_get_fanspeed(device_t dv, 611 UINT32 *fanmin, UINT32 *fanmax, UINT32 *fancurrent) 612 { 613 struct acpitz_softc *sc = device_private(dv); 614 ACPI_STATUS rv; 615 ACPI_HANDLE handle; 616 ACPI_INTEGER fmin, fmax, fcurr; 617 int rc = 0; 618 619 handle = sc->sc_devnode->ad_handle; 620 rv = acpi_eval_integer(handle, "FMIN", &fmin); 621 if (ACPI_FAILURE(rv)) { 622 fmin = ATZ_TMP_INVALID; 623 rc = 1; 624 } 625 rv = acpi_eval_integer(handle, "FMAX", &fmax); 626 if (ACPI_FAILURE(rv)) { 627 fmax = ATZ_TMP_INVALID; 628 rc = 1; 629 } 630 rv = acpi_eval_integer(handle, "FRSP", &fcurr); 631 if (ACPI_FAILURE(rv)) { 632 fcurr = ATZ_TMP_INVALID; 633 rc = 1; 634 } 635 636 if (fanmin) 637 *fanmin = fmin; 638 if (fanmax) 639 *fanmax = fmax; 640 if (fancurrent) 641 *fancurrent = fcurr; 642 return rc; 643 } 644 645 #ifdef notyet 646 static ACPI_STATUS 647 acpitz_set_fanspeed(device_t dv, UINT32 fanspeed) 648 { 649 struct acpitz_softc *sc = device_private(dv); 650 ACPI_STATUS rv; 651 ACPI_HANDLE handle; 652 handle = sc->sc_devnode->ad_handle; 653 654 rv = acpi_eval_set_integer(handle, "FSSP", fanspeed); 655 if (ACPI_FAILURE(rv)) 656 aprint_debug_dev(dv, "failed to set fanspeed to %u rpm: %s\n", 657 fanspeed, AcpiFormatException(rv)); 658 return rv; 659 } 660 #endif 661 662 static void 663 acpitz_tick(void *opaque) 664 { 665 device_t dv = opaque; 666 struct acpitz_softc *sc = device_private(dv); 667 668 AcpiOsExecute(OSL_NOTIFY_HANDLER, acpitz_get_status, dv); 669 670 callout_schedule(&sc->sc_callout, sc->sc_zone.tzp * hz / 10); 671 } 672 673 static void 674 acpitz_init_envsys(device_t dv) 675 { 676 struct acpitz_softc *sc = device_private(dv); 677 678 sc->sc_sme = sysmon_envsys_create(); 679 sc->sc_sme->sme_get_limits = acpitz_get_limits; 680 sc->sc_sme->sme_cookie = sc; 681 sc->sc_sme->sme_name = device_xname(dv); 682 sc->sc_sme->sme_flags = SME_DISABLE_REFRESH; 683 684 sc->sc_temp_sensor.monitor = true; 685 sc->sc_temp_sensor.flags = ENVSYS_FMONLIMITS | ENVSYS_FMONNOTSUPP; 686 sc->sc_temp_sensor.units = ENVSYS_STEMP; 687 strlcpy(sc->sc_temp_sensor.desc, 688 sc->sc_zone.name, sizeof(sc->sc_temp_sensor.desc)); 689 if (sysmon_envsys_sensor_attach(sc->sc_sme, &sc->sc_temp_sensor)) 690 goto out; 691 692 if (sc->sc_have_fan) { 693 sc->sc_fan_sensor.monitor = true; 694 sc->sc_fan_sensor.flags = 695 ENVSYS_FMONLIMITS | ENVSYS_FMONNOTSUPP; 696 sc->sc_fan_sensor.units = ENVSYS_SFANRPM; 697 strlcpy(sc->sc_fan_sensor.desc, 698 "FAN", sizeof(sc->sc_fan_sensor.desc)); 699 if (sysmon_envsys_sensor_attach(sc->sc_sme, &sc->sc_fan_sensor)) 700 /* ignore error because fan sensor is optional */ 701 aprint_error_dev(dv, "unable to attach fan sensor\n"); 702 } 703 704 /* hook into sysmon */ 705 if (sysmon_envsys_register(sc->sc_sme) == 0) 706 return; 707 708 out: 709 aprint_error_dev(dv, "unable to register with sysmon\n"); 710 sysmon_envsys_destroy(sc->sc_sme); 711 } 712 713 static void 714 acpitz_get_limits(struct sysmon_envsys *sme, envsys_data_t *edata, 715 sysmon_envsys_lim_t *limits) 716 { 717 struct acpitz_softc *sc = sme->sme_cookie; 718 int i; 719 720 switch (edata->units) { 721 case ENVSYS_STEMP: 722 limits->sel_flags = 0; 723 if (sc->sc_zone.hot != ATZ_TMP_INVALID) { 724 limits->sel_flags |= PROP_CRITMAX; 725 limits->sel_critmax = ATZ2UKELVIN(sc->sc_zone.hot); 726 } else if (sc->sc_zone.crt != ATZ_TMP_INVALID) { 727 limits->sel_flags |= PROP_CRITMAX; 728 limits->sel_critmax = ATZ2UKELVIN(sc->sc_zone.crt); 729 } 730 for (i = 0; i < ATZ_NLEVELS; i++) { 731 if (sc->sc_zone.ac[i] != ATZ_TMP_INVALID) { 732 limits->sel_warnmax = 733 ATZ2UKELVIN(sc->sc_zone.ac[i]); 734 limits->sel_flags |= PROP_WARNMAX; 735 break; 736 } 737 } 738 break; 739 740 case ENVSYS_SFANRPM: 741 limits->sel_flags = 0; 742 if (sc->sc_zone.fanmin != ATZ_TMP_INVALID) { 743 limits->sel_flags |= PROP_WARNMIN; 744 limits->sel_warnmin = sc->sc_zone.fanmin; 745 sc->sc_fan_sensor.flags |= ENVSYS_FVALID_MIN; 746 } 747 if (sc->sc_zone.fanmax != ATZ_TMP_INVALID) { 748 limits->sel_flags |= PROP_WARNMAX; 749 limits->sel_warnmax = sc->sc_zone.fanmax; 750 sc->sc_fan_sensor.flags |= ENVSYS_FVALID_MAX; 751 } 752 break; 753 } 754 } 755