1 /******************************************************************************
3 * Module Name: excreate - Named object creation
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, 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.
51 #define _COMPONENT ACPI_EXECUTER
52 ACPI_MODULE_NAME ("excreate")
55 #ifndef ACPI_NO_METHOD_EXECUTION
56 /*******************************************************************************
58 * FUNCTION: AcpiExCreateAlias
60 * PARAMETERS: WalkState - Current state, contains operands
64 * DESCRIPTION: Create a new named alias
66 ******************************************************************************/
70 ACPI_WALK_STATE
*WalkState
)
72 ACPI_NAMESPACE_NODE
*TargetNode
;
73 ACPI_NAMESPACE_NODE
*AliasNode
;
74 ACPI_STATUS Status
= AE_OK
;
77 ACPI_FUNCTION_TRACE (ExCreateAlias
);
80 /* Get the source/alias operands (both namespace nodes) */
82 AliasNode
= (ACPI_NAMESPACE_NODE
*) WalkState
->Operands
[0];
83 TargetNode
= (ACPI_NAMESPACE_NODE
*) WalkState
->Operands
[1];
85 if ((TargetNode
->Type
== ACPI_TYPE_LOCAL_ALIAS
) ||
86 (TargetNode
->Type
== ACPI_TYPE_LOCAL_METHOD_ALIAS
))
89 * Dereference an existing alias so that we don't create a chain
90 * of aliases. With this code, we guarantee that an alias is
91 * always exactly one level of indirection away from the
92 * actual aliased name.
94 TargetNode
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
, TargetNode
->Object
);
98 * For objects that can never change (i.e., the NS node will
99 * permanently point to the same object), we can simply attach
100 * the object to the new NS node. For other objects (such as
101 * Integers, buffers, etc.), we have to point the Alias node
102 * to the original Node.
104 switch (TargetNode
->Type
)
107 /* For these types, the sub-object can change dynamically via a Store */
109 case ACPI_TYPE_INTEGER
:
110 case ACPI_TYPE_STRING
:
111 case ACPI_TYPE_BUFFER
:
112 case ACPI_TYPE_PACKAGE
:
113 case ACPI_TYPE_BUFFER_FIELD
:
115 * These types open a new scope, so we need the NS node in order to access
118 case ACPI_TYPE_DEVICE
:
119 case ACPI_TYPE_POWER
:
120 case ACPI_TYPE_PROCESSOR
:
121 case ACPI_TYPE_THERMAL
:
122 case ACPI_TYPE_LOCAL_SCOPE
:
124 * The new alias has the type ALIAS and points to the original
125 * NS node, not the object itself.
127 AliasNode
->Type
= ACPI_TYPE_LOCAL_ALIAS
;
128 AliasNode
->Object
= ACPI_CAST_PTR (ACPI_OPERAND_OBJECT
, TargetNode
);
131 case ACPI_TYPE_METHOD
:
133 * Control method aliases need to be differentiated
135 AliasNode
->Type
= ACPI_TYPE_LOCAL_METHOD_ALIAS
;
136 AliasNode
->Object
= ACPI_CAST_PTR (ACPI_OPERAND_OBJECT
, TargetNode
);
141 /* Attach the original source object to the new Alias Node */
144 * The new alias assumes the type of the target, and it points
145 * to the same object. The reference count of the object has an
146 * additional reference to prevent deletion out from under either the
147 * target node or the alias Node
149 Status
= AcpiNsAttachObject (AliasNode
,
150 AcpiNsGetAttachedObject (TargetNode
), TargetNode
->Type
);
154 /* Since both operands are Nodes, we don't need to delete them */
156 return_ACPI_STATUS (Status
);
160 /*******************************************************************************
162 * FUNCTION: AcpiExCreateEvent
164 * PARAMETERS: WalkState - Current state
168 * DESCRIPTION: Create a new event object
170 ******************************************************************************/
174 ACPI_WALK_STATE
*WalkState
)
177 ACPI_OPERAND_OBJECT
*ObjDesc
;
180 ACPI_FUNCTION_TRACE (ExCreateEvent
);
183 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_EVENT
);
186 Status
= AE_NO_MEMORY
;
191 * Create the actual OS semaphore, with zero initial units -- meaning
192 * that the event is created in an unsignalled state
194 Status
= AcpiOsCreateSemaphore (ACPI_NO_UNIT_LIMIT
, 0,
195 &ObjDesc
->Event
.OsSemaphore
);
196 if (ACPI_FAILURE (Status
))
201 /* Attach object to the Node */
203 Status
= AcpiNsAttachObject (
204 (ACPI_NAMESPACE_NODE
*) WalkState
->Operands
[0],
205 ObjDesc
, ACPI_TYPE_EVENT
);
209 * Remove local reference to the object (on error, will cause deletion
210 * of both object and semaphore if present.)
212 AcpiUtRemoveReference (ObjDesc
);
213 return_ACPI_STATUS (Status
);
217 /*******************************************************************************
219 * FUNCTION: AcpiExCreateMutex
221 * PARAMETERS: WalkState - Current state
225 * DESCRIPTION: Create a new mutex object
227 * Mutex (Name[0], SyncLevel[1])
229 ******************************************************************************/
233 ACPI_WALK_STATE
*WalkState
)
235 ACPI_STATUS Status
= AE_OK
;
236 ACPI_OPERAND_OBJECT
*ObjDesc
;
239 ACPI_FUNCTION_TRACE_PTR (ExCreateMutex
, ACPI_WALK_OPERANDS
);
242 /* Create the new mutex object */
244 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_MUTEX
);
247 Status
= AE_NO_MEMORY
;
251 /* Create the actual OS Mutex */
253 Status
= AcpiOsCreateMutex (&ObjDesc
->Mutex
.OsMutex
);
254 if (ACPI_FAILURE (Status
))
259 /* Init object and attach to NS node */
261 ObjDesc
->Mutex
.SyncLevel
= (UINT8
) WalkState
->Operands
[1]->Integer
.Value
;
262 ObjDesc
->Mutex
.Node
= (ACPI_NAMESPACE_NODE
*) WalkState
->Operands
[0];
264 Status
= AcpiNsAttachObject (
265 ObjDesc
->Mutex
.Node
, ObjDesc
, ACPI_TYPE_MUTEX
);
270 * Remove local reference to the object (on error, will cause deletion
271 * of both object and semaphore if present.)
273 AcpiUtRemoveReference (ObjDesc
);
274 return_ACPI_STATUS (Status
);
278 /*******************************************************************************
280 * FUNCTION: AcpiExCreateRegion
282 * PARAMETERS: AmlStart - Pointer to the region declaration AML
283 * AmlLength - Max length of the declaration AML
284 * SpaceId - Address space ID for the region
285 * WalkState - Current state
289 * DESCRIPTION: Create a new operation region object
291 ******************************************************************************/
298 ACPI_WALK_STATE
*WalkState
)
301 ACPI_OPERAND_OBJECT
*ObjDesc
;
302 ACPI_NAMESPACE_NODE
*Node
;
303 ACPI_OPERAND_OBJECT
*RegionObj2
;
306 ACPI_FUNCTION_TRACE (ExCreateRegion
);
309 /* Get the Namespace Node */
311 Node
= WalkState
->Op
->Common
.Node
;
314 * If the region object is already attached to this node,
317 if (AcpiNsGetAttachedObject (Node
))
319 return_ACPI_STATUS (AE_OK
);
323 * Space ID must be one of the predefined IDs, or in the user-defined
326 if (!AcpiIsValidSpaceId (SpaceId
))
329 * Print an error message, but continue. We don't want to abort
330 * a table load for this exception. Instead, if the region is
331 * actually used at runtime, abort the executing method.
333 ACPI_ERROR ((AE_INFO
,
334 "Invalid/unknown Address Space ID: 0x%2.2X", SpaceId
));
337 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD
, "Region Type - %s (0x%X)\n",
338 AcpiUtGetRegionName (SpaceId
), SpaceId
));
340 /* Create the region descriptor */
342 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_REGION
);
345 Status
= AE_NO_MEMORY
;
350 * Remember location in AML stream of address & length
351 * operands since they need to be evaluated at run time.
353 RegionObj2
= AcpiNsGetSecondaryObject (ObjDesc
);
354 RegionObj2
->Extra
.AmlStart
= AmlStart
;
355 RegionObj2
->Extra
.AmlLength
= AmlLength
;
356 RegionObj2
->Extra
.Method_REG
= NULL
;
357 if (WalkState
->ScopeInfo
)
359 RegionObj2
->Extra
.ScopeNode
= WalkState
->ScopeInfo
->Scope
.Node
;
363 RegionObj2
->Extra
.ScopeNode
= Node
;
366 /* Init the region from the operands */
368 ObjDesc
->Region
.SpaceId
= SpaceId
;
369 ObjDesc
->Region
.Address
= 0;
370 ObjDesc
->Region
.Length
= 0;
371 ObjDesc
->Region
.Node
= Node
;
372 ObjDesc
->Region
.Handler
= NULL
;
373 ObjDesc
->Common
.Flags
&=
374 ~(AOPOBJ_SETUP_COMPLETE
| AOPOBJ_REG_CONNECTED
|
375 AOPOBJ_OBJECT_INITIALIZED
);
377 /* Install the new region object in the parent Node */
379 Status
= AcpiNsAttachObject (Node
, ObjDesc
, ACPI_TYPE_REGION
);
384 /* Remove local reference to the object */
386 AcpiUtRemoveReference (ObjDesc
);
387 return_ACPI_STATUS (Status
);
391 /*******************************************************************************
393 * FUNCTION: AcpiExCreateProcessor
395 * PARAMETERS: WalkState - Current state
399 * DESCRIPTION: Create a new processor object and populate the fields
401 * Processor (Name[0], CpuID[1], PblockAddr[2], PblockLength[3])
403 ******************************************************************************/
406 AcpiExCreateProcessor (
407 ACPI_WALK_STATE
*WalkState
)
409 ACPI_OPERAND_OBJECT
**Operand
= &WalkState
->Operands
[0];
410 ACPI_OPERAND_OBJECT
*ObjDesc
;
414 ACPI_FUNCTION_TRACE_PTR (ExCreateProcessor
, WalkState
);
417 /* Create the processor object */
419 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_PROCESSOR
);
422 return_ACPI_STATUS (AE_NO_MEMORY
);
425 /* Initialize the processor object from the operands */
427 ObjDesc
->Processor
.ProcId
= (UINT8
) Operand
[1]->Integer
.Value
;
428 ObjDesc
->Processor
.Length
= (UINT8
) Operand
[3]->Integer
.Value
;
429 ObjDesc
->Processor
.Address
= (ACPI_IO_ADDRESS
) Operand
[2]->Integer
.Value
;
431 /* Install the processor object in the parent Node */
433 Status
= AcpiNsAttachObject ((ACPI_NAMESPACE_NODE
*) Operand
[0],
434 ObjDesc
, ACPI_TYPE_PROCESSOR
);
436 /* Remove local reference to the object */
438 AcpiUtRemoveReference (ObjDesc
);
439 return_ACPI_STATUS (Status
);
443 /*******************************************************************************
445 * FUNCTION: AcpiExCreatePowerResource
447 * PARAMETERS: WalkState - Current state
451 * DESCRIPTION: Create a new PowerResource object and populate the fields
453 * PowerResource (Name[0], SystemLevel[1], ResourceOrder[2])
455 ******************************************************************************/
458 AcpiExCreatePowerResource (
459 ACPI_WALK_STATE
*WalkState
)
461 ACPI_OPERAND_OBJECT
**Operand
= &WalkState
->Operands
[0];
463 ACPI_OPERAND_OBJECT
*ObjDesc
;
466 ACPI_FUNCTION_TRACE_PTR (ExCreatePowerResource
, WalkState
);
469 /* Create the power resource object */
471 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_POWER
);
474 return_ACPI_STATUS (AE_NO_MEMORY
);
477 /* Initialize the power object from the operands */
479 ObjDesc
->PowerResource
.SystemLevel
= (UINT8
) Operand
[1]->Integer
.Value
;
480 ObjDesc
->PowerResource
.ResourceOrder
= (UINT16
) Operand
[2]->Integer
.Value
;
482 /* Install the power resource object in the parent Node */
484 Status
= AcpiNsAttachObject ((ACPI_NAMESPACE_NODE
*) Operand
[0],
485 ObjDesc
, ACPI_TYPE_POWER
);
487 /* Remove local reference to the object */
489 AcpiUtRemoveReference (ObjDesc
);
490 return_ACPI_STATUS (Status
);
495 /*******************************************************************************
497 * FUNCTION: AcpiExCreateMethod
499 * PARAMETERS: AmlStart - First byte of the method's AML
500 * AmlLength - AML byte count for this method
501 * WalkState - Current state
505 * DESCRIPTION: Create a new method object
507 ******************************************************************************/
513 ACPI_WALK_STATE
*WalkState
)
515 ACPI_OPERAND_OBJECT
**Operand
= &WalkState
->Operands
[0];
516 ACPI_OPERAND_OBJECT
*ObjDesc
;
521 ACPI_FUNCTION_TRACE_PTR (ExCreateMethod
, WalkState
);
524 /* Create a new method object */
526 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_METHOD
);
529 Status
= AE_NO_MEMORY
;
533 /* Save the method's AML pointer and length */
535 ObjDesc
->Method
.AmlStart
= AmlStart
;
536 ObjDesc
->Method
.AmlLength
= AmlLength
;
537 ObjDesc
->Method
.Node
= Operand
[0];
540 * Disassemble the method flags. Split off the ArgCount, Serialized
541 * flag, and SyncLevel for efficiency.
543 MethodFlags
= (UINT8
) Operand
[1]->Integer
.Value
;
544 ObjDesc
->Method
.ParamCount
= (UINT8
)
545 (MethodFlags
& AML_METHOD_ARG_COUNT
);
548 * Get the SyncLevel. If method is serialized, a mutex will be
549 * created for this method when it is parsed.
551 if (MethodFlags
& AML_METHOD_SERIALIZED
)
553 ObjDesc
->Method
.InfoFlags
= ACPI_METHOD_SERIALIZED
;
556 * ACPI 1.0: SyncLevel = 0
557 * ACPI 2.0: SyncLevel = SyncLevel in method declaration
559 ObjDesc
->Method
.SyncLevel
= (UINT8
)
560 ((MethodFlags
& AML_METHOD_SYNC_LEVEL
) >> 4);
563 /* Attach the new object to the method Node */
565 Status
= AcpiNsAttachObject ((ACPI_NAMESPACE_NODE
*) Operand
[0],
566 ObjDesc
, ACPI_TYPE_METHOD
);
568 /* Remove local reference to the object */
570 AcpiUtRemoveReference (ObjDesc
);
573 /* Remove a reference to the operand */
575 AcpiUtRemoveReference (Operand
[1]);
576 return_ACPI_STATUS (Status
);