blob: cf7346110bd825e2cd1d514d6eed507b2e262421 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Name: acstruct.h - Internal structs
4 *
5 *****************************************************************************/
6
7/*
Bob Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, 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 __ACSTRUCT_H__
45#define __ACSTRUCT_H__
46
Bob Moore616861242006-03-17 16:44:00 -050047/* acpisrc:struct_defs -- for acpisrc conversion */
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*****************************************************************************
50 *
51 * Tree walking typedefs and structs
52 *
53 ****************************************************************************/
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
Bob Moore73a30902012-10-31 02:26:55 +000056 * Walk state - current state of a parse tree walk. Used for both a leisurely
Bob Moore41195322006-05-26 16:36:00 -040057 * stroll through the tree (for whatever reason), and for control method
58 * execution.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define ACPI_NEXT_OP_DOWNWARD 1
61#define ACPI_NEXT_OP_UPWARD 2
62
Bob Moore41195322006-05-26 16:36:00 -040063/*
64 * Groups of definitions for walk_type used for different implementations of
65 * walkers (never simultaneously) - flags for interpreter:
66 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define ACPI_WALK_NON_METHOD 0
Bob Moore41195322006-05-26 16:36:00 -040068#define ACPI_WALK_METHOD 0x01
69#define ACPI_WALK_METHOD_RESTART 0x02
70
Bob Mooreba494be2012-07-12 09:40:10 +080071/* Flags for iASL compiler only */
Bob Moore41195322006-05-26 16:36:00 -040072
73#define ACPI_WALK_CONST_REQUIRED 0x10
74#define ACPI_WALK_CONST_OPTIONAL 0x20
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Len Brown4be44fc2005-08-05 00:44:28 -040076struct acpi_walk_state {
Bob Moore616861242006-03-17 16:44:00 -050077 struct acpi_walk_state *next; /* Next walk_state in list */
78 u8 descriptor_type; /* To differentiate various internal objs */
Len Brown4be44fc2005-08-05 00:44:28 -040079 u8 walk_type;
Bob Moore616861242006-03-17 16:44:00 -050080 u16 opcode; /* Current AML opcode */
Len Brown4be44fc2005-08-05 00:44:28 -040081 u8 next_op_info; /* Info about next_op */
82 u8 num_operands; /* Stack pointer for Operands[] array */
Bob Moore773069d2008-04-10 19:06:36 +040083 u8 operand_index; /* Index into operand stack, to be used by acpi_ds_obj_stack_push */
Bob Moore616861242006-03-17 16:44:00 -050084 acpi_owner_id owner_id; /* Owner of objects created during the walk */
85 u8 last_predicate; /* Result of last predicate */
86 u8 current_result;
Len Brown4be44fc2005-08-05 00:44:28 -040087 u8 return_used;
Len Brown4be44fc2005-08-05 00:44:28 -040088 u8 scope_depth;
89 u8 pass_number; /* Parse pass during table load */
Bob Moore773069d2008-04-10 19:06:36 +040090 u8 result_size; /* Total elements for the result stack */
91 u8 result_count; /* Current number of occupied elements of result stack */
Len Brown4be44fc2005-08-05 00:44:28 -040092 u32 aml_offset;
93 u32 arg_types;
94 u32 method_breakpoint; /* For single stepping */
95 u32 user_breakpoint; /* User AML breakpoint */
96 u32 parse_flags;
Bob Moore616861242006-03-17 16:44:00 -050097
98 struct acpi_parse_state parser_state; /* Current state of parser */
Len Brown4be44fc2005-08-05 00:44:28 -040099 u32 prev_arg_types;
Bob Moore793c2382006-03-31 00:00:00 -0500100 u32 arg_count; /* push for fixed or var args */
Bob Moore616861242006-03-17 16:44:00 -0500101
102 struct acpi_namespace_node arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */
103 struct acpi_namespace_node local_variables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */
104 union acpi_operand_object *operands[ACPI_OBJ_NUM_OPERANDS + 1]; /* Operands passed to the interpreter (+1 for NULL terminator) */
105 union acpi_operand_object **params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Len Brown4be44fc2005-08-05 00:44:28 -0400107 u8 *aml_last_while;
Len Brown4be44fc2005-08-05 00:44:28 -0400108 union acpi_operand_object **caller_return_desc;
109 union acpi_generic_state *control_state; /* List of control states (nested IFs) */
110 struct acpi_namespace_node *deferred_node; /* Used when executing deferred opcodes */
Len Brown4be44fc2005-08-05 00:44:28 -0400111 union acpi_operand_object *implicit_return_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400112 struct acpi_namespace_node *method_call_node; /* Called method Node */
113 union acpi_parse_object *method_call_op; /* method_call Op if running a method */
114 union acpi_operand_object *method_desc; /* Method descriptor if running a method */
115 struct acpi_namespace_node *method_node; /* Method node if running a method. */
116 union acpi_parse_object *op; /* Current parser op */
Len Brown4be44fc2005-08-05 00:44:28 -0400117 const struct acpi_opcode_info *op_info; /* Info on current opcode */
118 union acpi_parse_object *origin; /* Start of walk [Obsolete] */
Len Brown4be44fc2005-08-05 00:44:28 -0400119 union acpi_operand_object *result_obj;
120 union acpi_generic_state *results; /* Stack of accumulated results */
121 union acpi_operand_object *return_desc; /* Return object, if any */
122 union acpi_generic_state *scope_info; /* Stack of nested scopes */
Len Brown4be44fc2005-08-05 00:44:28 -0400123 union acpi_parse_object *prev_op; /* Last op that was processed */
124 union acpi_parse_object *next_op; /* next op to be processed */
Bob Moore616861242006-03-17 16:44:00 -0500125 struct acpi_thread_state *thread;
Len Brown4be44fc2005-08-05 00:44:28 -0400126 acpi_parse_downwards descending_callback;
127 acpi_parse_upwards ascending_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Alexey Starikovskiy96b7b7a2010-05-26 11:20:47 +0800130/* Info used by acpi_ns_initialize_objects and acpi_ds_initialize_objects */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Len Brown4be44fc2005-08-05 00:44:28 -0400132struct acpi_init_walk_info {
Bob Moore67a119f2008-06-10 13:42:13 +0800133 u32 table_index;
Alexey Starikovskiy96b7b7a2010-05-26 11:20:47 +0800134 u32 object_count;
135 u32 method_count;
Bob Moore22b5afc2014-03-24 14:49:00 +0800136 u32 serial_method_count;
137 u32 non_serial_method_count;
138 u32 serialized_method_count;
Alexey Starikovskiy96b7b7a2010-05-26 11:20:47 +0800139 u32 device_count;
140 u32 op_region_count;
141 u32 field_count;
142 u32 buffer_count;
143 u32 package_count;
144 u32 op_region_init;
145 u32 field_init;
146 u32 buffer_init;
147 u32 package_init;
148 acpi_owner_id owner_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
Len Brown4be44fc2005-08-05 00:44:28 -0400151struct acpi_get_devices_info {
152 acpi_walk_callback user_function;
153 void *context;
Al Viro70b30fb2007-08-21 16:18:20 +0100154 const char *hid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
Len Brown4be44fc2005-08-05 00:44:28 -0400157union acpi_aml_operands {
158 union acpi_operand_object *operands[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Len Brown4be44fc2005-08-05 00:44:28 -0400160 struct {
161 struct acpi_object_integer *type;
162 struct acpi_object_integer *code;
163 struct acpi_object_integer *argument;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 } fatal;
166
Len Brown4be44fc2005-08-05 00:44:28 -0400167 struct {
168 union acpi_operand_object *source;
169 struct acpi_object_integer *index;
170 union acpi_operand_object *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 } index;
173
Len Brown4be44fc2005-08-05 00:44:28 -0400174 struct {
175 union acpi_operand_object *source;
176 struct acpi_object_integer *index;
177 struct acpi_object_integer *length;
178 union acpi_operand_object *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 } mid;
181};
182
Bob Moore41195322006-05-26 16:36:00 -0400183/*
Bob Moore29a241c2013-05-30 10:00:01 +0800184 * Structure used to pass object evaluation information and parameters.
Bob Moore41195322006-05-26 16:36:00 -0400185 * Purpose is to reduce CPU stack use.
186 */
187struct acpi_evaluate_info {
Bob Moore29a241c2013-05-30 10:00:01 +0800188 /* The first 3 elements are passed by the caller to acpi_ns_evaluate */
189
190 struct acpi_namespace_node *prefix_node; /* Input: starting node */
191 char *relative_pathname; /* Input: path relative to prefix_node */
192 union acpi_operand_object **parameters; /* Input: argument list */
193
194 struct acpi_namespace_node *node; /* Resolved node (prefix_node:relative_pathname) */
195 union acpi_operand_object *obj_desc; /* Object attached to the resolved node */
196 char *full_pathname; /* Full pathname of the resolved node */
197
198 const union acpi_predefined_info *predefined; /* Used if Node is a predefined name */
199 union acpi_operand_object *return_object; /* Object returned from the evaluation */
200 union acpi_operand_object *parent_package; /* Used if return object is a Package */
201
202 u32 return_flags; /* Used for return value analysis */
203 u32 return_btype; /* Bitmapped type of the returned object */
204 u16 param_count; /* Count of the input argument list */
205 u8 pass_number; /* Parser pass number */
206 u8 return_object_type; /* Object type of the returned object */
207 u8 node_flags; /* Same as Node->Flags */
208 u8 flags; /* General flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Bob Moore41195322006-05-26 16:36:00 -0400211/* Values for Flags above */
212
Bob Moore29a241c2013-05-30 10:00:01 +0800213#define ACPI_IGNORE_RETURN_VALUE 1
214
215/* Defines for return_flags field above */
216
217#define ACPI_OBJECT_REPAIRED 1
218#define ACPI_OBJECT_WRAPPED 2
Bob Moore41195322006-05-26 16:36:00 -0400219
220/* Info used by acpi_ns_initialize_devices */
221
222struct acpi_device_walk_info {
Bob Moore41195322006-05-26 16:36:00 -0400223 struct acpi_table_desc *table_desc;
224 struct acpi_evaluate_info *evaluate_info;
Bob Moore5821f752010-05-26 11:48:22 +0800225 u32 device_count;
226 u32 num_STA;
227 u32 num_INI;
Bob Moore41195322006-05-26 16:36:00 -0400228};
229
230/* TBD: [Restructure] Merge with struct above */
231
232struct acpi_walk_info {
233 u32 debug_level;
234 u32 count;
235 acpi_owner_id owner_id;
236 u8 display_type;
237};
238
239/* Display Types */
240
241#define ACPI_DISPLAY_SUMMARY (u8) 0
242#define ACPI_DISPLAY_OBJECTS (u8) 1
243#define ACPI_DISPLAY_MASK (u8) 1
244
245#define ACPI_DISPLAY_SHORT (u8) 2
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#endif