Fixed compatibility of output.
[AROS.git] / arch / all-pc / acpica / source / components / namespace / nsxfobj.c
blobd3adfdb242b26f8c8839de9ca26ffed022d6f745
1 /*******************************************************************************
3 * Module Name: nsxfobj - Public interfaces to the ACPI subsystem
4 * ACPI Object oriented interfaces
6 ******************************************************************************/
8 /*
9 * Copyright (C) 2000 - 2013, Intel Corp.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
46 #define __NSXFOBJ_C__
47 #define EXPORT_ACPI_INTERFACES
49 #include "acpi.h"
50 #include "accommon.h"
51 #include "acnamesp.h"
54 #define _COMPONENT ACPI_NAMESPACE
55 ACPI_MODULE_NAME ("nsxfobj")
57 /*******************************************************************************
59 * FUNCTION: AcpiGetType
61 * PARAMETERS: Handle - Handle of object whose type is desired
62 * RetType - Where the type will be placed
64 * RETURN: Status
66 * DESCRIPTION: This routine returns the type associatd with a particular handle
68 ******************************************************************************/
70 ACPI_STATUS
71 AcpiGetType (
72 ACPI_HANDLE Handle,
73 ACPI_OBJECT_TYPE *RetType)
75 ACPI_NAMESPACE_NODE *Node;
76 ACPI_STATUS Status;
79 /* Parameter Validation */
81 if (!RetType)
83 return (AE_BAD_PARAMETER);
87 * Special case for the predefined Root Node
88 * (return type ANY)
90 if (Handle == ACPI_ROOT_OBJECT)
92 *RetType = ACPI_TYPE_ANY;
93 return (AE_OK);
96 Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
97 if (ACPI_FAILURE (Status))
99 return (Status);
102 /* Convert and validate the handle */
104 Node = AcpiNsValidateHandle (Handle);
105 if (!Node)
107 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
108 return (AE_BAD_PARAMETER);
111 *RetType = Node->Type;
114 Status = AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
115 return (Status);
118 ACPI_EXPORT_SYMBOL (AcpiGetType)
121 /*******************************************************************************
123 * FUNCTION: AcpiGetParent
125 * PARAMETERS: Handle - Handle of object whose parent is desired
126 * RetHandle - Where the parent handle will be placed
128 * RETURN: Status
130 * DESCRIPTION: Returns a handle to the parent of the object represented by
131 * Handle.
133 ******************************************************************************/
135 ACPI_STATUS
136 AcpiGetParent (
137 ACPI_HANDLE Handle,
138 ACPI_HANDLE *RetHandle)
140 ACPI_NAMESPACE_NODE *Node;
141 ACPI_NAMESPACE_NODE *ParentNode;
142 ACPI_STATUS Status;
145 if (!RetHandle)
147 return (AE_BAD_PARAMETER);
150 /* Special case for the predefined Root Node (no parent) */
152 if (Handle == ACPI_ROOT_OBJECT)
154 return (AE_NULL_ENTRY);
157 Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
158 if (ACPI_FAILURE (Status))
160 return (Status);
163 /* Convert and validate the handle */
165 Node = AcpiNsValidateHandle (Handle);
166 if (!Node)
168 Status = AE_BAD_PARAMETER;
169 goto UnlockAndExit;
172 /* Get the parent entry */
174 ParentNode = Node->Parent;
175 *RetHandle = ACPI_CAST_PTR (ACPI_HANDLE, ParentNode);
177 /* Return exception if parent is null */
179 if (!ParentNode)
181 Status = AE_NULL_ENTRY;
185 UnlockAndExit:
187 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
188 return (Status);
191 ACPI_EXPORT_SYMBOL (AcpiGetParent)
194 /*******************************************************************************
196 * FUNCTION: AcpiGetNextObject
198 * PARAMETERS: Type - Type of object to be searched for
199 * Parent - Parent object whose children we are getting
200 * LastChild - Previous child that was found.
201 * The NEXT child will be returned
202 * RetHandle - Where handle to the next object is placed
204 * RETURN: Status
206 * DESCRIPTION: Return the next peer object within the namespace. If Handle is
207 * valid, Scope is ignored. Otherwise, the first object within
208 * Scope is returned.
210 ******************************************************************************/
212 ACPI_STATUS
213 AcpiGetNextObject (
214 ACPI_OBJECT_TYPE Type,
215 ACPI_HANDLE Parent,
216 ACPI_HANDLE Child,
217 ACPI_HANDLE *RetHandle)
219 ACPI_STATUS Status;
220 ACPI_NAMESPACE_NODE *Node;
221 ACPI_NAMESPACE_NODE *ParentNode = NULL;
222 ACPI_NAMESPACE_NODE *ChildNode = NULL;
225 /* Parameter validation */
227 if (Type > ACPI_TYPE_EXTERNAL_MAX)
229 return (AE_BAD_PARAMETER);
232 Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
233 if (ACPI_FAILURE (Status))
235 return (Status);
238 /* If null handle, use the parent */
240 if (!Child)
242 /* Start search at the beginning of the specified scope */
244 ParentNode = AcpiNsValidateHandle (Parent);
245 if (!ParentNode)
247 Status = AE_BAD_PARAMETER;
248 goto UnlockAndExit;
251 else
253 /* Non-null handle, ignore the parent */
254 /* Convert and validate the handle */
256 ChildNode = AcpiNsValidateHandle (Child);
257 if (!ChildNode)
259 Status = AE_BAD_PARAMETER;
260 goto UnlockAndExit;
264 /* Internal function does the real work */
266 Node = AcpiNsGetNextNodeTyped (Type, ParentNode, ChildNode);
267 if (!Node)
269 Status = AE_NOT_FOUND;
270 goto UnlockAndExit;
273 if (RetHandle)
275 *RetHandle = ACPI_CAST_PTR (ACPI_HANDLE, Node);
279 UnlockAndExit:
281 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
282 return (Status);
285 ACPI_EXPORT_SYMBOL (AcpiGetNextObject)