2018-03-15 02:13:07 +03:00
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2015-10-19 05:25:20 +03:00
/*******************************************************************************
*
* Module Name : dbfileio - Debugger file I / O commands . These can ' t usually
* be used when running the debugger in Ring 0 ( Kernel mode )
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include <acpi/acpi.h>
# include "accommon.h"
# include "acdebug.h"
# include "actables.h"
# define _COMPONENT ACPI_CA_DEBUGGER
ACPI_MODULE_NAME ( " dbfileio " )
2016-08-04 11:44:04 +03:00
# ifdef ACPI_APPLICATION
# include "acapps.h"
2015-10-19 05:25:20 +03:00
# ifdef ACPI_DEBUGGER
/*******************************************************************************
*
* FUNCTION : acpi_db_close_debug_file
*
* PARAMETERS : None
*
* RETURN : None
*
* DESCRIPTION : If open , close the current debug output file
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void acpi_db_close_debug_file ( void )
{
if ( acpi_gbl_debug_file ) {
fclose ( acpi_gbl_debug_file ) ;
acpi_gbl_debug_file = NULL ;
acpi_gbl_db_output_to_file = FALSE ;
acpi_os_printf ( " Debug output file %s closed \n " ,
acpi_gbl_db_debug_filename ) ;
}
}
/*******************************************************************************
*
* FUNCTION : acpi_db_open_debug_file
*
* PARAMETERS : name - Filename to open
*
* RETURN : None
*
* DESCRIPTION : Open a file where debug output will be directed .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void acpi_db_open_debug_file ( char * name )
{
acpi_db_close_debug_file ( ) ;
acpi_gbl_debug_file = fopen ( name , " w+ " ) ;
if ( ! acpi_gbl_debug_file ) {
acpi_os_printf ( " Could not open debug file %s \n " , name ) ;
return ;
}
acpi_os_printf ( " Debug output file %s opened \n " , name ) ;
2018-01-05 00:41:27 +03:00
acpi_ut_safe_strncpy ( acpi_gbl_db_debug_filename , name ,
sizeof ( acpi_gbl_db_debug_filename ) ) ;
2015-10-19 05:25:20 +03:00
acpi_gbl_db_output_to_file = TRUE ;
}
# endif
/*******************************************************************************
*
2015-12-29 08:54:58 +03:00
* FUNCTION : acpi_db_load_tables
2015-10-19 05:25:20 +03:00
*
2015-12-29 08:54:58 +03:00
* PARAMETERS : list_head - List of ACPI tables to load
2015-10-19 05:25:20 +03:00
*
* RETURN : Status
*
2015-12-29 08:54:58 +03:00
* DESCRIPTION : Load ACPI tables from a previously constructed table list .
2015-10-19 05:25:20 +03:00
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2015-12-29 08:54:58 +03:00
acpi_status acpi_db_load_tables ( struct acpi_new_table_desc * list_head )
2015-10-19 05:25:20 +03:00
{
acpi_status status ;
2015-12-29 08:54:58 +03:00
struct acpi_new_table_desc * table_list_head ;
2015-10-19 05:25:20 +03:00
struct acpi_table_header * table ;
2015-12-29 08:54:58 +03:00
/* Load all ACPI tables in the list */
2015-10-19 05:25:20 +03:00
2015-12-29 08:54:58 +03:00
table_list_head = list_head ;
while ( table_list_head ) {
table = table_list_head - > table ;
2015-10-19 05:25:20 +03:00
2019-10-26 00:36:53 +03:00
status = acpi_load_table ( table , NULL ) ;
2015-10-19 05:25:20 +03:00
if ( ACPI_FAILURE ( status ) ) {
if ( status = = AE_ALREADY_EXISTS ) {
acpi_os_printf
( " Table %4.4s is already installed \n " ,
table - > signature ) ;
} else {
acpi_os_printf ( " Could not install table, %s \n " ,
acpi_format_exception ( status ) ) ;
}
return ( status ) ;
}
2016-08-04 11:44:04 +03:00
acpi_os_printf
( " Acpi table [%4.4s] successfully installed and loaded \n " ,
table - > signature ) ;
2015-10-19 05:25:20 +03:00
2015-12-29 08:54:58 +03:00
table_list_head = table_list_head - > next ;
2015-10-19 05:25:20 +03:00
}
return ( AE_OK ) ;
}
2016-08-04 11:44:04 +03:00
# endif