acobject.h 16 KB

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