Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*******************************************************************************
  2 *
  3 * Module Name: dbmethod - Debug commands for control methods
  4 *
  5 ******************************************************************************/
  6
  7/*
  8 * Copyright (C) 2000 - 2016, Intel Corp.
  9 * All rights reserved.
 10 *
 11 * Redistribution and use in source and binary forms, with or without
 12 * modification, are permitted provided that the following conditions
 13 * are met:
 14 * 1. Redistributions of source code must retain the above copyright
 15 *    notice, this list of conditions, and the following disclaimer,
 16 *    without modification.
 17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 18 *    substantially similar to the "NO WARRANTY" disclaimer below
 19 *    ("Disclaimer") and any redistribution must be conditioned upon
 20 *    including a substantially similar Disclaimer requirement for further
 21 *    binary redistribution.
 22 * 3. Neither the names of the above-listed copyright holders nor the names
 23 *    of any contributors may be used to endorse or promote products derived
 24 *    from this software without specific prior written permission.
 25 *
 26 * Alternatively, this software may be distributed under the terms of the
 27 * GNU General Public License ("GPL") version 2 as published by the Free
 28 * Software Foundation.
 29 *
 30 * NO WARRANTY
 31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 41 * POSSIBILITY OF SUCH DAMAGES.
 42 */
 43
 44#include <acpi/acpi.h>
 45#include "accommon.h"
 46#include "acdispat.h"
 47#include "acnamesp.h"
 48#include "acdebug.h"
 49#include "acparser.h"
 50#include "acpredef.h"
 51
 52#define _COMPONENT          ACPI_CA_DEBUGGER
 53ACPI_MODULE_NAME("dbmethod")
 54
 
 
 
 
 
 
 
 55/*******************************************************************************
 56 *
 57 * FUNCTION:    acpi_db_set_method_breakpoint
 58 *
 59 * PARAMETERS:  location            - AML offset of breakpoint
 60 *              walk_state          - Current walk info
 61 *              op                  - Current Op (from parse walk)
 62 *
 63 * RETURN:      None
 64 *
 65 * DESCRIPTION: Set a breakpoint in a control method at the specified
 66 *              AML offset
 67 *
 68 ******************************************************************************/
 
 69void
 70acpi_db_set_method_breakpoint(char *location,
 71			      struct acpi_walk_state *walk_state,
 72			      union acpi_parse_object *op)
 73{
 74	u32 address;
 75	u32 aml_offset;
 76
 77	if (!op) {
 78		acpi_os_printf("There is no method currently executing\n");
 79		return;
 80	}
 81
 82	/* Get and verify the breakpoint address */
 83
 84	address = strtoul(location, NULL, 16);
 85	aml_offset = (u32)ACPI_PTR_DIFF(op->common.aml,
 86					walk_state->parser_state.aml_start);
 87	if (address <= aml_offset) {
 88		acpi_os_printf("Breakpoint %X is beyond current address %X\n",
 89			       address, aml_offset);
 90	}
 91
 92	/* Save breakpoint in current walk */
 93
 94	walk_state->user_breakpoint = address;
 95	acpi_os_printf("Breakpoint set at AML offset %X\n", address);
 96}
 97
 98/*******************************************************************************
 99 *
100 * FUNCTION:    acpi_db_set_method_call_breakpoint
101 *
102 * PARAMETERS:  op                  - Current Op (from parse walk)
103 *
104 * RETURN:      None
105 *
106 * DESCRIPTION: Set a breakpoint in a control method at the specified
107 *              AML offset
108 *
109 ******************************************************************************/
110
111void acpi_db_set_method_call_breakpoint(union acpi_parse_object *op)
112{
113
114	if (!op) {
115		acpi_os_printf("There is no method currently executing\n");
116		return;
117	}
118
119	acpi_gbl_step_to_next_call = TRUE;
120}
121
122/*******************************************************************************
123 *
124 * FUNCTION:    acpi_db_set_method_data
125 *
126 * PARAMETERS:  type_arg        - L for local, A for argument
127 *              index_arg       - which one
128 *              value_arg       - Value to set.
129 *
130 * RETURN:      None
131 *
132 * DESCRIPTION: Set a local or argument for the running control method.
133 *              NOTE: only object supported is Number.
134 *
135 ******************************************************************************/
136
137void acpi_db_set_method_data(char *type_arg, char *index_arg, char *value_arg)
138{
139	char type;
140	u32 index;
141	u32 value;
142	struct acpi_walk_state *walk_state;
143	union acpi_operand_object *obj_desc;
144	acpi_status status;
145	struct acpi_namespace_node *node;
146
147	/* Validate type_arg */
148
149	acpi_ut_strupr(type_arg);
150	type = type_arg[0];
151	if ((type != 'L') && (type != 'A') && (type != 'N')) {
152		acpi_os_printf("Invalid SET operand: %s\n", type_arg);
153		return;
154	}
155
156	value = strtoul(value_arg, NULL, 16);
157
158	if (type == 'N') {
159		node = acpi_db_convert_to_node(index_arg);
160		if (!node) {
161			return;
162		}
163
164		if (node->type != ACPI_TYPE_INTEGER) {
165			acpi_os_printf("Can only set Integer nodes\n");
166			return;
167		}
168		obj_desc = node->object;
169		obj_desc->integer.value = value;
170		return;
171	}
172
173	/* Get the index and value */
174
175	index = strtoul(index_arg, NULL, 16);
176
177	walk_state = acpi_ds_get_current_walk_state(acpi_gbl_current_walk_list);
178	if (!walk_state) {
179		acpi_os_printf("There is no method currently executing\n");
180		return;
181	}
182
183	/* Create and initialize the new object */
184
185	obj_desc = acpi_ut_create_integer_object((u64)value);
186	if (!obj_desc) {
187		acpi_os_printf("Could not create an internal object\n");
188		return;
189	}
190
191	/* Store the new object into the target */
192
193	switch (type) {
194	case 'A':
195
196		/* Set a method argument */
197
198		if (index > ACPI_METHOD_MAX_ARG) {
199			acpi_os_printf("Arg%u - Invalid argument name\n",
200				       index);
201			goto cleanup;
202		}
203
204		status = acpi_ds_store_object_to_local(ACPI_REFCLASS_ARG,
205						       index, obj_desc,
206						       walk_state);
207		if (ACPI_FAILURE(status)) {
208			goto cleanup;
209		}
210
211		obj_desc = walk_state->arguments[index].object;
212
213		acpi_os_printf("Arg%u: ", index);
214		acpi_db_display_internal_object(obj_desc, walk_state);
215		break;
216
217	case 'L':
218
219		/* Set a method local */
220
221		if (index > ACPI_METHOD_MAX_LOCAL) {
222			acpi_os_printf
223			    ("Local%u - Invalid local variable name\n", index);
224			goto cleanup;
225		}
226
227		status = acpi_ds_store_object_to_local(ACPI_REFCLASS_LOCAL,
228						       index, obj_desc,
229						       walk_state);
230		if (ACPI_FAILURE(status)) {
231			goto cleanup;
232		}
233
234		obj_desc = walk_state->local_variables[index].object;
235
236		acpi_os_printf("Local%u: ", index);
237		acpi_db_display_internal_object(obj_desc, walk_state);
238		break;
239
240	default:
241
242		break;
243	}
244
245cleanup:
246	acpi_ut_remove_reference(obj_desc);
247}
248
 
