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 | /****************************************************************************** * * Module Name: ammisc - ACPI AML (p-code) execution - specific opcodes * $Revision: 73 $ * *****************************************************************************/ /* * Copyright (C) 2000, 2001 R. Byron Moore * * 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 */ #include "acpi.h" #include "acparser.h" #include "acinterp.h" #include "amlcode.h" #include "acdispat.h" #define _COMPONENT INTERPRETER MODULE_NAME ("ammisc") /******************************************************************************* * * FUNCTION: Acpi_aml_exec_fatal * * PARAMETERS: none * * RETURN: Status. If the OS returns from the OSD call, we just keep * on going. * * DESCRIPTION: Execute Fatal operator * * ACPI SPECIFICATION REFERENCES: * Def_fatal := Fatal_op Fatal_type Fatal_code Fatal_arg * Fatal_type := Byte_data * Fatal_code := DWord_data * Fatal_arg := Term_arg=>Integer * ******************************************************************************/ ACPI_STATUS acpi_aml_exec_fatal ( ACPI_WALK_STATE *walk_state) { ACPI_OPERAND_OBJECT *type_desc; ACPI_OPERAND_OBJECT *code_desc; ACPI_OPERAND_OBJECT *arg_desc; ACPI_STATUS status; /* Resolve operands */ status = acpi_aml_resolve_operands (AML_FATAL_OP, WALK_OPERANDS, walk_state); /* Get operands */ status |= acpi_ds_obj_stack_pop_object (&arg_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&code_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&type_desc, walk_state); if (ACPI_FAILURE (status)) { /* Invalid parameters on object stack */ goto cleanup; } /* Def_fatal := Fatal_op Fatal_type Fatal_code Fatal_arg */ /* * TBD: [Unhandled] call OSD interface to notify OS of fatal error * requiring shutdown! */ cleanup: /* Free the operands */ acpi_cm_remove_reference (arg_desc); acpi_cm_remove_reference (code_desc); acpi_cm_remove_reference (type_desc); /* If we get back from the OS call, we might as well keep going. */ REPORT_WARNING (("An AML \"fatal\" Opcode (Fatal_op) was executed\n")); return (AE_OK); } /******************************************************************************* * * FUNCTION: Acpi_aml_exec_index * * PARAMETERS: none * * RETURN: Status * * DESCRIPTION: Execute Index operator * * ALLOCATION: Deletes one operand descriptor -- other remains on stack * * ACPI SPECIFICATION REFERENCES: * Def_index := Index_op Buff_pkg_obj Index_value Result * Index_value := Term_arg=>Integer * Name_string := <Root_char Name_path> | <Prefix_path Name_path> * Result := Super_name * Super_name := Name_string | Arg_obj | Local_obj | Debug_obj | Def_index * Local4_op | Local5_op | Local6_op | Local7_op * ******************************************************************************/ ACPI_STATUS acpi_aml_exec_index ( ACPI_WALK_STATE *walk_state, ACPI_OPERAND_OBJECT **return_desc) { ACPI_OPERAND_OBJECT *obj_desc; ACPI_OPERAND_OBJECT *idx_desc; ACPI_OPERAND_OBJECT *res_desc; ACPI_OPERAND_OBJECT *ret_desc = NULL; ACPI_OPERAND_OBJECT *tmp_desc; ACPI_STATUS status; /* Resolve operands */ /* First operand can be either a package or a buffer */ status = acpi_aml_resolve_operands (AML_INDEX_OP, WALK_OPERANDS, walk_state); /* Get all operands */ status |= acpi_ds_obj_stack_pop_object (&res_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&idx_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&obj_desc, walk_state); if (ACPI_FAILURE (status)) { /* Invalid parameters on object stack */ goto cleanup; } /* Create the internal return object */ ret_desc = acpi_cm_create_internal_object (INTERNAL_TYPE_REFERENCE); if (!ret_desc) { status = AE_NO_MEMORY; goto cleanup; } /* * At this point, the Obj_desc operand is either a Package or a Buffer */ if (obj_desc->common.type == ACPI_TYPE_PACKAGE) { /* Object to be indexed is a Package */ if (idx_desc->integer.value >= obj_desc->package.count) { status = AE_AML_PACKAGE_LIMIT; goto cleanup; } if ((res_desc->common.type == INTERNAL_TYPE_REFERENCE) && (res_desc->reference.op_code == AML_ZERO_OP)) { /* * There is no actual result descriptor (the Zero_op Result * descriptor is a placeholder), so just delete the placeholder and * return a reference to the package element */ acpi_cm_remove_reference (res_desc); } else { /* * Each element of the package is an internal object. Get the one * we are after. */ tmp_desc = obj_desc->package.elements[idx_desc->integer.value]; ret_desc->reference.op_code = AML_INDEX_OP; ret_desc->reference.target_type = tmp_desc->common.type; ret_desc->reference.object = tmp_desc; status = acpi_aml_exec_store (ret_desc, res_desc, walk_state); ret_desc->reference.object = NULL; } /* * The local return object must always be a reference to the package element, * not the element itself. */ ret_desc->reference.op_code = AML_INDEX_OP; ret_desc->reference.target_type = ACPI_TYPE_PACKAGE; ret_desc->reference.where = &obj_desc->package.elements[idx_desc->integer.value]; } else { /* Object to be indexed is a Buffer */ if (idx_desc->integer.value >= obj_desc->buffer.length) { status = AE_AML_BUFFER_LIMIT; goto cleanup; } ret_desc->reference.op_code = AML_INDEX_OP; ret_desc->reference.target_type = ACPI_TYPE_BUFFER_FIELD; ret_desc->reference.object = obj_desc; ret_desc->reference.offset = (u32) idx_desc->integer.value; status = acpi_aml_exec_store (ret_desc, res_desc, walk_state); } cleanup: /* Always delete operands */ acpi_cm_remove_reference (obj_desc); acpi_cm_remove_reference (idx_desc); /* Delete return object on error */ if (ACPI_FAILURE (status)) { acpi_cm_remove_reference (res_desc); if (ret_desc) { acpi_cm_remove_reference (ret_desc); ret_desc = NULL; } } /* Set the return object and exit */ *return_desc = ret_desc; return (status); } /******************************************************************************* * * FUNCTION: Acpi_aml_exec_match * * PARAMETERS: none * * RETURN: Status * * DESCRIPTION: Execute Match operator * * ACPI SPECIFICATION REFERENCES: * Def_match := Match_op Search_pkg Opcode1 Operand1 * Opcode2 Operand2 Start_index * Opcode1 := Byte_data: MTR, MEQ, MLE, MLT, MGE, or MGT * Opcode2 := Byte_data: MTR, MEQ, MLE, MLT, MGE, or MGT * Operand1 := Term_arg=>Integer * Operand2 := Term_arg=>Integer * Search_pkg := Term_arg=>Package_object * Start_index := Term_arg=>Integer * ******************************************************************************/ ACPI_STATUS acpi_aml_exec_match ( ACPI_WALK_STATE *walk_state, ACPI_OPERAND_OBJECT **return_desc) { ACPI_OPERAND_OBJECT *pkg_desc; ACPI_OPERAND_OBJECT *op1_desc; ACPI_OPERAND_OBJECT *V1_desc; ACPI_OPERAND_OBJECT *op2_desc; ACPI_OPERAND_OBJECT *V2_desc; ACPI_OPERAND_OBJECT *start_desc; ACPI_OPERAND_OBJECT *ret_desc = NULL; ACPI_STATUS status; u32 index; u32 match_value = (u32) -1; /* Resolve all operands */ status = acpi_aml_resolve_operands (AML_MATCH_OP, WALK_OPERANDS, walk_state); /* Get all operands */ status |= acpi_ds_obj_stack_pop_object (&start_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&V2_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&op2_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&V1_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&op1_desc, walk_state); status |= acpi_ds_obj_stack_pop_object (&pkg_desc, walk_state); if (ACPI_FAILURE (status)) { /* Invalid parameters on object stack */ goto cleanup; } /* Validate match comparison sub-opcodes */ if ((op1_desc->integer.value > MAX_MATCH_OPERATOR) || (op2_desc->integer.value > MAX_MATCH_OPERATOR)) { status = AE_AML_OPERAND_VALUE; goto cleanup; } index = (u32) start_desc->integer.value; if (index >= (u32) pkg_desc->package.count) { status = AE_AML_PACKAGE_LIMIT; goto cleanup; } ret_desc = acpi_cm_create_internal_object (ACPI_TYPE_INTEGER); if (!ret_desc) { status = AE_NO_MEMORY; goto cleanup; } /* * Examine each element until a match is found. Within the loop, * "continue" signifies that the current element does not match * and the next should be examined. * Upon finding a match, the loop will terminate via "break" at * the bottom. If it terminates "normally", Match_value will be -1 * (its initial value) indicating that no match was found. When * returned as a Number, this will produce the Ones value as specified. */ for ( ; index < pkg_desc->package.count; ++index) { /* * Treat any NULL or non-numeric elements as non-matching. * TBD [Unhandled] - if an element is a Name, * should we examine its value? */ if (!pkg_desc->package.elements[index] || ACPI_TYPE_INTEGER != pkg_desc->package.elements[index]->common.type) { continue; } /* * Within these switch statements: * "break" (exit from the switch) signifies a match; * "continue" (proceed to next iteration of enclosing * "for" loop) signifies a non-match. */ switch (op1_desc->integer.value) { case MATCH_MTR: /* always true */ break; case MATCH_MEQ: /* true if equal */ if (pkg_desc->package.elements[index]->integer.value != V1_desc->integer.value) { continue; } break; case MATCH_MLE: /* true if less than or equal */ if (pkg_desc->package.elements[index]->integer.value > V1_desc->integer.value) { continue; } break; case MATCH_MLT: /* true if less than */ if (pkg_desc->package.elements[index]->integer.value >= V1_desc->integer.value) { continue; } break; case MATCH_MGE: /* true if greater than or equal */ if (pkg_desc->package.elements[index]->integer.value < V1_desc->integer.value) { continue; } break; case MATCH_MGT: /* true if greater than */ if (pkg_desc->package.elements[index]->integer.value <= V1_desc->integer.value) { continue; } break; default: /* undefined */ continue; } switch(op2_desc->integer.value) { case MATCH_MTR: break; case MATCH_MEQ: if (pkg_desc->package.elements[index]->integer.value != V2_desc->integer.value) { continue; } break; case MATCH_MLE: if (pkg_desc->package.elements[index]->integer.value > V2_desc->integer.value) { continue; } break; case MATCH_MLT: if (pkg_desc->package.elements[index]->integer.value >= V2_desc->integer.value) { continue; } break; case MATCH_MGE: if (pkg_desc->package.elements[index]->integer.value < V2_desc->integer.value) { continue; } break; case MATCH_MGT: if (pkg_desc->package.elements[index]->integer.value <= V2_desc->integer.value) { continue; } break; default: continue; } /* Match found: exit from loop */ match_value = index; break; } /* Match_value is the return value */ ret_desc->integer.value = match_value; cleanup: /* Free the operands */ acpi_cm_remove_reference (start_desc); acpi_cm_remove_reference (V2_desc); acpi_cm_remove_reference (op2_desc); acpi_cm_remove_reference (V1_desc); acpi_cm_remove_reference (op1_desc); acpi_cm_remove_reference (pkg_desc); /* Delete return object on error */ if (ACPI_FAILURE (status) && (ret_desc)) { acpi_cm_remove_reference (ret_desc); ret_desc = NULL; } /* Set the return object and exit */ *return_desc = ret_desc; return (status); } |