1 /******************************************************************************
3 * Module Name: dswload - Dispatcher first pass namespace load callbacks
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.
54 #ifdef ACPI_ASL_COMPILER
58 #define _COMPONENT ACPI_DISPATCHER
59 ACPI_MODULE_NAME ("dswload")
62 /*******************************************************************************
64 * FUNCTION: AcpiDsInitCallbacks
66 * PARAMETERS: WalkState - Current state of the parse tree walk
67 * PassNumber - 1, 2, or 3
71 * DESCRIPTION: Init walk state callbacks
73 ******************************************************************************/
77 ACPI_WALK_STATE
*WalkState
,
85 WalkState
->ParseFlags
= ACPI_PARSE_LOAD_PASS1
|
86 ACPI_PARSE_DELETE_TREE
;
87 WalkState
->DescendingCallback
= AcpiDsLoad1BeginOp
;
88 WalkState
->AscendingCallback
= AcpiDsLoad1EndOp
;
93 WalkState
->ParseFlags
= ACPI_PARSE_LOAD_PASS1
|
94 ACPI_PARSE_DELETE_TREE
;
95 WalkState
->DescendingCallback
= AcpiDsLoad2BeginOp
;
96 WalkState
->AscendingCallback
= AcpiDsLoad2EndOp
;
101 #ifndef ACPI_NO_METHOD_EXECUTION
102 WalkState
->ParseFlags
|= ACPI_PARSE_EXECUTE
|
103 ACPI_PARSE_DELETE_TREE
;
104 WalkState
->DescendingCallback
= AcpiDsExecBeginOp
;
105 WalkState
->AscendingCallback
= AcpiDsExecEndOp
;
111 return (AE_BAD_PARAMETER
);
118 /*******************************************************************************
120 * FUNCTION: AcpiDsLoad1BeginOp
122 * PARAMETERS: WalkState - Current state of the parse tree walk
123 * OutOp - Where to return op if a new one is created
127 * DESCRIPTION: Descending callback used during the loading of ACPI tables.
129 ******************************************************************************/
133 ACPI_WALK_STATE
*WalkState
,
134 ACPI_PARSE_OBJECT
**OutOp
)
136 ACPI_PARSE_OBJECT
*Op
;
137 ACPI_NAMESPACE_NODE
*Node
;
139 ACPI_OBJECT_TYPE ObjectType
;
144 ACPI_FUNCTION_TRACE (DsLoad1BeginOp
);
148 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
, "Op=%p State=%p\n", Op
, WalkState
));
150 /* We are only interested in opcodes that have an associated name */
154 if (!(WalkState
->OpInfo
->Flags
& AML_NAMED
))
157 return_ACPI_STATUS (AE_OK
);
160 /* Check if this object has already been installed in the namespace */
165 return_ACPI_STATUS (AE_OK
);
169 Path
= AcpiPsGetNextNamestring (&WalkState
->ParserState
);
171 /* Map the raw opcode into an internal object type */
173 ObjectType
= WalkState
->OpInfo
->ObjectType
;
175 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
176 "State=%p Op=%p [%s]\n", WalkState
, Op
, AcpiUtGetTypeName (ObjectType
)));
178 switch (WalkState
->Opcode
)
182 * The target name of the Scope() operator must exist at this point so
183 * that we can actually open the scope to enter new names underneath it.
184 * Allow search-to-root for single namesegs.
186 Status
= AcpiNsLookup (WalkState
->ScopeInfo
, Path
, ObjectType
,
187 ACPI_IMODE_EXECUTE
, ACPI_NS_SEARCH_PARENT
, WalkState
, &(Node
));
188 #ifdef ACPI_ASL_COMPILER
189 if (Status
== AE_NOT_FOUND
)
193 * Target of Scope() not found. Generate an External for it, and
194 * insert the name into the namespace.
196 AcpiDmAddToExternalList (Op
, Path
, ACPI_TYPE_DEVICE
, 0);
197 Status
= AcpiNsLookup (WalkState
->ScopeInfo
, Path
, ObjectType
,
198 ACPI_IMODE_LOAD_PASS1
, ACPI_NS_SEARCH_PARENT
,
202 if (ACPI_FAILURE (Status
))
204 ACPI_ERROR_NAMESPACE (Path
, Status
);
205 return_ACPI_STATUS (Status
);
209 * Check to make sure that the target is
210 * one of the opcodes that actually opens a scope
215 case ACPI_TYPE_LOCAL_SCOPE
: /* Scope */
216 case ACPI_TYPE_DEVICE
:
217 case ACPI_TYPE_POWER
:
218 case ACPI_TYPE_PROCESSOR
:
219 case ACPI_TYPE_THERMAL
:
221 /* These are acceptable types */
224 case ACPI_TYPE_INTEGER
:
225 case ACPI_TYPE_STRING
:
226 case ACPI_TYPE_BUFFER
:
228 * These types we will allow, but we will change the type.
229 * This enables some existing code of the form:
232 * Scope (DEB) { ... }
234 * Note: silently change the type here. On the second pass,
235 * we will report a warning
237 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
238 "Type override - [%4.4s] had invalid type (%s) "
239 "for Scope operator, changed to type ANY\n",
240 AcpiUtGetNodeName (Node
), AcpiUtGetTypeName (Node
->Type
)));
242 Node
->Type
= ACPI_TYPE_ANY
;
243 WalkState
->ScopeInfo
->Common
.Value
= ACPI_TYPE_ANY
;
246 case ACPI_TYPE_METHOD
:
248 * Allow scope change to root during execution of module-level
249 * code. Root is typed METHOD during this time.
251 if ((Node
== AcpiGbl_RootNode
) &&
252 (WalkState
->ParseFlags
& ACPI_PARSE_MODULE_LEVEL
))
257 /*lint -fallthrough */
261 /* All other types are an error */
263 ACPI_ERROR ((AE_INFO
,
264 "Invalid type (%s) for target of "
265 "Scope operator [%4.4s] (Cannot override)",
266 AcpiUtGetTypeName (Node
->Type
), AcpiUtGetNodeName (Node
)));
268 return_ACPI_STATUS (AE_AML_OPERAND_TYPE
);
274 * For all other named opcodes, we will enter the name into
277 * Setup the search flags.
278 * Since we are entering a name into the namespace, we do not want to
279 * enable the search-to-root upsearch.
281 * There are only two conditions where it is acceptable that the name
283 * 1) the Scope() operator can reopen a scoping object that was
284 * previously defined (Scope, Method, Device, etc.)
285 * 2) Whenever we are parsing a deferred opcode (OpRegion, Buffer,
286 * BufferField, or Package), the name of the object is already
289 if (WalkState
->DeferredNode
)
291 /* This name is already in the namespace, get the node */
293 Node
= WalkState
->DeferredNode
;
299 * If we are executing a method, do not create any namespace objects
300 * during the load phase, only during execution.
302 if (WalkState
->MethodNode
)
309 Flags
= ACPI_NS_NO_UPSEARCH
;
310 if ((WalkState
->Opcode
!= AML_SCOPE_OP
) &&
311 (!(WalkState
->ParseFlags
& ACPI_PARSE_DEFERRED_OP
)))
313 Flags
|= ACPI_NS_ERROR_IF_FOUND
;
314 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
, "[%s] Cannot already exist\n",
315 AcpiUtGetTypeName (ObjectType
)));
319 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
320 "[%s] Both Find or Create allowed\n",
321 AcpiUtGetTypeName (ObjectType
)));
325 * Enter the named type into the internal namespace. We enter the name
326 * as we go downward in the parse tree. Any necessary subobjects that
327 * involve arguments to the opcode must be created as we go back up the
330 Status
= AcpiNsLookup (WalkState
->ScopeInfo
, Path
, ObjectType
,
331 ACPI_IMODE_LOAD_PASS1
, Flags
, WalkState
, &Node
);
332 if (ACPI_FAILURE (Status
))
334 if (Status
== AE_ALREADY_EXISTS
)
336 /* The name already exists in this scope */
338 if (Node
->Flags
& ANOBJ_IS_EXTERNAL
)
341 * Allow one create on an object or segment that was
342 * previously declared External
344 Node
->Flags
&= ~ANOBJ_IS_EXTERNAL
;
345 Node
->Type
= (UINT8
) ObjectType
;
347 /* Just retyped a node, probably will need to open a scope */
349 if (AcpiNsOpensScope (ObjectType
))
351 Status
= AcpiDsScopeStackPush (Node
, ObjectType
, WalkState
);
352 if (ACPI_FAILURE (Status
))
354 return_ACPI_STATUS (Status
);
362 if (ACPI_FAILURE (Status
))
364 ACPI_ERROR_NAMESPACE (Path
, Status
);
365 return_ACPI_STATUS (Status
);
375 /* Create a new op */
377 Op
= AcpiPsAllocOp (WalkState
->Opcode
);
380 return_ACPI_STATUS (AE_NO_MEMORY
);
384 /* Initialize the op */
386 #if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
387 Op
->Named
.Path
= ACPI_CAST_PTR (UINT8
, Path
);
393 * Put the Node in the "op" object that the parser uses, so we
394 * can get it again quickly when this scope is closed
396 Op
->Common
.Node
= Node
;
397 Op
->Named
.Name
= Node
->Name
.Integer
;
400 AcpiPsAppendArg (AcpiPsGetParentScope (&WalkState
->ParserState
), Op
);
402 return_ACPI_STATUS (Status
);
406 /*******************************************************************************
408 * FUNCTION: AcpiDsLoad1EndOp
410 * PARAMETERS: WalkState - Current state of the parse tree walk
414 * DESCRIPTION: Ascending callback used during the loading of the namespace,
415 * both control methods and everything else.
417 ******************************************************************************/
421 ACPI_WALK_STATE
*WalkState
)
423 ACPI_PARSE_OBJECT
*Op
;
424 ACPI_OBJECT_TYPE ObjectType
;
425 ACPI_STATUS Status
= AE_OK
;
428 ACPI_FUNCTION_TRACE (DsLoad1EndOp
);
432 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
, "Op=%p State=%p\n", Op
, WalkState
));
434 /* We are only interested in opcodes that have an associated name */
436 if (!(WalkState
->OpInfo
->Flags
& (AML_NAMED
| AML_FIELD
)))
438 return_ACPI_STATUS (AE_OK
);
441 /* Get the object type to determine if we should pop the scope */
443 ObjectType
= WalkState
->OpInfo
->ObjectType
;
445 #ifndef ACPI_NO_METHOD_EXECUTION
446 if (WalkState
->OpInfo
->Flags
& AML_FIELD
)
449 * If we are executing a method, do not create any namespace objects
450 * during the load phase, only during execution.
452 if (!WalkState
->MethodNode
)
454 if (WalkState
->Opcode
== AML_FIELD_OP
||
455 WalkState
->Opcode
== AML_BANK_FIELD_OP
||
456 WalkState
->Opcode
== AML_INDEX_FIELD_OP
)
458 Status
= AcpiDsInitFieldObjects (Op
, WalkState
);
461 return_ACPI_STATUS (Status
);
465 * If we are executing a method, do not create any namespace objects
466 * during the load phase, only during execution.
468 if (!WalkState
->MethodNode
)
470 if (Op
->Common
.AmlOpcode
== AML_REGION_OP
)
472 Status
= AcpiExCreateRegion (Op
->Named
.Data
, Op
->Named
.Length
,
473 (ACPI_ADR_SPACE_TYPE
) ((Op
->Common
.Value
.Arg
)->Common
.Value
.Integer
),
475 if (ACPI_FAILURE (Status
))
477 return_ACPI_STATUS (Status
);
480 else if (Op
->Common
.AmlOpcode
== AML_DATA_REGION_OP
)
482 Status
= AcpiExCreateRegion (Op
->Named
.Data
, Op
->Named
.Length
,
483 ACPI_ADR_SPACE_DATA_TABLE
, WalkState
);
484 if (ACPI_FAILURE (Status
))
486 return_ACPI_STATUS (Status
);
492 if (Op
->Common
.AmlOpcode
== AML_NAME_OP
)
494 /* For Name opcode, get the object type from the argument */
496 if (Op
->Common
.Value
.Arg
)
498 ObjectType
= (AcpiPsGetOpcodeInfo (
499 (Op
->Common
.Value
.Arg
)->Common
.AmlOpcode
))->ObjectType
;
501 /* Set node type if we have a namespace node */
505 Op
->Common
.Node
->Type
= (UINT8
) ObjectType
;
511 * If we are executing a method, do not create any namespace objects
512 * during the load phase, only during execution.
514 if (!WalkState
->MethodNode
)
516 if (Op
->Common
.AmlOpcode
== AML_METHOD_OP
)
519 * MethodOp PkgLength NameString MethodFlags TermList
521 * Note: We must create the method node/object pair as soon as we
522 * see the method declaration. This allows later pass1 parsing
523 * of invocations of the method (need to know the number of
526 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
527 "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
528 WalkState
, Op
, Op
->Named
.Node
));
530 if (!AcpiNsGetAttachedObject (Op
->Named
.Node
))
532 WalkState
->Operands
[0] = ACPI_CAST_PTR (void, Op
->Named
.Node
);
533 WalkState
->NumOperands
= 1;
535 Status
= AcpiDsCreateOperands (WalkState
, Op
->Common
.Value
.Arg
);
536 if (ACPI_SUCCESS (Status
))
538 Status
= AcpiExCreateMethod (Op
->Named
.Data
,
539 Op
->Named
.Length
, WalkState
);
542 WalkState
->Operands
[0] = NULL
;
543 WalkState
->NumOperands
= 0;
545 if (ACPI_FAILURE (Status
))
547 return_ACPI_STATUS (Status
);
553 /* Pop the scope stack (only if loading a table) */
555 if (!WalkState
->MethodNode
&&
556 AcpiNsOpensScope (ObjectType
))
558 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
, "(%s): Popping scope for Op %p\n",
559 AcpiUtGetTypeName (ObjectType
), Op
));
561 Status
= AcpiDsScopeStackPop (WalkState
);
564 return_ACPI_STATUS (Status
);