1 /****************************************************************************** 2 * 3 * Module Name: acpidump.h - Include file for acpi_dump utility 4 * 5 *****************************************************************************/ 6 7 /* 8 * Copyright (C) 2000 - 2014, Intel Corp. 9 * All rights reserved. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions, and the following disclaimer, 16 * without modification. 17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 18 * substantially similar to the "NO WARRANTY" disclaimer below 19 * ("Disclaimer") and any redistribution must be conditioned upon 20 * including a substantially similar Disclaimer requirement for further 21 * binary redistribution. 22 * 3. Neither the names of the above-listed copyright holders nor the names 23 * of any contributors may be used to endorse or promote products derived 24 * from this software without specific prior written permission. 25 * 26 * Alternatively, this software may be distributed under the terms of the 27 * GNU General Public License ("GPL") version 2 as published by the Free 28 * Software Foundation. 29 * 30 * NO WARRANTY 31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 41 * POSSIBILITY OF SUCH DAMAGES. 42 */ 43 44 #include <acpi/acpi.h> 45 #include "accommon.h" 46 #include "actables.h" 47 48 #include <stdio.h> 49 #include <fcntl.h> 50 #include <errno.h> 51 #include <sys/stat.h> 52 53 /* 54 * Global variables. Defined in main.c only, externed in all other files 55 */ 56 #ifdef _DECLARE_GLOBALS 57 #define EXTERN 58 #define INIT_GLOBAL(a,b) a=b 59 #else 60 #define EXTERN extern 61 #define INIT_GLOBAL(a,b) a 62 #endif 63 64 /* Globals */ 65 66 EXTERN u8 INIT_GLOBAL(gbl_summary_mode, FALSE); 67 EXTERN u8 INIT_GLOBAL(gbl_verbose_mode, FALSE); 68 EXTERN u8 INIT_GLOBAL(gbl_binary_mode, FALSE); 69 EXTERN u8 INIT_GLOBAL(gbl_dump_customized_tables, FALSE); 70 EXTERN FILE INIT_GLOBAL(*gbl_output_file, NULL); 71 EXTERN char INIT_GLOBAL(*gbl_output_filename, NULL); 72 EXTERN u64 INIT_GLOBAL(gbl_rsdp_base, 0); 73 74 /* Globals required for use with ACPICA modules */ 75 76 #ifdef _DECLARE_GLOBALS 77 u8 acpi_gbl_enable_interpreter_slack = FALSE; 78 u8 acpi_gbl_integer_byte_width = 8; 79 u32 acpi_dbg_level = 0; 80 u32 acpi_dbg_layer = 0; 81 #endif 82 83 /* Action table used to defer requested options */ 84 85 struct ap_dump_action { 86 char *argument; 87 u32 to_be_done; 88 }; 89 90 #define AP_MAX_ACTIONS 32 91 92 #define AP_DUMP_ALL_TABLES 0 93 #define AP_DUMP_TABLE_BY_ADDRESS 1 94 #define AP_DUMP_TABLE_BY_NAME 2 95 #define AP_DUMP_TABLE_BY_FILE 3 96 97 #define AP_MAX_ACPI_FILES 256 /* Prevent infinite loops */ 98 99 /* Minimum FADT sizes for various table addresses */ 100 101 #define MIN_FADT_FOR_DSDT (ACPI_FADT_OFFSET (dsdt) + sizeof (u32)) 102 #define MIN_FADT_FOR_FACS (ACPI_FADT_OFFSET (facs) + sizeof (u32)) 103 #define MIN_FADT_FOR_XDSDT (ACPI_FADT_OFFSET (Xdsdt) + sizeof (u64)) 104 #define MIN_FADT_FOR_XFACS (ACPI_FADT_OFFSET (Xfacs) + sizeof (u64)) 105 106 /* 107 * apdump - Table get/dump routines 108 */ 109 int ap_dump_table_from_file(char *pathname); 110 111 int ap_dump_table_by_name(char *signature); 112 113 int ap_dump_table_by_address(char *ascii_address); 114 115 int ap_dump_all_tables(void); 116 117 u8 ap_is_valid_header(struct acpi_table_header *table); 118 119 u8 ap_is_valid_checksum(struct acpi_table_header *table); 120 121 u32 ap_get_table_length(struct acpi_table_header *table); 122 123 /* 124 * apfiles - File I/O utilities 125 */ 126 int ap_open_output_file(char *pathname); 127 128 int ap_write_to_binary_file(struct acpi_table_header *table, u32 instance); 129 130 struct acpi_table_header *ap_get_table_from_file(char *pathname, 131 u32 *file_size); 132