i386/identcpu.c: Add VIA Nano support
[dragonfly.git] / sys / contrib / dev / acpica-unix-20061109 / tools / acpisrc / acpisrc.h
blob26ef06c60f58e4b5c2f8c90128af69db8e0e125d
2 /******************************************************************************
4 * Module Name: acpisrc.h - Include file for AcpiSrc utility
5 * $Revision: 1.39 $
7 *****************************************************************************/
9 /******************************************************************************
11 * 1. Copyright Notice
13 * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
14 * All rights reserved.
16 * 2. License
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights. You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.
23 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
24 * copy of the source code appearing in this file ("Covered Code") an
25 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
26 * base code distributed originally by Intel ("Original Intel Code") to copy,
27 * make derivatives, distribute, use and display any portion of the Covered
28 * Code in any form, with the right to sublicense such rights; and
30 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
31 * license (with the right to sublicense), under only those claims of Intel
32 * patents that are infringed by the Original Intel Code, to make, use, sell,
33 * offer to sell, and import the Covered Code and derivative works thereof
34 * solely to the minimum extent necessary to exercise the above copyright
35 * license, and in no event shall the patent license extend to any additions
36 * to or modifications of the Original Intel Code. No other license or right
37 * is granted directly or by implication, estoppel or otherwise;
39 * The above copyright and patent license is granted only if the following
40 * conditions are met:
42 * 3. Conditions
44 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
45 * Redistribution of source code of any substantial portion of the Covered
46 * Code or modification with rights to further distribute source must include
47 * the above Copyright Notice, the above License, this list of Conditions,
48 * and the following Disclaimer and Export Compliance provision. In addition,
49 * Licensee must cause all Covered Code to which Licensee contributes to
50 * contain a file documenting the changes Licensee made to create that Covered
51 * Code and the date of any change. Licensee must include in that file the
52 * documentation of any changes made by any predecessor Licensee. Licensee
53 * must include a prominent statement that the modification is derived,
54 * directly or indirectly, from Original Intel Code.
56 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
57 * Redistribution of source code of any substantial portion of the Covered
58 * Code or modification without rights to further distribute source must
59 * include the following Disclaimer and Export Compliance provision in the
60 * documentation and/or other materials provided with distribution. In
61 * addition, Licensee may not authorize further sublicense of source of any
62 * portion of the Covered Code, and must include terms to the effect that the
63 * license from Licensee to its licensee is limited to the intellectual
64 * property embodied in the software Licensee provides to its licensee, and
65 * not to intellectual property embodied in modifications its licensee may
66 * make.
68 * 3.3. Redistribution of Executable. Redistribution in executable form of any
69 * substantial portion of the Covered Code or modification must reproduce the
70 * above Copyright Notice, and the following Disclaimer and Export Compliance
71 * provision in the documentation and/or other materials provided with the
72 * distribution.
74 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * Intel Code.
77 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
78 * Intel shall be used in advertising or otherwise to promote the sale, use or
79 * other dealings in products derived from or relating to the Covered Code
80 * without prior written authorization from Intel.
82 * 4. Disclaimer and Export Compliance
84 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
85 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
86 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
87 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government. In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
116 *****************************************************************************/
118 #define LINES_IN_LEGAL_HEADER 105 /* See above */
121 #include <stdio.h>
122 #include <sys/stat.h>
123 #include <sys/types.h>
124 #include <fcntl.h>
125 #include <ctype.h>
126 #ifdef WIN32
127 #include <io.h>
128 #include <direct.h>
129 #endif
130 #include <errno.h>
132 #include "acpi.h"
135 /* Fixups for non-Win32 compilation */
136 #ifndef WIN32
138 static inline int
139 max (int a, int b)
141 return (a > b ? a : b);
144 #define O_BINARY 0x0
146 #define mkdir(x) mkdir(x, 0770)
147 #define stricmp strcasecmp
149 char * strlwr(char* str);
151 #endif
154 /* Constants */
157 #define ASRC_MAX_FILE_SIZE (1024 * 100)
159 #define FILE_TYPE_SOURCE 1
160 #define FILE_TYPE_HEADER 2
161 #define FILE_TYPE_DIRECTORY 3
164 #define CVT_COUNT_TABS 0x00000001
165 #define CVT_COUNT_NON_ANSI_COMMENTS 0x00000002
166 #define CVT_TRIM_LINES 0x00000004
167 #define CVT_CHECK_BRACES 0x00000008
168 #define CVT_COUNT_LINES 0x00000010
169 #define CVT_BRACES_ON_SAME_LINE 0x00000020
170 #define CVT_MIXED_CASE_TO_UNDERSCORES 0x00000040
171 #define CVT_LOWER_CASE_IDENTIFIERS 0x00000080
172 #define CVT_REMOVE_DEBUG_MACROS 0x00000100
173 #define CVT_TRIM_WHITESPACE 0x00000200 /* Should be after all line removal */
174 #define CVT_REMOVE_EMPTY_BLOCKS 0x00000400 /* Should be after trimming lines */
175 #define CVT_REDUCE_TYPEDEFS 0x00000800
176 #define CVT_COUNT_SHORTMULTILINE_COMMENTS 0x00001000
177 #define CVT_SPACES_TO_TABS4 0x40000000 /* Tab conversion should be last */
178 #define CVT_SPACES_TO_TABS8 0x80000000 /* Tab conversion should be last */
181 #define FLG_DEFAULT_FLAGS 0x00000000
182 #define FLG_NO_CARRIAGE_RETURNS 0x00000001
183 #define FLG_NO_FILE_OUTPUT 0x00000002
184 #define FLG_LOWERCASE_DIRNAMES 0x00000004
186 #define AS_START_IGNORE "/*!"
187 #define AS_STOP_IGNORE "!*/"
190 /* Globals */
192 extern UINT32 Gbl_Files;
193 extern UINT32 Gbl_MissingBraces;
194 extern UINT32 Gbl_Tabs;
195 extern UINT32 Gbl_NonAnsiComments;
196 extern UINT32 Gbl_SourceLines;
197 extern UINT32 Gbl_WhiteLines;
198 extern UINT32 Gbl_CommentLines;
199 extern UINT32 Gbl_LongLines;
200 extern UINT32 Gbl_TotalLines;
201 extern struct stat Gbl_StatBuf;
202 extern char *Gbl_FileBuffer;
203 extern UINT32 Gbl_FileSize;
204 extern UINT32 Gbl_FileType;
205 extern BOOLEAN Gbl_VerboseMode;
206 extern BOOLEAN Gbl_BatchMode;
207 extern BOOLEAN Gbl_MadeChanges;
208 extern BOOLEAN Gbl_Overwrite;
209 extern BOOLEAN Gbl_WidenDeclarations;
210 extern BOOLEAN Gbl_IgnoreLoneLineFeeds;
211 extern void *Gbl_StructDefs;
213 #define PARAM_LIST(pl) pl
214 #define TERSE_PRINT(a) if (!Gbl_VerboseMode) printf PARAM_LIST(a)
215 #define VERBOSE_PRINT(a) if (Gbl_VerboseMode) printf PARAM_LIST(a)
218 #define REPLACE_WHOLE_WORD 0x00
219 #define REPLACE_SUBSTRINGS 0x01
220 #define REPLACE_MASK 0x01
222 #define EXTRA_INDENT_C 0x02
225 /* Conversion table structs */
227 typedef struct acpi_string_table
229 char *Target;
230 char *Replacement;
231 UINT8 Type;
233 } ACPI_STRING_TABLE;
236 typedef struct acpi_typed_identifier_table
238 char *Identifier;
239 UINT8 Type;
241 } ACPI_TYPED_IDENTIFIER_TABLE;
243 #define SRC_TYPE_SIMPLE 0
244 #define SRC_TYPE_STRUCT 1
245 #define SRC_TYPE_UNION 2
248 typedef struct acpi_identifier_table
250 char *Identifier;
252 } ACPI_IDENTIFIER_TABLE;
254 typedef struct acpi_conversion_table
256 char *NewHeader;
257 UINT32 Flags;
259 ACPI_TYPED_IDENTIFIER_TABLE *LowerCaseTable;
261 ACPI_STRING_TABLE *SourceStringTable;
262 ACPI_IDENTIFIER_TABLE *SourceLineTable;
263 ACPI_IDENTIFIER_TABLE *SourceConditionalTable;
264 ACPI_IDENTIFIER_TABLE *SourceMacroTable;
265 ACPI_TYPED_IDENTIFIER_TABLE *SourceStructTable;
266 UINT32 SourceFunctions;
268 ACPI_STRING_TABLE *HeaderStringTable;
269 ACPI_IDENTIFIER_TABLE *HeaderLineTable;
270 ACPI_IDENTIFIER_TABLE *HeaderConditionalTable;
271 ACPI_IDENTIFIER_TABLE *HeaderMacroTable;
272 ACPI_TYPED_IDENTIFIER_TABLE *HeaderStructTable;
273 UINT32 HeaderFunctions;
275 } ACPI_CONVERSION_TABLE;
278 /* Conversion tables */
280 extern ACPI_CONVERSION_TABLE LinuxConversionTable;
281 extern ACPI_CONVERSION_TABLE CleanupConversionTable;
282 extern ACPI_CONVERSION_TABLE StatsConversionTable;
283 extern ACPI_CONVERSION_TABLE CustomConversionTable;
286 /* Prototypes */
288 char *
289 AsSkipUntilChar (
290 char *Buffer,
291 char Target);
293 char *
294 AsSkipPastChar (
295 char *Buffer,
296 char Target);
298 char *
299 AsReplaceData (
300 char *Buffer,
301 UINT32 LengthToRemove,
302 char *BufferToAdd,
303 UINT32 LengthToAdd);
306 AsReplaceString (
307 char *Target,
308 char *Replacement,
309 UINT8 Type,
310 char *Buffer);
313 AsLowerCaseString (
314 char *Target,
315 char *Buffer);
317 void
318 AsRemoveLine (
319 char *Buffer,
320 char *Keyword);
322 void
323 AsRemoveMacro (
324 char *Buffer,
325 char *Keyword);
327 void
328 AsCheckForBraces (
329 char *Buffer,
330 char *Filename);
332 void
333 AsTrimLines (
334 char *Buffer,
335 char *Filename);
337 void
338 AsMixedCaseToUnderscores (
339 char *Buffer);
341 void
342 AsCountTabs (
343 char *Buffer,
344 char *Filename);
346 void
347 AsBracesOnSameLine (
348 char *Buffer);
350 void
351 AsLowerCaseIdentifiers (
352 char *Buffer);
354 void
355 AsReduceTypedefs (
356 char *Buffer,
357 char *Keyword);
359 void
360 AsRemoveDebugMacros (
361 char *Buffer);
363 void
364 AsRemoveEmptyBlocks (
365 char *Buffer,
366 char *Filename);
368 void
369 AsCountSourceLines (
370 char *Buffer,
371 char *Filename);
373 void
374 AsCountNonAnsiComments (
375 char *Buffer,
376 char *Filename);
378 void
379 AsTrimWhitespace (
380 char *Buffer);
382 void
383 AsTabify4 (
384 char *Buffer);
386 void
387 AsTabify8 (
388 char *Buffer);
390 void
391 AsRemoveConditionalCompile (
392 char *Buffer,
393 char *Keyword);
395 ACPI_NATIVE_INT
396 AsProcessTree (
397 ACPI_CONVERSION_TABLE *ConversionTable,
398 char *SourcePath,
399 char *TargetPath);
402 AsGetFile (
403 char *FileName,
404 char **FileBuffer,
405 UINT32 *FileSize);
408 AsPutFile (
409 char *Pathname,
410 char *FileBuffer,
411 UINT32 SystemFlags);
413 void
414 AsReplaceHeader (
415 char *Buffer,
416 char *NewHeader);
418 void
419 AsConvertFile (
420 ACPI_CONVERSION_TABLE *ConversionTable,
421 char *FileBuffer,
422 char *Filename,
423 ACPI_NATIVE_INT FileType);
425 ACPI_NATIVE_INT
426 AsProcessOneFile (
427 ACPI_CONVERSION_TABLE *ConversionTable,
428 char *SourcePath,
429 char *TargetPath,
430 int MaxPathLength,
431 char *Filename,
432 ACPI_NATIVE_INT FileType);
434 ACPI_NATIVE_INT
435 AsCheckForDirectory (
436 char *SourceDirPath,
437 char *TargetDirPath,
438 char *Filename,
439 char **SourcePath,
440 char **TargetPath);
442 BOOLEAN
443 AsMatchExactWord (
444 char *Word,
445 UINT32 WordLength);
447 void
448 AsPrint (
449 char *Message,
450 UINT32 Count,
451 char *Filename);
453 void
454 AsInsertPrefix (
455 char *Buffer,
456 char *Keyword,
457 UINT8 Type);
459 char *
460 AsInsertData (
461 char *Buffer,
462 char *BufferToAdd,
463 UINT32 LengthToAdd);
465 char *
466 AsRemoveData (
467 char *StartPointer,
468 char *EndPointer);
470 void
471 AsInsertCarriageReturns (
472 char *Buffer);
474 void
475 AsConvertToLineFeeds (
476 char *Buffer);