blob: 30c2d691138678fd9ed646feaf6d710aad07f032 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Name: acdebug.h - ACPI/AML debugger
4 *
5 *****************************************************************************/
6
7/*
Bob Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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#ifndef __ACDEBUG_H__
45#define __ACDEBUG_H__
46
Lv Zhengf540fad2012-10-31 02:25:15 +000047#define ACPI_DEBUG_BUFFER_SIZE 0x4000 /* 16K buffer for return objects */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Lv Zhengf540fad2012-10-31 02:25:15 +000049struct acpi_db_command_info {
Len Brown4be44fc2005-08-05 00:44:28 -040050 char *name; /* Command Name */
51 u8 min_args; /* Minimum arguments required */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Lv Zhengf540fad2012-10-31 02:25:15 +000054struct acpi_db_command_help {
55 u8 line_count; /* Number of help lines */
56 char *invocation; /* Command Invocation */
57 char *description; /* Command Description */
58};
59
60struct acpi_db_argument_info {
Len Brown4be44fc2005-08-05 00:44:28 -040061 char *name; /* Argument Name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Lv Zhengf540fad2012-10-31 02:25:15 +000064struct acpi_db_execute_walk {
65 u32 count;
66 u32 max_count;
67};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define PARAM_LIST(pl) pl
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define DBTEST_OUTPUT_LEVEL(lvl) if (acpi_gbl_db_opt_verbose)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define VERBOSE_PRINT(fp) DBTEST_OUTPUT_LEVEL(lvl) {\
72 acpi_os_printf PARAM_LIST(fp);}
73
74#define EX_NO_SINGLE_STEP 1
75#define EX_SINGLE_STEP 2
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * dbxface - external debugger interfaces
79 */
Len Brown4be44fc2005-08-05 00:44:28 -040080acpi_status acpi_db_initialize(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Len Brown4be44fc2005-08-05 00:44:28 -040082void acpi_db_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040085acpi_db_single_step(struct acpi_walk_state *walk_state,
86 union acpi_parse_object *op, u32 op_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88/*
89 * dbcmds - debug commands and output routines
90 */
Lv Zhengf540fad2012-10-31 02:25:15 +000091struct acpi_namespace_node *acpi_db_convert_to_node(char *in_string);
Len Brown4be44fc2005-08-05 00:44:28 -040092
93void acpi_db_display_table_info(char *table_arg);
94
Lv Zhengf540fad2012-10-31 02:25:15 +000095void acpi_db_display_template(char *buffer_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Lv Zhengf540fad2012-10-31 02:25:15 +000097void acpi_db_unload_acpi_table(char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Len Brown4be44fc2005-08-05 00:44:28 -040099void acpi_db_send_notify(char *name, u32 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Lin Mingb0ed7a92010-08-06 09:35:51 +0800101void acpi_db_display_interfaces(char *action_arg, char *interface_name_arg);
102
Lv Zhengf540fad2012-10-31 02:25:15 +0000103acpi_status acpi_db_sleep(char *object_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Len Brown4be44fc2005-08-05 00:44:28 -0400105void acpi_db_display_locks(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Len Brown4be44fc2005-08-05 00:44:28 -0400107void acpi_db_display_resources(char *object_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Bob Moore33620c52012-02-14 18:14:27 +0800109ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_db_display_gpes(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Lv Zhengf540fad2012-10-31 02:25:15 +0000111void acpi_db_display_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Bob Moore33620c52012-02-14 18:14:27 +0800113ACPI_HW_DEPENDENT_RETURN_VOID(void
114 acpi_db_generate_gpe(char *gpe_arg,
115 char *block_arg))
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800116 ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_db_generate_sci(void))
Robert Moore44f6c012005-04-18 22:49:35 -0400117
Lv Zhengf540fad2012-10-31 02:25:15 +0000118/*
Bob Moore42f8fb72013-01-11 13:08:51 +0100119 * dbconvert - miscellaneous conversion routines
120 */
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800121acpi_status acpi_db_hex_char_to_value(int hex_char, u8 *return_value);
Bob Moore42f8fb72013-01-11 13:08:51 +0100122
123acpi_status acpi_db_convert_to_package(char *string, union acpi_object *object);
124
125acpi_status
126acpi_db_convert_to_object(acpi_object_type type,
127 char *string, union acpi_object *object);
128
129u8 *acpi_db_encode_pld_buffer(struct acpi_pld_info *pld_info);
130
131void acpi_db_dump_pld_buffer(union acpi_object *obj_desc);
132
133/*
Lv Zhengf540fad2012-10-31 02:25:15 +0000134 * dbmethod - control method commands
135 */
136void
137acpi_db_set_method_breakpoint(char *location,
138 struct acpi_walk_state *walk_state,
139 union acpi_parse_object *op);
140
141void acpi_db_set_method_call_breakpoint(union acpi_parse_object *op);
142
143void acpi_db_set_method_data(char *type_arg, char *index_arg, char *value_arg);
144
145acpi_status acpi_db_disassemble_method(char *name);
146
147void acpi_db_disassemble_aml(char *statements, union acpi_parse_object *op);
148
149void acpi_db_batch_execute(char *count_arg);
150
151/*
152 * dbnames - namespace commands
153 */
154void acpi_db_set_scope(char *name);
155
156void acpi_db_dump_namespace(char *start_arg, char *depth_arg);
157
158void acpi_db_dump_namespace_by_owner(char *owner_arg, char *depth_arg);
159
160acpi_status acpi_db_find_name_in_namespace(char *name_arg);
161
Bob Moore1044f1f2008-09-27 11:08:41 +0800162void acpi_db_check_predefined_names(void);
163
Lv Zhengf540fad2012-10-31 02:25:15 +0000164acpi_status
165acpi_db_display_objects(char *obj_type_arg, char *display_count_arg);
166
167void acpi_db_check_integrity(void);
168
169void acpi_db_find_references(char *object_arg);
170
171void acpi_db_get_bus_info(void);
Bob Moore1044f1f2008-09-27 11:08:41 +0800172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
174 * dbdisply - debug display commands
175 */
Len Brown4be44fc2005-08-05 00:44:28 -0400176void acpi_db_display_method_info(union acpi_parse_object *op);
177
178void acpi_db_decode_and_display_object(char *target, char *output_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180void
Len Brown4be44fc2005-08-05 00:44:28 -0400181acpi_db_display_result_object(union acpi_operand_object *obj_desc,
182 struct acpi_walk_state *walk_state);
183
184acpi_status acpi_db_display_all_methods(char *display_count_arg);
185
186void acpi_db_display_arguments(void);
187
188void acpi_db_display_locals(void);
189
190void acpi_db_display_results(void);
191
192void acpi_db_display_calling_tree(void);
193
194void acpi_db_display_object_type(char *object_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196void
Len Brown4be44fc2005-08-05 00:44:28 -0400197acpi_db_display_argument_object(union acpi_operand_object *obj_desc,
198 struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200/*
201 * dbexec - debugger control method execution
202 */
Lv Zhengf540fad2012-10-31 02:25:15 +0000203void
204acpi_db_execute(char *name, char **args, acpi_object_type * types, u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206void
Len Brown4be44fc2005-08-05 00:44:28 -0400207acpi_db_create_execution_threads(char *num_threads_arg,
208 char *num_loops_arg, char *method_name_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Bob Moore42f8fb72013-01-11 13:08:51 +0100210void acpi_db_delete_objects(u32 count, union acpi_object *objects);
211
Valery A. Podrezovafbb9e62007-02-02 19:48:23 +0300212#ifdef ACPI_DBG_TRACK_ALLOCATIONS
213u32 acpi_db_get_cache_info(struct acpi_memory_list *cache);
214#endif
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * dbfileio - Debugger file I/O commands
218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219acpi_object_type
Lv Zhengf540fad2012-10-31 02:25:15 +0000220acpi_db_match_argument(char *user_argument,
221 struct acpi_db_argument_info *arguments);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Len Brown4be44fc2005-08-05 00:44:28 -0400223void acpi_db_close_debug_file(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Len Brown4be44fc2005-08-05 00:44:28 -0400225void acpi_db_open_debug_file(char *name);
226
227acpi_status acpi_db_load_acpi_table(char *filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400230acpi_db_get_table_from_file(char *filename, struct acpi_table_header **table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400233acpi_db_read_table_from_file(char *filename, struct acpi_table_header **table);
Robert Moore44f6c012005-04-18 22:49:35 -0400234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
236 * dbhistry - debugger HISTORY command
237 */
Len Brown4be44fc2005-08-05 00:44:28 -0400238void acpi_db_add_to_history(char *command_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Len Brown4be44fc2005-08-05 00:44:28 -0400240void acpi_db_display_history(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Len Brown4be44fc2005-08-05 00:44:28 -0400242char *acpi_db_get_from_history(char *command_num_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244/*
245 * dbinput - user front-end to the AML debugger
246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400248acpi_db_command_dispatch(char *input_buffer,
249 struct acpi_walk_state *walk_state,
250 union acpi_parse_object *op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Len Brown4be44fc2005-08-05 00:44:28 -0400252void ACPI_SYSTEM_XFACE acpi_db_execute_thread(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Lv Zhengf540fad2012-10-31 02:25:15 +0000254acpi_status acpi_db_user_commands(char prompt, union acpi_parse_object *op);
255
256char *acpi_db_get_next_token(char *string,
257 char **next, acpi_object_type * return_type);
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*
260 * dbstats - Generation and display of ACPI table statistics
261 */
Len Brown4be44fc2005-08-05 00:44:28 -0400262void acpi_db_generate_statistics(union acpi_parse_object *root, u8 is_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Len Brown4be44fc2005-08-05 00:44:28 -0400264acpi_status acpi_db_display_statistics(char *type_arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/*
267 * dbutils - AML debugger utilities
268 */
Len Brown4be44fc2005-08-05 00:44:28 -0400269void acpi_db_set_output_destination(u32 where);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Len Brown4be44fc2005-08-05 00:44:28 -0400271void acpi_db_dump_external_object(union acpi_object *obj_desc, u32 level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Len Brown4be44fc2005-08-05 00:44:28 -0400273void acpi_db_prep_namestring(char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Len Brown4be44fc2005-08-05 00:44:28 -0400275struct acpi_namespace_node *acpi_db_local_ns_lookup(char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Bob Moore2e23f852007-02-02 19:48:23 +0300277void acpi_db_uint32_to_hex_string(u32 value, char *buffer);
278
Len Brown4be44fc2005-08-05 00:44:28 -0400279#endif /* __ACDEBUG_H__ */