1 /******************************************************************************
3 * Module Name: ahmain - Main module for the acpi help utility
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
47 /* Local prototypes */
53 #define AH_UTILITY_NAME "ACPI Help Utility"
54 #define AH_SUPPORTED_OPTIONS "ehikmopsv"
57 /******************************************************************************
59 * FUNCTION: AhDisplayUsage
61 * DESCRIPTION: Usage message
63 ******************************************************************************/
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 /******************************************************************************
96 * DESCRIPTION: C main function for AcpiHelp utility.
98 ******************************************************************************/
100 int ACPI_SYSTEM_XFACE
110 ACPI_DEBUG_INITIALIZE (); /* For debug version only */
111 printf (ACPI_COMMON_SIGNON (AH_UTILITY_NAME
));
112 DecodeType
= AH_DECODE_DEFAULT
;
120 /* Command line options */
122 while ((j
= AcpiGetopt (argc
, argv
, AH_SUPPORTED_OPTIONS
)) != EOF
) switch (j
)
126 DecodeType
= AH_DECODE_EXCEPTION
;
131 DecodeType
= AH_DISPLAY_DEVICE_IDS
;
136 DecodeType
= AH_DECODE_ASL_KEYWORD
;
141 DecodeType
= AH_DECODE_AML
;
146 DecodeType
= AH_DECODE_AML_OPCODE
;
151 DecodeType
= AH_DECODE_PREDEFINED_NAME
;
156 DecodeType
= AH_DECODE_ASL
;
159 case 'v': /* -v: (Version): signon already emitted, just exit */
170 /* Missing (null) name means "display all" */
172 Name
= argv
[AcpiGbl_Optind
];
178 AhFindAmlOpcode (Name
);
181 case AH_DECODE_AML_OPCODE
:
183 AhDecodeAmlOpcode (Name
);
186 case AH_DECODE_PREDEFINED_NAME
:
188 AhFindPredefinedNames (Name
);
193 AhFindAslOperators (Name
);
196 case AH_DECODE_ASL_KEYWORD
:
198 AhFindAslKeywords (Name
);
201 case AH_DISPLAY_DEVICE_IDS
:
203 AhDisplayDeviceIds ();
206 case AH_DECODE_EXCEPTION
:
208 AhDecodeException (Name
);
215 AhFindAslOperators (Name
);
221 AhFindPredefinedNames (Name
);
225 AhFindAslOperators (Name
);
234 /*******************************************************************************
236 * FUNCTION: AhStrupr (strupr)
238 * PARAMETERS: SrcString - The source string to convert
242 * DESCRIPTION: Convert string to uppercase
244 * NOTE: This is not a POSIX function, so it appears here, not in utclib.c
246 ******************************************************************************/
260 /* Walk entire string, uppercasing the letters */
262 for (String
= SrcString
; *String
; String
++)
264 *String
= (char) toupper ((int) *String
);