blob: 9684ed61284df5739bcd80215974d5c649f747fd [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 Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
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
Bob Moore83135242006-10-03 00:00:00 -040066#define ACPI_NS_PREFIX_IS_SCOPE 0x10
Bob Moore958dd242006-05-12 17:12:00 -040067#define ACPI_NS_EXTERNAL 0x20
Bob Moored1fdda832007-02-02 19:48:21 +030068#define ACPI_NS_TEMPORARY 0x40
Lv Zheng8f6f0362015-07-01 14:44:17 +080069#define ACPI_NS_OVERRIDE_IF_FOUND 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Bob Moored1fdda832007-02-02 19:48:21 +030071/* Flags for acpi_ns_walk_namespace */
72
73#define ACPI_NS_WALK_NO_UNLOCK 0
74#define ACPI_NS_WALK_UNLOCK 0x01
75#define ACPI_NS_WALK_TEMP_NODES 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Bob Mooreb2deadd2009-07-24 10:56:43 +080077/* Object is not a package element */
78
79#define ACPI_NOT_PACKAGE_ELEMENT ACPI_UINT32_MAX
Lv Zhengee387402015-12-29 13:58:02 +080080#define ACPI_ALL_PACKAGE_ELEMENTS (ACPI_UINT32_MAX-1)
Bob Mooreb2deadd2009-07-24 10:56:43 +080081
82/* Always emit warning message, not dependent on node flags */
83
84#define ACPI_WARN_ALWAYS 0
85
Robert Moore44f6c012005-04-18 22:49:35 -040086/*
87 * nsinit - Namespace initialization
88 */
Len Brown4be44fc2005-08-05 00:44:28 -040089acpi_status acpi_ns_initialize_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Len Brown4be44fc2005-08-05 00:44:28 -040091acpi_status acpi_ns_initialize_devices(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Robert Moore44f6c012005-04-18 22:49:35 -040093/*
94 * nsload - Namespace loading
95 */
Len Brown4be44fc2005-08-05 00:44:28 -040096acpi_status acpi_ns_load_namespace(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +080099acpi_ns_load_table(u32 table_index, struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Robert Moore44f6c012005-04-18 22:49:35 -0400101/*
102 * nswalk - walk the namespace
103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400105acpi_ns_walk_namespace(acpi_object_type type,
106 acpi_handle start_object,
107 u32 max_depth,
Bob Moored1fdda832007-02-02 19:48:21 +0300108 u32 flags,
Bob Moore4ef17502013-08-08 15:30:05 +0800109 acpi_walk_callback descending_callback,
110 acpi_walk_callback ascending_callback,
Len Brown4be44fc2005-08-05 00:44:28 -0400111 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Bob Moore8c725bf2009-05-21 10:27:51 +0800113struct acpi_namespace_node *acpi_ns_get_next_node(struct acpi_namespace_node
114 *parent,
115 struct acpi_namespace_node
Len Brown4be44fc2005-08-05 00:44:28 -0400116 *child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Bob Moore8c725bf2009-05-21 10:27:51 +0800118struct acpi_namespace_node *acpi_ns_get_next_node_typed(acpi_object_type type,
119 struct
120 acpi_namespace_node
121 *parent,
122 struct
123 acpi_namespace_node
124 *child);
125
Robert Moore44f6c012005-04-18 22:49:35 -0400126/*
127 * nsparse - table parsing
128 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +0800130acpi_ns_parse_table(u32 table_index, struct acpi_namespace_node *start_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +0800133acpi_ns_one_complete_parse(u32 pass_number,
134 u32 table_index,
Bob Moore7f4ac9f2008-04-10 19:06:39 +0400135 struct acpi_namespace_node *start_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/*
Robert Moore44f6c012005-04-18 22:49:35 -0400138 * nsaccess - Top-level namespace access
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
Len Brown4be44fc2005-08-05 00:44:28 -0400140acpi_status acpi_ns_root_initialize(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400143acpi_ns_lookup(union acpi_generic_state *scope_info,
144 char *name,
145 acpi_object_type type,
146 acpi_interpreter_mode interpreter_mode,
147 u32 flags,
148 struct acpi_walk_state *walk_state,
149 struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/*
Robert Moore44f6c012005-04-18 22:49:35 -0400152 * nsalloc - Named object allocation/deallocation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Len Brown4be44fc2005-08-05 00:44:28 -0400154struct acpi_namespace_node *acpi_ns_create_node(u32 name);
155
156void acpi_ns_delete_node(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Bob Moore8e4319c2009-06-29 13:43:27 +0800158void acpi_ns_remove_node(struct acpi_namespace_node *node);
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160void
Len Brown4be44fc2005-08-05 00:44:28 -0400161acpi_ns_delete_namespace_subtree(struct acpi_namespace_node *parent_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Len Brown4be44fc2005-08-05 00:44:28 -0400163void acpi_ns_delete_namespace_by_owner(acpi_owner_id owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Len Brown4be44fc2005-08-05 00:44:28 -0400165void acpi_ns_detach_object(struct acpi_namespace_node *node);
Robert Moore44f6c012005-04-18 22:49:35 -0400166
Len Brown4be44fc2005-08-05 00:44:28 -0400167void acpi_ns_delete_children(struct acpi_namespace_node *parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Len Brown4be44fc2005-08-05 00:44:28 -0400169int acpi_ns_compare_names(char *name1, char *name2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*
Bob Moore76a62252013-03-08 09:23:16 +0000172 * nsconvert - Dynamic object conversion routines
173 */
174acpi_status
175acpi_ns_convert_to_integer(union acpi_operand_object *original_object,
176 union acpi_operand_object **return_object);
177
178acpi_status
179acpi_ns_convert_to_string(union acpi_operand_object *original_object,
180 union acpi_operand_object **return_object);
181
182acpi_status
183acpi_ns_convert_to_buffer(union acpi_operand_object *original_object,
184 union acpi_operand_object **return_object);
185
Lv Zheng96b44cc2013-03-08 09:23:24 +0000186acpi_status
Lv Zheng4debda52015-12-29 13:57:38 +0800187acpi_ns_convert_to_unicode(struct acpi_namespace_node *scope,
188 union acpi_operand_object *original_object,
Lv Zheng96b44cc2013-03-08 09:23:24 +0000189 union acpi_operand_object **return_object);
190
Lv Zheng88fd0ac2013-03-08 09:23:32 +0000191acpi_status
Lv Zheng4debda52015-12-29 13:57:38 +0800192acpi_ns_convert_to_resource(struct acpi_namespace_node *scope,
193 union acpi_operand_object *original_object,
Lv Zheng88fd0ac2013-03-08 09:23:32 +0000194 union acpi_operand_object **return_object);
195
Lv Zhengee387402015-12-29 13:58:02 +0800196acpi_status
197acpi_ns_convert_to_reference(struct acpi_namespace_node *scope,
198 union acpi_operand_object *original_object,
199 union acpi_operand_object **return_object);
200
Bob Moore76a62252013-03-08 09:23:16 +0000201/*
Robert Moore44f6c012005-04-18 22:49:35 -0400202 * nsdump - Namespace dump/print utilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 */
Len Brown4be44fc2005-08-05 00:44:28 -0400204void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth);
Len Brown4be44fc2005-08-05 00:44:28 -0400205
206void acpi_ns_dump_entry(acpi_handle handle, u32 debug_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208void
Len Brown4be44fc2005-08-05 00:44:28 -0400209acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Len Brown4be44fc2005-08-05 00:44:28 -0400211void acpi_ns_print_pathname(u32 num_segments, char *pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400214acpi_ns_dump_one_object(acpi_handle obj_handle,
215 u32 level, void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217void
Len Brown4be44fc2005-08-05 00:44:28 -0400218acpi_ns_dump_objects(acpi_object_type type,
219 u8 display_type,
220 u32 max_depth,
221 acpi_owner_id owner_id, acpi_handle start_handle);
Bob Moore424deb32013-09-23 09:52:19 +0800222
223void
224acpi_ns_dump_object_paths(acpi_object_type type,
225 u8 display_type,
226 u32 max_depth,
227 acpi_owner_id owner_id, acpi_handle start_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229/*
Robert Moore44f6c012005-04-18 22:49:35 -0400230 * nseval - Namespace evaluation functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Bob Moore41195322006-05-26 16:36:00 -0400232acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Lin Ming7f0c8262009-08-13 14:03:15 +0800234void acpi_ns_exec_module_code_list(void);
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
Bob Moore29a241c2013-05-30 10:00:01 +0800237 * nsarguments - Argument count/type checking for predefined/reserved names
Bob Mooree8707b32008-09-28 15:26:17 +0800238 */
Bob Moore29a241c2013-05-30 10:00:01 +0800239void
240acpi_ns_check_argument_count(char *pathname,
241 struct acpi_namespace_node *node,
242 u32 user_param_count,
243 const union acpi_predefined_info *info);
Bob Mooree8707b32008-09-28 15:26:17 +0800244
Bob Mooree8707b32008-09-28 15:26:17 +0800245void
Bob Moore29a241c2013-05-30 10:00:01 +0800246acpi_ns_check_acpi_compliance(char *pathname,
Bob Mooree8707b32008-09-28 15:26:17 +0800247 struct acpi_namespace_node *node,
Bob Moore29a241c2013-05-30 10:00:01 +0800248 const union acpi_predefined_info *predefined);
249
250void acpi_ns_check_argument_types(struct acpi_evaluate_info *info);
251
252/*
253 * nspredef - Return value checking for predefined/reserved names
254 */
255acpi_status
256acpi_ns_check_return_value(struct acpi_namespace_node *node,
257 struct acpi_evaluate_info *info,
258 u32 user_param_count,
259 acpi_status return_status,
260 union acpi_operand_object **return_object);
Bob Mooree8707b32008-09-28 15:26:17 +0800261
Bob Moore42f8fb72013-01-11 13:08:51 +0100262acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800263acpi_ns_check_object_type(struct acpi_evaluate_info *info,
Bob Moore42f8fb72013-01-11 13:08:51 +0100264 union acpi_operand_object **return_object_ptr,
265 u32 expected_btypes, u32 package_index);
266
267/*
268 * nsprepkg - Validation of predefined name packages
269 */
270acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800271acpi_ns_check_package(struct acpi_evaluate_info *info,
Bob Moore42f8fb72013-01-11 13:08:51 +0100272 union acpi_operand_object **return_object_ptr);
273
Bob Mooree8707b32008-09-28 15:26:17 +0800274/*
Robert Moore44f6c012005-04-18 22:49:35 -0400275 * nsnames - Name and Scope manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
Len Brown4be44fc2005-08-05 00:44:28 -0400277u32 acpi_ns_opens_scope(acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Len Brown4be44fc2005-08-05 00:44:28 -0400279char *acpi_ns_get_external_pathname(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Lv Zhengd1e7ffe2015-07-23 12:52:39 +0800281u32
282acpi_ns_build_normalized_path(struct acpi_namespace_node *node,
283 char *full_path, u32 path_size, u8 no_trailing);
284
285char *acpi_ns_get_normalized_pathname(struct acpi_namespace_node *node,
286 u8 no_trailing);
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288char *acpi_ns_name_of_current_scope(struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400291acpi_ns_handle_to_pathname(acpi_handle target_handle,
Lv Zhengd1e7ffe2015-07-23 12:52:39 +0800292 struct acpi_buffer *buffer, u8 no_trailing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294u8
Len Brown4be44fc2005-08-05 00:44:28 -0400295acpi_ns_pattern_match(struct acpi_namespace_node *obj_node, char *search_for);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400298acpi_ns_get_node(struct acpi_namespace_node *prefix_node,
Bob Moore4b8ed632008-06-10 13:55:53 +0800299 const char *external_pathname,
Bob Moore41195322006-05-26 16:36:00 -0400300 u32 flags, struct acpi_namespace_node **out_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Len Brown4be44fc2005-08-05 00:44:28 -0400302acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304/*
Robert Moore44f6c012005-04-18 22:49:35 -0400305 * nsobject - Object management for namespace nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400308acpi_ns_attach_object(struct acpi_namespace_node *node,
309 union acpi_operand_object *object, acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Len Brown4be44fc2005-08-05 00:44:28 -0400311union acpi_operand_object *acpi_ns_get_attached_object(struct
312 acpi_namespace_node
313 *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Len Brown4be44fc2005-08-05 00:44:28 -0400315union acpi_operand_object *acpi_ns_get_secondary_object(union
316 acpi_operand_object
317 *obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400320acpi_ns_attach_data(struct acpi_namespace_node *node,
321 acpi_object_handler handler, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400324acpi_ns_detach_data(struct acpi_namespace_node *node,
325 acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400328acpi_ns_get_attached_data(struct acpi_namespace_node *node,
329 acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331/*
Bob Mooread5babe2009-11-12 09:44:06 +0800332 * nsrepair - General return object repair for all
333 * predefined methods/objects
Bob Mooreb2deadd2009-07-24 10:56:43 +0800334 */
335acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800336acpi_ns_simple_repair(struct acpi_evaluate_info *info,
Bob Mooreb2deadd2009-07-24 10:56:43 +0800337 u32 expected_btypes,
338 u32 package_index,
339 union acpi_operand_object **return_object_ptr);
340
Bob Mooree5f69d62009-07-24 11:03:09 +0800341acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800342acpi_ns_wrap_with_package(struct acpi_evaluate_info *info,
Bob Moore6a99b1c2012-03-21 09:51:39 +0800343 union acpi_operand_object *original_object,
344 union acpi_operand_object **obj_desc_ptr);
Bob Mooree5f69d62009-07-24 11:03:09 +0800345
Bob Moore091f4d72010-01-21 09:28:32 +0800346acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800347acpi_ns_repair_null_element(struct acpi_evaluate_info *info,
Bob Moore091f4d72010-01-21 09:28:32 +0800348 u32 expected_btypes,
349 u32 package_index,
350 union acpi_operand_object **return_object_ptr);
351
352void
Bob Moore29a241c2013-05-30 10:00:01 +0800353acpi_ns_remove_null_elements(struct acpi_evaluate_info *info,
Bob Moore091f4d72010-01-21 09:28:32 +0800354 u8 package_type,
355 union acpi_operand_object *obj_desc);
356
Bob Mooreb2deadd2009-07-24 10:56:43 +0800357/*
Bob Mooread5babe2009-11-12 09:44:06 +0800358 * nsrepair2 - Return object repair for specific
359 * predefined methods/objects
360 */
361acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800362acpi_ns_complex_repairs(struct acpi_evaluate_info *info,
Bob Mooread5babe2009-11-12 09:44:06 +0800363 struct acpi_namespace_node *node,
364 acpi_status validate_status,
365 union acpi_operand_object **return_object_ptr);
366
367/*
Robert Moore44f6c012005-04-18 22:49:35 -0400368 * nssearch - Namespace searching and entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400371acpi_ns_search_and_enter(u32 entry_name,
372 struct acpi_walk_state *walk_state,
373 struct acpi_namespace_node *node,
374 acpi_interpreter_mode interpreter_mode,
375 acpi_object_type type,
376 u32 flags, struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400379acpi_ns_search_one_scope(u32 entry_name,
380 struct acpi_namespace_node *node,
381 acpi_object_type type,
382 struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384void
Len Brown4be44fc2005-08-05 00:44:28 -0400385acpi_ns_install_node(struct acpi_walk_state *walk_state,
386 struct acpi_namespace_node *parent_node,
387 struct acpi_namespace_node *node, acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389/*
Robert Moore44f6c012005-04-18 22:49:35 -0400390 * nsutils - Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
Len Brown4be44fc2005-08-05 00:44:28 -0400392acpi_object_type acpi_ns_get_type(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Len Brown4be44fc2005-08-05 00:44:28 -0400394u32 acpi_ns_local(acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396void
Bob Moore4b8ed632008-06-10 13:55:53 +0800397acpi_ns_print_node_pathname(struct acpi_namespace_node *node, const char *msg);
Len Brown4be44fc2005-08-05 00:44:28 -0400398
399acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info);
400
401void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info);
402
Bob Moore4b8ed632008-06-10 13:55:53 +0800403acpi_status
404acpi_ns_internalize_name(const char *dotted_name, char **converted_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400407acpi_ns_externalize_name(u32 internal_name_length,
Bob Moore4b8ed632008-06-10 13:55:53 +0800408 const char *internal_name,
Len Brown4be44fc2005-08-05 00:44:28 -0400409 u32 * converted_name_length, char **converted_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bob Mooref24b6642009-12-11 14:57:00 +0800411struct acpi_namespace_node *acpi_ns_validate_handle(acpi_handle handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Len Brown4be44fc2005-08-05 00:44:28 -0400413void acpi_ns_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Len Brown4be44fc2005-08-05 00:44:28 -0400415#endif /* __ACNAMESP_H__ */