acstruct.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /******************************************************************************
  2. *
  3. * Name: acstruct.h - Internal structs
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2006, R. Byron Moore
  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. /*****************************************************************************
  45. *
  46. * Tree walking typedefs and structs
  47. *
  48. ****************************************************************************/
  49. /*
  50. * Walk state - current state of a parse tree walk. Used for both a leisurely stroll through
  51. * the tree (for whatever reason), and for control method execution.
  52. */
  53. #define ACPI_NEXT_OP_DOWNWARD 1
  54. #define ACPI_NEXT_OP_UPWARD 2
  55. #define ACPI_WALK_NON_METHOD 0
  56. #define ACPI_WALK_METHOD 1
  57. #define ACPI_WALK_METHOD_RESTART 2
  58. #define ACPI_WALK_CONST_REQUIRED 3
  59. #define ACPI_WALK_CONST_OPTIONAL 4
  60. struct acpi_walk_state {
  61. u8 data_type; /* To differentiate various internal objs MUST BE FIRST! */
  62. u8 walk_type;
  63. acpi_owner_id owner_id; /* Owner of objects created during the walk */
  64. u8 last_predicate; /* Result of last predicate */
  65. u8 current_result; /* */
  66. u8 next_op_info; /* Info about next_op */
  67. u8 num_operands; /* Stack pointer for Operands[] array */
  68. u8 return_used;
  69. u16 opcode; /* Current AML opcode */
  70. u8 scope_depth;
  71. u8 pass_number; /* Parse pass during table load */
  72. u32 arg_count; /* push for fixed or var args */
  73. u32 aml_offset;
  74. u32 arg_types;
  75. u32 method_breakpoint; /* For single stepping */
  76. u32 user_breakpoint; /* User AML breakpoint */
  77. u32 parse_flags;
  78. u32 prev_arg_types;
  79. u8 *aml_last_while;
  80. struct acpi_namespace_node arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */
  81. union acpi_operand_object **caller_return_desc;
  82. union acpi_generic_state *control_state; /* List of control states (nested IFs) */
  83. struct acpi_namespace_node *deferred_node; /* Used when executing deferred opcodes */
  84. struct acpi_gpe_event_info *gpe_event_info; /* Info for GPE (_Lxx/_Exx methods only */
  85. union acpi_operand_object *implicit_return_obj;
  86. struct acpi_namespace_node local_variables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */
  87. struct acpi_namespace_node *method_call_node; /* Called method Node */
  88. union acpi_parse_object *method_call_op; /* method_call Op if running a method */
  89. union acpi_operand_object *method_desc; /* Method descriptor if running a method */
  90. struct acpi_namespace_node *method_node; /* Method node if running a method. */
  91. union acpi_parse_object *op; /* Current parser op */
  92. union acpi_operand_object *operands[ACPI_OBJ_NUM_OPERANDS + 1]; /* Operands passed to the interpreter (+1 for NULL terminator) */
  93. const struct acpi_opcode_info *op_info; /* Info on current opcode */
  94. union acpi_parse_object *origin; /* Start of walk [Obsolete] */
  95. union acpi_operand_object **params;
  96. struct acpi_parse_state parser_state; /* Current state of parser */
  97. union acpi_operand_object *result_obj;
  98. union acpi_generic_state *results; /* Stack of accumulated results */
  99. union acpi_operand_object *return_desc; /* Return object, if any */
  100. union acpi_generic_state *scope_info; /* Stack of nested scopes */
  101. union acpi_parse_object *prev_op; /* Last op that was processed */
  102. union acpi_parse_object *next_op; /* next op to be processed */
  103. acpi_parse_downwards descending_callback;
  104. acpi_parse_upwards ascending_callback;
  105. struct acpi_thread_state *thread;
  106. struct acpi_walk_state *next; /* Next walk_state in list */
  107. };
  108. /* Info used by acpi_ps_init_objects */
  109. struct acpi_init_walk_info {
  110. u16 method_count;
  111. u16 device_count;
  112. u16 op_region_count;
  113. u16 field_count;
  114. u16 buffer_count;
  115. u16 package_count;
  116. u16 op_region_init;
  117. u16 field_init;
  118. u16 buffer_init;
  119. u16 package_init;
  120. u16 object_count;
  121. struct acpi_table_desc *table_desc;
  122. };
  123. /* Info used by acpi_ns_initialize_devices */
  124. struct acpi_device_walk_info {
  125. u16 device_count;
  126. u16 num_STA;
  127. u16 num_INI;
  128. struct acpi_table_desc *table_desc;
  129. };
  130. /* TBD: [Restructure] Merge with struct above */
  131. struct acpi_walk_info {
  132. u32 debug_level;
  133. u32 count;
  134. acpi_owner_id owner_id;
  135. u8 display_type;
  136. };
  137. /* Display Types */
  138. #define ACPI_DISPLAY_SUMMARY (u8) 0
  139. #define ACPI_DISPLAY_OBJECTS (u8) 1
  140. #define ACPI_DISPLAY_MASK (u8) 1
  141. #define ACPI_DISPLAY_SHORT (u8) 2
  142. struct acpi_get_devices_info {
  143. acpi_walk_callback user_function;
  144. void *context;
  145. char *hid;
  146. };
  147. union acpi_aml_operands {
  148. union acpi_operand_object *operands[7];
  149. struct {
  150. struct acpi_object_integer *type;
  151. struct acpi_object_integer *code;
  152. struct acpi_object_integer *argument;
  153. } fatal;
  154. struct {
  155. union acpi_operand_object *source;
  156. struct acpi_object_integer *index;
  157. union acpi_operand_object *target;
  158. } index;
  159. struct {
  160. union acpi_operand_object *source;
  161. struct acpi_object_integer *index;
  162. struct acpi_object_integer *length;
  163. union acpi_operand_object *target;
  164. } mid;
  165. };
  166. /* Internal method parameter list */
  167. struct acpi_parameter_info {
  168. struct acpi_namespace_node *node;
  169. union acpi_operand_object *obj_desc;
  170. union acpi_operand_object **parameters;
  171. union acpi_operand_object *return_object;
  172. u8 pass_number;
  173. u8 parameter_type;
  174. u8 return_object_type;
  175. };
  176. /* Types for parameter_type above */
  177. #define ACPI_PARAM_ARGS 0
  178. #define ACPI_PARAM_GPE 1
  179. #endif