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 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 /******************************************************************************* * * Module Name: dbmethod - Debug commands for control methods * ******************************************************************************/ #include <acpi/acpi.h> #include "accommon.h" #include "acdispat.h" #include "acnamesp.h" #include "acdebug.h" #include "acparser.h" #include "acpredef.h" #define _COMPONENT ACPI_CA_DEBUGGER ACPI_MODULE_NAME("dbmethod") /* Local prototypes */ static acpi_status acpi_db_walk_for_execute(acpi_handle obj_handle, u32 nesting_level, void *context, void **return_value); /******************************************************************************* * * FUNCTION: acpi_db_set_method_breakpoint * * PARAMETERS: location - AML offset of breakpoint * walk_state - Current walk info * op - Current Op (from parse walk) * * RETURN: None * * DESCRIPTION: Set a breakpoint in a control method at the specified * AML offset * ******************************************************************************/ void acpi_db_set_method_breakpoint(char *location, struct acpi_walk_state *walk_state, union acpi_parse_object *op) { u32 address; u32 aml_offset; if (!op) { acpi_os_printf("There is no method currently executing\n"); return; } /* Get and verify the breakpoint address */ address = strtoul(location, NULL, 16); aml_offset = (u32)ACPI_PTR_DIFF(op->common.aml, walk_state->parser_state.aml_start); if (address <= aml_offset) { acpi_os_printf("Breakpoint %X is beyond current address %X\n", address, aml_offset); } /* Save breakpoint in current walk */ walk_state->user_breakpoint = address; acpi_os_printf("Breakpoint set at AML offset %X\n", address); } /******************************************************************************* * * FUNCTION: acpi_db_set_method_call_breakpoint * * PARAMETERS: op - Current Op (from parse walk) * * RETURN: None * * DESCRIPTION: Set a breakpoint in a control method at the specified * AML offset * ******************************************************************************/ void acpi_db_set_method_call_breakpoint(union acpi_parse_object *op) { if (!op) { acpi_os_printf("There is no method currently executing\n"); return; } acpi_gbl_step_to_next_call = TRUE; } /******************************************************************************* * * FUNCTION: acpi_db_set_method_data * * PARAMETERS: type_arg - L for local, A for argument * index_arg - which one * value_arg - Value to set. * * RETURN: None * * DESCRIPTION: Set a local or argument for the running control method. * NOTE: only object supported is Number. * ******************************************************************************/ void acpi_db_set_method_data(char *type_arg, char *index_arg, char *value_arg) { char type; u32 index; u32 value; struct acpi_walk_state *walk_state; union acpi_operand_object *obj_desc; acpi_status status; struct acpi_namespace_node *node; /* Validate type_arg */ acpi_ut_strupr(type_arg); type = type_arg[0]; if ((type != 'L') && (type != 'A') && (type != 'N')) { acpi_os_printf("Invalid SET operand: %s\n", type_arg); return; } value = strtoul(value_arg, NULL, 16); if (type == 'N') { node = acpi_db_convert_to_node(index_arg); if (!node) { return; } if (node->type != ACPI_TYPE_INTEGER) { acpi_os_printf("Can only set Integer nodes\n"); return; } obj_desc = node->object; obj_desc->integer.value = value; return; } /* Get the index and value */ index = strtoul(index_arg, NULL, 16); walk_state = acpi_ds_get_current_walk_state(acpi_gbl_current_walk_list); if (!walk_state) { acpi_os_printf("There is no method currently executing\n"); return; } /* Create and initialize the new object */ obj_desc = acpi_ut_create_integer_object((u64)value); if (!obj_desc) { acpi_os_printf("Could not create an internal object\n"); return; } /* Store the new object into the target */ switch (type) { case 'A': /* Set a method argument */ if (index > ACPI_METHOD_MAX_ARG) { acpi_os_printf("Arg%u - Invalid argument name\n", index); goto cleanup; } status = acpi_ds_store_object_to_local(ACPI_REFCLASS_ARG, index, obj_desc, walk_state); if (ACPI_FAILURE(status)) { goto cleanup; } obj_desc = walk_state->arguments[index].object; acpi_os_printf("Arg%u: ", index); acpi_db_display_internal_object(obj_desc, walk_state); break; case 'L': /* Set a method local */ if (index > ACPI_METHOD_MAX_LOCAL) { acpi_os_printf ("Local%u - Invalid local variable name\n", index); goto cleanup; } status = acpi_ds_store_object_to_local(ACPI_REFCLASS_LOCAL, index, obj_desc, walk_state); if (ACPI_FAILURE(status)) { goto cleanup; } obj_desc = walk_state->local_variables[index].object; acpi_os_printf("Local%u: ", index); acpi_db_display_internal_object(obj_desc, walk_state); break; default: break; } cleanup: acpi_ut_remove_reference(obj_desc); } #ifdef ACPI_DISASSEMBLER /******************************************************************************* * * FUNCTION: acpi_db_disassemble_aml * * PARAMETERS: statements - Number of statements to disassemble * op - Current Op (from parse walk) * * RETURN: None * * DESCRIPTION: Display disassembled AML (ASL) starting from Op for the number * of statements specified. * ******************************************************************************/ void acpi_db_disassemble_aml(char *statements, union acpi_parse_object *op) { u32 num_statements = 8; if (!op) { acpi_os_printf("There is no method currently executing\n"); return; } if (statements) { num_statements = strtoul(statements, NULL, 0); } acpi_dm_disassemble(NULL, op, num_statements); } /******************************************************************************* * * FUNCTION: acpi_db_disassemble_method * * PARAMETERS: name - Name of control method * * RETURN: None * * DESCRIPTION: Display disassembled AML (ASL) starting from Op for the number * of statements specified. * ******************************************************************************/ acpi_status acpi_db_disassemble_method(char *name) { acpi_status status; union acpi_parse_object *op; struct acpi_walk_state *walk_state; union acpi_operand_object *obj_desc; struct acpi_namespace_node *method; method = acpi_db_convert_to_node(name); if (!method) { return (AE_BAD_PARAMETER); } if (method->type != ACPI_TYPE_METHOD) { ACPI_ERROR((AE_INFO, "%s (%s): Object must be a control method", name, acpi_ut_get_type_name(method->type))); return (AE_BAD_PARAMETER); } obj_desc = method->object; op = acpi_ps_create_scope_op(obj_desc->method.aml_start); if (!op) { return (AE_NO_MEMORY); } /* Create and initialize a new walk state */ walk_state = acpi_ds_create_walk_state(0, op, NULL, NULL); if (!walk_state) { return (AE_NO_MEMORY); } status = acpi_ds_init_aml_walk(walk_state, op, NULL, obj_desc->method.aml_start, obj_desc->method.aml_length, NULL, ACPI_IMODE_LOAD_PASS1); if (ACPI_FAILURE(status)) { return (status); } status = acpi_ut_allocate_owner_id(&obj_desc->method.owner_id); if (ACPI_FAILURE(status)) { return (status); } walk_state->owner_id = obj_desc->method.owner_id; /* Push start scope on scope stack and make it current */ status = acpi_ds_scope_stack_push(method, method->type, walk_state); if (ACPI_FAILURE(status)) { return (status); } /* Parse the entire method AML including deferred operators */ walk_state->parse_flags &= ~ACPI_PARSE_DELETE_TREE; walk_state->parse_flags |= ACPI_PARSE_DISASSEMBLE; status = acpi_ps_parse_aml(walk_state); if (ACPI_FAILURE(status)) { return (status); } (void)acpi_dm_parse_deferred_ops(op); /* Now we can disassemble the method */ acpi_gbl_dm_opt_verbose = FALSE; acpi_dm_disassemble(NULL, op, 0); acpi_gbl_dm_opt_verbose = TRUE; acpi_ps_delete_parse_tree(op); /* Method cleanup */ acpi_ns_delete_namespace_subtree(method); acpi_ns_delete_namespace_by_owner(obj_desc->method.owner_id); acpi_ut_release_owner_id(&obj_desc->method.owner_id); return (AE_OK); } #endif /******************************************************************************* * * FUNCTION: acpi_db_walk_for_execute * * PARAMETERS: Callback from walk_namespace * * RETURN: Status * * DESCRIPTION: Batch execution module. Currently only executes predefined * ACPI names. * ******************************************************************************/ static acpi_status acpi_db_walk_for_execute(acpi_handle obj_handle, u32 nesting_level, void *context, void **return_value) { struct acpi_namespace_node *node = (struct acpi_namespace_node *)obj_handle; struct acpi_db_execute_walk *info = (struct acpi_db_execute_walk *)context; struct acpi_buffer return_obj; acpi_status status; char *pathname; u32 i; struct acpi_device_info *obj_info; struct acpi_object_list param_objects; union acpi_object params[ACPI_METHOD_NUM_ARGS]; const union acpi_predefined_info *predefined; predefined = acpi_ut_match_predefined_method(node->name.ascii); if (!predefined) { return (AE_OK); } if (node->type == ACPI_TYPE_LOCAL_SCOPE) { return (AE_OK); } pathname = acpi_ns_get_external_pathname(node); if (!pathname) { return (AE_OK); } /* Get the object info for number of method parameters */ status = acpi_get_object_info(obj_handle, &obj_info); if (ACPI_FAILURE(status)) { ACPI_FREE(pathname); return (status); } param_objects.pointer = NULL; param_objects.count = 0; if (obj_info->type == ACPI_TYPE_METHOD) { /* Setup default parameters */ for (i = 0; i < obj_info->param_count; i++) { params[i].type = ACPI_TYPE_INTEGER; params[i].integer.value = 1; } param_objects.pointer = params; param_objects.count = obj_info->param_count; } ACPI_FREE(obj_info); return_obj.pointer = NULL; return_obj.length = ACPI_ALLOCATE_BUFFER; /* Do the actual method execution */ acpi_gbl_method_executing = TRUE; status = acpi_evaluate_object(node, NULL, ¶m_objects, &return_obj); acpi_os_printf("%-32s returned %s\n", pathname, acpi_format_exception(status)); acpi_gbl_method_executing = FALSE; ACPI_FREE(pathname); /* Ignore status from method execution */ status = AE_OK; /* Update count, check if we have executed enough methods */ info->count++; if (info->count >= info->max_count) { status = AE_CTRL_TERMINATE; } return (status); } /******************************************************************************* * * FUNCTION: acpi_db_evaluate_predefined_names * * PARAMETERS: None * * RETURN: None * * DESCRIPTION: Namespace batch execution. Execute predefined names in the * namespace, up to the max count, if specified. * ******************************************************************************/ void acpi_db_evaluate_predefined_names(void) { struct acpi_db_execute_walk info; info.count = 0; info.max_count = ACPI_UINT32_MAX; /* Search all nodes in namespace */ (void)acpi_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX, acpi_db_walk_for_execute, NULL, (void *)&info, NULL); acpi_os_printf("Evaluated %u predefined names in the namespace\n", info.count); } |