1 /******************************************************************************
3 * Name: aclocal.h - Internal data types used across the ACPI subsystem
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
48 /* acpisrc:StructDefs -- for acpisrc conversion */
50 #define ACPI_SERIALIZED 0xFF
52 typedef UINT32 ACPI_MUTEX_HANDLE
;
53 #define ACPI_GLOBAL_LOCK (ACPI_SEMAPHORE) (-1)
55 /* Total number of aml opcodes defined */
57 #define AML_NUM_OPCODES 0x82
60 /* Forward declarations */
62 struct acpi_walk_state
;
63 struct acpi_obj_mutex
;
64 union acpi_parse_object
;
67 /*****************************************************************************
69 * Mutex typedefs and structs
71 ****************************************************************************/
75 * Predefined handles for the mutex objects used within the subsystem
76 * All mutex objects are automatically created by AcpiUtMutexInitialize.
78 * The acquire/release ordering protocol is implied via this list. Mutexes
79 * with a lower value must be acquired before mutexes with a higher value.
81 * NOTE: any changes here must be reflected in the AcpiGbl_MutexNames
84 #define ACPI_MTX_INTERPRETER 0 /* AML Interpreter, main lock */
85 #define ACPI_MTX_NAMESPACE 1 /* ACPI Namespace */
86 #define ACPI_MTX_TABLES 2 /* Data for ACPI tables */
87 #define ACPI_MTX_EVENTS 3 /* Data for ACPI events */
88 #define ACPI_MTX_CACHES 4 /* Internal caches, general purposes */
89 #define ACPI_MTX_MEMORY 5 /* Debug memory tracking lists */
91 #define ACPI_MAX_MUTEX 5
92 #define ACPI_NUM_MUTEX (ACPI_MAX_MUTEX+1)
95 /* Lock structure for reader/writer interfaces */
97 typedef struct acpi_rw_lock
99 ACPI_MUTEX WriterMutex
;
100 ACPI_MUTEX ReaderMutex
;
107 * Predefined handles for spinlocks used within the subsystem.
108 * These spinlocks are created by AcpiUtMutexInitialize
110 #define ACPI_LOCK_GPES 0
111 #define ACPI_LOCK_HARDWARE 1
113 #define ACPI_MAX_LOCK 1
114 #define ACPI_NUM_LOCK (ACPI_MAX_LOCK+1)
117 /* This Thread ID means that the mutex is not in use (unlocked) */
119 #define ACPI_MUTEX_NOT_ACQUIRED ((ACPI_THREAD_ID) -1)
121 /* This Thread ID means an invalid thread ID */
123 #ifdef ACPI_OS_INVALID_THREAD_ID
124 #define ACPI_INVALID_THREAD_ID ACPI_OS_INVALID_THREAD_ID
126 #define ACPI_INVALID_THREAD_ID ((ACPI_THREAD_ID) 0xFFFFFFFF)
129 /* Table for the global mutexes */
131 typedef struct acpi_mutex_info
135 ACPI_THREAD_ID ThreadId
;
140 /* Lock flag parameter for various interfaces */
142 #define ACPI_MTX_DO_NOT_LOCK 0
143 #define ACPI_MTX_LOCK 1
146 /* Field access granularities */
148 #define ACPI_FIELD_BYTE_GRANULARITY 1
149 #define ACPI_FIELD_WORD_GRANULARITY 2
150 #define ACPI_FIELD_DWORD_GRANULARITY 4
151 #define ACPI_FIELD_QWORD_GRANULARITY 8
154 #define ACPI_ENTRY_NOT_FOUND NULL
157 /*****************************************************************************
159 * Namespace typedefs and structs
161 ****************************************************************************/
163 /* Operational modes of the AML interpreter/scanner */
167 ACPI_IMODE_LOAD_PASS1
= 0x01,
168 ACPI_IMODE_LOAD_PASS2
= 0x02,
169 ACPI_IMODE_EXECUTE
= 0x03
171 } ACPI_INTERPRETER_MODE
;
175 * The Namespace Node describes a named object that appears in the AML.
176 * DescriptorType is used to differentiate between internal descriptors.
178 * The node is optimized for both 32-bit and 64-bit platforms:
179 * 20 bytes for the 32-bit case, 32 bytes for the 64-bit case.
181 * Note: The DescriptorType and Type fields must appear in the identical
182 * position in both the ACPI_NAMESPACE_NODE and ACPI_OPERAND_OBJECT
185 typedef struct acpi_namespace_node
187 union acpi_operand_object
*Object
; /* Interpreter object */
188 UINT8 DescriptorType
; /* Differentiate object descriptor types */
189 UINT8 Type
; /* ACPI Type associated with this name */
190 UINT8 Flags
; /* Miscellaneous flags */
191 ACPI_OWNER_ID OwnerId
; /* Node creator */
192 ACPI_NAME_UNION Name
; /* ACPI Name, always 4 chars per ACPI spec */
193 struct acpi_namespace_node
*Parent
; /* Parent node */
194 struct acpi_namespace_node
*Child
; /* First child */
195 struct acpi_namespace_node
*Peer
; /* First peer */
198 * The following fields are used by the ASL compiler and disassembler only
200 #ifdef ACPI_LARGE_NAMESPACE_NODE
201 union acpi_parse_object
*Op
;
210 } ACPI_NAMESPACE_NODE
;
213 /* Namespace Node flags */
215 #define ANOBJ_RESERVED 0x01 /* Available for use */
216 #define ANOBJ_TEMPORARY 0x02 /* Node is create by a method and is temporary */
217 #define ANOBJ_METHOD_ARG 0x04 /* Node is a method argument */
218 #define ANOBJ_METHOD_LOCAL 0x08 /* Node is a method local */
219 #define ANOBJ_SUBTREE_HAS_INI 0x10 /* Used to optimize device initialization */
220 #define ANOBJ_EVALUATED 0x20 /* Set on first evaluation of node */
221 #define ANOBJ_ALLOCATED_BUFFER 0x40 /* Method AML buffer is dynamic (InstallMethod) */
223 #define ANOBJ_IS_EXTERNAL 0x08 /* iASL only: This object created via External() */
224 #define ANOBJ_METHOD_NO_RETVAL 0x10 /* iASL only: Method has no return value */
225 #define ANOBJ_METHOD_SOME_NO_RETVAL 0x20 /* iASL only: Method has at least one return value */
226 #define ANOBJ_IS_REFERENCED 0x80 /* iASL only: Object was referenced */
229 /* Internal ACPI table management - master table list */
231 typedef struct acpi_table_list
233 ACPI_TABLE_DESC
*Tables
; /* Table descriptor array */
234 UINT32 CurrentTableCount
; /* Tables currently in the array */
235 UINT32 MaxTableCount
; /* Max tables array will hold */
240 /* Flags for above */
242 #define ACPI_ROOT_ORIGIN_UNKNOWN (0) /* ~ORIGIN_ALLOCATED */
243 #define ACPI_ROOT_ORIGIN_ALLOCATED (1)
244 #define ACPI_ROOT_ALLOW_RESIZE (2)
247 /* List to manage incoming ACPI tables */
249 typedef struct acpi_new_table_desc
251 ACPI_TABLE_HEADER
*Table
;
252 struct acpi_new_table_desc
*Next
;
254 } ACPI_NEW_TABLE_DESC
;
257 /* Predefined table indexes */
259 #define ACPI_INVALID_TABLE_INDEX (0xFFFFFFFF)
262 typedef struct acpi_find_context
271 typedef struct acpi_ns_search_data
273 ACPI_NAMESPACE_NODE
*Node
;
275 } ACPI_NS_SEARCH_DATA
;
278 /* Object types used during package copies */
280 #define ACPI_COPY_TYPE_SIMPLE 0
281 #define ACPI_COPY_TYPE_PACKAGE 1
284 /* Info structure used to convert external<->internal namestrings */
286 typedef struct acpi_namestring_info
288 const char *ExternalName
;
289 const char *NextExternalChar
;
294 BOOLEAN FullyQualified
;
296 } ACPI_NAMESTRING_INFO
;
299 /* Field creation info */
301 typedef struct acpi_create_field_info
303 ACPI_NAMESPACE_NODE
*RegionNode
;
304 ACPI_NAMESPACE_NODE
*FieldNode
;
305 ACPI_NAMESPACE_NODE
*RegisterNode
;
306 ACPI_NAMESPACE_NODE
*DataRegisterNode
;
307 ACPI_NAMESPACE_NODE
*ConnectionNode
;
308 UINT8
*ResourceBuffer
;
310 UINT32 FieldBitPosition
;
311 UINT32 FieldBitLength
;
312 UINT16 ResourceLength
;
313 UINT16 PinNumberIndex
;
319 } ACPI_CREATE_FIELD_INFO
;
323 ACPI_STATUS (*ACPI_INTERNAL_METHOD
) (
324 struct acpi_walk_state
*WalkState
);
328 * Bitmapped ACPI types. Used internally only
330 #define ACPI_BTYPE_ANY 0x00000000
331 #define ACPI_BTYPE_INTEGER 0x00000001
332 #define ACPI_BTYPE_STRING 0x00000002
333 #define ACPI_BTYPE_BUFFER 0x00000004
334 #define ACPI_BTYPE_PACKAGE 0x00000008
335 #define ACPI_BTYPE_FIELD_UNIT 0x00000010
336 #define ACPI_BTYPE_DEVICE 0x00000020
337 #define ACPI_BTYPE_EVENT 0x00000040
338 #define ACPI_BTYPE_METHOD 0x00000080
339 #define ACPI_BTYPE_MUTEX 0x00000100
340 #define ACPI_BTYPE_REGION 0x00000200
341 #define ACPI_BTYPE_POWER 0x00000400
342 #define ACPI_BTYPE_PROCESSOR 0x00000800
343 #define ACPI_BTYPE_THERMAL 0x00001000
344 #define ACPI_BTYPE_BUFFER_FIELD 0x00002000
345 #define ACPI_BTYPE_DDB_HANDLE 0x00004000
346 #define ACPI_BTYPE_DEBUG_OBJECT 0x00008000
347 #define ACPI_BTYPE_REFERENCE_OBJECT 0x00010000 /* From Index(), RefOf(), etc (Type6Opcodes) */
348 #define ACPI_BTYPE_RESOURCE 0x00020000
349 #define ACPI_BTYPE_NAMED_REFERENCE 0x00040000 /* Generic unresolved Name or Namepath */
351 #define ACPI_BTYPE_COMPUTE_DATA (ACPI_BTYPE_INTEGER | ACPI_BTYPE_STRING | ACPI_BTYPE_BUFFER)
353 #define ACPI_BTYPE_DATA (ACPI_BTYPE_COMPUTE_DATA | ACPI_BTYPE_PACKAGE)
355 /* Used by Copy, DeRefOf, Store, Printf, Fprintf */
357 #define ACPI_BTYPE_DATA_REFERENCE (ACPI_BTYPE_DATA | ACPI_BTYPE_REFERENCE_OBJECT | ACPI_BTYPE_DDB_HANDLE)
358 #define ACPI_BTYPE_DEVICE_OBJECTS (ACPI_BTYPE_DEVICE | ACPI_BTYPE_THERMAL | ACPI_BTYPE_PROCESSOR)
359 #define ACPI_BTYPE_OBJECTS_AND_REFS 0x0001FFFF /* ARG or LOCAL */
360 #define ACPI_BTYPE_ALL_OBJECTS 0x0000FFFF
365 * Information structure for ACPI predefined names.
366 * Each entry in the table contains the following items:
368 * Name - The ACPI reserved name
369 * ParamCount - Number of arguments to the method
370 * ExpectedReturnBtypes - Allowed type(s) for the return value
372 typedef struct acpi_name_info
374 char Name
[ACPI_NAME_SIZE
];
376 UINT8 ExpectedBtypes
;
381 * Secondary information structures for ACPI predefined objects that return
382 * package objects. This structure appears as the next entry in the table
383 * after the NAME_INFO structure above.
385 * The reason for this is to minimize the size of the predefined name table.
389 * Used for ACPI_PTYPE1_FIXED, ACPI_PTYPE1_VAR, ACPI_PTYPE2,
390 * ACPI_PTYPE2_MIN, ACPI_PTYPE2_PKG_COUNT, ACPI_PTYPE2_COUNT,
391 * ACPI_PTYPE2_FIX_VAR
393 typedef struct acpi_package_info
404 /* Used for ACPI_PTYPE2_FIXED */
406 typedef struct acpi_package_info2
413 } ACPI_PACKAGE_INFO2
;
415 /* Used for ACPI_PTYPE1_OPTION */
417 typedef struct acpi_package_info3
422 UINT8 TailObjectType
;
425 } ACPI_PACKAGE_INFO3
;
427 typedef struct acpi_package_info4
432 UINT8 SubObjectTypes
;
436 } ACPI_PACKAGE_INFO4
;
438 typedef union acpi_predefined_info
441 ACPI_PACKAGE_INFO RetInfo
;
442 ACPI_PACKAGE_INFO2 RetInfo2
;
443 ACPI_PACKAGE_INFO3 RetInfo3
;
444 ACPI_PACKAGE_INFO4 RetInfo4
;
446 } ACPI_PREDEFINED_INFO
;
448 /* Reset to default packing */
453 /* Return object auto-repair info */
455 typedef ACPI_STATUS (*ACPI_OBJECT_CONVERTER
) (
456 struct acpi_namespace_node
*Scope
,
457 union acpi_operand_object
*OriginalObject
,
458 union acpi_operand_object
**ConvertedObject
);
460 typedef struct acpi_simple_repair_info
462 char Name
[ACPI_NAME_SIZE
];
463 UINT32 UnexpectedBtypes
;
465 ACPI_OBJECT_CONVERTER ObjectConverter
;
467 } ACPI_SIMPLE_REPAIR_INFO
;
471 * Bitmapped return value types
472 * Note: the actual data types must be contiguous, a loop in nspredef.c
475 #define ACPI_RTYPE_ANY 0x00
476 #define ACPI_RTYPE_NONE 0x01
477 #define ACPI_RTYPE_INTEGER 0x02
478 #define ACPI_RTYPE_STRING 0x04
479 #define ACPI_RTYPE_BUFFER 0x08
480 #define ACPI_RTYPE_PACKAGE 0x10
481 #define ACPI_RTYPE_REFERENCE 0x20
482 #define ACPI_RTYPE_ALL 0x3F
484 #define ACPI_NUM_RTYPES 5 /* Number of actual object types */
487 /* Info for running the _REG methods */
489 typedef struct acpi_reg_walk_info
491 ACPI_ADR_SPACE_TYPE SpaceId
;
495 } ACPI_REG_WALK_INFO
;
498 /*****************************************************************************
500 * Event typedefs and structs
502 ****************************************************************************/
504 /* Dispatch info for each host-installed SCI handler */
506 typedef struct acpi_sci_handler_info
508 struct acpi_sci_handler_info
*Next
;
509 ACPI_SCI_HANDLER Address
; /* Address of handler */
510 void *Context
; /* Context to be passed to handler */
512 } ACPI_SCI_HANDLER_INFO
;
514 /* Dispatch info for each GPE -- either a method or handler, cannot be both */
516 typedef struct acpi_gpe_handler_info
518 ACPI_GPE_HANDLER Address
; /* Address of handler, if any */
519 void *Context
; /* Context to be passed to handler */
520 ACPI_NAMESPACE_NODE
*MethodNode
; /* Method node for this GPE level (saved) */
521 UINT8 OriginalFlags
; /* Original (pre-handler) GPE info */
522 BOOLEAN OriginallyEnabled
; /* True if GPE was originally enabled */
524 } ACPI_GPE_HANDLER_INFO
;
526 /* Notify info for implicit notify, multiple device objects */
528 typedef struct acpi_gpe_notify_info
530 ACPI_NAMESPACE_NODE
*DeviceNode
; /* Device to be notified */
531 struct acpi_gpe_notify_info
*Next
;
533 } ACPI_GPE_NOTIFY_INFO
;
536 * GPE dispatch info. At any time, the GPE can have at most one type
537 * of dispatch - Method, Handler, or Implicit Notify.
539 typedef union acpi_gpe_dispatch_info
541 ACPI_NAMESPACE_NODE
*MethodNode
; /* Method node for this GPE level */
542 ACPI_GPE_HANDLER_INFO
*Handler
; /* Installed GPE handler */
543 ACPI_GPE_NOTIFY_INFO
*NotifyList
; /* List of _PRW devices for implicit notifies */
545 } ACPI_GPE_DISPATCH_INFO
;
548 * Information about a GPE, one per each GPE in an array.
549 * NOTE: Important to keep this struct as small as possible.
551 typedef struct acpi_gpe_event_info
553 union acpi_gpe_dispatch_info Dispatch
; /* Either Method, Handler, or NotifyList */
554 struct acpi_gpe_register_info
*RegisterInfo
; /* Backpointer to register info */
555 UINT8 Flags
; /* Misc info about this GPE */
556 UINT8 GpeNumber
; /* This GPE */
557 UINT8 RuntimeCount
; /* References to a run GPE */
559 } ACPI_GPE_EVENT_INFO
;
561 /* Information about a GPE register pair, one per each status/enable pair in an array */
563 typedef struct acpi_gpe_register_info
565 ACPI_GENERIC_ADDRESS StatusAddress
; /* Address of status reg */
566 ACPI_GENERIC_ADDRESS EnableAddress
; /* Address of enable reg */
567 UINT16 BaseGpeNumber
; /* Base GPE number for this register */
568 UINT8 EnableForWake
; /* GPEs to keep enabled when sleeping */
569 UINT8 EnableForRun
; /* GPEs to keep enabled when running */
570 UINT8 EnableMask
; /* Current mask of enabled GPEs */
572 } ACPI_GPE_REGISTER_INFO
;
575 * Information about a GPE register block, one per each installed block --
576 * GPE0, GPE1, and one per each installed GPE Block Device.
578 typedef struct acpi_gpe_block_info
580 ACPI_NAMESPACE_NODE
*Node
;
581 struct acpi_gpe_block_info
*Previous
;
582 struct acpi_gpe_block_info
*Next
;
583 struct acpi_gpe_xrupt_info
*XruptBlock
; /* Backpointer to interrupt block */
584 ACPI_GPE_REGISTER_INFO
*RegisterInfo
; /* One per GPE register pair */
585 ACPI_GPE_EVENT_INFO
*EventInfo
; /* One for each GPE */
586 UINT64 Address
; /* Base address of the block */
587 UINT32 RegisterCount
; /* Number of register pairs in block */
588 UINT16 GpeCount
; /* Number of individual GPEs in block */
589 UINT16 BlockBaseNumber
;/* Base GPE number for this block */
591 BOOLEAN Initialized
; /* TRUE if this block is initialized */
593 } ACPI_GPE_BLOCK_INFO
;
595 /* Information about GPE interrupt handlers, one per each interrupt level used for GPEs */
597 typedef struct acpi_gpe_xrupt_info
599 struct acpi_gpe_xrupt_info
*Previous
;
600 struct acpi_gpe_xrupt_info
*Next
;
601 ACPI_GPE_BLOCK_INFO
*GpeBlockListHead
; /* List of GPE blocks for this xrupt */
602 UINT32 InterruptNumber
; /* System interrupt number */
604 } ACPI_GPE_XRUPT_INFO
;
606 typedef struct acpi_gpe_walk_info
608 ACPI_NAMESPACE_NODE
*GpeDevice
;
609 ACPI_GPE_BLOCK_INFO
*GpeBlock
;
611 ACPI_OWNER_ID OwnerId
;
612 BOOLEAN ExecuteByOwnerId
;
614 } ACPI_GPE_WALK_INFO
;
616 typedef struct acpi_gpe_device_info
619 UINT32 NextBlockBaseIndex
;
621 ACPI_NAMESPACE_NODE
*GpeDevice
;
623 } ACPI_GPE_DEVICE_INFO
;
625 typedef ACPI_STATUS (*ACPI_GPE_CALLBACK
) (
626 ACPI_GPE_XRUPT_INFO
*GpeXruptInfo
,
627 ACPI_GPE_BLOCK_INFO
*GpeBlock
,
631 /* Information about each particular fixed event */
633 typedef struct acpi_fixed_event_handler
635 ACPI_EVENT_HANDLER Handler
; /* Address of handler. */
636 void *Context
; /* Context to be passed to handler */
638 } ACPI_FIXED_EVENT_HANDLER
;
640 typedef struct acpi_fixed_event_info
642 UINT8 StatusRegisterId
;
643 UINT8 EnableRegisterId
;
644 UINT16 StatusBitMask
;
645 UINT16 EnableBitMask
;
647 } ACPI_FIXED_EVENT_INFO
;
649 /* Information used during field processing */
651 typedef struct acpi_field_info
660 /*****************************************************************************
662 * Generic "state" object for stacks
664 ****************************************************************************/
666 #define ACPI_CONTROL_NORMAL 0xC0
667 #define ACPI_CONTROL_CONDITIONAL_EXECUTING 0xC1
668 #define ACPI_CONTROL_PREDICATE_EXECUTING 0xC2
669 #define ACPI_CONTROL_PREDICATE_FALSE 0xC3
670 #define ACPI_CONTROL_PREDICATE_TRUE 0xC4
673 #define ACPI_STATE_COMMON \
675 UINT8 DescriptorType; /* To differentiate various internal objs */\
680 /* There are 2 bytes available here until the next natural alignment boundary */
682 typedef struct acpi_common_state
689 * Update state - used to traverse complex objects such as packages
691 typedef struct acpi_update_state
694 union acpi_operand_object
*Object
;
700 * Pkg state - used to traverse nested package structures
702 typedef struct acpi_pkg_state
706 union acpi_operand_object
*SourceObject
;
707 union acpi_operand_object
*DestObject
;
708 struct acpi_walk_state
*WalkState
;
716 * Control state - one per if/else and while constructs.
717 * Allows nesting of these constructs
719 typedef struct acpi_control_state
723 union acpi_parse_object
*PredicateOp
;
724 UINT8
*AmlPredicateStart
; /* Start of if/while predicate */
725 UINT8
*PackageEnd
; /* End of if/while block */
726 UINT32 LoopCount
; /* While() loop counter */
728 } ACPI_CONTROL_STATE
;
732 * Scope state - current scope during namespace lookups
734 typedef struct acpi_scope_state
737 ACPI_NAMESPACE_NODE
*Node
;
742 typedef struct acpi_pscope_state
745 UINT32 ArgCount
; /* Number of fixed arguments */
746 union acpi_parse_object
*Op
; /* Current op being parsed */
747 UINT8
*ArgEnd
; /* Current argument end */
748 UINT8
*PkgEnd
; /* Current package end */
749 UINT32 ArgList
; /* Next argument to parse */
755 * Thread state - one per thread across multiple walk states. Multiple walk
756 * states are created when there are nested control methods executing.
758 typedef struct acpi_thread_state
761 UINT8 CurrentSyncLevel
; /* Mutex Sync (nested acquire) level */
762 struct acpi_walk_state
*WalkStateList
; /* Head of list of WalkStates for this thread */
763 union acpi_operand_object
*AcquiredMutexList
; /* List of all currently acquired mutexes */
764 ACPI_THREAD_ID ThreadId
; /* Running thread ID */
770 * Result values - used to accumulate the results of nested
773 typedef struct acpi_result_values
776 union acpi_operand_object
*ObjDesc
[ACPI_RESULTS_FRAME_OBJ_NUM
];
778 } ACPI_RESULT_VALUES
;
782 ACPI_STATUS (*ACPI_PARSE_DOWNWARDS
) (
783 struct acpi_walk_state
*WalkState
,
784 union acpi_parse_object
**OutOp
);
787 ACPI_STATUS (*ACPI_PARSE_UPWARDS
) (
788 struct acpi_walk_state
*WalkState
);
791 /* Global handlers for AML Notifies */
793 typedef struct acpi_global_notify_handler
795 ACPI_NOTIFY_HANDLER Handler
;
798 } ACPI_GLOBAL_NOTIFY_HANDLER
;
801 * Notify info - used to pass info to the deferred notify
802 * handler/dispatcher.
804 typedef struct acpi_notify_info
808 ACPI_NAMESPACE_NODE
*Node
;
809 union acpi_operand_object
*HandlerListHead
;
810 ACPI_GLOBAL_NOTIFY_HANDLER
*Global
;
815 /* Generic state is union of structs above */
817 typedef union acpi_generic_state
819 ACPI_COMMON_STATE Common
;
820 ACPI_CONTROL_STATE Control
;
821 ACPI_UPDATE_STATE Update
;
822 ACPI_SCOPE_STATE Scope
;
823 ACPI_PSCOPE_STATE ParseScope
;
825 ACPI_THREAD_STATE Thread
;
826 ACPI_RESULT_VALUES Results
;
827 ACPI_NOTIFY_INFO Notify
;
829 } ACPI_GENERIC_STATE
;
832 /*****************************************************************************
834 * Interpreter typedefs and structs
836 ****************************************************************************/
839 ACPI_STATUS (*ACPI_EXECUTE_OP
) (
840 struct acpi_walk_state
*WalkState
);
842 /* Address Range info block */
844 typedef struct acpi_address_range
846 struct acpi_address_range
*Next
;
847 ACPI_NAMESPACE_NODE
*RegionNode
;
848 ACPI_PHYSICAL_ADDRESS StartAddress
;
849 ACPI_PHYSICAL_ADDRESS EndAddress
;
851 } ACPI_ADDRESS_RANGE
;
854 /*****************************************************************************
856 * Parser typedefs and structs
858 ****************************************************************************/
861 * AML opcode, name, and argument layout
863 typedef struct acpi_opcode_info
865 #if defined(ACPI_DISASSEMBLER) || defined(ACPI_DEBUG_OUTPUT)
866 char *Name
; /* Opcode name (disassembler/debug only) */
868 UINT32 ParseArgs
; /* Grammar/Parse time arguments */
869 UINT32 RuntimeArgs
; /* Interpret time arguments */
870 UINT16 Flags
; /* Misc flags */
871 UINT8 ObjectType
; /* Corresponding internal object type */
872 UINT8 Class
; /* Opcode class */
873 UINT8 Type
; /* Opcode type */
877 /* Structure for Resource Tag information */
879 typedef struct acpi_tag_info
886 /* Value associated with the parse object */
888 typedef union acpi_parse_value
890 UINT64 Integer
; /* Integer constant (Up to 64 bits) */
891 UINT32 Size
; /* bytelist or field size */
892 char *String
; /* NULL terminated string */
893 UINT8
*Buffer
; /* buffer or string */
894 char *Name
; /* NULL terminated string */
895 union acpi_parse_object
*Arg
; /* arguments and contained ops */
896 ACPI_TAG_INFO Tag
; /* Resource descriptor tag info */
901 #if defined(ACPI_DISASSEMBLER) || defined(ACPI_DEBUG_OUTPUT)
902 #define ACPI_DISASM_ONLY_MEMBERS(a) a;
904 #define ACPI_DISASM_ONLY_MEMBERS(a)
907 #define ACPI_PARSE_COMMON \
908 union acpi_parse_object *Parent; /* Parent op */\
909 UINT8 DescriptorType; /* To differentiate various internal objs */\
910 UINT8 Flags; /* Type of Op */\
911 UINT16 AmlOpcode; /* AML opcode */\
912 UINT8 *Aml; /* Address of declaration in AML */\
913 union acpi_parse_object *Next; /* Next op */\
914 ACPI_NAMESPACE_NODE *Node; /* For use by interpreter */\
915 ACPI_PARSE_VALUE Value; /* Value or args associated with the opcode */\
916 UINT8 ArgListLength; /* Number of elements in the arg list */\
917 ACPI_DISASM_ONLY_MEMBERS (\
918 UINT8 DisasmFlags; /* Used during AML disassembly */\
919 UINT8 DisasmOpcode; /* Subtype used for disassembly */\
920 char *OperatorSymbol;/* Used for C-style operator name strings */\
921 char AmlOpName[16]) /* Op name (debug only) */
924 /* Flags for DisasmFlags field above */
926 #define ACPI_DASM_BUFFER 0x00 /* Buffer is a simple data buffer */
927 #define ACPI_DASM_RESOURCE 0x01 /* Buffer is a Resource Descriptor */
928 #define ACPI_DASM_STRING 0x02 /* Buffer is a ASCII string */
929 #define ACPI_DASM_UNICODE 0x03 /* Buffer is a Unicode string */
930 #define ACPI_DASM_PLD_METHOD 0x04 /* Buffer is a _PLD method bit-packed buffer */
931 #define ACPI_DASM_UUID 0x05 /* Buffer is a UUID/GUID */
932 #define ACPI_DASM_EISAID 0x06 /* Integer is an EISAID */
933 #define ACPI_DASM_MATCHOP 0x07 /* Parent opcode is a Match() operator */
934 #define ACPI_DASM_LNOT_PREFIX 0x08 /* Start of a LNotEqual (etc.) pair of opcodes */
935 #define ACPI_DASM_LNOT_SUFFIX 0x09 /* End of a LNotEqual (etc.) pair of opcodes */
936 #define ACPI_DASM_HID_STRING 0x0A /* String is a _HID or _CID */
937 #define ACPI_DASM_IGNORE 0x0B /* Not used at this time */
940 * Generic operation (for example: If, While, Store)
942 typedef struct acpi_parse_obj_common
945 } ACPI_PARSE_OBJ_COMMON
;
949 * Extended Op for named ops (Scope, Method, etc.), deferred ops (Methods and OpRegions),
952 typedef struct acpi_parse_obj_named
956 UINT8
*Data
; /* AML body or bytelist data */
957 UINT32 Length
; /* AML length */
958 UINT32 Name
; /* 4-byte name or zero if no name */
960 } ACPI_PARSE_OBJ_NAMED
;
963 /* This version is used by the iASL compiler only */
965 #define ACPI_MAX_PARSEOP_NAME 20
967 typedef struct acpi_parse_obj_asl
970 union acpi_parse_object
*Child
;
971 union acpi_parse_object
*ParentMethod
;
979 UINT32 LogicalLineNumber
;
980 UINT32 LogicalByteOffset
;
982 UINT32 EndLogicalLine
;
985 UINT32 AmlSubtreeLength
;
986 UINT32 FinalAmlLength
;
987 UINT32 FinalAmlOffset
;
990 UINT8 AmlOpcodeLength
;
991 UINT8 AmlPkgLenBytes
;
993 char ParseOpName
[ACPI_MAX_PARSEOP_NAME
];
995 } ACPI_PARSE_OBJ_ASL
;
997 typedef union acpi_parse_object
999 ACPI_PARSE_OBJ_COMMON Common
;
1000 ACPI_PARSE_OBJ_NAMED Named
;
1001 ACPI_PARSE_OBJ_ASL Asl
;
1003 } ACPI_PARSE_OBJECT
;
1007 * Parse state - one state per parser invocation and each control
1010 typedef struct acpi_parse_state
1012 UINT8
*AmlStart
; /* First AML byte */
1013 UINT8
*Aml
; /* Next AML byte */
1014 UINT8
*AmlEnd
; /* (last + 1) AML byte */
1015 UINT8
*PkgStart
; /* Current package begin */
1016 UINT8
*PkgEnd
; /* Current package end */
1017 union acpi_parse_object
*StartOp
; /* Root of parse tree */
1018 struct acpi_namespace_node
*StartNode
;
1019 union acpi_generic_state
*Scope
; /* Current scope */
1020 union acpi_parse_object
*StartScope
;
1026 /* Parse object flags */
1028 #define ACPI_PARSEOP_GENERIC 0x01
1029 #define ACPI_PARSEOP_NAMED_OBJECT 0x02
1030 #define ACPI_PARSEOP_DEFERRED 0x04
1031 #define ACPI_PARSEOP_BYTELIST 0x08
1032 #define ACPI_PARSEOP_IN_STACK 0x10
1033 #define ACPI_PARSEOP_TARGET 0x20
1034 #define ACPI_PARSEOP_IN_CACHE 0x80
1036 /* Parse object DisasmFlags */
1038 #define ACPI_PARSEOP_IGNORE 0x01
1039 #define ACPI_PARSEOP_PARAMETER_LIST 0x02
1040 #define ACPI_PARSEOP_EMPTY_TERMLIST 0x04
1041 #define ACPI_PARSEOP_PREDEFINED_CHECKED 0x08
1042 #define ACPI_PARSEOP_CLOSING_PAREN 0x10
1043 #define ACPI_PARSEOP_COMPOUND_ASSIGNMENT 0x20
1044 #define ACPI_PARSEOP_ASSIGNMENT 0x40
1045 #define ACPI_PARSEOP_ELSEIF 0x80
1048 /*****************************************************************************
1050 * Hardware (ACPI registers) and PNP
1052 ****************************************************************************/
1054 typedef struct acpi_bit_register_info
1056 UINT8 ParentRegister
;
1058 UINT16 AccessBitMask
;
1060 } ACPI_BIT_REGISTER_INFO
;
1064 * Some ACPI registers have bits that must be ignored -- meaning that they
1065 * must be preserved.
1067 #define ACPI_PM1_STATUS_PRESERVED_BITS 0x0800 /* Bit 11 */
1069 /* Write-only bits must be zeroed by software */
1071 #define ACPI_PM1_CONTROL_WRITEONLY_BITS 0x2004 /* Bits 13, 2 */
1073 /* For control registers, both ignored and reserved bits must be preserved */
1076 * For PM1 control, the SCI enable bit (bit 0, SCI_EN) is defined by the
1077 * ACPI specification to be a "preserved" bit - "OSPM always preserves this
1078 * bit position", section 4.7.3.2.1. However, on some machines the OS must
1079 * write a one to this bit after resume for the machine to work properly.
1080 * To enable this, we no longer attempt to preserve this bit. No machines
1081 * are known to fail if the bit is not preserved. (May 2009)
1083 #define ACPI_PM1_CONTROL_IGNORED_BITS 0x0200 /* Bit 9 */
1084 #define ACPI_PM1_CONTROL_RESERVED_BITS 0xC1F8 /* Bits 14-15, 3-8 */
1085 #define ACPI_PM1_CONTROL_PRESERVED_BITS \
1086 (ACPI_PM1_CONTROL_IGNORED_BITS | ACPI_PM1_CONTROL_RESERVED_BITS)
1088 #define ACPI_PM2_CONTROL_PRESERVED_BITS 0xFFFFFFFE /* All except bit 0 */
1092 * These are the full ACPI registers
1094 #define ACPI_REGISTER_PM1_STATUS 0x01
1095 #define ACPI_REGISTER_PM1_ENABLE 0x02
1096 #define ACPI_REGISTER_PM1_CONTROL 0x03
1097 #define ACPI_REGISTER_PM2_CONTROL 0x04
1098 #define ACPI_REGISTER_PM_TIMER 0x05
1099 #define ACPI_REGISTER_PROCESSOR_BLOCK 0x06
1100 #define ACPI_REGISTER_SMI_COMMAND_BLOCK 0x07
1103 /* Masks used to access the BitRegisters */
1105 #define ACPI_BITMASK_TIMER_STATUS 0x0001
1106 #define ACPI_BITMASK_BUS_MASTER_STATUS 0x0010
1107 #define ACPI_BITMASK_GLOBAL_LOCK_STATUS 0x0020
1108 #define ACPI_BITMASK_POWER_BUTTON_STATUS 0x0100
1109 #define ACPI_BITMASK_SLEEP_BUTTON_STATUS 0x0200
1110 #define ACPI_BITMASK_RT_CLOCK_STATUS 0x0400
1111 #define ACPI_BITMASK_PCIEXP_WAKE_STATUS 0x4000 /* ACPI 3.0 */
1112 #define ACPI_BITMASK_WAKE_STATUS 0x8000
1114 #define ACPI_BITMASK_ALL_FIXED_STATUS (\
1115 ACPI_BITMASK_TIMER_STATUS | \
1116 ACPI_BITMASK_BUS_MASTER_STATUS | \
1117 ACPI_BITMASK_GLOBAL_LOCK_STATUS | \
1118 ACPI_BITMASK_POWER_BUTTON_STATUS | \
1119 ACPI_BITMASK_SLEEP_BUTTON_STATUS | \
1120 ACPI_BITMASK_RT_CLOCK_STATUS | \
1121 ACPI_BITMASK_PCIEXP_WAKE_STATUS | \
1122 ACPI_BITMASK_WAKE_STATUS)
1124 #define ACPI_BITMASK_TIMER_ENABLE 0x0001
1125 #define ACPI_BITMASK_GLOBAL_LOCK_ENABLE 0x0020
1126 #define ACPI_BITMASK_POWER_BUTTON_ENABLE 0x0100
1127 #define ACPI_BITMASK_SLEEP_BUTTON_ENABLE 0x0200
1128 #define ACPI_BITMASK_RT_CLOCK_ENABLE 0x0400
1129 #define ACPI_BITMASK_PCIEXP_WAKE_DISABLE 0x4000 /* ACPI 3.0 */
1131 #define ACPI_BITMASK_SCI_ENABLE 0x0001
1132 #define ACPI_BITMASK_BUS_MASTER_RLD 0x0002
1133 #define ACPI_BITMASK_GLOBAL_LOCK_RELEASE 0x0004
1134 #define ACPI_BITMASK_SLEEP_TYPE 0x1C00
1135 #define ACPI_BITMASK_SLEEP_ENABLE 0x2000
1137 #define ACPI_BITMASK_ARB_DISABLE 0x0001
1140 /* Raw bit position of each BitRegister */
1142 #define ACPI_BITPOSITION_TIMER_STATUS 0x00
1143 #define ACPI_BITPOSITION_BUS_MASTER_STATUS 0x04
1144 #define ACPI_BITPOSITION_GLOBAL_LOCK_STATUS 0x05
1145 #define ACPI_BITPOSITION_POWER_BUTTON_STATUS 0x08
1146 #define ACPI_BITPOSITION_SLEEP_BUTTON_STATUS 0x09
1147 #define ACPI_BITPOSITION_RT_CLOCK_STATUS 0x0A
1148 #define ACPI_BITPOSITION_PCIEXP_WAKE_STATUS 0x0E /* ACPI 3.0 */
1149 #define ACPI_BITPOSITION_WAKE_STATUS 0x0F
1151 #define ACPI_BITPOSITION_TIMER_ENABLE 0x00
1152 #define ACPI_BITPOSITION_GLOBAL_LOCK_ENABLE 0x05
1153 #define ACPI_BITPOSITION_POWER_BUTTON_ENABLE 0x08
1154 #define ACPI_BITPOSITION_SLEEP_BUTTON_ENABLE 0x09
1155 #define ACPI_BITPOSITION_RT_CLOCK_ENABLE 0x0A
1156 #define ACPI_BITPOSITION_PCIEXP_WAKE_DISABLE 0x0E /* ACPI 3.0 */
1158 #define ACPI_BITPOSITION_SCI_ENABLE 0x00
1159 #define ACPI_BITPOSITION_BUS_MASTER_RLD 0x01
1160 #define ACPI_BITPOSITION_GLOBAL_LOCK_RELEASE 0x02
1161 #define ACPI_BITPOSITION_SLEEP_TYPE 0x0A
1162 #define ACPI_BITPOSITION_SLEEP_ENABLE 0x0D
1164 #define ACPI_BITPOSITION_ARB_DISABLE 0x00
1167 /* Structs and definitions for _OSI support and I/O port validation */
1169 #define ACPI_ALWAYS_ILLEGAL 0x00
1171 typedef struct acpi_interface_info
1174 struct acpi_interface_info
*Next
;
1178 } ACPI_INTERFACE_INFO
;
1180 #define ACPI_OSI_INVALID 0x01
1181 #define ACPI_OSI_DYNAMIC 0x02
1182 #define ACPI_OSI_FEATURE 0x04
1183 #define ACPI_OSI_DEFAULT_INVALID 0x08
1184 #define ACPI_OSI_OPTIONAL_FEATURE (ACPI_OSI_FEATURE | ACPI_OSI_DEFAULT_INVALID | ACPI_OSI_INVALID)
1186 typedef struct acpi_port_info
1191 UINT8 OsiDependency
;
1196 /*****************************************************************************
1198 * Resource descriptors
1200 ****************************************************************************/
1202 /* ResourceType values */
1204 #define ACPI_ADDRESS_TYPE_MEMORY_RANGE 0
1205 #define ACPI_ADDRESS_TYPE_IO_RANGE 1
1206 #define ACPI_ADDRESS_TYPE_BUS_NUMBER_RANGE 2
1208 /* Resource descriptor types and masks */
1210 #define ACPI_RESOURCE_NAME_LARGE 0x80
1211 #define ACPI_RESOURCE_NAME_SMALL 0x00
1213 #define ACPI_RESOURCE_NAME_SMALL_MASK 0x78 /* Bits 6:3 contain the type */
1214 #define ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK 0x07 /* Bits 2:0 contain the length */
1215 #define ACPI_RESOURCE_NAME_LARGE_MASK 0x7F /* Bits 6:0 contain the type */
1219 * Small resource descriptor "names" as defined by the ACPI specification.
1220 * Note: Bits 2:0 are used for the descriptor length
1222 #define ACPI_RESOURCE_NAME_IRQ 0x20
1223 #define ACPI_RESOURCE_NAME_DMA 0x28
1224 #define ACPI_RESOURCE_NAME_START_DEPENDENT 0x30
1225 #define ACPI_RESOURCE_NAME_END_DEPENDENT 0x38
1226 #define ACPI_RESOURCE_NAME_IO 0x40
1227 #define ACPI_RESOURCE_NAME_FIXED_IO 0x48
1228 #define ACPI_RESOURCE_NAME_FIXED_DMA 0x50
1229 #define ACPI_RESOURCE_NAME_RESERVED_S2 0x58
1230 #define ACPI_RESOURCE_NAME_RESERVED_S3 0x60
1231 #define ACPI_RESOURCE_NAME_RESERVED_S4 0x68
1232 #define ACPI_RESOURCE_NAME_VENDOR_SMALL 0x70
1233 #define ACPI_RESOURCE_NAME_END_TAG 0x78
1236 * Large resource descriptor "names" as defined by the ACPI specification.
1237 * Note: includes the Large Descriptor bit in bit[7]
1239 #define ACPI_RESOURCE_NAME_MEMORY24 0x81
1240 #define ACPI_RESOURCE_NAME_GENERIC_REGISTER 0x82
1241 #define ACPI_RESOURCE_NAME_RESERVED_L1 0x83
1242 #define ACPI_RESOURCE_NAME_VENDOR_LARGE 0x84
1243 #define ACPI_RESOURCE_NAME_MEMORY32 0x85
1244 #define ACPI_RESOURCE_NAME_FIXED_MEMORY32 0x86
1245 #define ACPI_RESOURCE_NAME_ADDRESS32 0x87
1246 #define ACPI_RESOURCE_NAME_ADDRESS16 0x88
1247 #define ACPI_RESOURCE_NAME_EXTENDED_IRQ 0x89
1248 #define ACPI_RESOURCE_NAME_ADDRESS64 0x8A
1249 #define ACPI_RESOURCE_NAME_EXTENDED_ADDRESS64 0x8B
1250 #define ACPI_RESOURCE_NAME_GPIO 0x8C
1251 #define ACPI_RESOURCE_NAME_SERIAL_BUS 0x8E
1252 #define ACPI_RESOURCE_NAME_LARGE_MAX 0x8E
1255 /*****************************************************************************
1259 ****************************************************************************/
1261 #define ACPI_ASCII_ZERO 0x30
1264 /*****************************************************************************
1268 ****************************************************************************/
1270 typedef struct acpi_external_list
1274 struct acpi_external_list
*Next
;
1280 } ACPI_EXTERNAL_LIST
;
1282 /* Values for Flags field above */
1284 #define ACPI_EXT_RESOLVED_REFERENCE 0x01 /* Object was resolved during cross ref */
1285 #define ACPI_EXT_ORIGIN_FROM_FILE 0x02 /* External came from a file */
1286 #define ACPI_EXT_INTERNAL_PATH_ALLOCATED 0x04 /* Deallocate internal path on completion */
1287 #define ACPI_EXT_EXTERNAL_EMITTED 0x08 /* External() statement has been emitted */
1288 #define ACPI_EXT_ORIGIN_FROM_OPCODE 0x10 /* External came from a External() opcode */
1291 typedef struct acpi_external_file
1294 struct acpi_external_file
*Next
;
1296 } ACPI_EXTERNAL_FILE
;
1299 /*****************************************************************************
1303 ****************************************************************************/
1305 typedef struct acpi_db_method_info
1308 ACPI_HANDLE MainThreadGate
;
1309 ACPI_HANDLE ThreadCompleteGate
;
1310 ACPI_HANDLE InfoGate
;
1311 ACPI_THREAD_ID
*Threads
;
1314 UINT32 NumCompleted
;
1319 char Pathname
[ACPI_DB_LINE_BUFFER_SIZE
];
1321 ACPI_OBJECT_TYPE
*Types
;
1324 * Arguments to be passed to method for the command
1326 * the Number of threads, ID of current thread and
1327 * Index of current thread inside all them created.
1330 #ifdef ACPI_DEBUGGER
1331 ACPI_OBJECT_TYPE ArgTypes
[4];
1334 char NumThreadsStr
[11];
1335 char IdOfThreadStr
[11];
1336 char IndexOfThreadStr
[11];
1338 } ACPI_DB_METHOD_INFO
;
1340 typedef struct acpi_integrity_info
1345 } ACPI_INTEGRITY_INFO
;
1348 #define ACPI_DB_DISABLE_OUTPUT 0x00
1349 #define ACPI_DB_REDIRECTABLE_OUTPUT 0x01
1350 #define ACPI_DB_CONSOLE_OUTPUT 0x02
1351 #define ACPI_DB_DUPLICATE_OUTPUT 0x03
1354 typedef struct acpi_object_info
1356 UINT32 Types
[ACPI_TOTAL_TYPES
];
1361 /*****************************************************************************
1365 ****************************************************************************/
1367 /* Entry for a memory allocation (debug only) */
1369 #define ACPI_MEM_MALLOC 0
1370 #define ACPI_MEM_CALLOC 1
1371 #define ACPI_MAX_MODULE_NAME 16
1373 #define ACPI_COMMON_DEBUG_MEM_HEADER \
1374 struct acpi_debug_mem_block *Previous; \
1375 struct acpi_debug_mem_block *Next; \
1379 char Module[ACPI_MAX_MODULE_NAME]; \
1382 typedef struct acpi_debug_mem_header
1384 ACPI_COMMON_DEBUG_MEM_HEADER
1386 } ACPI_DEBUG_MEM_HEADER
;
1388 typedef struct acpi_debug_mem_block
1390 ACPI_COMMON_DEBUG_MEM_HEADER
1393 } ACPI_DEBUG_MEM_BLOCK
;
1396 #define ACPI_MEM_LIST_GLOBAL 0
1397 #define ACPI_MEM_LIST_NSNODE 1
1398 #define ACPI_MEM_LIST_MAX 1
1399 #define ACPI_NUM_MEM_LISTS 2
1402 /*****************************************************************************
1406 ****************************************************************************/
1408 typedef struct ah_predefined_name
1412 #ifndef ACPI_ASL_COMPILER
1416 } AH_PREDEFINED_NAME
;
1418 typedef struct ah_device_id
1425 typedef struct ah_uuid
1432 typedef struct ah_table
1439 #endif /* __ACLOCAL_H__ */