1064eb4c6cf309abd40398b0b395b86f93bad973
[dragonfly.git] / sys / contrib / dev / acpica / source / tools / acpidump / acpidump.h
1 /******************************************************************************
2  *
3  * Module Name: acpidump.h - Include file for AcpiDump utility
4  *
5  *****************************************************************************/
6
7 /*
8  * Copyright (C) 2000 - 2014, Intel Corp.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions, and the following disclaimer,
16  *    without modification.
17  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18  *    substantially similar to the "NO WARRANTY" disclaimer below
19  *    ("Disclaimer") and any redistribution must be conditioned upon
20  *    including a substantially similar Disclaimer requirement for further
21  *    binary redistribution.
22  * 3. Neither the names of the above-listed copyright holders nor the names
23  *    of any contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * Alternatively, this software may be distributed under the terms of the
27  * GNU General Public License ("GPL") version 2 as published by the Free
28  * Software Foundation.
29  *
30  * NO WARRANTY
31  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41  * POSSIBILITY OF SUCH DAMAGES.
42  */
43
44
45 /*
46  * Global variables. Defined in main.c only, externed in all other files
47  */
48 #ifdef _DECLARE_GLOBALS
49 #define EXTERN
50 #define INIT_GLOBAL(a,b)        a=b
51 #define DEFINE_ACPI_GLOBALS     1
52 #else
53 #define EXTERN                  extern
54 #define INIT_GLOBAL(a,b)        a
55 #endif
56
57 #include "acpi.h"
58 #include "accommon.h"
59 #include "actables.h"
60
61 #include <stdio.h>
62 #include <fcntl.h>
63 #include <errno.h>
64 #include <sys/stat.h>
65
66
67 /* Globals */
68
69 EXTERN BOOLEAN              INIT_GLOBAL (Gbl_SummaryMode, FALSE);
70 EXTERN BOOLEAN              INIT_GLOBAL (Gbl_VerboseMode, FALSE);
71 EXTERN BOOLEAN              INIT_GLOBAL (Gbl_BinaryMode, FALSE);
72 EXTERN BOOLEAN              INIT_GLOBAL (Gbl_DumpCustomizedTables, FALSE);
73 EXTERN BOOLEAN              INIT_GLOBAL (Gbl_DoNotDumpXsdt, FALSE);
74 EXTERN FILE                 INIT_GLOBAL (*Gbl_OutputFile, NULL);
75 EXTERN char                 INIT_GLOBAL (*Gbl_OutputFilename, NULL);
76 EXTERN UINT64               INIT_GLOBAL (Gbl_RsdpBase, 0);
77
78 /* Globals required for use with ACPICA modules */
79
80 #ifdef _DECLARE_GLOBALS
81 UINT8                       AcpiGbl_IntegerByteWidth = 8;
82 #endif
83
84 /* Action table used to defer requested options */
85
86 typedef struct ap_dump_action
87 {
88     char                    *Argument;
89     UINT32                  ToBeDone;
90
91 } AP_DUMP_ACTION;
92
93 #define AP_MAX_ACTIONS              32
94
95 #define AP_DUMP_ALL_TABLES          0
96 #define AP_DUMP_TABLE_BY_ADDRESS    1
97 #define AP_DUMP_TABLE_BY_NAME       2
98 #define AP_DUMP_TABLE_BY_FILE       3
99
100 #define AP_MAX_ACPI_FILES           256 /* Prevent infinite loops */
101
102 /* Minimum FADT sizes for various table addresses */
103
104 #define MIN_FADT_FOR_DSDT           (ACPI_FADT_OFFSET (Dsdt) + sizeof (UINT32))
105 #define MIN_FADT_FOR_FACS           (ACPI_FADT_OFFSET (Facs) + sizeof (UINT32))
106 #define MIN_FADT_FOR_XDSDT          (ACPI_FADT_OFFSET (XDsdt) + sizeof (UINT64))
107 #define MIN_FADT_FOR_XFACS          (ACPI_FADT_OFFSET (XFacs) + sizeof (UINT64))
108
109
110 /*
111  * apdump - Table get/dump routines
112  */
113 int
114 ApDumpTableFromFile (
115     char                    *Pathname);
116
117 int
118 ApDumpTableByName (
119     char                    *Signature);
120
121 int
122 ApDumpTableByAddress (
123     char                    *AsciiAddress);
124
125 int
126 ApDumpAllTables (
127     void);
128
129 BOOLEAN
130 ApIsValidHeader (
131     ACPI_TABLE_HEADER       *Table);
132
133 BOOLEAN
134 ApIsValidChecksum (
135     ACPI_TABLE_HEADER       *Table);
136
137 UINT32
138 ApGetTableLength (
139     ACPI_TABLE_HEADER       *Table);
140
141
142 /*
143  * apfiles - File I/O utilities
144  */
145 int
146 ApOpenOutputFile (
147     char                    *Pathname);
148
149 int
150 ApWriteToBinaryFile (
151     ACPI_TABLE_HEADER       *Table,
152     UINT32                  Instance);
153
154 ACPI_TABLE_HEADER *
155 ApGetTableFromFile (
156     char                    *Pathname,
157     UINT32                  *FileSize);