Merge tag 'riscv-for-linus-6.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / drivers / acpi / acpica / acparser.h
CommitLineData
95857638 1/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
1da177e4
LT
2/******************************************************************************
3 *
4 * Module Name: acparser.h - AML Parser subcomponent prototypes and defines
5 *
612c2932 6 * Copyright (C) 2000 - 2023, Intel Corp.
1da177e4 7 *
95857638 8 *****************************************************************************/
1da177e4 9
1da177e4
LT
10#ifndef __ACPARSER_H__
11#define __ACPARSER_H__
12
1da177e4
LT
13#define OP_HAS_RETURN_VALUE 1
14
793c2388 15/* Variable number of arguments. This field must be 32 bits */
1da177e4 16
793c2388 17#define ACPI_VAR_ARGS ACPI_UINT32_MAX
1da177e4 18
1da177e4
LT
19#define ACPI_PARSE_DELETE_TREE 0x0001
20#define ACPI_PARSE_NO_TREE_DELETE 0x0000
21#define ACPI_PARSE_TREE_MASK 0x0001
22
23#define ACPI_PARSE_LOAD_PASS1 0x0010
24#define ACPI_PARSE_LOAD_PASS2 0x0020
25#define ACPI_PARSE_EXECUTE 0x0030
26#define ACPI_PARSE_MODE_MASK 0x0030
27
28#define ACPI_PARSE_DEFERRED_OP 0x0100
73459f73 29#define ACPI_PARSE_DISASSEMBLE 0x0200
1da177e4 30
7f0c826a
LM
31#define ACPI_PARSE_MODULE_LEVEL 0x0400
32
44f6c012
RM
33/******************************************************************************
34 *
35 * Parser interfaces
36 *
37 *****************************************************************************/
38
b0e01c72
BM
39extern const u8 acpi_gbl_short_op_index[];
40extern const u8 acpi_gbl_long_op_index[];
41
44f6c012
RM
42/*
43 * psxface - Parser external interfaces
44 */
4119532c 45acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info);
1da177e4 46
de56ba95
LZ
47acpi_status acpi_ps_execute_table(struct acpi_evaluate_info *info);
48
44f6c012
RM
49/*
50 * psargs - Parse AML opcode arguments
51 */
4be44fcd 52u8 *acpi_ps_get_next_package_end(struct acpi_parse_state *parser_state);
1da177e4 53
4be44fcd 54char *acpi_ps_get_next_namestring(struct acpi_parse_state *parser_state);
1da177e4
LT
55
56void
4be44fcd
LB
57acpi_ps_get_next_simple_arg(struct acpi_parse_state *parser_state,
58 u32 arg_type, union acpi_parse_object *arg);
1da177e4
LT
59
60acpi_status
4be44fcd
LB
61acpi_ps_get_next_namepath(struct acpi_walk_state *walk_state,
62 struct acpi_parse_state *parser_state,
89438f96
BM
63 union acpi_parse_object *arg,
64 u8 possible_method_call);
65
66/* Values for u8 above */
67
68#define ACPI_NOT_METHOD_CALL FALSE
69#define ACPI_POSSIBLE_METHOD_CALL TRUE
1da177e4 70
1da177e4 71acpi_status
4be44fcd
LB
72acpi_ps_get_next_arg(struct acpi_walk_state *walk_state,
73 struct acpi_parse_state *parser_state,
74 u32 arg_type, union acpi_parse_object **return_arg);
1da177e4 75
44f6c012
RM
76/*
77 * psfind
78 */
4be44fcd
LB
79union acpi_parse_object *acpi_ps_find_name(union acpi_parse_object *scope,
80 u32 name, u32 opcode);
1da177e4 81
4be44fcd 82union acpi_parse_object *acpi_ps_get_parent(union acpi_parse_object *op);
1da177e4 83
44f6c012 84/*
42f8fb75
BM
85 * psobject - support for parse object processing
86 */
87acpi_status
88acpi_ps_build_named_op(struct acpi_walk_state *walk_state,
89 u8 *aml_op_start,
90 union acpi_parse_object *unnamed_op,
91 union acpi_parse_object **op);
92
93acpi_status
94acpi_ps_create_op(struct acpi_walk_state *walk_state,
95 u8 *aml_op_start, union acpi_parse_object **new_op);
96
97acpi_status
98acpi_ps_complete_op(struct acpi_walk_state *walk_state,
99 union acpi_parse_object **op, acpi_status status);
100
101acpi_status
102acpi_ps_complete_final_op(struct acpi_walk_state *walk_state,
103 union acpi_parse_object *op, acpi_status status);
104
105/*
106 * psopinfo - AML Opcode information
44f6c012 107 */
4be44fcd 108const struct acpi_opcode_info *acpi_ps_get_opcode_info(u16 opcode);
1da177e4 109
0dfaaa3d 110const char *acpi_ps_get_opcode_name(u16 opcode);
1da177e4 111
4e3156b1
BM
112u8 acpi_ps_get_argument_count(u32 op_type);
113
44f6c012
RM
114/*
115 * psparse - top level parsing routines
116 */
4be44fcd 117acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state);
1da177e4 118
4be44fcd 119u32 acpi_ps_get_opcode_size(u32 opcode);
1da177e4 120
4be44fcd 121u16 acpi_ps_peek_opcode(struct acpi_parse_state *state);
1da177e4 122
73459f73 123acpi_status
4be44fcd
LB
124acpi_ps_complete_this_op(struct acpi_walk_state *walk_state,
125 union acpi_parse_object *op);
73459f73
RM
126
127acpi_status
4be44fcd
LB
128acpi_ps_next_parse_state(struct acpi_walk_state *walk_state,
129 union acpi_parse_object *op,
130 acpi_status callback_status);
73459f73
RM
131
132/*
133 * psloop - main parse loop
134 */
4be44fcd 135acpi_status acpi_ps_parse_loop(struct acpi_walk_state *walk_state);
1da177e4 136
44f6c012
RM
137/*
138 * psscope - Scope stack management routines
139 */
1da177e4 140acpi_status
4be44fcd
LB
141acpi_ps_init_scope(struct acpi_parse_state *parser_state,
142 union acpi_parse_object *root);
1da177e4 143
4be44fcd
LB
144union acpi_parse_object *acpi_ps_get_parent_scope(struct acpi_parse_state
145 *state);
1da177e4 146
4be44fcd 147u8 acpi_ps_has_completed_scope(struct acpi_parse_state *parser_state);
1da177e4
LT
148
149void
4be44fcd 150acpi_ps_pop_scope(struct acpi_parse_state *parser_state,
1f86e8c1 151 union acpi_parse_object **op, u32 *arg_list, u32 *arg_count);
1da177e4
LT
152
153acpi_status
4be44fcd
LB
154acpi_ps_push_scope(struct acpi_parse_state *parser_state,
155 union acpi_parse_object *op,
793c2388 156 u32 remaining_args, u32 arg_count);
1da177e4 157
4be44fcd 158void acpi_ps_cleanup_scope(struct acpi_parse_state *state);
1da177e4 159
44f6c012
RM
160/*
161 * pstree - parse tree manipulation routines
162 */
1da177e4 163void
4be44fcd 164acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg);
1da177e4 165
4be44fcd
LB
166union acpi_parse_object *acpi_ps_find(union acpi_parse_object *scope,
167 char *path, u16 opcode, u32 create);
168
169union acpi_parse_object *acpi_ps_get_arg(union acpi_parse_object *op, u32 argn);
1da177e4 170
4be44fcd
LB
171union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin,
172 union acpi_parse_object *op);
1da177e4 173
44f6c012
RM
174/*
175 * pswalk - parse tree walk routines
176 */
1da177e4 177acpi_status
4be44fcd
LB
178acpi_ps_walk_parsed_aml(union acpi_parse_object *start_op,
179 union acpi_parse_object *end_op,
180 union acpi_operand_object *mth_desc,
181 struct acpi_namespace_node *start_node,
182 union acpi_operand_object **params,
183 union acpi_operand_object **caller_return_desc,
184 acpi_owner_id owner_id,
185 acpi_parse_downwards descending_callback,
186 acpi_parse_upwards ascending_callback);
1da177e4
LT
187
188acpi_status
4be44fcd
LB
189acpi_ps_get_next_walk_op(struct acpi_walk_state *walk_state,
190 union acpi_parse_object *op,
191 acpi_parse_upwards ascending_callback);
1da177e4 192
4be44fcd 193acpi_status acpi_ps_delete_completed_op(struct acpi_walk_state *walk_state);
1da177e4 194
4be44fcd 195void acpi_ps_delete_parse_tree(union acpi_parse_object *root);
1da177e4 196
44f6c012
RM
197/*
198 * psutils - parser utilities
199 */
62eb935b 200union acpi_parse_object *acpi_ps_create_scope_op(u8 *aml);
1da177e4 201
4be44fcd 202void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode);
1da177e4 203
62eb935b 204union acpi_parse_object *acpi_ps_alloc_op(u16 opcode, u8 *aml);
1da177e4 205
4be44fcd 206void acpi_ps_free_op(union acpi_parse_object *op);
1da177e4 207
4be44fcd 208u8 acpi_ps_is_leading_char(u32 c);
1da177e4 209
4be44fcd 210u32 acpi_ps_get_name(union acpi_parse_object *op);
1da177e4 211
4be44fcd 212void acpi_ps_set_name(union acpi_parse_object *op, u32 name);
1da177e4 213
44f6c012
RM
214/*
215 * psdump - display parser tree
216 */
1da177e4 217u32
4be44fcd
LB
218acpi_ps_sprint_path(char *buffer_start,
219 u32 buffer_size, union acpi_parse_object *op);
1da177e4
LT
220
221u32
4be44fcd
LB
222acpi_ps_sprint_op(char *buffer_start,
223 u32 buffer_size, union acpi_parse_object *op);
1da177e4 224
4be44fcd 225void acpi_ps_show(union acpi_parse_object *op);
1da177e4 226
4be44fcd 227#endif /* __ACPARSER_H__ */