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 - 2010, 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 __NSXFNAME_C__
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_DEVICE_ID
*Dest
,
134 ACPI_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 (AcpiNsValidRootPrefix (Pathname
[0]))
197 /* Pathname is fully qualified (starts with '\') */
199 /* Special case for root-only, since we can't search for it */
201 if (!ACPI_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
;
254 /* Parameter validation */
256 if (NameType
> ACPI_NAME_TYPE_MAX
)
258 return (AE_BAD_PARAMETER
);
261 Status
= AcpiUtValidateBuffer (Buffer
);
262 if (ACPI_FAILURE (Status
))
267 if (NameType
== ACPI_FULL_PATHNAME
)
269 /* Get the full pathname (From the namespace root) */
271 Status
= AcpiNsHandleToPathname (Handle
, Buffer
);
276 * Wants the single segment ACPI name.
277 * Validate handle and convert to a namespace Node
279 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
280 if (ACPI_FAILURE (Status
))
285 Node
= AcpiNsValidateHandle (Handle
);
288 Status
= AE_BAD_PARAMETER
;
292 /* Validate/Allocate/Clear caller buffer */
294 Status
= AcpiUtInitializeBuffer (Buffer
, ACPI_PATH_SEGMENT_LENGTH
);
295 if (ACPI_FAILURE (Status
))
300 /* Just copy the ACPI name from the Node and zero terminate it */
302 ACPI_STRNCPY (Buffer
->Pointer
, AcpiUtGetNodeName (Node
),
304 ((char *) Buffer
->Pointer
) [ACPI_NAME_SIZE
] = 0;
310 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
314 ACPI_EXPORT_SYMBOL (AcpiGetName
)
317 /******************************************************************************
319 * FUNCTION: AcpiNsCopyDeviceId
321 * PARAMETERS: Dest - Pointer to the destination DEVICE_ID
322 * Source - Pointer to the source DEVICE_ID
323 * StringArea - Pointer to where to copy the dest string
325 * RETURN: Pointer to the next string area
327 * DESCRIPTION: Copy a single DEVICE_ID, including the string data.
329 ******************************************************************************/
333 ACPI_DEVICE_ID
*Dest
,
334 ACPI_DEVICE_ID
*Source
,
337 /* Create the destination DEVICE_ID */
339 Dest
->String
= StringArea
;
340 Dest
->Length
= Source
->Length
;
342 /* Copy actual string and return a pointer to the next string area */
344 ACPI_MEMCPY (StringArea
, Source
->String
, Source
->Length
);
345 return (StringArea
+ Source
->Length
);
349 /******************************************************************************
351 * FUNCTION: AcpiGetObjectInfo
353 * PARAMETERS: Handle - Object Handle
354 * ReturnBuffer - Where the info is returned
358 * DESCRIPTION: Returns information about an object as gleaned from the
359 * namespace node and possibly by running several standard
360 * control methods (Such as in the case of a device.)
362 * For Device and Processor objects, run the Device _HID, _UID, _CID, _STA,
363 * _ADR, _SxW, and _SxD methods.
365 * Note: Allocates the return buffer, must be freed by the caller.
367 ******************************************************************************/
372 ACPI_DEVICE_INFO
**ReturnBuffer
)
374 ACPI_NAMESPACE_NODE
*Node
;
375 ACPI_DEVICE_INFO
*Info
;
376 ACPI_DEVICE_ID_LIST
*CidList
= NULL
;
377 ACPI_DEVICE_ID
*Hid
= NULL
;
378 ACPI_DEVICE_ID
*Uid
= NULL
;
380 ACPI_OBJECT_TYPE Type
;
389 /* Parameter validation */
391 if (!Handle
|| !ReturnBuffer
)
393 return (AE_BAD_PARAMETER
);
396 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
397 if (ACPI_FAILURE (Status
))
402 Node
= AcpiNsValidateHandle (Handle
);
405 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
406 return (AE_BAD_PARAMETER
);
409 /* Get the namespace node data while the namespace is locked */
411 InfoSize
= sizeof (ACPI_DEVICE_INFO
);
413 Name
= Node
->Name
.Integer
;
415 if (Node
->Type
== ACPI_TYPE_METHOD
)
417 ParamCount
= Node
->Object
->Method
.ParamCount
;
420 Status
= AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
421 if (ACPI_FAILURE (Status
))
426 if ((Type
== ACPI_TYPE_DEVICE
) ||
427 (Type
== ACPI_TYPE_PROCESSOR
))
430 * Get extra info for ACPI Device/Processor objects only:
431 * Run the Device _HID, _UID, and _CID methods.
433 * Note: none of these methods are required, so they may or may
434 * not be present for this device. The Info->Valid bitfield is used
435 * to indicate which methods were found and run successfully.
438 /* Execute the Device._HID method */
440 Status
= AcpiUtExecute_HID (Node
, &Hid
);
441 if (ACPI_SUCCESS (Status
))
443 InfoSize
+= Hid
->Length
;
444 Valid
|= ACPI_VALID_HID
;
447 /* Execute the Device._UID method */
449 Status
= AcpiUtExecute_UID (Node
, &Uid
);
450 if (ACPI_SUCCESS (Status
))
452 InfoSize
+= Uid
->Length
;
453 Valid
|= ACPI_VALID_UID
;
456 /* Execute the Device._CID method */
458 Status
= AcpiUtExecute_CID (Node
, &CidList
);
459 if (ACPI_SUCCESS (Status
))
461 /* Add size of CID strings and CID pointer array */
463 InfoSize
+= (CidList
->ListSize
- sizeof (ACPI_DEVICE_ID_LIST
));
464 Valid
|= ACPI_VALID_CID
;
469 * Now that we have the variable-length data, we can allocate the
472 Info
= ACPI_ALLOCATE_ZEROED (InfoSize
);
475 Status
= AE_NO_MEMORY
;
479 /* Get the fixed-length data */
481 if ((Type
== ACPI_TYPE_DEVICE
) ||
482 (Type
== ACPI_TYPE_PROCESSOR
))
485 * Get extra info for ACPI Device/Processor objects only:
486 * Run the _STA, _ADR and, SxW, and _SxD methods.
488 * Note: none of these methods are required, so they may or may
489 * not be present for this device. The Info->Valid bitfield is used
490 * to indicate which methods were found and run successfully.
493 /* Execute the Device._STA method */
495 Status
= AcpiUtExecute_STA (Node
, &Info
->CurrentStatus
);
496 if (ACPI_SUCCESS (Status
))
498 Valid
|= ACPI_VALID_STA
;
501 /* Execute the Device._ADR method */
503 Status
= AcpiUtEvaluateNumericObject (METHOD_NAME__ADR
, Node
,
505 if (ACPI_SUCCESS (Status
))
507 Valid
|= ACPI_VALID_ADR
;
510 /* Execute the Device._SxW methods */
512 Status
= AcpiUtExecutePowerMethods (Node
,
513 AcpiGbl_LowestDstateNames
, ACPI_NUM_SxW_METHODS
,
514 Info
->LowestDstates
);
515 if (ACPI_SUCCESS (Status
))
517 Valid
|= ACPI_VALID_SXWS
;
520 /* Execute the Device._SxD methods */
522 Status
= AcpiUtExecutePowerMethods (Node
,
523 AcpiGbl_HighestDstateNames
, ACPI_NUM_SxD_METHODS
,
524 Info
->HighestDstates
);
525 if (ACPI_SUCCESS (Status
))
527 Valid
|= ACPI_VALID_SXDS
;
532 * Create a pointer to the string area of the return buffer.
533 * Point to the end of the base ACPI_DEVICE_INFO structure.
535 NextIdString
= ACPI_CAST_PTR (char, Info
->CompatibleIdList
.Ids
);
538 /* Point past the CID DEVICE_ID array */
540 NextIdString
+= ((ACPI_SIZE
) CidList
->Count
* sizeof (ACPI_DEVICE_ID
));
544 * Copy the HID, UID, and CIDs to the return buffer. The variable-length
545 * strings are copied to the reserved area at the end of the buffer.
547 * For HID and CID, check if the ID is a PCI Root Bridge.
551 NextIdString
= AcpiNsCopyDeviceId (&Info
->HardwareId
,
554 if (AcpiUtIsPciRootBridge (Hid
->String
))
556 Info
->Flags
|= ACPI_PCI_ROOT_BRIDGE
;
562 NextIdString
= AcpiNsCopyDeviceId (&Info
->UniqueId
,
568 Info
->CompatibleIdList
.Count
= CidList
->Count
;
569 Info
->CompatibleIdList
.ListSize
= CidList
->ListSize
;
573 for (i
= 0; i
< CidList
->Count
; i
++)
575 NextIdString
= AcpiNsCopyDeviceId (&Info
->CompatibleIdList
.Ids
[i
],
576 &CidList
->Ids
[i
], NextIdString
);
578 if (AcpiUtIsPciRootBridge (CidList
->Ids
[i
].String
))
580 Info
->Flags
|= ACPI_PCI_ROOT_BRIDGE
;
585 /* Copy the fixed-length data */
587 Info
->InfoSize
= InfoSize
;
590 Info
->ParamCount
= ParamCount
;
593 *ReturnBuffer
= Info
;
613 ACPI_EXPORT_SYMBOL (AcpiGetObjectInfo
)
616 /******************************************************************************
618 * FUNCTION: AcpiInstallMethod
620 * PARAMETERS: Buffer - An ACPI table containing one control method
624 * DESCRIPTION: Install a control method into the namespace. If the method
625 * name already exists in the namespace, it is overwritten. The
626 * input buffer must contain a valid DSDT or SSDT containing a
627 * single control method.
629 ******************************************************************************/
635 ACPI_TABLE_HEADER
*Table
= ACPI_CAST_PTR (ACPI_TABLE_HEADER
, Buffer
);
639 ACPI_NAMESPACE_NODE
*Node
;
640 ACPI_OPERAND_OBJECT
*MethodObj
;
641 ACPI_PARSE_STATE ParserState
;
648 /* Parameter validation */
652 return (AE_BAD_PARAMETER
);
655 /* Table must be a DSDT or SSDT */
657 if (!ACPI_COMPARE_NAME (Table
->Signature
, ACPI_SIG_DSDT
) &&
658 !ACPI_COMPARE_NAME (Table
->Signature
, ACPI_SIG_SSDT
))
660 return (AE_BAD_HEADER
);
663 /* First AML opcode in the table must be a control method */
665 ParserState
.Aml
= Buffer
+ sizeof (ACPI_TABLE_HEADER
);
666 Opcode
= AcpiPsPeekOpcode (&ParserState
);
667 if (Opcode
!= AML_METHOD_OP
)
669 return (AE_BAD_PARAMETER
);
672 /* Extract method information from the raw AML */
674 ParserState
.Aml
+= AcpiPsGetOpcodeSize (Opcode
);
675 ParserState
.PkgEnd
= AcpiPsGetNextPackageEnd (&ParserState
);
676 Path
= AcpiPsGetNextNamestring (&ParserState
);
677 MethodFlags
= *ParserState
.Aml
++;
678 AmlStart
= ParserState
.Aml
;
679 AmlLength
= ACPI_PTR_DIFF (ParserState
.PkgEnd
, AmlStart
);
682 * Allocate resources up-front. We don't want to have to delete a new
683 * node from the namespace if we cannot allocate memory.
685 AmlBuffer
= ACPI_ALLOCATE (AmlLength
);
688 return (AE_NO_MEMORY
);
691 MethodObj
= AcpiUtCreateInternalObject (ACPI_TYPE_METHOD
);
694 ACPI_FREE (AmlBuffer
);
695 return (AE_NO_MEMORY
);
698 /* Lock namespace for AcpiNsLookup, we may be creating a new node */
700 Status
= AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE
);
701 if (ACPI_FAILURE (Status
))
706 /* The lookup either returns an existing node or creates a new one */
708 Status
= AcpiNsLookup (NULL
, Path
, ACPI_TYPE_METHOD
, ACPI_IMODE_LOAD_PASS1
,
709 ACPI_NS_DONT_OPEN_SCOPE
| ACPI_NS_ERROR_IF_FOUND
, NULL
, &Node
);
711 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE
);
713 if (ACPI_FAILURE (Status
)) /* NsLookup */
715 if (Status
!= AE_ALREADY_EXISTS
)
720 /* Node existed previously, make sure it is a method node */
722 if (Node
->Type
!= ACPI_TYPE_METHOD
)
729 /* Copy the method AML to the local buffer */
731 ACPI_MEMCPY (AmlBuffer
, AmlStart
, AmlLength
);
733 /* Initialize the method object with the new method's information */
735 MethodObj
->Method
.AmlStart
= AmlBuffer
;
736 MethodObj
->Method
.AmlLength
= AmlLength
;
738 MethodObj
->Method
.ParamCount
= (UINT8
)
739 (MethodFlags
& AML_METHOD_ARG_COUNT
);
741 MethodObj
->Method
.MethodFlags
= (UINT8
)
742 (MethodFlags
& ~AML_METHOD_ARG_COUNT
);
744 if (MethodFlags
& AML_METHOD_SERIALIZED
)
746 MethodObj
->Method
.SyncLevel
= (UINT8
)
747 ((MethodFlags
& AML_METHOD_SYNC_LEVEL
) >> 4);
751 * Now that it is complete, we can attach the new method object to
752 * the method Node (detaches/deletes any existing object)
754 Status
= AcpiNsAttachObject (Node
, MethodObj
,
758 * Flag indicates AML buffer is dynamic, must be deleted later.
759 * Must be set only after attach above.
761 Node
->Flags
|= ANOBJ_ALLOCATED_BUFFER
;
763 /* Remove local reference to the method object */
765 AcpiUtRemoveReference (MethodObj
);
771 ACPI_FREE (AmlBuffer
);
772 ACPI_FREE (MethodObj
);
776 ACPI_EXPORT_SYMBOL (AcpiInstallMethod
)