ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
[deliverable/linux.git] / include / acpi / acparser.h
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: acparser.h - AML Parser subcomponent prototypes and defines
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
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 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.
42 */
43
44
45#ifndef __ACPARSER_H__
46#define __ACPARSER_H__
47
48
49#define OP_HAS_RETURN_VALUE 1
50
51/* variable # arguments */
52
53#define ACPI_VAR_ARGS ACPI_UINT32_MAX
54
55
56#define ACPI_PARSE_DELETE_TREE 0x0001
57#define ACPI_PARSE_NO_TREE_DELETE 0x0000
58#define ACPI_PARSE_TREE_MASK 0x0001
59
60#define ACPI_PARSE_LOAD_PASS1 0x0010
61#define ACPI_PARSE_LOAD_PASS2 0x0020
62#define ACPI_PARSE_EXECUTE 0x0030
63#define ACPI_PARSE_MODE_MASK 0x0030
64
65#define ACPI_PARSE_DEFERRED_OP 0x0100
73459f73 66#define ACPI_PARSE_DISASSEMBLE 0x0200
1da177e4 67
1da177e4 68
44f6c012
RM
69/******************************************************************************
70 *
71 * Parser interfaces
72 *
73 *****************************************************************************/
74
75
76/*
77 * psxface - Parser external interfaces
78 */
1da177e4
LT
79acpi_status
80acpi_psx_load_table (
81 u8 *pcode_addr,
82 u32 pcode_length);
83
84acpi_status
85acpi_psx_execute (
86 struct acpi_parameter_info *info);
87
88
44f6c012
RM
89/*
90 * psargs - Parse AML opcode arguments
91 */
1da177e4
LT
92u8 *
93acpi_ps_get_next_package_end (
94 struct acpi_parse_state *parser_state);
95
1da177e4
LT
96char *
97acpi_ps_get_next_namestring (
98 struct acpi_parse_state *parser_state);
99
100void
101acpi_ps_get_next_simple_arg (
102 struct acpi_parse_state *parser_state,
103 u32 arg_type,
104 union acpi_parse_object *arg);
105
106acpi_status
107acpi_ps_get_next_namepath (
108 struct acpi_walk_state *walk_state,
109 struct acpi_parse_state *parser_state,
110 union acpi_parse_object *arg,
111 u8 method_call);
112
1da177e4
LT
113acpi_status
114acpi_ps_get_next_arg (
115 struct acpi_walk_state *walk_state,
116 struct acpi_parse_state *parser_state,
117 u32 arg_type,
118 union acpi_parse_object **return_arg);
119
120
44f6c012
RM
121/*
122 * psfind
123 */
1da177e4
LT
124union acpi_parse_object *
125acpi_ps_find_name (
126 union acpi_parse_object *scope,
127 u32 name,
128 u32 opcode);
129
130union acpi_parse_object*
131acpi_ps_get_parent (
132 union acpi_parse_object *op);
133
134
44f6c012
RM
135/*
136 * psopcode - AML Opcode information
137 */
1da177e4
LT
138const struct acpi_opcode_info *
139acpi_ps_get_opcode_info (
140 u16 opcode);
141
142char *
143acpi_ps_get_opcode_name (
144 u16 opcode);
145
146
44f6c012
RM
147/*
148 * psparse - top level parsing routines
149 */
1da177e4
LT
150acpi_status
151acpi_ps_parse_aml (
152 struct acpi_walk_state *walk_state);
153
44f6c012
RM
154u32
155acpi_ps_get_opcode_size (
156 u32 opcode);
1da177e4
LT
157
158u16
159acpi_ps_peek_opcode (
160 struct acpi_parse_state *state);
161
73459f73
RM
162acpi_status
163acpi_ps_complete_this_op (
164 struct acpi_walk_state *walk_state,
165 union acpi_parse_object *op);
166
167acpi_status
168acpi_ps_next_parse_state (
169 struct acpi_walk_state *walk_state,
170 union acpi_parse_object *op,
171 acpi_status callback_status);
172
173
174/*
175 * psloop - main parse loop
176 */
177acpi_status
178acpi_ps_parse_loop (
179 struct acpi_walk_state *walk_state);
180
1da177e4 181
44f6c012
RM
182/*
183 * psscope - Scope stack management routines
184 */
1da177e4
LT
185acpi_status
186acpi_ps_init_scope (
187 struct acpi_parse_state *parser_state,
188 union acpi_parse_object *root);
189
190union acpi_parse_object *
191acpi_ps_get_parent_scope (
192 struct acpi_parse_state *state);
193
194u8
195acpi_ps_has_completed_scope (
196 struct acpi_parse_state *parser_state);
197
198void
199acpi_ps_pop_scope (
200 struct acpi_parse_state *parser_state,
201 union acpi_parse_object **op,
202 u32 *arg_list,
203 u32 *arg_count);
204
205acpi_status
206acpi_ps_push_scope (
207 struct acpi_parse_state *parser_state,
208 union acpi_parse_object *op,
209 u32 remaining_args,
210 u32 arg_count);
211
212void
213acpi_ps_cleanup_scope (
214 struct acpi_parse_state *state);
215
216
44f6c012
RM
217/*
218 * pstree - parse tree manipulation routines
219 */
1da177e4
LT
220void
221acpi_ps_append_arg(
222 union acpi_parse_object *op,
223 union acpi_parse_object *arg);
224
225union acpi_parse_object*
226acpi_ps_find (
227 union acpi_parse_object *scope,
228 char *path,
229 u16 opcode,
230 u32 create);
231
232union acpi_parse_object *
233acpi_ps_get_arg(
234 union acpi_parse_object *op,
235 u32 argn);
236
44f6c012 237#ifdef ACPI_FUTURE_USAGE
1da177e4
LT
238union acpi_parse_object *
239acpi_ps_get_depth_next (
240 union acpi_parse_object *origin,
241 union acpi_parse_object *op);
44f6c012 242#endif /* ACPI_FUTURE_USAGE */
1da177e4 243
1da177e4 244
44f6c012
RM
245/*
246 * pswalk - parse tree walk routines
247 */
1da177e4
LT
248acpi_status
249acpi_ps_walk_parsed_aml (
250 union acpi_parse_object *start_op,
251 union acpi_parse_object *end_op,
252 union acpi_operand_object *mth_desc,
253 struct acpi_namespace_node *start_node,
254 union acpi_operand_object **params,
255 union acpi_operand_object **caller_return_desc,
256 acpi_owner_id owner_id,
257 acpi_parse_downwards descending_callback,
258 acpi_parse_upwards ascending_callback);
259
260acpi_status
261acpi_ps_get_next_walk_op (
262 struct acpi_walk_state *walk_state,
263 union acpi_parse_object *op,
264 acpi_parse_upwards ascending_callback);
265
266acpi_status
267acpi_ps_delete_completed_op (
268 struct acpi_walk_state *walk_state);
269
44f6c012
RM
270void
271acpi_ps_delete_parse_tree (
272 union acpi_parse_object *root);
1da177e4 273
1da177e4 274
44f6c012
RM
275/*
276 * psutils - parser utilities
277 */
1da177e4
LT
278union acpi_parse_object *
279acpi_ps_create_scope_op (
280 void);
281
282void
283acpi_ps_init_op (
284 union acpi_parse_object *op,
285 u16 opcode);
286
287union acpi_parse_object *
288acpi_ps_alloc_op (
289 u16 opcode);
290
291void
292acpi_ps_free_op (
293 union acpi_parse_object *op);
294
1da177e4
LT
295u8
296acpi_ps_is_leading_char (
297 u32 c);
298
299u8
300acpi_ps_is_prefix_char (
301 u32 c);
302
44f6c012 303#ifdef ACPI_FUTURE_USAGE
1da177e4
LT
304u32
305acpi_ps_get_name(
306 union acpi_parse_object *op);
44f6c012 307#endif /* ACPI_FUTURE_USAGE */
1da177e4
LT
308
309void
310acpi_ps_set_name(
311 union acpi_parse_object *op,
312 u32 name);
313
1da177e4 314
44f6c012
RM
315/*
316 * psdump - display parser tree
317 */
1da177e4
LT
318u32
319acpi_ps_sprint_path (
320 char *buffer_start,
321 u32 buffer_size,
322 union acpi_parse_object *op);
323
324u32
325acpi_ps_sprint_op (
326 char *buffer_start,
327 u32 buffer_size,
328 union acpi_parse_object *op);
329
330void
331acpi_ps_show (
332 union acpi_parse_object *op);
333
334
335#endif /* __ACPARSER_H__ */
This page took 0.053863 seconds and 5 git commands to generate.