Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Name: acglobal.h - Declarations for global variables |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | c8100dc | 2016-01-15 08:17:03 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2016, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | #ifndef __ACGLOBAL_H__ |
| 45 | #define __ACGLOBAL_H__ |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /***************************************************************************** |
| 48 | * |
Lv Zheng | 3035ff7 | 2014-04-30 10:03:52 +0800 | [diff] [blame] | 49 | * Globals related to the ACPI tables |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * |
| 51 | ****************************************************************************/ |
| 52 | |
Lv Zheng | 3035ff7 | 2014-04-30 10:03:52 +0800 | [diff] [blame] | 53 | /* Master list of all ACPI tables that were found in the RSDT/XSDT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 55 | ACPI_GLOBAL(struct acpi_table_list, acpi_gbl_root_table_list); |
| 56 | |
| 57 | /* DSDT information. Used to check for DSDT corruption */ |
| 58 | |
| 59 | ACPI_GLOBAL(struct acpi_table_header *, acpi_gbl_DSDT); |
| 60 | ACPI_GLOBAL(struct acpi_table_header, acpi_gbl_original_dsdt_header); |
Lv Zheng | 8ec3f45 | 2015-08-25 10:29:01 +0800 | [diff] [blame] | 61 | ACPI_INIT_GLOBAL(u32, acpi_gbl_dsdt_index, ACPI_INVALID_TABLE_INDEX); |
| 62 | ACPI_INIT_GLOBAL(u32, acpi_gbl_facs_index, ACPI_INVALID_TABLE_INDEX); |
| 63 | ACPI_INIT_GLOBAL(u32, acpi_gbl_xfacs_index, ACPI_INVALID_TABLE_INDEX); |
Lv Zheng | 62fcce9 | 2015-10-14 13:53:57 +0800 | [diff] [blame] | 64 | ACPI_INIT_GLOBAL(u32, acpi_gbl_fadt_index, ACPI_INVALID_TABLE_INDEX); |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 65 | |
| 66 | #if (!ACPI_REDUCED_HARDWARE) |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 67 | ACPI_GLOBAL(struct acpi_table_facs *, acpi_gbl_FACS); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 68 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 69 | #endif /* !ACPI_REDUCED_HARDWARE */ |
| 70 | |
Bob Moore | 531c633 | 2009-02-18 14:06:12 +0800 | [diff] [blame] | 71 | /* These addresses are calculated from the FADT Event Block addresses */ |
Bob Moore | c5a7156 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 72 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 73 | ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1a_status); |
| 74 | ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1a_enable); |
Bob Moore | 531c633 | 2009-02-18 14:06:12 +0800 | [diff] [blame] | 75 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 76 | ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1b_status); |
| 77 | ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1b_enable); |
Lin Ming | 729df0f | 2010-04-01 10:47:56 +0800 | [diff] [blame] | 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 80 | * Handle both ACPI 1.0 and ACPI 2.0+ Integer widths. The integer width is |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 81 | * determined by the revision of the DSDT: If the DSDT revision is less than |
| 82 | * 2, use only the lower 32 bits of the internal 64-bit Integer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | */ |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 84 | ACPI_GLOBAL(u8, acpi_gbl_integer_bit_width); |
| 85 | ACPI_GLOBAL(u8, acpi_gbl_integer_byte_width); |
| 86 | ACPI_GLOBAL(u8, acpi_gbl_integer_nybble_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 88 | /***************************************************************************** |
| 89 | * |
Bob Moore | 22e5b40 | 2011-11-16 10:57:28 +0800 | [diff] [blame] | 90 | * Mutual exclusion within ACPICA subsystem |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 91 | * |
| 92 | ****************************************************************************/ |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | /* |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 95 | * Predefined mutex objects. This array contains the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | * actual OS mutex handles, indexed by the local ACPI_MUTEX_HANDLEs. |
| 97 | * (The table maps local handles to the real OS handles) |
| 98 | */ |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 99 | ACPI_GLOBAL(struct acpi_mutex_info, acpi_gbl_mutex_info[ACPI_NUM_MUTEX]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 101 | /* |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 102 | * Global lock mutex is an actual AML mutex object |
Lin Ming | 749c276 | 2011-03-23 17:26:36 +0800 | [diff] [blame] | 103 | * Global lock semaphore works in conjunction with the actual global lock |
| 104 | * Global lock spinlock is used for "pending" handshake |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 105 | */ |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 106 | ACPI_GLOBAL(union acpi_operand_object *, acpi_gbl_global_lock_mutex); |
| 107 | ACPI_GLOBAL(acpi_semaphore, acpi_gbl_global_lock_semaphore); |
| 108 | ACPI_GLOBAL(acpi_spinlock, acpi_gbl_global_lock_pending_lock); |
| 109 | ACPI_GLOBAL(u16, acpi_gbl_global_lock_handle); |
| 110 | ACPI_GLOBAL(u8, acpi_gbl_global_lock_acquired); |
| 111 | ACPI_GLOBAL(u8, acpi_gbl_global_lock_present); |
| 112 | ACPI_GLOBAL(u8, acpi_gbl_global_lock_pending); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 113 | |
| 114 | /* |
| 115 | * Spinlocks are used for interfaces that can be possibly called at |
| 116 | * interrupt level |
| 117 | */ |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 118 | ACPI_GLOBAL(acpi_spinlock, acpi_gbl_gpe_lock); /* For GPE data structs and registers */ |
| 119 | ACPI_GLOBAL(acpi_spinlock, acpi_gbl_hardware_lock); /* For ACPI H/W except GPE registers */ |
| 120 | ACPI_GLOBAL(acpi_spinlock, acpi_gbl_reference_count_lock); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 121 | |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 122 | /* Mutex for _OSI support */ |
| 123 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 124 | ACPI_GLOBAL(acpi_mutex, acpi_gbl_osi_mutex); |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 125 | |
| 126 | /* Reader/Writer lock is used for namespace walk and dynamic table unload */ |
| 127 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 128 | ACPI_GLOBAL(struct acpi_rw_lock, acpi_gbl_namespace_rw_lock); |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /***************************************************************************** |
| 131 | * |
| 132 | * Miscellaneous globals |
| 133 | * |
| 134 | ****************************************************************************/ |
| 135 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 136 | /* Object caches */ |
| 137 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 138 | ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_namespace_cache); |
| 139 | ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_state_cache); |
| 140 | ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_ps_node_cache); |
| 141 | ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_ps_node_ext_cache); |
| 142 | ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_operand_cache); |
| 143 | |
| 144 | /* System */ |
| 145 | |
| 146 | ACPI_INIT_GLOBAL(u32, acpi_gbl_startup_flags, 0); |
| 147 | ACPI_INIT_GLOBAL(u8, acpi_gbl_shutdown, TRUE); |
Bob Moore | 7b73806 | 2015-12-29 14:01:53 +0800 | [diff] [blame] | 148 | ACPI_INIT_GLOBAL(u8, acpi_gbl_early_initialization, TRUE); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 149 | |
| 150 | /* Global handlers */ |
| 151 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 152 | ACPI_GLOBAL(struct acpi_global_notify_handler, acpi_gbl_global_notify[2]); |
| 153 | ACPI_GLOBAL(acpi_exception_handler, acpi_gbl_exception_handler); |
| 154 | ACPI_GLOBAL(acpi_init_handler, acpi_gbl_init_handler); |
| 155 | ACPI_GLOBAL(acpi_table_handler, acpi_gbl_table_handler); |
| 156 | ACPI_GLOBAL(void *, acpi_gbl_table_handler_context); |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 157 | ACPI_GLOBAL(acpi_interface_handler, acpi_gbl_interface_handler); |
| 158 | ACPI_GLOBAL(struct acpi_sci_handler_info *, acpi_gbl_sci_handler_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 160 | /* Owner ID support */ |
| 161 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 162 | ACPI_GLOBAL(u32, acpi_gbl_owner_id_mask[ACPI_NUM_OWNERID_MASKS]); |
| 163 | ACPI_GLOBAL(u8, acpi_gbl_last_owner_id_index); |
| 164 | ACPI_GLOBAL(u8, acpi_gbl_next_owner_id_offset); |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 165 | |
Bob Moore | ef09c4f | 2011-02-14 16:13:25 +0800 | [diff] [blame] | 166 | /* Initialization sequencing */ |
| 167 | |
Lv Zheng | ebc3c9b | 2016-02-19 14:17:22 +0800 | [diff] [blame^] | 168 | ACPI_INIT_GLOBAL(u8, acpi_gbl_namespace_initialized, FALSE); |
Bob Moore | ef09c4f | 2011-02-14 16:13:25 +0800 | [diff] [blame] | 169 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 170 | /* Misc */ |
| 171 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 172 | ACPI_GLOBAL(u32, acpi_gbl_original_mode); |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 173 | ACPI_GLOBAL(u32, acpi_gbl_ns_lookup_count); |
| 174 | ACPI_GLOBAL(u32, acpi_gbl_ps_find_count); |
| 175 | ACPI_GLOBAL(u16, acpi_gbl_pm1_enable_register_save); |
| 176 | ACPI_GLOBAL(u8, acpi_gbl_debugger_configuration); |
| 177 | ACPI_GLOBAL(u8, acpi_gbl_step_to_next_call); |
| 178 | ACPI_GLOBAL(u8, acpi_gbl_acpi_hardware_present); |
| 179 | ACPI_GLOBAL(u8, acpi_gbl_events_initialized); |
| 180 | ACPI_GLOBAL(struct acpi_interface_info *, acpi_gbl_supported_interfaces); |
| 181 | ACPI_GLOBAL(struct acpi_address_range *, |
| 182 | acpi_gbl_address_range_list[ACPI_ADDRESS_RANGE_MAX]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 184 | /* Other miscellaneous, declared and initialized in utglobal */ |
Bob Moore | dbaaa95 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 185 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 186 | extern const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT]; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 187 | extern const char *acpi_gbl_lowest_dstate_names[ACPI_NUM_sx_w_METHODS]; |
| 188 | extern const char *acpi_gbl_highest_dstate_names[ACPI_NUM_sx_d_METHODS]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | extern const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS]; |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 190 | extern const struct acpi_opcode_info acpi_gbl_aml_op_info[AML_NUM_OPCODES]; |
Bob Moore | dbaaa95 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 191 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 192 | #ifdef ACPI_DBG_TRACK_ALLOCATIONS |
| 193 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 194 | /* Lists for tracking memory allocations (debug only) */ |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 195 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 196 | ACPI_GLOBAL(struct acpi_memory_list *, acpi_gbl_global_list); |
| 197 | ACPI_GLOBAL(struct acpi_memory_list *, acpi_gbl_ns_node_list); |
| 198 | ACPI_GLOBAL(u8, acpi_gbl_display_final_mem_stats); |
| 199 | ACPI_GLOBAL(u8, acpi_gbl_disable_mem_tracking); |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 200 | #endif |
| 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | /***************************************************************************** |
| 203 | * |
| 204 | * Namespace globals |
| 205 | * |
| 206 | ****************************************************************************/ |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | #if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY) |
| 209 | #define NUM_PREDEFINED_NAMES 10 |
| 210 | #else |
| 211 | #define NUM_PREDEFINED_NAMES 9 |
| 212 | #endif |
| 213 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 214 | ACPI_GLOBAL(struct acpi_namespace_node, acpi_gbl_root_node_struct); |
| 215 | ACPI_GLOBAL(struct acpi_namespace_node *, acpi_gbl_root_node); |
| 216 | ACPI_GLOBAL(struct acpi_namespace_node *, acpi_gbl_fadt_gpe_device); |
| 217 | ACPI_GLOBAL(union acpi_operand_object *, acpi_gbl_module_code_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Bob Moore | b7f9f04 | 2008-04-10 19:06:40 +0400 | [diff] [blame] | 219 | extern const u8 acpi_gbl_ns_properties[ACPI_NUM_NS_TYPES]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 220 | extern const struct acpi_predefined_names |
| 221 | acpi_gbl_pre_defined_names[NUM_PREDEFINED_NAMES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
| 223 | #ifdef ACPI_DEBUG_OUTPUT |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 224 | ACPI_GLOBAL(u32, acpi_gbl_current_node_count); |
| 225 | ACPI_GLOBAL(u32, acpi_gbl_current_node_size); |
| 226 | ACPI_GLOBAL(u32, acpi_gbl_max_concurrent_node_count); |
| 227 | ACPI_GLOBAL(acpi_size *, acpi_gbl_entry_stack_pointer); |
| 228 | ACPI_GLOBAL(acpi_size *, acpi_gbl_lowest_stack_pointer); |
| 229 | ACPI_GLOBAL(u32, acpi_gbl_deepest_nesting); |
| 230 | ACPI_INIT_GLOBAL(u32, acpi_gbl_nesting_level, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | #endif |
| 232 | |
| 233 | /***************************************************************************** |
| 234 | * |
| 235 | * Interpreter globals |
| 236 | * |
| 237 | ****************************************************************************/ |
| 238 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 239 | ACPI_GLOBAL(struct acpi_thread_state *, acpi_gbl_current_walk_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Bob Moore | 47cdf8c | 2015-08-25 10:30:00 +0800 | [diff] [blame] | 241 | /* Maximum number of While() loop iterations before forced abort */ |
| 242 | |
| 243 | ACPI_GLOBAL(u16, acpi_gbl_max_loop_iterations); |
| 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* Control method single step flag */ |
| 246 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 247 | ACPI_GLOBAL(u8, acpi_gbl_cm_single_step); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | /***************************************************************************** |
| 250 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | * Hardware globals |
| 252 | * |
| 253 | ****************************************************************************/ |
| 254 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | extern struct acpi_bit_register_info |
| 256 | acpi_gbl_bit_register_info[ACPI_NUM_BITREG]; |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 257 | |
| 258 | ACPI_GLOBAL(u8, acpi_gbl_sleep_type_a); |
| 259 | ACPI_GLOBAL(u8, acpi_gbl_sleep_type_b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
| 261 | /***************************************************************************** |
| 262 | * |
| 263 | * Event and GPE globals |
| 264 | * |
| 265 | ****************************************************************************/ |
| 266 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 267 | #if (!ACPI_REDUCED_HARDWARE) |
| 268 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 269 | ACPI_GLOBAL(u8, acpi_gbl_all_gpes_initialized); |
| 270 | ACPI_GLOBAL(struct acpi_gpe_xrupt_info *, acpi_gbl_gpe_xrupt_list_head); |
| 271 | ACPI_GLOBAL(struct acpi_gpe_block_info *, |
| 272 | acpi_gbl_gpe_fadt_blocks[ACPI_MAX_GPE_BLOCKS]); |
| 273 | ACPI_GLOBAL(acpi_gbl_event_handler, acpi_gbl_global_event_handler); |
| 274 | ACPI_GLOBAL(void *, acpi_gbl_global_event_handler_context); |
| 275 | ACPI_GLOBAL(struct acpi_fixed_event_handler, |
| 276 | acpi_gbl_fixed_event_handlers[ACPI_NUM_FIXED_EVENTS]); |
| 277 | |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 278 | extern struct acpi_fixed_event_info |
| 279 | acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS]; |
Bob Moore | 4c90ece | 2006-06-08 16:29:00 -0400 | [diff] [blame] | 280 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 281 | #endif /* !ACPI_REDUCED_HARDWARE */ |
| 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | /***************************************************************************** |
| 284 | * |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 285 | * Debug support |
| 286 | * |
| 287 | ****************************************************************************/ |
| 288 | |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 289 | /* Event counters */ |
| 290 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 291 | ACPI_GLOBAL(u32, acpi_method_count); |
| 292 | ACPI_GLOBAL(u32, acpi_gpe_count); |
| 293 | ACPI_GLOBAL(u32, acpi_sci_count); |
| 294 | ACPI_GLOBAL(u32, acpi_fixed_event_count[ACPI_NUM_FIXED_EVENTS]); |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 295 | |
| 296 | /* Support for dynamic control method tracing mechanism */ |
| 297 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 298 | ACPI_GLOBAL(u32, acpi_gbl_original_dbg_level); |
| 299 | ACPI_GLOBAL(u32, acpi_gbl_original_dbg_layer); |
Lv Zheng | f540fad | 2012-10-31 02:25:15 +0000 | [diff] [blame] | 300 | |
| 301 | /***************************************************************************** |
| 302 | * |
Bob Moore | d9652b4 | 2013-01-25 05:41:08 +0000 | [diff] [blame] | 303 | * Debugger and Disassembler globals |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | * |
| 305 | ****************************************************************************/ |
| 306 | |
Lv Zheng | 83b80bac | 2014-07-08 10:06:45 +0800 | [diff] [blame] | 307 | ACPI_INIT_GLOBAL(u8, acpi_gbl_db_output_flags, ACPI_DB_CONSOLE_OUTPUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
| 309 | #ifdef ACPI_DISASSEMBLER |
| 310 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 311 | /* Do not disassemble buffers to resource descriptors */ |
Bob Moore | d9652b4 | 2013-01-25 05:41:08 +0000 | [diff] [blame] | 312 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 313 | ACPI_INIT_GLOBAL(u8, acpi_gbl_no_resource_disassembly, FALSE); |
| 314 | ACPI_INIT_GLOBAL(u8, acpi_gbl_ignore_noop_operator, FALSE); |
Bob Moore | 5f040fc | 2014-11-27 14:26:12 +0800 | [diff] [blame] | 315 | ACPI_INIT_GLOBAL(u8, acpi_gbl_cstyle_disassembly, TRUE); |
Bob Moore | 8b0b1a9 | 2015-04-13 11:50:21 +0800 | [diff] [blame] | 316 | ACPI_INIT_GLOBAL(u8, acpi_gbl_force_aml_disassembly, FALSE); |
Lv Zheng | a2352db | 2015-08-25 10:30:34 +0800 | [diff] [blame] | 317 | ACPI_INIT_GLOBAL(u8, acpi_gbl_dm_opt_verbose, TRUE); |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 318 | |
Lv Zheng | 1bdc63b | 2015-08-25 10:30:27 +0800 | [diff] [blame] | 319 | ACPI_GLOBAL(u8, acpi_gbl_dm_opt_disasm); |
Bob Moore | 2aabfad | 2015-08-25 10:28:47 +0800 | [diff] [blame] | 320 | ACPI_GLOBAL(u8, acpi_gbl_dm_opt_listing); |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 321 | ACPI_GLOBAL(u8, acpi_gbl_num_external_methods); |
| 322 | ACPI_GLOBAL(u32, acpi_gbl_resolved_external_methods); |
| 323 | ACPI_GLOBAL(struct acpi_external_list *, acpi_gbl_external_list); |
| 324 | ACPI_GLOBAL(struct acpi_external_file *, acpi_gbl_external_file_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | #endif |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | #ifdef ACPI_DEBUGGER |
| 328 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 329 | ACPI_INIT_GLOBAL(u8, acpi_gbl_abort_method, FALSE); |
Lv Zheng | f988f24 | 2015-10-19 10:25:50 +0800 | [diff] [blame] | 330 | ACPI_INIT_GLOBAL(acpi_thread_id, acpi_gbl_db_thread_id, ACPI_INVALID_THREAD_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Bob Moore | 0a38113 | 2015-04-13 11:50:14 +0800 | [diff] [blame] | 332 | ACPI_GLOBAL(u8, acpi_gbl_db_opt_no_ini_methods); |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 333 | ACPI_GLOBAL(u8, acpi_gbl_db_opt_no_region_support); |
| 334 | ACPI_GLOBAL(u8, acpi_gbl_db_output_to_file); |
| 335 | ACPI_GLOBAL(char *, acpi_gbl_db_buffer); |
| 336 | ACPI_GLOBAL(char *, acpi_gbl_db_filename); |
| 337 | ACPI_GLOBAL(u32, acpi_gbl_db_debug_level); |
| 338 | ACPI_GLOBAL(u32, acpi_gbl_db_console_debug_level); |
| 339 | ACPI_GLOBAL(struct acpi_namespace_node *, acpi_gbl_db_scope_node); |
Lv Zheng | af08f9c | 2015-10-19 10:25:32 +0800 | [diff] [blame] | 340 | ACPI_GLOBAL(u8, acpi_gbl_db_terminate_loop); |
| 341 | ACPI_GLOBAL(u8, acpi_gbl_db_threads_terminated); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 343 | ACPI_GLOBAL(char *, acpi_gbl_db_args[ACPI_DEBUGGER_MAX_ARGS]); |
| 344 | ACPI_GLOBAL(acpi_object_type, acpi_gbl_db_arg_types[ACPI_DEBUGGER_MAX_ARGS]); |
Bob Moore | 1f5210a | 2013-09-23 09:51:52 +0800 | [diff] [blame] | 345 | |
| 346 | /* These buffers should all be the same size */ |
| 347 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 348 | ACPI_GLOBAL(char, acpi_gbl_db_parsed_buf[ACPI_DB_LINE_BUFFER_SIZE]); |
| 349 | ACPI_GLOBAL(char, acpi_gbl_db_scope_buf[ACPI_DB_LINE_BUFFER_SIZE]); |
| 350 | ACPI_GLOBAL(char, acpi_gbl_db_debug_filename[ACPI_DB_LINE_BUFFER_SIZE]); |
Bob Moore | 1f5210a | 2013-09-23 09:51:52 +0800 | [diff] [blame] | 351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | /* |
| 353 | * Statistic globals |
| 354 | */ |
Bob Moore | e69ab9a | 2015-08-25 10:29:52 +0800 | [diff] [blame] | 355 | ACPI_GLOBAL(u16, acpi_gbl_obj_type_count[ACPI_TOTAL_TYPES]); |
| 356 | ACPI_GLOBAL(u16, acpi_gbl_node_type_count[ACPI_TOTAL_TYPES]); |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 357 | ACPI_GLOBAL(u16, acpi_gbl_obj_type_count_misc); |
| 358 | ACPI_GLOBAL(u16, acpi_gbl_node_type_count_misc); |
| 359 | ACPI_GLOBAL(u32, acpi_gbl_num_nodes); |
| 360 | ACPI_GLOBAL(u32, acpi_gbl_num_objects); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 362 | #endif /* ACPI_DEBUGGER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Bob Moore | 40cdb36 | 2012-06-29 09:12:59 +0800 | [diff] [blame] | 364 | /***************************************************************************** |
| 365 | * |
Lv Zheng | 71487f3f | 2014-01-08 13:45:02 +0800 | [diff] [blame] | 366 | * Application globals |
| 367 | * |
| 368 | ****************************************************************************/ |
| 369 | |
| 370 | #ifdef ACPI_APPLICATION |
| 371 | |
Lv Zheng | 3aa0b08 | 2014-02-26 10:32:38 +0800 | [diff] [blame] | 372 | ACPI_INIT_GLOBAL(ACPI_FILE, acpi_gbl_debug_file, NULL); |
Lv Zheng | 83b80bac | 2014-07-08 10:06:45 +0800 | [diff] [blame] | 373 | ACPI_INIT_GLOBAL(ACPI_FILE, acpi_gbl_output_file, NULL); |
Lv Zheng | 71487f3f | 2014-01-08 13:45:02 +0800 | [diff] [blame] | 374 | |
Lv Zheng | 80a648c | 2014-07-08 10:07:00 +0800 | [diff] [blame] | 375 | /* Print buffer */ |
| 376 | |
| 377 | ACPI_GLOBAL(acpi_spinlock, acpi_gbl_print_lock); /* For print buffer */ |
| 378 | ACPI_GLOBAL(char, acpi_gbl_print_buffer[1024]); |
| 379 | |
Lv Zheng | 71487f3f | 2014-01-08 13:45:02 +0800 | [diff] [blame] | 380 | #endif /* ACPI_APPLICATION */ |
| 381 | |
| 382 | /***************************************************************************** |
| 383 | * |
Bob Moore | 40cdb36 | 2012-06-29 09:12:59 +0800 | [diff] [blame] | 384 | * Info/help support |
| 385 | * |
| 386 | ****************************************************************************/ |
| 387 | |
| 388 | extern const struct ah_predefined_name asl_predefined_info[]; |
Lv Zheng | e2b9035 | 2014-04-04 12:39:50 +0800 | [diff] [blame] | 389 | extern const struct ah_device_id asl_device_ids[]; |
Bob Moore | 40cdb36 | 2012-06-29 09:12:59 +0800 | [diff] [blame] | 390 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 391 | #endif /* __ACGLOBAL_H__ */ |