blob: b667a804fc8af143124d0d6f1592b9e90994792e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Name: acnamesp.h - Namespace subcomponent prototypes and defines
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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#ifndef __ACNAMESP_H__
45#define __ACNAMESP_H__
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* To search the entire name space, pass this as search_base */
48
49#define ACPI_NS_ALL ((acpi_handle)0)
50
51/*
52 * Elements of acpi_ns_properties are bit significant
53 * and should be one-to-one with values of acpi_object_type
54 */
55#define ACPI_NS_NORMAL 0
Len Brown4be44fc2005-08-05 00:44:28 -040056#define ACPI_NS_NEWSCOPE 1 /* a definition of this type opens a name scope */
57#define ACPI_NS_LOCAL 2 /* suppress search of enclosing scopes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* Flags for acpi_ns_lookup, acpi_ns_search_and_enter */
60
61#define ACPI_NS_NO_UPSEARCH 0
62#define ACPI_NS_SEARCH_PARENT 0x01
63#define ACPI_NS_DONT_OPEN_SCOPE 0x02
64#define ACPI_NS_NO_PEER_SEARCH 0x04
65#define ACPI_NS_ERROR_IF_FOUND 0x08
66
67#define ACPI_NS_WALK_UNLOCK TRUE
68#define ACPI_NS_WALK_NO_UNLOCK FALSE
69
Robert Moore44f6c012005-04-18 22:49:35 -040070/*
71 * nsinit - Namespace initialization
72 */
Len Brown4be44fc2005-08-05 00:44:28 -040073acpi_status acpi_ns_initialize_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Len Brown4be44fc2005-08-05 00:44:28 -040075acpi_status acpi_ns_initialize_devices(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Robert Moore44f6c012005-04-18 22:49:35 -040077/*
78 * nsload - Namespace loading
79 */
Len Brown4be44fc2005-08-05 00:44:28 -040080acpi_status acpi_ns_load_namespace(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040083acpi_ns_load_table(struct acpi_table_desc *table_desc,
84 struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Robert Moore44f6c012005-04-18 22:49:35 -040086/*
87 * nswalk - walk the namespace
88 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040090acpi_ns_walk_namespace(acpi_object_type type,
91 acpi_handle start_object,
92 u32 max_depth,
93 u8 unlock_before_callback,
94 acpi_walk_callback user_function,
95 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Len Brown4be44fc2005-08-05 00:44:28 -040097struct acpi_namespace_node *acpi_ns_get_next_node(acpi_object_type type,
98 struct acpi_namespace_node
99 *parent,
100 struct acpi_namespace_node
101 *child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Robert Moore44f6c012005-04-18 22:49:35 -0400103/*
104 * nsparse - table parsing
105 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400107acpi_ns_parse_table(struct acpi_table_desc *table_desc,
108 struct acpi_namespace_node *scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400111acpi_ns_one_complete_parse(u8 pass_number, struct acpi_table_desc *table_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/*
Robert Moore44f6c012005-04-18 22:49:35 -0400114 * nsaccess - Top-level namespace access
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
Len Brown4be44fc2005-08-05 00:44:28 -0400116acpi_status acpi_ns_root_initialize(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400119acpi_ns_lookup(union acpi_generic_state *scope_info,
120 char *name,
121 acpi_object_type type,
122 acpi_interpreter_mode interpreter_mode,
123 u32 flags,
124 struct acpi_walk_state *walk_state,
125 struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/*
Robert Moore44f6c012005-04-18 22:49:35 -0400128 * nsalloc - Named object allocation/deallocation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
Len Brown4be44fc2005-08-05 00:44:28 -0400130struct acpi_namespace_node *acpi_ns_create_node(u32 name);
131
132void acpi_ns_delete_node(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134void
Len Brown4be44fc2005-08-05 00:44:28 -0400135acpi_ns_delete_namespace_subtree(struct acpi_namespace_node *parent_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Len Brown4be44fc2005-08-05 00:44:28 -0400137void acpi_ns_delete_namespace_by_owner(acpi_owner_id owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Len Brown4be44fc2005-08-05 00:44:28 -0400139void acpi_ns_detach_object(struct acpi_namespace_node *node);
Robert Moore44f6c012005-04-18 22:49:35 -0400140
Len Brown4be44fc2005-08-05 00:44:28 -0400141void acpi_ns_delete_children(struct acpi_namespace_node *parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Len Brown4be44fc2005-08-05 00:44:28 -0400143int acpi_ns_compare_names(char *name1, char *name2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/*
Robert Moore44f6c012005-04-18 22:49:35 -0400146 * nsdump - Namespace dump/print utilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
Robert Moore44f6c012005-04-18 22:49:35 -0400148#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400149void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth);
150#endif /* ACPI_FUTURE_USAGE */
151
152void acpi_ns_dump_entry(acpi_handle handle, u32 debug_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154void
Len Brown4be44fc2005-08-05 00:44:28 -0400155acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Len Brown4be44fc2005-08-05 00:44:28 -0400157void acpi_ns_print_pathname(u32 num_segments, char *pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400160acpi_ns_dump_one_object(acpi_handle obj_handle,
161 u32 level, void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Robert Moore44f6c012005-04-18 22:49:35 -0400163#ifdef ACPI_FUTURE_USAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164void
Len Brown4be44fc2005-08-05 00:44:28 -0400165acpi_ns_dump_objects(acpi_object_type type,
166 u8 display_type,
167 u32 max_depth,
168 acpi_owner_id owner_id, acpi_handle start_handle);
169#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*
Robert Moore44f6c012005-04-18 22:49:35 -0400172 * nseval - Namespace evaluation functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
Len Brown4be44fc2005-08-05 00:44:28 -0400174acpi_status acpi_ns_evaluate_by_handle(struct acpi_parameter_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400177acpi_ns_evaluate_by_name(char *pathname, struct acpi_parameter_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400180acpi_ns_evaluate_relative(char *pathname, struct acpi_parameter_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182/*
Robert Moore44f6c012005-04-18 22:49:35 -0400183 * nsnames - Name and Scope manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 */
Len Brown4be44fc2005-08-05 00:44:28 -0400185u32 acpi_ns_opens_scope(acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Len Brown4be44fc2005-08-05 00:44:28 -0400187char *acpi_ns_get_external_pathname(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Len Brown4be44fc2005-08-05 00:44:28 -0400189char *acpi_ns_name_of_current_scope(struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400192acpi_ns_handle_to_pathname(acpi_handle target_handle,
193 struct acpi_buffer *buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195u8
Len Brown4be44fc2005-08-05 00:44:28 -0400196acpi_ns_pattern_match(struct acpi_namespace_node *obj_node, char *search_for);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400199acpi_ns_get_node_by_path(char *external_pathname,
200 struct acpi_namespace_node *in_prefix_node,
201 u32 flags, struct acpi_namespace_node **out_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Len Brown4be44fc2005-08-05 00:44:28 -0400203acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/*
Robert Moore44f6c012005-04-18 22:49:35 -0400206 * nsobject - Object management for namespace nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400209acpi_ns_attach_object(struct acpi_namespace_node *node,
210 union acpi_operand_object *object, acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Len Brown4be44fc2005-08-05 00:44:28 -0400212union acpi_operand_object *acpi_ns_get_attached_object(struct
213 acpi_namespace_node
214 *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Len Brown4be44fc2005-08-05 00:44:28 -0400216union acpi_operand_object *acpi_ns_get_secondary_object(union
217 acpi_operand_object
218 *obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400221acpi_ns_attach_data(struct acpi_namespace_node *node,
222 acpi_object_handler handler, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400225acpi_ns_detach_data(struct acpi_namespace_node *node,
226 acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400229acpi_ns_get_attached_data(struct acpi_namespace_node *node,
230 acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232/*
Robert Moore44f6c012005-04-18 22:49:35 -0400233 * nssearch - Namespace searching and entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400236acpi_ns_search_and_enter(u32 entry_name,
237 struct acpi_walk_state *walk_state,
238 struct acpi_namespace_node *node,
239 acpi_interpreter_mode interpreter_mode,
240 acpi_object_type type,
241 u32 flags, struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400244acpi_ns_search_node(u32 entry_name,
245 struct acpi_namespace_node *node,
246 acpi_object_type type,
247 struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249void
Len Brown4be44fc2005-08-05 00:44:28 -0400250acpi_ns_install_node(struct acpi_walk_state *walk_state,
251 struct acpi_namespace_node *parent_node,
252 struct acpi_namespace_node *node, acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254/*
Robert Moore44f6c012005-04-18 22:49:35 -0400255 * nsutils - Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 */
Len Brown4be44fc2005-08-05 00:44:28 -0400257u8 acpi_ns_valid_root_prefix(char prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Len Brown4be44fc2005-08-05 00:44:28 -0400259acpi_object_type acpi_ns_get_type(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Len Brown4be44fc2005-08-05 00:44:28 -0400261u32 acpi_ns_local(acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263void
Len Brown4be44fc2005-08-05 00:44:28 -0400264acpi_ns_report_error(char *module_name,
265 u32 line_number,
Len Brown4be44fc2005-08-05 00:44:28 -0400266 char *internal_name, acpi_status lookup_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268void
Len Brown4be44fc2005-08-05 00:44:28 -0400269acpi_ns_report_method_error(char *module_name,
270 u32 line_number,
Len Brown4be44fc2005-08-05 00:44:28 -0400271 char *message,
272 struct acpi_namespace_node *node,
273 char *path, acpi_status lookup_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Len Brown4be44fc2005-08-05 00:44:28 -0400275void acpi_ns_print_node_pathname(struct acpi_namespace_node *node, char *msg);
276
277acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info);
278
279void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info);
280
281acpi_status acpi_ns_internalize_name(char *dotted_name, char **converted_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400284acpi_ns_externalize_name(u32 internal_name_length,
285 char *internal_name,
286 u32 * converted_name_length, char **converted_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Len Brown4be44fc2005-08-05 00:44:28 -0400288struct acpi_namespace_node *acpi_ns_map_handle_to_node(acpi_handle handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Len Brown4be44fc2005-08-05 00:44:28 -0400290acpi_handle acpi_ns_convert_entry_to_handle(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Len Brown4be44fc2005-08-05 00:44:28 -0400292void acpi_ns_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Len Brown4be44fc2005-08-05 00:44:28 -0400294struct acpi_namespace_node *acpi_ns_get_parent_node(struct acpi_namespace_node
295 *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Len Brown4be44fc2005-08-05 00:44:28 -0400297struct acpi_namespace_node *acpi_ns_get_next_valid_node(struct
298 acpi_namespace_node
299 *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Len Brown4be44fc2005-08-05 00:44:28 -0400301#endif /* __ACNAMESP_H__ */