ACPICA: Linuxize: Export debugger files to Linux
[deliverable/linux.git] / drivers / acpi / acpica / acglobal.h
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Name: acglobal.h - Declarations for global variables
4 *
5 *****************************************************************************/
6
7/*
82a80941 8 * Copyright (C) 2000 - 2015, Intel Corp.
1da177e4
LT
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
1da177e4
LT
47/*****************************************************************************
48 *
3035ff70 49 * Globals related to the ACPI tables
1da177e4
LT
50 *
51 ****************************************************************************/
52
3035ff70 53/* Master list of all ACPI tables that were found in the RSDT/XSDT */
b681f7d9 54
3aa0b085
LZ
55ACPI_GLOBAL(struct acpi_table_list, acpi_gbl_root_table_list);
56
57/* DSDT information. Used to check for DSDT corruption */
58
59ACPI_GLOBAL(struct acpi_table_header *, acpi_gbl_DSDT);
60ACPI_GLOBAL(struct acpi_table_header, acpi_gbl_original_dsdt_header);
8ec3f459
LZ
61ACPI_INIT_GLOBAL(u32, acpi_gbl_dsdt_index, ACPI_INVALID_TABLE_INDEX);
62ACPI_INIT_GLOBAL(u32, acpi_gbl_facs_index, ACPI_INVALID_TABLE_INDEX);
63ACPI_INIT_GLOBAL(u32, acpi_gbl_xfacs_index, ACPI_INVALID_TABLE_INDEX);
62fcce91 64ACPI_INIT_GLOBAL(u32, acpi_gbl_fadt_index, ACPI_INVALID_TABLE_INDEX);
33620c54
BM
65
66#if (!ACPI_REDUCED_HARDWARE)
3aa0b085 67ACPI_GLOBAL(struct acpi_table_facs *, acpi_gbl_FACS);
73459f73 68
33620c54
BM
69#endif /* !ACPI_REDUCED_HARDWARE */
70
531c633d 71/* These addresses are calculated from the FADT Event Block addresses */
c5a71569 72
3aa0b085
LZ
73ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1a_status);
74ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1a_enable);
c5a71569 75
3aa0b085
LZ
76ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1b_status);
77ACPI_GLOBAL(struct acpi_generic_address, acpi_gbl_xpm1b_enable);
729df0f8 78
1da177e4 79/*
3aa0b085 80 * Handle both ACPI 1.0 and ACPI 2.0+ Integer widths. The integer width is
f3d2e786
BM
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.
1da177e4 83 */
3aa0b085
LZ
84ACPI_GLOBAL(u8, acpi_gbl_integer_bit_width);
85ACPI_GLOBAL(u8, acpi_gbl_integer_byte_width);
86ACPI_GLOBAL(u8, acpi_gbl_integer_nybble_width);
1da177e4 87
967440e3
BM
88/*****************************************************************************
89 *
22e5b40a 90 * Mutual exclusion within ACPICA subsystem
967440e3
BM
91 *
92 ****************************************************************************/
93
1da177e4 94/*
f3d2e786 95 * Predefined mutex objects. This array contains the
1da177e4
LT
96 * actual OS mutex handles, indexed by the local ACPI_MUTEX_HANDLEs.
97 * (The table maps local handles to the real OS handles)
98 */
3aa0b085 99ACPI_GLOBAL(struct acpi_mutex_info, acpi_gbl_mutex_info[ACPI_NUM_MUTEX]);
1da177e4 100
967440e3 101/*
ba886cd4 102 * Global lock mutex is an actual AML mutex object
749c2763
LM
103 * Global lock semaphore works in conjunction with the actual global lock
104 * Global lock spinlock is used for "pending" handshake
967440e3 105 */
3aa0b085
LZ
106ACPI_GLOBAL(union acpi_operand_object *, acpi_gbl_global_lock_mutex);
107ACPI_GLOBAL(acpi_semaphore, acpi_gbl_global_lock_semaphore);
108ACPI_GLOBAL(acpi_spinlock, acpi_gbl_global_lock_pending_lock);
109ACPI_GLOBAL(u16, acpi_gbl_global_lock_handle);
110ACPI_GLOBAL(u8, acpi_gbl_global_lock_acquired);
111ACPI_GLOBAL(u8, acpi_gbl_global_lock_present);
112ACPI_GLOBAL(u8, acpi_gbl_global_lock_pending);
967440e3
BM
113
114/*
115 * Spinlocks are used for interfaces that can be possibly called at
116 * interrupt level
117 */
3aa0b085
LZ
118ACPI_GLOBAL(acpi_spinlock, acpi_gbl_gpe_lock); /* For GPE data structs and registers */
119ACPI_GLOBAL(acpi_spinlock, acpi_gbl_hardware_lock); /* For ACPI H/W except GPE registers */
120ACPI_GLOBAL(acpi_spinlock, acpi_gbl_reference_count_lock);
967440e3 121
739dcbb9
LZ
122/* Mutex for _OSI support */
123
3aa0b085 124ACPI_GLOBAL(acpi_mutex, acpi_gbl_osi_mutex);
739dcbb9
LZ
125
126/* Reader/Writer lock is used for namespace walk and dynamic table unload */
127
3aa0b085 128ACPI_GLOBAL(struct acpi_rw_lock, acpi_gbl_namespace_rw_lock);
739dcbb9 129
1da177e4
LT
130/*****************************************************************************
131 *
132 * Miscellaneous globals
133 *
134 ****************************************************************************/
135
73459f73
RM
136/* Object caches */
137
3aa0b085
LZ
138ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_namespace_cache);
139ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_state_cache);
140ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_ps_node_cache);
141ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_ps_node_ext_cache);
142ACPI_GLOBAL(acpi_cache_t *, acpi_gbl_operand_cache);
143
144/* System */
145
146ACPI_INIT_GLOBAL(u32, acpi_gbl_startup_flags, 0);
147ACPI_INIT_GLOBAL(u8, acpi_gbl_shutdown, TRUE);
73459f73
RM
148
149/* Global handlers */
1da177e4 150
3aa0b085
LZ
151ACPI_GLOBAL(struct acpi_global_notify_handler, acpi_gbl_global_notify[2]);
152ACPI_GLOBAL(acpi_exception_handler, acpi_gbl_exception_handler);
153ACPI_GLOBAL(acpi_init_handler, acpi_gbl_init_handler);
154ACPI_GLOBAL(acpi_table_handler, acpi_gbl_table_handler);
155ACPI_GLOBAL(void *, acpi_gbl_table_handler_context);
3aa0b085
LZ
156ACPI_GLOBAL(acpi_interface_handler, acpi_gbl_interface_handler);
157ACPI_GLOBAL(struct acpi_sci_handler_info *, acpi_gbl_sci_handler_list);
1da177e4 158
ba886cd4
BM
159/* Owner ID support */
160
3aa0b085
LZ
161ACPI_GLOBAL(u32, acpi_gbl_owner_id_mask[ACPI_NUM_OWNERID_MASKS]);
162ACPI_GLOBAL(u8, acpi_gbl_last_owner_id_index);
163ACPI_GLOBAL(u8, acpi_gbl_next_owner_id_offset);
ba886cd4 164
ef09c4f5
BM
165/* Initialization sequencing */
166
3aa0b085 167ACPI_GLOBAL(u8, acpi_gbl_reg_methods_executed);
ef09c4f5 168
73459f73
RM
169/* Misc */
170
3aa0b085 171ACPI_GLOBAL(u32, acpi_gbl_original_mode);
3aa0b085
LZ
172ACPI_GLOBAL(u32, acpi_gbl_ns_lookup_count);
173ACPI_GLOBAL(u32, acpi_gbl_ps_find_count);
174ACPI_GLOBAL(u16, acpi_gbl_pm1_enable_register_save);
175ACPI_GLOBAL(u8, acpi_gbl_debugger_configuration);
176ACPI_GLOBAL(u8, acpi_gbl_step_to_next_call);
177ACPI_GLOBAL(u8, acpi_gbl_acpi_hardware_present);
178ACPI_GLOBAL(u8, acpi_gbl_events_initialized);
179ACPI_GLOBAL(struct acpi_interface_info *, acpi_gbl_supported_interfaces);
180ACPI_GLOBAL(struct acpi_address_range *,
181 acpi_gbl_address_range_list[ACPI_ADDRESS_RANGE_MAX]);
182
183/* Other miscellaneous, declared and initialized in utglobal */
184
4be44fcd 185extern const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT];
15b8dd53
BM
186extern const char *acpi_gbl_lowest_dstate_names[ACPI_NUM_sx_w_METHODS];
187extern const char *acpi_gbl_highest_dstate_names[ACPI_NUM_sx_d_METHODS];
4be44fcd 188extern const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS];
3aa0b085 189extern const struct acpi_opcode_info acpi_gbl_aml_op_info[AML_NUM_OPCODES];
dbaaa956 190
f540fadf
LZ
191#ifdef ACPI_DBG_TRACK_ALLOCATIONS
192
3aa0b085 193/* Lists for tracking memory allocations (debug only) */
f540fadf 194
3aa0b085
LZ
195ACPI_GLOBAL(struct acpi_memory_list *, acpi_gbl_global_list);
196ACPI_GLOBAL(struct acpi_memory_list *, acpi_gbl_ns_node_list);
197ACPI_GLOBAL(u8, acpi_gbl_display_final_mem_stats);
198ACPI_GLOBAL(u8, acpi_gbl_disable_mem_tracking);
f540fadf
LZ
199#endif
200
1da177e4
LT
201/*****************************************************************************
202 *
203 * Namespace globals
204 *
205 ****************************************************************************/
206
1da177e4
LT
207#if !defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)
208#define NUM_PREDEFINED_NAMES 10
209#else
210#define NUM_PREDEFINED_NAMES 9
211#endif
212
3aa0b085
LZ
213ACPI_GLOBAL(struct acpi_namespace_node, acpi_gbl_root_node_struct);
214ACPI_GLOBAL(struct acpi_namespace_node *, acpi_gbl_root_node);
215ACPI_GLOBAL(struct acpi_namespace_node *, acpi_gbl_fadt_gpe_device);
216ACPI_GLOBAL(union acpi_operand_object *, acpi_gbl_module_code_list);
1da177e4 217
b7f9f042 218extern const u8 acpi_gbl_ns_properties[ACPI_NUM_NS_TYPES];
4be44fcd
LB
219extern const struct acpi_predefined_names
220 acpi_gbl_pre_defined_names[NUM_PREDEFINED_NAMES];
1da177e4
LT
221
222#ifdef ACPI_DEBUG_OUTPUT
3aa0b085
LZ
223ACPI_GLOBAL(u32, acpi_gbl_current_node_count);
224ACPI_GLOBAL(u32, acpi_gbl_current_node_size);
225ACPI_GLOBAL(u32, acpi_gbl_max_concurrent_node_count);
226ACPI_GLOBAL(acpi_size *, acpi_gbl_entry_stack_pointer);
227ACPI_GLOBAL(acpi_size *, acpi_gbl_lowest_stack_pointer);
228ACPI_GLOBAL(u32, acpi_gbl_deepest_nesting);
229ACPI_INIT_GLOBAL(u32, acpi_gbl_nesting_level, 0);
1da177e4
LT
230#endif
231
232/*****************************************************************************
233 *
234 * Interpreter globals
235 *
236 ****************************************************************************/
237
3aa0b085 238ACPI_GLOBAL(struct acpi_thread_state *, acpi_gbl_current_walk_list);
1da177e4 239
47cdf8c6
BM
240/* Maximum number of While() loop iterations before forced abort */
241
242ACPI_GLOBAL(u16, acpi_gbl_max_loop_iterations);
243
1da177e4
LT
244/* Control method single step flag */
245
3aa0b085 246ACPI_GLOBAL(u8, acpi_gbl_cm_single_step);
1da177e4 247
1da177e4
LT
248/*****************************************************************************
249 *
250 * Hardware globals
251 *
252 ****************************************************************************/
253
4be44fcd
LB
254extern struct acpi_bit_register_info
255 acpi_gbl_bit_register_info[ACPI_NUM_BITREG];
3aa0b085
LZ
256
257ACPI_GLOBAL(u8, acpi_gbl_sleep_type_a);
258ACPI_GLOBAL(u8, acpi_gbl_sleep_type_b);
1da177e4
LT
259
260/*****************************************************************************
261 *
262 * Event and GPE globals
263 *
264 ****************************************************************************/
265
33620c54
BM
266#if (!ACPI_REDUCED_HARDWARE)
267
3aa0b085
LZ
268ACPI_GLOBAL(u8, acpi_gbl_all_gpes_initialized);
269ACPI_GLOBAL(struct acpi_gpe_xrupt_info *, acpi_gbl_gpe_xrupt_list_head);
270ACPI_GLOBAL(struct acpi_gpe_block_info *,
271 acpi_gbl_gpe_fadt_blocks[ACPI_MAX_GPE_BLOCKS]);
272ACPI_GLOBAL(acpi_gbl_event_handler, acpi_gbl_global_event_handler);
273ACPI_GLOBAL(void *, acpi_gbl_global_event_handler_context);
274ACPI_GLOBAL(struct acpi_fixed_event_handler,
275 acpi_gbl_fixed_event_handlers[ACPI_NUM_FIXED_EVENTS]);
276
739dcbb9
LZ
277extern struct acpi_fixed_event_info
278 acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS];
4c90ece2 279
33620c54
BM
280#endif /* !ACPI_REDUCED_HARDWARE */
281
f540fadf
LZ
282/*****************************************************************************
283 *
284 * Debug support
285 *
286 ****************************************************************************/
287
f540fadf
LZ
288/* Event counters */
289
3aa0b085
LZ
290ACPI_GLOBAL(u32, acpi_method_count);
291ACPI_GLOBAL(u32, acpi_gpe_count);
292ACPI_GLOBAL(u32, acpi_sci_count);
293ACPI_GLOBAL(u32, acpi_fixed_event_count[ACPI_NUM_FIXED_EVENTS]);
f540fadf
LZ
294
295/* Support for dynamic control method tracing mechanism */
296
3aa0b085
LZ
297ACPI_GLOBAL(u32, acpi_gbl_original_dbg_level);
298ACPI_GLOBAL(u32, acpi_gbl_original_dbg_layer);
f540fadf 299
1da177e4
LT
300/*****************************************************************************
301 *
d9652b4e 302 * Debugger and Disassembler globals
1da177e4
LT
303 *
304 ****************************************************************************/
305
83b80bac 306ACPI_INIT_GLOBAL(u8, acpi_gbl_db_output_flags, ACPI_DB_CONSOLE_OUTPUT);
1da177e4
LT
307
308#ifdef ACPI_DISASSEMBLER
309
3aa0b085
LZ
310/* Do not disassemble buffers to resource descriptors */
311
312ACPI_INIT_GLOBAL(u8, acpi_gbl_no_resource_disassembly, FALSE);
313ACPI_INIT_GLOBAL(u8, acpi_gbl_ignore_noop_operator, FALSE);
5f040fc7 314ACPI_INIT_GLOBAL(u8, acpi_gbl_cstyle_disassembly, TRUE);
8b0b1a99 315ACPI_INIT_GLOBAL(u8, acpi_gbl_force_aml_disassembly, FALSE);
a2352db5 316ACPI_INIT_GLOBAL(u8, acpi_gbl_dm_opt_verbose, TRUE);
d9652b4e 317
1bdc63bf 318ACPI_GLOBAL(u8, acpi_gbl_dm_opt_disasm);
2aabfad7 319ACPI_GLOBAL(u8, acpi_gbl_dm_opt_listing);
3aa0b085
LZ
320ACPI_GLOBAL(u8, acpi_gbl_num_external_methods);
321ACPI_GLOBAL(u32, acpi_gbl_resolved_external_methods);
322ACPI_GLOBAL(struct acpi_external_list *, acpi_gbl_external_list);
323ACPI_GLOBAL(struct acpi_external_file *, acpi_gbl_external_file_list);
1da177e4
LT
324#endif
325
1da177e4
LT
326#ifdef ACPI_DEBUGGER
327
3aa0b085
LZ
328ACPI_INIT_GLOBAL(u8, acpi_gbl_db_terminate_threads, FALSE);
329ACPI_INIT_GLOBAL(u8, acpi_gbl_abort_method, FALSE);
330ACPI_INIT_GLOBAL(u8, acpi_gbl_method_executing, FALSE);
4be44fcd 331
0a381133 332ACPI_GLOBAL(u8, acpi_gbl_db_opt_no_ini_methods);
3aa0b085
LZ
333ACPI_GLOBAL(u8, acpi_gbl_db_opt_no_region_support);
334ACPI_GLOBAL(u8, acpi_gbl_db_output_to_file);
335ACPI_GLOBAL(char *, acpi_gbl_db_buffer);
336ACPI_GLOBAL(char *, acpi_gbl_db_filename);
337ACPI_GLOBAL(u32, acpi_gbl_db_debug_level);
338ACPI_GLOBAL(u32, acpi_gbl_db_console_debug_level);
339ACPI_GLOBAL(struct acpi_namespace_node *, acpi_gbl_db_scope_node);
1da177e4 340
3aa0b085
LZ
341ACPI_GLOBAL(char *, acpi_gbl_db_args[ACPI_DEBUGGER_MAX_ARGS]);
342ACPI_GLOBAL(acpi_object_type, acpi_gbl_db_arg_types[ACPI_DEBUGGER_MAX_ARGS]);
1f5210a1
BM
343
344/* These buffers should all be the same size */
345
3aa0b085
LZ
346ACPI_GLOBAL(char, acpi_gbl_db_line_buf[ACPI_DB_LINE_BUFFER_SIZE]);
347ACPI_GLOBAL(char, acpi_gbl_db_parsed_buf[ACPI_DB_LINE_BUFFER_SIZE]);
348ACPI_GLOBAL(char, acpi_gbl_db_scope_buf[ACPI_DB_LINE_BUFFER_SIZE]);
349ACPI_GLOBAL(char, acpi_gbl_db_debug_filename[ACPI_DB_LINE_BUFFER_SIZE]);
1f5210a1 350
1da177e4
LT
351/*
352 * Statistic globals
353 */
e69ab9a9
BM
354ACPI_GLOBAL(u16, acpi_gbl_obj_type_count[ACPI_TOTAL_TYPES]);
355ACPI_GLOBAL(u16, acpi_gbl_node_type_count[ACPI_TOTAL_TYPES]);
3aa0b085
LZ
356ACPI_GLOBAL(u16, acpi_gbl_obj_type_count_misc);
357ACPI_GLOBAL(u16, acpi_gbl_node_type_count_misc);
358ACPI_GLOBAL(u32, acpi_gbl_num_nodes);
359ACPI_GLOBAL(u32, acpi_gbl_num_objects);
360
cd64bbf8
BM
361ACPI_GLOBAL(acpi_mutex, acpi_gbl_db_command_ready);
362ACPI_GLOBAL(acpi_mutex, acpi_gbl_db_command_complete);
363
4be44fcd 364#endif /* ACPI_DEBUGGER */
1da177e4 365
71487f3f
LZ
366/*****************************************************************************
367 *
368 * Application globals
369 *
370 ****************************************************************************/
371
372#ifdef ACPI_APPLICATION
373
3aa0b085 374ACPI_INIT_GLOBAL(ACPI_FILE, acpi_gbl_debug_file, NULL);
83b80bac 375ACPI_INIT_GLOBAL(ACPI_FILE, acpi_gbl_output_file, NULL);
71487f3f 376
80a648c1
LZ
377/* Print buffer */
378
379ACPI_GLOBAL(acpi_spinlock, acpi_gbl_print_lock); /* For print buffer */
380ACPI_GLOBAL(char, acpi_gbl_print_buffer[1024]);
381
71487f3f
LZ
382#endif /* ACPI_APPLICATION */
383
40cdb368
BM
384/*****************************************************************************
385 *
386 * Info/help support
387 *
388 ****************************************************************************/
389
390extern const struct ah_predefined_name asl_predefined_info[];
e2b9035f 391extern const struct ah_device_id asl_device_ids[];
40cdb368 392
4be44fcd 393#endif /* __ACGLOBAL_H__ */
This page took 0.71419 seconds and 5 git commands to generate.