249/*******************************************************************************
250 *
251 * FUNCTION:    acpi_db_disassemble_aml
252 *
253 * PARAMETERS:  statements          - Number of statements to disassemble
254 *              op                  - Current Op (from parse walk)
255 *
256 * RETURN:      None
257 *
258 * DESCRIPTION: Display disassembled AML (ASL) starting from Op for the number
259 *              of statements specified.
260 *
261 ******************************************************************************/
262
263void acpi_db_disassemble_aml(char *statements, union acpi_parse_object *op)
264{
265	u32 num_statements = 8;
266
267	if (!op) {
268		acpi_os_printf("There is no method currently executing\n");
269		return;
270	}
271
272	if (statements) {
273		num_statements = strtoul(statements, NULL, 0);
274	}
275#ifdef ACPI_DISASSEMBLER
276	acpi_dm_disassemble(NULL, op, num_statements);
277#endif
278}
279
280/*******************************************************************************
281 *
282 * FUNCTION:    acpi_db_disassemble_method
283 *
284 * PARAMETERS:  name            - Name of control method
285 *
286 * RETURN:      None
287 *
288 * DESCRIPTION: Display disassembled AML (ASL) starting from Op for the number
289 *              of statements specified.
290 *
291 ******************************************************************************/
292
293acpi_status acpi_db_disassemble_method(char *name)
294{
295	acpi_status status;
296	union acpi_parse_object *op;
297	struct acpi_walk_state *walk_state;
298	union acpi_operand_object *obj_desc;
299	struct acpi_namespace_node *method;
300
301	method = acpi_db_convert_to_node(name);
302	if (!method) {
303		return (AE_BAD_PARAMETER);
304	}
305
306	if (method->type != ACPI_TYPE_METHOD) {
307		ACPI_ERROR((AE_INFO, "%s (%s): Object must be a control method",
308			    name, acpi_ut_get_type_name(method->type)));
309		return (AE_BAD_PARAMETER);
310	}
311
312	obj_desc = method->object;
313
314	op = acpi_ps_create_scope_op(obj_desc->method.aml_start);
315	if (!op) {
316		return (AE_NO_MEMORY);
317	}
318
319	/* Create and initialize a new walk state */
320
321	walk_state = acpi_ds_create_walk_state(0, op, NULL, NULL);
322	if (!walk_state) {
323		return (AE_NO_MEMORY);
324	}
325
326	status = acpi_ds_init_aml_walk(walk_state, op, NULL,
327				       obj_desc->method.aml_start,
328				       obj_desc->method.aml_length, NULL,
329				       ACPI_IMODE_LOAD_PASS1);
330	if (ACPI_FAILURE(status)) {
331		return (status);
332	}
333
334	status = acpi_ut_allocate_owner_id(&obj_desc->method.owner_id);
 
 
 
 
335	walk_state->owner_id = obj_desc->method.owner_id;
336
337	/* Push start scope on scope stack and make it current */
338
339	status = acpi_ds_scope_stack_push(method, method->type, walk_state);
340	if (ACPI_FAILURE(status)) {
341		return (status);
342	}
343
344	/* Parse the entire method AML including deferred operators */
345
346	walk_state->parse_flags &= ~ACPI_PARSE_DELETE_TREE;
347	walk_state->parse_flags |= ACPI_PARSE_DISASSEMBLE;
348
349	status = acpi_ps_parse_aml(walk_state);
 
 
 
350
351#ifdef ACPI_DISASSEMBLER
352	(void)acpi_dm_parse_deferred_ops(op);
353
354	/* Now we can disassemble the method */
355
356	acpi_gbl_dm_opt_verbose = FALSE;
357	acpi_dm_disassemble(NULL, op, 0);
358	acpi_gbl_dm_opt_verbose = TRUE;
359#endif
360
361	acpi_ps_delete_parse_tree(op);
362
363	/* Method cleanup */
364
365	acpi_ns_delete_namespace_subtree(method);
366	acpi_ns_delete_namespace_by_owner(obj_desc->method.owner_id);
367	acpi_ut_release_owner_id(&obj_desc->method.owner_id);
368	return (AE_OK);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369}
v6.2
  1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
  2/*******************************************************************************
  3 *
  4 * Module Name: dbmethod - Debug commands for control methods
  5 *
  6 ******************************************************************************/
  7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  8#include <acpi/acpi.h>
  9#include "accommon.h"
 10#include "acdispat.h"
 11#include "acnamesp.h"
 12#include "acdebug.h"
 13#include "acparser.h"
 14#include "acpredef.h"
 15
 16#define _COMPONENT          ACPI_CA_DEBUGGER
 17ACPI_MODULE_NAME("dbmethod")
 18
 19/* Local prototypes */
 20static acpi_status
 21acpi_db_walk_for_execute(acpi_handle obj_handle,
 22			 u32 nesting_level, void *context, void **return_value);
 23
 24static acpi_status acpi_db_evaluate_object(struct acpi_namespace_node *node);
 25
 26/*******************************************************************************
 27 *
 28 * FUNCTION:    acpi_db_set_method_breakpoint
 29 *
 30 * PARAMETERS:  location            - AML offset of breakpoint
 31 *              walk_state          - Current walk info
 32 *              op                  - Current Op (from parse walk)
 33 *
 34 * RETURN:      None
 35 *
 36 * DESCRIPTION: Set a breakpoint in a control method at the specified
 37 *              AML offset
 38 *
 39 ******************************************************************************/
 40
 41void
 42acpi_db_set_method_breakpoint(char *location,
 43			      struct acpi_walk_state *walk_state,
 44			      union acpi_parse_object *op)
 45{
 46	u32 address;
 47	u32 aml_offset;
 48
 49	if (!op) {
 50		acpi_os_printf("There is no method currently executing\n");
 51		return;
 52	}
 53
 54	/* Get and verify the breakpoint address */
 55
 56	address = strtoul(location, NULL, 16);
 57	aml_offset = (u32)ACPI_PTR_DIFF(op->common.aml,
 58					walk_state->parser_state.aml_start);
 59	if (address <= aml_offset) {
 60		acpi_os_printf("Breakpoint %X is beyond current address %X\n",
 61			       address, aml_offset);
 62	}
 63
 64	/* Save breakpoint in current walk */
 65
 66	walk_state->user_breakpoint = address;
 67	acpi_os_printf("Breakpoint set at AML offset %X\n", address);
 68}
 69
 70/*******************************************************************************
 71 *
 72 * FUNCTION:    acpi_db_set_method_call_breakpoint
 73 *
 74 * PARAMETERS:  op                  - Current Op (from parse walk)
 75 *
 76 * RETURN:      None
 77 *
 78 * DESCRIPTION: Set a breakpoint in a control method at the specified
 79 *              AML offset
 80 *
 81 ******************************************************************************/
 82
 83void acpi_db_set_method_call_breakpoint(union acpi_parse_object *op)
 84{
 85
 86	if (!op) {
 87		acpi_os_printf("There is no method currently executing\n");
 88		return;
 89	}
 90
 91	acpi_gbl_step_to_next_call = TRUE;
 92}
 93
 94/*******************************************************************************
 95 *
 96 * FUNCTION:    acpi_db_set_method_data
 97 *
 98 * PARAMETERS:  type_arg        - L for local, A for argument
 99 *              index_arg       - which one
100 *              value_arg       - Value to set.
101 *
102 * RETURN:      None
103 *
104 * DESCRIPTION: Set a local or argument for the running control method.
105 *              NOTE: only object supported is Number.
106 *
107 ******************************************************************************/
108
109void acpi_db_set_method_data(char *type_arg, char *index_arg, char *value_arg)
110{
111	char type;
112	u32 index;
113	u32 value;
114	struct acpi_walk_state *walk_state;
115	union acpi_operand_object *obj_desc;
116	acpi_status status;
117	struct acpi_namespace_node *node;
118
119	/* Validate type_arg */
120
121	acpi_ut_strupr(type_arg);
122	type = type_arg[0];
123	if ((type != 'L') && (type != 'A') && (type != 'N')) {
124		acpi_os_printf("Invalid SET operand: %s\n", type_arg);
125		return;
126	}
127
128	value = strtoul(value_arg, NULL, 16);
129
130	if (type == 'N') {
131		node = acpi_db_convert_to_node(index_arg);
132		if (!node) {
133			return;
134		}
135
136		if (node->type != ACPI_TYPE_INTEGER) {
137			acpi_os_printf("Can only set Integer nodes\n");
138			return;
139		}
140		obj_desc = node->object;
141		obj_desc->integer.value = value;
142		return;
143	}
144
145	/* Get the index and value */
146
147	index = strtoul(index_arg, NULL, 16);
148
149	walk_state = acpi_ds_get_current_walk_state(acpi_gbl_current_walk_list);
150	if (!walk_state) {
151		acpi_os_printf("There is no method currently executing\n");
152		return;
153	}
154
155	/* Create and initialize the new object */
156
157	obj_desc = acpi_ut_create_integer_object((u64)value);
158	if (!obj_desc) {
159		acpi_os_printf("Could not create an internal object\n");
160		return;
161	}
162
163	/* Store the new object into the target */
164
165	switch (type) {
166	case 'A':
167
168		/* Set a method argument */
169
170		if (index > ACPI_METHOD_MAX_ARG) {
171			acpi_os_printf("Arg%u - Invalid argument name\n",
172				       index);
173			goto cleanup;
174		}
175
176		status = acpi_ds_store_object_to_local(ACPI_REFCLASS_ARG,
177						       index, obj_desc,
178						       walk_state);
179		if (ACPI_FAILURE(status)) {
180			goto cleanup;
181		}
182
183		obj_desc = walk_state->arguments[index].object;
184
185		acpi_os_printf("Arg%u: ", index);
186		acpi_db_display_internal_object(obj_desc, walk_state);
187		break;
188
189	case 'L':
190
191		/* Set a method local */
192
193		if (index > ACPI_METHOD_MAX_LOCAL) {
194			acpi_os_printf
195			    ("Local%u - Invalid local variable name\n", index);
196			goto cleanup;
197		}
198
199		status = acpi_ds_store_object_to_local(ACPI_REFCLASS_LOCAL,
200						       index, obj_desc,
201						       walk_state);
202		if (ACPI_FAILURE(status)) {
203			goto cleanup;
204		}
205
206		obj_desc = walk_state->local_variables[index].object;
207
208		acpi_os_printf("Local%u: ", index);
209		acpi_db_display_internal_object(obj_desc, walk_state);
210		break;
211
212	default:
213
214		break;
215	}
216
217cleanup:
218	acpi_ut_remove_reference(obj_desc);
219}
220
221#ifdef ACPI_DISASSEMBLER
222/*******************************************************************************
223 *
224 * FUNCTION:    acpi_db_disassemble_aml
225 *
226 * PARAMETERS:  statements          - Number of statements to disassemble
227 *              op                  - Current Op (from parse walk)
228 *
229 * RETURN:      None
230 *
231 * DESCRIPTION: Display disassembled AML (ASL) starting from Op for the number
232 *              of statements specified.
233 *
234 ******************************************************************************/
235
236void acpi_db_disassemble_aml(char *statements, union acpi_parse_object *op)
237{
238	u32 num_statements = 8;
239
240	if (!op) {
241		acpi_os_printf("There is no method currently executing\n");
242		return;
243	}
244
245	if (statements) {
246		num_statements = strtoul(statements, NULL, 0);
247	}
248
249	acpi_dm_disassemble(NULL, op, num_statements);
 
250}
251
252/*******************************************************************************
253 *
254 * FUNCTION:    acpi_db_disassemble_method
255 *
256 * PARAMETERS:  name            - Name of control method
257 *
258 * RETURN:      None
259 *
260 * DESCRIPTION: Display disassembled AML (ASL) starting from Op for the number
261 *              of statements specified.
262 *
263 ******************************************************************************/
264
265acpi_status acpi_db_disassemble_method(char *name)
266{
267	acpi_status status;
268	union acpi_parse_object *op;
269	struct acpi_walk_state *walk_state;
270	union acpi_operand_object *obj_desc;
271	struct acpi_namespace_node *method;
272
273	method = acpi_db_convert_to_node(name);
274	if (!method) {
275		return (AE_BAD_PARAMETER);
276	}
277
278	if (method->type != ACPI_TYPE_METHOD) {
279		ACPI_ERROR((AE_INFO, "%s (%s): Object must be a control method",
280			    name, acpi_ut_get_type_name(method->type)));
281		return (AE_BAD_PARAMETER);
282	}
283
284	obj_desc = method->object;
285
286	op = acpi_ps_create_scope_op(obj_desc->method.aml_start);
287	if (!op) {
288		return (AE_NO_MEMORY);
289	}
290
291	/* Create and initialize a new walk state */
292
293	walk_state = acpi_ds_create_walk_state(0, op, NULL, NULL);
294	if (!walk_state) {
295		return (AE_NO_MEMORY);
296	}
297
298	status = acpi_ds_init_aml_walk(walk_state, op, NULL,
299				       obj_desc->method.aml_start,
300				       obj_desc->method.aml_length, NULL,
301				       ACPI_IMODE_LOAD_PASS1);
302	if (ACPI_FAILURE(status)) {
303		return (status);
304	}
305
306	status = acpi_ut_allocate_owner_id(&obj_desc->method.owner_id);
307	if (ACPI_FAILURE(status)) {
308		return (status);
309	}
310
311	walk_state->owner_id = obj_desc->method.owner_id;
312
313	/* Push start scope on scope stack and make it current */
314
315	status = acpi_ds_scope_stack_push(method, method->type, walk_state);
316	if (ACPI_FAILURE(status)) {
317		return (status);
318	}
319
320	/* Parse the entire method AML including deferred operators */
321
322	walk_state->parse_flags &= ~ACPI_PARSE_DELETE_TREE;
323	walk_state->parse_flags |= ACPI_PARSE_DISASSEMBLE;
324
325	status = acpi_ps_parse_aml(walk_state);
326	if (ACPI_FAILURE(status)) {
327		return (status);
328	}
329
 
330	(void)acpi_dm_parse_deferred_ops(op);
331
332	/* Now we can disassemble the method */
333
334	acpi_gbl_dm_opt_verbose = FALSE;
335	acpi_dm_disassemble(NULL, op, 0);
336	acpi_gbl_dm_opt_verbose = TRUE;
 
337
338	acpi_ps_delete_parse_tree(op);
339
340	/* Method cleanup */
341
342	acpi_ns_delete_namespace_subtree(method);
343	acpi_ns_delete_namespace_by_owner(obj_desc->method.owner_id);
344	acpi_ut_release_owner_id(&obj_desc->method.owner_id);
345	return (AE_OK);
346}
347#endif
348
349/*******************************************************************************
350 *
351 * FUNCTION:    acpi_db_evaluate_object
352 *
353 * PARAMETERS:  node                - Namespace node for the object
354 *
355 * RETURN:      Status
356 *
357 * DESCRIPTION: Main execution function for the Evaluate/Execute/All debugger
358 *              commands.
359 *
360 ******************************************************************************/
361
362static acpi_status acpi_db_evaluate_object(struct acpi_namespace_node *node)
363{
364	char *pathname;
365	u32 i;
366	struct acpi_device_info *obj_info;
367	struct acpi_object_list param_objects;
368	union acpi_object params[ACPI_METHOD_NUM_ARGS];
369	struct acpi_buffer return_obj;
370	acpi_status status;
371
372	pathname = acpi_ns_get_external_pathname(node);
373	if (!pathname) {
374		return (AE_OK);
375	}
376
377	/* Get the object info for number of method parameters */
378
379	status = acpi_get_object_info(node, &obj_info);
380	if (ACPI_FAILURE(status)) {
381		ACPI_FREE(pathname);
382		return (status);
383	}
384
385	param_objects.pointer = NULL;
386	param_objects.count = 0;
387
388	if (obj_info->type == ACPI_TYPE_METHOD) {
389
390		/* Setup default parameters */
391
392		for (i = 0; i < obj_info->param_count; i++) {
393			params[i].type = ACPI_TYPE_INTEGER;
394			params[i].integer.value = 1;
395		}
396
397		param_objects.pointer = params;
398		param_objects.count = obj_info->param_count;
399	}
400
401	ACPI_FREE(obj_info);
402	return_obj.pointer = NULL;
403	return_obj.length = ACPI_ALLOCATE_BUFFER;
404
405	/* Do the actual method execution */
406
407	acpi_gbl_method_executing = TRUE;
408
409	status = acpi_evaluate_object(node, NULL, &param_objects, &return_obj);
410	acpi_gbl_method_executing = FALSE;
411
412	acpi_os_printf("%-32s returned %s\n", pathname,
413		       acpi_format_exception(status));
414	if (return_obj.length) {
415		acpi_os_printf("Evaluation of %s returned object %p, "
416			       "external buffer length %X\n",
417			       pathname, return_obj.pointer,
418			       (u32)return_obj.length);
419
420		acpi_db_dump_external_object(return_obj.pointer, 1);
421		acpi_os_printf("\n");
422	}
423
424	ACPI_FREE(pathname);
425
426	/* Ignore status from method execution */
427
428	return (AE_OK);
429
430	/* Update count, check if we have executed enough methods */
431
432}
433
434/*******************************************************************************
435 *
436 * FUNCTION:    acpi_db_walk_for_execute
437 *
438 * PARAMETERS:  Callback from walk_namespace
439 *
440 * RETURN:      Status
441 *
442 * DESCRIPTION: Batch execution function. Evaluates all "predefined" objects --
443 *              the nameseg begins with an underscore.
444 *
445 ******************************************************************************/
446
447static acpi_status
448acpi_db_walk_for_execute(acpi_handle obj_handle,
449			 u32 nesting_level, void *context, void **return_value)
450{
451	struct acpi_namespace_node *node =
452	    (struct acpi_namespace_node *)obj_handle;
453	struct acpi_db_execute_walk *info =
454	    (struct acpi_db_execute_walk *)context;
455	acpi_status status;
456	const union acpi_predefined_info *predefined;
457
458	predefined = acpi_ut_match_predefined_method(node->name.ascii);
459	if (!predefined) {
460		return (AE_OK);
461	}
462
463	if (node->type == ACPI_TYPE_LOCAL_SCOPE) {
464		return (AE_OK);
465	}
466
467	acpi_db_evaluate_object(node);
468
469	/* Ignore status from object evaluation */
470
471	status = AE_OK;
472
473	/* Update count, check if we have executed enough methods */
474
475	info->count++;
476	if (info->count >= info->max_count) {
477		status = AE_CTRL_TERMINATE;
478	}
479
480	return (status);
481}
482
483/*******************************************************************************
484 *
485 * FUNCTION:    acpi_db_walk_for_execute_all
486 *
487 * PARAMETERS:  Callback from walk_namespace
488 *
489 * RETURN:      Status
490 *
491 * DESCRIPTION: Batch execution function. Evaluates all objects whose path ends
492 *              with the nameseg "Info->NameSeg". Used for the "ALL" command.
493 *
494 ******************************************************************************/
495
496static acpi_status
497acpi_db_walk_for_execute_all(acpi_handle obj_handle,
498			     u32 nesting_level,
499			     void *context, void **return_value)
500{
501	struct acpi_namespace_node *node =
502	    (struct acpi_namespace_node *)obj_handle;
503	struct acpi_db_execute_walk *info =
504	    (struct acpi_db_execute_walk *)context;
505	acpi_status status;
506
507	if (!ACPI_COMPARE_NAMESEG(node->name.ascii, info->name_seg)) {
508		return (AE_OK);
509	}
510
511	if (node->type == ACPI_TYPE_LOCAL_SCOPE) {
512		return (AE_OK);
513	}
514
515	/* Now evaluate the input object (node) */
516
517	acpi_db_evaluate_object(node);
518
519	/* Ignore status from method execution */
520
521	status = AE_OK;
522
523	/* Update count of executed methods/objects */
524
525	info->count++;
526	return (status);
527}
528
529/*******************************************************************************
530 *
531 * FUNCTION:    acpi_db_evaluate_predefined_names
532 *
533 * PARAMETERS:  None
534 *
535 * RETURN:      None
536 *
537 * DESCRIPTION: Namespace batch execution. Execute predefined names in the
538 *              namespace, up to the max count, if specified.
539 *
540 ******************************************************************************/
541
542void acpi_db_evaluate_predefined_names(void)
543{
544	struct acpi_db_execute_walk info;
545
546	info.count = 0;
547	info.max_count = ACPI_UINT32_MAX;
548
549	/* Search all nodes in namespace */
550
551	(void)acpi_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT,
552				  ACPI_UINT32_MAX, acpi_db_walk_for_execute,
553				  NULL, (void *)&info, NULL);
554
555	acpi_os_printf("Evaluated %u predefined names in the namespace\n",
556		       info.count);
557}
558
559/*******************************************************************************
560 *
561 * FUNCTION:    acpi_db_evaluate_all
562 *
563 * PARAMETERS:  none_acpi_gbl_db_method_info
564 *
565 * RETURN:      None
566 *
567 * DESCRIPTION: Namespace batch execution. Implements the "ALL" command.
568 *              Execute all namepaths whose final nameseg matches the
569 *              input nameseg.
570 *
571 ******************************************************************************/
572
573void acpi_db_evaluate_all(char *name_seg)
574{
575	struct acpi_db_execute_walk info;
576
577	info.count = 0;
578	info.max_count = ACPI_UINT32_MAX;
579	ACPI_COPY_NAMESEG(info.name_seg, name_seg);
580	info.name_seg[ACPI_NAMESEG_SIZE] = 0;
581
582	/* Search all nodes in namespace */
583
584	(void)acpi_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT,
585				  ACPI_UINT32_MAX, acpi_db_walk_for_execute_all,
586				  NULL, (void *)&info, NULL);
587
588	acpi_os_printf("Evaluated %u names in the namespace\n", info.count);
589}