acobject.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. /******************************************************************************
  2. *
  3. * Name: acobject.h - Definition of union acpi_operand_object (Internal object only)
  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 _ACOBJECT_H
  43. #define _ACOBJECT_H
  44. /* acpisrc:struct_defs -- for acpisrc conversion */
  45. /*
  46. * The union acpi_operand_object is used to pass AML operands from the dispatcher
  47. * to the interpreter, and to keep track of the various handlers such as
  48. * address space handlers and notify handlers. The object is a constant
  49. * size in order to allow it to be cached and reused.
  50. */
  51. /*******************************************************************************
  52. *
  53. * Common Descriptors
  54. *
  55. ******************************************************************************/
  56. /*
  57. * Common area for all objects.
  58. *
  59. * descriptor_type is used to differentiate between internal descriptors, and
  60. * must be in the same place across all descriptors
  61. *
  62. * Note: The descriptor_type and Type fields must appear in the identical
  63. * position in both the struct acpi_namespace_node and union acpi_operand_object
  64. * structures.
  65. */
  66. #define ACPI_OBJECT_COMMON_HEADER \
  67. union acpi_operand_object *next_object; /* Objects linked to parent NS node */\
  68. u8 descriptor_type; /* To differentiate various internal objs */\
  69. u8 type; /* acpi_object_type */\
  70. u16 reference_count; /* For object deletion management */\
  71. u8 flags;
  72. /*
  73. * Note: There are 3 bytes available here before the
  74. * next natural alignment boundary (for both 32/64 cases)
  75. */
  76. /* Values for Flag byte above */
  77. #define AOPOBJ_AML_CONSTANT 0x01
  78. #define AOPOBJ_STATIC_POINTER 0x02
  79. #define AOPOBJ_DATA_VALID 0x04
  80. #define AOPOBJ_OBJECT_INITIALIZED 0x08
  81. #define AOPOBJ_SETUP_COMPLETE 0x10
  82. #define AOPOBJ_SINGLE_DATUM 0x20
  83. #define AOPOBJ_INVALID 0x40 /* Used if host OS won't allow an op_region address */
  84. /******************************************************************************
  85. *
  86. * Basic data types
  87. *
  88. *****************************************************************************/
  89. struct acpi_object_common {
  90. ACPI_OBJECT_COMMON_HEADER};
  91. struct acpi_object_integer {
  92. ACPI_OBJECT_COMMON_HEADER acpi_integer value;
  93. };
  94. /*
  95. * Note: The String and Buffer object must be identical through the Pointer
  96. * and length elements. There is code that depends on this.
  97. *
  98. * Fields common to both Strings and Buffers
  99. */
  100. #define ACPI_COMMON_BUFFER_INFO(_type) \
  101. _type *pointer; \
  102. u32 length;
  103. struct acpi_object_string { /* Null terminated, ASCII characters only */
  104. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(char) /* String in AML stream or allocated string */
  105. };
  106. struct acpi_object_buffer {
  107. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(u8) /* Buffer in AML stream or allocated buffer */
  108. u32 aml_length;
  109. u8 *aml_start;
  110. struct acpi_namespace_node *node; /* Link back to parent node */
  111. };
  112. struct acpi_object_package {
  113. ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node; /* Link back to parent node */
  114. union acpi_operand_object **elements; /* Array of pointers to acpi_objects */
  115. u8 *aml_start;
  116. u32 aml_length;
  117. u32 count; /* # of elements in package */
  118. };
  119. /******************************************************************************
  120. *
  121. * Complex data types
  122. *
  123. *****************************************************************************/
  124. struct acpi_object_event {
  125. ACPI_OBJECT_COMMON_HEADER acpi_semaphore os_semaphore; /* Actual OS synchronization object */
  126. };
  127. struct acpi_object_mutex {
  128. ACPI_OBJECT_COMMON_HEADER u8 sync_level; /* 0-15, specified in Mutex() call */
  129. u16 acquisition_depth; /* Allow multiple Acquires, same thread */
  130. struct acpi_thread_state *owner_thread; /* Current owner of the mutex */
  131. acpi_mutex os_mutex; /* Actual OS synchronization object */
  132. union acpi_operand_object *prev; /* Link for list of acquired mutexes */
  133. union acpi_operand_object *next; /* Link for list of acquired mutexes */
  134. struct acpi_namespace_node *node; /* Containing namespace node */
  135. u8 original_sync_level; /* Owner's original sync level (0-15) */
  136. };
  137. struct acpi_object_region {
  138. ACPI_OBJECT_COMMON_HEADER u8 space_id;
  139. struct acpi_namespace_node *node; /* Containing namespace node */
  140. union acpi_operand_object *handler; /* Handler for region access */
  141. union acpi_operand_object *next;
  142. acpi_physical_address address;
  143. u32 length;
  144. };
  145. struct acpi_object_method {
  146. ACPI_OBJECT_COMMON_HEADER u8 method_flags;
  147. u8 param_count;
  148. u8 sync_level;
  149. union acpi_operand_object *mutex;
  150. u8 *aml_start;
  151. ACPI_INTERNAL_METHOD implementation;
  152. u32 aml_length;
  153. u8 thread_count;
  154. acpi_owner_id owner_id;
  155. };
  156. /******************************************************************************
  157. *
  158. * Objects that can be notified. All share a common notify_info area.
  159. *
  160. *****************************************************************************/
  161. /*
  162. * Common fields for objects that support ASL notifications
  163. */
  164. #define ACPI_COMMON_NOTIFY_INFO \
  165. union acpi_operand_object *system_notify; /* Handler for system notifies */\
  166. union acpi_operand_object *device_notify; /* Handler for driver notifies */\
  167. union acpi_operand_object *handler; /* Handler for Address space */
  168. struct acpi_object_notify_common { /* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
  169. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};
  170. struct acpi_object_device {
  171. ACPI_OBJECT_COMMON_HEADER
  172. ACPI_COMMON_NOTIFY_INFO struct acpi_gpe_block_info *gpe_block;
  173. };
  174. struct acpi_object_power_resource {
  175. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO u32 system_level;
  176. u32 resource_order;
  177. };
  178. struct acpi_object_processor {
  179. ACPI_OBJECT_COMMON_HEADER u8 proc_id;
  180. u8 length;
  181. ACPI_COMMON_NOTIFY_INFO acpi_io_address address;
  182. };
  183. struct acpi_object_thermal_zone {
  184. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};
  185. /******************************************************************************
  186. *
  187. * Fields. All share a common header/info field.
  188. *
  189. *****************************************************************************/
  190. /*
  191. * Common bitfield for the field objects
  192. * "Field Datum" -- a datum from the actual field object
  193. * "Buffer Datum" -- a datum from a user buffer, read from or to be written to the field
  194. */
  195. #define ACPI_COMMON_FIELD_INFO \
  196. u8 field_flags; /* Access, update, and lock bits */\
  197. u8 attribute; /* From access_as keyword */\
  198. u8 access_byte_width; /* Read/Write size in bytes */\
  199. struct acpi_namespace_node *node; /* Link back to parent node */\
  200. u32 bit_length; /* Length of field in bits */\
  201. u32 base_byte_offset; /* Byte offset within containing object */\
  202. u32 value; /* Value to store into the Bank or Index register */\
  203. u8 start_field_bit_offset;/* Bit offset within first field datum (0-63) */\
  204. u8 access_bit_width; /* Read/Write size in bits (8-64) */
  205. struct acpi_object_field_common { /* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */
  206. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj; /* Parent Operation Region object (REGION/BANK fields only) */
  207. };
  208. struct acpi_object_region_field {
  209. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj; /* Containing op_region object */
  210. };
  211. struct acpi_object_bank_field {
  212. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj; /* Containing op_region object */
  213. union acpi_operand_object *bank_obj; /* bank_select Register object */
  214. };
  215. struct acpi_object_index_field {
  216. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO
  217. /*
  218. * No "RegionObj" pointer needed since the Index and Data registers
  219. * are each field definitions unto themselves.
  220. */
  221. union acpi_operand_object *index_obj; /* Index register */
  222. union acpi_operand_object *data_obj; /* Data register */
  223. };
  224. /* The buffer_field is different in that it is part of a Buffer, not an op_region */
  225. struct acpi_object_buffer_field {
  226. ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *buffer_obj; /* Containing Buffer object */
  227. };
  228. /******************************************************************************
  229. *
  230. * Objects for handlers
  231. *
  232. *****************************************************************************/
  233. struct acpi_object_notify_handler {
  234. ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node; /* Parent device */
  235. acpi_notify_handler handler;
  236. void *context;
  237. };
  238. struct acpi_object_addr_handler {
  239. ACPI_OBJECT_COMMON_HEADER u8 space_id;
  240. u8 handler_flags;
  241. acpi_adr_space_handler handler;
  242. struct acpi_namespace_node *node; /* Parent device */
  243. void *context;
  244. acpi_adr_space_setup setup;
  245. union acpi_operand_object *region_list; /* regions using this handler */
  246. union acpi_operand_object *next;
  247. };
  248. /* Flags for address handler (handler_flags) */
  249. #define ACPI_ADDR_HANDLER_DEFAULT_INSTALLED 0x01
  250. /******************************************************************************
  251. *
  252. * Special internal objects
  253. *
  254. *****************************************************************************/
  255. /*
  256. * The Reference object type is used for these opcodes:
  257. * Arg[0-6], Local[0-7], index_op, name_op, zero_op, one_op, ones_op, debug_op
  258. */
  259. struct acpi_object_reference {
  260. ACPI_OBJECT_COMMON_HEADER u8 target_type; /* Used for index_op */
  261. u16 opcode;
  262. void *object; /* name_op=>HANDLE to obj, index_op=>union acpi_operand_object */
  263. struct acpi_namespace_node *node;
  264. union acpi_operand_object **where;
  265. u32 offset; /* Used for arg_op, local_op, and index_op */
  266. };
  267. /*
  268. * Extra object is used as additional storage for types that
  269. * have AML code in their declarations (term_args) that must be
  270. * evaluated at run time.
  271. *
  272. * Currently: Region and field_unit types
  273. */
  274. struct acpi_object_extra {
  275. ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *method_REG; /* _REG method for this region (if any) */
  276. void *region_context; /* Region-specific data */
  277. u8 *aml_start;
  278. u32 aml_length;
  279. };
  280. /* Additional data that can be attached to namespace nodes */
  281. struct acpi_object_data {
  282. ACPI_OBJECT_COMMON_HEADER acpi_object_handler handler;
  283. void *pointer;
  284. };
  285. /* Structure used when objects are cached for reuse */
  286. struct acpi_object_cache_list {
  287. ACPI_OBJECT_COMMON_HEADER union acpi_operand_object *next; /* Link for object cache and internal lists */
  288. };
  289. /******************************************************************************
  290. *
  291. * union acpi_operand_object Descriptor - a giant union of all of the above
  292. *
  293. *****************************************************************************/
  294. union acpi_operand_object {
  295. struct acpi_object_common common;
  296. struct acpi_object_integer integer;
  297. struct acpi_object_string string;
  298. struct acpi_object_buffer buffer;
  299. struct acpi_object_package package;
  300. struct acpi_object_event event;
  301. struct acpi_object_method method;
  302. struct acpi_object_mutex mutex;
  303. struct acpi_object_region region;
  304. struct acpi_object_notify_common common_notify;
  305. struct acpi_object_device device;
  306. struct acpi_object_power_resource power_resource;
  307. struct acpi_object_processor processor;
  308. struct acpi_object_thermal_zone thermal_zone;
  309. struct acpi_object_field_common common_field;
  310. struct acpi_object_region_field field;
  311. struct acpi_object_buffer_field buffer_field;
  312. struct acpi_object_bank_field bank_field;
  313. struct acpi_object_index_field index_field;
  314. struct acpi_object_notify_handler notify;
  315. struct acpi_object_addr_handler address_space;
  316. struct acpi_object_reference reference;
  317. struct acpi_object_extra extra;
  318. struct acpi_object_data data;
  319. struct acpi_object_cache_list cache;
  320. };
  321. /******************************************************************************
  322. *
  323. * union acpi_descriptor - objects that share a common descriptor identifier
  324. *
  325. *****************************************************************************/
  326. /* Object descriptor types */
  327. #define ACPI_DESC_TYPE_CACHED 0x01 /* Used only when object is cached */
  328. #define ACPI_DESC_TYPE_STATE 0x02
  329. #define ACPI_DESC_TYPE_STATE_UPDATE 0x03
  330. #define ACPI_DESC_TYPE_STATE_PACKAGE 0x04
  331. #define ACPI_DESC_TYPE_STATE_CONTROL 0x05
  332. #define ACPI_DESC_TYPE_STATE_RPSCOPE 0x06
  333. #define ACPI_DESC_TYPE_STATE_PSCOPE 0x07
  334. #define ACPI_DESC_TYPE_STATE_WSCOPE 0x08
  335. #define ACPI_DESC_TYPE_STATE_RESULT 0x09
  336. #define ACPI_DESC_TYPE_STATE_NOTIFY 0x0A
  337. #define ACPI_DESC_TYPE_STATE_THREAD 0x0B
  338. #define ACPI_DESC_TYPE_WALK 0x0C
  339. #define ACPI_DESC_TYPE_PARSER 0x0D
  340. #define ACPI_DESC_TYPE_OPERAND 0x0E
  341. #define ACPI_DESC_TYPE_NAMED 0x0F
  342. #define ACPI_DESC_TYPE_MAX 0x0F
  343. struct acpi_common_descriptor {
  344. void *common_pointer;
  345. u8 descriptor_type; /* To differentiate various internal objs */
  346. };
  347. union acpi_descriptor {
  348. struct acpi_common_descriptor common;
  349. union acpi_operand_object object;
  350. struct acpi_namespace_node node;
  351. union acpi_parse_object op;
  352. };
  353. #endif /* _ACOBJECT_H */