1 /*******************************************************************************
3 * Module Name: nsxfobj - Public interfaces to the ACPI subsystem
4 * ACPI Object oriented interfaces
6 ******************************************************************************/
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
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.
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.
47 #define EXPORT_ACPI_INTERFACES
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
66 * DESCRIPTION: This routine returns the type associatd with a particular handle
68 ******************************************************************************/
73 ACPI_OBJECT_TYPE
*RetType
)
75 ACPI_NAMESPACE_NODE
*Node
;
79 /* Parameter Validation */
83 return (AE_BAD_PARAMETER
);
87 * Special case for the predefined Root Node
90 if (Handle
== ACPI_ROOT_OBJECT
)
92 *RetType
= ACPI_TYPE_ANY
;
96 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
97 if (ACPI_FAILURE (Status
))
102 /* Convert and validate the handle */
104 Node
= AcpiNsValidateHandle (Handle
);
107 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
108 return (AE_BAD_PARAMETER
);
111 *RetType
= Node
->Type
;
114 Status
= AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
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
130 * DESCRIPTION: Returns a handle to the parent of the object represented by
133 ******************************************************************************/
138 ACPI_HANDLE
*RetHandle
)
140 ACPI_NAMESPACE_NODE
*Node
;
141 ACPI_NAMESPACE_NODE
*ParentNode
;
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
))
163 /* Convert and validate the handle */
165 Node
= AcpiNsValidateHandle (Handle
);
168 Status
= AE_BAD_PARAMETER
;
172 /* Get the parent entry */
174 ParentNode
= Node
->Parent
;
175 *RetHandle
= ACPI_CAST_PTR (ACPI_HANDLE
, ParentNode
);
177 /* Return exception if parent is null */
181 Status
= AE_NULL_ENTRY
;
187 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
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
206 * DESCRIPTION: Return the next peer object within the namespace. If Handle is
207 * valid, Scope is ignored. Otherwise, the first object within
210 ******************************************************************************/
214 ACPI_OBJECT_TYPE Type
,
217 ACPI_HANDLE
*RetHandle
)
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
))
238 /* If null handle, use the parent */
242 /* Start search at the beginning of the specified scope */
244 ParentNode
= AcpiNsValidateHandle (Parent
);
247 Status
= AE_BAD_PARAMETER
;
253 /* Non-null handle, ignore the parent */
254 /* Convert and validate the handle */
256 ChildNode
= AcpiNsValidateHandle (Child
);
259 Status
= AE_BAD_PARAMETER
;
264 /* Internal function does the real work */
266 Node
= AcpiNsGetNextNodeTyped (Type
, ParentNode
, ChildNode
);
269 Status
= AE_NOT_FOUND
;
275 *RetHandle
= ACPI_CAST_PTR (ACPI_HANDLE
, Node
);
281 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
285 ACPI_EXPORT_SYMBOL (AcpiGetNextObject
)