aclocal.h 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041
  1. /******************************************************************************
  2. *
  3. * Name: aclocal.h - Internal data types used across the ACPI subsystem
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2008, 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 __ACLOCAL_H__
  43. #define __ACLOCAL_H__
  44. /* acpisrc:struct_defs -- for acpisrc conversion */
  45. #define ACPI_SERIALIZED 0xFF
  46. typedef u32 acpi_mutex_handle;
  47. #define ACPI_GLOBAL_LOCK (acpi_semaphore) (-1)
  48. /* Total number of aml opcodes defined */
  49. #define AML_NUM_OPCODES 0x7F
  50. /* Forward declarations */
  51. struct acpi_walk_state;
  52. struct acpi_obj_mutex;
  53. union acpi_parse_object;
  54. /*****************************************************************************
  55. *
  56. * Mutex typedefs and structs
  57. *
  58. ****************************************************************************/
  59. /*
  60. * Predefined handles for the mutex objects used within the subsystem
  61. * All mutex objects are automatically created by acpi_ut_mutex_initialize.
  62. *
  63. * The acquire/release ordering protocol is implied via this list. Mutexes
  64. * with a lower value must be acquired before mutexes with a higher value.
  65. *
  66. * NOTE: any changes here must be reflected in the acpi_gbl_mutex_names
  67. * table below also!
  68. */
  69. #define ACPI_MTX_INTERPRETER 0 /* AML Interpreter, main lock */
  70. #define ACPI_MTX_NAMESPACE 1 /* ACPI Namespace */
  71. #define ACPI_MTX_TABLES 2 /* Data for ACPI tables */
  72. #define ACPI_MTX_EVENTS 3 /* Data for ACPI events */
  73. #define ACPI_MTX_CACHES 4 /* Internal caches, general purposes */
  74. #define ACPI_MTX_MEMORY 5 /* Debug memory tracking lists */
  75. #define ACPI_MTX_DEBUG_CMD_COMPLETE 6 /* AML debugger */
  76. #define ACPI_MTX_DEBUG_CMD_READY 7 /* AML debugger */
  77. #define ACPI_MAX_MUTEX 7
  78. #define ACPI_NUM_MUTEX ACPI_MAX_MUTEX+1
  79. #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
  80. #ifdef DEFINE_ACPI_GLOBALS
  81. /* Debug names for the mutexes above */
  82. static char *acpi_gbl_mutex_names[ACPI_NUM_MUTEX] = {
  83. "ACPI_MTX_Interpreter",
  84. "ACPI_MTX_Namespace",
  85. "ACPI_MTX_Tables",
  86. "ACPI_MTX_Events",
  87. "ACPI_MTX_Caches",
  88. "ACPI_MTX_Memory",
  89. "ACPI_MTX_CommandComplete",
  90. "ACPI_MTX_CommandReady"
  91. };
  92. #endif
  93. #endif
  94. /* Lock structure for reader/writer interfaces */
  95. struct acpi_rw_lock {
  96. acpi_mutex writer_mutex;
  97. acpi_mutex reader_mutex;
  98. u32 num_readers;
  99. };
  100. /*
  101. * Predefined handles for spinlocks used within the subsystem.
  102. * These spinlocks are created by acpi_ut_mutex_initialize
  103. */
  104. #define ACPI_LOCK_GPES 0
  105. #define ACPI_LOCK_HARDWARE 1
  106. #define ACPI_MAX_LOCK 1
  107. #define ACPI_NUM_LOCK ACPI_MAX_LOCK+1
  108. /* This Thread ID means that the mutex is not in use (unlocked) */
  109. #define ACPI_MUTEX_NOT_ACQUIRED (acpi_thread_id) 0
  110. /* Table for the global mutexes */
  111. struct acpi_mutex_info {
  112. acpi_mutex mutex;
  113. u32 use_count;
  114. acpi_thread_id thread_id;
  115. };
  116. /* Lock flag parameter for various interfaces */
  117. #define ACPI_MTX_DO_NOT_LOCK 0
  118. #define ACPI_MTX_LOCK 1
  119. /* Field access granularities */
  120. #define ACPI_FIELD_BYTE_GRANULARITY 1
  121. #define ACPI_FIELD_WORD_GRANULARITY 2
  122. #define ACPI_FIELD_DWORD_GRANULARITY 4
  123. #define ACPI_FIELD_QWORD_GRANULARITY 8
  124. #define ACPI_ENTRY_NOT_FOUND NULL
  125. /*****************************************************************************
  126. *
  127. * Namespace typedefs and structs
  128. *
  129. ****************************************************************************/
  130. /* Operational modes of the AML interpreter/scanner */
  131. typedef enum {
  132. ACPI_IMODE_LOAD_PASS1 = 0x01,
  133. ACPI_IMODE_LOAD_PASS2 = 0x02,
  134. ACPI_IMODE_EXECUTE = 0x03
  135. } acpi_interpreter_mode;
  136. /*
  137. * The Namespace Node describes a named object that appears in the AML.
  138. * descriptor_type is used to differentiate between internal descriptors.
  139. *
  140. * The node is optimized for both 32-bit and 64-bit platforms:
  141. * 20 bytes for the 32-bit case, 32 bytes for the 64-bit case.
  142. *
  143. * Note: The descriptor_type and Type fields must appear in the identical
  144. * position in both the struct acpi_namespace_node and union acpi_operand_object
  145. * structures.
  146. */
  147. struct acpi_namespace_node {
  148. union acpi_operand_object *object; /* Interpreter object */
  149. u8 descriptor_type; /* Differentiate object descriptor types */
  150. u8 type; /* ACPI Type associated with this name */
  151. u8 flags; /* Miscellaneous flags */
  152. acpi_owner_id owner_id; /* Node creator */
  153. union acpi_name_union name; /* ACPI Name, always 4 chars per ACPI spec */
  154. struct acpi_namespace_node *child; /* First child */
  155. struct acpi_namespace_node *peer; /* Peer. Parent if ANOBJ_END_OF_PEER_LIST set */
  156. /*
  157. * The following fields are used by the ASL compiler and disassembler only
  158. */
  159. #ifdef ACPI_LARGE_NAMESPACE_NODE
  160. union acpi_parse_object *op;
  161. u32 value;
  162. u32 length;
  163. #endif
  164. };
  165. /* Namespace Node flags */
  166. #define ANOBJ_END_OF_PEER_LIST 0x01 /* End-of-list, Peer field points to parent */
  167. #define ANOBJ_TEMPORARY 0x02 /* Node is create by a method and is temporary */
  168. #define ANOBJ_METHOD_ARG 0x04 /* Node is a method argument */
  169. #define ANOBJ_METHOD_LOCAL 0x08 /* Node is a method local */
  170. #define ANOBJ_SUBTREE_HAS_INI 0x10 /* Used to optimize device initialization */
  171. #define ANOBJ_EVALUATED 0x20 /* Set on first evaluation of node */
  172. #define ANOBJ_ALLOCATED_BUFFER 0x40 /* Method AML buffer is dynamic (install_method) */
  173. #define ANOBJ_IS_EXTERNAL 0x08 /* i_aSL only: This object created via External() */
  174. #define ANOBJ_METHOD_NO_RETVAL 0x10 /* i_aSL only: Method has no return value */
  175. #define ANOBJ_METHOD_SOME_NO_RETVAL 0x20 /* i_aSL only: Method has at least one return value */
  176. #define ANOBJ_IS_BIT_OFFSET 0x40 /* i_aSL only: Reference is a bit offset */
  177. #define ANOBJ_IS_REFERENCED 0x80 /* i_aSL only: Object was referenced */
  178. /* One internal RSDT for table management */
  179. struct acpi_internal_rsdt {
  180. struct acpi_table_desc *tables;
  181. u32 count;
  182. u32 size;
  183. u8 flags;
  184. };
  185. /* Flags for above */
  186. #define ACPI_ROOT_ORIGIN_UNKNOWN (0) /* ~ORIGIN_ALLOCATED */
  187. #define ACPI_ROOT_ORIGIN_ALLOCATED (1)
  188. #define ACPI_ROOT_ALLOW_RESIZE (2)
  189. /* Predefined (fixed) table indexes */
  190. #define ACPI_TABLE_INDEX_DSDT (0)
  191. #define ACPI_TABLE_INDEX_FACS (1)
  192. struct acpi_find_context {
  193. char *search_for;
  194. acpi_handle *list;
  195. u32 *count;
  196. };
  197. struct acpi_ns_search_data {
  198. struct acpi_namespace_node *node;
  199. };
  200. /* Object types used during package copies */
  201. #define ACPI_COPY_TYPE_SIMPLE 0
  202. #define ACPI_COPY_TYPE_PACKAGE 1
  203. /* Info structure used to convert external<->internal namestrings */
  204. struct acpi_namestring_info {
  205. const char *external_name;
  206. const char *next_external_char;
  207. char *internal_name;
  208. u32 length;
  209. u32 num_segments;
  210. u32 num_carats;
  211. u8 fully_qualified;
  212. };
  213. /* Field creation info */
  214. struct acpi_create_field_info {
  215. struct acpi_namespace_node *region_node;
  216. struct acpi_namespace_node *field_node;
  217. struct acpi_namespace_node *register_node;
  218. struct acpi_namespace_node *data_register_node;
  219. u32 bank_value;
  220. u32 field_bit_position;
  221. u32 field_bit_length;
  222. u8 field_flags;
  223. u8 attribute;
  224. u8 field_type;
  225. };
  226. typedef
  227. acpi_status(*ACPI_INTERNAL_METHOD) (struct acpi_walk_state * walk_state);
  228. /*
  229. * Bitmapped ACPI types. Used internally only
  230. */
  231. #define ACPI_BTYPE_ANY 0x00000000
  232. #define ACPI_BTYPE_INTEGER 0x00000001
  233. #define ACPI_BTYPE_STRING 0x00000002
  234. #define ACPI_BTYPE_BUFFER 0x00000004
  235. #define ACPI_BTYPE_PACKAGE 0x00000008
  236. #define ACPI_BTYPE_FIELD_UNIT 0x00000010
  237. #define ACPI_BTYPE_DEVICE 0x00000020
  238. #define ACPI_BTYPE_EVENT 0x00000040
  239. #define ACPI_BTYPE_METHOD 0x00000080
  240. #define ACPI_BTYPE_MUTEX 0x00000100
  241. #define ACPI_BTYPE_REGION 0x00000200
  242. #define ACPI_BTYPE_POWER 0x00000400
  243. #define ACPI_BTYPE_PROCESSOR 0x00000800
  244. #define ACPI_BTYPE_THERMAL 0x00001000
  245. #define ACPI_BTYPE_BUFFER_FIELD 0x00002000
  246. #define ACPI_BTYPE_DDB_HANDLE 0x00004000
  247. #define ACPI_BTYPE_DEBUG_OBJECT 0x00008000
  248. #define ACPI_BTYPE_REFERENCE 0x00010000
  249. #define ACPI_BTYPE_RESOURCE 0x00020000
  250. #define ACPI_BTYPE_COMPUTE_DATA (ACPI_BTYPE_INTEGER | ACPI_BTYPE_STRING | ACPI_BTYPE_BUFFER)
  251. #define ACPI_BTYPE_DATA (ACPI_BTYPE_COMPUTE_DATA | ACPI_BTYPE_PACKAGE)
  252. #define ACPI_BTYPE_DATA_REFERENCE (ACPI_BTYPE_DATA | ACPI_BTYPE_REFERENCE | ACPI_BTYPE_DDB_HANDLE)
  253. #define ACPI_BTYPE_DEVICE_OBJECTS (ACPI_BTYPE_DEVICE | ACPI_BTYPE_THERMAL | ACPI_BTYPE_PROCESSOR)
  254. #define ACPI_BTYPE_OBJECTS_AND_REFS 0x0001FFFF /* ARG or LOCAL */
  255. #define ACPI_BTYPE_ALL_OBJECTS 0x0000FFFF
  256. /*
  257. * Information structure for ACPI predefined names.
  258. * Each entry in the table contains the following items:
  259. *
  260. * Name - The ACPI reserved name
  261. * param_count - Number of arguments to the method
  262. * expected_return_btypes - Allowed type(s) for the return value
  263. */
  264. struct acpi_name_info {
  265. char name[ACPI_NAME_SIZE];
  266. u8 param_count;
  267. u8 expected_btypes;
  268. };
  269. /*
  270. * Secondary information structures for ACPI predefined objects that return
  271. * package objects. This structure appears as the next entry in the table
  272. * after the NAME_INFO structure above.
  273. *
  274. * The reason for this is to minimize the size of the predefined name table.
  275. */
  276. /*
  277. * Used for ACPI_PTYPE1_FIXED, ACPI_PTYPE1_VAR, ACPI_PTYPE2,
  278. * ACPI_PTYPE2_MIN, ACPI_PTYPE2_PKG_COUNT, ACPI_PTYPE2_COUNT
  279. */
  280. struct acpi_package_info {
  281. u8 type;
  282. u8 object_type1;
  283. u8 count1;
  284. u8 object_type2;
  285. u8 count2;
  286. u8 reserved;
  287. };
  288. /* Used for ACPI_PTYPE2_FIXED */
  289. struct acpi_package_info2 {
  290. u8 type;
  291. u8 count;
  292. u8 object_type[4];
  293. };
  294. /* Used for ACPI_PTYPE1_OPTION */
  295. struct acpi_package_info3 {
  296. u8 type;
  297. u8 count;
  298. u8 object_type[2];
  299. u8 tail_object_type;
  300. u8 reserved;
  301. };
  302. union acpi_predefined_info {
  303. struct acpi_name_info info;
  304. struct acpi_package_info ret_info;
  305. struct acpi_package_info2 ret_info2;
  306. struct acpi_package_info3 ret_info3;
  307. };
  308. /*
  309. * Bitmapped return value types
  310. * Note: the actual data types must be contiguous, a loop in nspredef.c
  311. * depends on this.
  312. */
  313. #define ACPI_RTYPE_ANY 0x00
  314. #define ACPI_RTYPE_NONE 0x01
  315. #define ACPI_RTYPE_INTEGER 0x02
  316. #define ACPI_RTYPE_STRING 0x04
  317. #define ACPI_RTYPE_BUFFER 0x08
  318. #define ACPI_RTYPE_PACKAGE 0x10
  319. #define ACPI_RTYPE_REFERENCE 0x20
  320. #define ACPI_RTYPE_ALL 0x3F
  321. #define ACPI_NUM_RTYPES 5 /* Number of actual object types */
  322. /*****************************************************************************
  323. *
  324. * Event typedefs and structs
  325. *
  326. ****************************************************************************/
  327. /* Dispatch info for each GPE -- either a method or handler, cannot be both */
  328. struct acpi_handler_info {
  329. acpi_event_handler address; /* Address of handler, if any */
  330. void *context; /* Context to be passed to handler */
  331. struct acpi_namespace_node *method_node; /* Method node for this GPE level (saved) */
  332. };
  333. union acpi_gpe_dispatch_info {
  334. struct acpi_namespace_node *method_node; /* Method node for this GPE level */
  335. struct acpi_handler_info *handler;
  336. };
  337. /*
  338. * Information about a GPE, one per each GPE in an array.
  339. * NOTE: Important to keep this struct as small as possible.
  340. */
  341. struct acpi_gpe_event_info {
  342. union acpi_gpe_dispatch_info dispatch; /* Either Method or Handler */
  343. struct acpi_gpe_register_info *register_info; /* Backpointer to register info */
  344. u8 flags; /* Misc info about this GPE */
  345. u8 gpe_number; /* This GPE */
  346. };
  347. /* Information about a GPE register pair, one per each status/enable pair in an array */
  348. struct acpi_gpe_register_info {
  349. struct acpi_generic_address status_address; /* Address of status reg */
  350. struct acpi_generic_address enable_address; /* Address of enable reg */
  351. u8 enable_for_wake; /* GPEs to keep enabled when sleeping */
  352. u8 enable_for_run; /* GPEs to keep enabled when running */
  353. u8 base_gpe_number; /* Base GPE number for this register */
  354. };
  355. /*
  356. * Information about a GPE register block, one per each installed block --
  357. * GPE0, GPE1, and one per each installed GPE Block Device.
  358. */
  359. struct acpi_gpe_block_info {
  360. struct acpi_namespace_node *node;
  361. struct acpi_gpe_block_info *previous;
  362. struct acpi_gpe_block_info *next;
  363. struct acpi_gpe_xrupt_info *xrupt_block; /* Backpointer to interrupt block */
  364. struct acpi_gpe_register_info *register_info; /* One per GPE register pair */
  365. struct acpi_gpe_event_info *event_info; /* One for each GPE */
  366. struct acpi_generic_address block_address; /* Base address of the block */
  367. u32 register_count; /* Number of register pairs in block */
  368. u8 block_base_number; /* Base GPE number for this block */
  369. };
  370. /* Information about GPE interrupt handlers, one per each interrupt level used for GPEs */
  371. struct acpi_gpe_xrupt_info {
  372. struct acpi_gpe_xrupt_info *previous;
  373. struct acpi_gpe_xrupt_info *next;
  374. struct acpi_gpe_block_info *gpe_block_list_head; /* List of GPE blocks for this xrupt */
  375. u32 interrupt_number; /* System interrupt number */
  376. };
  377. struct acpi_gpe_walk_info {
  378. struct acpi_namespace_node *gpe_device;
  379. struct acpi_gpe_block_info *gpe_block;
  380. };
  381. struct acpi_gpe_device_info {
  382. u32 index;
  383. u32 next_block_base_index;
  384. acpi_status status;
  385. struct acpi_namespace_node *gpe_device;
  386. };
  387. typedef acpi_status(*acpi_gpe_callback) (struct acpi_gpe_xrupt_info *gpe_xrupt_info,
  388. struct acpi_gpe_block_info *gpe_block, void *context);
  389. /* Information about each particular fixed event */
  390. struct acpi_fixed_event_handler {
  391. acpi_event_handler handler; /* Address of handler. */
  392. void *context; /* Context to be passed to handler */
  393. };
  394. struct acpi_fixed_event_info {
  395. u8 status_register_id;
  396. u8 enable_register_id;
  397. u16 status_bit_mask;
  398. u16 enable_bit_mask;
  399. };
  400. /* Information used during field processing */
  401. struct acpi_field_info {
  402. u8 skip_field;
  403. u8 field_flag;
  404. u32 pkg_length;
  405. };
  406. /*****************************************************************************
  407. *
  408. * Generic "state" object for stacks
  409. *
  410. ****************************************************************************/
  411. #define ACPI_CONTROL_NORMAL 0xC0
  412. #define ACPI_CONTROL_CONDITIONAL_EXECUTING 0xC1
  413. #define ACPI_CONTROL_PREDICATE_EXECUTING 0xC2
  414. #define ACPI_CONTROL_PREDICATE_FALSE 0xC3
  415. #define ACPI_CONTROL_PREDICATE_TRUE 0xC4
  416. #define ACPI_STATE_COMMON \
  417. void *next; \
  418. u8 descriptor_type; /* To differentiate various internal objs */\
  419. u8 flags; \
  420. u16 value; \
  421. u16 state;
  422. /* There are 2 bytes available here until the next natural alignment boundary */
  423. struct acpi_common_state {
  424. ACPI_STATE_COMMON};
  425. /*
  426. * Update state - used to traverse complex objects such as packages
  427. */
  428. struct acpi_update_state {
  429. ACPI_STATE_COMMON union acpi_operand_object *object;
  430. };
  431. /*
  432. * Pkg state - used to traverse nested package structures
  433. */
  434. struct acpi_pkg_state {
  435. ACPI_STATE_COMMON u16 index;
  436. union acpi_operand_object *source_object;
  437. union acpi_operand_object *dest_object;
  438. struct acpi_walk_state *walk_state;
  439. void *this_target_obj;
  440. u32 num_packages;
  441. };
  442. /*
  443. * Control state - one per if/else and while constructs.
  444. * Allows nesting of these constructs
  445. */
  446. struct acpi_control_state {
  447. ACPI_STATE_COMMON u16 opcode;
  448. union acpi_parse_object *predicate_op;
  449. u8 *aml_predicate_start; /* Start of if/while predicate */
  450. u8 *package_end; /* End of if/while block */
  451. u32 loop_count; /* While() loop counter */
  452. };
  453. /*
  454. * Scope state - current scope during namespace lookups
  455. */
  456. struct acpi_scope_state {
  457. ACPI_STATE_COMMON struct acpi_namespace_node *node;
  458. };
  459. struct acpi_pscope_state {
  460. ACPI_STATE_COMMON u32 arg_count; /* Number of fixed arguments */
  461. union acpi_parse_object *op; /* Current op being parsed */
  462. u8 *arg_end; /* Current argument end */
  463. u8 *pkg_end; /* Current package end */
  464. u32 arg_list; /* Next argument to parse */
  465. };
  466. /*
  467. * Thread state - one per thread across multiple walk states. Multiple walk
  468. * states are created when there are nested control methods executing.
  469. */
  470. struct acpi_thread_state {
  471. ACPI_STATE_COMMON u8 current_sync_level; /* Mutex Sync (nested acquire) level */
  472. struct acpi_walk_state *walk_state_list; /* Head of list of walk_states for this thread */
  473. union acpi_operand_object *acquired_mutex_list; /* List of all currently acquired mutexes */
  474. acpi_thread_id thread_id; /* Running thread ID */
  475. };
  476. /*
  477. * Result values - used to accumulate the results of nested
  478. * AML arguments
  479. */
  480. struct acpi_result_values {
  481. ACPI_STATE_COMMON
  482. union acpi_operand_object *obj_desc[ACPI_RESULTS_FRAME_OBJ_NUM];
  483. };
  484. typedef
  485. acpi_status(*acpi_parse_downwards) (struct acpi_walk_state * walk_state,
  486. union acpi_parse_object ** out_op);
  487. typedef acpi_status(*acpi_parse_upwards) (struct acpi_walk_state * walk_state);
  488. /*
  489. * Notify info - used to pass info to the deferred notify
  490. * handler/dispatcher.
  491. */
  492. struct acpi_notify_info {
  493. ACPI_STATE_COMMON struct acpi_namespace_node *node;
  494. union acpi_operand_object *handler_obj;
  495. };
  496. /* Generic state is union of structs above */
  497. union acpi_generic_state {
  498. struct acpi_common_state common;
  499. struct acpi_control_state control;
  500. struct acpi_update_state update;
  501. struct acpi_scope_state scope;
  502. struct acpi_pscope_state parse_scope;
  503. struct acpi_pkg_state pkg;
  504. struct acpi_thread_state thread;
  505. struct acpi_result_values results;
  506. struct acpi_notify_info notify;
  507. };
  508. /*****************************************************************************
  509. *
  510. * Interpreter typedefs and structs
  511. *
  512. ****************************************************************************/
  513. typedef acpi_status(*ACPI_EXECUTE_OP) (struct acpi_walk_state * walk_state);
  514. /*****************************************************************************
  515. *
  516. * Parser typedefs and structs
  517. *
  518. ****************************************************************************/
  519. /*
  520. * AML opcode, name, and argument layout
  521. */
  522. struct acpi_opcode_info {
  523. #if defined(ACPI_DISASSEMBLER) || defined(ACPI_DEBUG_OUTPUT)
  524. char *name; /* Opcode name (disassembler/debug only) */
  525. #endif
  526. u32 parse_args; /* Grammar/Parse time arguments */
  527. u32 runtime_args; /* Interpret time arguments */
  528. u16 flags; /* Misc flags */
  529. u8 object_type; /* Corresponding internal object type */
  530. u8 class; /* Opcode class */
  531. u8 type; /* Opcode type */
  532. };
  533. union acpi_parse_value {
  534. acpi_integer integer; /* Integer constant (Up to 64 bits) */
  535. struct uint64_struct integer64; /* Structure overlay for 2 32-bit Dwords */
  536. u32 size; /* bytelist or field size */
  537. char *string; /* NULL terminated string */
  538. u8 *buffer; /* buffer or string */
  539. char *name; /* NULL terminated string */
  540. union acpi_parse_object *arg; /* arguments and contained ops */
  541. };
  542. #ifdef ACPI_DISASSEMBLER
  543. #define ACPI_DISASM_ONLY_MEMBERS(a) a;
  544. #else
  545. #define ACPI_DISASM_ONLY_MEMBERS(a)
  546. #endif
  547. #define ACPI_PARSE_COMMON \
  548. union acpi_parse_object *parent; /* Parent op */\
  549. u8 descriptor_type; /* To differentiate various internal objs */\
  550. u8 flags; /* Type of Op */\
  551. u16 aml_opcode; /* AML opcode */\
  552. u32 aml_offset; /* Offset of declaration in AML */\
  553. union acpi_parse_object *next; /* Next op */\
  554. struct acpi_namespace_node *node; /* For use by interpreter */\
  555. union acpi_parse_value value; /* Value or args associated with the opcode */\
  556. u8 arg_list_length; /* Number of elements in the arg list */\
  557. ACPI_DISASM_ONLY_MEMBERS (\
  558. u8 disasm_flags; /* Used during AML disassembly */\
  559. u8 disasm_opcode; /* Subtype used for disassembly */\
  560. char aml_op_name[16]) /* Op name (debug only) */
  561. #define ACPI_DASM_BUFFER 0x00
  562. #define ACPI_DASM_RESOURCE 0x01
  563. #define ACPI_DASM_STRING 0x02
  564. #define ACPI_DASM_UNICODE 0x03
  565. #define ACPI_DASM_EISAID 0x04
  566. #define ACPI_DASM_MATCHOP 0x05
  567. #define ACPI_DASM_LNOT_PREFIX 0x06
  568. #define ACPI_DASM_LNOT_SUFFIX 0x07
  569. #define ACPI_DASM_IGNORE 0x08
  570. /*
  571. * Generic operation (for example: If, While, Store)
  572. */
  573. struct acpi_parse_obj_common {
  574. ACPI_PARSE_COMMON};
  575. /*
  576. * Extended Op for named ops (Scope, Method, etc.), deferred ops (Methods and op_regions),
  577. * and bytelists.
  578. */
  579. struct acpi_parse_obj_named {
  580. ACPI_PARSE_COMMON u8 *path;
  581. u8 *data; /* AML body or bytelist data */
  582. u32 length; /* AML length */
  583. u32 name; /* 4-byte name or zero if no name */
  584. };
  585. /* This version is used by the i_aSL compiler only */
  586. #define ACPI_MAX_PARSEOP_NAME 20
  587. struct acpi_parse_obj_asl {
  588. ACPI_PARSE_COMMON union acpi_parse_object *child;
  589. union acpi_parse_object *parent_method;
  590. char *filename;
  591. char *external_name;
  592. char *namepath;
  593. char name_seg[4];
  594. u32 extra_value;
  595. u32 column;
  596. u32 line_number;
  597. u32 logical_line_number;
  598. u32 logical_byte_offset;
  599. u32 end_line;
  600. u32 end_logical_line;
  601. u32 acpi_btype;
  602. u32 aml_length;
  603. u32 aml_subtree_length;
  604. u32 final_aml_length;
  605. u32 final_aml_offset;
  606. u32 compile_flags;
  607. u16 parse_opcode;
  608. u8 aml_opcode_length;
  609. u8 aml_pkg_len_bytes;
  610. u8 extra;
  611. char parse_op_name[ACPI_MAX_PARSEOP_NAME];
  612. };
  613. union acpi_parse_object {
  614. struct acpi_parse_obj_common common;
  615. struct acpi_parse_obj_named named;
  616. struct acpi_parse_obj_asl asl;
  617. };
  618. /*
  619. * Parse state - one state per parser invocation and each control
  620. * method.
  621. */
  622. struct acpi_parse_state {
  623. u8 *aml_start; /* First AML byte */
  624. u8 *aml; /* Next AML byte */
  625. u8 *aml_end; /* (last + 1) AML byte */
  626. u8 *pkg_start; /* Current package begin */
  627. u8 *pkg_end; /* Current package end */
  628. union acpi_parse_object *start_op; /* Root of parse tree */
  629. struct acpi_namespace_node *start_node;
  630. union acpi_generic_state *scope; /* Current scope */
  631. union acpi_parse_object *start_scope;
  632. u32 aml_size;
  633. };
  634. /* Parse object flags */
  635. #define ACPI_PARSEOP_GENERIC 0x01
  636. #define ACPI_PARSEOP_NAMED 0x02
  637. #define ACPI_PARSEOP_DEFERRED 0x04
  638. #define ACPI_PARSEOP_BYTELIST 0x08
  639. #define ACPI_PARSEOP_IN_STACK 0x10
  640. #define ACPI_PARSEOP_TARGET 0x20
  641. #define ACPI_PARSEOP_IN_CACHE 0x80
  642. /* Parse object disasm_flags */
  643. #define ACPI_PARSEOP_IGNORE 0x01
  644. #define ACPI_PARSEOP_PARAMLIST 0x02
  645. #define ACPI_PARSEOP_EMPTY_TERMLIST 0x04
  646. #define ACPI_PARSEOP_SPECIAL 0x10
  647. /*****************************************************************************
  648. *
  649. * Hardware (ACPI registers) and PNP
  650. *
  651. ****************************************************************************/
  652. struct acpi_bit_register_info {
  653. u8 parent_register;
  654. u8 bit_position;
  655. u16 access_bit_mask;
  656. };
  657. /*
  658. * Some ACPI registers have bits that must be ignored -- meaning that they
  659. * must be preserved.
  660. */
  661. #define ACPI_PM1_STATUS_PRESERVED_BITS 0x0800 /* Bit 11 */
  662. /* Write-only bits must be zeroed by software */
  663. #define ACPI_PM1_CONTROL_WRITEONLY_BITS 0x2004 /* Bits 13, 2 */
  664. /* For control registers, both ignored and reserved bits must be preserved */
  665. /*
  666. * For PM1 control, the SCI enable bit (bit 0, SCI_EN) is defined by the
  667. * ACPI specification to be a "preserved" bit - "OSPM always preserves this
  668. * bit position", section 4.7.3.2.1. However, on some machines the OS must
  669. * write a one to this bit after resume for the machine to work properly.
  670. * To enable this, we no longer attempt to preserve this bit. No machines
  671. * are known to fail if the bit is not preserved. (May 2009)
  672. */
  673. #define ACPI_PM1_CONTROL_IGNORED_BITS 0x0200 /* Bit 9 */
  674. #define ACPI_PM1_CONTROL_RESERVED_BITS 0xC1F8 /* Bits 14-15, 3-8 */
  675. #define ACPI_PM1_CONTROL_PRESERVED_BITS \
  676. (ACPI_PM1_CONTROL_IGNORED_BITS | ACPI_PM1_CONTROL_RESERVED_BITS)
  677. #define ACPI_PM2_CONTROL_PRESERVED_BITS 0xFFFFFFFE /* All except bit 0 */
  678. /*
  679. * Register IDs
  680. * These are the full ACPI registers
  681. */
  682. #define ACPI_REGISTER_PM1_STATUS 0x01
  683. #define ACPI_REGISTER_PM1_ENABLE 0x02
  684. #define ACPI_REGISTER_PM1_CONTROL 0x03
  685. #define ACPI_REGISTER_PM2_CONTROL 0x04
  686. #define ACPI_REGISTER_PM_TIMER 0x05
  687. #define ACPI_REGISTER_PROCESSOR_BLOCK 0x06
  688. #define ACPI_REGISTER_SMI_COMMAND_BLOCK 0x07
  689. /* Masks used to access the bit_registers */
  690. #define ACPI_BITMASK_TIMER_STATUS 0x0001
  691. #define ACPI_BITMASK_BUS_MASTER_STATUS 0x0010
  692. #define ACPI_BITMASK_GLOBAL_LOCK_STATUS 0x0020
  693. #define ACPI_BITMASK_POWER_BUTTON_STATUS 0x0100
  694. #define ACPI_BITMASK_SLEEP_BUTTON_STATUS 0x0200
  695. #define ACPI_BITMASK_RT_CLOCK_STATUS 0x0400
  696. #define ACPI_BITMASK_PCIEXP_WAKE_STATUS 0x4000 /* ACPI 3.0 */
  697. #define ACPI_BITMASK_WAKE_STATUS 0x8000
  698. #define ACPI_BITMASK_ALL_FIXED_STATUS (\
  699. ACPI_BITMASK_TIMER_STATUS | \
  700. ACPI_BITMASK_BUS_MASTER_STATUS | \
  701. ACPI_BITMASK_GLOBAL_LOCK_STATUS | \
  702. ACPI_BITMASK_POWER_BUTTON_STATUS | \
  703. ACPI_BITMASK_SLEEP_BUTTON_STATUS | \
  704. ACPI_BITMASK_RT_CLOCK_STATUS | \
  705. ACPI_BITMASK_WAKE_STATUS)
  706. #define ACPI_BITMASK_TIMER_ENABLE 0x0001
  707. #define ACPI_BITMASK_GLOBAL_LOCK_ENABLE 0x0020
  708. #define ACPI_BITMASK_POWER_BUTTON_ENABLE 0x0100
  709. #define ACPI_BITMASK_SLEEP_BUTTON_ENABLE 0x0200
  710. #define ACPI_BITMASK_RT_CLOCK_ENABLE 0x0400
  711. #define ACPI_BITMASK_PCIEXP_WAKE_DISABLE 0x4000 /* ACPI 3.0 */
  712. #define ACPI_BITMASK_SCI_ENABLE 0x0001
  713. #define ACPI_BITMASK_BUS_MASTER_RLD 0x0002
  714. #define ACPI_BITMASK_GLOBAL_LOCK_RELEASE 0x0004
  715. #define ACPI_BITMASK_SLEEP_TYPE 0x1C00
  716. #define ACPI_BITMASK_SLEEP_ENABLE 0x2000
  717. #define ACPI_BITMASK_ARB_DISABLE 0x0001
  718. /* Raw bit position of each bit_register */
  719. #define ACPI_BITPOSITION_TIMER_STATUS 0x00
  720. #define ACPI_BITPOSITION_BUS_MASTER_STATUS 0x04
  721. #define ACPI_BITPOSITION_GLOBAL_LOCK_STATUS 0x05
  722. #define ACPI_BITPOSITION_POWER_BUTTON_STATUS 0x08
  723. #define ACPI_BITPOSITION_SLEEP_BUTTON_STATUS 0x09
  724. #define ACPI_BITPOSITION_RT_CLOCK_STATUS 0x0A
  725. #define ACPI_BITPOSITION_PCIEXP_WAKE_STATUS 0x0E /* ACPI 3.0 */
  726. #define ACPI_BITPOSITION_WAKE_STATUS 0x0F
  727. #define ACPI_BITPOSITION_TIMER_ENABLE 0x00
  728. #define ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE 0x05
  729. #define ACPI_BITPOSITION_POWER_BUTTON_ENABLE 0x08
  730. #define ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE 0x09
  731. #define ACPI_BITPOSITION_RT_CLOCK_ENABLE 0x0A
  732. #define ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE 0x0E /* ACPI 3.0 */
  733. #define ACPI_BITPOSITION_SCI_ENABLE 0x00
  734. #define ACPI_BITPOSITION_BUS_MASTER_RLD 0x01
  735. #define ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE 0x02
  736. #define ACPI_BITPOSITION_SLEEP_TYPE 0x0A
  737. #define ACPI_BITPOSITION_SLEEP_ENABLE 0x0D
  738. #define ACPI_BITPOSITION_ARB_DISABLE 0x00
  739. /* Structs and definitions for _OSI support and I/O port validation */
  740. #define ACPI_OSI_WIN_2000 0x01
  741. #define ACPI_OSI_WIN_XP 0x02
  742. #define ACPI_OSI_WIN_XP_SP1 0x03
  743. #define ACPI_OSI_WINSRV_2003 0x04
  744. #define ACPI_OSI_WIN_XP_SP2 0x05
  745. #define ACPI_OSI_WINSRV_2003_SP1 0x06
  746. #define ACPI_OSI_WIN_VISTA 0x07
  747. #define ACPI_ALWAYS_ILLEGAL 0x00
  748. struct acpi_interface_info {
  749. char *name;
  750. u8 value;
  751. };
  752. struct acpi_port_info {
  753. char *name;
  754. u16 start;
  755. u16 end;
  756. u8 osi_dependency;
  757. };
  758. /*****************************************************************************
  759. *
  760. * Resource descriptors
  761. *
  762. ****************************************************************************/
  763. /* resource_type values */
  764. #define ACPI_ADDRESS_TYPE_MEMORY_RANGE 0
  765. #define ACPI_ADDRESS_TYPE_IO_RANGE 1
  766. #define ACPI_ADDRESS_TYPE_BUS_NUMBER_RANGE 2
  767. /* Resource descriptor types and masks */
  768. #define ACPI_RESOURCE_NAME_LARGE 0x80
  769. #define ACPI_RESOURCE_NAME_SMALL 0x00
  770. #define ACPI_RESOURCE_NAME_SMALL_MASK 0x78 /* Bits 6:3 contain the type */
  771. #define ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK 0x07 /* Bits 2:0 contain the length */
  772. #define ACPI_RESOURCE_NAME_LARGE_MASK 0x7F /* Bits 6:0 contain the type */
  773. /*
  774. * Small resource descriptor "names" as defined by the ACPI specification.
  775. * Note: Bits 2:0 are used for the descriptor length
  776. */
  777. #define ACPI_RESOURCE_NAME_IRQ 0x20
  778. #define ACPI_RESOURCE_NAME_DMA 0x28
  779. #define ACPI_RESOURCE_NAME_START_DEPENDENT 0x30
  780. #define ACPI_RESOURCE_NAME_END_DEPENDENT 0x38
  781. #define ACPI_RESOURCE_NAME_IO 0x40
  782. #define ACPI_RESOURCE_NAME_FIXED_IO 0x48
  783. #define ACPI_RESOURCE_NAME_RESERVED_S1 0x50
  784. #define ACPI_RESOURCE_NAME_RESERVED_S2 0x58
  785. #define ACPI_RESOURCE_NAME_RESERVED_S3 0x60
  786. #define ACPI_RESOURCE_NAME_RESERVED_S4 0x68
  787. #define ACPI_RESOURCE_NAME_VENDOR_SMALL 0x70
  788. #define ACPI_RESOURCE_NAME_END_TAG 0x78
  789. /*
  790. * Large resource descriptor "names" as defined by the ACPI specification.
  791. * Note: includes the Large Descriptor bit in bit[7]
  792. */
  793. #define ACPI_RESOURCE_NAME_MEMORY24 0x81
  794. #define ACPI_RESOURCE_NAME_GENERIC_REGISTER 0x82
  795. #define ACPI_RESOURCE_NAME_RESERVED_L1 0x83
  796. #define ACPI_RESOURCE_NAME_VENDOR_LARGE 0x84
  797. #define ACPI_RESOURCE_NAME_MEMORY32 0x85
  798. #define ACPI_RESOURCE_NAME_FIXED_MEMORY32 0x86
  799. #define ACPI_RESOURCE_NAME_ADDRESS32 0x87
  800. #define ACPI_RESOURCE_NAME_ADDRESS16 0x88
  801. #define ACPI_RESOURCE_NAME_EXTENDED_IRQ 0x89
  802. #define ACPI_RESOURCE_NAME_ADDRESS64 0x8A
  803. #define ACPI_RESOURCE_NAME_EXTENDED_ADDRESS64 0x8B
  804. #define ACPI_RESOURCE_NAME_LARGE_MAX 0x8B
  805. /*****************************************************************************
  806. *
  807. * Miscellaneous
  808. *
  809. ****************************************************************************/
  810. #define ACPI_ASCII_ZERO 0x30
  811. /*****************************************************************************
  812. *
  813. * Debugger
  814. *
  815. ****************************************************************************/
  816. struct acpi_db_method_info {
  817. acpi_handle main_thread_gate;
  818. acpi_handle thread_complete_gate;
  819. u32 *threads;
  820. u32 num_threads;
  821. u32 num_created;
  822. u32 num_completed;
  823. char *name;
  824. u32 flags;
  825. u32 num_loops;
  826. char pathname[128];
  827. char **args;
  828. /*
  829. * Arguments to be passed to method for the command
  830. * Threads -
  831. * the Number of threads, ID of current thread and
  832. * Index of current thread inside all them created.
  833. */
  834. char init_args;
  835. char *arguments[4];
  836. char num_threads_str[11];
  837. char id_of_thread_str[11];
  838. char index_of_thread_str[11];
  839. };
  840. struct acpi_integrity_info {
  841. u32 nodes;
  842. u32 objects;
  843. };
  844. #define ACPI_DB_REDIRECTABLE_OUTPUT 0x01
  845. #define ACPI_DB_CONSOLE_OUTPUT 0x02
  846. #define ACPI_DB_DUPLICATE_OUTPUT 0x03
  847. /*****************************************************************************
  848. *
  849. * Debug
  850. *
  851. ****************************************************************************/
  852. /* Entry for a memory allocation (debug only) */
  853. #define ACPI_MEM_MALLOC 0
  854. #define ACPI_MEM_CALLOC 1
  855. #define ACPI_MAX_MODULE_NAME 16
  856. #define ACPI_COMMON_DEBUG_MEM_HEADER \
  857. struct acpi_debug_mem_block *previous; \
  858. struct acpi_debug_mem_block *next; \
  859. u32 size; \
  860. u32 component; \
  861. u32 line; \
  862. char module[ACPI_MAX_MODULE_NAME]; \
  863. u8 alloc_type;
  864. struct acpi_debug_mem_header {
  865. ACPI_COMMON_DEBUG_MEM_HEADER};
  866. struct acpi_debug_mem_block {
  867. ACPI_COMMON_DEBUG_MEM_HEADER u64 user_space;
  868. };
  869. #define ACPI_MEM_LIST_GLOBAL 0
  870. #define ACPI_MEM_LIST_NSNODE 1
  871. #define ACPI_MEM_LIST_MAX 1
  872. #define ACPI_NUM_MEM_LISTS 2
  873. #endif /* __ACLOCAL_H__ */