acobject.h 17 KB

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