1 /******************************************************************************
3 * Module Name: nsxfname - Public interfaces to the ACPI subsystem
4 * ACPI Namespace oriented interfaces
6 *****************************************************************************/
8 /******************************************************************************
12 * Some or all of this work - Copyright (c) 1999 - 2016, Intel Corp.
13 * All rights reserved.
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
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
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;
38 * The above copyright and patent license is granted only if the following
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.
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
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
73 * 3.4. Intel retains all right, title, and interest in and to the Original
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.
81 * 4. Disclaimer and Export Compliance
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 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government. In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
115 *****************************************************************************/
117 #define EXPORT_ACPI_INTERFACES
120 #include "accommon.h"
121 #include "acnamesp.h"
122 #include "acparser.h"
126 #define _COMPONENT ACPI_NAMESPACE
127 ACPI_MODULE_NAME ("nsxfname")
129 /* Local prototypes */
133 ACPI_PNP_DEVICE_ID
*Dest
,
134 ACPI_PNP_DEVICE_ID
*Source
,
138 /******************************************************************************
140 * FUNCTION: AcpiGetHandle
142 * PARAMETERS: Parent - Object to search under (search scope).
143 * Pathname - Pointer to an asciiz string containing the
145 * RetHandle - Where the return handle is returned
149 * DESCRIPTION: This routine will search for a caller specified name in the
150 * name space. The caller can restrict the search region by
151 * specifying a non NULL parent. The parent value is itself a
154 ******************************************************************************/
159 ACPI_STRING Pathname
,
160 ACPI_HANDLE
*RetHandle
)
163 ACPI_NAMESPACE_NODE
*Node
= NULL
;
164 ACPI_NAMESPACE_NODE
*PrefixNode
= NULL
;
167 ACPI_FUNCTION_ENTRY ();
170 /* Parameter Validation */
172 if (!RetHandle
|| !Pathname
)
174 return (AE_BAD_PARAMETER
);
177 /* Convert a parent handle to a prefix node */
181 PrefixNode
= AcpiNsValidateHandle (Parent
);
184 return (AE_BAD_PARAMETER
);
190 * 1) Fully qualified pathname
191 * 2) Parent + Relative pathname
193 * Error for <null Parent + relative path>
195 if (ACPI_IS_ROOT_PREFIX (Pathname
[0]))
197 /* Pathname is fully qualified (starts with '\') */
199 /* Special case for root-only, since we can't search for it */
201 if (!strcmp (Pathname
, ACPI_NS_ROOT_PATH
))
203 *RetHandle
= ACPI_CAST_PTR (ACPI_HANDLE
, AcpiGbl_RootNode
);
207 else if (!PrefixNode
)
209 /* Relative path with null prefix is disallowed */
211 return (AE_BAD_PARAMETER
);
214 /* Find the Node and convert to a handle */
216 Status
= AcpiNsGetNode (PrefixNode
, Pathname
, ACPI_NS_NO_UPSEARCH
, &Node
);
217 if (ACPI_SUCCESS (Status
))
219 *RetHandle
= ACPI_CAST_PTR (ACPI_HANDLE
, Node
);
225 ACPI_EXPORT_SYMBOL (AcpiGetHandle
)
228 /******************************************************************************
230 * FUNCTION: AcpiGetName
232 * PARAMETERS: Handle - Handle to be converted to a pathname
233 * NameType - Full pathname or single segment
234 * Buffer - Buffer for returned path
236 * RETURN: Pointer to a string containing the fully qualified Name.
238 * DESCRIPTION: This routine returns the fully qualified name associated with
239 * the Handle parameter. This and the AcpiPathnameToHandle are
240 * complementary functions.
242 ******************************************************************************/
251 ACPI_NAMESPACE_NODE
*Node
;
252 const char *NodeName
;
255 /* Parameter validation */
257 if (NameType
> ACPI_NAME_TYPE_MAX
)
259 return (AE_BAD_PARAMETER
);
262 Status
= AcpiUtValidateBuffer (Buffer
);
263 if (ACPI_FAILURE (Status
))
268 if (NameType
== ACPI_FULL_PATHNAME
||
269 NameType
== ACPI_FULL_PATHNAME_NO_TRAILING
)
271 /* Get the full pathname (From the namespace root) */
273 Status
= AcpiNsHandleToPathname (Handle
, Buffer
,
274 NameType
== ACPI_FULL_PATHNAME
? FALSE
: TRUE
);
279 * Wants the single segment ACPI name.
280 * Validate handle and convert to a namespace Node
282 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
283 if (ACPI_FAILURE (Status
))
288 Node
= AcpiNsValidateHandle (Handle
);
291 Status
= AE_BAD_PARAMETER
;
295 /* Validate/Allocate/Clear caller buffer */
297 Status
= AcpiUtInitializeBuffer (Buffer
, ACPI_PATH_SEGMENT_LENGTH
);
298 if (ACPI_FAILURE (Status
))
303 /* Just copy the ACPI name from the Node and zero terminate it */
305 NodeName
= AcpiUtGetNodeName (Node
);
306 ACPI_MOVE_NAME (Buffer
->Pointer
, NodeName
);
307 ((char *) Buffer
->Pointer
) [ACPI_NAME_SIZE
] = 0;
313 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
317 ACPI_EXPORT_SYMBOL (AcpiGetName
)
320 /******************************************************************************
322 * FUNCTION: AcpiNsCopyDeviceId
324 * PARAMETERS: Dest - Pointer to the destination PNP_DEVICE_ID
325 * Source - Pointer to the source PNP_DEVICE_ID
326 * StringArea - Pointer to where to copy the dest string
328 * RETURN: Pointer to the next string area
330 * DESCRIPTION: Copy a single PNP_DEVICE_ID, including the string data.
332 ******************************************************************************/
336 ACPI_PNP_DEVICE_ID
*Dest
,
337 ACPI_PNP_DEVICE_ID
*Source
,
340 /* Create the destination PNP_DEVICE_ID */
342 Dest
->String
= StringArea
;
343 Dest
->Length
= Source
->Length
;
345 /* Copy actual string and return a pointer to the next string area */
347 memcpy (StringArea
, Source
->String
, Source
->Length
);
348 return (StringArea
+ Source
->Length
);
352 /******************************************************************************
354 * FUNCTION: AcpiGetObjectInfo
356 * PARAMETERS: Handle - Object Handle
357 * ReturnBuffer - Where the info is returned
361 * DESCRIPTION: Returns information about an object as gleaned from the
362 * namespace node and possibly by running several standard
363 * control methods (Such as in the case of a device.)
365 * For Device and Processor objects, run the Device _HID, _UID, _CID, _STA,
366 * _CLS, _ADR, _SxW, and _SxD methods.
368 * Note: Allocates the return buffer, must be freed by the caller.
370 * Note: This interface is intended to be used during the initial device
371 * discovery namespace traversal. Therefore, no complex methods can be
372 * executed, especially those that access operation regions. Therefore, do
373 * not add any additional methods that could cause problems in this area.
374 * this was the fate of the _SUB method which was found to cause such
375 * problems and was removed (11/2015).
377 ******************************************************************************/
382 ACPI_DEVICE_INFO
**ReturnBuffer
)
384 ACPI_NAMESPACE_NODE
*Node
;
385 ACPI_DEVICE_INFO
*Info
;
386 ACPI_PNP_DEVICE_ID_LIST
*CidList
= NULL
;
387 ACPI_PNP_DEVICE_ID
*Hid
= NULL
;
388 ACPI_PNP_DEVICE_ID
*Uid
= NULL
;
389 ACPI_PNP_DEVICE_ID
*Cls
= NULL
;
391 ACPI_OBJECT_TYPE Type
;
400 /* Parameter validation */
402 if (!Handle
|| !ReturnBuffer
)
404 return (AE_BAD_PARAMETER
);
407 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
408 if (ACPI_FAILURE (Status
))
413 Node
= AcpiNsValidateHandle (Handle
);
416 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
417 return (AE_BAD_PARAMETER
);
420 /* Get the namespace node data while the namespace is locked */
422 InfoSize
= sizeof (ACPI_DEVICE_INFO
);
424 Name
= Node
->Name
.Integer
;
426 if (Node
->Type
== ACPI_TYPE_METHOD
)
428 ParamCount
= Node
->Object
->Method
.ParamCount
;
431 Status
= AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
432 if (ACPI_FAILURE (Status
))
437 if ((Type
== ACPI_TYPE_DEVICE
) ||
438 (Type
== ACPI_TYPE_PROCESSOR
))
441 * Get extra info for ACPI Device/Processor objects only:
442 * Run the Device _HID, _UID, _CLS, and _CID methods.
444 * Note: none of these methods are required, so they may or may
445 * not be present for this device. The Info->Valid bitfield is used
446 * to indicate which methods were found and run successfully.
449 /* Execute the Device._HID method */
451 Status
= AcpiUtExecute_HID (Node
, &Hid
);
452 if (ACPI_SUCCESS (Status
))
454 InfoSize
+= Hid
->Length
;
455 Valid
|= ACPI_VALID_HID
;
458 /* Execute the Device._UID method */
460 Status
= AcpiUtExecute_UID (Node
, &Uid
);
461 if (ACPI_SUCCESS (Status
))
463 InfoSize
+= Uid
->Length
;
464 Valid
|= ACPI_VALID_UID
;
467 /* Execute the Device._CID method */
469 Status
= AcpiUtExecute_CID (Node
, &CidList
);
470 if (ACPI_SUCCESS (Status
))
472 /* Add size of CID strings and CID pointer array */
474 InfoSize
+= (CidList
->ListSize
- sizeof (ACPI_PNP_DEVICE_ID_LIST
));
475 Valid
|= ACPI_VALID_CID
;
478 /* Execute the Device._CLS method */
480 Status
= AcpiUtExecute_CLS (Node
, &Cls
);
481 if (ACPI_SUCCESS (Status
))
483 InfoSize
+= Cls
->Length
;
484 Valid
|= ACPI_VALID_CLS
;
489 * Now that we have the variable-length data, we can allocate the
492 Info
= ACPI_ALLOCATE_ZEROED (InfoSize
);
495 Status
= AE_NO_MEMORY
;
499 /* Get the fixed-length data */
501 if ((Type
== ACPI_TYPE_DEVICE
) ||
502 (Type
== ACPI_TYPE_PROCESSOR
))
505 * Get extra info for ACPI Device/Processor objects only:
506 * Run the _STA, _ADR and, SxW, and _SxD methods.
508 * Notes: none of these methods are required, so they may or may
509 * not be present for this device. The Info->Valid bitfield is used
510 * to indicate which methods were found and run successfully.
512 * For _STA, if the method does not exist, then (as per the ACPI
513 * specification), the returned CurrentStatus flags will indicate
514 * that the device is present/functional/enabled. Otherwise, the
515 * CurrentStatus flags reflect the value returned from _STA.
518 /* Execute the Device._STA method */
520 Status
= AcpiUtExecute_STA (Node
, &Info
->CurrentStatus
);
521 if (ACPI_SUCCESS (Status
))
523 Valid
|= ACPI_VALID_STA
;
526 /* Execute the Device._ADR method */
528 Status
= AcpiUtEvaluateNumericObject (METHOD_NAME__ADR
, Node
,
530 if (ACPI_SUCCESS (Status
))
532 Valid
|= ACPI_VALID_ADR
;
535 /* Execute the Device._SxW methods */
537 Status
= AcpiUtExecutePowerMethods (Node
,
538 AcpiGbl_LowestDstateNames
, ACPI_NUM_SxW_METHODS
,
539 Info
->LowestDstates
);
540 if (ACPI_SUCCESS (Status
))
542 Valid
|= ACPI_VALID_SXWS
;
545 /* Execute the Device._SxD methods */
547 Status
= AcpiUtExecutePowerMethods (Node
,
548 AcpiGbl_HighestDstateNames
, ACPI_NUM_SxD_METHODS
,
549 Info
->HighestDstates
);
550 if (ACPI_SUCCESS (Status
))
552 Valid
|= ACPI_VALID_SXDS
;
557 * Create a pointer to the string area of the return buffer.
558 * Point to the end of the base ACPI_DEVICE_INFO structure.
560 NextIdString
= ACPI_CAST_PTR (char, Info
->CompatibleIdList
.Ids
);
563 /* Point past the CID PNP_DEVICE_ID array */
565 NextIdString
+= ((ACPI_SIZE
) CidList
->Count
* sizeof (ACPI_PNP_DEVICE_ID
));
569 * Copy the HID, UID, and CIDs to the return buffer. The variable-length
570 * strings are copied to the reserved area at the end of the buffer.
572 * For HID and CID, check if the ID is a PCI Root Bridge.
576 NextIdString
= AcpiNsCopyDeviceId (&Info
->HardwareId
,
579 if (AcpiUtIsPciRootBridge (Hid
->String
))
581 Info
->Flags
|= ACPI_PCI_ROOT_BRIDGE
;
587 NextIdString
= AcpiNsCopyDeviceId (&Info
->UniqueId
,
593 Info
->CompatibleIdList
.Count
= CidList
->Count
;
594 Info
->CompatibleIdList
.ListSize
= CidList
->ListSize
;
598 for (i
= 0; i
< CidList
->Count
; i
++)
600 NextIdString
= AcpiNsCopyDeviceId (&Info
->CompatibleIdList
.Ids
[i
],
601 &CidList
->Ids
[i
], NextIdString
);
603 if (AcpiUtIsPciRootBridge (CidList
->Ids
[i
].String
))
605 Info
->Flags
|= ACPI_PCI_ROOT_BRIDGE
;
612 NextIdString
= AcpiNsCopyDeviceId (&Info
->ClassCode
,
616 /* Copy the fixed-length data */
618 Info
->InfoSize
= InfoSize
;
621 Info
->ParamCount
= ParamCount
;
624 *ReturnBuffer
= Info
;
648 ACPI_EXPORT_SYMBOL (AcpiGetObjectInfo
)
651 /******************************************************************************
653 * FUNCTION: AcpiInstallMethod
655 * PARAMETERS: Buffer - An ACPI table containing one control method
659 * DESCRIPTION: Install a control method into the namespace. If the method
660 * name already exists in the namespace, it is overwritten. The
661 * input buffer must contain a valid DSDT or SSDT containing a
662 * single control method.
664 ******************************************************************************/
670 ACPI_TABLE_HEADER
*Table
= ACPI_CAST_PTR (ACPI_TABLE_HEADER
, Buffer
);
674 ACPI_NAMESPACE_NODE
*Node
;
675 ACPI_OPERAND_OBJECT
*MethodObj
;
676 ACPI_PARSE_STATE ParserState
;
683 /* Parameter validation */
687 return (AE_BAD_PARAMETER
);
690 /* Table must be a DSDT or SSDT */
692 if (!ACPI_COMPARE_NAME (Table
->Signature
, ACPI_SIG_DSDT
) &&
693 !ACPI_COMPARE_NAME (Table
->Signature
, ACPI_SIG_SSDT
))
695 return (AE_BAD_HEADER
);
698 /* First AML opcode in the table must be a control method */
700 ParserState
.Aml
= Buffer
+ sizeof (ACPI_TABLE_HEADER
);
701 Opcode
= AcpiPsPeekOpcode (&ParserState
);
702 if (Opcode
!= AML_METHOD_OP
)
704 return (AE_BAD_PARAMETER
);
707 /* Extract method information from the raw AML */
709 ParserState
.Aml
+= AcpiPsGetOpcodeSize (Opcode
);
710 ParserState
.PkgEnd
= AcpiPsGetNextPackageEnd (&ParserState
);
711 Path
= AcpiPsGetNextNamestring (&ParserState
);
713 MethodFlags
= *ParserState
.Aml
++;
714 AmlStart
= ParserState
.Aml
;
715 AmlLength
= ACPI_PTR_DIFF (ParserState
.PkgEnd
, AmlStart
);
718 * Allocate resources up-front. We don't want to have to delete a new
719 * node from the namespace if we cannot allocate memory.
721 AmlBuffer
= ACPI_ALLOCATE (AmlLength
);
724 return (AE_NO_MEMORY
);
727 MethodObj
= AcpiUtCreateInternalObject (ACPI_TYPE_METHOD
);
730 ACPI_FREE (AmlBuffer
);
731 return (AE_NO_MEMORY
);
734 /* Lock namespace for AcpiNsLookup, we may be creating a new node */
736 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
737 if (ACPI_FAILURE (Status
))
742 /* The lookup either returns an existing node or creates a new one */
744 Status
= AcpiNsLookup (NULL
, Path
, ACPI_TYPE_METHOD
, ACPI_IMODE_LOAD_PASS1
,
745 ACPI_NS_DONT_OPEN_SCOPE
| ACPI_NS_ERROR_IF_FOUND
, NULL
, &Node
);
747 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
749 if (ACPI_FAILURE (Status
)) /* NsLookup */
751 if (Status
!= AE_ALREADY_EXISTS
)
756 /* Node existed previously, make sure it is a method node */
758 if (Node
->Type
!= ACPI_TYPE_METHOD
)
765 /* Copy the method AML to the local buffer */
767 memcpy (AmlBuffer
, AmlStart
, AmlLength
);
769 /* Initialize the method object with the new method's information */
771 MethodObj
->Method
.AmlStart
= AmlBuffer
;
772 MethodObj
->Method
.AmlLength
= AmlLength
;
774 MethodObj
->Method
.ParamCount
= (UINT8
)
775 (MethodFlags
& AML_METHOD_ARG_COUNT
);
777 if (MethodFlags
& AML_METHOD_SERIALIZED
)
779 MethodObj
->Method
.InfoFlags
= ACPI_METHOD_SERIALIZED
;
781 MethodObj
->Method
.SyncLevel
= (UINT8
)
782 ((MethodFlags
& AML_METHOD_SYNC_LEVEL
) >> 4);
786 * Now that it is complete, we can attach the new method object to
787 * the method Node (detaches/deletes any existing object)
789 Status
= AcpiNsAttachObject (Node
, MethodObj
, ACPI_TYPE_METHOD
);
792 * Flag indicates AML buffer is dynamic, must be deleted later.
793 * Must be set only after attach above.
795 Node
->Flags
|= ANOBJ_ALLOCATED_BUFFER
;
797 /* Remove local reference to the method object */
799 AcpiUtRemoveReference (MethodObj
);
805 ACPI_FREE (AmlBuffer
);
806 ACPI_FREE (MethodObj
);
810 ACPI_EXPORT_SYMBOL (AcpiInstallMethod
)