1 /******************************************************************************
3 * Module Name: dsinit - Object initialization namespace walk
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
52 #define _COMPONENT ACPI_DISPATCHER
53 ACPI_MODULE_NAME ("dsinit")
55 /* Local prototypes */
59 ACPI_HANDLE ObjHandle
,
65 /*******************************************************************************
67 * FUNCTION: AcpiDsInitOneObject
69 * PARAMETERS: ObjHandle - Node for the object
70 * Level - Current nesting level
71 * Context - Points to a init info struct
72 * ReturnValue - Not used
76 * DESCRIPTION: Callback from AcpiWalkNamespace. Invoked for every object
77 * within the namespace.
79 * Currently, the only objects that require initialization are:
81 * 2) Operation Regions
83 ******************************************************************************/
87 ACPI_HANDLE ObjHandle
,
92 ACPI_INIT_WALK_INFO
*Info
= (ACPI_INIT_WALK_INFO
*) Context
;
93 ACPI_NAMESPACE_NODE
*Node
= (ACPI_NAMESPACE_NODE
*) ObjHandle
;
94 ACPI_OBJECT_TYPE Type
;
98 ACPI_FUNCTION_ENTRY ();
102 * We are only interested in NS nodes owned by the table that
105 if (Node
->OwnerId
!= Info
->OwnerId
)
112 /* And even then, we are only interested in a few object types */
114 Type
= AcpiNsGetType (ObjHandle
);
118 case ACPI_TYPE_REGION
:
120 Status
= AcpiDsInitializeRegion (ObjHandle
);
121 if (ACPI_FAILURE (Status
))
123 ACPI_EXCEPTION ((AE_INFO
, Status
,
124 "During Region initialization %p [%4.4s]",
125 ObjHandle
, AcpiUtGetNodeName (ObjHandle
)));
128 Info
->OpRegionCount
++;
131 case ACPI_TYPE_METHOD
:
136 case ACPI_TYPE_DEVICE
:
147 * We ignore errors from above, and always return OK, since
148 * we don't want to abort the walk on a single error.
154 /*******************************************************************************
156 * FUNCTION: AcpiDsInitializeObjects
158 * PARAMETERS: TableDesc - Descriptor for parent ACPI table
159 * StartNode - Root of subtree to be initialized.
163 * DESCRIPTION: Walk the namespace starting at "StartNode" and perform any
164 * necessary initialization on the objects found therein
166 ******************************************************************************/
169 AcpiDsInitializeObjects (
171 ACPI_NAMESPACE_NODE
*StartNode
)
174 ACPI_INIT_WALK_INFO Info
;
175 ACPI_TABLE_HEADER
*Table
;
176 ACPI_OWNER_ID OwnerId
;
179 ACPI_FUNCTION_TRACE (DsInitializeObjects
);
182 Status
= AcpiTbGetOwnerId (TableIndex
, &OwnerId
);
183 if (ACPI_FAILURE (Status
))
185 return_ACPI_STATUS (Status
);
188 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
189 "**** Starting initialization of namespace objects ****\n"));
190 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT
, "Parsing all Control Methods:"));
192 /* Set all init info to zero */
194 ACPI_MEMSET (&Info
, 0, sizeof (ACPI_INIT_WALK_INFO
));
196 Info
.OwnerId
= OwnerId
;
197 Info
.TableIndex
= TableIndex
;
199 /* Walk entire namespace from the supplied root */
201 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
202 if (ACPI_FAILURE (Status
))
204 return_ACPI_STATUS (Status
);
208 * We don't use AcpiWalkNamespace since we do not want to acquire
209 * the namespace reader lock.
211 Status
= AcpiNsWalkNamespace (ACPI_TYPE_ANY
, StartNode
, ACPI_UINT32_MAX
,
212 ACPI_NS_WALK_UNLOCK
, AcpiDsInitOneObject
, NULL
, &Info
, NULL
);
213 if (ACPI_FAILURE (Status
))
215 ACPI_EXCEPTION ((AE_INFO
, Status
, "During WalkNamespace"));
217 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
219 Status
= AcpiGetTableByIndex (TableIndex
, &Table
);
220 if (ACPI_FAILURE (Status
))
222 return_ACPI_STATUS (Status
);
225 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT
,
226 "\nTable [%4.4s](id %4.4X) - %u Objects with %u Devices %u Methods %u Regions\n",
227 Table
->Signature
, OwnerId
, Info
.ObjectCount
,
228 Info
.DeviceCount
, Info
.MethodCount
, Info
.OpRegionCount
));
230 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
231 "%u Methods, %u Regions\n", Info
.MethodCount
, Info
.OpRegionCount
));
233 return_ACPI_STATUS (AE_OK
);