excreate.c revision 100966
1/******************************************************************************
2 *
3 * Module Name: excreate - Named object creation
4 *              $Revision: 93 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights.  You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.
21 *
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
28 *
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code.  No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
37 *
38 * The above copyright and patent license is granted only if the following
39 * conditions are met:
40 *
41 * 3. Conditions
42 *
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision.  In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change.  Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee.  Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
54 *
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution.  In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
65 * make.
66 *
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
71 * distribution.
72 *
73 * 3.4. Intel retains all right, title, and interest in and to the Original
74 * Intel Code.
75 *
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
80 *
81 * 4. Disclaimer and Export Compliance
82 *
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
87
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
91 *
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
100 *
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government.  In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
115 *
116 *****************************************************************************/
117
118#define __EXCREATE_C__
119
120#include "acpi.h"
121#include "acinterp.h"
122#include "amlcode.h"
123#include "acnamesp.h"
124#include "acevents.h"
125#include "actables.h"
126
127
128#define _COMPONENT          ACPI_EXECUTER
129        ACPI_MODULE_NAME    ("excreate")
130
131
132#ifndef ACPI_NO_METHOD_EXECUTION
133/*****************************************************************************
134 *
135 * FUNCTION:    AcpiExCreateAlias
136 *
137 * PARAMETERS:  WalkState            - Current state, contains operands
138 *
139 * RETURN:      Status
140 *
141 * DESCRIPTION: Create a new named alias
142 *
143 ****************************************************************************/
144
145ACPI_STATUS
146AcpiExCreateAlias (
147    ACPI_WALK_STATE         *WalkState)
148{
149    ACPI_NAMESPACE_NODE     *SourceNode;
150    ACPI_STATUS             Status;
151
152
153    ACPI_FUNCTION_TRACE ("ExCreateAlias");
154
155
156    /* Get the source/alias operands (both namespace nodes) */
157
158    SourceNode = (ACPI_NAMESPACE_NODE *) WalkState->Operands[1];
159
160
161    /* Attach the original source object to the new Alias Node */
162
163    Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) WalkState->Operands[0],
164                                    AcpiNsGetAttachedObject (SourceNode),
165                                    SourceNode->Type);
166
167    /*
168     * The new alias assumes the type of the source, but it points
169     * to the same object.  The reference count of the object has an
170     * additional reference to prevent deletion out from under either the
171     * source or the alias Node
172     */
173
174    /* Since both operands are Nodes, we don't need to delete them */
175
176    return_ACPI_STATUS (Status);
177}
178
179
180/*****************************************************************************
181 *
182 * FUNCTION:    AcpiExCreateEvent
183 *
184 * PARAMETERS:  WalkState           - Current state
185 *
186 * RETURN:      Status
187 *
188 * DESCRIPTION: Create a new event object
189 *
190 ****************************************************************************/
191
192ACPI_STATUS
193AcpiExCreateEvent (
194    ACPI_WALK_STATE         *WalkState)
195{
196    ACPI_STATUS             Status;
197    ACPI_OPERAND_OBJECT     *ObjDesc;
198
199
200    ACPI_FUNCTION_TRACE ("ExCreateEvent");
201
202
203    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_EVENT);
204    if (!ObjDesc)
205    {
206        Status = AE_NO_MEMORY;
207        goto Cleanup;
208    }
209
210    /*
211     * Create the actual OS semaphore, with zero initial units -- meaning
212     * that the event is created in an unsignalled state
213     */
214    Status = AcpiOsCreateSemaphore (ACPI_NO_UNIT_LIMIT, 0,
215                                    &ObjDesc->Event.Semaphore);
216    if (ACPI_FAILURE (Status))
217    {
218        goto Cleanup;
219    }
220
221    /* Attach object to the Node */
222
223    Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) WalkState->Operands[0],
224                                    ObjDesc, ACPI_TYPE_EVENT);
225
226Cleanup:
227    /*
228     * Remove local reference to the object (on error, will cause deletion
229     * of both object and semaphore if present.)
230     */
231    AcpiUtRemoveReference (ObjDesc);
232    return_ACPI_STATUS (Status);
233}
234
235
236/*****************************************************************************
237 *
238 * FUNCTION:    AcpiExCreateMutex
239 *
240 * PARAMETERS:  WalkState           - Current state
241 *
242 * RETURN:      Status
243 *
244 * DESCRIPTION: Create a new mutex object
245 *
246 *              Mutex (Name[0], SyncLevel[1])
247 *
248 ****************************************************************************/
249
250ACPI_STATUS
251AcpiExCreateMutex (
252    ACPI_WALK_STATE         *WalkState)
253{
254    ACPI_STATUS             Status = AE_OK;
255    ACPI_OPERAND_OBJECT     *ObjDesc;
256
257
258    ACPI_FUNCTION_TRACE_PTR ("ExCreateMutex", ACPI_WALK_OPERANDS);
259
260
261    /* Create the new mutex object */
262
263    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_MUTEX);
264    if (!ObjDesc)
265    {
266        Status = AE_NO_MEMORY;
267        goto Cleanup;
268    }
269
270    /*
271     * Create the actual OS semaphore.
272     * One unit max to make it a mutex, with one initial unit to allow
273     * the mutex to be acquired.
274     */
275    Status = AcpiOsCreateSemaphore (1, 1, &ObjDesc->Mutex.Semaphore);
276    if (ACPI_FAILURE (Status))
277    {
278        goto Cleanup;
279    }
280
281    /* Init object and attach to NS node */
282
283    ObjDesc->Mutex.SyncLevel = (UINT8) WalkState->Operands[1]->Integer.Value;
284
285    Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) WalkState->Operands[0],
286                                ObjDesc, ACPI_TYPE_MUTEX);
287
288
289Cleanup:
290    /*
291     * Remove local reference to the object (on error, will cause deletion
292     * of both object and semaphore if present.)
293     */
294    AcpiUtRemoveReference (ObjDesc);
295    return_ACPI_STATUS (Status);
296}
297
298
299/*****************************************************************************
300 *
301 * FUNCTION:    AcpiExCreateRegion
302 *
303 * PARAMETERS:  AmlStart            - Pointer to the region declaration AML
304 *              AmlLength           - Max length of the declaration AML
305 *              Operands            - List of operands for the opcode
306 *              WalkState           - Current state
307 *
308 * RETURN:      Status
309 *
310 * DESCRIPTION: Create a new operation region object
311 *
312 ****************************************************************************/
313
314ACPI_STATUS
315AcpiExCreateRegion (
316    UINT8                   *AmlStart,
317    UINT32                  AmlLength,
318    UINT8                   RegionSpace,
319    ACPI_WALK_STATE         *WalkState)
320{
321    ACPI_STATUS             Status;
322    ACPI_OPERAND_OBJECT     *ObjDesc;
323    ACPI_NAMESPACE_NODE     *Node;
324    ACPI_OPERAND_OBJECT     *RegionObj2;
325
326
327    ACPI_FUNCTION_TRACE ("ExCreateRegion");
328
329
330    /* Get the Node from the object stack  */
331
332    Node = WalkState->Op->Common.Node;
333
334    /*
335     * If the region object is already attached to this node,
336     * just return
337     */
338    if (AcpiNsGetAttachedObject (Node))
339    {
340        return_ACPI_STATUS (AE_OK);
341    }
342
343    /*
344     * Space ID must be one of the predefined IDs, or in the user-defined
345     * range
346     */
347    if ((RegionSpace >= ACPI_NUM_PREDEFINED_REGIONS) &&
348        (RegionSpace < ACPI_USER_REGION_BEGIN))
349    {
350        ACPI_REPORT_ERROR (("Invalid AddressSpace type %X\n", RegionSpace));
351        return_ACPI_STATUS (AE_AML_INVALID_SPACE_ID);
352    }
353
354    ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "Region Type - %s (%X)\n",
355                    AcpiUtGetRegionName (RegionSpace), RegionSpace));
356
357
358    /* Create the region descriptor */
359
360    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_REGION);
361    if (!ObjDesc)
362    {
363        Status = AE_NO_MEMORY;
364        goto Cleanup;
365    }
366
367    /*
368     * Remember location in AML stream of address & length
369     * operands since they need to be evaluated at run time.
370     */
371    RegionObj2                  = ObjDesc->Common.NextObject;
372    RegionObj2->Extra.AmlStart  = AmlStart;
373    RegionObj2->Extra.AmlLength = AmlLength;
374
375    /* Init the region from the operands */
376
377    ObjDesc->Region.SpaceId = RegionSpace;
378    ObjDesc->Region.Address = 0;
379    ObjDesc->Region.Length  = 0;
380    ObjDesc->Region.Node    = Node;
381
382    /* Install the new region object in the parent Node */
383
384    Status = AcpiNsAttachObject (Node, ObjDesc, ACPI_TYPE_REGION);
385
386
387Cleanup:
388
389    /* Remove local reference to the object */
390
391    AcpiUtRemoveReference (ObjDesc);
392    return_ACPI_STATUS (Status);
393}
394
395
396/*****************************************************************************
397 *
398 * FUNCTION:    AcpiExCreateTableRegion
399 *
400 * PARAMETERS:  WalkState           - Current state
401 *
402 * RETURN:      Status
403 *
404 * DESCRIPTION: Create a new DataTableRegion object
405 *
406 ****************************************************************************/
407
408ACPI_STATUS
409AcpiExCreateTableRegion (
410    ACPI_WALK_STATE         *WalkState)
411{
412    ACPI_STATUS             Status;
413    ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
414    ACPI_OPERAND_OBJECT     *ObjDesc;
415    ACPI_NAMESPACE_NODE     *Node;
416    ACPI_TABLE_HEADER       *Table;
417    ACPI_OPERAND_OBJECT     *RegionObj2;
418
419
420    ACPI_FUNCTION_TRACE ("ExCreateTableRegion");
421
422    /* Get the Node from the object stack  */
423
424    Node = WalkState->Op->Common.Node;
425
426    /*
427     * If the region object is already attached to this node,
428     * just return
429     */
430    if (AcpiNsGetAttachedObject (Node))
431    {
432        return_ACPI_STATUS (AE_OK);
433    }
434
435    /* Find the ACPI table */
436
437    Status = AcpiTbFindTable (Operand[1]->String.Pointer,
438                              Operand[2]->String.Pointer,
439                              Operand[3]->String.Pointer, &Table);
440
441    if (ACPI_FAILURE (Status))
442    {
443        return_ACPI_STATUS (Status);
444    }
445
446    /* Create the region descriptor */
447
448    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_REGION);
449    if (!ObjDesc)
450    {
451        return_ACPI_STATUS (AE_NO_MEMORY);
452    }
453
454    RegionObj2                      = ObjDesc->Common.NextObject;
455    RegionObj2->Extra.RegionContext = NULL;
456
457    /* Init the region from the operands */
458
459    ObjDesc->Region.SpaceId = REGION_DATA_TABLE;
460    ObjDesc->Region.Address = (ACPI_PHYSICAL_ADDRESS) ACPI_TO_INTEGER (Table);
461    ObjDesc->Region.Length  = Table->Length;
462    ObjDesc->Region.Node    = Node;
463    ObjDesc->Region.Flags   = AOPOBJ_DATA_VALID;
464
465    /* Install the new region object in the parent Node */
466
467    Status = AcpiNsAttachObject (Node, ObjDesc, ACPI_TYPE_REGION);
468    if (ACPI_FAILURE (Status))
469    {
470        goto Cleanup;
471    }
472
473    Status = AcpiEvInitializeRegion (ObjDesc, FALSE);
474    if (ACPI_FAILURE (Status))
475    {
476        if (Status == AE_NOT_EXIST)
477        {
478            Status = AE_OK;
479        }
480        else
481        {
482            goto Cleanup;
483        }
484    }
485
486    ObjDesc->Region.Flags |= AOPOBJ_SETUP_COMPLETE;
487
488
489Cleanup:
490
491    /* Remove local reference to the object */
492
493    AcpiUtRemoveReference (ObjDesc);
494    return_ACPI_STATUS (Status);
495}
496
497
498/*****************************************************************************
499 *
500 * FUNCTION:    AcpiExCreateProcessor
501 *
502 * PARAMETERS:  WalkState           - Current state
503 *
504 * RETURN:      Status
505 *
506 * DESCRIPTION: Create a new processor object and populate the fields
507 *
508 *              Processor (Name[0], CpuID[1], PblockAddr[2], PblockLength[3])
509 *
510 ****************************************************************************/
511
512ACPI_STATUS
513AcpiExCreateProcessor (
514    ACPI_WALK_STATE         *WalkState)
515{
516    ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
517    ACPI_OPERAND_OBJECT     *ObjDesc;
518    ACPI_STATUS             Status;
519
520
521    ACPI_FUNCTION_TRACE_PTR ("ExCreateProcessor", WalkState);
522
523
524    /* Create the processor object */
525
526    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_PROCESSOR);
527    if (!ObjDesc)
528    {
529        return_ACPI_STATUS (AE_NO_MEMORY);
530    }
531
532    /*
533     * Initialize the processor object from the operands
534     */
535    ObjDesc->Processor.ProcId  = (UINT8)           Operand[1]->Integer.Value;
536    ObjDesc->Processor.Address = (ACPI_IO_ADDRESS) Operand[2]->Integer.Value;
537    ObjDesc->Processor.Length  = (UINT8)           Operand[3]->Integer.Value;
538
539    /* Install the processor object in the parent Node */
540
541    Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
542                    ObjDesc, ACPI_TYPE_PROCESSOR);
543
544
545    /* Remove local reference to the object */
546
547    AcpiUtRemoveReference (ObjDesc);
548    return_ACPI_STATUS (Status);
549}
550
551
552/*****************************************************************************
553 *
554 * FUNCTION:    AcpiExCreatePowerResource
555 *
556 * PARAMETERS:  WalkState           - Current state
557 *
558 * RETURN:      Status
559 *
560 * DESCRIPTION: Create a new PowerResource object and populate the fields
561 *
562 *              PowerResource (Name[0], SystemLevel[1], ResourceOrder[2])
563 *
564 ****************************************************************************/
565
566ACPI_STATUS
567AcpiExCreatePowerResource (
568    ACPI_WALK_STATE         *WalkState)
569{
570    ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
571    ACPI_STATUS             Status;
572    ACPI_OPERAND_OBJECT     *ObjDesc;
573
574
575    ACPI_FUNCTION_TRACE_PTR ("ExCreatePowerResource", WalkState);
576
577
578    /* Create the power resource object */
579
580    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_POWER);
581    if (!ObjDesc)
582    {
583        return_ACPI_STATUS (AE_NO_MEMORY);
584    }
585
586    /* Initialize the power object from the operands */
587
588    ObjDesc->PowerResource.SystemLevel   = (UINT8)  Operand[1]->Integer.Value;
589    ObjDesc->PowerResource.ResourceOrder = (UINT16) Operand[2]->Integer.Value;
590
591    /* Install the  power resource object in the parent Node */
592
593    Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
594                    ObjDesc, ACPI_TYPE_POWER);
595
596
597    /* Remove local reference to the object */
598
599    AcpiUtRemoveReference (ObjDesc);
600    return_ACPI_STATUS (Status);
601}
602
603#endif
604
605/*****************************************************************************
606 *
607 * FUNCTION:    AcpiExCreateMethod
608 *
609 * PARAMETERS:  AmlStart        - First byte of the method's AML
610 *              AmlLength       - AML byte count for this method
611 *              WalkState       - Current state
612 *
613 * RETURN:      Status
614 *
615 * DESCRIPTION: Create a new method object
616 *
617 ****************************************************************************/
618
619ACPI_STATUS
620AcpiExCreateMethod (
621    UINT8                   *AmlStart,
622    UINT32                  AmlLength,
623    ACPI_WALK_STATE         *WalkState)
624{
625    ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
626    ACPI_OPERAND_OBJECT     *ObjDesc;
627    ACPI_STATUS             Status;
628    UINT8                   MethodFlags;
629
630
631    ACPI_FUNCTION_TRACE_PTR ("ExCreateMethod", WalkState);
632
633
634    /* Create a new method object */
635
636    ObjDesc = AcpiUtCreateInternalObject (ACPI_TYPE_METHOD);
637    if (!ObjDesc)
638    {
639       return_ACPI_STATUS (AE_NO_MEMORY);
640    }
641
642    /* Save the method's AML pointer and length  */
643
644    ObjDesc->Method.AmlStart  = AmlStart;
645    ObjDesc->Method.AmlLength = AmlLength;
646
647    /* disassemble the method flags */
648
649    MethodFlags = (UINT8) Operand[1]->Integer.Value;
650
651    ObjDesc->Method.MethodFlags = MethodFlags;
652    ObjDesc->Method.ParamCount  = (UINT8) (MethodFlags & METHOD_FLAGS_ARG_COUNT);
653
654    /*
655     * Get the concurrency count.  If required, a semaphore will be
656     * created for this method when it is parsed.
657     */
658    if (MethodFlags & METHOD_FLAGS_SERIALIZED)
659    {
660        /*
661         * ACPI 1.0: Concurrency = 1
662         * ACPI 2.0: Concurrency = (SyncLevel (in method declaration) + 1)
663         */
664        ObjDesc->Method.Concurrency = (UINT8)
665                        (((MethodFlags & METHOD_FLAGS_SYNCH_LEVEL) >> 4) + 1);
666    }
667
668    else
669    {
670        ObjDesc->Method.Concurrency = INFINITE_CONCURRENCY;
671    }
672
673    /* Attach the new object to the method Node */
674
675    Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
676                    ObjDesc, ACPI_TYPE_METHOD);
677
678    /* Remove local reference to the object */
679
680    AcpiUtRemoveReference (ObjDesc);
681
682    /* Remove a reference to the operand */
683
684    AcpiUtRemoveReference (Operand[1]);
685    return_ACPI_STATUS (Status);
686}
687
688
689