Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 | /***************************************************************************** * * Module Name: tz.c * $Revision: 38 $ * *****************************************************************************/ /* * Copyright (C) 2000, 2001 Andrew Grover * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * TBD: 1. Finish /proc interface (threshold values, _SCP changes, etc.) * 2. Update policy for ACPI 2.0 compliance * 3. Check for all required methods prior to enabling a threshold * 4. Support for multiple processors in a zone (passive cooling devices) */ #include <acpi.h> #include <bm.h> #include "tz.h" #define _COMPONENT ACPI_THERMAL MODULE_NAME ("tz") /**************************************************************************** * Internal Functions ****************************************************************************/ /**************************************************************************** * * FUNCTION: tz_print * * PARAMETERS: * * RETURN: * * DESCRIPTION: Prints out information on a specific thermal zone. * ****************************************************************************/ void tz_print ( TZ_CONTEXT *thermal_zone) { return; } /**************************************************************************** * * FUNCTION: tz_get_temperaturee * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_get_temperature ( TZ_CONTEXT *thermal_zone, u32 *temperature) { ACPI_STATUS status = AE_OK; if (!thermal_zone || !temperature) { return(AE_BAD_PARAMETER); } /* * Evaluate the _TMP driver method to get the current temperature. */ status = bm_evaluate_simple_integer(thermal_zone->acpi_handle, "_TMP", temperature); return(status); } /**************************************************************************** * * FUNCTION: tz_set_cooling_preference * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_set_cooling_preference ( TZ_CONTEXT *thermal_zone, TZ_COOLING_MODE cooling_mode) { ACPI_STATUS status = AE_OK; ACPI_OBJECT_LIST arg_list; ACPI_OBJECT arg0; if (!thermal_zone || ((cooling_mode != TZ_COOLING_MODE_ACTIVE) && (cooling_mode != TZ_COOLING_MODE_PASSIVE))) { return(AE_BAD_PARAMETER); } /* * Build the argument list, which simply consists of the current * cooling preference. */ MEMSET(&arg_list, 0, sizeof(ACPI_OBJECT)); arg_list.count = 1; arg_list.pointer = &arg0; MEMSET(&arg0, 0, sizeof(ACPI_OBJECT)); arg0.type = ACPI_TYPE_INTEGER; arg0.integer.value = cooling_mode; /* * Evaluate "_SCP" - setting the new cooling preference. */ status = acpi_evaluate_object(thermal_zone->acpi_handle, "_SCP", &arg_list, NULL); return(status); } /*************************************************************************** * * FUNCTION: tz_get_single_threshold * * PARAMETERS: * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_get_single_threshold ( TZ_CONTEXT *thermal_zone, TZ_THRESHOLD *threshold) { ACPI_STATUS status = AE_OK; if (!thermal_zone || !threshold) { return(AE_BAD_PARAMETER); } switch (threshold->type) { /* * Critical Threshold: * ------------------- */ case TZ_THRESHOLD_CRITICAL: threshold->index = 0; threshold->cooling_devices.count = 0; status = bm_evaluate_simple_integer( thermal_zone->acpi_handle, "_CRT", &(threshold->temperature)); break; /* * Passive Threshold: * ------------------ * Evaluate _PSV to get the threshold temperature and _PSL to get * references to all passive cooling devices. */ case TZ_THRESHOLD_PASSIVE: threshold->index = 0; threshold->cooling_devices.count = 0; status = bm_evaluate_simple_integer( thermal_zone->acpi_handle, "_PSV", &(threshold->temperature)); if (ACPI_SUCCESS(status)) { status = bm_evaluate_reference_list( thermal_zone->acpi_handle, "_PSL", &(threshold->cooling_devices)); } break; /* * Active Thresholds: * ------------------ * Evaluate _ACx to get all threshold temperatures, and _ALx to get * references to all passive cooling devices. */ case TZ_THRESHOLD_ACTIVE: { char object_name[5] = {'_','A', 'C', ('0'+threshold->index),'\0'}; status = bm_evaluate_simple_integer( thermal_zone->acpi_handle, object_name, &(threshold->temperature)); if (ACPI_SUCCESS(status)) { object_name[2] = 'L'; status = bm_evaluate_reference_list( thermal_zone->acpi_handle, object_name, &(threshold->cooling_devices)); } } break; default: status = AE_SUPPORT; break; } return(status); } /**************************************************************************** * * FUNCTION: tz_get_thresholds * * PARAMETERS: thermal_zone - Identifies the thermal zone to parse. * buffer - Output buffer. * * RETURN: ACPI_STATUS result code. * * DESCRIPTION: Builds a TZ_THRESHOLD_LIST structure containing information * on all thresholds for a given thermal zone. * * NOTES: The current design limits the number of cooling devices * per theshold to the value specified by BM_MAX_HANDLES. * This simplifies parsing of thresholds by allowing a maximum * threshold list size to be computed (and enforced) -- which * allows all thresholds to be parsed in a single pass (since * memory must be contiguous when returned in the ACPI_BUFFER). * ****************************************************************************/ ACPI_STATUS tz_get_thresholds ( TZ_CONTEXT *thermal_zone, TZ_THRESHOLD_LIST *threshold_list) { ACPI_STATUS status = AE_OK; TZ_THRESHOLD *threshold = NULL; u32 i = 0; if (!thermal_zone || !threshold_list) { return(AE_BAD_PARAMETER); } threshold_list->count = 0; /* * Critical threshold: * ------------------- * Every thermal zone must have one! */ threshold = &(threshold_list->thresholds[threshold_list->count]); threshold->type = TZ_THRESHOLD_CRITICAL; status = tz_get_single_threshold(thermal_zone, threshold); if (ACPI_SUCCESS(status)) { (threshold_list->count)++; } else { return(status); } /* * Passive threshold: * ------------------ */ threshold = &(threshold_list->thresholds[threshold_list->count]); threshold->type = TZ_THRESHOLD_PASSIVE; status = tz_get_single_threshold(thermal_zone, threshold); if (ACPI_SUCCESS(status)) { (threshold_list->count)++; } /* * Active threshold: * ----------------- * Note that active thresholds are sorted by index (e.g. _AC0, * _AC1, ...), and thus from highest (_AC0) to lowest (_AC9) * temperature. */ for (i = 0; i < TZ_MAX_ACTIVE_THRESHOLDS; i++) { threshold = &(threshold_list->thresholds[threshold_list->count]); threshold->type = TZ_THRESHOLD_ACTIVE; threshold->index = i; status = tz_get_single_threshold(thermal_zone, threshold); if (ACPI_SUCCESS(status)) { (threshold_list->count)++; } else { threshold->type = TZ_THRESHOLD_UNKNOWN; threshold->index = 0; thermal_zone->policy.active.threshold_count = i; break; } } return(AE_OK); } /**************************************************************************** * * FUNCTION: tz_add_device * * PARAMETERS: <none> * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_add_device ( BM_HANDLE device_handle, void **context) { ACPI_STATUS status = AE_OK; TZ_CONTEXT *thermal_zone = NULL; BM_DEVICE *device = NULL; ACPI_HANDLE tmp_handle = NULL; static u32 zone_count = 0; if (!context || *context) { return(AE_BAD_PARAMETER); } /* * Get information on this device. */ status = bm_get_device_info(device_handle, &device); if (ACPI_FAILURE(status)) { return(status); } /* * Allocate a new Thermal Zone device. */ thermal_zone = acpi_os_callocate(sizeof(TZ_CONTEXT)); if (!thermal_zone) { return AE_NO_MEMORY; } thermal_zone->device_handle = device->handle; thermal_zone->acpi_handle = device->acpi_handle; /* TBD: How to manage 'uid' when zones are Pn_p? */ sprintf(thermal_zone->uid, "%d", zone_count++); /* * _TMP? * ----- */ status = acpi_get_handle(thermal_zone->acpi_handle, "_TMP", &tmp_handle); if (ACPI_FAILURE(status)) { goto end; } /* * Initialize Policy: * ------------------ * TBD: Move all thermal zone policy to user-mode daemon... */ status = tz_policy_add_device(thermal_zone); if (ACPI_FAILURE(status)) { goto end; } status = tz_osl_add_device(thermal_zone); if (ACPI_FAILURE(status)) { goto end; } *context = thermal_zone; tz_print(thermal_zone); end: if (ACPI_FAILURE(status)) { acpi_os_free(thermal_zone); } return(status); } /**************************************************************************** * * FUNCTION: tz_remove_device * * PARAMETERS: <none> * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_remove_device ( void **context) { ACPI_STATUS status = AE_OK; TZ_CONTEXT *thermal_zone = NULL; if (!context || !*context) { return(AE_BAD_PARAMETER); } thermal_zone = (TZ_CONTEXT*)(*context); status = tz_osl_remove_device(thermal_zone); /* * Remove Policy: * -------------- * TBD: Move all thermal zone policy to user-mode daemon... */ status = tz_policy_remove_device(thermal_zone); if (ACPI_FAILURE(status)) { return(status); } acpi_os_free(thermal_zone); return(status); } /**************************************************************************** * External Functions ****************************************************************************/ /**************************************************************************** * * FUNCTION: tz_initialize * * PARAMETERS: <none> * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_initialize (void) { ACPI_STATUS status = AE_OK; BM_DEVICE_ID criteria; BM_DRIVER driver; MEMSET(&criteria, 0, sizeof(BM_DEVICE_ID)); MEMSET(&driver, 0, sizeof(BM_DRIVER)); /* * Register driver for thermal zone devices. */ criteria.type = BM_TYPE_THERMAL_ZONE; driver.notify = &tz_notify; driver.request = &tz_request; status = bm_register_driver(&criteria, &driver); return(status); } /**************************************************************************** * * FUNCTION: tz_terminate * * PARAMETERS: <none> * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_terminate (void) { ACPI_STATUS status = AE_OK; BM_DEVICE_ID criteria; BM_DRIVER driver; MEMSET(&criteria, 0, sizeof(BM_DEVICE_ID)); MEMSET(&driver, 0, sizeof(BM_DRIVER)); /* * Unregister driver for thermal zone devices. */ criteria.type = BM_TYPE_THERMAL_ZONE; driver.notify = &tz_notify; driver.request = &tz_request; status = bm_unregister_driver(&criteria, &driver); return(status); } /**************************************************************************** * * FUNCTION: tz_notify * * PARAMETERS: <none> * * RETURN: * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_notify ( BM_NOTIFY notify_type, BM_HANDLE device_handle, void **context) { ACPI_STATUS status = AE_OK; TZ_CONTEXT *thermal_zone = NULL; if (!context) { return(AE_BAD_PARAMETER); } thermal_zone = (TZ_CONTEXT*)*context; switch (notify_type) { case BM_NOTIFY_DEVICE_ADDED: status = tz_add_device(device_handle, context); break; case BM_NOTIFY_DEVICE_REMOVED: status = tz_remove_device(context); break; case TZ_NOTIFY_TEMPERATURE_CHANGE: /* -------------------------------------------- */ /* TBD: Remove when policy moves to user-mode. */ tz_policy_check(*context); /* -------------------------------------------- */ status = tz_get_temperature(thermal_zone, &(thermal_zone->policy.temperature)); if (ACPI_SUCCESS(status)) { status = tz_osl_generate_event(notify_type, thermal_zone); } break; case TZ_NOTIFY_THRESHOLD_CHANGE: /* -------------------------------------------- */ /* TBD: Remove when policy moves to user-mode. */ status = tz_policy_remove_device(thermal_zone); if (ACPI_SUCCESS(status)) { status = tz_policy_add_device(thermal_zone); } /* -------------------------------------------- */ status = tz_osl_generate_event(notify_type, thermal_zone); break; case TZ_NOTIFY_DEVICE_LISTS_CHANGE: /* -------------------------------------------- */ /* TBD: Remove when policy moves to user-mode. */ status = tz_policy_remove_device(thermal_zone); if (ACPI_SUCCESS(status)) { status = tz_policy_add_device(thermal_zone); } /* -------------------------------------------- */ status = tz_osl_generate_event(notify_type, thermal_zone); break; default: status = AE_SUPPORT; break; } return(status); } /**************************************************************************** * * FUNCTION: tz_request * * PARAMETERS: * * RETURN: Exception code. * * DESCRIPTION: * ****************************************************************************/ ACPI_STATUS tz_request ( BM_REQUEST *request, void *context) { ACPI_STATUS status = AE_OK; TZ_CONTEXT *thermal_zone = NULL; /* * Must have a valid request structure and context. */ if (!request || !context) { return(AE_BAD_PARAMETER); } thermal_zone = (TZ_CONTEXT*)context; /* * Handle request: * --------------- */ switch (request->command) { default: status = AE_SUPPORT; break; } request->status = status; return(status); } |