blob: 2043dff370b13f1f0920e8d3a1af4fa58b3922b6 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
4 * Name: acstruct.h - Internal structs
5 *
Bob Moore840c02c2019-01-14 09:55:25 -08006 * Copyright (C) 2000 - 2019, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#ifndef __ACSTRUCT_H__
11#define __ACSTRUCT_H__
12
Bob Moore616861242006-03-17 16:44:00 -050013/* acpisrc:struct_defs -- for acpisrc conversion */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/*****************************************************************************
16 *
17 * Tree walking typedefs and structs
18 *
19 ****************************************************************************/
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/*
Bob Moore73a30902012-10-31 02:26:55 +000022 * Walk state - current state of a parse tree walk. Used for both a leisurely
Bob Moore41195322006-05-26 16:36:00 -040023 * stroll through the tree (for whatever reason), and for control method
24 * execution.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define ACPI_NEXT_OP_DOWNWARD 1
27#define ACPI_NEXT_OP_UPWARD 2
28
Bob Moore41195322006-05-26 16:36:00 -040029/*
30 * Groups of definitions for walk_type used for different implementations of
31 * walkers (never simultaneously) - flags for interpreter:
32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define ACPI_WALK_NON_METHOD 0
Bob Moore41195322006-05-26 16:36:00 -040034#define ACPI_WALK_METHOD 0x01
35#define ACPI_WALK_METHOD_RESTART 0x02
36
Len Brown4be44fc2005-08-05 00:44:28 -040037struct acpi_walk_state {
Bob Moore616861242006-03-17 16:44:00 -050038 struct acpi_walk_state *next; /* Next walk_state in list */
39 u8 descriptor_type; /* To differentiate various internal objs */
Len Brown4be44fc2005-08-05 00:44:28 -040040 u8 walk_type;
Bob Moore616861242006-03-17 16:44:00 -050041 u16 opcode; /* Current AML opcode */
Len Brown4be44fc2005-08-05 00:44:28 -040042 u8 next_op_info; /* Info about next_op */
43 u8 num_operands; /* Stack pointer for Operands[] array */
Bob Moore773069d2008-04-10 19:06:36 +040044 u8 operand_index; /* Index into operand stack, to be used by acpi_ds_obj_stack_push */
Bob Moore616861242006-03-17 16:44:00 -050045 acpi_owner_id owner_id; /* Owner of objects created during the walk */
46 u8 last_predicate; /* Result of last predicate */
47 u8 current_result;
Len Brown4be44fc2005-08-05 00:44:28 -040048 u8 return_used;
Len Brown4be44fc2005-08-05 00:44:28 -040049 u8 scope_depth;
50 u8 pass_number; /* Parse pass during table load */
Lv Zheng8f6f0362015-07-01 14:44:17 +080051 u8 namespace_override; /* Override existing objects */
Bob Moore773069d2008-04-10 19:06:36 +040052 u8 result_size; /* Total elements for the result stack */
53 u8 result_count; /* Current number of occupied elements of result stack */
Lv Zheng83482f72015-07-23 12:52:11 +080054 u8 *aml;
Len Brown4be44fc2005-08-05 00:44:28 -040055 u32 arg_types;
56 u32 method_breakpoint; /* For single stepping */
57 u32 user_breakpoint; /* User AML breakpoint */
58 u32 parse_flags;
Bob Moore616861242006-03-17 16:44:00 -050059
60 struct acpi_parse_state parser_state; /* Current state of parser */
Len Brown4be44fc2005-08-05 00:44:28 -040061 u32 prev_arg_types;
Bob Moore793c2382006-03-31 00:00:00 -050062 u32 arg_count; /* push for fixed or var args */
Bob Moore4c1379d2018-12-13 12:30:33 -080063 u16 method_nesting_depth;
64 u8 method_is_nested;
Bob Moore616861242006-03-17 16:44:00 -050065
66 struct acpi_namespace_node arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */
67 struct acpi_namespace_node local_variables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */
68 union acpi_operand_object *operands[ACPI_OBJ_NUM_OPERANDS + 1]; /* Operands passed to the interpreter (+1 for NULL terminator) */
69 union acpi_operand_object **params;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Len Brown4be44fc2005-08-05 00:44:28 -040071 u8 *aml_last_while;
Len Brown4be44fc2005-08-05 00:44:28 -040072 union acpi_operand_object **caller_return_desc;
73 union acpi_generic_state *control_state; /* List of control states (nested IFs) */
74 struct acpi_namespace_node *deferred_node; /* Used when executing deferred opcodes */
Len Brown4be44fc2005-08-05 00:44:28 -040075 union acpi_operand_object *implicit_return_obj;
Len Brown4be44fc2005-08-05 00:44:28 -040076 struct acpi_namespace_node *method_call_node; /* Called method Node */
77 union acpi_parse_object *method_call_op; /* method_call Op if running a method */
78 union acpi_operand_object *method_desc; /* Method descriptor if running a method */
Bob Moore4c1379d2018-12-13 12:30:33 -080079 struct acpi_namespace_node *method_node; /* Method node if running a method */
80 char *method_pathname; /* Full pathname of running method */
Len Brown4be44fc2005-08-05 00:44:28 -040081 union acpi_parse_object *op; /* Current parser op */
Len Brown4be44fc2005-08-05 00:44:28 -040082 const struct acpi_opcode_info *op_info; /* Info on current opcode */
83 union acpi_parse_object *origin; /* Start of walk [Obsolete] */
Len Brown4be44fc2005-08-05 00:44:28 -040084 union acpi_operand_object *result_obj;
85 union acpi_generic_state *results; /* Stack of accumulated results */
86 union acpi_operand_object *return_desc; /* Return object, if any */
87 union acpi_generic_state *scope_info; /* Stack of nested scopes */
Len Brown4be44fc2005-08-05 00:44:28 -040088 union acpi_parse_object *prev_op; /* Last op that was processed */
89 union acpi_parse_object *next_op; /* next op to be processed */
Bob Moore616861242006-03-17 16:44:00 -050090 struct acpi_thread_state *thread;
Len Brown4be44fc2005-08-05 00:44:28 -040091 acpi_parse_downwards descending_callback;
92 acpi_parse_upwards ascending_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
Alexey Starikovskiy96b7b7a2010-05-26 11:20:47 +080095/* Info used by acpi_ns_initialize_objects and acpi_ds_initialize_objects */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Len Brown4be44fc2005-08-05 00:44:28 -040097struct acpi_init_walk_info {
Bob Moore67a119f2008-06-10 13:42:13 +080098 u32 table_index;
Alexey Starikovskiy96b7b7a2010-05-26 11:20:47 +080099 u32 object_count;
100 u32 method_count;
Bob Moore22b5afc2014-03-24 14:49:00 +0800101 u32 serial_method_count;
102 u32 non_serial_method_count;
103 u32 serialized_method_count;
Alexey Starikovskiy96b7b7a2010-05-26 11:20:47 +0800104 u32 device_count;
105 u32 op_region_count;
106 u32 field_count;
107 u32 buffer_count;
108 u32 package_count;
109 u32 op_region_init;
110 u32 field_init;
111 u32 buffer_init;
112 u32 package_init;
113 acpi_owner_id owner_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Len Brown4be44fc2005-08-05 00:44:28 -0400116struct acpi_get_devices_info {
117 acpi_walk_callback user_function;
118 void *context;
Al Viro70b30fb2007-08-21 16:18:20 +0100119 const char *hid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Len Brown4be44fc2005-08-05 00:44:28 -0400122union acpi_aml_operands {
123 union acpi_operand_object *operands[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Len Brown4be44fc2005-08-05 00:44:28 -0400125 struct {
126 struct acpi_object_integer *type;
127 struct acpi_object_integer *code;
128 struct acpi_object_integer *argument;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 } fatal;
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 struct {
133 union acpi_operand_object *source;
134 struct acpi_object_integer *index;
135 union acpi_operand_object *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 } index;
138
Len Brown4be44fc2005-08-05 00:44:28 -0400139 struct {
140 union acpi_operand_object *source;
141 struct acpi_object_integer *index;
142 struct acpi_object_integer *length;
143 union acpi_operand_object *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 } mid;
146};
147
Bob Moore41195322006-05-26 16:36:00 -0400148/*
Bob Moore29a241c2013-05-30 10:00:01 +0800149 * Structure used to pass object evaluation information and parameters.
Bob Moore41195322006-05-26 16:36:00 -0400150 * Purpose is to reduce CPU stack use.
151 */
152struct acpi_evaluate_info {
Bob Moore29a241c2013-05-30 10:00:01 +0800153 /* The first 3 elements are passed by the caller to acpi_ns_evaluate */
154
155 struct acpi_namespace_node *prefix_node; /* Input: starting node */
Bob Moore0dfaaa32016-03-24 09:40:40 +0800156 const char *relative_pathname; /* Input: path relative to prefix_node */
Bob Moore29a241c2013-05-30 10:00:01 +0800157 union acpi_operand_object **parameters; /* Input: argument list */
158
159 struct acpi_namespace_node *node; /* Resolved node (prefix_node:relative_pathname) */
160 union acpi_operand_object *obj_desc; /* Object attached to the resolved node */
161 char *full_pathname; /* Full pathname of the resolved node */
162
163 const union acpi_predefined_info *predefined; /* Used if Node is a predefined name */
164 union acpi_operand_object *return_object; /* Object returned from the evaluation */
165 union acpi_operand_object *parent_package; /* Used if return object is a Package */
166
167 u32 return_flags; /* Used for return value analysis */
168 u32 return_btype; /* Bitmapped type of the returned object */
169 u16 param_count; /* Count of the input argument list */
Bob Moore67a72422019-08-16 14:43:21 -0700170 u16 node_flags; /* Same as Node->Flags */
Bob Moore29a241c2013-05-30 10:00:01 +0800171 u8 pass_number; /* Parser pass number */
172 u8 return_object_type; /* Object type of the returned object */
Bob Moore29a241c2013-05-30 10:00:01 +0800173 u8 flags; /* General flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
Bob Moore41195322006-05-26 16:36:00 -0400176/* Values for Flags above */
177
Bob Moore29a241c2013-05-30 10:00:01 +0800178#define ACPI_IGNORE_RETURN_VALUE 1
179
180/* Defines for return_flags field above */
181
182#define ACPI_OBJECT_REPAIRED 1
183#define ACPI_OBJECT_WRAPPED 2
Bob Moore41195322006-05-26 16:36:00 -0400184
185/* Info used by acpi_ns_initialize_devices */
186
187struct acpi_device_walk_info {
Bob Moore41195322006-05-26 16:36:00 -0400188 struct acpi_table_desc *table_desc;
189 struct acpi_evaluate_info *evaluate_info;
Bob Moore5821f752010-05-26 11:48:22 +0800190 u32 device_count;
191 u32 num_STA;
192 u32 num_INI;
Bob Moore41195322006-05-26 16:36:00 -0400193};
194
Erik Schmauss5fd03322019-10-25 14:36:55 -0700195/* Info used by Acpi acpi_db_display_fields */
196
197struct acpi_region_walk_info {
198 u32 debug_level;
199 u32 count;
200 acpi_owner_id owner_id;
201 u8 display_type;
202 u32 address_space_id;
203};
204
Bob Moore41195322006-05-26 16:36:00 -0400205/* TBD: [Restructure] Merge with struct above */
206
207struct acpi_walk_info {
208 u32 debug_level;
209 u32 count;
210 acpi_owner_id owner_id;
211 u8 display_type;
212};
213
214/* Display Types */
215
216#define ACPI_DISPLAY_SUMMARY (u8) 0
217#define ACPI_DISPLAY_OBJECTS (u8) 1
218#define ACPI_DISPLAY_MASK (u8) 1
219
220#define ACPI_DISPLAY_SHORT (u8) 2
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif