blob: bb7fca1c8ba307add15b588cd38a64084275d037 [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
Lv Zhengced04362016-02-19 14:17:15 +080091acpi_status acpi_ns_initialize_devices(u32 flags);
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
Lv Zhengde56ba92016-09-07 14:06:54 +0800133acpi_ns_execute_table(u32 table_index, struct acpi_namespace_node *start_node);
134
135acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +0800136acpi_ns_one_complete_parse(u32 pass_number,
137 u32 table_index,
Bob Moore7f4ac9f2008-04-10 19:06:39 +0400138 struct acpi_namespace_node *start_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/*
Robert Moore44f6c012005-04-18 22:49:35 -0400141 * nsaccess - Top-level namespace access
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
Len Brown4be44fc2005-08-05 00:44:28 -0400143acpi_status acpi_ns_root_initialize(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400146acpi_ns_lookup(union acpi_generic_state *scope_info,
147 char *name,
148 acpi_object_type type,
149 acpi_interpreter_mode interpreter_mode,
150 u32 flags,
151 struct acpi_walk_state *walk_state,
152 struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/*
Robert Moore44f6c012005-04-18 22:49:35 -0400155 * nsalloc - Named object allocation/deallocation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Len Brown4be44fc2005-08-05 00:44:28 -0400157struct acpi_namespace_node *acpi_ns_create_node(u32 name);
158
159void acpi_ns_delete_node(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Bob Moore8e4319c2009-06-29 13:43:27 +0800161void acpi_ns_remove_node(struct acpi_namespace_node *node);
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163void
Len Brown4be44fc2005-08-05 00:44:28 -0400164acpi_ns_delete_namespace_subtree(struct acpi_namespace_node *parent_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Len Brown4be44fc2005-08-05 00:44:28 -0400166void acpi_ns_delete_namespace_by_owner(acpi_owner_id owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Len Brown4be44fc2005-08-05 00:44:28 -0400168void acpi_ns_detach_object(struct acpi_namespace_node *node);
Robert Moore44f6c012005-04-18 22:49:35 -0400169
Len Brown4be44fc2005-08-05 00:44:28 -0400170void acpi_ns_delete_children(struct acpi_namespace_node *parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Len Brown4be44fc2005-08-05 00:44:28 -0400172int acpi_ns_compare_names(char *name1, char *name2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174/*
Bob Moore76a62252013-03-08 09:23:16 +0000175 * nsconvert - Dynamic object conversion routines
176 */
177acpi_status
178acpi_ns_convert_to_integer(union acpi_operand_object *original_object,
179 union acpi_operand_object **return_object);
180
181acpi_status
182acpi_ns_convert_to_string(union acpi_operand_object *original_object,
183 union acpi_operand_object **return_object);
184
185acpi_status
186acpi_ns_convert_to_buffer(union acpi_operand_object *original_object,
187 union acpi_operand_object **return_object);
188
Lv Zheng96b44cc2013-03-08 09:23:24 +0000189acpi_status
Lv Zheng4debda52015-12-29 13:57:38 +0800190acpi_ns_convert_to_unicode(struct acpi_namespace_node *scope,
191 union acpi_operand_object *original_object,
Lv Zheng96b44cc2013-03-08 09:23:24 +0000192 union acpi_operand_object **return_object);
193
Lv Zheng88fd0ac2013-03-08 09:23:32 +0000194acpi_status
Lv Zheng4debda52015-12-29 13:57:38 +0800195acpi_ns_convert_to_resource(struct acpi_namespace_node *scope,
196 union acpi_operand_object *original_object,
Lv Zheng88fd0ac2013-03-08 09:23:32 +0000197 union acpi_operand_object **return_object);
198
Lv Zhengee387402015-12-29 13:58:02 +0800199acpi_status
200acpi_ns_convert_to_reference(struct acpi_namespace_node *scope,
201 union acpi_operand_object *original_object,
202 union acpi_operand_object **return_object);
203
Bob Moore76a62252013-03-08 09:23:16 +0000204/*
Robert Moore44f6c012005-04-18 22:49:35 -0400205 * nsdump - Namespace dump/print utilities
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
Len Brown4be44fc2005-08-05 00:44:28 -0400207void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth);
Len Brown4be44fc2005-08-05 00:44:28 -0400208
209void acpi_ns_dump_entry(acpi_handle handle, u32 debug_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211void
Bob Moore0dfaaa32016-03-24 09:40:40 +0800212acpi_ns_dump_pathname(acpi_handle handle,
213 const char *msg, u32 level, u32 component);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Bob Moore0dfaaa32016-03-24 09:40:40 +0800215void acpi_ns_print_pathname(u32 num_segments, const char *pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400218acpi_ns_dump_one_object(acpi_handle obj_handle,
219 u32 level, void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221void
Len Brown4be44fc2005-08-05 00:44:28 -0400222acpi_ns_dump_objects(acpi_object_type type,
223 u8 display_type,
224 u32 max_depth,
225 acpi_owner_id owner_id, acpi_handle start_handle);
Bob Moore424deb32013-09-23 09:52:19 +0800226
227void
228acpi_ns_dump_object_paths(acpi_object_type type,
229 u8 display_type,
230 u32 max_depth,
231 acpi_owner_id owner_id, acpi_handle start_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233/*
Robert Moore44f6c012005-04-18 22:49:35 -0400234 * nseval - Namespace evaluation functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
Bob Moore41195322006-05-26 16:36:00 -0400236acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Lin Ming7f0c8262009-08-13 14:03:15 +0800238void acpi_ns_exec_module_code_list(void);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
Bob Moore29a241c2013-05-30 10:00:01 +0800241 * nsarguments - Argument count/type checking for predefined/reserved names
Bob Mooree8707b32008-09-28 15:26:17 +0800242 */
Bob Moore29a241c2013-05-30 10:00:01 +0800243void
244acpi_ns_check_argument_count(char *pathname,
245 struct acpi_namespace_node *node,
246 u32 user_param_count,
247 const union acpi_predefined_info *info);
Bob Mooree8707b32008-09-28 15:26:17 +0800248
Bob Mooree8707b32008-09-28 15:26:17 +0800249void
Bob Moore29a241c2013-05-30 10:00:01 +0800250acpi_ns_check_acpi_compliance(char *pathname,
Bob Mooree8707b32008-09-28 15:26:17 +0800251 struct acpi_namespace_node *node,
Bob Moore29a241c2013-05-30 10:00:01 +0800252 const union acpi_predefined_info *predefined);
253
254void acpi_ns_check_argument_types(struct acpi_evaluate_info *info);
255
256/*
257 * nspredef - Return value checking for predefined/reserved names
258 */
259acpi_status
260acpi_ns_check_return_value(struct acpi_namespace_node *node,
261 struct acpi_evaluate_info *info,
262 u32 user_param_count,
263 acpi_status return_status,
264 union acpi_operand_object **return_object);
Bob Mooree8707b32008-09-28 15:26:17 +0800265
Bob Moore42f8fb72013-01-11 13:08:51 +0100266acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800267acpi_ns_check_object_type(struct acpi_evaluate_info *info,
Bob Moore42f8fb72013-01-11 13:08:51 +0100268 union acpi_operand_object **return_object_ptr,
269 u32 expected_btypes, u32 package_index);
270
271/*
272 * nsprepkg - Validation of predefined name packages
273 */
274acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800275acpi_ns_check_package(struct acpi_evaluate_info *info,
Bob Moore42f8fb72013-01-11 13:08:51 +0100276 union acpi_operand_object **return_object_ptr);
277
Bob Mooree8707b32008-09-28 15:26:17 +0800278/*
Robert Moore44f6c012005-04-18 22:49:35 -0400279 * nsnames - Name and Scope manipulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
Len Brown4be44fc2005-08-05 00:44:28 -0400281u32 acpi_ns_opens_scope(acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Len Brown4be44fc2005-08-05 00:44:28 -0400283char *acpi_ns_get_external_pathname(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Lv Zhengd1e7ffe2015-07-23 12:52:39 +0800285u32
286acpi_ns_build_normalized_path(struct acpi_namespace_node *node,
287 char *full_path, u32 path_size, u8 no_trailing);
288
289char *acpi_ns_get_normalized_pathname(struct acpi_namespace_node *node,
290 u8 no_trailing);
291
Len Brown4be44fc2005-08-05 00:44:28 -0400292char *acpi_ns_name_of_current_scope(struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400295acpi_ns_handle_to_pathname(acpi_handle target_handle,
Lv Zhengd1e7ffe2015-07-23 12:52:39 +0800296 struct acpi_buffer *buffer, u8 no_trailing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298u8
Len Brown4be44fc2005-08-05 00:44:28 -0400299acpi_ns_pattern_match(struct acpi_namespace_node *obj_node, char *search_for);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301acpi_status
Lv Zhengc2d981a2016-09-07 14:07:02 +0800302acpi_ns_get_node_unlocked(struct acpi_namespace_node *prefix_node,
303 const char *external_pathname,
304 u32 flags, struct acpi_namespace_node **out_node);
305
306acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400307acpi_ns_get_node(struct acpi_namespace_node *prefix_node,
Bob Moore4b8ed632008-06-10 13:55:53 +0800308 const char *external_pathname,
Bob Moore41195322006-05-26 16:36:00 -0400309 u32 flags, struct acpi_namespace_node **out_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Len Brown4be44fc2005-08-05 00:44:28 -0400311acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313/*
Robert Moore44f6c012005-04-18 22:49:35 -0400314 * nsobject - Object management for namespace nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400317acpi_ns_attach_object(struct acpi_namespace_node *node,
318 union acpi_operand_object *object, acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Len Brown4be44fc2005-08-05 00:44:28 -0400320union acpi_operand_object *acpi_ns_get_attached_object(struct
321 acpi_namespace_node
322 *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Len Brown4be44fc2005-08-05 00:44:28 -0400324union acpi_operand_object *acpi_ns_get_secondary_object(union
325 acpi_operand_object
326 *obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400329acpi_ns_attach_data(struct acpi_namespace_node *node,
330 acpi_object_handler handler, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400333acpi_ns_detach_data(struct acpi_namespace_node *node,
334 acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400337acpi_ns_get_attached_data(struct acpi_namespace_node *node,
338 acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340/*
Bob Mooread5babe2009-11-12 09:44:06 +0800341 * nsrepair - General return object repair for all
342 * predefined methods/objects
Bob Mooreb2deadd2009-07-24 10:56:43 +0800343 */
344acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800345acpi_ns_simple_repair(struct acpi_evaluate_info *info,
Bob Mooreb2deadd2009-07-24 10:56:43 +0800346 u32 expected_btypes,
347 u32 package_index,
348 union acpi_operand_object **return_object_ptr);
349
Bob Mooree5f69d62009-07-24 11:03:09 +0800350acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800351acpi_ns_wrap_with_package(struct acpi_evaluate_info *info,
Bob Moore6a99b1c2012-03-21 09:51:39 +0800352 union acpi_operand_object *original_object,
353 union acpi_operand_object **obj_desc_ptr);
Bob Mooree5f69d62009-07-24 11:03:09 +0800354
Bob Moore091f4d72010-01-21 09:28:32 +0800355acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800356acpi_ns_repair_null_element(struct acpi_evaluate_info *info,
Bob Moore091f4d72010-01-21 09:28:32 +0800357 u32 expected_btypes,
358 u32 package_index,
359 union acpi_operand_object **return_object_ptr);
360
361void
Bob Moore29a241c2013-05-30 10:00:01 +0800362acpi_ns_remove_null_elements(struct acpi_evaluate_info *info,
Bob Moore091f4d72010-01-21 09:28:32 +0800363 u8 package_type,
364 union acpi_operand_object *obj_desc);
365
Bob Mooreb2deadd2009-07-24 10:56:43 +0800366/*
Bob Mooread5babe2009-11-12 09:44:06 +0800367 * nsrepair2 - Return object repair for specific
368 * predefined methods/objects
369 */
370acpi_status
Bob Moore29a241c2013-05-30 10:00:01 +0800371acpi_ns_complex_repairs(struct acpi_evaluate_info *info,
Bob Mooread5babe2009-11-12 09:44:06 +0800372 struct acpi_namespace_node *node,
373 acpi_status validate_status,
374 union acpi_operand_object **return_object_ptr);
375
376/*
Robert Moore44f6c012005-04-18 22:49:35 -0400377 * nssearch - Namespace searching and entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400380acpi_ns_search_and_enter(u32 entry_name,
381 struct acpi_walk_state *walk_state,
382 struct acpi_namespace_node *node,
383 acpi_interpreter_mode interpreter_mode,
384 acpi_object_type type,
385 u32 flags, struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400388acpi_ns_search_one_scope(u32 entry_name,
389 struct acpi_namespace_node *node,
390 acpi_object_type type,
391 struct acpi_namespace_node **ret_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393void
Len Brown4be44fc2005-08-05 00:44:28 -0400394acpi_ns_install_node(struct acpi_walk_state *walk_state,
395 struct acpi_namespace_node *parent_node,
396 struct acpi_namespace_node *node, acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398/*
Robert Moore44f6c012005-04-18 22:49:35 -0400399 * nsutils - Utility functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 */
Len Brown4be44fc2005-08-05 00:44:28 -0400401acpi_object_type acpi_ns_get_type(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Len Brown4be44fc2005-08-05 00:44:28 -0400403u32 acpi_ns_local(acpi_object_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405void
Bob Moore4b8ed632008-06-10 13:55:53 +0800406acpi_ns_print_node_pathname(struct acpi_namespace_node *node, const char *msg);
Len Brown4be44fc2005-08-05 00:44:28 -0400407
408acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info);
409
410void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info);
411
Bob Moore4b8ed632008-06-10 13:55:53 +0800412acpi_status
413acpi_ns_internalize_name(const char *dotted_name, char **converted_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400416acpi_ns_externalize_name(u32 internal_name_length,
Bob Moore4b8ed632008-06-10 13:55:53 +0800417 const char *internal_name,
Len Brown4be44fc2005-08-05 00:44:28 -0400418 u32 * converted_name_length, char **converted_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Bob Mooref24b6642009-12-11 14:57:00 +0800420struct acpi_namespace_node *acpi_ns_validate_handle(acpi_handle handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Len Brown4be44fc2005-08-05 00:44:28 -0400422void acpi_ns_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Len Brown4be44fc2005-08-05 00:44:28 -0400424#endif /* __ACNAMESP_H__ */