xref: /onnv-gate/usr/src/uts/intel/io/acpica/resources/rscreate.c (revision 3446:5903aece022d)
1*3446Smrj /*******************************************************************************
2*3446Smrj  *
3*3446Smrj  * Module Name: rscreate - Create resource lists/tables
4*3446Smrj  *              $Revision: 1.77 $
5*3446Smrj  *
6*3446Smrj  ******************************************************************************/
7*3446Smrj 
8*3446Smrj /******************************************************************************
9*3446Smrj  *
10*3446Smrj  * 1. Copyright Notice
11*3446Smrj  *
12*3446Smrj  * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
13*3446Smrj  * All rights reserved.
14*3446Smrj  *
15*3446Smrj  * 2. License
16*3446Smrj  *
17*3446Smrj  * 2.1. This is your license from Intel Corp. under its intellectual property
18*3446Smrj  * rights.  You may have additional license terms from the party that provided
19*3446Smrj  * you this software, covering your right to use that party's intellectual
20*3446Smrj  * property rights.
21*3446Smrj  *
22*3446Smrj  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23*3446Smrj  * copy of the source code appearing in this file ("Covered Code") an
24*3446Smrj  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25*3446Smrj  * base code distributed originally by Intel ("Original Intel Code") to copy,
26*3446Smrj  * make derivatives, distribute, use and display any portion of the Covered
27*3446Smrj  * Code in any form, with the right to sublicense such rights; and
28*3446Smrj  *
29*3446Smrj  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30*3446Smrj  * license (with the right to sublicense), under only those claims of Intel
31*3446Smrj  * patents that are infringed by the Original Intel Code, to make, use, sell,
32*3446Smrj  * offer to sell, and import the Covered Code and derivative works thereof
33*3446Smrj  * solely to the minimum extent necessary to exercise the above copyright
34*3446Smrj  * license, and in no event shall the patent license extend to any additions
35*3446Smrj  * to or modifications of the Original Intel Code.  No other license or right
36*3446Smrj  * is granted directly or by implication, estoppel or otherwise;
37*3446Smrj  *
38*3446Smrj  * The above copyright and patent license is granted only if the following
39*3446Smrj  * conditions are met:
40*3446Smrj  *
41*3446Smrj  * 3. Conditions
42*3446Smrj  *
43*3446Smrj  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44*3446Smrj  * Redistribution of source code of any substantial portion of the Covered
45*3446Smrj  * Code or modification with rights to further distribute source must include
46*3446Smrj  * the above Copyright Notice, the above License, this list of Conditions,
47*3446Smrj  * and the following Disclaimer and Export Compliance provision.  In addition,
48*3446Smrj  * Licensee must cause all Covered Code to which Licensee contributes to
49*3446Smrj  * contain a file documenting the changes Licensee made to create that Covered
50*3446Smrj  * Code and the date of any change.  Licensee must include in that file the
51*3446Smrj  * documentation of any changes made by any predecessor Licensee.  Licensee
52*3446Smrj  * must include a prominent statement that the modification is derived,
53*3446Smrj  * directly or indirectly, from Original Intel Code.
54*3446Smrj  *
55*3446Smrj  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56*3446Smrj  * Redistribution of source code of any substantial portion of the Covered
57*3446Smrj  * Code or modification without rights to further distribute source must
58*3446Smrj  * include the following Disclaimer and Export Compliance provision in the
59*3446Smrj  * documentation and/or other materials provided with distribution.  In
60*3446Smrj  * addition, Licensee may not authorize further sublicense of source of any
61*3446Smrj  * portion of the Covered Code, and must include terms to the effect that the
62*3446Smrj  * license from Licensee to its licensee is limited to the intellectual
63*3446Smrj  * property embodied in the software Licensee provides to its licensee, and
64*3446Smrj  * not to intellectual property embodied in modifications its licensee may
65*3446Smrj  * make.
66*3446Smrj  *
67*3446Smrj  * 3.3. Redistribution of Executable. Redistribution in executable form of any
68*3446Smrj  * substantial portion of the Covered Code or modification must reproduce the
69*3446Smrj  * above Copyright Notice, and the following Disclaimer and Export Compliance
70*3446Smrj  * provision in the documentation and/or other materials provided with the
71*3446Smrj  * distribution.
72*3446Smrj  *
73*3446Smrj  * 3.4. Intel retains all right, title, and interest in and to the Original
74*3446Smrj  * Intel Code.
75*3446Smrj  *
76*3446Smrj  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77*3446Smrj  * Intel shall be used in advertising or otherwise to promote the sale, use or
78*3446Smrj  * other dealings in products derived from or relating to the Covered Code
79*3446Smrj  * without prior written authorization from Intel.
80*3446Smrj  *
81*3446Smrj  * 4. Disclaimer and Export Compliance
82*3446Smrj  *
83*3446Smrj  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84*3446Smrj  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85*3446Smrj  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
86*3446Smrj  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
87*3446Smrj  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
88*3446Smrj  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89*3446Smrj  * PARTICULAR PURPOSE.
90*3446Smrj  *
91*3446Smrj  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92*3446Smrj  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93*3446Smrj  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94*3446Smrj  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95*3446Smrj  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96*3446Smrj  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
97*3446Smrj  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98*3446Smrj  * LIMITED REMEDY.
99*3446Smrj  *
100*3446Smrj  * 4.3. Licensee shall not export, either directly or indirectly, any of this
101*3446Smrj  * software or system incorporating such software without first obtaining any
102*3446Smrj  * required license or other approval from the U. S. Department of Commerce or
103*3446Smrj  * any other agency or department of the United States Government.  In the
104*3446Smrj  * event Licensee exports any such software from the United States or
105*3446Smrj  * re-exports any such software from a foreign destination, Licensee shall
106*3446Smrj  * ensure that the distribution and export/re-export of the software is in
107*3446Smrj  * compliance with all laws, regulations, orders, or other restrictions of the
108*3446Smrj  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109*3446Smrj  * any of its subsidiaries will export/re-export any technical data, process,
110*3446Smrj  * software, or service, directly or indirectly, to any country for which the
111*3446Smrj  * United States government or any agency thereof requires an export license,
112*3446Smrj  * other governmental approval, or letter of assurance, without first obtaining
113*3446Smrj  * such license, approval or letter.
114*3446Smrj  *
115*3446Smrj  *****************************************************************************/
116*3446Smrj 
117*3446Smrj 
118*3446Smrj #define __RSCREATE_C__
119*3446Smrj 
120*3446Smrj #include "acpi.h"
121*3446Smrj #include "acresrc.h"
122*3446Smrj #include "amlcode.h"
123*3446Smrj #include "acnamesp.h"
124*3446Smrj 
125*3446Smrj #define _COMPONENT          ACPI_RESOURCES
126*3446Smrj         ACPI_MODULE_NAME    ("rscreate")
127*3446Smrj 
128*3446Smrj 
129*3446Smrj /*******************************************************************************
130*3446Smrj  *
131*3446Smrj  * FUNCTION:    AcpiRsCreateResourceList
132*3446Smrj  *
133*3446Smrj  * PARAMETERS:  AmlBuffer           - Pointer to the resource byte stream
134*3446Smrj  *              OutputBuffer        - Pointer to the user's buffer
135*3446Smrj  *
136*3446Smrj  * RETURN:      Status: AE_OK if okay, else a valid ACPI_STATUS code
137*3446Smrj  *              If OutputBuffer is not large enough, OutputBufferLength
138*3446Smrj  *              indicates how large OutputBuffer should be, else it
139*3446Smrj  *              indicates how may UINT8 elements of OutputBuffer are valid.
140*3446Smrj  *
141*3446Smrj  * DESCRIPTION: Takes the byte stream returned from a _CRS, _PRS control method
142*3446Smrj  *              execution and parses the stream to create a linked list
143*3446Smrj  *              of device resources.
144*3446Smrj  *
145*3446Smrj  ******************************************************************************/
146*3446Smrj 
147*3446Smrj ACPI_STATUS
148*3446Smrj AcpiRsCreateResourceList (
149*3446Smrj     ACPI_OPERAND_OBJECT     *AmlBuffer,
150*3446Smrj     ACPI_BUFFER             *OutputBuffer)
151*3446Smrj {
152*3446Smrj 
153*3446Smrj     ACPI_STATUS             Status;
154*3446Smrj     UINT8                   *AmlStart;
155*3446Smrj     ACPI_SIZE               ListSizeNeeded = 0;
156*3446Smrj     UINT32                  AmlBufferLength;
157*3446Smrj     void                    *Resource;
158*3446Smrj 
159*3446Smrj 
160*3446Smrj     ACPI_FUNCTION_TRACE (RsCreateResourceList);
161*3446Smrj 
162*3446Smrj 
163*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "AmlBuffer = %p\n",
164*3446Smrj         AmlBuffer));
165*3446Smrj 
166*3446Smrj     /* Params already validated, so we don't re-validate here */
167*3446Smrj 
168*3446Smrj     AmlBufferLength = AmlBuffer->Buffer.Length;
169*3446Smrj     AmlStart = AmlBuffer->Buffer.Pointer;
170*3446Smrj 
171*3446Smrj     /*
172*3446Smrj      * Pass the AmlBuffer into a module that can calculate
173*3446Smrj      * the buffer size needed for the linked list
174*3446Smrj      */
175*3446Smrj     Status = AcpiRsGetListLength (AmlStart, AmlBufferLength,
176*3446Smrj                 &ListSizeNeeded);
177*3446Smrj 
178*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Status=%X ListSizeNeeded=%X\n",
179*3446Smrj         Status, (UINT32) ListSizeNeeded));
180*3446Smrj     if (ACPI_FAILURE (Status))
181*3446Smrj     {
182*3446Smrj         return_ACPI_STATUS (Status);
183*3446Smrj     }
184*3446Smrj 
185*3446Smrj     /* Validate/Allocate/Clear caller buffer */
186*3446Smrj 
187*3446Smrj     Status = AcpiUtInitializeBuffer (OutputBuffer, ListSizeNeeded);
188*3446Smrj     if (ACPI_FAILURE (Status))
189*3446Smrj     {
190*3446Smrj         return_ACPI_STATUS (Status);
191*3446Smrj     }
192*3446Smrj 
193*3446Smrj     /* Do the conversion */
194*3446Smrj 
195*3446Smrj     Resource = OutputBuffer->Pointer;
196*3446Smrj     Status = AcpiUtWalkAmlResources (AmlStart, AmlBufferLength,
197*3446Smrj                 AcpiRsConvertAmlToResources, &Resource);
198*3446Smrj     if (ACPI_FAILURE (Status))
199*3446Smrj     {
200*3446Smrj         return_ACPI_STATUS (Status);
201*3446Smrj     }
202*3446Smrj 
203*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "OutputBuffer %p Length %X\n",
204*3446Smrj             OutputBuffer->Pointer, (UINT32) OutputBuffer->Length));
205*3446Smrj     return_ACPI_STATUS (AE_OK);
206*3446Smrj }
207*3446Smrj 
208*3446Smrj 
209*3446Smrj /*******************************************************************************
210*3446Smrj  *
211*3446Smrj  * FUNCTION:    AcpiRsCreatePciRoutingTable
212*3446Smrj  *
213*3446Smrj  * PARAMETERS:  PackageObject           - Pointer to an ACPI_OPERAND_OBJECT
214*3446Smrj  *                                        package
215*3446Smrj  *              OutputBuffer            - Pointer to the user's buffer
216*3446Smrj  *
217*3446Smrj  * RETURN:      Status  AE_OK if okay, else a valid ACPI_STATUS code.
218*3446Smrj  *              If the OutputBuffer is too small, the error will be
219*3446Smrj  *              AE_BUFFER_OVERFLOW and OutputBuffer->Length will point
220*3446Smrj  *              to the size buffer needed.
221*3446Smrj  *
222*3446Smrj  * DESCRIPTION: Takes the ACPI_OPERAND_OBJECT  package and creates a
223*3446Smrj  *              linked list of PCI interrupt descriptions
224*3446Smrj  *
225*3446Smrj  * NOTE: It is the caller's responsibility to ensure that the start of the
226*3446Smrj  * output buffer is aligned properly (if necessary).
227*3446Smrj  *
228*3446Smrj  ******************************************************************************/
229*3446Smrj 
230*3446Smrj ACPI_STATUS
231*3446Smrj AcpiRsCreatePciRoutingTable (
232*3446Smrj     ACPI_OPERAND_OBJECT     *PackageObject,
233*3446Smrj     ACPI_BUFFER             *OutputBuffer)
234*3446Smrj {
235*3446Smrj     UINT8                   *Buffer;
236*3446Smrj     ACPI_OPERAND_OBJECT     **TopObjectList;
237*3446Smrj     ACPI_OPERAND_OBJECT     **SubObjectList;
238*3446Smrj     ACPI_OPERAND_OBJECT     *ObjDesc;
239*3446Smrj     ACPI_SIZE               BufferSizeNeeded = 0;
240*3446Smrj     UINT32                  NumberOfElements;
241*3446Smrj     UINT32                  Index;
242*3446Smrj     ACPI_PCI_ROUTING_TABLE  *UserPrt;
243*3446Smrj     ACPI_NAMESPACE_NODE     *Node;
244*3446Smrj     ACPI_STATUS             Status;
245*3446Smrj     ACPI_BUFFER             PathBuffer;
246*3446Smrj 
247*3446Smrj 
248*3446Smrj     ACPI_FUNCTION_TRACE (RsCreatePciRoutingTable);
249*3446Smrj 
250*3446Smrj 
251*3446Smrj     /* Params already validated, so we don't re-validate here */
252*3446Smrj 
253*3446Smrj     /* Get the required buffer length */
254*3446Smrj 
255*3446Smrj     Status = AcpiRsGetPciRoutingTableLength (PackageObject,
256*3446Smrj                 &BufferSizeNeeded);
257*3446Smrj     if (ACPI_FAILURE (Status))
258*3446Smrj     {
259*3446Smrj         return_ACPI_STATUS (Status);
260*3446Smrj     }
261*3446Smrj 
262*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "BufferSizeNeeded = %X\n",
263*3446Smrj         (UINT32) BufferSizeNeeded));
264*3446Smrj 
265*3446Smrj     /* Validate/Allocate/Clear caller buffer */
266*3446Smrj 
267*3446Smrj     Status = AcpiUtInitializeBuffer (OutputBuffer, BufferSizeNeeded);
268*3446Smrj     if (ACPI_FAILURE (Status))
269*3446Smrj     {
270*3446Smrj         return_ACPI_STATUS (Status);
271*3446Smrj     }
272*3446Smrj 
273*3446Smrj     /*
274*3446Smrj      * Loop through the ACPI_INTERNAL_OBJECTS - Each object
275*3446Smrj      * should be a package that in turn contains an
276*3446Smrj      * ACPI_INTEGER Address, a UINT8 Pin, a Name and a UINT8 SourceIndex.
277*3446Smrj      */
278*3446Smrj     TopObjectList    = PackageObject->Package.Elements;
279*3446Smrj     NumberOfElements = PackageObject->Package.Count;
280*3446Smrj     Buffer           = OutputBuffer->Pointer;
281*3446Smrj     UserPrt          = ACPI_CAST_PTR (ACPI_PCI_ROUTING_TABLE, Buffer);
282*3446Smrj 
283*3446Smrj     for (Index = 0; Index < NumberOfElements; Index++)
284*3446Smrj     {
285*3446Smrj         /*
286*3446Smrj          * Point UserPrt past this current structure
287*3446Smrj          *
288*3446Smrj          * NOTE: On the first iteration, UserPrt->Length will
289*3446Smrj          * be zero because we cleared the return buffer earlier
290*3446Smrj          */
291*3446Smrj         Buffer += UserPrt->Length;
292*3446Smrj         UserPrt = ACPI_CAST_PTR (ACPI_PCI_ROUTING_TABLE, Buffer);
293*3446Smrj 
294*3446Smrj         /*
295*3446Smrj          * Fill in the Length field with the information we have at this point.
296*3446Smrj          * The minus four is to subtract the size of the UINT8 Source[4] member
297*3446Smrj          * because it is added below.
298*3446Smrj          */
299*3446Smrj         UserPrt->Length = (sizeof (ACPI_PCI_ROUTING_TABLE) - 4);
300*3446Smrj 
301*3446Smrj         /* Each element of the top-level package must also be a package */
302*3446Smrj 
303*3446Smrj         if (ACPI_GET_OBJECT_TYPE (*TopObjectList) != ACPI_TYPE_PACKAGE)
304*3446Smrj         {
305*3446Smrj             ACPI_ERROR ((AE_INFO,
306*3446Smrj                 "(PRT[%X]) Need sub-package, found %s",
307*3446Smrj                 Index, AcpiUtGetObjectTypeName (*TopObjectList)));
308*3446Smrj             return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
309*3446Smrj         }
310*3446Smrj 
311*3446Smrj         /* Each sub-package must be of length 4 */
312*3446Smrj 
313*3446Smrj         if ((*TopObjectList)->Package.Count != 4)
314*3446Smrj         {
315*3446Smrj             ACPI_ERROR ((AE_INFO,
316*3446Smrj                 "(PRT[%X]) Need package of length 4, found length %d",
317*3446Smrj                 Index, (*TopObjectList)->Package.Count));
318*3446Smrj             return_ACPI_STATUS (AE_AML_PACKAGE_LIMIT);
319*3446Smrj         }
320*3446Smrj 
321*3446Smrj         /*
322*3446Smrj          * Dereference the sub-package.
323*3446Smrj          * The SubObjectList will now point to an array of the four IRQ
324*3446Smrj          * elements: [Address, Pin, Source, SourceIndex]
325*3446Smrj          */
326*3446Smrj         SubObjectList = (*TopObjectList)->Package.Elements;
327*3446Smrj 
328*3446Smrj         /* 1) First subobject: Dereference the PRT.Address */
329*3446Smrj 
330*3446Smrj         ObjDesc = SubObjectList[0];
331*3446Smrj         if (ACPI_GET_OBJECT_TYPE (ObjDesc) == ACPI_TYPE_INTEGER)
332*3446Smrj         {
333*3446Smrj             UserPrt->Address = ObjDesc->Integer.Value;
334*3446Smrj         }
335*3446Smrj         else
336*3446Smrj         {
337*3446Smrj             ACPI_ERROR ((AE_INFO,
338*3446Smrj                 "(PRT[%X].Address) Need Integer, found %s",
339*3446Smrj                 Index, AcpiUtGetObjectTypeName (ObjDesc)));
340*3446Smrj             return_ACPI_STATUS (AE_BAD_DATA);
341*3446Smrj         }
342*3446Smrj 
343*3446Smrj         /* 2) Second subobject: Dereference the PRT.Pin */
344*3446Smrj 
345*3446Smrj         ObjDesc = SubObjectList[1];
346*3446Smrj         if (ACPI_GET_OBJECT_TYPE (ObjDesc) == ACPI_TYPE_INTEGER)
347*3446Smrj         {
348*3446Smrj             UserPrt->Pin = (UINT32) ObjDesc->Integer.Value;
349*3446Smrj         }
350*3446Smrj         else
351*3446Smrj         {
352*3446Smrj             ACPI_ERROR ((AE_INFO,
353*3446Smrj                 "(PRT[%X].Pin) Need Integer, found %s",
354*3446Smrj                 Index, AcpiUtGetObjectTypeName (ObjDesc)));
355*3446Smrj             return_ACPI_STATUS (AE_BAD_DATA);
356*3446Smrj         }
357*3446Smrj 
358*3446Smrj         /*
359*3446Smrj          * 3) Third subobject: Dereference the PRT.SourceName
360*3446Smrj          * The name may be unresolved (slack mode), so allow a null object
361*3446Smrj          */
362*3446Smrj         ObjDesc = SubObjectList[2];
363*3446Smrj         if (ObjDesc)
364*3446Smrj         {
365*3446Smrj             switch (ACPI_GET_OBJECT_TYPE (ObjDesc))
366*3446Smrj             {
367*3446Smrj             case ACPI_TYPE_LOCAL_REFERENCE:
368*3446Smrj 
369*3446Smrj                 if (ObjDesc->Reference.Opcode != AML_INT_NAMEPATH_OP)
370*3446Smrj                 {
371*3446Smrj                     ACPI_ERROR ((AE_INFO,
372*3446Smrj                         "(PRT[%X].Source) Need name, found reference op %X",
373*3446Smrj                         Index, ObjDesc->Reference.Opcode));
374*3446Smrj                     return_ACPI_STATUS (AE_BAD_DATA);
375*3446Smrj                 }
376*3446Smrj 
377*3446Smrj                 Node = ObjDesc->Reference.Node;
378*3446Smrj 
379*3446Smrj                 /* Use *remaining* length of the buffer as max for pathname */
380*3446Smrj 
381*3446Smrj                 PathBuffer.Length = OutputBuffer->Length -
382*3446Smrj                                     (UINT32) ((UINT8 *) UserPrt->Source -
383*3446Smrj                                     (UINT8 *) OutputBuffer->Pointer);
384*3446Smrj                 PathBuffer.Pointer = UserPrt->Source;
385*3446Smrj 
386*3446Smrj                 Status = AcpiNsHandleToPathname ((ACPI_HANDLE) Node, &PathBuffer);
387*3446Smrj 
388*3446Smrj                 /* +1 to include null terminator */
389*3446Smrj 
390*3446Smrj                 UserPrt->Length += (UINT32) ACPI_STRLEN (UserPrt->Source) + 1;
391*3446Smrj                 break;
392*3446Smrj 
393*3446Smrj 
394*3446Smrj             case ACPI_TYPE_STRING:
395*3446Smrj 
396*3446Smrj                 ACPI_STRCPY (UserPrt->Source, ObjDesc->String.Pointer);
397*3446Smrj 
398*3446Smrj                 /*
399*3446Smrj                  * Add to the Length field the length of the string
400*3446Smrj                  * (add 1 for terminator)
401*3446Smrj                  */
402*3446Smrj                 UserPrt->Length += ObjDesc->String.Length + 1;
403*3446Smrj                 break;
404*3446Smrj 
405*3446Smrj 
406*3446Smrj             case ACPI_TYPE_INTEGER:
407*3446Smrj                 /*
408*3446Smrj                  * If this is a number, then the Source Name is NULL, since the
409*3446Smrj                  * entire buffer was zeroed out, we can leave this alone.
410*3446Smrj                  *
411*3446Smrj                  * Add to the Length field the length of the UINT32 NULL
412*3446Smrj                  */
413*3446Smrj                 UserPrt->Length += sizeof (UINT32);
414*3446Smrj                 break;
415*3446Smrj 
416*3446Smrj 
417*3446Smrj             default:
418*3446Smrj 
419*3446Smrj                ACPI_ERROR ((AE_INFO,
420*3446Smrj                    "(PRT[%X].Source) Need Ref/String/Integer, found %s",
421*3446Smrj                    Index, AcpiUtGetObjectTypeName (ObjDesc)));
422*3446Smrj                return_ACPI_STATUS (AE_BAD_DATA);
423*3446Smrj             }
424*3446Smrj         }
425*3446Smrj 
426*3446Smrj         /* Now align the current length */
427*3446Smrj 
428*3446Smrj         UserPrt->Length = (UINT32) ACPI_ROUND_UP_TO_64BIT (UserPrt->Length);
429*3446Smrj 
430*3446Smrj         /* 4) Fourth subobject: Dereference the PRT.SourceIndex */
431*3446Smrj 
432*3446Smrj         ObjDesc = SubObjectList[3];
433*3446Smrj         if (ACPI_GET_OBJECT_TYPE (ObjDesc) == ACPI_TYPE_INTEGER)
434*3446Smrj         {
435*3446Smrj             UserPrt->SourceIndex = (UINT32) ObjDesc->Integer.Value;
436*3446Smrj         }
437*3446Smrj         else
438*3446Smrj         {
439*3446Smrj             ACPI_ERROR ((AE_INFO,
440*3446Smrj                 "(PRT[%X].SourceIndex) Need Integer, found %s",
441*3446Smrj                 Index, AcpiUtGetObjectTypeName (ObjDesc)));
442*3446Smrj             return_ACPI_STATUS (AE_BAD_DATA);
443*3446Smrj         }
444*3446Smrj 
445*3446Smrj         /* Point to the next ACPI_OPERAND_OBJECT in the top level package */
446*3446Smrj 
447*3446Smrj         TopObjectList++;
448*3446Smrj     }
449*3446Smrj 
450*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "OutputBuffer %p Length %X\n",
451*3446Smrj             OutputBuffer->Pointer, (UINT32) OutputBuffer->Length));
452*3446Smrj     return_ACPI_STATUS (AE_OK);
453*3446Smrj }
454*3446Smrj 
455*3446Smrj 
456*3446Smrj /*******************************************************************************
457*3446Smrj  *
458*3446Smrj  * FUNCTION:    AcpiRsCreateAmlResources
459*3446Smrj  *
460*3446Smrj  * PARAMETERS:  LinkedListBuffer        - Pointer to the resource linked list
461*3446Smrj  *              OutputBuffer            - Pointer to the user's buffer
462*3446Smrj  *
463*3446Smrj  * RETURN:      Status  AE_OK if okay, else a valid ACPI_STATUS code.
464*3446Smrj  *              If the OutputBuffer is too small, the error will be
465*3446Smrj  *              AE_BUFFER_OVERFLOW and OutputBuffer->Length will point
466*3446Smrj  *              to the size buffer needed.
467*3446Smrj  *
468*3446Smrj  * DESCRIPTION: Takes the linked list of device resources and
469*3446Smrj  *              creates a bytestream to be used as input for the
470*3446Smrj  *              _SRS control method.
471*3446Smrj  *
472*3446Smrj  ******************************************************************************/
473*3446Smrj 
474*3446Smrj ACPI_STATUS
475*3446Smrj AcpiRsCreateAmlResources (
476*3446Smrj     ACPI_RESOURCE           *LinkedListBuffer,
477*3446Smrj     ACPI_BUFFER             *OutputBuffer)
478*3446Smrj {
479*3446Smrj     ACPI_STATUS             Status;
480*3446Smrj     ACPI_SIZE               AmlSizeNeeded = 0;
481*3446Smrj 
482*3446Smrj 
483*3446Smrj     ACPI_FUNCTION_TRACE (RsCreateAmlResources);
484*3446Smrj 
485*3446Smrj 
486*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "LinkedListBuffer = %p\n",
487*3446Smrj         LinkedListBuffer));
488*3446Smrj 
489*3446Smrj     /*
490*3446Smrj      * Params already validated, so we don't re-validate here
491*3446Smrj      *
492*3446Smrj      * Pass the LinkedListBuffer into a module that calculates
493*3446Smrj      * the buffer size needed for the byte stream.
494*3446Smrj      */
495*3446Smrj     Status = AcpiRsGetAmlLength (LinkedListBuffer,
496*3446Smrj                 &AmlSizeNeeded);
497*3446Smrj 
498*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "AmlSizeNeeded=%X, %s\n",
499*3446Smrj         (UINT32) AmlSizeNeeded, AcpiFormatException (Status)));
500*3446Smrj     if (ACPI_FAILURE (Status))
501*3446Smrj     {
502*3446Smrj         return_ACPI_STATUS (Status);
503*3446Smrj     }
504*3446Smrj 
505*3446Smrj     /* Validate/Allocate/Clear caller buffer */
506*3446Smrj 
507*3446Smrj     Status = AcpiUtInitializeBuffer (OutputBuffer, AmlSizeNeeded);
508*3446Smrj     if (ACPI_FAILURE (Status))
509*3446Smrj     {
510*3446Smrj         return_ACPI_STATUS (Status);
511*3446Smrj     }
512*3446Smrj 
513*3446Smrj     /* Do the conversion */
514*3446Smrj 
515*3446Smrj     Status = AcpiRsConvertResourcesToAml (LinkedListBuffer, AmlSizeNeeded,
516*3446Smrj                     OutputBuffer->Pointer);
517*3446Smrj     if (ACPI_FAILURE (Status))
518*3446Smrj     {
519*3446Smrj         return_ACPI_STATUS (Status);
520*3446Smrj     }
521*3446Smrj 
522*3446Smrj     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "OutputBuffer %p Length %X\n",
523*3446Smrj             OutputBuffer->Pointer, (UINT32) OutputBuffer->Length));
524*3446Smrj     return_ACPI_STATUS (AE_OK);
525*3446Smrj }
526*3446Smrj 
527