acobject.h 17 KB

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