acobject.h revision 70243
1
2/******************************************************************************
3 *
4 * Name: acobject.h - Definition of ACPI_OPERAND_OBJECT  (Internal object only)
5 *       $Revision: 76 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999, 2000, Intel Corp.
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights.  You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.
22 *
23 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
24 * copy of the source code appearing in this file ("Covered Code") an
25 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
26 * base code distributed originally by Intel ("Original Intel Code") to copy,
27 * make derivatives, distribute, use and display any portion of the Covered
28 * Code in any form, with the right to sublicense such rights; and
29 *
30 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
31 * license (with the right to sublicense), under only those claims of Intel
32 * patents that are infringed by the Original Intel Code, to make, use, sell,
33 * offer to sell, and import the Covered Code and derivative works thereof
34 * solely to the minimum extent necessary to exercise the above copyright
35 * license, and in no event shall the patent license extend to any additions
36 * to or modifications of the Original Intel Code.  No other license or right
37 * is granted directly or by implication, estoppel or otherwise;
38 *
39 * The above copyright and patent license is granted only if the following
40 * conditions are met:
41 *
42 * 3. Conditions
43 *
44 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
45 * Redistribution of source code of any substantial portion of the Covered
46 * Code or modification with rights to further distribute source must include
47 * the above Copyright Notice, the above License, this list of Conditions,
48 * and the following Disclaimer and Export Compliance provision.  In addition,
49 * Licensee must cause all Covered Code to which Licensee contributes to
50 * contain a file documenting the changes Licensee made to create that Covered
51 * Code and the date of any change.  Licensee must include in that file the
52 * documentation of any changes made by any predecessor Licensee.  Licensee
53 * must include a prominent statement that the modification is derived,
54 * directly or indirectly, from Original Intel Code.
55 *
56 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
57 * Redistribution of source code of any substantial portion of the Covered
58 * Code or modification without rights to further distribute source must
59 * include the following Disclaimer and Export Compliance provision in the
60 * documentation and/or other materials provided with distribution.  In
61 * addition, Licensee may not authorize further sublicense of source of any
62 * portion of the Covered Code, and must include terms to the effect that the
63 * license from Licensee to its licensee is limited to the intellectual
64 * property embodied in the software Licensee provides to its licensee, and
65 * not to intellectual property embodied in modifications its licensee may
66 * make.
67 *
68 * 3.3. Redistribution of Executable. Redistribution in executable form of any
69 * substantial portion of the Covered Code or modification must reproduce the
70 * above Copyright Notice, and the following Disclaimer and Export Compliance
71 * provision in the documentation and/or other materials provided with the
72 * distribution.
73 *
74 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * Intel Code.
76 *
77 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
78 * Intel shall be used in advertising or otherwise to promote the sale, use or
79 * other dealings in products derived from or relating to the Covered Code
80 * without prior written authorization from Intel.
81 *
82 * 4. Disclaimer and Export Compliance
83 *
84 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
85 * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
86 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
87 * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
91 *
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
100 *
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government.  In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
115 *
116 *****************************************************************************/
117
118#ifndef _ACOBJECT_H
119#define _ACOBJECT_H
120
121
122/*
123 * The ACPI_OPERAND_OBJECT  is used to pass AML operands from the dispatcher
124 * to the interpreter, and to keep track of the various handlers such as
125 * address space handlers and notify handlers.  The object is a constant
126 * size in order to allow them to be cached and reused.
127 *
128 * All variants of the ACPI_OPERAND_OBJECT  are defined with the same
129 * sequence of field types, with fields that are not used in a particular
130 * variant being named "Reserved".  This is not strictly necessary, but
131 * may in some circumstances simplify understanding if these structures
132 * need to be displayed in a debugger having limited (or no) support for
133 * union types.  It also simplifies some debug code in DumpTable() which
134 * dumps multi-level values: fetching Buffer.Pointer suffices to pick up
135 * the value or next level for any of several types.
136 */
137
138/******************************************************************************
139 *
140 * Common Descriptors
141 *
142 *****************************************************************************/
143
144/*
145 * Common area for all objects.
146 *
147 * DataType is used to differentiate between internal descriptors, and MUST
148 * be the first byte in this structure.
149 */
150
151
152#define ACPI_OBJECT_COMMON_HEADER           /* 32-bits plus 8-bit flag */\
153    UINT8                       DataType;           /* To differentiate various internal objs */\
154    UINT8                       Type;               /* ACPI_OBJECT_TYPE */\
155    UINT16                      ReferenceCount;     /* For object deletion management */\
156    UINT8                       Flags; \
157
158/* Defines for flag byte above */
159
160#define AOPOBJ_STATIC_ALLOCATION    0x1
161#define AOPOBJ_DATA_VALID           0x2
162#define AOPOBJ_INITIALIZED          0x4
163
164
165/*
166 * Common bitfield for the field objects
167 */
168#define ACPI_COMMON_FIELD_INFO              /* Three 32-bit values plus 8*/\
169    UINT8                       Granularity;\
170    UINT16                      Length; \
171    UINT32                      Offset;             /* Byte offset within containing object */\
172    UINT8                       BitOffset;          /* Bit offset within min read/write data unit */\
173    UINT8                       Access;             /* AccessType */\
174    UINT8                       LockRule;\
175    UINT8                       UpdateRule;\
176    UINT8                       AccessAttribute;
177
178
179/******************************************************************************
180 *
181 * Individual Object Descriptors
182 *
183 *****************************************************************************/
184
185
186typedef struct /* COMMON */
187{
188    ACPI_OBJECT_COMMON_HEADER
189
190} ACPI_OBJECT_COMMON;
191
192
193typedef struct /* CACHE_LIST */
194{
195    ACPI_OBJECT_COMMON_HEADER
196    union acpi_operand_obj      *Next;              /* Link for object cache and internal lists*/
197
198} ACPI_OBJECT_CACHE_LIST;
199
200
201typedef struct /* NUMBER - has value */
202{
203    ACPI_OBJECT_COMMON_HEADER
204
205    ACPI_INTEGER                Value;
206
207} ACPI_OBJECT_NUMBER;
208
209
210typedef struct /* STRING - has length and pointer */
211{
212    ACPI_OBJECT_COMMON_HEADER
213
214    UINT32                      Length;
215    NATIVE_CHAR                 *Pointer;       /* String value in AML stream or in allocated space */
216
217} ACPI_OBJECT_STRING;
218
219
220typedef struct /* BUFFER - has length, sequence, and pointer */
221{
222    ACPI_OBJECT_COMMON_HEADER
223
224    UINT32                      Length;
225    UINT32                      Sequence;       /* Sequential count of buffers created */
226
227    UINT8                       *Pointer;       /* points to the buffer in allocated space */
228
229} ACPI_OBJECT_BUFFER;
230
231
232typedef struct /* PACKAGE - has count, elements, next element */
233{
234    ACPI_OBJECT_COMMON_HEADER
235
236    UINT32                      Count;          /* # of elements in package */
237
238    union acpi_operand_obj      **Elements;     /* Array of pointers to AcpiObjects */
239    union acpi_operand_obj      **NextElement;  /* used only while initializing */
240
241} ACPI_OBJECT_PACKAGE;
242
243
244typedef struct /* FIELD UNIT */
245{
246    ACPI_OBJECT_COMMON_HEADER
247
248    ACPI_COMMON_FIELD_INFO
249
250    union acpi_operand_obj      *Extra;             /* Pointer to executable AML (in field definition) */
251    ACPI_NAMESPACE_NODE         *Node;              /* containing object */
252    union acpi_operand_obj      *Container;         /* Containing object (Buffer) */
253
254} ACPI_OBJECT_FIELD_UNIT;
255
256
257typedef struct /* DEVICE - has handle and notification handler/context */
258{
259    ACPI_OBJECT_COMMON_HEADER
260
261    union acpi_operand_obj      *SysHandler;         /* Handler for system notifies */
262    union acpi_operand_obj      *DrvHandler;         /* Handler for driver notifies */
263    union acpi_operand_obj      *AddrHandler;        /* Handler for Address space */
264
265} ACPI_OBJECT_DEVICE;
266
267
268typedef struct /* EVENT */
269{
270    ACPI_OBJECT_COMMON_HEADER
271
272    void                        *Semaphore;
273
274} ACPI_OBJECT_EVENT;
275
276
277#define INFINITE_CONCURRENCY        0xFF
278
279typedef struct /* METHOD */
280{
281    ACPI_OBJECT_COMMON_HEADER
282    UINT8                       MethodFlags;
283    UINT8                       ParamCount;
284
285    UINT32                      PcodeLength;
286
287    void                        *Semaphore;
288    UINT8                       *Pcode;
289
290    UINT8                       Concurrency;
291    UINT8                       ThreadCount;
292    ACPI_OWNER_ID               OwningId;
293
294} ACPI_OBJECT_METHOD;
295
296
297typedef struct /* MUTEX */
298{
299    ACPI_OBJECT_COMMON_HEADER
300    UINT16                      SyncLevel;
301
302    void                        *Semaphore;
303
304} ACPI_OBJECT_MUTEX;
305
306
307typedef struct /* REGION */
308{
309    ACPI_OBJECT_COMMON_HEADER
310
311    UINT8                       SpaceId;
312    UINT32                      Length;
313    ACPI_PHYSICAL_ADDRESS       Address;
314    union acpi_operand_obj      *Extra;             /* Pointer to executable AML (in region definition) */
315
316    union acpi_operand_obj      *AddrHandler;       /* Handler for system notifies */
317    ACPI_NAMESPACE_NODE         *Node;              /* containing object */
318    union acpi_operand_obj      *Next;
319
320} ACPI_OBJECT_REGION;
321
322
323typedef struct /* POWER RESOURCE - has Handle and notification handler/context*/
324{
325    ACPI_OBJECT_COMMON_HEADER
326
327    UINT32                      SystemLevel;
328    UINT32                      ResourceOrder;
329
330    union acpi_operand_obj      *SysHandler;        /* Handler for system notifies */
331    union acpi_operand_obj      *DrvHandler;        /* Handler for driver notifies */
332
333} ACPI_OBJECT_POWER_RESOURCE;
334
335
336typedef struct /* PROCESSOR - has Handle and notification handler/context*/
337{
338    ACPI_OBJECT_COMMON_HEADER
339
340    UINT32                      ProcId;
341    UINT32                      Length;
342    ACPI_IO_ADDRESS             Address;
343
344    union acpi_operand_obj      *SysHandler;        /* Handler for system notifies */
345    union acpi_operand_obj      *DrvHandler;        /* Handler for driver notifies */
346    union acpi_operand_obj      *AddrHandler;       /* Handler for Address space */
347
348} ACPI_OBJECT_PROCESSOR;
349
350
351typedef struct /* THERMAL ZONE - has Handle and Handler/Context */
352{
353    ACPI_OBJECT_COMMON_HEADER
354
355    union acpi_operand_obj      *SysHandler;        /* Handler for system notifies */
356    union acpi_operand_obj      *DrvHandler;        /* Handler for driver notifies */
357    union acpi_operand_obj      *AddrHandler;       /* Handler for Address space */
358
359} ACPI_OBJECT_THERMAL_ZONE;
360
361
362/*
363 * Internal types
364 */
365
366
367typedef struct /* FIELD */
368{
369    ACPI_OBJECT_COMMON_HEADER
370
371    ACPI_COMMON_FIELD_INFO
372
373    union acpi_operand_obj      *Container;         /* Containing object */
374
375} ACPI_OBJECT_FIELD;
376
377
378typedef struct /* BANK FIELD */
379{
380    ACPI_OBJECT_COMMON_HEADER
381
382    ACPI_COMMON_FIELD_INFO
383    UINT32                      Value;              /* Value to store into BankSelect */
384
385    ACPI_HANDLE                 BankSelect;         /* Bank select register */
386    union acpi_operand_obj      *Container;         /* Containing object */
387
388} ACPI_OBJECT_BANK_FIELD;
389
390
391typedef struct /* INDEX FIELD */
392{
393    /*
394     * No container pointer needed since the index and data register definitions
395     * will define how to access the respective registers
396     */
397    ACPI_OBJECT_COMMON_HEADER
398
399    ACPI_COMMON_FIELD_INFO
400    UINT32                      Value;              /* Value to store into Index register */
401
402    ACPI_HANDLE                 Index;              /* Index register */
403    ACPI_HANDLE                 Data;               /* Data register */
404
405} ACPI_OBJECT_INDEX_FIELD;
406
407
408typedef struct /* NOTIFY HANDLER */
409{
410    ACPI_OBJECT_COMMON_HEADER
411
412    ACPI_NAMESPACE_NODE         *Node;               /* Parent device */
413    NOTIFY_HANDLER              Handler;
414    void                        *Context;
415
416} ACPI_OBJECT_NOTIFY_HANDLER;
417
418
419/* Flags for address handler */
420
421#define ADDR_HANDLER_DEFAULT_INSTALLED  0x1
422
423
424typedef struct /* ADDRESS HANDLER */
425{
426    ACPI_OBJECT_COMMON_HEADER
427
428    UINT8                       SpaceId;
429    UINT16                      Hflags;
430    ADDRESS_SPACE_HANDLER       Handler;
431
432    ACPI_NAMESPACE_NODE         *Node;              /* Parent device */
433    void                        *Context;
434    ADDRESS_SPACE_SETUP         Setup;
435    union acpi_operand_obj      *RegionList;        /* regions using this handler */
436    union acpi_operand_obj      *Next;
437
438} ACPI_OBJECT_ADDR_HANDLER;
439
440
441/*
442 * The Reference object type is used for these opcodes:
443 * Arg[0-6], Local[0-7], IndexOp, NameOp, ZeroOp, OneOp, OnesOp, DebugOp
444 */
445
446typedef struct /* Reference - Local object type */
447{
448    ACPI_OBJECT_COMMON_HEADER
449
450    UINT8                       TargetType;         /* Used for IndexOp */
451    UINT16                      OpCode;
452    UINT32                      Offset;             /* Used for ArgOp, LocalOp, and IndexOp */
453
454    void                        *Object;            /* NameOp=>HANDLE to obj, IndexOp=>ACPI_OPERAND_OBJECT  */
455    ACPI_NAMESPACE_NODE         *Node;
456    union acpi_operand_obj      **Where;
457
458} ACPI_OBJECT_REFERENCE;
459
460
461/*
462 * Extra object is used as additional storage for types that
463 * have AML code in their declarations (TermArgs) that must be
464 * evaluated at run time.
465 *
466 * Currently: Region and FieldUnit types
467 */
468
469typedef struct /* EXTRA */
470{
471    ACPI_OBJECT_COMMON_HEADER
472    UINT8                       ByteFill1;
473    UINT16                      WordFill1;
474    UINT32                      PcodeLength;
475    UINT8                       *Pcode;
476    ACPI_NAMESPACE_NODE         *Method_REG;        /* _REG method for this region (if any) */
477    void                        *RegionContext;     /* Region-specific data */
478
479} ACPI_OBJECT_EXTRA;
480
481
482/******************************************************************************
483 *
484 * ACPI_OPERAND_OBJECT  Descriptor - a giant union of all of the above
485 *
486 *****************************************************************************/
487
488typedef union acpi_operand_obj
489{
490    ACPI_OBJECT_COMMON          Common;
491    ACPI_OBJECT_CACHE_LIST      Cache;
492    ACPI_OBJECT_NUMBER          Number;
493    ACPI_OBJECT_STRING          String;
494    ACPI_OBJECT_BUFFER          Buffer;
495    ACPI_OBJECT_PACKAGE         Package;
496    ACPI_OBJECT_FIELD_UNIT      FieldUnit;
497    ACPI_OBJECT_DEVICE          Device;
498    ACPI_OBJECT_EVENT           Event;
499    ACPI_OBJECT_METHOD          Method;
500    ACPI_OBJECT_MUTEX           Mutex;
501    ACPI_OBJECT_REGION          Region;
502    ACPI_OBJECT_POWER_RESOURCE  PowerResource;
503    ACPI_OBJECT_PROCESSOR       Processor;
504    ACPI_OBJECT_THERMAL_ZONE    ThermalZone;
505    ACPI_OBJECT_FIELD           Field;
506    ACPI_OBJECT_BANK_FIELD      BankField;
507    ACPI_OBJECT_INDEX_FIELD     IndexField;
508    ACPI_OBJECT_REFERENCE       Reference;
509    ACPI_OBJECT_NOTIFY_HANDLER  NotifyHandler;
510    ACPI_OBJECT_ADDR_HANDLER    AddrHandler;
511    ACPI_OBJECT_EXTRA           Extra;
512
513} ACPI_OPERAND_OBJECT;
514
515#endif /* _ACOBJECT_H */
516