opnsense-src/sys/contrib/dev/acpica/include/acapps.h

225 lines
6 KiB
C
Raw Normal View History

/******************************************************************************
*
* Module Name: acapps - common include for ACPI applications/tools
*
*****************************************************************************/
2011-01-13 11:12:34 -05:00
/*
2016-01-11 17:10:31 -05:00
* Copyright (C) 2000 - 2016, Intel Corp.
* All rights reserved.
*
2011-01-13 11:12:34 -05:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer,
* without modification.
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
* substantially similar to the "NO WARRANTY" disclaimer below
* ("Disclaimer") and any redistribution must be conditioned upon
* including a substantially similar Disclaimer requirement for further
* binary redistribution.
* 3. Neither the names of the above-listed copyright holders nor the names
* of any contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*/
#ifndef _ACAPPS
#define _ACAPPS
2016-08-01 17:20:41 -04:00
#ifdef ACPI_USE_STANDARD_HEADERS
#include <sys/stat.h>
#endif /* ACPI_USE_STANDARD_HEADERS */
2010-10-13 16:35:34 -04:00
/* Common info for tool signons */
#define ACPICA_NAME "Intel ACPI Component Architecture"
2016-01-11 17:10:31 -05:00
#define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2016 Intel Corporation"
2010-10-13 16:35:34 -04:00
#if ACPI_MACHINE_WIDTH == 64
#define ACPI_WIDTH "-64"
#elif ACPI_MACHINE_WIDTH == 32
#define ACPI_WIDTH "-32"
#else
#error unknown ACPI_MACHINE_WIDTH
#define ACPI_WIDTH "-??"
#endif
/* Macros for signons and file headers */
#define ACPI_COMMON_SIGNON(UtilityName) \
2015-04-09 19:08:47 -04:00
"\n%s\n%s version %8.8X%s\n%s\n\n", \
2010-10-13 16:35:34 -04:00
ACPICA_NAME, \
2015-04-09 19:08:47 -04:00
UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, \
2010-10-13 16:35:34 -04:00
ACPICA_COPYRIGHT
#define ACPI_COMMON_HEADER(UtilityName, Prefix) \
2015-04-09 19:08:47 -04:00
"%s%s\n%s%s version %8.8X%s\n%s%s\n%s\n", \
2010-10-13 16:35:34 -04:00
Prefix, ACPICA_NAME, \
2015-04-09 19:08:47 -04:00
Prefix, UtilityName, ((UINT32) ACPI_CA_VERSION), ACPI_WIDTH, \
2010-10-13 16:35:34 -04:00
Prefix, ACPICA_COPYRIGHT, \
Prefix
2011-09-26 17:40:21 -04:00
/* Macros for usage messages */
#define ACPI_USAGE_HEADER(Usage) \
2016-08-01 17:20:41 -04:00
printf ("Usage: %s\nOptions:\n", Usage);
2014-06-27 15:10:35 -04:00
#define ACPI_USAGE_TEXT(Description) \
2016-08-01 17:20:41 -04:00
printf (Description);
2011-09-26 17:40:21 -04:00
#define ACPI_OPTION(Name, Description) \
2016-08-01 17:20:41 -04:00
printf (" %-20s%s\n", Name, Description);
2011-09-26 17:40:21 -04:00
2015-11-25 16:04:42 -05:00
/* Check for unexpected exceptions */
#define ACPI_CHECK_STATUS(Name, Status, Expected) \
if (Status != Expected) \
{ \
AcpiOsPrintf ("Unexpected %s from %s (%s-%d)\n", \
AcpiFormatException (Status), #Name, _AcpiModuleName, __LINE__); \
}
/* Check for unexpected non-AE_OK errors */
#define ACPI_CHECK_OK(Name, Status) ACPI_CHECK_STATUS (Name, Status, AE_OK);
#define FILE_SUFFIX_DISASSEMBLY "dsl"
2015-09-30 16:13:30 -04:00
#define FILE_SUFFIX_BINARY_TABLE ".dat" /* Needs the dot */
2015-11-25 16:04:42 -05:00
/* acfileio */
ACPI_STATUS
2015-12-18 13:35:46 -05:00
AcGetAllTablesFromFile (
2015-11-25 16:04:42 -05:00
char *Filename,
UINT8 GetOnlyAmlTables,
ACPI_NEW_TABLE_DESC **ReturnListHead);
2015-12-18 13:35:46 -05:00
BOOLEAN
AcIsFileBinary (
FILE *File);
ACPI_STATUS
AcValidateTableHeader (
FILE *File,
long TableOffset);
2015-11-25 16:04:42 -05:00
/* Values for GetOnlyAmlTables */
#define ACPI_GET_ONLY_AML_TABLES TRUE
#define ACPI_GET_ALL_TABLES FALSE
2009-10-13 17:27:35 -04:00
/*
* getopt
*/
int
AcpiGetopt(
int argc,
char **argv,
char *opts);
2013-05-17 19:13:40 -04:00
int
AcpiGetoptArgument (
int argc,
char **argv);
2009-10-13 17:27:35 -04:00
extern int AcpiGbl_Optind;
2010-01-21 15:56:18 -05:00
extern int AcpiGbl_Opterr;
2013-05-17 19:13:40 -04:00
extern int AcpiGbl_SubOptChar;
2009-10-13 17:27:35 -04:00
extern char *AcpiGbl_Optarg;
2014-03-27 19:50:54 -04:00
/*
* cmfsize - Common get file size function
*/
UINT32
CmGetFileSize (
2014-06-27 15:10:35 -04:00
ACPI_FILE File);
2014-03-27 19:50:54 -04:00
/*
* adwalk
*/
void
AcpiDmCrossReferenceNamespace (
ACPI_PARSE_OBJECT *ParseTreeRoot,
ACPI_NAMESPACE_NODE *NamespaceRoot,
ACPI_OWNER_ID OwnerId);
void
AcpiDmDumpTree (
ACPI_PARSE_OBJECT *Origin);
void
AcpiDmFindOrphanMethods (
ACPI_PARSE_OBJECT *Origin);
void
AcpiDmFinishNamespaceLoad (
ACPI_PARSE_OBJECT *ParseTreeRoot,
ACPI_NAMESPACE_NODE *NamespaceRoot,
ACPI_OWNER_ID OwnerId);
void
AcpiDmConvertResourceIndexes (
ACPI_PARSE_OBJECT *ParseTreeRoot,
ACPI_NAMESPACE_NODE *NamespaceRoot);
2009-10-13 17:27:35 -04:00
/*
* adfile
*/
ACPI_STATUS
AdInitialize (
void);
char *
FlGenerateFilename (
char *InputFilename,
char *Suffix);
ACPI_STATUS
FlSplitInputPathname (
char *InputPath,
char **OutDirectoryPath,
char **OutFilename);
char *
AdGenerateFilename (
char *Prefix,
char *TableId);
void
AdWriteTable (
ACPI_TABLE_HEADER *Table,
UINT32 Length,
char *TableName,
char *OemTableId);
#endif /* _ACAPPS */