xref: /minix3/minix/drivers/power/acpi/namespace/nsalloc.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc /*******************************************************************************
2*433d6423SLionel Sambuc  *
3*433d6423SLionel Sambuc  * Module Name: nsalloc - Namespace allocation and deletion utilities
4*433d6423SLionel Sambuc  *
5*433d6423SLionel Sambuc  ******************************************************************************/
6*433d6423SLionel Sambuc 
7*433d6423SLionel Sambuc /******************************************************************************
8*433d6423SLionel Sambuc  *
9*433d6423SLionel Sambuc  * 1. Copyright Notice
10*433d6423SLionel Sambuc  *
11*433d6423SLionel Sambuc  * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
12*433d6423SLionel Sambuc  * All rights reserved.
13*433d6423SLionel Sambuc  *
14*433d6423SLionel Sambuc  * 2. License
15*433d6423SLionel Sambuc  *
16*433d6423SLionel Sambuc  * 2.1. This is your license from Intel Corp. under its intellectual property
17*433d6423SLionel Sambuc  * rights.  You may have additional license terms from the party that provided
18*433d6423SLionel Sambuc  * you this software, covering your right to use that party's intellectual
19*433d6423SLionel Sambuc  * property rights.
20*433d6423SLionel Sambuc  *
21*433d6423SLionel Sambuc  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22*433d6423SLionel Sambuc  * copy of the source code appearing in this file ("Covered Code") an
23*433d6423SLionel Sambuc  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24*433d6423SLionel Sambuc  * base code distributed originally by Intel ("Original Intel Code") to copy,
25*433d6423SLionel Sambuc  * make derivatives, distribute, use and display any portion of the Covered
26*433d6423SLionel Sambuc  * Code in any form, with the right to sublicense such rights; and
27*433d6423SLionel Sambuc  *
28*433d6423SLionel Sambuc  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29*433d6423SLionel Sambuc  * license (with the right to sublicense), under only those claims of Intel
30*433d6423SLionel Sambuc  * patents that are infringed by the Original Intel Code, to make, use, sell,
31*433d6423SLionel Sambuc  * offer to sell, and import the Covered Code and derivative works thereof
32*433d6423SLionel Sambuc  * solely to the minimum extent necessary to exercise the above copyright
33*433d6423SLionel Sambuc  * license, and in no event shall the patent license extend to any additions
34*433d6423SLionel Sambuc  * to or modifications of the Original Intel Code.  No other license or right
35*433d6423SLionel Sambuc  * is granted directly or by implication, estoppel or otherwise;
36*433d6423SLionel Sambuc  *
37*433d6423SLionel Sambuc  * The above copyright and patent license is granted only if the following
38*433d6423SLionel Sambuc  * conditions are met:
39*433d6423SLionel Sambuc  *
40*433d6423SLionel Sambuc  * 3. Conditions
41*433d6423SLionel Sambuc  *
42*433d6423SLionel Sambuc  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43*433d6423SLionel Sambuc  * Redistribution of source code of any substantial portion of the Covered
44*433d6423SLionel Sambuc  * Code or modification with rights to further distribute source must include
45*433d6423SLionel Sambuc  * the above Copyright Notice, the above License, this list of Conditions,
46*433d6423SLionel Sambuc  * and the following Disclaimer and Export Compliance provision.  In addition,
47*433d6423SLionel Sambuc  * Licensee must cause all Covered Code to which Licensee contributes to
48*433d6423SLionel Sambuc  * contain a file documenting the changes Licensee made to create that Covered
49*433d6423SLionel Sambuc  * Code and the date of any change.  Licensee must include in that file the
50*433d6423SLionel Sambuc  * documentation of any changes made by any predecessor Licensee.  Licensee
51*433d6423SLionel Sambuc  * must include a prominent statement that the modification is derived,
52*433d6423SLionel Sambuc  * directly or indirectly, from Original Intel Code.
53*433d6423SLionel Sambuc  *
54*433d6423SLionel Sambuc  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55*433d6423SLionel Sambuc  * Redistribution of source code of any substantial portion of the Covered
56*433d6423SLionel Sambuc  * Code or modification without rights to further distribute source must
57*433d6423SLionel Sambuc  * include the following Disclaimer and Export Compliance provision in the
58*433d6423SLionel Sambuc  * documentation and/or other materials provided with distribution.  In
59*433d6423SLionel Sambuc  * addition, Licensee may not authorize further sublicense of source of any
60*433d6423SLionel Sambuc  * portion of the Covered Code, and must include terms to the effect that the
61*433d6423SLionel Sambuc  * license from Licensee to its licensee is limited to the intellectual
62*433d6423SLionel Sambuc  * property embodied in the software Licensee provides to its licensee, and
63*433d6423SLionel Sambuc  * not to intellectual property embodied in modifications its licensee may
64*433d6423SLionel Sambuc  * make.
65*433d6423SLionel Sambuc  *
66*433d6423SLionel Sambuc  * 3.3. Redistribution of Executable. Redistribution in executable form of any
67*433d6423SLionel Sambuc  * substantial portion of the Covered Code or modification must reproduce the
68*433d6423SLionel Sambuc  * above Copyright Notice, and the following Disclaimer and Export Compliance
69*433d6423SLionel Sambuc  * provision in the documentation and/or other materials provided with the
70*433d6423SLionel Sambuc  * distribution.
71*433d6423SLionel Sambuc  *
72*433d6423SLionel Sambuc  * 3.4. Intel retains all right, title, and interest in and to the Original
73*433d6423SLionel Sambuc  * Intel Code.
74*433d6423SLionel Sambuc  *
75*433d6423SLionel Sambuc  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76*433d6423SLionel Sambuc  * Intel shall be used in advertising or otherwise to promote the sale, use or
77*433d6423SLionel Sambuc  * other dealings in products derived from or relating to the Covered Code
78*433d6423SLionel Sambuc  * without prior written authorization from Intel.
79*433d6423SLionel Sambuc  *
80*433d6423SLionel Sambuc  * 4. Disclaimer and Export Compliance
81*433d6423SLionel Sambuc  *
82*433d6423SLionel Sambuc  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83*433d6423SLionel Sambuc  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84*433d6423SLionel Sambuc  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
85*433d6423SLionel Sambuc  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
86*433d6423SLionel Sambuc  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
87*433d6423SLionel Sambuc  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88*433d6423SLionel Sambuc  * PARTICULAR PURPOSE.
89*433d6423SLionel Sambuc  *
90*433d6423SLionel Sambuc  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91*433d6423SLionel Sambuc  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92*433d6423SLionel Sambuc  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93*433d6423SLionel Sambuc  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94*433d6423SLionel Sambuc  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95*433d6423SLionel Sambuc  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
96*433d6423SLionel Sambuc  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97*433d6423SLionel Sambuc  * LIMITED REMEDY.
98*433d6423SLionel Sambuc  *
99*433d6423SLionel Sambuc  * 4.3. Licensee shall not export, either directly or indirectly, any of this
100*433d6423SLionel Sambuc  * software or system incorporating such software without first obtaining any
101*433d6423SLionel Sambuc  * required license or other approval from the U. S. Department of Commerce or
102*433d6423SLionel Sambuc  * any other agency or department of the United States Government.  In the
103*433d6423SLionel Sambuc  * event Licensee exports any such software from the United States or
104*433d6423SLionel Sambuc  * re-exports any such software from a foreign destination, Licensee shall
105*433d6423SLionel Sambuc  * ensure that the distribution and export/re-export of the software is in
106*433d6423SLionel Sambuc  * compliance with all laws, regulations, orders, or other restrictions of the
107*433d6423SLionel Sambuc  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108*433d6423SLionel Sambuc  * any of its subsidiaries will export/re-export any technical data, process,
109*433d6423SLionel Sambuc  * software, or service, directly or indirectly, to any country for which the
110*433d6423SLionel Sambuc  * United States government or any agency thereof requires an export license,
111*433d6423SLionel Sambuc  * other governmental approval, or letter of assurance, without first obtaining
112*433d6423SLionel Sambuc  * such license, approval or letter.
113*433d6423SLionel Sambuc  *
114*433d6423SLionel Sambuc  *****************************************************************************/
115*433d6423SLionel Sambuc 
116*433d6423SLionel Sambuc 
117*433d6423SLionel Sambuc #define __NSALLOC_C__
118*433d6423SLionel Sambuc 
119*433d6423SLionel Sambuc #include "acpi.h"
120*433d6423SLionel Sambuc #include "accommon.h"
121*433d6423SLionel Sambuc #include "acnamesp.h"
122*433d6423SLionel Sambuc 
123*433d6423SLionel Sambuc 
124*433d6423SLionel Sambuc #define _COMPONENT          ACPI_NAMESPACE
125*433d6423SLionel Sambuc         ACPI_MODULE_NAME    ("nsalloc")
126*433d6423SLionel Sambuc 
127*433d6423SLionel Sambuc 
128*433d6423SLionel Sambuc /*******************************************************************************
129*433d6423SLionel Sambuc  *
130*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsCreateNode
131*433d6423SLionel Sambuc  *
132*433d6423SLionel Sambuc  * PARAMETERS:  Name            - Name of the new node (4 char ACPI name)
133*433d6423SLionel Sambuc  *
134*433d6423SLionel Sambuc  * RETURN:      New namespace node (Null on failure)
135*433d6423SLionel Sambuc  *
136*433d6423SLionel Sambuc  * DESCRIPTION: Create a namespace node
137*433d6423SLionel Sambuc  *
138*433d6423SLionel Sambuc  ******************************************************************************/
139*433d6423SLionel Sambuc 
140*433d6423SLionel Sambuc ACPI_NAMESPACE_NODE *
141*433d6423SLionel Sambuc AcpiNsCreateNode (
142*433d6423SLionel Sambuc     UINT32                  Name)
143*433d6423SLionel Sambuc {
144*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node;
145*433d6423SLionel Sambuc #ifdef ACPI_DBG_TRACK_ALLOCATIONS
146*433d6423SLionel Sambuc     UINT32                  Temp;
147*433d6423SLionel Sambuc #endif
148*433d6423SLionel Sambuc 
149*433d6423SLionel Sambuc 
150*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (NsCreateNode);
151*433d6423SLionel Sambuc 
152*433d6423SLionel Sambuc 
153*433d6423SLionel Sambuc     Node = AcpiOsAcquireObject (AcpiGbl_NamespaceCache);
154*433d6423SLionel Sambuc     if (!Node)
155*433d6423SLionel Sambuc     {
156*433d6423SLionel Sambuc         return_PTR (NULL);
157*433d6423SLionel Sambuc     }
158*433d6423SLionel Sambuc 
159*433d6423SLionel Sambuc     ACPI_MEM_TRACKING (AcpiGbl_NsNodeList->TotalAllocated++);
160*433d6423SLionel Sambuc 
161*433d6423SLionel Sambuc #ifdef ACPI_DBG_TRACK_ALLOCATIONS
162*433d6423SLionel Sambuc         Temp = AcpiGbl_NsNodeList->TotalAllocated -
163*433d6423SLionel Sambuc                 AcpiGbl_NsNodeList->TotalFreed;
164*433d6423SLionel Sambuc         if (Temp > AcpiGbl_NsNodeList->MaxOccupied)
165*433d6423SLionel Sambuc         {
166*433d6423SLionel Sambuc             AcpiGbl_NsNodeList->MaxOccupied = Temp;
167*433d6423SLionel Sambuc         }
168*433d6423SLionel Sambuc #endif
169*433d6423SLionel Sambuc 
170*433d6423SLionel Sambuc     Node->Name.Integer = Name;
171*433d6423SLionel Sambuc     ACPI_SET_DESCRIPTOR_TYPE (Node, ACPI_DESC_TYPE_NAMED);
172*433d6423SLionel Sambuc     return_PTR (Node);
173*433d6423SLionel Sambuc }
174*433d6423SLionel Sambuc 
175*433d6423SLionel Sambuc 
176*433d6423SLionel Sambuc /*******************************************************************************
177*433d6423SLionel Sambuc  *
178*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsDeleteNode
179*433d6423SLionel Sambuc  *
180*433d6423SLionel Sambuc  * PARAMETERS:  Node            - Node to be deleted
181*433d6423SLionel Sambuc  *
182*433d6423SLionel Sambuc  * RETURN:      None
183*433d6423SLionel Sambuc  *
184*433d6423SLionel Sambuc  * DESCRIPTION: Delete a namespace node. All node deletions must come through
185*433d6423SLionel Sambuc  *              here. Detaches any attached objects, including any attached
186*433d6423SLionel Sambuc  *              data. If a handler is associated with attached data, it is
187*433d6423SLionel Sambuc  *              invoked before the node is deleted.
188*433d6423SLionel Sambuc  *
189*433d6423SLionel Sambuc  ******************************************************************************/
190*433d6423SLionel Sambuc 
191*433d6423SLionel Sambuc void
192*433d6423SLionel Sambuc AcpiNsDeleteNode (
193*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node)
194*433d6423SLionel Sambuc {
195*433d6423SLionel Sambuc     ACPI_OPERAND_OBJECT     *ObjDesc;
196*433d6423SLionel Sambuc 
197*433d6423SLionel Sambuc 
198*433d6423SLionel Sambuc     ACPI_FUNCTION_NAME (NsDeleteNode);
199*433d6423SLionel Sambuc 
200*433d6423SLionel Sambuc 
201*433d6423SLionel Sambuc     /* Detach an object if there is one */
202*433d6423SLionel Sambuc 
203*433d6423SLionel Sambuc     AcpiNsDetachObject (Node);
204*433d6423SLionel Sambuc 
205*433d6423SLionel Sambuc     /*
206*433d6423SLionel Sambuc      * Delete an attached data object if present (an object that was created
207*433d6423SLionel Sambuc      * and attached via AcpiAttachData). Note: After any normal object is
208*433d6423SLionel Sambuc      * detached above, the only possible remaining object is a data object.
209*433d6423SLionel Sambuc      */
210*433d6423SLionel Sambuc     ObjDesc = Node->Object;
211*433d6423SLionel Sambuc     if (ObjDesc &&
212*433d6423SLionel Sambuc         (ObjDesc->Common.Type == ACPI_TYPE_LOCAL_DATA))
213*433d6423SLionel Sambuc     {
214*433d6423SLionel Sambuc         /* Invoke the attached data deletion handler if present */
215*433d6423SLionel Sambuc 
216*433d6423SLionel Sambuc         if (ObjDesc->Data.Handler)
217*433d6423SLionel Sambuc         {
218*433d6423SLionel Sambuc             ObjDesc->Data.Handler (Node, ObjDesc->Data.Pointer);
219*433d6423SLionel Sambuc         }
220*433d6423SLionel Sambuc 
221*433d6423SLionel Sambuc         AcpiUtRemoveReference (ObjDesc);
222*433d6423SLionel Sambuc     }
223*433d6423SLionel Sambuc 
224*433d6423SLionel Sambuc     /* Now we can delete the node */
225*433d6423SLionel Sambuc 
226*433d6423SLionel Sambuc     (void) AcpiOsReleaseObject (AcpiGbl_NamespaceCache, Node);
227*433d6423SLionel Sambuc 
228*433d6423SLionel Sambuc     ACPI_MEM_TRACKING (AcpiGbl_NsNodeList->TotalFreed++);
229*433d6423SLionel Sambuc     ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "Node %p, Remaining %X\n",
230*433d6423SLionel Sambuc         Node, AcpiGbl_CurrentNodeCount));
231*433d6423SLionel Sambuc }
232*433d6423SLionel Sambuc 
233*433d6423SLionel Sambuc 
234*433d6423SLionel Sambuc /*******************************************************************************
235*433d6423SLionel Sambuc  *
236*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsRemoveNode
237*433d6423SLionel Sambuc  *
238*433d6423SLionel Sambuc  * PARAMETERS:  Node            - Node to be removed/deleted
239*433d6423SLionel Sambuc  *
240*433d6423SLionel Sambuc  * RETURN:      None
241*433d6423SLionel Sambuc  *
242*433d6423SLionel Sambuc  * DESCRIPTION: Remove (unlink) and delete a namespace node
243*433d6423SLionel Sambuc  *
244*433d6423SLionel Sambuc  ******************************************************************************/
245*433d6423SLionel Sambuc 
246*433d6423SLionel Sambuc void
247*433d6423SLionel Sambuc AcpiNsRemoveNode (
248*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node)
249*433d6423SLionel Sambuc {
250*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ParentNode;
251*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *PrevNode;
252*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *NextNode;
253*433d6423SLionel Sambuc 
254*433d6423SLionel Sambuc 
255*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE_PTR (NsRemoveNode, Node);
256*433d6423SLionel Sambuc 
257*433d6423SLionel Sambuc 
258*433d6423SLionel Sambuc     ParentNode = Node->Parent;
259*433d6423SLionel Sambuc 
260*433d6423SLionel Sambuc     PrevNode = NULL;
261*433d6423SLionel Sambuc     NextNode = ParentNode->Child;
262*433d6423SLionel Sambuc 
263*433d6423SLionel Sambuc     /* Find the node that is the previous peer in the parent's child list */
264*433d6423SLionel Sambuc 
265*433d6423SLionel Sambuc     while (NextNode != Node)
266*433d6423SLionel Sambuc     {
267*433d6423SLionel Sambuc         PrevNode = NextNode;
268*433d6423SLionel Sambuc         NextNode = NextNode->Peer;
269*433d6423SLionel Sambuc     }
270*433d6423SLionel Sambuc 
271*433d6423SLionel Sambuc     if (PrevNode)
272*433d6423SLionel Sambuc     {
273*433d6423SLionel Sambuc         /* Node is not first child, unlink it */
274*433d6423SLionel Sambuc 
275*433d6423SLionel Sambuc         PrevNode->Peer = Node->Peer;
276*433d6423SLionel Sambuc     }
277*433d6423SLionel Sambuc     else
278*433d6423SLionel Sambuc     {
279*433d6423SLionel Sambuc         /*
280*433d6423SLionel Sambuc          * Node is first child (has no previous peer).
281*433d6423SLionel Sambuc          * Link peer list to parent
282*433d6423SLionel Sambuc          */
283*433d6423SLionel Sambuc         ParentNode->Child = Node->Peer;
284*433d6423SLionel Sambuc     }
285*433d6423SLionel Sambuc 
286*433d6423SLionel Sambuc     /* Delete the node and any attached objects */
287*433d6423SLionel Sambuc 
288*433d6423SLionel Sambuc     AcpiNsDeleteNode (Node);
289*433d6423SLionel Sambuc     return_VOID;
290*433d6423SLionel Sambuc }
291*433d6423SLionel Sambuc 
292*433d6423SLionel Sambuc 
293*433d6423SLionel Sambuc /*******************************************************************************
294*433d6423SLionel Sambuc  *
295*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsInstallNode
296*433d6423SLionel Sambuc  *
297*433d6423SLionel Sambuc  * PARAMETERS:  WalkState       - Current state of the walk
298*433d6423SLionel Sambuc  *              ParentNode      - The parent of the new Node
299*433d6423SLionel Sambuc  *              Node            - The new Node to install
300*433d6423SLionel Sambuc  *              Type            - ACPI object type of the new Node
301*433d6423SLionel Sambuc  *
302*433d6423SLionel Sambuc  * RETURN:      None
303*433d6423SLionel Sambuc  *
304*433d6423SLionel Sambuc  * DESCRIPTION: Initialize a new namespace node and install it amongst
305*433d6423SLionel Sambuc  *              its peers.
306*433d6423SLionel Sambuc  *
307*433d6423SLionel Sambuc  *              Note: Current namespace lookup is linear search. This appears
308*433d6423SLionel Sambuc  *              to be sufficient as namespace searches consume only a small
309*433d6423SLionel Sambuc  *              fraction of the execution time of the ACPI subsystem.
310*433d6423SLionel Sambuc  *
311*433d6423SLionel Sambuc  ******************************************************************************/
312*433d6423SLionel Sambuc 
313*433d6423SLionel Sambuc void
314*433d6423SLionel Sambuc AcpiNsInstallNode (
315*433d6423SLionel Sambuc     ACPI_WALK_STATE         *WalkState,
316*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ParentNode,    /* Parent */
317*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *Node,          /* New Child*/
318*433d6423SLionel Sambuc     ACPI_OBJECT_TYPE        Type)
319*433d6423SLionel Sambuc {
320*433d6423SLionel Sambuc     ACPI_OWNER_ID           OwnerId = 0;
321*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ChildNode;
322*433d6423SLionel Sambuc 
323*433d6423SLionel Sambuc 
324*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (NsInstallNode);
325*433d6423SLionel Sambuc 
326*433d6423SLionel Sambuc 
327*433d6423SLionel Sambuc     if (WalkState)
328*433d6423SLionel Sambuc     {
329*433d6423SLionel Sambuc         /*
330*433d6423SLionel Sambuc          * Get the owner ID from the Walk state. The owner ID is used to
331*433d6423SLionel Sambuc          * track table deletion and deletion of objects created by methods.
332*433d6423SLionel Sambuc          */
333*433d6423SLionel Sambuc         OwnerId = WalkState->OwnerId;
334*433d6423SLionel Sambuc 
335*433d6423SLionel Sambuc         if ((WalkState->MethodDesc) &&
336*433d6423SLionel Sambuc             (ParentNode != WalkState->MethodNode))
337*433d6423SLionel Sambuc         {
338*433d6423SLionel Sambuc             /*
339*433d6423SLionel Sambuc              * A method is creating a new node that is not a child of the
340*433d6423SLionel Sambuc              * method (it is non-local). Mark the executing method as having
341*433d6423SLionel Sambuc              * modified the namespace. This is used for cleanup when the
342*433d6423SLionel Sambuc              * method exits.
343*433d6423SLionel Sambuc              */
344*433d6423SLionel Sambuc             WalkState->MethodDesc->Method.Flags |= AOPOBJ_MODIFIED_NAMESPACE;
345*433d6423SLionel Sambuc         }
346*433d6423SLionel Sambuc     }
347*433d6423SLionel Sambuc 
348*433d6423SLionel Sambuc     /* Link the new entry into the parent and existing children */
349*433d6423SLionel Sambuc 
350*433d6423SLionel Sambuc     Node->Peer = NULL;
351*433d6423SLionel Sambuc     Node->Parent = ParentNode;
352*433d6423SLionel Sambuc     ChildNode = ParentNode->Child;
353*433d6423SLionel Sambuc 
354*433d6423SLionel Sambuc     if (!ChildNode)
355*433d6423SLionel Sambuc     {
356*433d6423SLionel Sambuc         ParentNode->Child = Node;
357*433d6423SLionel Sambuc     }
358*433d6423SLionel Sambuc     else
359*433d6423SLionel Sambuc     {
360*433d6423SLionel Sambuc         /* Add node to the end of the peer list */
361*433d6423SLionel Sambuc 
362*433d6423SLionel Sambuc         while (ChildNode->Peer)
363*433d6423SLionel Sambuc         {
364*433d6423SLionel Sambuc             ChildNode = ChildNode->Peer;
365*433d6423SLionel Sambuc         }
366*433d6423SLionel Sambuc 
367*433d6423SLionel Sambuc         ChildNode->Peer = Node;
368*433d6423SLionel Sambuc     }
369*433d6423SLionel Sambuc 
370*433d6423SLionel Sambuc     /* Init the new entry */
371*433d6423SLionel Sambuc 
372*433d6423SLionel Sambuc     Node->OwnerId = OwnerId;
373*433d6423SLionel Sambuc     Node->Type = (UINT8) Type;
374*433d6423SLionel Sambuc 
375*433d6423SLionel Sambuc     ACPI_DEBUG_PRINT ((ACPI_DB_NAMES,
376*433d6423SLionel Sambuc         "%4.4s (%s) [Node %p Owner %X] added to %4.4s (%s) [Node %p]\n",
377*433d6423SLionel Sambuc         AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type), Node, OwnerId,
378*433d6423SLionel Sambuc         AcpiUtGetNodeName (ParentNode), AcpiUtGetTypeName (ParentNode->Type),
379*433d6423SLionel Sambuc         ParentNode));
380*433d6423SLionel Sambuc 
381*433d6423SLionel Sambuc     return_VOID;
382*433d6423SLionel Sambuc }
383*433d6423SLionel Sambuc 
384*433d6423SLionel Sambuc 
385*433d6423SLionel Sambuc /*******************************************************************************
386*433d6423SLionel Sambuc  *
387*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsDeleteChildren
388*433d6423SLionel Sambuc  *
389*433d6423SLionel Sambuc  * PARAMETERS:  ParentNode      - Delete this objects children
390*433d6423SLionel Sambuc  *
391*433d6423SLionel Sambuc  * RETURN:      None.
392*433d6423SLionel Sambuc  *
393*433d6423SLionel Sambuc  * DESCRIPTION: Delete all children of the parent object. In other words,
394*433d6423SLionel Sambuc  *              deletes a "scope".
395*433d6423SLionel Sambuc  *
396*433d6423SLionel Sambuc  ******************************************************************************/
397*433d6423SLionel Sambuc 
398*433d6423SLionel Sambuc void
399*433d6423SLionel Sambuc AcpiNsDeleteChildren (
400*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ParentNode)
401*433d6423SLionel Sambuc {
402*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *NextNode;
403*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *NodeToDelete;
404*433d6423SLionel Sambuc 
405*433d6423SLionel Sambuc 
406*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE_PTR (NsDeleteChildren, ParentNode);
407*433d6423SLionel Sambuc 
408*433d6423SLionel Sambuc 
409*433d6423SLionel Sambuc     if (!ParentNode)
410*433d6423SLionel Sambuc     {
411*433d6423SLionel Sambuc         return_VOID;
412*433d6423SLionel Sambuc     }
413*433d6423SLionel Sambuc 
414*433d6423SLionel Sambuc     /* Deallocate all children at this level */
415*433d6423SLionel Sambuc 
416*433d6423SLionel Sambuc     NextNode = ParentNode->Child;
417*433d6423SLionel Sambuc     while (NextNode)
418*433d6423SLionel Sambuc     {
419*433d6423SLionel Sambuc         /* Grandchildren should have all been deleted already */
420*433d6423SLionel Sambuc 
421*433d6423SLionel Sambuc         if (NextNode->Child)
422*433d6423SLionel Sambuc         {
423*433d6423SLionel Sambuc             ACPI_ERROR ((AE_INFO, "Found a grandchild! P=%p C=%p",
424*433d6423SLionel Sambuc                 ParentNode, NextNode));
425*433d6423SLionel Sambuc         }
426*433d6423SLionel Sambuc 
427*433d6423SLionel Sambuc         /*
428*433d6423SLionel Sambuc          * Delete this child node and move on to the next child in the list.
429*433d6423SLionel Sambuc          * No need to unlink the node since we are deleting the entire branch.
430*433d6423SLionel Sambuc          */
431*433d6423SLionel Sambuc         NodeToDelete = NextNode;
432*433d6423SLionel Sambuc         NextNode = NextNode->Peer;
433*433d6423SLionel Sambuc         AcpiNsDeleteNode (NodeToDelete);
434*433d6423SLionel Sambuc     };
435*433d6423SLionel Sambuc 
436*433d6423SLionel Sambuc     /* Clear the parent's child pointer */
437*433d6423SLionel Sambuc 
438*433d6423SLionel Sambuc     ParentNode->Child = NULL;
439*433d6423SLionel Sambuc     return_VOID;
440*433d6423SLionel Sambuc }
441*433d6423SLionel Sambuc 
442*433d6423SLionel Sambuc 
443*433d6423SLionel Sambuc /*******************************************************************************
444*433d6423SLionel Sambuc  *
445*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsDeleteNamespaceSubtree
446*433d6423SLionel Sambuc  *
447*433d6423SLionel Sambuc  * PARAMETERS:  ParentNode      - Root of the subtree to be deleted
448*433d6423SLionel Sambuc  *
449*433d6423SLionel Sambuc  * RETURN:      None.
450*433d6423SLionel Sambuc  *
451*433d6423SLionel Sambuc  * DESCRIPTION: Delete a subtree of the namespace.  This includes all objects
452*433d6423SLionel Sambuc  *              stored within the subtree.
453*433d6423SLionel Sambuc  *
454*433d6423SLionel Sambuc  ******************************************************************************/
455*433d6423SLionel Sambuc 
456*433d6423SLionel Sambuc void
457*433d6423SLionel Sambuc AcpiNsDeleteNamespaceSubtree (
458*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ParentNode)
459*433d6423SLionel Sambuc {
460*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ChildNode = NULL;
461*433d6423SLionel Sambuc     UINT32                  Level = 1;
462*433d6423SLionel Sambuc 
463*433d6423SLionel Sambuc 
464*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (NsDeleteNamespaceSubtree);
465*433d6423SLionel Sambuc 
466*433d6423SLionel Sambuc 
467*433d6423SLionel Sambuc     if (!ParentNode)
468*433d6423SLionel Sambuc     {
469*433d6423SLionel Sambuc         return_VOID;
470*433d6423SLionel Sambuc     }
471*433d6423SLionel Sambuc 
472*433d6423SLionel Sambuc     /*
473*433d6423SLionel Sambuc      * Traverse the tree of objects until we bubble back up
474*433d6423SLionel Sambuc      * to where we started.
475*433d6423SLionel Sambuc      */
476*433d6423SLionel Sambuc     while (Level > 0)
477*433d6423SLionel Sambuc     {
478*433d6423SLionel Sambuc         /* Get the next node in this scope (NULL if none) */
479*433d6423SLionel Sambuc 
480*433d6423SLionel Sambuc         ChildNode = AcpiNsGetNextNode (ParentNode, ChildNode);
481*433d6423SLionel Sambuc         if (ChildNode)
482*433d6423SLionel Sambuc         {
483*433d6423SLionel Sambuc             /* Found a child node - detach any attached object */
484*433d6423SLionel Sambuc 
485*433d6423SLionel Sambuc             AcpiNsDetachObject (ChildNode);
486*433d6423SLionel Sambuc 
487*433d6423SLionel Sambuc             /* Check if this node has any children */
488*433d6423SLionel Sambuc 
489*433d6423SLionel Sambuc             if (ChildNode->Child)
490*433d6423SLionel Sambuc             {
491*433d6423SLionel Sambuc                 /*
492*433d6423SLionel Sambuc                  * There is at least one child of this node,
493*433d6423SLionel Sambuc                  * visit the node
494*433d6423SLionel Sambuc                  */
495*433d6423SLionel Sambuc                 Level++;
496*433d6423SLionel Sambuc                 ParentNode = ChildNode;
497*433d6423SLionel Sambuc                 ChildNode  = NULL;
498*433d6423SLionel Sambuc             }
499*433d6423SLionel Sambuc         }
500*433d6423SLionel Sambuc         else
501*433d6423SLionel Sambuc         {
502*433d6423SLionel Sambuc             /*
503*433d6423SLionel Sambuc              * No more children of this parent node.
504*433d6423SLionel Sambuc              * Move up to the grandparent.
505*433d6423SLionel Sambuc              */
506*433d6423SLionel Sambuc             Level--;
507*433d6423SLionel Sambuc 
508*433d6423SLionel Sambuc             /*
509*433d6423SLionel Sambuc              * Now delete all of the children of this parent
510*433d6423SLionel Sambuc              * all at the same time.
511*433d6423SLionel Sambuc              */
512*433d6423SLionel Sambuc             AcpiNsDeleteChildren (ParentNode);
513*433d6423SLionel Sambuc 
514*433d6423SLionel Sambuc             /* New "last child" is this parent node */
515*433d6423SLionel Sambuc 
516*433d6423SLionel Sambuc             ChildNode = ParentNode;
517*433d6423SLionel Sambuc 
518*433d6423SLionel Sambuc             /* Move up the tree to the grandparent */
519*433d6423SLionel Sambuc 
520*433d6423SLionel Sambuc             ParentNode = ParentNode->Parent;
521*433d6423SLionel Sambuc         }
522*433d6423SLionel Sambuc     }
523*433d6423SLionel Sambuc 
524*433d6423SLionel Sambuc     return_VOID;
525*433d6423SLionel Sambuc }
526*433d6423SLionel Sambuc 
527*433d6423SLionel Sambuc 
528*433d6423SLionel Sambuc /*******************************************************************************
529*433d6423SLionel Sambuc  *
530*433d6423SLionel Sambuc  * FUNCTION:    AcpiNsDeleteNamespaceByOwner
531*433d6423SLionel Sambuc  *
532*433d6423SLionel Sambuc  * PARAMETERS:  OwnerId     - All nodes with this owner will be deleted
533*433d6423SLionel Sambuc  *
534*433d6423SLionel Sambuc  * RETURN:      Status
535*433d6423SLionel Sambuc  *
536*433d6423SLionel Sambuc  * DESCRIPTION: Delete entries within the namespace that are owned by a
537*433d6423SLionel Sambuc  *              specific ID.  Used to delete entire ACPI tables.  All
538*433d6423SLionel Sambuc  *              reference counts are updated.
539*433d6423SLionel Sambuc  *
540*433d6423SLionel Sambuc  * MUTEX:       Locks namespace during deletion walk.
541*433d6423SLionel Sambuc  *
542*433d6423SLionel Sambuc  ******************************************************************************/
543*433d6423SLionel Sambuc 
544*433d6423SLionel Sambuc void
545*433d6423SLionel Sambuc AcpiNsDeleteNamespaceByOwner (
546*433d6423SLionel Sambuc     ACPI_OWNER_ID            OwnerId)
547*433d6423SLionel Sambuc {
548*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ChildNode;
549*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *DeletionNode;
550*433d6423SLionel Sambuc     ACPI_NAMESPACE_NODE     *ParentNode;
551*433d6423SLionel Sambuc     UINT32                  Level;
552*433d6423SLionel Sambuc     ACPI_STATUS             Status;
553*433d6423SLionel Sambuc 
554*433d6423SLionel Sambuc 
555*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE_U32 (NsDeleteNamespaceByOwner, OwnerId);
556*433d6423SLionel Sambuc 
557*433d6423SLionel Sambuc 
558*433d6423SLionel Sambuc     if (OwnerId == 0)
559*433d6423SLionel Sambuc     {
560*433d6423SLionel Sambuc         return_VOID;
561*433d6423SLionel Sambuc     }
562*433d6423SLionel Sambuc 
563*433d6423SLionel Sambuc     /* Lock namespace for possible update */
564*433d6423SLionel Sambuc 
565*433d6423SLionel Sambuc     Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE);
566*433d6423SLionel Sambuc     if (ACPI_FAILURE (Status))
567*433d6423SLionel Sambuc     {
568*433d6423SLionel Sambuc         return_VOID;
569*433d6423SLionel Sambuc     }
570*433d6423SLionel Sambuc 
571*433d6423SLionel Sambuc     DeletionNode = NULL;
572*433d6423SLionel Sambuc     ParentNode = AcpiGbl_RootNode;
573*433d6423SLionel Sambuc     ChildNode = NULL;
574*433d6423SLionel Sambuc     Level = 1;
575*433d6423SLionel Sambuc 
576*433d6423SLionel Sambuc     /*
577*433d6423SLionel Sambuc      * Traverse the tree of nodes until we bubble back up
578*433d6423SLionel Sambuc      * to where we started.
579*433d6423SLionel Sambuc      */
580*433d6423SLionel Sambuc     while (Level > 0)
581*433d6423SLionel Sambuc     {
582*433d6423SLionel Sambuc         /*
583*433d6423SLionel Sambuc          * Get the next child of this parent node. When ChildNode is NULL,
584*433d6423SLionel Sambuc          * the first child of the parent is returned
585*433d6423SLionel Sambuc          */
586*433d6423SLionel Sambuc         ChildNode = AcpiNsGetNextNode (ParentNode, ChildNode);
587*433d6423SLionel Sambuc 
588*433d6423SLionel Sambuc         if (DeletionNode)
589*433d6423SLionel Sambuc         {
590*433d6423SLionel Sambuc             AcpiNsDeleteChildren (DeletionNode);
591*433d6423SLionel Sambuc             AcpiNsRemoveNode (DeletionNode);
592*433d6423SLionel Sambuc             DeletionNode = NULL;
593*433d6423SLionel Sambuc         }
594*433d6423SLionel Sambuc 
595*433d6423SLionel Sambuc         if (ChildNode)
596*433d6423SLionel Sambuc         {
597*433d6423SLionel Sambuc             if (ChildNode->OwnerId == OwnerId)
598*433d6423SLionel Sambuc             {
599*433d6423SLionel Sambuc                 /* Found a matching child node - detach any attached object */
600*433d6423SLionel Sambuc 
601*433d6423SLionel Sambuc                 AcpiNsDetachObject (ChildNode);
602*433d6423SLionel Sambuc             }
603*433d6423SLionel Sambuc 
604*433d6423SLionel Sambuc             /* Check if this node has any children */
605*433d6423SLionel Sambuc 
606*433d6423SLionel Sambuc             if (ChildNode->Child)
607*433d6423SLionel Sambuc             {
608*433d6423SLionel Sambuc                 /*
609*433d6423SLionel Sambuc                  * There is at least one child of this node,
610*433d6423SLionel Sambuc                  * visit the node
611*433d6423SLionel Sambuc                  */
612*433d6423SLionel Sambuc                 Level++;
613*433d6423SLionel Sambuc                 ParentNode = ChildNode;
614*433d6423SLionel Sambuc                 ChildNode  = NULL;
615*433d6423SLionel Sambuc             }
616*433d6423SLionel Sambuc             else if (ChildNode->OwnerId == OwnerId)
617*433d6423SLionel Sambuc             {
618*433d6423SLionel Sambuc                 DeletionNode = ChildNode;
619*433d6423SLionel Sambuc             }
620*433d6423SLionel Sambuc         }
621*433d6423SLionel Sambuc         else
622*433d6423SLionel Sambuc         {
623*433d6423SLionel Sambuc             /*
624*433d6423SLionel Sambuc              * No more children of this parent node.
625*433d6423SLionel Sambuc              * Move up to the grandparent.
626*433d6423SLionel Sambuc              */
627*433d6423SLionel Sambuc             Level--;
628*433d6423SLionel Sambuc             if (Level != 0)
629*433d6423SLionel Sambuc             {
630*433d6423SLionel Sambuc                 if (ParentNode->OwnerId == OwnerId)
631*433d6423SLionel Sambuc                 {
632*433d6423SLionel Sambuc                     DeletionNode = ParentNode;
633*433d6423SLionel Sambuc                 }
634*433d6423SLionel Sambuc             }
635*433d6423SLionel Sambuc 
636*433d6423SLionel Sambuc             /* New "last child" is this parent node */
637*433d6423SLionel Sambuc 
638*433d6423SLionel Sambuc             ChildNode = ParentNode;
639*433d6423SLionel Sambuc 
640*433d6423SLionel Sambuc             /* Move up the tree to the grandparent */
641*433d6423SLionel Sambuc 
642*433d6423SLionel Sambuc             ParentNode = ParentNode->Parent;
643*433d6423SLionel Sambuc         }
644*433d6423SLionel Sambuc     }
645*433d6423SLionel Sambuc 
646*433d6423SLionel Sambuc     (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
647*433d6423SLionel Sambuc     return_VOID;
648*433d6423SLionel Sambuc }
649*433d6423SLionel Sambuc 
650*433d6423SLionel Sambuc 
651