⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbinput.c

📁 acpi tools for linux include acpiexec and acpixtract
💻 C
📖 第 1 页 / 共 3 页
字号:
/******************************************************************************* * * Module Name: dbinput - user front-end to the AML debugger *              $Revision: 1.116 $ * ******************************************************************************//****************************************************************************** * * 1. Copyright Notice * * Some or all of this work - Copyright (c) 1999 - 2008, Intel Corp. * All rights reserved. * * 2. License * * 2.1. This is your license from Intel Corp. under its intellectual property * rights.  You may have additional license terms from the party that provided * you this software, covering your right to use that party's intellectual * property rights. * * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a * copy of the source code appearing in this file ("Covered Code") an * irrevocable, perpetual, worldwide license under Intel's copyrights in the * base code distributed originally by Intel ("Original Intel Code") to copy, * make derivatives, distribute, use and display any portion of the Covered * Code in any form, with the right to sublicense such rights; and * * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent * license (with the right to sublicense), under only those claims of Intel * patents that are infringed by the Original Intel Code, to make, use, sell, * offer to sell, and import the Covered Code and derivative works thereof * solely to the minimum extent necessary to exercise the above copyright * license, and in no event shall the patent license extend to any additions * to or modifications of the Original Intel Code.  No other license or right * is granted directly or by implication, estoppel or otherwise; * * The above copyright and patent license is granted only if the following * conditions are met: * * 3. Conditions * * 3.1. Redistribution of Source with Rights to Further Distribute Source. * Redistribution of source code of any substantial portion of the Covered * Code or modification with rights to further distribute source must include * the above Copyright Notice, the above License, this list of Conditions, * and the following Disclaimer and Export Compliance provision.  In addition, * Licensee must cause all Covered Code to which Licensee contributes to * contain a file documenting the changes Licensee made to create that Covered * Code and the date of any change.  Licensee must include in that file the * documentation of any changes made by any predecessor Licensee.  Licensee * must include a prominent statement that the modification is derived, * directly or indirectly, from Original Intel Code. * * 3.2. Redistribution of Source with no Rights to Further Distribute Source. * Redistribution of source code of any substantial portion of the Covered * Code or modification without rights to further distribute source must * include the following Disclaimer and Export Compliance provision in the * documentation and/or other materials provided with distribution.  In * addition, Licensee may not authorize further sublicense of source of any * portion of the Covered Code, and must include terms to the effect that the * license from Licensee to its licensee is limited to the intellectual * property embodied in the software Licensee provides to its licensee, and * not to intellectual property embodied in modifications its licensee may * make. * * 3.3. Redistribution of Executable. Redistribution in executable form of any * substantial portion of the Covered Code or modification must reproduce the * above Copyright Notice, and the following Disclaimer and Export Compliance * provision in the documentation and/or other materials provided with the * distribution. * * 3.4. Intel retains all right, title, and interest in and to the Original * Intel Code. * * 3.5. Neither the name Intel nor any other trademark owned or controlled by * Intel shall be used in advertising or otherwise to promote the sale, use or * other dealings in products derived from or relating to the Covered Code * without prior written authorization from Intel. * * 4. Disclaimer and Export Compliance * * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE, * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A * PARTICULAR PURPOSE. * * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY * LIMITED REMEDY. * * 4.3. Licensee shall not export, either directly or indirectly, any of this * software or system incorporating such software without first obtaining any * required license or other approval from the U. S. Department of Commerce or * any other agency or department of the United States Government.  In the * event Licensee exports any such software from the United States or * re-exports any such software from a foreign destination, Licensee shall * ensure that the distribution and export/re-export of the software is in * compliance with all laws, regulations, orders, or other restrictions of the * U.S. Export Administration Regulations. Licensee agrees that neither it nor * any of its subsidiaries will export/re-export any technical data, process, * software, or service, directly or indirectly, to any country for which the * United States government or any agency thereof requires an export license, * other governmental approval, or letter of assurance, without first obtaining * such license, approval or letter. * *****************************************************************************/#include "acpi.h"#include "acdebug.h"#ifdef ACPI_DEBUGGER#define _COMPONENT          ACPI_CA_DEBUGGER        ACPI_MODULE_NAME    ("dbinput")/* Local prototypes */static char *AcpiDbGetNextToken (    char                    *String,    char                    **Next);static UINT32AcpiDbGetLine (    char                    *InputBuffer);static UINT32AcpiDbMatchCommand (    char                    *UserCommand);static voidAcpiDbSingleThread (    void);static voidAcpiDbDisplayHelp (    char                    *HelpType);/* * Top-level debugger commands. * * This list of commands must match the string table below it */enum AcpiExDebuggerCommands{    CMD_NOT_FOUND = 0,    CMD_NULL,    CMD_ALLOCATIONS,    CMD_ARGS,    CMD_ARGUMENTS,    CMD_BREAKPOINT,    CMD_BUSINFO,    CMD_CALL,    CMD_CLOSE,    CMD_DEBUG,    CMD_DISASSEMBLE,    CMD_DUMP,    CMD_ENABLEACPI,    CMD_EVENT,    CMD_EXECUTE,    CMD_EXIT,    CMD_FIND,    CMD_GO,    CMD_GPE,    CMD_GPES,    CMD_HELP,    CMD_HELP2,    CMD_HISTORY,    CMD_HISTORY_EXE,    CMD_HISTORY_LAST,    CMD_INFORMATION,    CMD_INTEGRITY,    CMD_INTO,    CMD_LEVEL,    CMD_LIST,    CMD_LOAD,    CMD_LOCALS,    CMD_LOCKS,    CMD_METHODS,    CMD_NAMESPACE,    CMD_NOTIFY,    CMD_OBJECT,    CMD_OPEN,    CMD_OWNER,    CMD_PREFIX,    CMD_QUIT,    CMD_REFERENCES,    CMD_RESOURCES,    CMD_RESULTS,    CMD_SET,    CMD_SLEEP,    CMD_STATS,    CMD_STOP,    CMD_TABLES,    CMD_TERMINATE,    CMD_THREADS,    CMD_TRACE,    CMD_TREE,    CMD_TYPE,    CMD_UNLOAD};#define CMD_FIRST_VALID     2static const COMMAND_INFO       AcpiGbl_DbCommands[] ={    {"<NOT FOUND>",  0},    {"<NULL>",       0},    {"ALLOCATIONS",  0},    {"ARGS",         0},    {"ARGUMENTS",    0},    {"BREAKPOINT",   1},    {"BUSINFO",      0},    {"CALL",         0},    {"CLOSE",        0},    {"DEBUG",        1},    {"DISASSEMBLE",  1},    {"DUMP",         1},    {"ENABLEACPI",   0},    {"EVENT",        1},    {"EXECUTE",      1},    {"EXIT",         0},    {"FIND",         1},    {"GO",           0},    {"GPE",          2},    {"GPES",         0},    {"HELP",         0},    {"?",            0},    {"HISTORY",      0},    {"!",            1},    {"!!",           0},    {"INFORMATION",  0},    {"INTEGRITY",    0},    {"INTO",         0},    {"LEVEL",        0},    {"LIST",         0},    {"LOAD",         1},    {"LOCALS",       0},    {"LOCKS",        0},    {"METHODS",      0},    {"NAMESPACE",    0},    {"NOTIFY",       2},    {"OBJECT",       1},    {"OPEN",         1},    {"OWNER",        1},    {"PREFIX",       0},    {"QUIT",         0},    {"REFERENCES",   1},    {"RESOURCES",    1},    {"RESULTS",      0},    {"SET",          3},    {"SLEEP",        1},    {"STATS",        0},    {"STOP",         0},    {"TABLES",       0},    {"TERMINATE",    0},    {"THREADS",      3},    {"TRACE",        1},    {"TREE",         0},    {"TYPE",         1},    {"UNLOAD",       1},    {NULL,           0}};/******************************************************************************* * * FUNCTION:    AcpiDbDisplayHelp * * PARAMETERS:  HelpType        - Subcommand (optional) * * RETURN:      None * * DESCRIPTION: Print a usage message. * ******************************************************************************/static voidAcpiDbDisplayHelp (    char                    *HelpType){    AcpiUtStrupr (HelpType);    /* No parameter, just give the overview */    if (!HelpType)    {        AcpiOsPrintf ("ACPI CA Debugger Commands\n\n");        AcpiOsPrintf ("The following classes of commands are available.  Help is available for\n");        AcpiOsPrintf ("each class by entering \"Help <ClassName>\"\n\n");        AcpiOsPrintf ("    [GENERAL]       General-Purpose Commands\n");        AcpiOsPrintf ("    [NAMESPACE]     Namespace Access Commands\n");        AcpiOsPrintf ("    [METHOD]        Control Method Execution Commands\n");        AcpiOsPrintf ("    [STATISTICS]    Statistical Information\n");        AcpiOsPrintf ("    [FILE]          File I/O Commands\n");        return;    }    /*     * Parameter is the command class     *     * The idea here is to keep each class of commands smaller than a screenful     */    switch (HelpType[0])    {    case 'G':        AcpiOsPrintf ("\nGeneral-Purpose Commands\n\n");        AcpiOsPrintf ("Allocations                         Display list of current memory allocations\n");        AcpiOsPrintf ("Dump <Address>|<Namepath>\n");        AcpiOsPrintf ("     [Byte|Word|Dword|Qword]        Display ACPI objects or memory\n");        AcpiOsPrintf ("EnableAcpi                          Enable ACPI (hardware) mode\n");        AcpiOsPrintf ("Help                                This help screen\n");        AcpiOsPrintf ("History                             Display command history buffer\n");        AcpiOsPrintf ("Level [<DebugLevel>] [console]      Get/Set debug level for file or console\n");        AcpiOsPrintf ("Locks                               Current status of internal mutexes\n");        AcpiOsPrintf ("Quit or Exit                        Exit this command\n");        AcpiOsPrintf ("Stats [Allocations|Memory|Misc\n");        AcpiOsPrintf ("      |Objects|Sizes|Stack|Tables]  Display namespace and memory statistics\n");        AcpiOsPrintf ("Tables                              Display info about loaded ACPI tables\n");        AcpiOsPrintf ("Unload <TableSig> [Instance]        Unload an ACPI table\n");        AcpiOsPrintf ("! <CommandNumber>                   Execute command from history buffer\n");        AcpiOsPrintf ("!!                                  Execute last command again\n");        return;    case 'S':        AcpiOsPrintf ("\nStats Subcommands\n\n");        AcpiOsPrintf ("Allocations                         Display list of current memory allocations\n");        AcpiOsPrintf ("Memory                              Dump internal memory lists\n");        AcpiOsPrintf ("Misc                                Namespace search and mutex stats\n");        AcpiOsPrintf ("Objects                             Summary of namespace objects\n");        AcpiOsPrintf ("Sizes                               Sizes for each of the internal objects\n");        AcpiOsPrintf ("Stack                               Display CPU stack usage\n");        AcpiOsPrintf ("Tables                              Info about current ACPI table(s)\n");        return;    case 'N':        AcpiOsPrintf ("\nNamespace Access Commands\n\n");        AcpiOsPrintf ("Businfo                             Display system bus info\n");        AcpiOsPrintf ("Disassemble <Method>                Disassemble a control method\n");        AcpiOsPrintf ("Event <F|G> <Value>                 Generate AcpiEvent (Fixed/GPE)\n");        AcpiOsPrintf ("Find <AcpiName>  (? is wildcard)    Find ACPI name(s) with wildcards\n");        AcpiOsPrintf ("Gpe <GpeNum> <GpeBlock>             Simulate a GPE\n");        AcpiOsPrintf ("Gpes                                Display info on all GPEs\n");        AcpiOsPrintf ("Integrity                           Validate namespace integrity\n");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -