Fixed compatibility of output.
[AROS.git] / arch / all-pc / acpica / source / tools / acpihelp / ahmain.c
blob036ab7577aecf3a9258ff8f384a97d48f378d240
1 /******************************************************************************
3 * Module Name: ahmain - Main module for the acpi help utility
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2013, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include "acpihelp.h"
47 /* Local prototypes */
49 static void
50 AhDisplayUsage (
51 void);
53 #define AH_UTILITY_NAME "ACPI Help Utility"
54 #define AH_SUPPORTED_OPTIONS "ehikmopsv"
57 /******************************************************************************
59 * FUNCTION: AhDisplayUsage
61 * DESCRIPTION: Usage message
63 ******************************************************************************/
65 static void
66 AhDisplayUsage (
67 void)
70 ACPI_USAGE_HEADER ("acpihelp <options> [NamePrefix | HexValue]");
71 ACPI_OPTION ("-h", "Display help");
72 ACPI_OPTION ("-v", "Display version information");
74 printf ("\nACPI Names and Symbols:\n");
75 ACPI_OPTION ("-k [NamePrefix]", "Find/Display ASL non-operator keyword(s)");
76 ACPI_OPTION ("-m [NamePrefix]", "Find/Display AML opcode name(s)");
77 ACPI_OPTION ("-p [NamePrefix]", "Find/Display ASL predefined method name(s)");
78 ACPI_OPTION ("-s [NamePrefix]", "Find/Display ASL operator name(s)");
80 printf ("\nACPI Values:\n");
81 ACPI_OPTION ("-e [HexValue]", "Decode ACPICA exception code");
82 ACPI_OPTION ("-i", "Display known ACPI Device IDs (_HID)");
83 ACPI_OPTION ("-o [HexValue]", "Decode hex AML opcode");
85 printf ("\nNamePrefix/HexValue not specified means \"Display All\"\n");
86 printf ("\nDefault search with NamePrefix and no options:\n");
87 printf (" Find ASL operator names - if NamePrefix does not start with underscore\n");
88 printf (" Find ASL predefined method names - if NamePrefix starts with underscore\n");
92 /******************************************************************************
94 * FUNCTION: main
96 * DESCRIPTION: C main function for AcpiHelp utility.
98 ******************************************************************************/
100 int ACPI_SYSTEM_XFACE
101 main (
102 int argc,
103 char *argv[])
105 char *Name;
106 UINT32 DecodeType;
107 int j;
110 ACPI_DEBUG_INITIALIZE (); /* For debug version only */
111 printf (ACPI_COMMON_SIGNON (AH_UTILITY_NAME));
112 DecodeType = AH_DECODE_DEFAULT;
114 if (argc < 2)
116 AhDisplayUsage ();
117 return (0);
120 /* Command line options */
122 while ((j = AcpiGetopt (argc, argv, AH_SUPPORTED_OPTIONS)) != EOF) switch (j)
124 case 'e':
126 DecodeType = AH_DECODE_EXCEPTION;
127 break;
129 case 'i':
131 DecodeType = AH_DISPLAY_DEVICE_IDS;
132 break;
134 case 'k':
136 DecodeType = AH_DECODE_ASL_KEYWORD;
137 break;
139 case 'm':
141 DecodeType = AH_DECODE_AML;
142 break;
144 case 'o':
146 DecodeType = AH_DECODE_AML_OPCODE;
147 break;
149 case 'p':
151 DecodeType = AH_DECODE_PREDEFINED_NAME;
152 break;
154 case 's':
156 DecodeType = AH_DECODE_ASL;
157 break;
159 case 'v': /* -v: (Version): signon already emitted, just exit */
161 return (0);
163 case 'h':
164 default:
166 AhDisplayUsage ();
167 return (-1);
170 /* Missing (null) name means "display all" */
172 Name = argv[AcpiGbl_Optind];
174 switch (DecodeType)
176 case AH_DECODE_AML:
178 AhFindAmlOpcode (Name);
179 break;
181 case AH_DECODE_AML_OPCODE:
183 AhDecodeAmlOpcode (Name);
184 break;
186 case AH_DECODE_PREDEFINED_NAME:
188 AhFindPredefinedNames (Name);
189 break;
191 case AH_DECODE_ASL:
193 AhFindAslOperators (Name);
194 break;
196 case AH_DECODE_ASL_KEYWORD:
198 AhFindAslKeywords (Name);
199 break;
201 case AH_DISPLAY_DEVICE_IDS:
203 AhDisplayDeviceIds ();
204 break;
206 case AH_DECODE_EXCEPTION:
208 AhDecodeException (Name);
209 break;
211 default:
213 if (!Name)
215 AhFindAslOperators (Name);
216 break;
219 if (*Name == '_')
221 AhFindPredefinedNames (Name);
223 else
225 AhFindAslOperators (Name);
227 break;
230 return (0);
234 /*******************************************************************************
236 * FUNCTION: AhStrupr (strupr)
238 * PARAMETERS: SrcString - The source string to convert
240 * RETURN: None
242 * DESCRIPTION: Convert string to uppercase
244 * NOTE: This is not a POSIX function, so it appears here, not in utclib.c
246 ******************************************************************************/
248 void
249 AhStrupr (
250 char *SrcString)
252 char *String;
255 if (!SrcString)
257 return;
260 /* Walk entire string, uppercasing the letters */
262 for (String = SrcString; *String; String++)
264 *String = (char) toupper ((int) *String);
267 return;