xref: /freebsd/sys/contrib/dev/acpica/include/acparser.h (revision d6dd1baec023a9afde47949fbeb56fda4092145a)
1a9f12690SJung-uk Kim /******************************************************************************
2a9f12690SJung-uk Kim  *
3a9f12690SJung-uk Kim  * Module Name: acparser.h - AML Parser subcomponent prototypes and defines
4a9f12690SJung-uk Kim  *
5a9f12690SJung-uk Kim  *****************************************************************************/
6a9f12690SJung-uk Kim 
7a9f12690SJung-uk Kim /******************************************************************************
8a9f12690SJung-uk Kim  *
9a9f12690SJung-uk Kim  * 1. Copyright Notice
10a9f12690SJung-uk Kim  *
11a9f12690SJung-uk Kim  * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
12a9f12690SJung-uk Kim  * All rights reserved.
13a9f12690SJung-uk Kim  *
14a9f12690SJung-uk Kim  * 2. License
15a9f12690SJung-uk Kim  *
16a9f12690SJung-uk Kim  * 2.1. This is your license from Intel Corp. under its intellectual property
17a9f12690SJung-uk Kim  * rights.  You may have additional license terms from the party that provided
18a9f12690SJung-uk Kim  * you this software, covering your right to use that party's intellectual
19a9f12690SJung-uk Kim  * property rights.
20a9f12690SJung-uk Kim  *
21a9f12690SJung-uk Kim  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22a9f12690SJung-uk Kim  * copy of the source code appearing in this file ("Covered Code") an
23a9f12690SJung-uk Kim  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24a9f12690SJung-uk Kim  * base code distributed originally by Intel ("Original Intel Code") to copy,
25a9f12690SJung-uk Kim  * make derivatives, distribute, use and display any portion of the Covered
26a9f12690SJung-uk Kim  * Code in any form, with the right to sublicense such rights; and
27a9f12690SJung-uk Kim  *
28a9f12690SJung-uk Kim  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29a9f12690SJung-uk Kim  * license (with the right to sublicense), under only those claims of Intel
30a9f12690SJung-uk Kim  * patents that are infringed by the Original Intel Code, to make, use, sell,
31a9f12690SJung-uk Kim  * offer to sell, and import the Covered Code and derivative works thereof
32a9f12690SJung-uk Kim  * solely to the minimum extent necessary to exercise the above copyright
33a9f12690SJung-uk Kim  * license, and in no event shall the patent license extend to any additions
34a9f12690SJung-uk Kim  * to or modifications of the Original Intel Code.  No other license or right
35a9f12690SJung-uk Kim  * is granted directly or by implication, estoppel or otherwise;
36a9f12690SJung-uk Kim  *
37a9f12690SJung-uk Kim  * The above copyright and patent license is granted only if the following
38a9f12690SJung-uk Kim  * conditions are met:
39a9f12690SJung-uk Kim  *
40a9f12690SJung-uk Kim  * 3. Conditions
41a9f12690SJung-uk Kim  *
42a9f12690SJung-uk Kim  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43a9f12690SJung-uk Kim  * Redistribution of source code of any substantial portion of the Covered
44a9f12690SJung-uk Kim  * Code or modification with rights to further distribute source must include
45a9f12690SJung-uk Kim  * the above Copyright Notice, the above License, this list of Conditions,
46a9f12690SJung-uk Kim  * and the following Disclaimer and Export Compliance provision.  In addition,
47a9f12690SJung-uk Kim  * Licensee must cause all Covered Code to which Licensee contributes to
48a9f12690SJung-uk Kim  * contain a file documenting the changes Licensee made to create that Covered
49a9f12690SJung-uk Kim  * Code and the date of any change.  Licensee must include in that file the
50a9f12690SJung-uk Kim  * documentation of any changes made by any predecessor Licensee.  Licensee
51a9f12690SJung-uk Kim  * must include a prominent statement that the modification is derived,
52a9f12690SJung-uk Kim  * directly or indirectly, from Original Intel Code.
53a9f12690SJung-uk Kim  *
54a9f12690SJung-uk Kim  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55a9f12690SJung-uk Kim  * Redistribution of source code of any substantial portion of the Covered
56a9f12690SJung-uk Kim  * Code or modification without rights to further distribute source must
57a9f12690SJung-uk Kim  * include the following Disclaimer and Export Compliance provision in the
58a9f12690SJung-uk Kim  * documentation and/or other materials provided with distribution.  In
59a9f12690SJung-uk Kim  * addition, Licensee may not authorize further sublicense of source of any
60a9f12690SJung-uk Kim  * portion of the Covered Code, and must include terms to the effect that the
61a9f12690SJung-uk Kim  * license from Licensee to its licensee is limited to the intellectual
62a9f12690SJung-uk Kim  * property embodied in the software Licensee provides to its licensee, and
63a9f12690SJung-uk Kim  * not to intellectual property embodied in modifications its licensee may
64a9f12690SJung-uk Kim  * make.
65a9f12690SJung-uk Kim  *
66a9f12690SJung-uk Kim  * 3.3. Redistribution of Executable. Redistribution in executable form of any
67a9f12690SJung-uk Kim  * substantial portion of the Covered Code or modification must reproduce the
68a9f12690SJung-uk Kim  * above Copyright Notice, and the following Disclaimer and Export Compliance
69a9f12690SJung-uk Kim  * provision in the documentation and/or other materials provided with the
70a9f12690SJung-uk Kim  * distribution.
71a9f12690SJung-uk Kim  *
72a9f12690SJung-uk Kim  * 3.4. Intel retains all right, title, and interest in and to the Original
73a9f12690SJung-uk Kim  * Intel Code.
74a9f12690SJung-uk Kim  *
75a9f12690SJung-uk Kim  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76a9f12690SJung-uk Kim  * Intel shall be used in advertising or otherwise to promote the sale, use or
77a9f12690SJung-uk Kim  * other dealings in products derived from or relating to the Covered Code
78a9f12690SJung-uk Kim  * without prior written authorization from Intel.
79a9f12690SJung-uk Kim  *
80a9f12690SJung-uk Kim  * 4. Disclaimer and Export Compliance
81a9f12690SJung-uk Kim  *
82a9f12690SJung-uk Kim  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83a9f12690SJung-uk Kim  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84a9f12690SJung-uk Kim  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
85a9f12690SJung-uk Kim  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
86a9f12690SJung-uk Kim  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
87a9f12690SJung-uk Kim  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88a9f12690SJung-uk Kim  * PARTICULAR PURPOSE.
89a9f12690SJung-uk Kim  *
90a9f12690SJung-uk Kim  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91a9f12690SJung-uk Kim  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92a9f12690SJung-uk Kim  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93a9f12690SJung-uk Kim  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94a9f12690SJung-uk Kim  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95a9f12690SJung-uk Kim  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
96a9f12690SJung-uk Kim  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97a9f12690SJung-uk Kim  * LIMITED REMEDY.
98a9f12690SJung-uk Kim  *
99a9f12690SJung-uk Kim  * 4.3. Licensee shall not export, either directly or indirectly, any of this
100a9f12690SJung-uk Kim  * software or system incorporating such software without first obtaining any
101a9f12690SJung-uk Kim  * required license or other approval from the U. S. Department of Commerce or
102a9f12690SJung-uk Kim  * any other agency or department of the United States Government.  In the
103a9f12690SJung-uk Kim  * event Licensee exports any such software from the United States or
104a9f12690SJung-uk Kim  * re-exports any such software from a foreign destination, Licensee shall
105a9f12690SJung-uk Kim  * ensure that the distribution and export/re-export of the software is in
106a9f12690SJung-uk Kim  * compliance with all laws, regulations, orders, or other restrictions of the
107a9f12690SJung-uk Kim  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108a9f12690SJung-uk Kim  * any of its subsidiaries will export/re-export any technical data, process,
109a9f12690SJung-uk Kim  * software, or service, directly or indirectly, to any country for which the
110a9f12690SJung-uk Kim  * United States government or any agency thereof requires an export license,
111a9f12690SJung-uk Kim  * other governmental approval, or letter of assurance, without first obtaining
112a9f12690SJung-uk Kim  * such license, approval or letter.
113a9f12690SJung-uk Kim  *
114a9f12690SJung-uk Kim  *****************************************************************************/
115a9f12690SJung-uk Kim 
116a9f12690SJung-uk Kim 
117a9f12690SJung-uk Kim #ifndef __ACPARSER_H__
118a9f12690SJung-uk Kim #define __ACPARSER_H__
119a9f12690SJung-uk Kim 
120a9f12690SJung-uk Kim 
121a9f12690SJung-uk Kim #define OP_HAS_RETURN_VALUE             1
122a9f12690SJung-uk Kim 
123a9f12690SJung-uk Kim /* Variable number of arguments. This field must be 32 bits */
124a9f12690SJung-uk Kim 
125a9f12690SJung-uk Kim #define ACPI_VAR_ARGS                   ACPI_UINT32_MAX
126a9f12690SJung-uk Kim 
127a9f12690SJung-uk Kim 
128a9f12690SJung-uk Kim #define ACPI_PARSE_DELETE_TREE          0x0001
129a9f12690SJung-uk Kim #define ACPI_PARSE_NO_TREE_DELETE       0x0000
130a9f12690SJung-uk Kim #define ACPI_PARSE_TREE_MASK            0x0001
131a9f12690SJung-uk Kim 
132a9f12690SJung-uk Kim #define ACPI_PARSE_LOAD_PASS1           0x0010
133a9f12690SJung-uk Kim #define ACPI_PARSE_LOAD_PASS2           0x0020
134a9f12690SJung-uk Kim #define ACPI_PARSE_EXECUTE              0x0030
135a9f12690SJung-uk Kim #define ACPI_PARSE_MODE_MASK            0x0030
136a9f12690SJung-uk Kim 
137a9f12690SJung-uk Kim #define ACPI_PARSE_DEFERRED_OP          0x0100
138a9f12690SJung-uk Kim #define ACPI_PARSE_DISASSEMBLE          0x0200
139a9f12690SJung-uk Kim 
140d6dd1baeSJung-uk Kim #define ACPI_PARSE_MODULE_LEVEL         0x0400
141a9f12690SJung-uk Kim 
142a9f12690SJung-uk Kim /******************************************************************************
143a9f12690SJung-uk Kim  *
144a9f12690SJung-uk Kim  * Parser interfaces
145a9f12690SJung-uk Kim  *
146a9f12690SJung-uk Kim  *****************************************************************************/
147a9f12690SJung-uk Kim 
148a9f12690SJung-uk Kim 
149a9f12690SJung-uk Kim /*
150a9f12690SJung-uk Kim  * psxface - Parser external interfaces
151a9f12690SJung-uk Kim  */
152a9f12690SJung-uk Kim ACPI_STATUS
153a9f12690SJung-uk Kim AcpiPsExecuteMethod (
154a9f12690SJung-uk Kim     ACPI_EVALUATE_INFO      *Info);
155a9f12690SJung-uk Kim 
156a9f12690SJung-uk Kim 
157a9f12690SJung-uk Kim /*
158a9f12690SJung-uk Kim  * psargs - Parse AML opcode arguments
159a9f12690SJung-uk Kim  */
160a9f12690SJung-uk Kim UINT8 *
161a9f12690SJung-uk Kim AcpiPsGetNextPackageEnd (
162a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState);
163a9f12690SJung-uk Kim 
164a9f12690SJung-uk Kim char *
165a9f12690SJung-uk Kim AcpiPsGetNextNamestring (
166a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState);
167a9f12690SJung-uk Kim 
168a9f12690SJung-uk Kim void
169a9f12690SJung-uk Kim AcpiPsGetNextSimpleArg (
170a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState,
171a9f12690SJung-uk Kim     UINT32                  ArgType,
172a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Arg);
173a9f12690SJung-uk Kim 
174a9f12690SJung-uk Kim ACPI_STATUS
175a9f12690SJung-uk Kim AcpiPsGetNextNamepath (
176a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState,
177a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState,
178a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Arg,
179a9f12690SJung-uk Kim     BOOLEAN                 MethodCall);
180a9f12690SJung-uk Kim 
181a9f12690SJung-uk Kim ACPI_STATUS
182a9f12690SJung-uk Kim AcpiPsGetNextArg (
183a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState,
184a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState,
185a9f12690SJung-uk Kim     UINT32                  ArgType,
186a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       **ReturnArg);
187a9f12690SJung-uk Kim 
188a9f12690SJung-uk Kim 
189a9f12690SJung-uk Kim /*
190a9f12690SJung-uk Kim  * psfind
191a9f12690SJung-uk Kim  */
192a9f12690SJung-uk Kim ACPI_PARSE_OBJECT *
193a9f12690SJung-uk Kim AcpiPsFindName (
194a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Scope,
195a9f12690SJung-uk Kim     UINT32                  Name,
196a9f12690SJung-uk Kim     UINT32                  Opcode);
197a9f12690SJung-uk Kim 
198a9f12690SJung-uk Kim ACPI_PARSE_OBJECT*
199a9f12690SJung-uk Kim AcpiPsGetParent (
200a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op);
201a9f12690SJung-uk Kim 
202a9f12690SJung-uk Kim 
203a9f12690SJung-uk Kim /*
204a9f12690SJung-uk Kim  * psopcode - AML Opcode information
205a9f12690SJung-uk Kim  */
206a9f12690SJung-uk Kim const ACPI_OPCODE_INFO *
207a9f12690SJung-uk Kim AcpiPsGetOpcodeInfo (
208a9f12690SJung-uk Kim     UINT16                  Opcode);
209a9f12690SJung-uk Kim 
210a9f12690SJung-uk Kim char *
211a9f12690SJung-uk Kim AcpiPsGetOpcodeName (
212a9f12690SJung-uk Kim     UINT16                  Opcode);
213a9f12690SJung-uk Kim 
214a9f12690SJung-uk Kim UINT8
215a9f12690SJung-uk Kim AcpiPsGetArgumentCount (
216a9f12690SJung-uk Kim     UINT32                  OpType);
217a9f12690SJung-uk Kim 
218a9f12690SJung-uk Kim 
219a9f12690SJung-uk Kim /*
220a9f12690SJung-uk Kim  * psparse - top level parsing routines
221a9f12690SJung-uk Kim  */
222a9f12690SJung-uk Kim ACPI_STATUS
223a9f12690SJung-uk Kim AcpiPsParseAml (
224a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState);
225a9f12690SJung-uk Kim 
226a9f12690SJung-uk Kim UINT32
227a9f12690SJung-uk Kim AcpiPsGetOpcodeSize (
228a9f12690SJung-uk Kim     UINT32                  Opcode);
229a9f12690SJung-uk Kim 
230a9f12690SJung-uk Kim UINT16
231a9f12690SJung-uk Kim AcpiPsPeekOpcode (
232a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *state);
233a9f12690SJung-uk Kim 
234a9f12690SJung-uk Kim ACPI_STATUS
235a9f12690SJung-uk Kim AcpiPsCompleteThisOp (
236a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState,
237a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op);
238a9f12690SJung-uk Kim 
239a9f12690SJung-uk Kim ACPI_STATUS
240a9f12690SJung-uk Kim AcpiPsNextParseState (
241a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState,
242a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op,
243a9f12690SJung-uk Kim     ACPI_STATUS             CallbackStatus);
244a9f12690SJung-uk Kim 
245a9f12690SJung-uk Kim 
246a9f12690SJung-uk Kim /*
247a9f12690SJung-uk Kim  * psloop - main parse loop
248a9f12690SJung-uk Kim  */
249a9f12690SJung-uk Kim ACPI_STATUS
250a9f12690SJung-uk Kim AcpiPsParseLoop (
251a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState);
252a9f12690SJung-uk Kim 
253a9f12690SJung-uk Kim 
254a9f12690SJung-uk Kim /*
255a9f12690SJung-uk Kim  * psscope - Scope stack management routines
256a9f12690SJung-uk Kim  */
257a9f12690SJung-uk Kim ACPI_STATUS
258a9f12690SJung-uk Kim AcpiPsInitScope (
259a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState,
260a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Root);
261a9f12690SJung-uk Kim 
262a9f12690SJung-uk Kim ACPI_PARSE_OBJECT *
263a9f12690SJung-uk Kim AcpiPsGetParentScope (
264a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *state);
265a9f12690SJung-uk Kim 
266a9f12690SJung-uk Kim BOOLEAN
267a9f12690SJung-uk Kim AcpiPsHasCompletedScope (
268a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState);
269a9f12690SJung-uk Kim 
270a9f12690SJung-uk Kim void
271a9f12690SJung-uk Kim AcpiPsPopScope (
272a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState,
273a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       **Op,
274a9f12690SJung-uk Kim     UINT32                  *ArgList,
275a9f12690SJung-uk Kim     UINT32                  *ArgCount);
276a9f12690SJung-uk Kim 
277a9f12690SJung-uk Kim ACPI_STATUS
278a9f12690SJung-uk Kim AcpiPsPushScope (
279a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *ParserState,
280a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op,
281a9f12690SJung-uk Kim     UINT32                  RemainingArgs,
282a9f12690SJung-uk Kim     UINT32                  ArgCount);
283a9f12690SJung-uk Kim 
284a9f12690SJung-uk Kim void
285a9f12690SJung-uk Kim AcpiPsCleanupScope (
286a9f12690SJung-uk Kim     ACPI_PARSE_STATE        *state);
287a9f12690SJung-uk Kim 
288a9f12690SJung-uk Kim 
289a9f12690SJung-uk Kim /*
290a9f12690SJung-uk Kim  * pstree - parse tree manipulation routines
291a9f12690SJung-uk Kim  */
292a9f12690SJung-uk Kim void
293a9f12690SJung-uk Kim AcpiPsAppendArg(
294a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *op,
295a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *arg);
296a9f12690SJung-uk Kim 
297a9f12690SJung-uk Kim ACPI_PARSE_OBJECT*
298a9f12690SJung-uk Kim AcpiPsFind (
299a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Scope,
300a9f12690SJung-uk Kim     char                    *Path,
301a9f12690SJung-uk Kim     UINT16                  Opcode,
302a9f12690SJung-uk Kim     UINT32                  Create);
303a9f12690SJung-uk Kim 
304a9f12690SJung-uk Kim ACPI_PARSE_OBJECT *
305a9f12690SJung-uk Kim AcpiPsGetArg(
306a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *op,
307a9f12690SJung-uk Kim     UINT32                   argn);
308a9f12690SJung-uk Kim 
309a9f12690SJung-uk Kim ACPI_PARSE_OBJECT *
310a9f12690SJung-uk Kim AcpiPsGetDepthNext (
311a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Origin,
312a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op);
313a9f12690SJung-uk Kim 
314a9f12690SJung-uk Kim 
315a9f12690SJung-uk Kim /*
316a9f12690SJung-uk Kim  * pswalk - parse tree walk routines
317a9f12690SJung-uk Kim  */
318a9f12690SJung-uk Kim ACPI_STATUS
319a9f12690SJung-uk Kim AcpiPsWalkParsedAml (
320a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *StartOp,
321a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *EndOp,
322a9f12690SJung-uk Kim     ACPI_OPERAND_OBJECT     *MthDesc,
323a9f12690SJung-uk Kim     ACPI_NAMESPACE_NODE     *StartNode,
324a9f12690SJung-uk Kim     ACPI_OPERAND_OBJECT     **Params,
325a9f12690SJung-uk Kim     ACPI_OPERAND_OBJECT     **CallerReturnDesc,
326a9f12690SJung-uk Kim     ACPI_OWNER_ID           OwnerId,
327a9f12690SJung-uk Kim     ACPI_PARSE_DOWNWARDS    DescendingCallback,
328a9f12690SJung-uk Kim     ACPI_PARSE_UPWARDS      AscendingCallback);
329a9f12690SJung-uk Kim 
330a9f12690SJung-uk Kim ACPI_STATUS
331a9f12690SJung-uk Kim AcpiPsGetNextWalkOp (
332a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState,
333a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op,
334a9f12690SJung-uk Kim     ACPI_PARSE_UPWARDS      AscendingCallback);
335a9f12690SJung-uk Kim 
336a9f12690SJung-uk Kim ACPI_STATUS
337a9f12690SJung-uk Kim AcpiPsDeleteCompletedOp (
338a9f12690SJung-uk Kim     ACPI_WALK_STATE         *WalkState);
339a9f12690SJung-uk Kim 
340a9f12690SJung-uk Kim void
341a9f12690SJung-uk Kim AcpiPsDeleteParseTree (
342a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *root);
343a9f12690SJung-uk Kim 
344a9f12690SJung-uk Kim 
345a9f12690SJung-uk Kim /*
346a9f12690SJung-uk Kim  * psutils - parser utilities
347a9f12690SJung-uk Kim  */
348a9f12690SJung-uk Kim ACPI_PARSE_OBJECT *
349a9f12690SJung-uk Kim AcpiPsCreateScopeOp (
350a9f12690SJung-uk Kim     void);
351a9f12690SJung-uk Kim 
352a9f12690SJung-uk Kim void
353a9f12690SJung-uk Kim AcpiPsInitOp (
354a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *op,
355a9f12690SJung-uk Kim     UINT16                  opcode);
356a9f12690SJung-uk Kim 
357a9f12690SJung-uk Kim ACPI_PARSE_OBJECT *
358a9f12690SJung-uk Kim AcpiPsAllocOp (
359a9f12690SJung-uk Kim     UINT16                  opcode);
360a9f12690SJung-uk Kim 
361a9f12690SJung-uk Kim void
362a9f12690SJung-uk Kim AcpiPsFreeOp (
363a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op);
364a9f12690SJung-uk Kim 
365a9f12690SJung-uk Kim BOOLEAN
366a9f12690SJung-uk Kim AcpiPsIsLeadingChar (
367a9f12690SJung-uk Kim     UINT32                  c);
368a9f12690SJung-uk Kim 
369a9f12690SJung-uk Kim BOOLEAN
370a9f12690SJung-uk Kim AcpiPsIsPrefixChar (
371a9f12690SJung-uk Kim     UINT32                  c);
372a9f12690SJung-uk Kim 
373a9f12690SJung-uk Kim UINT32
374a9f12690SJung-uk Kim AcpiPsGetName(
375a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *op);
376a9f12690SJung-uk Kim 
377a9f12690SJung-uk Kim void
378a9f12690SJung-uk Kim AcpiPsSetName(
379a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *op,
380a9f12690SJung-uk Kim     UINT32                  name);
381a9f12690SJung-uk Kim 
382a9f12690SJung-uk Kim 
383a9f12690SJung-uk Kim /*
384a9f12690SJung-uk Kim  * psdump - display parser tree
385a9f12690SJung-uk Kim  */
386a9f12690SJung-uk Kim UINT32
387a9f12690SJung-uk Kim AcpiPsSprintPath (
388a9f12690SJung-uk Kim     char                    *BufferStart,
389a9f12690SJung-uk Kim     UINT32                  BufferSize,
390a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op);
391a9f12690SJung-uk Kim 
392a9f12690SJung-uk Kim UINT32
393a9f12690SJung-uk Kim AcpiPsSprintOp (
394a9f12690SJung-uk Kim     char                    *BufferStart,
395a9f12690SJung-uk Kim     UINT32                  BufferSize,
396a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *Op);
397a9f12690SJung-uk Kim 
398a9f12690SJung-uk Kim void
399a9f12690SJung-uk Kim AcpiPsShow (
400a9f12690SJung-uk Kim     ACPI_PARSE_OBJECT       *op);
401a9f12690SJung-uk Kim 
402a9f12690SJung-uk Kim 
403a9f12690SJung-uk Kim #endif /* __ACPARSER_H__ */
404