2018-03-15 02:13:07 +03:00
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
2014-04-04 08:39:42 +04:00
/******************************************************************************
*
* Module Name : acapps - common include for ACPI applications / tools
*
2018-01-04 21:06:38 +03:00
* Copyright ( C ) 2000 - 2018 , Intel Corp .
2014-04-04 08:39:42 +04:00
*
2018-03-15 02:13:07 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2014-04-04 08:39:42 +04:00
# ifndef _ACAPPS
# define _ACAPPS
2016-08-04 11:44:59 +03:00
# ifdef ACPI_USE_STANDARD_HEADERS
# include <sys/stat.h>
# endif /* ACPI_USE_STANDARD_HEADERS */
2014-04-04 08:39:42 +04:00
/* Common info for tool signons */
# define ACPICA_NAME "Intel ACPI Component Architecture"
2018-01-04 21:06:38 +03:00
# define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2018 Intel Corporation"
2014-04-04 08:39:42 +04:00
# if ACPI_MACHINE_WIDTH == 64
2017-02-08 06:00:15 +03:00
# define ACPI_WIDTH " (64-bit version)"
2014-04-04 08:39:42 +04:00
# elif ACPI_MACHINE_WIDTH == 32
2017-02-08 06:00:15 +03:00
# define ACPI_WIDTH " (32-bit version)"
2014-04-04 08:39:42 +04:00
# else
# error unknown ACPI_MACHINE_WIDTH
2017-02-08 06:00:15 +03:00
# define ACPI_WIDTH " (unknown bit width, not 32 or 64)"
2014-04-04 08:39:42 +04:00
# endif
/* Macros for signons and file headers */
# define ACPI_COMMON_SIGNON(utility_name) \
2017-02-08 06:00:15 +03:00
" \n %s \n %s version %8.8X \n %s \n \n " , \
2014-04-04 08:39:42 +04:00
ACPICA_NAME , \
2017-02-08 06:00:15 +03:00
utility_name , ( ( u32 ) ACPI_CA_VERSION ) , \
2014-04-04 08:39:42 +04:00
ACPICA_COPYRIGHT
# define ACPI_COMMON_HEADER(utility_name, prefix) \
2015-04-13 06:49:18 +03:00
" %s%s \n %s%s version %8.8X%s \n %s%s \n %s \n " , \
2014-04-04 08:39:42 +04:00
prefix , ACPICA_NAME , \
2015-04-13 06:49:18 +03:00
prefix , utility_name , ( ( u32 ) ACPI_CA_VERSION ) , ACPI_WIDTH , \
2014-04-04 08:39:42 +04:00
prefix , ACPICA_COPYRIGHT , \
prefix
2017-11-18 02:40:20 +03:00
# define ACPI_COMMON_BUILD_TIME \
" Build date/time: %s %s \n " , __DATE__ , __TIME__
2014-04-04 08:39:42 +04:00
/* Macros for usage messages */
# define ACPI_USAGE_HEADER(usage) \
2016-08-04 11:45:22 +03:00
printf ( " Usage: %s \n Options: \n " , usage ) ;
2014-07-08 06:07:13 +04:00
# define ACPI_USAGE_TEXT(description) \
2016-08-04 11:45:22 +03:00
printf ( description ) ;
2014-04-04 08:39:42 +04:00
# define ACPI_OPTION(name, description) \
2016-08-04 11:45:22 +03:00
printf ( " %-20s%s \n " , name , description ) ;
2014-04-04 08:39:42 +04:00
2015-12-29 08:56:46 +03:00
/* Check for unexpected exceptions */
# define ACPI_CHECK_STATUS(name, status, expected) \
if ( status ! = expected ) \
{ \
acpi_os_printf ( " Unexpected %s from %s (%s-%d) \n " , \
acpi_format_exception ( status ) , # name , _acpi_module_name , __LINE__ ) ; \
}
/* Check for unexpected non-AE_OK errors */
# define ACPI_CHECK_OK(name, status) ACPI_CHECK_STATUS (name, status, AE_OK);
2014-04-04 08:39:42 +04:00
# define FILE_SUFFIX_DISASSEMBLY "dsl"
2015-10-19 05:25:04 +03:00
# define FILE_SUFFIX_BINARY_TABLE ".dat" /* Needs the dot */
2014-04-04 08:39:42 +04:00
2015-12-29 08:54:58 +03:00
/* acfileio */
acpi_status
2015-12-29 08:55:05 +03:00
ac_get_all_tables_from_file ( char * filename ,
u8 get_only_aml_tables ,
struct acpi_new_table_desc * * return_list_head ) ;
2017-07-10 10:22:56 +03:00
void ac_delete_table_list ( struct acpi_new_table_desc * list_head ) ;
2015-12-29 08:55:05 +03:00
u8 ac_is_file_binary ( FILE * file ) ;
acpi_status ac_validate_table_header ( FILE * file , long table_offset ) ;
2015-12-29 08:54:58 +03:00
/* Values for get_only_aml_tables */
# define ACPI_GET_ONLY_AML_TABLES TRUE
# define ACPI_GET_ALL_TABLES FALSE
2014-04-04 08:39:42 +04:00
/*
* getopt
*/
int acpi_getopt ( int argc , char * * argv , char * opts ) ;
int acpi_getopt_argument ( int argc , char * * argv ) ;
extern int acpi_gbl_optind ;
extern int acpi_gbl_opterr ;
extern int acpi_gbl_sub_opt_char ;
extern char * acpi_gbl_optarg ;
/*
* cmfsize - Common get file size function
*/
2014-07-08 06:07:19 +04:00
u32 cm_get_file_size ( ACPI_FILE file ) ;
2014-04-04 08:39:42 +04:00
/*
* adwalk
*/
void
acpi_dm_cross_reference_namespace ( union acpi_parse_object * parse_tree_root ,
struct acpi_namespace_node * namespace_root ,
acpi_owner_id owner_id ) ;
void acpi_dm_dump_tree ( union acpi_parse_object * origin ) ;
void acpi_dm_find_orphan_methods ( union acpi_parse_object * origin ) ;
void
acpi_dm_finish_namespace_load ( union acpi_parse_object * parse_tree_root ,
struct acpi_namespace_node * namespace_root ,
acpi_owner_id owner_id ) ;
void
2017-06-05 11:38:53 +03:00
acpi_dm_convert_parse_objects ( union acpi_parse_object * parse_tree_root ,
struct acpi_namespace_node * namespace_root ) ;
2014-04-04 08:39:42 +04:00
/*
* adfile
*/
acpi_status ad_initialize ( void ) ;
char * fl_generate_filename ( char * input_filename , char * suffix ) ;
acpi_status
fl_split_input_pathname ( char * input_path ,
char * * out_directory_path , char * * out_filename ) ;
2018-05-09 00:06:07 +03:00
char * fl_get_file_basename ( char * file_pathname ) ;
2014-04-04 08:39:42 +04:00
char * ad_generate_filename ( char * prefix , char * table_id ) ;
void
ad_write_table ( struct acpi_table_header * table ,
u32 length , char * table_name , char * oem_table_id ) ;
# endif /* _ACAPPS */