xref: /freebsd/sys/contrib/dev/acpica/components/namespace/nseval.c (revision 0d84335f991f528c6f038e79dd5cc0a7770532da)
1a159c266SJung-uk Kim /*******************************************************************************
2a159c266SJung-uk Kim  *
3a159c266SJung-uk Kim  * Module Name: nseval - Object evaluation, includes control method execution
4a159c266SJung-uk Kim  *
5a159c266SJung-uk Kim  ******************************************************************************/
6a159c266SJung-uk Kim 
7*0d84335fSJung-uk Kim /******************************************************************************
8*0d84335fSJung-uk Kim  *
9*0d84335fSJung-uk Kim  * 1. Copyright Notice
10*0d84335fSJung-uk Kim  *
11*0d84335fSJung-uk Kim  * Some or all of this work - Copyright (c) 1999 - 2017, Intel Corp.
12a159c266SJung-uk Kim  * All rights reserved.
13a159c266SJung-uk Kim  *
14*0d84335fSJung-uk Kim  * 2. License
15*0d84335fSJung-uk Kim  *
16*0d84335fSJung-uk Kim  * 2.1. This is your license from Intel Corp. under its intellectual property
17*0d84335fSJung-uk Kim  * rights. You may have additional license terms from the party that provided
18*0d84335fSJung-uk Kim  * you this software, covering your right to use that party's intellectual
19*0d84335fSJung-uk Kim  * property rights.
20*0d84335fSJung-uk Kim  *
21*0d84335fSJung-uk Kim  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22*0d84335fSJung-uk Kim  * copy of the source code appearing in this file ("Covered Code") an
23*0d84335fSJung-uk Kim  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24*0d84335fSJung-uk Kim  * base code distributed originally by Intel ("Original Intel Code") to copy,
25*0d84335fSJung-uk Kim  * make derivatives, distribute, use and display any portion of the Covered
26*0d84335fSJung-uk Kim  * Code in any form, with the right to sublicense such rights; and
27*0d84335fSJung-uk Kim  *
28*0d84335fSJung-uk Kim  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29*0d84335fSJung-uk Kim  * license (with the right to sublicense), under only those claims of Intel
30*0d84335fSJung-uk Kim  * patents that are infringed by the Original Intel Code, to make, use, sell,
31*0d84335fSJung-uk Kim  * offer to sell, and import the Covered Code and derivative works thereof
32*0d84335fSJung-uk Kim  * solely to the minimum extent necessary to exercise the above copyright
33*0d84335fSJung-uk Kim  * license, and in no event shall the patent license extend to any additions
34*0d84335fSJung-uk Kim  * to or modifications of the Original Intel Code. No other license or right
35*0d84335fSJung-uk Kim  * is granted directly or by implication, estoppel or otherwise;
36*0d84335fSJung-uk Kim  *
37*0d84335fSJung-uk Kim  * The above copyright and patent license is granted only if the following
38*0d84335fSJung-uk Kim  * conditions are met:
39*0d84335fSJung-uk Kim  *
40*0d84335fSJung-uk Kim  * 3. Conditions
41*0d84335fSJung-uk Kim  *
42*0d84335fSJung-uk Kim  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43*0d84335fSJung-uk Kim  * Redistribution of source code of any substantial portion of the Covered
44*0d84335fSJung-uk Kim  * Code or modification with rights to further distribute source must include
45*0d84335fSJung-uk Kim  * the above Copyright Notice, the above License, this list of Conditions,
46*0d84335fSJung-uk Kim  * and the following Disclaimer and Export Compliance provision. In addition,
47*0d84335fSJung-uk Kim  * Licensee must cause all Covered Code to which Licensee contributes to
48*0d84335fSJung-uk Kim  * contain a file documenting the changes Licensee made to create that Covered
49*0d84335fSJung-uk Kim  * Code and the date of any change. Licensee must include in that file the
50*0d84335fSJung-uk Kim  * documentation of any changes made by any predecessor Licensee. Licensee
51*0d84335fSJung-uk Kim  * must include a prominent statement that the modification is derived,
52*0d84335fSJung-uk Kim  * directly or indirectly, from Original Intel Code.
53*0d84335fSJung-uk Kim  *
54*0d84335fSJung-uk Kim  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55*0d84335fSJung-uk Kim  * Redistribution of source code of any substantial portion of the Covered
56*0d84335fSJung-uk Kim  * Code or modification without rights to further distribute source must
57*0d84335fSJung-uk Kim  * include the following Disclaimer and Export Compliance provision in the
58*0d84335fSJung-uk Kim  * documentation and/or other materials provided with distribution. In
59*0d84335fSJung-uk Kim  * addition, Licensee may not authorize further sublicense of source of any
60*0d84335fSJung-uk Kim  * portion of the Covered Code, and must include terms to the effect that the
61*0d84335fSJung-uk Kim  * license from Licensee to its licensee is limited to the intellectual
62*0d84335fSJung-uk Kim  * property embodied in the software Licensee provides to its licensee, and
63*0d84335fSJung-uk Kim  * not to intellectual property embodied in modifications its licensee may
64*0d84335fSJung-uk Kim  * make.
65*0d84335fSJung-uk Kim 
66*0d84335fSJung-uk Kim  *
67*0d84335fSJung-uk Kim  * 3.3. Redistribution of Executable. Redistribution in executable form of any
68*0d84335fSJung-uk Kim  * substantial portion of the Covered Code or modification must reproduce the
69*0d84335fSJung-uk Kim  * above Copyright Notice, and the following Disclaimer and Export Compliance
70*0d84335fSJung-uk Kim  * provision in the documentation and/or other materials provided with the
71*0d84335fSJung-uk Kim  * distribution.
72*0d84335fSJung-uk Kim  *
73*0d84335fSJung-uk Kim  * 3.4. Intel retains all right, title, and interest in and to the Original
74*0d84335fSJung-uk Kim  * Intel Code.
75*0d84335fSJung-uk Kim  *
76*0d84335fSJung-uk Kim  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77*0d84335fSJung-uk Kim  * Intel shall be used in advertising or otherwise to promote the sale, use or
78*0d84335fSJung-uk Kim  * other dealings in products derived from or relating to the Covered Code
79*0d84335fSJung-uk Kim  * without prior written authorization from Intel.
80*0d84335fSJung-uk Kim  *
81*0d84335fSJung-uk Kim  * 4. Disclaimer and Export Compliance
82*0d84335fSJung-uk Kim  *
83*0d84335fSJung-uk Kim  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84*0d84335fSJung-uk Kim  * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85*0d84335fSJung-uk Kim  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86*0d84335fSJung-uk Kim  * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87*0d84335fSJung-uk Kim  * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88*0d84335fSJung-uk Kim  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89*0d84335fSJung-uk Kim  * PARTICULAR PURPOSE.
90*0d84335fSJung-uk Kim  *
91*0d84335fSJung-uk Kim  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92*0d84335fSJung-uk Kim  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93*0d84335fSJung-uk Kim  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94*0d84335fSJung-uk Kim  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95*0d84335fSJung-uk Kim  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96*0d84335fSJung-uk Kim  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97*0d84335fSJung-uk Kim  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98*0d84335fSJung-uk Kim  * LIMITED REMEDY.
99*0d84335fSJung-uk Kim  *
100*0d84335fSJung-uk Kim  * 4.3. Licensee shall not export, either directly or indirectly, any of this
101*0d84335fSJung-uk Kim  * software or system incorporating such software without first obtaining any
102*0d84335fSJung-uk Kim  * required license or other approval from the U. S. Department of Commerce or
103*0d84335fSJung-uk Kim  * any other agency or department of the United States Government. In the
104*0d84335fSJung-uk Kim  * event Licensee exports any such software from the United States or
105*0d84335fSJung-uk Kim  * re-exports any such software from a foreign destination, Licensee shall
106*0d84335fSJung-uk Kim  * ensure that the distribution and export/re-export of the software is in
107*0d84335fSJung-uk Kim  * compliance with all laws, regulations, orders, or other restrictions of the
108*0d84335fSJung-uk Kim  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109*0d84335fSJung-uk Kim  * any of its subsidiaries will export/re-export any technical data, process,
110*0d84335fSJung-uk Kim  * software, or service, directly or indirectly, to any country for which the
111*0d84335fSJung-uk Kim  * United States government or any agency thereof requires an export license,
112*0d84335fSJung-uk Kim  * other governmental approval, or letter of assurance, without first obtaining
113*0d84335fSJung-uk Kim  * such license, approval or letter.
114*0d84335fSJung-uk Kim  *
115*0d84335fSJung-uk Kim  *****************************************************************************
116*0d84335fSJung-uk Kim  *
117*0d84335fSJung-uk Kim  * Alternatively, you may choose to be licensed under the terms of the
118*0d84335fSJung-uk Kim  * following license:
119*0d84335fSJung-uk Kim  *
120a159c266SJung-uk Kim  * Redistribution and use in source and binary forms, with or without
121a159c266SJung-uk Kim  * modification, are permitted provided that the following conditions
122a159c266SJung-uk Kim  * are met:
123a159c266SJung-uk Kim  * 1. Redistributions of source code must retain the above copyright
124a159c266SJung-uk Kim  *    notice, this list of conditions, and the following disclaimer,
125a159c266SJung-uk Kim  *    without modification.
126a159c266SJung-uk Kim  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
127a159c266SJung-uk Kim  *    substantially similar to the "NO WARRANTY" disclaimer below
128a159c266SJung-uk Kim  *    ("Disclaimer") and any redistribution must be conditioned upon
129a159c266SJung-uk Kim  *    including a substantially similar Disclaimer requirement for further
130a159c266SJung-uk Kim  *    binary redistribution.
131a159c266SJung-uk Kim  * 3. Neither the names of the above-listed copyright holders nor the names
132a159c266SJung-uk Kim  *    of any contributors may be used to endorse or promote products derived
133a159c266SJung-uk Kim  *    from this software without specific prior written permission.
134a159c266SJung-uk Kim  *
135*0d84335fSJung-uk Kim  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
136*0d84335fSJung-uk Kim  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
137*0d84335fSJung-uk Kim  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
138*0d84335fSJung-uk Kim  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
139*0d84335fSJung-uk Kim  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
140*0d84335fSJung-uk Kim  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
141*0d84335fSJung-uk Kim  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
142*0d84335fSJung-uk Kim  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
143*0d84335fSJung-uk Kim  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
144*0d84335fSJung-uk Kim  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
145*0d84335fSJung-uk Kim  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
146*0d84335fSJung-uk Kim  *
147*0d84335fSJung-uk Kim  * Alternatively, you may choose to be licensed under the terms of the
148a159c266SJung-uk Kim  * GNU General Public License ("GPL") version 2 as published by the Free
149a159c266SJung-uk Kim  * Software Foundation.
150a159c266SJung-uk Kim  *
151*0d84335fSJung-uk Kim  *****************************************************************************/
152a159c266SJung-uk Kim 
153a159c266SJung-uk Kim #include <contrib/dev/acpica/include/acpi.h>
154a159c266SJung-uk Kim #include <contrib/dev/acpica/include/accommon.h>
155a159c266SJung-uk Kim #include <contrib/dev/acpica/include/acparser.h>
156a159c266SJung-uk Kim #include <contrib/dev/acpica/include/acinterp.h>
157a159c266SJung-uk Kim #include <contrib/dev/acpica/include/acnamesp.h>
158a159c266SJung-uk Kim 
159a159c266SJung-uk Kim 
160a159c266SJung-uk Kim #define _COMPONENT          ACPI_NAMESPACE
161a159c266SJung-uk Kim         ACPI_MODULE_NAME    ("nseval")
162a159c266SJung-uk Kim 
163a159c266SJung-uk Kim /* Local prototypes */
164a159c266SJung-uk Kim 
165a159c266SJung-uk Kim static void
166a159c266SJung-uk Kim AcpiNsExecModuleCode (
167a159c266SJung-uk Kim     ACPI_OPERAND_OBJECT     *MethodObj,
168a159c266SJung-uk Kim     ACPI_EVALUATE_INFO      *Info);
169a159c266SJung-uk Kim 
170a159c266SJung-uk Kim 
171a159c266SJung-uk Kim /*******************************************************************************
172a159c266SJung-uk Kim  *
173a159c266SJung-uk Kim  * FUNCTION:    AcpiNsEvaluate
174a159c266SJung-uk Kim  *
1755ef50723SJung-uk Kim  * PARAMETERS:  Info            - Evaluation info block, contains these fields
1765ef50723SJung-uk Kim  *                                and more:
177a159c266SJung-uk Kim  *                  PrefixNode      - Prefix or Method/Object Node to execute
178895f26a9SJung-uk Kim  *                  RelativePath    - Name of method to execute, If NULL, the
179a159c266SJung-uk Kim  *                                    Node is the object to execute
180a159c266SJung-uk Kim  *                  Parameters      - List of parameters to pass to the method,
181a159c266SJung-uk Kim  *                                    terminated by NULL. Params itself may be
182a159c266SJung-uk Kim  *                                    NULL if no parameters are being passed.
183a159c266SJung-uk Kim  *                  ParameterType   - Type of Parameter list
184a159c266SJung-uk Kim  *                  ReturnObject    - Where to put method's return value (if
185a159c266SJung-uk Kim  *                                    any). If NULL, no value is returned.
186a159c266SJung-uk Kim  *                  Flags           - ACPI_IGNORE_RETURN_VALUE to delete return
187a159c266SJung-uk Kim  *
188a159c266SJung-uk Kim  * RETURN:      Status
189a159c266SJung-uk Kim  *
190a159c266SJung-uk Kim  * DESCRIPTION: Execute a control method or return the current value of an
191a159c266SJung-uk Kim  *              ACPI namespace object.
192a159c266SJung-uk Kim  *
193a159c266SJung-uk Kim  * MUTEX:       Locks interpreter
194a159c266SJung-uk Kim  *
195a159c266SJung-uk Kim  ******************************************************************************/
196a159c266SJung-uk Kim 
197a159c266SJung-uk Kim ACPI_STATUS
198a159c266SJung-uk Kim AcpiNsEvaluate (
199a159c266SJung-uk Kim     ACPI_EVALUATE_INFO      *Info)
200a159c266SJung-uk Kim {
201a159c266SJung-uk Kim     ACPI_STATUS             Status;
202a159c266SJung-uk Kim 
203a159c266SJung-uk Kim 
204a159c266SJung-uk Kim     ACPI_FUNCTION_TRACE (NsEvaluate);
205a159c266SJung-uk Kim 
206a159c266SJung-uk Kim 
207a159c266SJung-uk Kim     if (!Info)
208a159c266SJung-uk Kim     {
209a159c266SJung-uk Kim         return_ACPI_STATUS (AE_BAD_PARAMETER);
210a159c266SJung-uk Kim     }
211a159c266SJung-uk Kim 
212895f26a9SJung-uk Kim     if (!Info->Node)
2139c7c683cSJung-uk Kim     {
214a159c266SJung-uk Kim         /*
215895f26a9SJung-uk Kim          * Get the actual namespace node for the target object if we
216895f26a9SJung-uk Kim          * need to. Handles these cases:
217a159c266SJung-uk Kim          *
218895f26a9SJung-uk Kim          * 1) Null node, valid pathname from root (absolute path)
219895f26a9SJung-uk Kim          * 2) Node and valid pathname (path relative to Node)
220895f26a9SJung-uk Kim          * 3) Node, Null pathname
221a159c266SJung-uk Kim          */
222895f26a9SJung-uk Kim         Status = AcpiNsGetNode (Info->PrefixNode, Info->RelativePathname,
223895f26a9SJung-uk Kim             ACPI_NS_NO_UPSEARCH, &Info->Node);
224a159c266SJung-uk Kim         if (ACPI_FAILURE (Status))
225a159c266SJung-uk Kim         {
226a159c266SJung-uk Kim             return_ACPI_STATUS (Status);
227a159c266SJung-uk Kim         }
2289c7c683cSJung-uk Kim     }
229a159c266SJung-uk Kim 
230a159c266SJung-uk Kim     /*
231895f26a9SJung-uk Kim      * For a method alias, we must grab the actual method node so that
232895f26a9SJung-uk Kim      * proper scoping context will be established before execution.
233a159c266SJung-uk Kim      */
234895f26a9SJung-uk Kim     if (AcpiNsGetType (Info->Node) == ACPI_TYPE_LOCAL_METHOD_ALIAS)
235a159c266SJung-uk Kim     {
236895f26a9SJung-uk Kim         Info->Node = ACPI_CAST_PTR (
237895f26a9SJung-uk Kim             ACPI_NAMESPACE_NODE, Info->Node->Object);
238a159c266SJung-uk Kim     }
239a159c266SJung-uk Kim 
240895f26a9SJung-uk Kim     /* Complete the info block initialization */
241a159c266SJung-uk Kim 
242895f26a9SJung-uk Kim     Info->ReturnObject = NULL;
243895f26a9SJung-uk Kim     Info->NodeFlags = Info->Node->Flags;
244895f26a9SJung-uk Kim     Info->ObjDesc = AcpiNsGetAttachedObject (Info->Node);
245a159c266SJung-uk Kim 
246895f26a9SJung-uk Kim     ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, "%s [%p] Value %p\n",
247895f26a9SJung-uk Kim         Info->RelativePathname, Info->Node,
248895f26a9SJung-uk Kim         AcpiNsGetAttachedObject (Info->Node)));
249895f26a9SJung-uk Kim 
250895f26a9SJung-uk Kim     /* Get info if we have a predefined name (_HID, etc.) */
251895f26a9SJung-uk Kim 
252895f26a9SJung-uk Kim     Info->Predefined = AcpiUtMatchPredefinedMethod (Info->Node->Name.Ascii);
253895f26a9SJung-uk Kim 
254895f26a9SJung-uk Kim     /* Get the full pathname to the object, for use in warning messages */
255895f26a9SJung-uk Kim 
256f8146b88SJung-uk Kim     Info->FullPathname = AcpiNsGetNormalizedPathname (Info->Node, TRUE);
257895f26a9SJung-uk Kim     if (!Info->FullPathname)
258a159c266SJung-uk Kim     {
259895f26a9SJung-uk Kim         return_ACPI_STATUS (AE_NO_MEMORY);
260a159c266SJung-uk Kim     }
261a159c266SJung-uk Kim 
262895f26a9SJung-uk Kim     /* Count the number of arguments being passed in */
263a159c266SJung-uk Kim 
264895f26a9SJung-uk Kim     Info->ParamCount = 0;
265a159c266SJung-uk Kim     if (Info->Parameters)
266a159c266SJung-uk Kim     {
267a159c266SJung-uk Kim         while (Info->Parameters[Info->ParamCount])
268a159c266SJung-uk Kim         {
269a159c266SJung-uk Kim             Info->ParamCount++;
270a159c266SJung-uk Kim         }
271895f26a9SJung-uk Kim 
272895f26a9SJung-uk Kim         /* Warn on impossible argument count */
273895f26a9SJung-uk Kim 
274895f26a9SJung-uk Kim         if (Info->ParamCount > ACPI_METHOD_NUM_ARGS)
275895f26a9SJung-uk Kim         {
276895f26a9SJung-uk Kim             ACPI_WARN_PREDEFINED ((AE_INFO, Info->FullPathname, ACPI_WARN_ALWAYS,
277895f26a9SJung-uk Kim                 "Excess arguments (%u) - using only %u",
278895f26a9SJung-uk Kim                 Info->ParamCount, ACPI_METHOD_NUM_ARGS));
279895f26a9SJung-uk Kim 
280895f26a9SJung-uk Kim             Info->ParamCount = ACPI_METHOD_NUM_ARGS;
281895f26a9SJung-uk Kim         }
282a159c266SJung-uk Kim     }
283a159c266SJung-uk Kim 
284895f26a9SJung-uk Kim     /*
285895f26a9SJung-uk Kim      * For predefined names: Check that the declared argument count
286895f26a9SJung-uk Kim      * matches the ACPI spec -- otherwise this is a BIOS error.
287895f26a9SJung-uk Kim      */
288895f26a9SJung-uk Kim     AcpiNsCheckAcpiCompliance (Info->FullPathname, Info->Node,
289895f26a9SJung-uk Kim         Info->Predefined);
290895f26a9SJung-uk Kim 
291895f26a9SJung-uk Kim     /*
292895f26a9SJung-uk Kim      * For all names: Check that the incoming argument count for
293895f26a9SJung-uk Kim      * this method/object matches the actual ASL/AML definition.
294895f26a9SJung-uk Kim      */
295895f26a9SJung-uk Kim     AcpiNsCheckArgumentCount (Info->FullPathname, Info->Node,
296895f26a9SJung-uk Kim         Info->ParamCount, Info->Predefined);
297895f26a9SJung-uk Kim 
298895f26a9SJung-uk Kim     /* For predefined names: Typecheck all incoming arguments */
299895f26a9SJung-uk Kim 
300895f26a9SJung-uk Kim     AcpiNsCheckArgumentTypes (Info);
301895f26a9SJung-uk Kim 
302895f26a9SJung-uk Kim     /*
303895f26a9SJung-uk Kim      * Three major evaluation cases:
304895f26a9SJung-uk Kim      *
305895f26a9SJung-uk Kim      * 1) Object types that cannot be evaluated by definition
306895f26a9SJung-uk Kim      * 2) The object is a control method -- execute it
307895f26a9SJung-uk Kim      * 3) The object is not a method -- just return it's current value
308895f26a9SJung-uk Kim      */
309895f26a9SJung-uk Kim     switch (AcpiNsGetType (Info->Node))
310895f26a9SJung-uk Kim     {
311895f26a9SJung-uk Kim     case ACPI_TYPE_DEVICE:
312895f26a9SJung-uk Kim     case ACPI_TYPE_EVENT:
313895f26a9SJung-uk Kim     case ACPI_TYPE_MUTEX:
314895f26a9SJung-uk Kim     case ACPI_TYPE_REGION:
315895f26a9SJung-uk Kim     case ACPI_TYPE_THERMAL:
316895f26a9SJung-uk Kim     case ACPI_TYPE_LOCAL_SCOPE:
317895f26a9SJung-uk Kim         /*
318895f26a9SJung-uk Kim          * 1) Disallow evaluation of certain object types. For these,
319895f26a9SJung-uk Kim          *    object evaluation is undefined and not supported.
320895f26a9SJung-uk Kim          */
321895f26a9SJung-uk Kim         ACPI_ERROR ((AE_INFO,
322895f26a9SJung-uk Kim             "%s: Evaluation of object type [%s] is not supported",
323895f26a9SJung-uk Kim             Info->FullPathname,
324895f26a9SJung-uk Kim             AcpiUtGetTypeName (Info->Node->Type)));
325895f26a9SJung-uk Kim 
326895f26a9SJung-uk Kim         Status = AE_TYPE;
327895f26a9SJung-uk Kim         goto Cleanup;
328895f26a9SJung-uk Kim 
329895f26a9SJung-uk Kim     case ACPI_TYPE_METHOD:
330895f26a9SJung-uk Kim         /*
331895f26a9SJung-uk Kim          * 2) Object is a control method - execute it
332895f26a9SJung-uk Kim          */
333895f26a9SJung-uk Kim 
334895f26a9SJung-uk Kim         /* Verify that there is a method object associated with this node */
335895f26a9SJung-uk Kim 
336895f26a9SJung-uk Kim         if (!Info->ObjDesc)
337895f26a9SJung-uk Kim         {
338895f26a9SJung-uk Kim             ACPI_ERROR ((AE_INFO, "%s: Method has no attached sub-object",
339895f26a9SJung-uk Kim                 Info->FullPathname));
340895f26a9SJung-uk Kim             Status = AE_NULL_OBJECT;
341895f26a9SJung-uk Kim             goto Cleanup;
342895f26a9SJung-uk Kim         }
343a159c266SJung-uk Kim 
344a159c266SJung-uk Kim         ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
345895f26a9SJung-uk Kim             "**** Execute method [%s] at AML address %p length %X\n",
346895f26a9SJung-uk Kim             Info->FullPathname,
347a159c266SJung-uk Kim             Info->ObjDesc->Method.AmlStart + 1,
348a159c266SJung-uk Kim             Info->ObjDesc->Method.AmlLength - 1));
349a159c266SJung-uk Kim 
350a159c266SJung-uk Kim         /*
351a159c266SJung-uk Kim          * Any namespace deletion must acquire both the namespace and
352a159c266SJung-uk Kim          * interpreter locks to ensure that no thread is using the portion of
353a159c266SJung-uk Kim          * the namespace that is being deleted.
354a159c266SJung-uk Kim          *
355a159c266SJung-uk Kim          * Execute the method via the interpreter. The interpreter is locked
356a159c266SJung-uk Kim          * here before calling into the AML parser
357a159c266SJung-uk Kim          */
358a159c266SJung-uk Kim         AcpiExEnterInterpreter ();
359a159c266SJung-uk Kim         Status = AcpiPsExecuteMethod (Info);
360a159c266SJung-uk Kim         AcpiExExitInterpreter ();
361895f26a9SJung-uk Kim         break;
362a159c266SJung-uk Kim 
363a159c266SJung-uk Kim     default:
364895f26a9SJung-uk Kim         /*
365895f26a9SJung-uk Kim          * 3) All other non-method objects -- get the current object value
366895f26a9SJung-uk Kim          */
367a159c266SJung-uk Kim 
368a159c266SJung-uk Kim         /*
369895f26a9SJung-uk Kim          * Some objects require additional resolution steps (e.g., the Node
370895f26a9SJung-uk Kim          * may be a field that must be read, etc.) -- we can't just grab
371895f26a9SJung-uk Kim          * the object out of the node.
372a159c266SJung-uk Kim          *
373a159c266SJung-uk Kim          * Use ResolveNodeToValue() to get the associated value.
374a159c266SJung-uk Kim          *
375a159c266SJung-uk Kim          * NOTE: we can get away with passing in NULL for a walk state because
376895f26a9SJung-uk Kim          * the Node is guaranteed to not be a reference to either a method
377a159c266SJung-uk Kim          * local or a method argument (because this interface is never called
378a159c266SJung-uk Kim          * from a running method.)
379a159c266SJung-uk Kim          *
380a159c266SJung-uk Kim          * Even though we do not directly invoke the interpreter for object
381895f26a9SJung-uk Kim          * resolution, we must lock it because we could access an OpRegion.
382895f26a9SJung-uk Kim          * The OpRegion access code assumes that the interpreter is locked.
383a159c266SJung-uk Kim          */
384a159c266SJung-uk Kim         AcpiExEnterInterpreter ();
385a159c266SJung-uk Kim 
386895f26a9SJung-uk Kim         /* TBD: ResolveNodeToValue has a strange interface, fix */
387a159c266SJung-uk Kim 
388895f26a9SJung-uk Kim         Info->ReturnObject = ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Info->Node);
389895f26a9SJung-uk Kim 
390895f26a9SJung-uk Kim         Status = AcpiExResolveNodeToValue (ACPI_CAST_INDIRECT_PTR (
391895f26a9SJung-uk Kim             ACPI_NAMESPACE_NODE, &Info->ReturnObject), NULL);
392a159c266SJung-uk Kim         AcpiExExitInterpreter ();
393a159c266SJung-uk Kim 
394895f26a9SJung-uk Kim         if (ACPI_FAILURE (Status))
395a159c266SJung-uk Kim         {
39670e6ab8fSJung-uk Kim             Info->ReturnObject = NULL;
397895f26a9SJung-uk Kim             goto Cleanup;
398895f26a9SJung-uk Kim         }
399a159c266SJung-uk Kim 
400895f26a9SJung-uk Kim         ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, "Returned object %p [%s]\n",
401a159c266SJung-uk Kim             Info->ReturnObject,
402a159c266SJung-uk Kim             AcpiUtGetObjectTypeName (Info->ReturnObject)));
403895f26a9SJung-uk Kim 
404895f26a9SJung-uk Kim         Status = AE_CTRL_RETURN_VALUE; /* Always has a "return value" */
405895f26a9SJung-uk Kim         break;
406a159c266SJung-uk Kim     }
407a159c266SJung-uk Kim 
408a159c266SJung-uk Kim     /*
409895f26a9SJung-uk Kim      * For predefined names, check the return value against the ACPI
410895f26a9SJung-uk Kim      * specification. Some incorrect return value types are repaired.
411a159c266SJung-uk Kim      */
412895f26a9SJung-uk Kim     (void) AcpiNsCheckReturnValue (Info->Node, Info, Info->ParamCount,
413a159c266SJung-uk Kim         Status, &Info->ReturnObject);
414a159c266SJung-uk Kim 
415a159c266SJung-uk Kim     /* Check if there is a return value that must be dealt with */
416a159c266SJung-uk Kim 
417a159c266SJung-uk Kim     if (Status == AE_CTRL_RETURN_VALUE)
418a159c266SJung-uk Kim     {
419a159c266SJung-uk Kim         /* If caller does not want the return value, delete it */
420a159c266SJung-uk Kim 
421a159c266SJung-uk Kim         if (Info->Flags & ACPI_IGNORE_RETURN_VALUE)
422a159c266SJung-uk Kim         {
423a159c266SJung-uk Kim             AcpiUtRemoveReference (Info->ReturnObject);
424a159c266SJung-uk Kim             Info->ReturnObject = NULL;
425a159c266SJung-uk Kim         }
426a159c266SJung-uk Kim 
427a159c266SJung-uk Kim         /* Map AE_CTRL_RETURN_VALUE to AE_OK, we are done with it */
428a159c266SJung-uk Kim 
429a159c266SJung-uk Kim         Status = AE_OK;
430a159c266SJung-uk Kim     }
431a159c266SJung-uk Kim 
432a159c266SJung-uk Kim     ACPI_DEBUG_PRINT ((ACPI_DB_NAMES,
433895f26a9SJung-uk Kim         "*** Completed evaluation of object %s ***\n",
434895f26a9SJung-uk Kim         Info->RelativePathname));
435a159c266SJung-uk Kim 
436895f26a9SJung-uk Kim Cleanup:
437a159c266SJung-uk Kim     /*
438a159c266SJung-uk Kim      * Namespace was unlocked by the handling AcpiNs* function, so we
439895f26a9SJung-uk Kim      * just free the pathname and return
440a159c266SJung-uk Kim      */
441895f26a9SJung-uk Kim     ACPI_FREE (Info->FullPathname);
442895f26a9SJung-uk Kim     Info->FullPathname = NULL;
443a159c266SJung-uk Kim     return_ACPI_STATUS (Status);
444a159c266SJung-uk Kim }
445a159c266SJung-uk Kim 
446a159c266SJung-uk Kim 
447a159c266SJung-uk Kim /*******************************************************************************
448a159c266SJung-uk Kim  *
449a159c266SJung-uk Kim  * FUNCTION:    AcpiNsExecModuleCodeList
450a159c266SJung-uk Kim  *
451a159c266SJung-uk Kim  * PARAMETERS:  None
452a159c266SJung-uk Kim  *
453a159c266SJung-uk Kim  * RETURN:      None. Exceptions during method execution are ignored, since
454a159c266SJung-uk Kim  *              we cannot abort a table load.
455a159c266SJung-uk Kim  *
456a159c266SJung-uk Kim  * DESCRIPTION: Execute all elements of the global module-level code list.
457a159c266SJung-uk Kim  *              Each element is executed as a single control method.
458a159c266SJung-uk Kim  *
459a159c266SJung-uk Kim  ******************************************************************************/
460a159c266SJung-uk Kim 
461a159c266SJung-uk Kim void
462a159c266SJung-uk Kim AcpiNsExecModuleCodeList (
463a159c266SJung-uk Kim     void)
464a159c266SJung-uk Kim {
465a159c266SJung-uk Kim     ACPI_OPERAND_OBJECT     *Prev;
466a159c266SJung-uk Kim     ACPI_OPERAND_OBJECT     *Next;
467a159c266SJung-uk Kim     ACPI_EVALUATE_INFO      *Info;
468a159c266SJung-uk Kim     UINT32                  MethodCount = 0;
469a159c266SJung-uk Kim 
470a159c266SJung-uk Kim 
471a159c266SJung-uk Kim     ACPI_FUNCTION_TRACE (NsExecModuleCodeList);
472a159c266SJung-uk Kim 
473a159c266SJung-uk Kim 
474a159c266SJung-uk Kim     /* Exit now if the list is empty */
475a159c266SJung-uk Kim 
476a159c266SJung-uk Kim     Next = AcpiGbl_ModuleCodeList;
477a159c266SJung-uk Kim     if (!Next)
478a159c266SJung-uk Kim     {
479a159c266SJung-uk Kim         return_VOID;
480a159c266SJung-uk Kim     }
481a159c266SJung-uk Kim 
482a159c266SJung-uk Kim     /* Allocate the evaluation information block */
483a159c266SJung-uk Kim 
484a159c266SJung-uk Kim     Info = ACPI_ALLOCATE (sizeof (ACPI_EVALUATE_INFO));
485a159c266SJung-uk Kim     if (!Info)
486a159c266SJung-uk Kim     {
487a159c266SJung-uk Kim         return_VOID;
488a159c266SJung-uk Kim     }
489a159c266SJung-uk Kim 
490a159c266SJung-uk Kim     /* Walk the list, executing each "method" */
491a159c266SJung-uk Kim 
492a159c266SJung-uk Kim     while (Next)
493a159c266SJung-uk Kim     {
494a159c266SJung-uk Kim         Prev = Next;
495a159c266SJung-uk Kim         Next = Next->Method.Mutex;
496a159c266SJung-uk Kim 
497a159c266SJung-uk Kim         /* Clear the link field and execute the method */
498a159c266SJung-uk Kim 
499a159c266SJung-uk Kim         Prev->Method.Mutex = NULL;
500a159c266SJung-uk Kim         AcpiNsExecModuleCode (Prev, Info);
501a159c266SJung-uk Kim         MethodCount++;
502a159c266SJung-uk Kim 
503a159c266SJung-uk Kim         /* Delete the (temporary) method object */
504a159c266SJung-uk Kim 
505a159c266SJung-uk Kim         AcpiUtRemoveReference (Prev);
506a159c266SJung-uk Kim     }
507a159c266SJung-uk Kim 
508f8146b88SJung-uk Kim     ACPI_INFO ((
509a159c266SJung-uk Kim         "Executed %u blocks of module-level executable AML code",
510a159c266SJung-uk Kim         MethodCount));
511a159c266SJung-uk Kim 
512a159c266SJung-uk Kim     ACPI_FREE (Info);
513a159c266SJung-uk Kim     AcpiGbl_ModuleCodeList = NULL;
514a159c266SJung-uk Kim     return_VOID;
515a159c266SJung-uk Kim }
516a159c266SJung-uk Kim 
517a159c266SJung-uk Kim 
518a159c266SJung-uk Kim /*******************************************************************************
519a159c266SJung-uk Kim  *
520a159c266SJung-uk Kim  * FUNCTION:    AcpiNsExecModuleCode
521a159c266SJung-uk Kim  *
522a159c266SJung-uk Kim  * PARAMETERS:  MethodObj           - Object container for the module-level code
523a159c266SJung-uk Kim  *              Info                - Info block for method evaluation
524a159c266SJung-uk Kim  *
525a159c266SJung-uk Kim  * RETURN:      None. Exceptions during method execution are ignored, since
526a159c266SJung-uk Kim  *              we cannot abort a table load.
527a159c266SJung-uk Kim  *
528a159c266SJung-uk Kim  * DESCRIPTION: Execute a control method containing a block of module-level
529a159c266SJung-uk Kim  *              executable AML code. The control method is temporarily
530a159c266SJung-uk Kim  *              installed to the root node, then evaluated.
531a159c266SJung-uk Kim  *
532a159c266SJung-uk Kim  ******************************************************************************/
533a159c266SJung-uk Kim 
534a159c266SJung-uk Kim static void
535a159c266SJung-uk Kim AcpiNsExecModuleCode (
536a159c266SJung-uk Kim     ACPI_OPERAND_OBJECT     *MethodObj,
537a159c266SJung-uk Kim     ACPI_EVALUATE_INFO      *Info)
538a159c266SJung-uk Kim {
539a159c266SJung-uk Kim     ACPI_OPERAND_OBJECT     *ParentObj;
540a159c266SJung-uk Kim     ACPI_NAMESPACE_NODE     *ParentNode;
541a159c266SJung-uk Kim     ACPI_OBJECT_TYPE        Type;
542a159c266SJung-uk Kim     ACPI_STATUS             Status;
543a159c266SJung-uk Kim 
544a159c266SJung-uk Kim 
545a159c266SJung-uk Kim     ACPI_FUNCTION_TRACE (NsExecModuleCode);
546a159c266SJung-uk Kim 
547a159c266SJung-uk Kim 
548a159c266SJung-uk Kim     /*
549a159c266SJung-uk Kim      * Get the parent node. We cheat by using the NextObject field
550a159c266SJung-uk Kim      * of the method object descriptor.
551a159c266SJung-uk Kim      */
552f8146b88SJung-uk Kim     ParentNode = ACPI_CAST_PTR (
553f8146b88SJung-uk Kim         ACPI_NAMESPACE_NODE, MethodObj->Method.NextObject);
554a159c266SJung-uk Kim     Type = AcpiNsGetType (ParentNode);
555a159c266SJung-uk Kim 
556a159c266SJung-uk Kim     /*
557a159c266SJung-uk Kim      * Get the region handler and save it in the method object. We may need
558a159c266SJung-uk Kim      * this if an operation region declaration causes a _REG method to be run.
559a159c266SJung-uk Kim      *
560a159c266SJung-uk Kim      * We can't do this in AcpiPsLinkModuleCode because
561a159c266SJung-uk Kim      * AcpiGbl_RootNode->Object is NULL at PASS1.
562a159c266SJung-uk Kim      */
563a159c266SJung-uk Kim     if ((Type == ACPI_TYPE_DEVICE) && ParentNode->Object)
564a159c266SJung-uk Kim     {
565a159c266SJung-uk Kim         MethodObj->Method.Dispatch.Handler =
566a159c266SJung-uk Kim             ParentNode->Object->Device.Handler;
567a159c266SJung-uk Kim     }
568a159c266SJung-uk Kim 
569a159c266SJung-uk Kim     /* Must clear NextObject (AcpiNsAttachObject needs the field) */
570a159c266SJung-uk Kim 
571a159c266SJung-uk Kim     MethodObj->Method.NextObject = NULL;
572a159c266SJung-uk Kim 
573a159c266SJung-uk Kim     /* Initialize the evaluation information block */
574a159c266SJung-uk Kim 
5755ef50723SJung-uk Kim     memset (Info, 0, sizeof (ACPI_EVALUATE_INFO));
576a159c266SJung-uk Kim     Info->PrefixNode = ParentNode;
577a159c266SJung-uk Kim 
578a159c266SJung-uk Kim     /*
579f8146b88SJung-uk Kim      * Get the currently attached parent object. Add a reference,
580f8146b88SJung-uk Kim      * because the ref count will be decreased when the method object
581f8146b88SJung-uk Kim      * is installed to the parent node.
582a159c266SJung-uk Kim      */
583a159c266SJung-uk Kim     ParentObj = AcpiNsGetAttachedObject (ParentNode);
584a159c266SJung-uk Kim     if (ParentObj)
585a159c266SJung-uk Kim     {
586a159c266SJung-uk Kim         AcpiUtAddReference (ParentObj);
587a159c266SJung-uk Kim     }
588a159c266SJung-uk Kim 
589a159c266SJung-uk Kim     /* Install the method (module-level code) in the parent node */
590a159c266SJung-uk Kim 
591f8146b88SJung-uk Kim     Status = AcpiNsAttachObject (ParentNode, MethodObj, ACPI_TYPE_METHOD);
592a159c266SJung-uk Kim     if (ACPI_FAILURE (Status))
593a159c266SJung-uk Kim     {
594a159c266SJung-uk Kim         goto Exit;
595a159c266SJung-uk Kim     }
596a159c266SJung-uk Kim 
597a159c266SJung-uk Kim     /* Execute the parent node as a control method */
598a159c266SJung-uk Kim 
599a159c266SJung-uk Kim     Status = AcpiNsEvaluate (Info);
600a159c266SJung-uk Kim 
60170e6ab8fSJung-uk Kim     ACPI_DEBUG_PRINT ((ACPI_DB_INIT_NAMES,
60270e6ab8fSJung-uk Kim         "Executed module-level code at %p\n",
603a159c266SJung-uk Kim         MethodObj->Method.AmlStart));
604a159c266SJung-uk Kim 
605a159c266SJung-uk Kim     /* Delete a possible implicit return value (in slack mode) */
606a159c266SJung-uk Kim 
607a159c266SJung-uk Kim     if (Info->ReturnObject)
608a159c266SJung-uk Kim     {
609a159c266SJung-uk Kim         AcpiUtRemoveReference (Info->ReturnObject);
610a159c266SJung-uk Kim     }
611a159c266SJung-uk Kim 
612a159c266SJung-uk Kim     /* Detach the temporary method object */
613a159c266SJung-uk Kim 
614a159c266SJung-uk Kim     AcpiNsDetachObject (ParentNode);
615a159c266SJung-uk Kim 
616a159c266SJung-uk Kim     /* Restore the original parent object */
617a159c266SJung-uk Kim 
618a159c266SJung-uk Kim     if (ParentObj)
619a159c266SJung-uk Kim     {
620a159c266SJung-uk Kim         Status = AcpiNsAttachObject (ParentNode, ParentObj, Type);
621a159c266SJung-uk Kim     }
622a159c266SJung-uk Kim     else
623a159c266SJung-uk Kim     {
624a159c266SJung-uk Kim         ParentNode->Type = (UINT8) Type;
625a159c266SJung-uk Kim     }
626a159c266SJung-uk Kim 
627a159c266SJung-uk Kim Exit:
628a159c266SJung-uk Kim     if (ParentObj)
629a159c266SJung-uk Kim     {
630a159c266SJung-uk Kim         AcpiUtRemoveReference (ParentObj);
631a159c266SJung-uk Kim     }
632a159c266SJung-uk Kim     return_VOID;
633a159c266SJung-uk Kim }
634