ReactOS 0.4.15-dev-7842-g558ab78
acobject.h
Go to the documentation of this file.
1/******************************************************************************
2 *
3 * Name: acobject.h - Definition of ACPI_OPERAND_OBJECT (Internal object only)
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2022, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
25 *
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.
29 *
30 * NO WARRANTY
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 MERCHANTABILITY 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.
42 */
43
44#ifndef _ACOBJECT_H
45#define _ACOBJECT_H
46
47/* acpisrc:StructDefs -- for acpisrc conversion */
48
49
50/*
51 * The ACPI_OPERAND_OBJECT is used to pass AML operands from the dispatcher
52 * to the interpreter, and to keep track of the various handlers such as
53 * address space handlers and notify handlers. The object is a constant
54 * size in order to allow it to be cached and reused.
55 *
56 * Note: The object is optimized to be aligned and will not work if it is
57 * byte-packed.
58 */
59#if ACPI_MACHINE_WIDTH == 64
60#pragma pack(8)
61#else
62#pragma pack(4)
63#endif
64
65/*******************************************************************************
66 *
67 * Common Descriptors
68 *
69 ******************************************************************************/
70
71/*
72 * Common area for all objects.
73 *
74 * DescriptorType is used to differentiate between internal descriptors, and
75 * must be in the same place across all descriptors
76 *
77 * Note: The DescriptorType and Type fields must appear in the identical
78 * position in both the ACPI_NAMESPACE_NODE and ACPI_OPERAND_OBJECT
79 * structures.
80 */
81#define ACPI_OBJECT_COMMON_HEADER \
82 union acpi_operand_object *NextObject; /* Objects linked to parent NS node */\
83 UINT8 DescriptorType; /* To differentiate various internal objs */\
84 UINT8 Type; /* ACPI_OBJECT_TYPE */\
85 UINT16 ReferenceCount; /* For object deletion management */\
86 UINT8 Flags;
87 /*
88 * Note: There are 3 bytes available here before the
89 * next natural alignment boundary (for both 32/64 cases)
90 */
91
92/* Values for Flag byte above */
93
94#define AOPOBJ_AML_CONSTANT 0x01 /* Integer is an AML constant */
95#define AOPOBJ_STATIC_POINTER 0x02 /* Data is part of an ACPI table, don't delete */
96#define AOPOBJ_DATA_VALID 0x04 /* Object is initialized and data is valid */
97#define AOPOBJ_OBJECT_INITIALIZED 0x08 /* Region is initialized */
98#define AOPOBJ_REG_CONNECTED 0x10 /* _REG was run */
99#define AOPOBJ_SETUP_COMPLETE 0x20 /* Region setup is complete */
100#define AOPOBJ_INVALID 0x40 /* Host OS won't allow a Region address */
101
102
103/******************************************************************************
104 *
105 * Basic data types
106 *
107 *****************************************************************************/
108
109typedef struct acpi_object_common
110{
112
114
115
117{
119 UINT8 Fill[3]; /* Prevent warning on some compilers */
121
123
124
125/*
126 * Note: The String and Buffer object must be identical through the
127 * pointer and length elements. There is code that depends on this.
128 *
129 * Fields common to both Strings and Buffers
130 */
131#define ACPI_COMMON_BUFFER_INFO(_Type) \
132 _Type *Pointer; \
133 UINT32 Length;
134
135
136/* Null terminated, ASCII characters only */
137
138typedef struct acpi_object_string
139{
141 ACPI_COMMON_BUFFER_INFO (char) /* String in AML stream or allocated string */
142
144
145
146typedef struct acpi_object_buffer
147{
149 ACPI_COMMON_BUFFER_INFO (UINT8) /* Buffer in AML stream or allocated buffer */
152 ACPI_NAMESPACE_NODE *Node; /* Link back to parent node */
153
155
156
158{
160 ACPI_NAMESPACE_NODE *Node; /* Link back to parent node */
161 union acpi_operand_object **Elements; /* Array of pointers to AcpiObjects */
164 UINT32 Count; /* # of elements in package */
165
167
168
169/******************************************************************************
170 *
171 * Complex data types
172 *
173 *****************************************************************************/
174
175typedef struct acpi_object_event
176{
178 ACPI_SEMAPHORE OsSemaphore; /* Actual OS synchronization object */
179
181
182
183typedef struct acpi_object_mutex
184{
186 UINT8 SyncLevel; /* 0-15, specified in Mutex() call */
187 UINT16 AcquisitionDepth; /* Allow multiple Acquires, same thread */
188 ACPI_MUTEX OsMutex; /* Actual OS synchronization object */
189 ACPI_THREAD_ID ThreadId; /* Current owner of the mutex */
190 struct acpi_thread_state *OwnerThread; /* Current owner of the mutex */
191 union acpi_operand_object *Prev; /* Link for list of acquired mutexes */
192 union acpi_operand_object *Next; /* Link for list of acquired mutexes */
193 ACPI_NAMESPACE_NODE *Node; /* Containing namespace node */
194 UINT8 OriginalSyncLevel; /* Owner's original sync level (0-15) */
195
197
198
199typedef struct acpi_object_region
200{
203 ACPI_NAMESPACE_NODE *Node; /* Containing namespace node */
204 union acpi_operand_object *Handler; /* Handler for region access */
206 ACPI_PHYSICAL_ADDRESS Address;
208 void *Pointer; /* Only for data table regions */
209
211
212
213typedef struct acpi_object_method
214{
222 union
223 {
227
231
233
234/* Flags for InfoFlags field above */
235
236#define ACPI_METHOD_MODULE_LEVEL 0x01 /* Method is actually module-level code */
237#define ACPI_METHOD_INTERNAL_ONLY 0x02 /* Method is implemented internally (_OSI) */
238#define ACPI_METHOD_SERIALIZED 0x04 /* Method is serialized */
239#define ACPI_METHOD_SERIALIZED_PENDING 0x08 /* Method is to be marked serialized */
240#define ACPI_METHOD_IGNORE_SYNC_LEVEL 0x10 /* Method was auto-serialized at table load time */
241#define ACPI_METHOD_MODIFIED_NAMESPACE 0x20 /* Method modified the namespace */
242
243
244/******************************************************************************
245 *
246 * Objects that can be notified. All share a common NotifyInfo area.
247 *
248 *****************************************************************************/
249
250/*
251 * Common fields for objects that support ASL notifications
252 */
253#define ACPI_COMMON_NOTIFY_INFO \
254 union acpi_operand_object *NotifyList[2]; /* Handlers for system/device notifies */\
255 union acpi_operand_object *Handler; /* Handler for Address space */
256
257/* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
258
260{
263
265
266
267typedef struct acpi_object_device
268{
272
274
275
277{
282
284
285
287{
289
290 /* The next two fields take advantage of the 3-byte space before NOTIFY_INFO */
291
295 ACPI_IO_ADDRESS Address;
296
298
299
301{
304
306
307
308/******************************************************************************
309 *
310 * Fields. All share a common header/info field.
311 *
312 *****************************************************************************/
313
314/*
315 * Common bitfield for the field objects
316 * "Field Datum" -- a datum from the actual field object
317 * "Buffer Datum" -- a datum from a user buffer, read from or to be written to the field
318 */
319#define ACPI_COMMON_FIELD_INFO \
320 UINT8 FieldFlags; /* Access, update, and lock bits */\
321 UINT8 Attribute; /* From AccessAs keyword */\
322 UINT8 AccessByteWidth; /* Read/Write size in bytes */\
323 ACPI_NAMESPACE_NODE *Node; /* Link back to parent node */\
324 UINT32 BitLength; /* Length of field in bits */\
325 UINT32 BaseByteOffset; /* Byte offset within containing object */\
326 UINT32 Value; /* Value to store into the Bank or Index register */\
327 UINT8 StartFieldBitOffset;/* Bit offset within first field datum (0-63) */\
328 UINT8 AccessLength; /* For serial regions/fields */
329
330/* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */
331
333{
336 union acpi_operand_object *RegionObj; /* Parent Operation Region object (REGION/BANK fields only) */
337
339
340
342{
346 union acpi_operand_object *RegionObj; /* Containing OpRegion object */
347 UINT8 *ResourceBuffer; /* ResourceTemplate for serial regions/fields */
348 UINT16 PinNumberIndex; /* Index relative to previous Connection/Template */
349 UINT8 *InternalPccBuffer; /* Internal buffer for fields associated with PCC */
350
352
353
355{
358 union acpi_operand_object *RegionObj; /* Containing OpRegion object */
359 union acpi_operand_object *BankObj; /* BankSelect Register object */
360
362
363
365{
368
369 /*
370 * No "RegionObj" pointer needed since the Index and Data registers
371 * are each field definitions unto themselves.
372 */
373 union acpi_operand_object *IndexObj; /* Index register */
374 union acpi_operand_object *DataObj; /* Data register */
375
377
378
379/* The BufferField is different in that it is part of a Buffer, not an OpRegion */
380
382{
385 BOOLEAN IsCreateField; /* Special case for objects created by CreateField() */
386 union acpi_operand_object *BufferObj; /* Containing Buffer object */
387
389
390
391/******************************************************************************
392 *
393 * Objects for handlers
394 *
395 *****************************************************************************/
396
398{
400 ACPI_NAMESPACE_NODE *Node; /* Parent device */
401 UINT32 HandlerType; /* Type: Device/System/Both */
402 ACPI_NOTIFY_HANDLER Handler; /* Handler address */
403 void *Context;
404 union acpi_operand_object *Next[2]; /* Device and System handler lists */
405
407
408
410{
415 ACPI_NAMESPACE_NODE *Node; /* Parent device */
416 void *Context;
419 union acpi_operand_object *RegionList; /* Regions using this handler */
421
423
424/* Flags for address handler (HandlerFlags) */
425
426#define ACPI_ADDR_HANDLER_DEFAULT_INSTALLED 0x01
427
428
429/******************************************************************************
430 *
431 * Special internal objects
432 *
433 *****************************************************************************/
434
435/*
436 * The Reference object is used for these opcodes:
437 * Arg[0-6], Local[0-7], IndexOp, NameOp, RefOfOp, LoadOp, LoadTableOp, DebugOp
438 * The Reference.Class differentiates these types.
439 */
441{
443 UINT8 Class; /* Reference Class */
444 UINT8 TargetType; /* Used for Index Op */
445 UINT8 Resolved; /* Reference has been resolved to a value */
446 void *Object; /* NameOp=>HANDLE to obj, IndexOp=>ACPI_OPERAND_OBJECT */
447 ACPI_NAMESPACE_NODE *Node; /* RefOf or Namepath */
448 union acpi_operand_object **Where; /* Target of Index */
449 UINT8 *IndexPointer; /* Used for Buffers and Strings */
450 UINT8 *Aml; /* Used for deferred resolution of the ref */
451 UINT32 Value; /* Used for Local/Arg/Index/DdbHandle */
452
454
455/* Values for Reference.Class above */
456
457typedef enum
458{
459 ACPI_REFCLASS_LOCAL = 0, /* Method local */
460 ACPI_REFCLASS_ARG = 1, /* Method argument */
461 ACPI_REFCLASS_REFOF = 2, /* Result of RefOf() TBD: Split to Ref/Node and Ref/OperandObj? */
462 ACPI_REFCLASS_INDEX = 3, /* Result of Index() */
463 ACPI_REFCLASS_TABLE = 4, /* DdbHandle - Load(), LoadTable() */
464 ACPI_REFCLASS_NAME = 5, /* Reference to a named object */
465 ACPI_REFCLASS_DEBUG = 6, /* Debug object */
466
468
470
471/*
472 * Extra object is used as additional storage for types that
473 * have AML code in their declarations (TermArgs) that must be
474 * evaluated at run time.
475 *
476 * Currently: Region and FieldUnit types
477 */
478typedef struct acpi_object_extra
479{
481 ACPI_NAMESPACE_NODE *Method_REG; /* _REG method for this region (if any) */
483 void *RegionContext; /* Region-specific data */
486
488
489
490/* Additional data that can be attached to namespace nodes */
491
492typedef struct acpi_object_data
493{
496 void *Pointer;
497
499
500
501/* Structure used when objects are cached for reuse */
502
504{
506 union acpi_operand_object *Next; /* Link for object cache and internal lists*/
507
509
510
511/******************************************************************************
512 *
513 * ACPI_OPERAND_OBJECT Descriptor - a giant union of all of the above
514 *
515 *****************************************************************************/
516
518{
544
545 /*
546 * Add namespace node to union in order to simplify code that accepts both
547 * ACPI_OPERAND_OBJECTs and ACPI_NAMESPACE_NODEs. The structures share
548 * a common DescriptorType field in order to differentiate them.
549 */
551
553
554
555/******************************************************************************
556 *
557 * ACPI_DESCRIPTOR - objects that share a common descriptor identifier
558 *
559 *****************************************************************************/
560
561/* Object descriptor types */
562
563#define ACPI_DESC_TYPE_CACHED 0x01 /* Used only when object is cached */
564#define ACPI_DESC_TYPE_STATE 0x02
565#define ACPI_DESC_TYPE_STATE_UPDATE 0x03
566#define ACPI_DESC_TYPE_STATE_PACKAGE 0x04
567#define ACPI_DESC_TYPE_STATE_CONTROL 0x05
568#define ACPI_DESC_TYPE_STATE_RPSCOPE 0x06
569#define ACPI_DESC_TYPE_STATE_PSCOPE 0x07
570#define ACPI_DESC_TYPE_STATE_WSCOPE 0x08
571#define ACPI_DESC_TYPE_STATE_RESULT 0x09
572#define ACPI_DESC_TYPE_STATE_NOTIFY 0x0A
573#define ACPI_DESC_TYPE_STATE_THREAD 0x0B
574#define ACPI_DESC_TYPE_WALK 0x0C
575#define ACPI_DESC_TYPE_PARSER 0x0D
576#define ACPI_DESC_TYPE_OPERAND 0x0E
577#define ACPI_DESC_TYPE_NAMED 0x0F
578#define ACPI_DESC_TYPE_MAX 0x0F
579
580
582{
584 UINT8 DescriptorType; /* To differentiate various internal objs */
585
587
588typedef union acpi_descriptor
589{
594
596
597#pragma pack()
598
599#endif /* _ACOBJECT_H */
unsigned short UINT16
unsigned char BOOLEAN
unsigned long long UINT64
unsigned char UINT8
unsigned int UINT32
ACPI_STATUS(* ACPI_INTERNAL_METHOD)(struct acpi_walk_state *WalkState)
Definition: aclocal.h:324
struct acpi_object_string ACPI_OBJECT_STRING
struct acpi_object_cache_list ACPI_OBJECT_CACHE_LIST
struct acpi_object_integer ACPI_OBJECT_INTEGER
struct acpi_object_index_field ACPI_OBJECT_INDEX_FIELD
struct acpi_object_region_field ACPI_OBJECT_REGION_FIELD
union acpi_operand_object ACPI_OPERAND_OBJECT
struct acpi_object_addr_handler ACPI_OBJECT_ADDR_HANDLER
struct acpi_object_reference ACPI_OBJECT_REFERENCE
struct acpi_object_extra ACPI_OBJECT_EXTRA
struct acpi_object_mutex ACPI_OBJECT_MUTEX
struct acpi_object_region ACPI_OBJECT_REGION
struct acpi_object_event ACPI_OBJECT_EVENT
struct acpi_object_notify_common ACPI_OBJECT_NOTIFY_COMMON
struct acpi_object_data ACPI_OBJECT_DATA
struct acpi_object_power_resource ACPI_OBJECT_POWER_RESOURCE
struct acpi_object_processor ACPI_OBJECT_PROCESSOR
ACPI_REFERENCE_CLASSES
Definition: acobject.h:458
@ ACPI_REFCLASS_TABLE
Definition: acobject.h:463
@ ACPI_REFCLASS_MAX
Definition: acobject.h:467
@ ACPI_REFCLASS_NAME
Definition: acobject.h:464
@ ACPI_REFCLASS_ARG
Definition: acobject.h:460
@ ACPI_REFCLASS_INDEX
Definition: acobject.h:462
@ ACPI_REFCLASS_LOCAL
Definition: acobject.h:459
@ ACPI_REFCLASS_REFOF
Definition: acobject.h:461
@ ACPI_REFCLASS_DEBUG
Definition: acobject.h:465
union acpi_descriptor ACPI_DESCRIPTOR
struct acpi_object_buffer_field ACPI_OBJECT_BUFFER_FIELD
struct acpi_object_bank_field ACPI_OBJECT_BANK_FIELD
struct acpi_object_package ACPI_OBJECT_PACKAGE
struct acpi_object_device ACPI_OBJECT_DEVICE
struct acpi_object_field_common ACPI_OBJECT_FIELD_COMMON
#define ACPI_COMMON_FIELD_INFO
Definition: acobject.h:319
struct acpi_common_descriptor ACPI_COMMON_DESCRIPTOR
#define ACPI_COMMON_NOTIFY_INFO
Definition: acobject.h:253
struct acpi_object_method ACPI_OBJECT_METHOD
struct acpi_object_thermal_zone ACPI_OBJECT_THERMAL_ZONE
#define ACPI_COMMON_BUFFER_INFO(_Type)
Definition: acobject.h:131
struct acpi_object_notify_handler ACPI_OBJECT_NOTIFY_HANDLER
struct acpi_object_common ACPI_OBJECT_COMMON
#define ACPI_OBJECT_COMMON_HEADER
Definition: acobject.h:81
void(* ACPI_OBJECT_HANDLER)(ACPI_HANDLE Object, void *Data)
Definition: actypes.h:1163
#define ACPI_MUTEX
Definition: actypes.h:273
#define ACPI_SEMAPHORE
Definition: actypes.h:287
ACPI_STATUS(* ACPI_ADR_SPACE_SETUP)(ACPI_HANDLE RegionHandle, UINT32 Function, void *HandlerContext, void **RegionContext)
Definition: actypes.h:1239
ACPI_STATUS(* ACPI_ADR_SPACE_HANDLER)(UINT32 Function, ACPI_PHYSICAL_ADDRESS Address, UINT32 BitWidth, UINT64 *Value, void *HandlerContext, void *RegionContext)
Definition: actypes.h:1203
void(* ACPI_NOTIFY_HANDLER)(ACPI_HANDLE Device, UINT32 Value, void *Context)
Definition: actypes.h:1157
#define ACPI_THREAD_ID
Definition: actypes.h:144
UINT16 ACPI_OWNER_ID
Definition: actypes.h:486
union acpi_operand_object * RegionList
Definition: acobject.h:419
ACPI_OBJECT_COMMON_HEADER UINT8 SpaceId
Definition: acobject.h:412
ACPI_NAMESPACE_NODE * Node
Definition: acobject.h:415
ACPI_ADR_SPACE_HANDLER Handler
Definition: acobject.h:414
ACPI_MUTEX ContextMutex
Definition: acobject.h:417
ACPI_ADR_SPACE_SETUP Setup
Definition: acobject.h:418
union acpi_operand_object * Next
Definition: acobject.h:420
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object * RegionObj
Definition: acobject.h:358
union acpi_operand_object * BankObj
Definition: acobject.h:359
union acpi_operand_object * BufferObj
Definition: acobject.h:386
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO BOOLEAN IsCreateField
Definition: acobject.h:385
UINT8 * AmlStart
Definition: acobject.h:151
ACPI_OBJECT_COMMON_HEADER UINT32 AmlLength
Definition: acobject.h:150
ACPI_OBJECT_COMMON_HEADER union acpi_operand_object * Next
Definition: acobject.h:506
ACPI_OBJECT_COMMON_HEADER ACPI_OBJECT_HANDLER Handler
Definition: acobject.h:495
void * Pointer
Definition: acobject.h:496
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO ACPI_GPE_BLOCK_INFO * GpeBlock
Definition: acobject.h:271
ACPI_OBJECT_COMMON_HEADER ACPI_SEMAPHORE OsSemaphore
Definition: acobject.h:178
ACPI_OBJECT_COMMON_HEADER ACPI_NAMESPACE_NODE * Method_REG
Definition: acobject.h:481
UINT32 AmlLength
Definition: acobject.h:485
ACPI_NAMESPACE_NODE * ScopeNode
Definition: acobject.h:482
UINT8 * AmlStart
Definition: acobject.h:484
void * RegionContext
Definition: acobject.h:483
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object * RegionObj
Definition: acobject.h:336
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object * IndexObj
Definition: acobject.h:373
union acpi_operand_object * DataObj
Definition: acobject.h:374
ACPI_OBJECT_COMMON_HEADER UINT8 Fill[3]
Definition: acobject.h:119
union acpi_operand_object * Handler
Definition: acobject.h:225
ACPI_OWNER_ID OwnerId
Definition: acobject.h:229
UINT8 * AmlStart
Definition: acobject.h:221
ACPI_OBJECT_COMMON_HEADER UINT8 InfoFlags
Definition: acobject.h:216
ACPI_INTERNAL_METHOD Implementation
Definition: acobject.h:224
union acpi_operand_object * Mutex
Definition: acobject.h:219
union acpi_operand_object * Node
Definition: acobject.h:220
union acpi_operand_object * Next
Definition: acobject.h:192
ACPI_OBJECT_COMMON_HEADER UINT8 SyncLevel
Definition: acobject.h:186
struct acpi_thread_state * OwnerThread
Definition: acobject.h:190
union acpi_operand_object * Prev
Definition: acobject.h:191
UINT16 AcquisitionDepth
Definition: acobject.h:187
ACPI_THREAD_ID ThreadId
Definition: acobject.h:189
ACPI_NAMESPACE_NODE * Node
Definition: acobject.h:193
ACPI_MUTEX OsMutex
Definition: acobject.h:188
UINT8 OriginalSyncLevel
Definition: acobject.h:194
ACPI_OBJECT_COMMON_HEADER ACPI_NAMESPACE_NODE * Node
Definition: acobject.h:400
ACPI_NOTIFY_HANDLER Handler
Definition: acobject.h:402
ACPI_OBJECT_COMMON_HEADER ACPI_NAMESPACE_NODE * Node
Definition: acobject.h:160
union acpi_operand_object ** Elements
Definition: acobject.h:161
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO UINT32 SystemLevel
Definition: acobject.h:280
ACPI_COMMON_NOTIFY_INFO ACPI_IO_ADDRESS Address
Definition: acobject.h:295
ACPI_OBJECT_COMMON_HEADER UINT8 ProcId
Definition: acobject.h:292
union acpi_operand_object ** Where
Definition: acobject.h:448
ACPI_NAMESPACE_NODE * Node
Definition: acobject.h:447
ACPI_OBJECT_COMMON_HEADER UINT8 Class
Definition: acobject.h:443
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO UINT16 ResourceLength
Definition: acobject.h:345
union acpi_operand_object * RegionObj
Definition: acobject.h:346
ACPI_NAMESPACE_NODE * Node
Definition: acobject.h:203
ACPI_OBJECT_COMMON_HEADER UINT8 SpaceId
Definition: acobject.h:202
ACPI_PHYSICAL_ADDRESS Address
Definition: acobject.h:206
union acpi_operand_object * Handler
Definition: acobject.h:204
union acpi_operand_object * Next
Definition: acobject.h:205
ACPI_NAMESPACE_NODE Node
Definition: acobject.h:592
ACPI_COMMON_DESCRIPTOR Common
Definition: acobject.h:590
ACPI_OPERAND_OBJECT Object
Definition: acobject.h:591
ACPI_PARSE_OBJECT Op
Definition: acobject.h:593
ACPI_OBJECT_NOTIFY_HANDLER Notify
Definition: acobject.h:538
ACPI_OBJECT_PROCESSOR Processor
Definition: acobject.h:531
ACPI_OBJECT_REGION_FIELD Field
Definition: acobject.h:534
ACPI_OBJECT_THERMAL_ZONE ThermalZone
Definition: acobject.h:532
ACPI_OBJECT_EVENT Event
Definition: acobject.h:524
ACPI_OBJECT_BANK_FIELD BankField
Definition: acobject.h:536
ACPI_OBJECT_METHOD Method
Definition: acobject.h:525
ACPI_OBJECT_ADDR_HANDLER AddressSpace
Definition: acobject.h:539
ACPI_OBJECT_NOTIFY_COMMON CommonNotify
Definition: acobject.h:528
ACPI_OBJECT_BUFFER_FIELD BufferField
Definition: acobject.h:535
ACPI_OBJECT_REGION Region
Definition: acobject.h:527
ACPI_OBJECT_POWER_RESOURCE PowerResource
Definition: acobject.h:530
ACPI_OBJECT_DEVICE Device
Definition: acobject.h:529
ACPI_OBJECT_MUTEX Mutex
Definition: acobject.h:526
ACPI_OBJECT_EXTRA Extra
Definition: acobject.h:541
ACPI_NAMESPACE_NODE Node
Definition: acobject.h:550
ACPI_OBJECT_CACHE_LIST Cache
Definition: acobject.h:543
ACPI_OBJECT_INTEGER Integer
Definition: acobject.h:520
ACPI_OBJECT_REFERENCE Reference
Definition: acobject.h:540
ACPI_OBJECT_INDEX_FIELD IndexField
Definition: acobject.h:537
ACPI_OBJECT_COMMON Common
Definition: acobject.h:519
ACPI_OBJECT_DATA Data
Definition: acobject.h:542
ACPI_OBJECT_PACKAGE Package
Definition: acobject.h:523
ACPI_OBJECT_STRING String
Definition: acobject.h:521
ACPI_OBJECT_FIELD_COMMON CommonField
Definition: acobject.h:533
ACPI_OBJECT_BUFFER Buffer
Definition: acobject.h:522
Definition: dlist.c:348
_In_ USHORT _In_ ULONG _In_ PSOCKADDR _In_ PSOCKADDR _Reserved_ ULONG _In_opt_ PVOID _In_opt_ const WSK_CLIENT_CONNECTION_DISPATCH * Dispatch
Definition: wsk.h:188