acstruct.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /******************************************************************************
  2. *
  3. * Name: acstruct.h - Internal structs
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2015, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. #ifndef __ACSTRUCT_H__
  43. #define __ACSTRUCT_H__
  44. /* acpisrc:struct_defs -- for acpisrc conversion */
  45. /*****************************************************************************
  46. *
  47. * Tree walking typedefs and structs
  48. *
  49. ****************************************************************************/
  50. /*
  51. * Walk state - current state of a parse tree walk. Used for both a leisurely
  52. * stroll through the tree (for whatever reason), and for control method
  53. * execution.
  54. */
  55. #define ACPI_NEXT_OP_DOWNWARD 1
  56. #define ACPI_NEXT_OP_UPWARD 2
  57. /*
  58. * Groups of definitions for walk_type used for different implementations of
  59. * walkers (never simultaneously) - flags for interpreter:
  60. */
  61. #define ACPI_WALK_NON_METHOD 0
  62. #define ACPI_WALK_METHOD 0x01
  63. #define ACPI_WALK_METHOD_RESTART 0x02
  64. struct acpi_walk_state {
  65. struct acpi_walk_state *next; /* Next walk_state in list */
  66. u8 descriptor_type; /* To differentiate various internal objs */
  67. u8 walk_type;
  68. u16 opcode; /* Current AML opcode */
  69. u8 next_op_info; /* Info about next_op */
  70. u8 num_operands; /* Stack pointer for Operands[] array */
  71. u8 operand_index; /* Index into operand stack, to be used by acpi_ds_obj_stack_push */
  72. acpi_owner_id owner_id; /* Owner of objects created during the walk */
  73. u8 last_predicate; /* Result of last predicate */
  74. u8 current_result;
  75. u8 return_used;
  76. u8 scope_depth;
  77. u8 pass_number; /* Parse pass during table load */
  78. u8 namespace_override; /* Override existing objects */
  79. u8 result_size; /* Total elements for the result stack */
  80. u8 result_count; /* Current number of occupied elements of result stack */
  81. u8 *aml;
  82. u32 arg_types;
  83. u32 method_breakpoint; /* For single stepping */
  84. u32 user_breakpoint; /* User AML breakpoint */
  85. u32 parse_flags;
  86. struct acpi_parse_state parser_state; /* Current state of parser */
  87. u32 prev_arg_types;
  88. u32 arg_count; /* push for fixed or var args */
  89. struct acpi_namespace_node arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */
  90. struct acpi_namespace_node local_variables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */
  91. union acpi_operand_object *operands[ACPI_OBJ_NUM_OPERANDS + 1]; /* Operands passed to the interpreter (+1 for NULL terminator) */
  92. union acpi_operand_object **params;
  93. u8 *aml_last_while;
  94. union acpi_operand_object **caller_return_desc;
  95. union acpi_generic_state *control_state; /* List of control states (nested IFs) */
  96. struct acpi_namespace_node *deferred_node; /* Used when executing deferred opcodes */
  97. union acpi_operand_object *implicit_return_obj;
  98. struct acpi_namespace_node *method_call_node; /* Called method Node */
  99. union acpi_parse_object *method_call_op; /* method_call Op if running a method */
  100. union acpi_operand_object *method_desc; /* Method descriptor if running a method */
  101. struct acpi_namespace_node *method_node; /* Method node if running a method. */
  102. union acpi_parse_object *op; /* Current parser op */
  103. const struct acpi_opcode_info *op_info; /* Info on current opcode */
  104. union acpi_parse_object *origin; /* Start of walk [Obsolete] */
  105. union acpi_operand_object *result_obj;
  106. union acpi_generic_state *results; /* Stack of accumulated results */
  107. union acpi_operand_object *return_desc; /* Return object, if any */
  108. union acpi_generic_state *scope_info; /* Stack of nested scopes */
  109. union acpi_parse_object *prev_op; /* Last op that was processed */
  110. union acpi_parse_object *next_op; /* next op to be processed */
  111. struct acpi_thread_state *thread;
  112. acpi_parse_downwards descending_callback;
  113. acpi_parse_upwards ascending_callback;
  114. };
  115. /* Info used by acpi_ns_initialize_objects and acpi_ds_initialize_objects */
  116. struct acpi_init_walk_info {
  117. u32 table_index;
  118. u32 object_count;
  119. u32 method_count;
  120. u32 serial_method_count;
  121. u32 non_serial_method_count;
  122. u32 serialized_method_count;
  123. u32 device_count;
  124. u32 op_region_count;
  125. u32 field_count;
  126. u32 buffer_count;
  127. u32 package_count;
  128. u32 op_region_init;
  129. u32 field_init;
  130. u32 buffer_init;
  131. u32 package_init;
  132. acpi_owner_id owner_id;
  133. };
  134. struct acpi_get_devices_info {
  135. acpi_walk_callback user_function;
  136. void *context;
  137. const char *hid;
  138. };
  139. union acpi_aml_operands {
  140. union acpi_operand_object *operands[7];
  141. struct {
  142. struct acpi_object_integer *type;
  143. struct acpi_object_integer *code;
  144. struct acpi_object_integer *argument;
  145. } fatal;
  146. struct {
  147. union acpi_operand_object *source;
  148. struct acpi_object_integer *index;
  149. union acpi_operand_object *target;
  150. } index;
  151. struct {
  152. union acpi_operand_object *source;
  153. struct acpi_object_integer *index;
  154. struct acpi_object_integer *length;
  155. union acpi_operand_object *target;
  156. } mid;
  157. };
  158. /*
  159. * Structure used to pass object evaluation information and parameters.
  160. * Purpose is to reduce CPU stack use.
  161. */
  162. struct acpi_evaluate_info {
  163. /* The first 3 elements are passed by the caller to acpi_ns_evaluate */
  164. struct acpi_namespace_node *prefix_node; /* Input: starting node */
  165. char *relative_pathname; /* Input: path relative to prefix_node */
  166. union acpi_operand_object **parameters; /* Input: argument list */
  167. struct acpi_namespace_node *node; /* Resolved node (prefix_node:relative_pathname) */
  168. union acpi_operand_object *obj_desc; /* Object attached to the resolved node */
  169. char *full_pathname; /* Full pathname of the resolved node */
  170. const union acpi_predefined_info *predefined; /* Used if Node is a predefined name */
  171. union acpi_operand_object *return_object; /* Object returned from the evaluation */
  172. union acpi_operand_object *parent_package; /* Used if return object is a Package */
  173. u32 return_flags; /* Used for return value analysis */
  174. u32 return_btype; /* Bitmapped type of the returned object */
  175. u16 param_count; /* Count of the input argument list */
  176. u8 pass_number; /* Parser pass number */
  177. u8 return_object_type; /* Object type of the returned object */
  178. u8 node_flags; /* Same as Node->Flags */
  179. u8 flags; /* General flags */
  180. };
  181. /* Values for Flags above */
  182. #define ACPI_IGNORE_RETURN_VALUE 1
  183. /* Defines for return_flags field above */
  184. #define ACPI_OBJECT_REPAIRED 1
  185. #define ACPI_OBJECT_WRAPPED 2
  186. /* Info used by acpi_ns_initialize_devices */
  187. struct acpi_device_walk_info {
  188. struct acpi_table_desc *table_desc;
  189. struct acpi_evaluate_info *evaluate_info;
  190. u32 device_count;
  191. u32 num_STA;
  192. u32 num_INI;
  193. };
  194. /* TBD: [Restructure] Merge with struct above */
  195. struct acpi_walk_info {
  196. u32 debug_level;
  197. u32 count;
  198. acpi_owner_id owner_id;
  199. u8 display_type;
  200. };
  201. /* Display Types */
  202. #define ACPI_DISPLAY_SUMMARY (u8) 0
  203. #define ACPI_DISPLAY_OBJECTS (u8) 1
  204. #define ACPI_DISPLAY_MASK (u8) 1
  205. #define ACPI_DISPLAY_SHORT (u8) 2
  206. #endif