Home | History | Annotate | Line # | Download | only in acpiexec
aemain.c revision 1.1.1.4
      1      1.1    jruoho /******************************************************************************
      2      1.1    jruoho  *
      3      1.1    jruoho  * Module Name: aemain - Main routine for the AcpiExec utility
      4      1.1    jruoho  *
      5      1.1    jruoho  *****************************************************************************/
      6      1.1    jruoho 
      7  1.1.1.2    jruoho /*
      8  1.1.1.4  christos  * Copyright (C) 2000 - 2013, Intel Corp.
      9      1.1    jruoho  * All rights reserved.
     10      1.1    jruoho  *
     11  1.1.1.2    jruoho  * Redistribution and use in source and binary forms, with or without
     12  1.1.1.2    jruoho  * modification, are permitted provided that the following conditions
     13  1.1.1.2    jruoho  * are met:
     14  1.1.1.2    jruoho  * 1. Redistributions of source code must retain the above copyright
     15  1.1.1.2    jruoho  *    notice, this list of conditions, and the following disclaimer,
     16  1.1.1.2    jruoho  *    without modification.
     17  1.1.1.2    jruoho  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1.1.2    jruoho  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1.1.2    jruoho  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1.1.2    jruoho  *    including a substantially similar Disclaimer requirement for further
     21  1.1.1.2    jruoho  *    binary redistribution.
     22  1.1.1.2    jruoho  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1.1.2    jruoho  *    of any contributors may be used to endorse or promote products derived
     24  1.1.1.2    jruoho  *    from this software without specific prior written permission.
     25  1.1.1.2    jruoho  *
     26  1.1.1.2    jruoho  * Alternatively, this software may be distributed under the terms of the
     27  1.1.1.2    jruoho  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1.1.2    jruoho  * Software Foundation.
     29  1.1.1.2    jruoho  *
     30  1.1.1.2    jruoho  * NO WARRANTY
     31  1.1.1.2    jruoho  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1.1.2    jruoho  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1.1.2    jruoho  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1.1.2    jruoho  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1.1.2    jruoho  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1.1.2    jruoho  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1.1.2    jruoho  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1.1.2    jruoho  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1.1.2    jruoho  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1.1.2    jruoho  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1.1.2    jruoho  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1.1.2    jruoho  */
     43      1.1    jruoho 
     44      1.1    jruoho #include "aecommon.h"
     45      1.1    jruoho 
     46  1.1.1.4  christos #define _COMPONENT          ACPI_TOOLS
     47      1.1    jruoho         ACPI_MODULE_NAME    ("aemain")
     48      1.1    jruoho 
     49  1.1.1.2    jruoho 
     50  1.1.1.4  christos /*
     51  1.1.1.4  christos  * Main routine for the ACPI user-space execution utility.
     52      1.1    jruoho  *
     53  1.1.1.4  christos  * Portability note: The utility depends upon the host for command-line
     54  1.1.1.4  christos  * wildcard support - it is not implemented locally. For example:
     55      1.1    jruoho  *
     56  1.1.1.4  christos  * Linux/Unix systems: Shell expands wildcards automatically.
     57      1.1    jruoho  *
     58  1.1.1.4  christos  * Windows: The setargv.obj module must be linked in to automatically
     59  1.1.1.4  christos  * expand wildcards.
     60  1.1.1.4  christos  */
     61      1.1    jruoho 
     62  1.1.1.4  christos extern BOOLEAN              AcpiGbl_DebugTimeout;
     63      1.1    jruoho 
     64  1.1.1.4  christos /* Local prototypes */
     65      1.1    jruoho 
     66  1.1.1.4  christos static int
     67  1.1.1.4  christos AeDoOptions (
     68  1.1.1.4  christos     int                     argc,
     69  1.1.1.4  christos     char                    **argv);
     70      1.1    jruoho 
     71      1.1    jruoho static ACPI_STATUS
     72      1.1    jruoho AcpiDbRunBatchMode (
     73  1.1.1.4  christos     void);
     74      1.1    jruoho 
     75      1.1    jruoho 
     76  1.1.1.4  christos #define AE_BUFFER_SIZE              1024
     77  1.1.1.4  christos #define ASL_MAX_FILES               256
     78      1.1    jruoho 
     79  1.1.1.4  christos /* Execution modes */
     80      1.1    jruoho 
     81  1.1.1.4  christos #define AE_MODE_COMMAND_LOOP        0   /* Normal command execution loop */
     82  1.1.1.4  christos #define AE_MODE_BATCH_MULTIPLE      1   /* -b option to execute a command line */
     83  1.1.1.4  christos #define AE_MODE_BATCH_SINGLE        2   /* -m option to execute a single control method */
     84      1.1    jruoho 
     85      1.1    jruoho 
     86  1.1.1.4  christos /* Globals */
     87      1.1    jruoho 
     88  1.1.1.4  christos UINT8                       AcpiGbl_RegionFillValue = 0;
     89  1.1.1.4  christos BOOLEAN                     AcpiGbl_IgnoreErrors = FALSE;
     90  1.1.1.4  christos BOOLEAN                     AcpiGbl_DbOpt_NoRegionSupport = FALSE;
     91  1.1.1.4  christos UINT8                       AcpiGbl_UseHwReducedFadt = FALSE;
     92  1.1.1.4  christos BOOLEAN                     AcpiGbl_DoInterfaceTests = FALSE;
     93  1.1.1.4  christos static UINT8                AcpiGbl_ExecutionMode = AE_MODE_COMMAND_LOOP;
     94  1.1.1.4  christos static char                 BatchBuffer[AE_BUFFER_SIZE];    /* Batch command buffer */
     95  1.1.1.4  christos static AE_TABLE_DESC        *AeTableListHead = NULL;
     96      1.1    jruoho 
     97  1.1.1.4  christos #define ACPIEXEC_NAME               "AML Execution/Debug Utility"
     98  1.1.1.4  christos #define AE_SUPPORTED_OPTIONS        "?b:d:e:f:ghm^orv^:x:"
     99      1.1    jruoho 
    100      1.1    jruoho 
    101      1.1    jruoho /******************************************************************************
    102      1.1    jruoho  *
    103  1.1.1.4  christos  * FUNCTION:    usage
    104      1.1    jruoho  *
    105  1.1.1.4  christos  * PARAMETERS:  None
    106      1.1    jruoho  *
    107  1.1.1.4  christos  * RETURN:      None
    108      1.1    jruoho  *
    109  1.1.1.4  christos  * DESCRIPTION: Print a usage message
    110      1.1    jruoho  *
    111  1.1.1.4  christos  *****************************************************************************/
    112      1.1    jruoho 
    113  1.1.1.4  christos static void
    114  1.1.1.4  christos usage (
    115  1.1.1.4  christos     void)
    116      1.1    jruoho {
    117      1.1    jruoho 
    118  1.1.1.4  christos     ACPI_USAGE_HEADER ("acpiexec [options] AMLfile1 AMLfile2 ...");
    119      1.1    jruoho 
    120  1.1.1.4  christos     ACPI_OPTION ("-b \"CommandLine\"",  "Batch mode command line execution (cmd1;cmd2;...)");
    121  1.1.1.4  christos     ACPI_OPTION ("-h -?",               "Display this help message");
    122  1.1.1.4  christos     ACPI_OPTION ("-m [Method]",         "Batch mode method execution. Default=MAIN");
    123  1.1.1.4  christos     printf ("\n");
    124      1.1    jruoho 
    125  1.1.1.4  christos     ACPI_OPTION ("-da",                 "Disable method abort on error");
    126  1.1.1.4  christos     ACPI_OPTION ("-di",                 "Disable execution of STA/INI methods during init");
    127  1.1.1.4  christos     ACPI_OPTION ("-do",                 "Disable Operation Region address simulation");
    128  1.1.1.4  christos     ACPI_OPTION ("-dr",                 "Disable repair of method return values");
    129  1.1.1.4  christos     ACPI_OPTION ("-dt",                 "Disable allocation tracking (performance)");
    130  1.1.1.4  christos     printf ("\n");
    131      1.1    jruoho 
    132  1.1.1.4  christos     ACPI_OPTION ("-ef",                 "Enable display of final memory statistics");
    133  1.1.1.4  christos     ACPI_OPTION ("-ei",                 "Enable additional tests for ACPICA interfaces");
    134  1.1.1.4  christos     ACPI_OPTION ("-em",                 "Enable Interpreter Serialized Mode");
    135  1.1.1.4  christos     ACPI_OPTION ("-es",                 "Enable Interpreter Slack Mode");
    136  1.1.1.4  christos     ACPI_OPTION ("-et",                 "Enable debug semaphore timeout");
    137  1.1.1.4  christos     printf ("\n");
    138      1.1    jruoho 
    139  1.1.1.4  christos     ACPI_OPTION ("-f <Value>",          "Operation Region initialization fill value");
    140  1.1.1.4  christos     ACPI_OPTION ("-r",                  "Use hardware-reduced FADT V5");
    141  1.1.1.4  christos     ACPI_OPTION ("-v",                  "Display version information");
    142  1.1.1.4  christos     ACPI_OPTION ("-vi",                 "Verbose initialization output");
    143  1.1.1.4  christos     ACPI_OPTION ("-vr",                 "Verbose region handler output");
    144  1.1.1.4  christos     ACPI_OPTION ("-x <DebugLevel>",     "Debug output level");
    145      1.1    jruoho }
    146      1.1    jruoho 
    147      1.1    jruoho 
    148      1.1    jruoho /******************************************************************************
    149      1.1    jruoho  *
    150  1.1.1.4  christos  * FUNCTION:    AeDoOptions
    151      1.1    jruoho  *
    152  1.1.1.4  christos  * PARAMETERS:  argc/argv           - Standard argc/argv
    153      1.1    jruoho  *
    154      1.1    jruoho  * RETURN:      Status
    155      1.1    jruoho  *
    156  1.1.1.4  christos  * DESCRIPTION: Command line option processing
    157      1.1    jruoho  *
    158      1.1    jruoho  *****************************************************************************/
    159      1.1    jruoho 
    160  1.1.1.4  christos static int
    161  1.1.1.4  christos AeDoOptions (
    162      1.1    jruoho     int                     argc,
    163      1.1    jruoho     char                    **argv)
    164      1.1    jruoho {
    165      1.1    jruoho     int                     j;
    166      1.1    jruoho 
    167      1.1    jruoho 
    168  1.1.1.4  christos     while ((j = AcpiGetopt (argc, argv, AE_SUPPORTED_OPTIONS)) != EOF) switch (j)
    169      1.1    jruoho     {
    170      1.1    jruoho     case 'b':
    171  1.1.1.4  christos 
    172  1.1.1.4  christos         if (strlen (AcpiGbl_Optarg) > (AE_BUFFER_SIZE -1))
    173      1.1    jruoho         {
    174  1.1.1.4  christos             printf ("**** The length of command line (%u) exceeded maximum (%u)\n",
    175  1.1.1.4  christos                 (UINT32) strlen (AcpiGbl_Optarg), (AE_BUFFER_SIZE -1));
    176  1.1.1.2    jruoho             return (-1);
    177      1.1    jruoho         }
    178  1.1.1.4  christos         AcpiGbl_ExecutionMode = AE_MODE_BATCH_MULTIPLE;
    179      1.1    jruoho         strcpy (BatchBuffer, AcpiGbl_Optarg);
    180      1.1    jruoho         break;
    181      1.1    jruoho 
    182      1.1    jruoho     case 'd':
    183  1.1.1.4  christos 
    184      1.1    jruoho         switch (AcpiGbl_Optarg[0])
    185      1.1    jruoho         {
    186      1.1    jruoho         case 'a':
    187  1.1.1.4  christos 
    188      1.1    jruoho             AcpiGbl_IgnoreErrors = TRUE;
    189      1.1    jruoho             break;
    190      1.1    jruoho 
    191      1.1    jruoho         case 'i':
    192  1.1.1.4  christos 
    193      1.1    jruoho             AcpiGbl_DbOpt_ini_methods = FALSE;
    194      1.1    jruoho             break;
    195      1.1    jruoho 
    196      1.1    jruoho         case 'o':
    197  1.1.1.4  christos 
    198      1.1    jruoho             AcpiGbl_DbOpt_NoRegionSupport = TRUE;
    199      1.1    jruoho             break;
    200      1.1    jruoho 
    201  1.1.1.3    jruoho         case 'r':
    202  1.1.1.4  christos 
    203  1.1.1.3    jruoho             AcpiGbl_DisableAutoRepair = TRUE;
    204  1.1.1.3    jruoho             break;
    205  1.1.1.3    jruoho 
    206      1.1    jruoho         case 't':
    207  1.1.1.4  christos 
    208      1.1    jruoho             #ifdef ACPI_DBG_TRACK_ALLOCATIONS
    209      1.1    jruoho                 AcpiGbl_DisableMemTracking = TRUE;
    210      1.1    jruoho             #endif
    211      1.1    jruoho             break;
    212      1.1    jruoho 
    213      1.1    jruoho         default:
    214  1.1.1.4  christos 
    215      1.1    jruoho             printf ("Unknown option: -d%s\n", AcpiGbl_Optarg);
    216      1.1    jruoho             return (-1);
    217      1.1    jruoho         }
    218      1.1    jruoho         break;
    219      1.1    jruoho 
    220      1.1    jruoho     case 'e':
    221  1.1.1.4  christos 
    222      1.1    jruoho         switch (AcpiGbl_Optarg[0])
    223      1.1    jruoho         {
    224      1.1    jruoho         case 'f':
    225  1.1.1.4  christos 
    226      1.1    jruoho             #ifdef ACPI_DBG_TRACK_ALLOCATIONS
    227      1.1    jruoho                 AcpiGbl_DisplayFinalMemStats = TRUE;
    228      1.1    jruoho             #endif
    229      1.1    jruoho             break;
    230      1.1    jruoho 
    231  1.1.1.4  christos         case 'i':
    232  1.1.1.4  christos 
    233  1.1.1.4  christos             AcpiGbl_DoInterfaceTests = TRUE;
    234  1.1.1.4  christos             break;
    235  1.1.1.4  christos 
    236      1.1    jruoho         case 'm':
    237  1.1.1.4  christos 
    238      1.1    jruoho             AcpiGbl_AllMethodsSerialized = TRUE;
    239      1.1    jruoho             printf ("Enabling AML Interpreter serialized mode\n");
    240      1.1    jruoho             break;
    241      1.1    jruoho 
    242      1.1    jruoho         case 's':
    243  1.1.1.4  christos 
    244      1.1    jruoho             AcpiGbl_EnableInterpreterSlack = TRUE;
    245      1.1    jruoho             printf ("Enabling AML Interpreter slack mode\n");
    246      1.1    jruoho             break;
    247      1.1    jruoho 
    248      1.1    jruoho         case 't':
    249  1.1.1.4  christos 
    250      1.1    jruoho             AcpiGbl_DebugTimeout = TRUE;
    251      1.1    jruoho             break;
    252      1.1    jruoho 
    253      1.1    jruoho         default:
    254  1.1.1.4  christos 
    255      1.1    jruoho             printf ("Unknown option: -e%s\n", AcpiGbl_Optarg);
    256      1.1    jruoho             return (-1);
    257      1.1    jruoho         }
    258      1.1    jruoho         break;
    259      1.1    jruoho 
    260      1.1    jruoho     case 'f':
    261  1.1.1.4  christos 
    262      1.1    jruoho         AcpiGbl_RegionFillValue = (UINT8) strtoul (AcpiGbl_Optarg, NULL, 0);
    263      1.1    jruoho         break;
    264      1.1    jruoho 
    265      1.1    jruoho     case 'g':
    266  1.1.1.4  christos 
    267      1.1    jruoho         AcpiGbl_DbOpt_tables = TRUE;
    268      1.1    jruoho         AcpiGbl_DbFilename = NULL;
    269      1.1    jruoho         break;
    270      1.1    jruoho 
    271  1.1.1.4  christos     case 'h':
    272  1.1.1.4  christos     case '?':
    273  1.1.1.4  christos 
    274  1.1.1.4  christos         usage();
    275  1.1.1.4  christos         return (0);
    276  1.1.1.4  christos 
    277      1.1    jruoho     case 'm':
    278  1.1.1.4  christos 
    279  1.1.1.4  christos         AcpiGbl_ExecutionMode = AE_MODE_BATCH_SINGLE;
    280      1.1    jruoho         switch (AcpiGbl_Optarg[0])
    281      1.1    jruoho         {
    282      1.1    jruoho         case '^':
    283  1.1.1.4  christos 
    284      1.1    jruoho             strcpy (BatchBuffer, "MAIN");
    285      1.1    jruoho             break;
    286      1.1    jruoho 
    287      1.1    jruoho         default:
    288  1.1.1.4  christos 
    289      1.1    jruoho             strcpy (BatchBuffer, AcpiGbl_Optarg);
    290      1.1    jruoho             break;
    291      1.1    jruoho         }
    292      1.1    jruoho         break;
    293      1.1    jruoho 
    294      1.1    jruoho     case 'o':
    295  1.1.1.4  christos 
    296      1.1    jruoho         AcpiGbl_DbOpt_disasm = TRUE;
    297      1.1    jruoho         AcpiGbl_DbOpt_stats = TRUE;
    298      1.1    jruoho         break;
    299      1.1    jruoho 
    300  1.1.1.4  christos     case 'r':
    301  1.1.1.4  christos 
    302  1.1.1.4  christos         AcpiGbl_UseHwReducedFadt = TRUE;
    303  1.1.1.4  christos         printf ("Using ACPI 5.0 Hardware Reduced Mode via version 5 FADT\n");
    304  1.1.1.4  christos         break;
    305  1.1.1.4  christos 
    306      1.1    jruoho     case 'v':
    307  1.1.1.4  christos 
    308  1.1.1.4  christos         switch (AcpiGbl_Optarg[0])
    309  1.1.1.4  christos         {
    310  1.1.1.4  christos         case '^':  /* -v: (Version): signon already emitted, just exit */
    311  1.1.1.4  christos 
    312  1.1.1.4  christos             exit (0);
    313  1.1.1.4  christos 
    314  1.1.1.4  christos         case 'i':
    315  1.1.1.4  christos 
    316  1.1.1.4  christos             AcpiDbgLevel |= ACPI_LV_INIT_NAMES;
    317  1.1.1.4  christos             break;
    318  1.1.1.4  christos 
    319  1.1.1.4  christos         case 'r':
    320  1.1.1.4  christos 
    321  1.1.1.4  christos             AcpiGbl_DisplayRegionAccess = TRUE;
    322  1.1.1.4  christos             break;
    323  1.1.1.4  christos 
    324  1.1.1.4  christos         default:
    325  1.1.1.4  christos 
    326  1.1.1.4  christos             printf ("Unknown option: -v%s\n", AcpiGbl_Optarg);
    327  1.1.1.4  christos             return (-1);
    328  1.1.1.4  christos         }
    329      1.1    jruoho         break;
    330      1.1    jruoho 
    331      1.1    jruoho     case 'x':
    332  1.1.1.4  christos 
    333      1.1    jruoho         AcpiDbgLevel = strtoul (AcpiGbl_Optarg, NULL, 0);
    334      1.1    jruoho         AcpiGbl_DbConsoleDebugLevel = AcpiDbgLevel;
    335      1.1    jruoho         printf ("Debug Level: 0x%8.8X\n", AcpiDbgLevel);
    336      1.1    jruoho         break;
    337      1.1    jruoho 
    338      1.1    jruoho     default:
    339  1.1.1.4  christos 
    340      1.1    jruoho         usage();
    341  1.1.1.2    jruoho         return (-1);
    342      1.1    jruoho     }
    343      1.1    jruoho 
    344  1.1.1.4  christos     return (0);
    345  1.1.1.4  christos }
    346      1.1    jruoho 
    347      1.1    jruoho 
    348  1.1.1.4  christos /******************************************************************************
    349  1.1.1.4  christos  *
    350  1.1.1.4  christos  * FUNCTION:    main
    351  1.1.1.4  christos  *
    352  1.1.1.4  christos  * PARAMETERS:  argc, argv
    353  1.1.1.4  christos  *
    354  1.1.1.4  christos  * RETURN:      Status
    355  1.1.1.4  christos  *
    356  1.1.1.4  christos  * DESCRIPTION: Main routine for AcpiExec utility
    357  1.1.1.4  christos  *
    358  1.1.1.4  christos  *****************************************************************************/
    359      1.1    jruoho 
    360  1.1.1.4  christos int ACPI_SYSTEM_XFACE
    361  1.1.1.4  christos main (
    362  1.1.1.4  christos     int                     argc,
    363  1.1.1.4  christos     char                    **argv)
    364  1.1.1.4  christos {
    365  1.1.1.4  christos     ACPI_STATUS             Status;
    366  1.1.1.4  christos     UINT32                  InitFlags;
    367  1.1.1.4  christos     ACPI_TABLE_HEADER       *Table = NULL;
    368  1.1.1.4  christos     UINT32                  TableCount;
    369  1.1.1.4  christos     AE_TABLE_DESC           *TableDesc;
    370      1.1    jruoho 
    371      1.1    jruoho 
    372  1.1.1.4  christos     ACPI_DEBUG_INITIALIZE (); /* For debug version only */
    373      1.1    jruoho 
    374  1.1.1.4  christos     printf (ACPI_COMMON_SIGNON (ACPIEXEC_NAME));
    375  1.1.1.4  christos     if (argc < 2)
    376  1.1.1.4  christos     {
    377  1.1.1.4  christos         usage ();
    378  1.1.1.4  christos         return (0);
    379  1.1.1.4  christos     }
    380      1.1    jruoho 
    381  1.1.1.4  christos     signal (SIGINT, AeCtrlCHandler);
    382      1.1    jruoho 
    383  1.1.1.4  christos     /* Init globals */
    384      1.1    jruoho 
    385  1.1.1.4  christos     AcpiDbgLevel = ACPI_NORMAL_DEFAULT;
    386  1.1.1.4  christos     AcpiDbgLayer = 0xFFFFFFFF;
    387      1.1    jruoho 
    388  1.1.1.4  christos     /* Init ACPI and start debugger thread */
    389      1.1    jruoho 
    390  1.1.1.4  christos     Status = AcpiInitializeSubsystem ();
    391  1.1.1.4  christos     AE_CHECK_OK (AcpiInitializeSubsystem, Status);
    392  1.1.1.4  christos     if (ACPI_FAILURE (Status))
    393  1.1.1.4  christos     {
    394  1.1.1.4  christos         goto ErrorExit;
    395  1.1.1.4  christos     }
    396      1.1    jruoho 
    397  1.1.1.4  christos     /* Get the command line options */
    398      1.1    jruoho 
    399  1.1.1.4  christos     if (AeDoOptions (argc, argv))
    400  1.1.1.4  christos     {
    401  1.1.1.4  christos         goto ErrorExit;
    402  1.1.1.4  christos     }
    403      1.1    jruoho 
    404  1.1.1.4  christos     /* The remaining arguments are filenames for ACPI tables */
    405      1.1    jruoho 
    406  1.1.1.4  christos     if (!argv[AcpiGbl_Optind])
    407  1.1.1.4  christos     {
    408  1.1.1.4  christos         goto EnterDebugger;
    409  1.1.1.4  christos     }
    410      1.1    jruoho 
    411  1.1.1.4  christos     AcpiGbl_DbOpt_tables = TRUE;
    412  1.1.1.4  christos     TableCount = 0;
    413      1.1    jruoho 
    414  1.1.1.4  christos     /* Get each of the ACPI table files on the command line */
    415      1.1    jruoho 
    416  1.1.1.4  christos     while (argv[AcpiGbl_Optind])
    417  1.1.1.4  christos     {
    418  1.1.1.4  christos         /* Get one entire table */
    419      1.1    jruoho 
    420  1.1.1.4  christos         Status = AcpiDbReadTableFromFile (argv[AcpiGbl_Optind], &Table);
    421      1.1    jruoho         if (ACPI_FAILURE (Status))
    422      1.1    jruoho         {
    423  1.1.1.4  christos             printf ("**** Could not get table from file %s, %s\n",
    424  1.1.1.4  christos                 argv[AcpiGbl_Optind], AcpiFormatException (Status));
    425  1.1.1.4  christos             goto ErrorExit;
    426      1.1    jruoho         }
    427      1.1    jruoho 
    428  1.1.1.4  christos         /* Ignore non-AML tables, we can't use them. Except for an FADT */
    429      1.1    jruoho 
    430  1.1.1.4  christos         if (!ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_FADT) &&
    431  1.1.1.4  christos             !AcpiUtIsAmlTable (Table))
    432      1.1    jruoho         {
    433  1.1.1.4  christos             ACPI_INFO ((AE_INFO,
    434  1.1.1.4  christos                 "Table [%4.4s] is not an AML table, ignoring",
    435  1.1.1.4  christos                 Table->Signature));
    436  1.1.1.4  christos             AcpiOsFree (Table);
    437      1.1    jruoho         }
    438  1.1.1.4  christos         else
    439      1.1    jruoho         {
    440  1.1.1.4  christos             /* Allocate and link a table descriptor */
    441      1.1    jruoho 
    442  1.1.1.4  christos             TableDesc = AcpiOsAllocate (sizeof (AE_TABLE_DESC));
    443  1.1.1.4  christos             TableDesc->Table = Table;
    444  1.1.1.4  christos             TableDesc->Next = AeTableListHead;
    445  1.1.1.4  christos             AeTableListHead = TableDesc;
    446  1.1.1.4  christos 
    447  1.1.1.4  christos             TableCount++;
    448      1.1    jruoho         }
    449      1.1    jruoho 
    450  1.1.1.4  christos         AcpiGbl_Optind++;
    451      1.1    jruoho     }
    452      1.1    jruoho 
    453  1.1.1.4  christos     /* Build a local RSDT with all tables and let ACPICA process the RSDT */
    454      1.1    jruoho 
    455  1.1.1.4  christos     Status = AeBuildLocalTables (TableCount, AeTableListHead);
    456  1.1.1.4  christos     if (ACPI_FAILURE (Status))
    457      1.1    jruoho     {
    458  1.1.1.4  christos         goto ErrorExit;
    459      1.1    jruoho     }
    460  1.1.1.4  christos 
    461  1.1.1.4  christos     Status = AeInstallTables ();
    462  1.1.1.4  christos     if (ACPI_FAILURE (Status))
    463      1.1    jruoho     {
    464  1.1.1.4  christos         printf ("**** Could not load ACPI tables, %s\n",
    465  1.1.1.4  christos             AcpiFormatException (Status));
    466  1.1.1.4  christos         goto EnterDebugger;
    467  1.1.1.4  christos     }
    468  1.1.1.4  christos 
    469  1.1.1.4  christos     /*
    470  1.1.1.4  christos      * Install most of the handlers.
    471  1.1.1.4  christos      * Override some default region handlers, especially SystemMemory
    472  1.1.1.4  christos      */
    473  1.1.1.4  christos     Status = AeInstallEarlyHandlers ();
    474  1.1.1.4  christos     if (ACPI_FAILURE (Status))
    475  1.1.1.4  christos     {
    476  1.1.1.4  christos         goto EnterDebugger;
    477  1.1.1.4  christos     }
    478  1.1.1.4  christos 
    479  1.1.1.4  christos     /* Setup initialization flags for ACPICA */
    480  1.1.1.4  christos 
    481  1.1.1.4  christos     InitFlags = (ACPI_NO_HANDLER_INIT | ACPI_NO_ACPI_ENABLE);
    482  1.1.1.4  christos     if (!AcpiGbl_DbOpt_ini_methods)
    483  1.1.1.4  christos     {
    484  1.1.1.4  christos         InitFlags |= (ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT);
    485  1.1.1.4  christos     }
    486  1.1.1.4  christos 
    487  1.1.1.4  christos     /*
    488  1.1.1.4  christos      * Main initialization for ACPICA subsystem
    489  1.1.1.4  christos      * TBD: Need a way to call this after the ACPI table "LOAD" command
    490  1.1.1.4  christos      */
    491  1.1.1.4  christos     Status = AcpiEnableSubsystem (InitFlags);
    492  1.1.1.4  christos     if (ACPI_FAILURE (Status))
    493  1.1.1.4  christos     {
    494  1.1.1.4  christos         printf ("**** Could not EnableSubsystem, %s\n",
    495  1.1.1.4  christos             AcpiFormatException (Status));
    496  1.1.1.4  christos         goto EnterDebugger;
    497  1.1.1.4  christos     }
    498  1.1.1.4  christos 
    499  1.1.1.4  christos     /*
    500  1.1.1.4  christos      * Install handlers for "device driver" space IDs (EC,SMBus, etc.)
    501  1.1.1.4  christos      * and fixed event handlers
    502  1.1.1.4  christos      */
    503  1.1.1.4  christos     AeInstallLateHandlers ();
    504  1.1.1.4  christos 
    505  1.1.1.4  christos     /* Finish the ACPICA initialization */
    506  1.1.1.4  christos 
    507  1.1.1.4  christos     Status = AcpiInitializeObjects (InitFlags);
    508  1.1.1.4  christos     if (ACPI_FAILURE (Status))
    509  1.1.1.4  christos     {
    510  1.1.1.4  christos         printf ("**** Could not InitializeObjects, %s\n",
    511  1.1.1.4  christos             AcpiFormatException (Status));
    512  1.1.1.4  christos         goto EnterDebugger;
    513  1.1.1.4  christos     }
    514  1.1.1.4  christos 
    515  1.1.1.4  christos     AeMiscellaneousTests ();
    516  1.1.1.4  christos 
    517  1.1.1.4  christos 
    518  1.1.1.4  christos EnterDebugger:
    519  1.1.1.4  christos 
    520  1.1.1.4  christos     /* Exit if error above and we are in one of the batch modes */
    521  1.1.1.4  christos 
    522  1.1.1.4  christos     if (ACPI_FAILURE (Status) && (AcpiGbl_ExecutionMode > 0))
    523  1.1.1.4  christos     {
    524  1.1.1.4  christos         goto ErrorExit;
    525      1.1    jruoho     }
    526  1.1.1.4  christos 
    527  1.1.1.4  christos     /* Run a batch command or enter the command loop */
    528  1.1.1.4  christos 
    529  1.1.1.4  christos     switch (AcpiGbl_ExecutionMode)
    530      1.1    jruoho     {
    531  1.1.1.4  christos     default:
    532  1.1.1.4  christos     case AE_MODE_COMMAND_LOOP:
    533      1.1    jruoho 
    534      1.1    jruoho         AcpiDbUserCommands (ACPI_DEBUGGER_COMMAND_PROMPT, NULL);
    535  1.1.1.4  christos         break;
    536  1.1.1.4  christos 
    537  1.1.1.4  christos     case AE_MODE_BATCH_MULTIPLE:
    538  1.1.1.4  christos 
    539  1.1.1.4  christos         AcpiDbRunBatchMode ();
    540  1.1.1.4  christos         break;
    541  1.1.1.4  christos 
    542  1.1.1.4  christos     case AE_MODE_BATCH_SINGLE:
    543  1.1.1.4  christos 
    544  1.1.1.4  christos         AcpiDbExecute (BatchBuffer, NULL, NULL, EX_NO_SINGLE_STEP);
    545  1.1.1.4  christos         Status = AcpiTerminate ();
    546  1.1.1.4  christos         break;
    547      1.1    jruoho     }
    548      1.1    jruoho 
    549  1.1.1.2    jruoho     return (0);
    550  1.1.1.4  christos 
    551  1.1.1.4  christos 
    552  1.1.1.4  christos ErrorExit:
    553  1.1.1.4  christos 
    554  1.1.1.4  christos     (void) AcpiOsTerminate ();
    555  1.1.1.4  christos     return (-1);
    556      1.1    jruoho }
    557      1.1    jruoho 
    558  1.1.1.4  christos 
    559  1.1.1.4  christos /******************************************************************************
    560  1.1.1.4  christos  *
    561  1.1.1.4  christos  * FUNCTION:    AcpiDbRunBatchMode
    562  1.1.1.4  christos  *
    563  1.1.1.4  christos  * PARAMETERS:  BatchCommandLine    - A semicolon separated list of commands
    564  1.1.1.4  christos  *                                    to be executed.
    565  1.1.1.4  christos  *                                    Use only commas to separate elements of
    566  1.1.1.4  christos  *                                    particular command.
    567  1.1.1.4  christos  * RETURN:      Status
    568  1.1.1.4  christos  *
    569  1.1.1.4  christos  * DESCRIPTION: For each command of list separated by ';' prepare the command
    570  1.1.1.4  christos  *              buffer and pass it to AcpiDbCommandDispatch.
    571  1.1.1.4  christos  *
    572  1.1.1.4  christos  *****************************************************************************/
    573  1.1.1.4  christos 
    574  1.1.1.4  christos static ACPI_STATUS
    575  1.1.1.4  christos AcpiDbRunBatchMode (
    576  1.1.1.4  christos     void)
    577  1.1.1.4  christos {
    578  1.1.1.4  christos     ACPI_STATUS             Status;
    579  1.1.1.4  christos     char                    *Ptr = BatchBuffer;
    580  1.1.1.4  christos     char                    *Cmd = Ptr;
    581  1.1.1.4  christos     UINT8                   Run = 0;
    582  1.1.1.4  christos 
    583  1.1.1.4  christos 
    584  1.1.1.4  christos     AcpiGbl_MethodExecuting = FALSE;
    585  1.1.1.4  christos     AcpiGbl_StepToNextCall = FALSE;
    586  1.1.1.4  christos 
    587  1.1.1.4  christos     while (*Ptr)
    588  1.1.1.4  christos     {
    589  1.1.1.4  christos         if (*Ptr == ',')
    590  1.1.1.4  christos         {
    591  1.1.1.4  christos             /* Convert commas to spaces */
    592  1.1.1.4  christos             *Ptr = ' ';
    593  1.1.1.4  christos         }
    594  1.1.1.4  christos         else if (*Ptr == ';')
    595  1.1.1.4  christos         {
    596  1.1.1.4  christos             *Ptr = '\0';
    597  1.1.1.4  christos             Run = 1;
    598  1.1.1.4  christos         }
    599  1.1.1.4  christos 
    600  1.1.1.4  christos         Ptr++;
    601  1.1.1.4  christos 
    602  1.1.1.4  christos         if (Run || (*Ptr == '\0'))
    603  1.1.1.4  christos         {
    604  1.1.1.4  christos             (void) AcpiDbCommandDispatch (Cmd, NULL, NULL);
    605  1.1.1.4  christos             Run = 0;
    606  1.1.1.4  christos             Cmd = Ptr;
    607  1.1.1.4  christos         }
    608  1.1.1.4  christos     }
    609  1.1.1.4  christos 
    610  1.1.1.4  christos     Status = AcpiTerminate ();
    611  1.1.1.4  christos     return (Status);
    612  1.1.1.4  christos }
    613