Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / contrib / dev / acpica / dmresrcl.c
1 /*******************************************************************************
2  *
3  * Module Name: dmresrcl.c - "Large" Resource Descriptor disassembly
4  *              $Revision: 10 $
5  *
6  ******************************************************************************/
7
8 /******************************************************************************
9  *
10  * 1. Copyright Notice
11  *
12  * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
13  * All rights reserved.
14  *
15  * 2. License
16  *
17  * 2.1. This is your license from Intel Corp. under its intellectual property
18  * rights.  You may have additional license terms from the party that provided
19  * you this software, covering your right to use that party's intellectual
20  * property rights.
21  *
22  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23  * copy of the source code appearing in this file ("Covered Code") an
24  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25  * base code distributed originally by Intel ("Original Intel Code") to copy,
26  * make derivatives, distribute, use and display any portion of the Covered
27  * Code in any form, with the right to sublicense such rights; and
28  *
29  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30  * license (with the right to sublicense), under only those claims of Intel
31  * patents that are infringed by the Original Intel Code, to make, use, sell,
32  * offer to sell, and import the Covered Code and derivative works thereof
33  * solely to the minimum extent necessary to exercise the above copyright
34  * license, and in no event shall the patent license extend to any additions
35  * to or modifications of the Original Intel Code.  No other license or right
36  * is granted directly or by implication, estoppel or otherwise;
37  *
38  * The above copyright and patent license is granted only if the following
39  * conditions are met:
40  *
41  * 3. Conditions
42  *
43  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44  * Redistribution of source code of any substantial portion of the Covered
45  * Code or modification with rights to further distribute source must include
46  * the above Copyright Notice, the above License, this list of Conditions,
47  * and the following Disclaimer and Export Compliance provision.  In addition,
48  * Licensee must cause all Covered Code to which Licensee contributes to
49  * contain a file documenting the changes Licensee made to create that Covered
50  * Code and the date of any change.  Licensee must include in that file the
51  * documentation of any changes made by any predecessor Licensee.  Licensee
52  * must include a prominent statement that the modification is derived,
53  * directly or indirectly, from Original Intel Code.
54  *
55  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56  * Redistribution of source code of any substantial portion of the Covered
57  * Code or modification without rights to further distribute source must
58  * include the following Disclaimer and Export Compliance provision in the
59  * documentation and/or other materials provided with distribution.  In
60  * addition, Licensee may not authorize further sublicense of source of any
61  * portion of the Covered Code, and must include terms to the effect that the
62  * license from Licensee to its licensee is limited to the intellectual
63  * property embodied in the software Licensee provides to its licensee, and
64  * not to intellectual property embodied in modifications its licensee may
65  * make.
66  *
67  * 3.3. Redistribution of Executable. Redistribution in executable form of any
68  * substantial portion of the Covered Code or modification must reproduce the
69  * above Copyright Notice, and the following Disclaimer and Export Compliance
70  * provision in the documentation and/or other materials provided with the
71  * distribution.
72  *
73  * 3.4. Intel retains all right, title, and interest in and to the Original
74  * Intel Code.
75  *
76  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77  * Intel shall be used in advertising or otherwise to promote the sale, use or
78  * other dealings in products derived from or relating to the Covered Code
79  * without prior written authorization from Intel.
80  *
81  * 4. Disclaimer and Export Compliance
82  *
83  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
86  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
87  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
88  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89  * PARTICULAR PURPOSE.
90  *
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
98  * LIMITED REMEDY.
99  *
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.
114  *
115  *****************************************************************************/
116 /* $DragonFly: src/sys/contrib/dev/acpica/Attic/dmresrcl.c,v 1.1 2003/09/24 03:32:15 drhodus Exp $                                                               */
117
118
119 #include "acpi.h"
120 #include "acdisasm.h"
121
122
123 #ifdef ACPI_DISASSEMBLER
124
125 #define _COMPONENT          ACPI_CA_DEBUGGER
126         ACPI_MODULE_NAME    ("dbresrcl")
127
128
129 /*******************************************************************************
130  *
131  * FUNCTION:    AcpiDmIoFlags
132  *
133  * PARAMETERS:  Flags               - Flag byte to be decoded
134  *
135  * RETURN:      None
136  *
137  * DESCRIPTION: Decode the flags specific to IO Address space descriptors
138  *
139  ******************************************************************************/
140
141 void
142 AcpiDmIoFlags (
143         UINT8               Flags)
144 {
145     AcpiOsPrintf ("%s, %s, %s, %s,",
146         AcpiGbl_ConsumeDecode [(Flags & 1)],
147         AcpiGbl_MinDecode [(Flags & 0x4) >> 2],
148         AcpiGbl_MaxDecode [(Flags & 0x8) >> 3],
149         AcpiGbl_DECDecode [(Flags & 0x2) >> 1]);
150 }
151
152
153 /*******************************************************************************
154  *
155  * FUNCTION:    AcpiDmMemoryFlags
156  *
157  * PARAMETERS:  Flags               - Flag byte to be decoded
158  *              SpecificFlags       - "Specific" flag byte to be decoded
159  *
160  * RETURN:      None
161  *
162  * DESCRIPTION: Decode flags specific to Memory Address Space descriptors
163  *
164  ******************************************************************************/
165
166 void
167 AcpiDmMemoryFlags (
168     UINT8                   Flags,
169     UINT8                   SpecificFlags)
170 {
171     AcpiOsPrintf ("%s, %s, %s, %s, %s, %s,",
172         AcpiGbl_ConsumeDecode [(Flags & 1)],
173         AcpiGbl_DECDecode [(Flags & 0x2) >> 1],
174         AcpiGbl_MinDecode [(Flags & 0x4) >> 2],
175         AcpiGbl_MaxDecode [(Flags & 0x8) >> 3],
176         AcpiGbl_MEMDecode [(SpecificFlags & 0x6) >> 1],
177         AcpiGbl_RWDecode [(SpecificFlags & 0x1)]);
178 }
179
180
181 /*******************************************************************************
182  *
183  * FUNCTION:    AcpiDmWordDescriptor
184  *
185  * PARAMETERS:  Resource            - Pointer to the resource descriptor
186  *              Length              - Length of the descriptor in bytes
187  *              Level               - Current source code indentation level
188  *
189  * RETURN:      None
190  *
191  * DESCRIPTION: Decode a Word Address Space descriptor
192  *
193  ******************************************************************************/
194
195 void
196 AcpiDmWordDescriptor (
197     ASL_WORD_ADDRESS_DESC   *Resource,
198     UINT32                  Length,
199     UINT32                  Level)
200 {
201
202     AcpiDmIndent (Level);
203     AcpiOsPrintf ("%s (",
204         AcpiGbl_WordDecode [(Resource->ResourceType & 3)]);
205
206     AcpiDmIoFlags (Resource->Flags);
207
208     if ((Resource->ResourceType & 0x3) == 1)
209     {
210         AcpiOsPrintf (" %s,",
211             AcpiGbl_RNGDecode [(Resource->SpecificFlags & 0x3)]);
212     }
213
214     /* The WORD values */
215
216     AcpiOsPrintf ("\n");
217     AcpiDmIndent (Level + 1);
218     AcpiOsPrintf ("0x%4.4X,\n",
219         (UINT32) Resource->Granularity);
220     AcpiDmIndent (Level + 1);
221     AcpiOsPrintf ("0x%4.4X,\n",
222         (UINT32) Resource->AddressMin);
223     AcpiDmIndent (Level + 1);
224     AcpiOsPrintf ("0x%4.4X,\n",
225         (UINT32) Resource->AddressMax);
226     AcpiDmIndent (Level + 1);
227     AcpiOsPrintf ("0x%4.4X,\n",
228         (UINT32) Resource->TranslationOffset);
229     AcpiDmIndent (Level + 1);
230     AcpiOsPrintf ("0x%4.4X",
231         (UINT32) Resource->AddressLength);
232
233     /* Optional fields */
234
235     if (Length > 13)
236     {
237         AcpiOsPrintf (", 0x%2.2X",
238             (UINT32) Resource->OptionalFields[0]);
239     }
240
241     if (Length > 14)
242     {
243         AcpiOsPrintf (", %s",
244             &Resource->OptionalFields[1]);
245     }
246     AcpiOsPrintf (")\n");
247 }
248
249
250 /*******************************************************************************
251  *
252  * FUNCTION:    AcpiDmDwordDescriptor
253  *
254  * PARAMETERS:  Resource            - Pointer to the resource descriptor
255  *              Length              - Length of the descriptor in bytes
256  *              Level               - Current source code indentation level
257  *
258  * RETURN:      None
259  *
260  * DESCRIPTION: Decode a DWord Address Space descriptor
261  *
262  ******************************************************************************/
263
264 void
265 AcpiDmDwordDescriptor (
266     ASL_DWORD_ADDRESS_DESC  *Resource,
267     UINT32                  Length,
268     UINT32                  Level)
269 {
270
271     AcpiDmIndent (Level);
272     AcpiOsPrintf ("D%s (",
273         AcpiGbl_WordDecode [(Resource->ResourceType & 3)]);
274
275     if ((Resource->ResourceType & 0x3) == 1)
276     {
277         AcpiDmIoFlags (Resource->Flags);
278         AcpiOsPrintf (" %s,",
279             AcpiGbl_RNGDecode [(Resource->SpecificFlags & 0x3)]);
280     }
281     else
282     {
283         AcpiDmMemoryFlags (Resource->Flags, Resource->SpecificFlags);
284     }
285
286     /* The DWORD values */
287
288     AcpiOsPrintf ("\n");
289     AcpiDmIndent (Level + 1);
290     AcpiOsPrintf ("0x%8.8X,\n",
291         Resource->Granularity);
292     AcpiDmIndent (Level + 1);
293     AcpiOsPrintf ("0x%8.8X,\n",
294         Resource->AddressMin);
295     AcpiDmIndent (Level + 1);
296     AcpiOsPrintf ("0x%8.8X,\n",
297         Resource->AddressMax);
298     AcpiDmIndent (Level + 1);
299     AcpiOsPrintf ("0x%8.8X,\n",
300         Resource->TranslationOffset);
301     AcpiDmIndent (Level + 1);
302     AcpiOsPrintf ("0x%8.8X",
303         Resource->AddressLength);
304
305     /* Optional fields */
306
307     if (Length > 23)
308     {
309         AcpiOsPrintf (", 0x%2.2X",
310             Resource->OptionalFields[0]);
311     }
312     if (Length > 24)
313     {
314         AcpiOsPrintf (", %s",
315             &Resource->OptionalFields[1]);
316     }
317     AcpiOsPrintf (")\n");
318 }
319
320
321 /*******************************************************************************
322  *
323  * FUNCTION:    AcpiDmQwordDescriptor
324  *
325  * PARAMETERS:  Resource            - Pointer to the resource descriptor
326  *              Length              - Length of the descriptor in bytes
327  *              Level               - Current source code indentation level
328  *
329  * RETURN:      None
330  *
331  * DESCRIPTION: Decode a QWord Address Space descriptor
332  *
333  ******************************************************************************/
334
335 void
336 AcpiDmQwordDescriptor (
337     ASL_QWORD_ADDRESS_DESC  *Resource,
338     UINT32                  Length,
339     UINT32                  Level)
340 {
341
342     AcpiDmIndent (Level);
343     AcpiOsPrintf ("Q%s (",
344         AcpiGbl_WordDecode [(Resource->ResourceType & 3)]);
345
346     if ((Resource->ResourceType & 0x3) == 1)
347     {
348         AcpiDmIoFlags (Resource->Flags);
349         AcpiOsPrintf (" %s,",
350             AcpiGbl_RNGDecode [(Resource->SpecificFlags & 0x3)]);
351     }
352     else
353     {
354         AcpiDmMemoryFlags (Resource->Flags, Resource->SpecificFlags);
355     }
356
357     /* The QWORD values */
358
359     AcpiOsPrintf ("\n");
360     AcpiDmIndent (Level + 1);
361     AcpiOsPrintf ("0x%8.8X%8.8X,\n",
362         ACPI_HIDWORD (ACPI_GET_ADDRESS (Resource->Granularity)),
363         ACPI_LODWORD (ACPI_GET_ADDRESS (Resource->Granularity)));
364
365     AcpiDmIndent (Level + 1);
366     AcpiOsPrintf ("0x%8.8X%8.8X,\n",
367         ACPI_HIDWORD (ACPI_GET_ADDRESS (Resource->AddressMin)),
368         ACPI_LODWORD (ACPI_GET_ADDRESS (Resource->AddressMin)));
369
370     AcpiDmIndent (Level + 1);
371     AcpiOsPrintf ("0x%8.8X%8.8X,\n",
372         ACPI_HIDWORD (ACPI_GET_ADDRESS (Resource->AddressMax)),
373         ACPI_LODWORD (ACPI_GET_ADDRESS (Resource->AddressMax)));
374
375     AcpiDmIndent (Level + 1);
376     AcpiOsPrintf ("0x%8.8X%8.8X,\n",
377         ACPI_HIDWORD (ACPI_GET_ADDRESS (Resource->TranslationOffset)),
378         ACPI_LODWORD (ACPI_GET_ADDRESS (Resource->TranslationOffset)));
379
380     AcpiDmIndent (Level + 1);
381     AcpiOsPrintf ("0x%8.8X%8.8X",
382         ACPI_HIDWORD (ACPI_GET_ADDRESS (Resource->AddressLength)),
383         ACPI_LODWORD (ACPI_GET_ADDRESS (Resource->AddressLength)));
384
385     /* Optional fields */
386
387     if (Length > 43)
388     {
389         AcpiOsPrintf (", 0x%2.2X",
390             Resource->OptionalFields[0]);
391     }
392     if (Length > 44)
393     {
394         AcpiOsPrintf (", %s",
395             &Resource->OptionalFields[1]);
396     }
397
398     AcpiOsPrintf (")\n");
399 }
400
401
402 /*******************************************************************************
403  *
404  * FUNCTION:    AcpiDmMemory24Descriptor
405  *
406  * PARAMETERS:  Resource            - Pointer to the resource descriptor
407  *              Length              - Length of the descriptor in bytes
408  *              Level               - Current source code indentation level
409  *
410  * RETURN:      None
411  *
412  * DESCRIPTION: Decode a Memory24 descriptor
413  *
414  ******************************************************************************/
415
416 void
417 AcpiDmMemory24Descriptor (
418     ASL_MEMORY_24_DESC      *Resource,
419     UINT32                  Length,
420     UINT32                  Level)
421 {
422
423     AcpiDmIndent (Level);
424     AcpiOsPrintf ("Memory24 (%s, 0x%4.4X, 0x%4.4X, 0x%4.4X, 0x%4.4X)\n",
425         AcpiGbl_RWDecode [Resource->Information & 1],
426         (UINT32) Resource->AddressMin,
427         (UINT32) Resource->AddressMax,
428         (UINT32) Resource->Alignment,
429         (UINT32) Resource->RangeLength);
430 }
431
432
433 /*******************************************************************************
434  *
435  * FUNCTION:    AcpiDmMemory32Descriptor
436  *
437  * PARAMETERS:  Resource            - Pointer to the resource descriptor
438  *              Length              - Length of the descriptor in bytes
439  *              Level               - Current source code indentation level
440  *
441  * RETURN:      None
442  *
443  * DESCRIPTION: Decode a Memory32 descriptor
444  *
445  ******************************************************************************/
446
447 void
448 AcpiDmMemory32Descriptor (
449     ASL_MEMORY_32_DESC      *Resource,
450     UINT32                  Length,
451     UINT32                  Level)
452 {
453
454     AcpiDmIndent (Level);
455     AcpiOsPrintf ("Memory32 (%s, 0x%8.8X, 0x%8.8X, 0x%8.8X, 0x%8.8X)\n",
456         AcpiGbl_RWDecode [Resource->Information & 1],
457         Resource->AddressMin,
458         Resource->AddressMax,
459         Resource->Alignment,
460         Resource->RangeLength);
461 }
462
463
464 /*******************************************************************************
465  *
466  * FUNCTION:    AcpiDmFixedMem32Descriptor
467  *
468  * PARAMETERS:  Resource            - Pointer to the resource descriptor
469  *              Length              - Length of the descriptor in bytes
470  *              Level               - Current source code indentation level
471  *
472  * RETURN:      None
473  *
474  * DESCRIPTION: Decode a Fixed Memory32 descriptor
475  *
476  ******************************************************************************/
477
478 void
479 AcpiDmFixedMem32Descriptor (
480     ASL_FIXED_MEMORY_32_DESC *Resource,
481     UINT32                  Length,
482     UINT32                  Level)
483 {
484
485     AcpiDmIndent (Level);
486     AcpiOsPrintf ("Memory32Fixed (%s, 0x%8.8X, 0x%8.8X)\n",
487         AcpiGbl_RWDecode [Resource->Information & 1],
488         Resource->BaseAddress,
489         Resource->RangeLength);
490 }
491
492
493 /*******************************************************************************
494  *
495  * FUNCTION:    AcpiDmGenericRegisterDescriptor
496  *
497  * PARAMETERS:  Resource            - Pointer to the resource descriptor
498  *              Length              - Length of the descriptor in bytes
499  *              Level               - Current source code indentation level
500  *
501  * RETURN:      None
502  *
503  * DESCRIPTION: Decode a Generic Register descriptor
504  *
505  ******************************************************************************/
506
507 void
508 AcpiDmGenericRegisterDescriptor (
509     ASL_GENERAL_REGISTER_DESC *Resource,
510     UINT32                  Length,
511     UINT32                  Level)
512 {
513
514     AcpiDmIndent (Level);
515     AcpiOsPrintf ("Register (");
516
517     AcpiDmAddressSpace (Resource->AddressSpaceId);
518
519     AcpiOsPrintf ("0x%2.2X, 0x%2.2X, 0x%8.8X%8.8X)\n",
520         (UINT32) Resource->BitWidth,
521         (UINT32) Resource->BitOffset,
522         ACPI_HIDWORD (ACPI_GET_ADDRESS (Resource->Address)),
523         ACPI_LODWORD (ACPI_GET_ADDRESS (Resource->Address)));
524 }
525
526
527 /*******************************************************************************
528  *
529  * FUNCTION:    AcpiDmInterruptDescriptor
530  *
531  * PARAMETERS:  Resource            - Pointer to the resource descriptor
532  *              Length              - Length of the descriptor in bytes
533  *              Level               - Current source code indentation level
534  *
535  * RETURN:      None
536  *
537  * DESCRIPTION: Decode a extended Interrupt descriptor
538  *
539  ******************************************************************************/
540
541 void
542 AcpiDmInterruptDescriptor (
543     ASL_EXTENDED_XRUPT_DESC *Resource,
544     UINT32                  Length,
545     UINT32                  Level)
546 {
547     UINT32                  i;
548     UINT8                   *Rover;
549
550
551     AcpiDmIndent (Level);
552     AcpiOsPrintf ("Interrupt (%s, %s, %s, %s",
553         AcpiGbl_ConsumeDecode [(Resource->Flags & 1)],
554         AcpiGbl_HEDecode [(Resource->Flags >> 1) & 1],
555         AcpiGbl_LLDecode [(Resource->Flags >> 2) & 1],
556         AcpiGbl_SHRDecode [(Resource->Flags >> 3) & 1]);
557
558     /* Resource Index/Source, optional -- at end of descriptor */
559
560     if (Resource->Length > (UINT16) (4 * Resource->TableLength) + 2)
561     {
562         /* Get a pointer past the interrupt values */
563
564         Rover = ((UINT8 *) Resource) + ((4 * Resource->TableLength) + 5);
565
566         /* Resource Index */
567         /* Resource Source */
568
569         AcpiOsPrintf (", 0x%X, \"%s\"", (UINT32) Rover[0], (char *) &Rover[1]);
570     }
571
572     AcpiOsPrintf (")\n");
573     AcpiDmIndent (Level);
574     AcpiOsPrintf ("{\n");
575     for (i = 0; i < Resource->TableLength; i++)
576     {
577         AcpiDmIndent (Level + 1);
578         AcpiOsPrintf ("0x%8.8X,\n", (UINT32) Resource->InterruptNumber[i]);
579     }
580
581     AcpiDmIndent (Level);
582     AcpiOsPrintf ("}\n");
583 }
584
585
586 /*******************************************************************************
587  *
588  * FUNCTION:    AcpiDmVendorLargeDescriptor
589  *
590  * PARAMETERS:  Resource            - Pointer to the resource descriptor
591  *              Length              - Length of the descriptor in bytes
592  *              Level               - Current source code indentation level
593  *
594  * RETURN:      None
595  *
596  * DESCRIPTION: Decode a Vendor Large descriptor
597  *
598  ******************************************************************************/
599
600 void
601 AcpiDmVendorLargeDescriptor (
602     ASL_LARGE_VENDOR_DESC   *Resource,
603     UINT32                  Length,
604     UINT32                  Level)
605 {
606
607     AcpiDmIndent (Level);
608     AcpiOsPrintf ("VendorLong ()\n");
609     AcpiDmIndent (Level);
610
611     AcpiOsPrintf ("{\n");
612
613     AcpiDmDisasmByteList (Level + 1, (UINT8 *) Resource->VendorDefined, Length);
614     AcpiDmIndent (Level);
615     AcpiOsPrintf ("}\n");
616 }
617
618
619 #endif
620