1 /******************************************************************************
2 *
3 * Module Name: acapps - common include for ACPI applications/tools
4 *
5 *****************************************************************************/
6
7 /*
8 * Copyright (C) 2000 - 2011, 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.
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 #ifndef _ACAPPS
45 #define _ACAPPS
46
47
48 #ifdef _MSC_VER /* disable some level-4 warnings */
49 #pragma warning(disable:4100) /* warning C4100: unreferenced formal parameter */
50 #endif
51
52 /* Common info for tool signons */
53
54 #define ACPICA_NAME "Intel ACPI Component Architecture"
55 #define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2011 Intel Corporation"
56
57 #if ACPI_MACHINE_WIDTH == 64
58 #define ACPI_WIDTH "-64"
59
60 #elif ACPI_MACHINE_WIDTH == 32
61 #define ACPI_WIDTH "-32"
62
63 #else
64 #error unknown ACPI_MACHINE_WIDTH
65 #define ACPI_WIDTH "-??"
66
67 #endif
68
69 /* Macros for signons and file headers */
70
71 #define ACPI_COMMON_SIGNON(UtilityName) \
72 "\n%s\n%s version %8.8X%s [%s]\n%s\n\n", \
73 ACPICA_NAME, \
74 UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
75 ACPICA_COPYRIGHT
76
77 #define ACPI_COMMON_HEADER(UtilityName, Prefix) \
78 "%s%s\n%s%s version %8.8X%s [%s]\n%s%s\n%s\n", \
79 Prefix, ACPICA_NAME, \
80 Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
81 Prefix, ACPICA_COPYRIGHT, \
82 Prefix
83
84 #define FILE_SUFFIX_DISASSEMBLY "dsl"
85 #define ACPI_TABLE_FILE_SUFFIX ".dat"
86
87
88 /*
89 * getopt
90 */
91 int
92 AcpiGetopt(
93 int argc,
94 char **argv,
95 char *opts);
96
97 extern int AcpiGbl_Optind;
98 extern int AcpiGbl_Opterr;
99 extern char *AcpiGbl_Optarg;
100
101
102 /*
103 * adisasm
104 */
105 ACPI_STATUS
106 AdAmlDisassemble (
107 BOOLEAN OutToFile,
108 char *Filename,
109 char *Prefix,
110 char **OutFilename,
111 BOOLEAN GetAllTables);
112
113 void
114 AdPrintStatistics (
115 void);
116
117 ACPI_STATUS
118 AdFindDsdt(
119 UINT8 **DsdtPtr,
120 UINT32 *DsdtLength);
121
186 char *InputFilename,
187 char *Suffix);
188
189 ACPI_STATUS
190 FlSplitInputPathname (
191 char *InputPath,
192 char **OutDirectoryPath,
193 char **OutFilename);
194
195 char *
196 AdGenerateFilename (
197 char *Prefix,
198 char *TableId);
199
200 void
201 AdWriteTable (
202 ACPI_TABLE_HEADER *Table,
203 UINT32 Length,
204 char *TableName,
205 char *OemTableId);
206
207 #endif /* _ACAPPS */
208
|
1 /******************************************************************************
2 *
3 * Module Name: acapps - common include for ACPI applications/tools
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.
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 #ifndef _ACAPPS
45 #define _ACAPPS
46
47
48 #ifdef _MSC_VER /* disable some level-4 warnings */
49 #pragma warning(disable:4100) /* warning C4100: unreferenced formal parameter */
50 #endif
51
52 /* Common info for tool signons */
53
54 #define ACPICA_NAME "Intel ACPI Component Architecture"
55 #define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2014 Intel Corporation"
56
57 #if ACPI_MACHINE_WIDTH == 64
58 #define ACPI_WIDTH "-64"
59
60 #elif ACPI_MACHINE_WIDTH == 32
61 #define ACPI_WIDTH "-32"
62
63 #else
64 #error unknown ACPI_MACHINE_WIDTH
65 #define ACPI_WIDTH "-??"
66
67 #endif
68
69 /* Macros for signons and file headers */
70
71 #define ACPI_COMMON_SIGNON(UtilityName) \
72 "\n%s\n%s version %8.8X%s [%s]\n%s\n\n", \
73 ACPICA_NAME, \
74 UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
75 ACPICA_COPYRIGHT
76
77 #define ACPI_COMMON_HEADER(UtilityName, Prefix) \
78 "%s%s\n%s%s version %8.8X%s [%s]\n%s%s\n%s\n", \
79 Prefix, ACPICA_NAME, \
80 Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
81 Prefix, ACPICA_COPYRIGHT, \
82 Prefix
83
84 /* Macros for usage messages */
85
86 #define ACPI_USAGE_HEADER(Usage) \
87 printf ("Usage: %s\nOptions:\n", Usage);
88
89 #define ACPI_OPTION(Name, Description) \
90 printf (" %-18s%s\n", Name, Description);
91
92
93 #define FILE_SUFFIX_DISASSEMBLY "dsl"
94 #define ACPI_TABLE_FILE_SUFFIX ".dat"
95
96
97 /*
98 * getopt
99 */
100 int
101 AcpiGetopt(
102 int argc,
103 char **argv,
104 char *opts);
105
106 int
107 AcpiGetoptArgument (
108 int argc,
109 char **argv);
110
111 extern int AcpiGbl_Optind;
112 extern int AcpiGbl_Opterr;
113 extern int AcpiGbl_SubOptChar;
114 extern char *AcpiGbl_Optarg;
115
116
117 #ifndef ACPI_DUMP_APP
118 /*
119 * adisasm
120 */
121 ACPI_STATUS
122 AdAmlDisassemble (
123 BOOLEAN OutToFile,
124 char *Filename,
125 char *Prefix,
126 char **OutFilename,
127 BOOLEAN GetAllTables);
128
129 void
130 AdPrintStatistics (
131 void);
132
133 ACPI_STATUS
134 AdFindDsdt(
135 UINT8 **DsdtPtr,
136 UINT32 *DsdtLength);
137
202 char *InputFilename,
203 char *Suffix);
204
205 ACPI_STATUS
206 FlSplitInputPathname (
207 char *InputPath,
208 char **OutDirectoryPath,
209 char **OutFilename);
210
211 char *
212 AdGenerateFilename (
213 char *Prefix,
214 char *TableId);
215
216 void
217 AdWriteTable (
218 ACPI_TABLE_HEADER *Table,
219 UINT32 Length,
220 char *TableName,
221 char *OemTableId);
222 #endif
223
224 #endif /* _ACAPPS */
|