1 /******************************************************************************
3 * Name: acdisasm.h - AML disassembler
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2007, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #ifndef __ACDISASM_H__
45 #define __ACDISASM_H__
52 #define BLOCK_COMMA_LIST 4
53 #define ACPI_DEFAULT_RESNAME *(u32 *) "__RD"
55 struct acpi_external_list
{
58 struct acpi_external_list
*next
;
64 extern struct acpi_external_list
*acpi_gbl_external_list
;
66 typedef const struct acpi_dmtable_info
{
74 * Values for Opcode above.
75 * Note: 0-7 must not change, used as a flag shift value
77 #define ACPI_DMT_FLAG0 0
78 #define ACPI_DMT_FLAG1 1
79 #define ACPI_DMT_FLAG2 2
80 #define ACPI_DMT_FLAG3 3
81 #define ACPI_DMT_FLAG4 4
82 #define ACPI_DMT_FLAG5 5
83 #define ACPI_DMT_FLAG6 6
84 #define ACPI_DMT_FLAG7 7
85 #define ACPI_DMT_FLAGS0 8
86 #define ACPI_DMT_FLAGS2 9
87 #define ACPI_DMT_UINT8 10
88 #define ACPI_DMT_UINT16 11
89 #define ACPI_DMT_UINT24 12
90 #define ACPI_DMT_UINT32 13
91 #define ACPI_DMT_UINT56 14
92 #define ACPI_DMT_UINT64 15
93 #define ACPI_DMT_STRING 16
94 #define ACPI_DMT_NAME4 17
95 #define ACPI_DMT_NAME6 18
96 #define ACPI_DMT_NAME8 19
97 #define ACPI_DMT_CHKSUM 20
98 #define ACPI_DMT_SPACEID 21
99 #define ACPI_DMT_GAS 22
100 #define ACPI_DMT_DMAR 23
101 #define ACPI_DMT_MADT 24
102 #define ACPI_DMT_SRAT 25
103 #define ACPI_DMT_EXIT 26
104 #define ACPI_DMT_SIG 27
107 void (*ACPI_TABLE_HANDLER
) (struct acpi_table_header
* table
);
109 struct acpi_dmtable_data
{
111 struct acpi_dmtable_info
*table_info
;
112 ACPI_TABLE_HANDLER table_handler
;
116 struct acpi_op_walk_info
{
122 struct acpi_walk_state
*walk_state
;
126 acpi_status(*asl_walk_callback
) (union acpi_parse_object
* op
,
127 u32 level
, void *context
);
129 struct acpi_resource_tag
{
134 /* Strings used for decoding flags to ASL keywords */
136 extern const char *acpi_gbl_word_decode
[];
137 extern const char *acpi_gbl_irq_decode
[];
138 extern const char *acpi_gbl_lock_rule
[];
139 extern const char *acpi_gbl_access_types
[];
140 extern const char *acpi_gbl_update_rules
[];
141 extern const char *acpi_gbl_match_ops
[];
143 extern struct acpi_dmtable_info acpi_dm_table_info_asf0
[];
144 extern struct acpi_dmtable_info acpi_dm_table_info_asf1
[];
145 extern struct acpi_dmtable_info acpi_dm_table_info_asf1a
[];
146 extern struct acpi_dmtable_info acpi_dm_table_info_asf2
[];
147 extern struct acpi_dmtable_info acpi_dm_table_info_asf2a
[];
148 extern struct acpi_dmtable_info acpi_dm_table_info_asf3
[];
149 extern struct acpi_dmtable_info acpi_dm_table_info_asf4
[];
150 extern struct acpi_dmtable_info acpi_dm_table_info_asf_hdr
[];
151 extern struct acpi_dmtable_info acpi_dm_table_info_boot
[];
152 extern struct acpi_dmtable_info acpi_dm_table_info_cpep
[];
153 extern struct acpi_dmtable_info acpi_dm_table_info_cpep0
[];
154 extern struct acpi_dmtable_info acpi_dm_table_info_dbgp
[];
155 extern struct acpi_dmtable_info acpi_dm_table_info_dmar
[];
156 extern struct acpi_dmtable_info acpi_dm_table_info_dmar_hdr
[];
157 extern struct acpi_dmtable_info acpi_dm_table_info_dmar_scope
[];
158 extern struct acpi_dmtable_info acpi_dm_table_info_dmar0
[];
159 extern struct acpi_dmtable_info acpi_dm_table_info_dmar1
[];
160 extern struct acpi_dmtable_info acpi_dm_table_info_ecdt
[];
161 extern struct acpi_dmtable_info acpi_dm_table_info_facs
[];
162 extern struct acpi_dmtable_info acpi_dm_table_info_fadt1
[];
163 extern struct acpi_dmtable_info acpi_dm_table_info_fadt2
[];
164 extern struct acpi_dmtable_info acpi_dm_table_info_gas
[];
165 extern struct acpi_dmtable_info acpi_dm_table_info_header
[];
166 extern struct acpi_dmtable_info acpi_dm_table_info_hpet
[];
167 extern struct acpi_dmtable_info acpi_dm_table_info_madt
[];
168 extern struct acpi_dmtable_info acpi_dm_table_info_madt0
[];
169 extern struct acpi_dmtable_info acpi_dm_table_info_madt1
[];
170 extern struct acpi_dmtable_info acpi_dm_table_info_madt2
[];
171 extern struct acpi_dmtable_info acpi_dm_table_info_madt3
[];
172 extern struct acpi_dmtable_info acpi_dm_table_info_madt4
[];
173 extern struct acpi_dmtable_info acpi_dm_table_info_madt5
[];
174 extern struct acpi_dmtable_info acpi_dm_table_info_madt6
[];
175 extern struct acpi_dmtable_info acpi_dm_table_info_madt7
[];
176 extern struct acpi_dmtable_info acpi_dm_table_info_madt8
[];
177 extern struct acpi_dmtable_info acpi_dm_table_info_madt_hdr
[];
178 extern struct acpi_dmtable_info acpi_dm_table_info_mcfg
[];
179 extern struct acpi_dmtable_info acpi_dm_table_info_mcfg0
[];
180 extern struct acpi_dmtable_info acpi_dm_table_info_rsdp1
[];
181 extern struct acpi_dmtable_info acpi_dm_table_info_rsdp2
[];
182 extern struct acpi_dmtable_info acpi_dm_table_info_sbst
[];
183 extern struct acpi_dmtable_info acpi_dm_table_info_slit
[];
184 extern struct acpi_dmtable_info acpi_dm_table_info_spcr
[];
185 extern struct acpi_dmtable_info acpi_dm_table_info_spmi
[];
186 extern struct acpi_dmtable_info acpi_dm_table_info_srat
[];
187 extern struct acpi_dmtable_info acpi_dm_table_info_srat0
[];
188 extern struct acpi_dmtable_info acpi_dm_table_info_srat1
[];
189 extern struct acpi_dmtable_info acpi_dm_table_info_tcpa
[];
190 extern struct acpi_dmtable_info acpi_dm_table_info_wdrt
[];
195 void acpi_dm_dump_data_table(struct acpi_table_header
*table
);
198 acpi_dm_dump_table(u32 table_length
,
201 u32 sub_table_length
, struct acpi_dmtable_info
*info
);
203 void acpi_dm_line_header(u32 offset
, u32 byte_length
, char *name
);
205 void acpi_dm_line_header2(u32 offset
, u32 byte_length
, char *name
, u32 value
);
210 void acpi_dm_dump_asf(struct acpi_table_header
*table
);
212 void acpi_dm_dump_cpep(struct acpi_table_header
*table
);
214 void acpi_dm_dump_dmar(struct acpi_table_header
*table
);
216 void acpi_dm_dump_fadt(struct acpi_table_header
*table
);
218 void acpi_dm_dump_srat(struct acpi_table_header
*table
);
220 void acpi_dm_dump_mcfg(struct acpi_table_header
*table
);
222 void acpi_dm_dump_madt(struct acpi_table_header
*table
);
224 u32
acpi_dm_dump_rsdp(struct acpi_table_header
*table
);
226 void acpi_dm_dump_rsdt(struct acpi_table_header
*table
);
228 void acpi_dm_dump_slit(struct acpi_table_header
*table
);
230 void acpi_dm_dump_xsdt(struct acpi_table_header
*table
);
236 acpi_dm_disassemble(struct acpi_walk_state
*walk_state
,
237 union acpi_parse_object
*origin
, u32 num_opcodes
);
240 acpi_dm_walk_parse_tree(union acpi_parse_object
*op
,
241 asl_walk_callback descending_callback
,
242 asl_walk_callback ascending_callback
, void *context
);
248 acpi_dm_disassemble_one_op(struct acpi_walk_state
*walk_state
,
249 struct acpi_op_walk_info
*info
,
250 union acpi_parse_object
*op
);
252 void acpi_dm_decode_internal_object(union acpi_operand_object
*obj_desc
);
254 u32
acpi_dm_list_type(union acpi_parse_object
*op
);
256 void acpi_dm_method_flags(union acpi_parse_object
*op
);
258 void acpi_dm_field_flags(union acpi_parse_object
*op
);
260 void acpi_dm_address_space(u8 space_id
);
262 void acpi_dm_region_flags(union acpi_parse_object
*op
);
264 void acpi_dm_match_op(union acpi_parse_object
*op
);
266 u8
acpi_dm_comma_if_list_member(union acpi_parse_object
*op
);
268 void acpi_dm_comma_if_field_member(union acpi_parse_object
*op
);
273 u32
acpi_dm_dump_name(char *name
);
276 acpi_ps_display_object_pathname(struct acpi_walk_state
*walk_state
,
277 union acpi_parse_object
*op
);
279 void acpi_dm_namestring(char *name
);
285 acpi_dm_display_internal_object(union acpi_operand_object
*obj_desc
,
286 struct acpi_walk_state
*walk_state
);
288 void acpi_dm_display_arguments(struct acpi_walk_state
*walk_state
);
290 void acpi_dm_display_locals(struct acpi_walk_state
*walk_state
);
293 acpi_dm_dump_method_info(acpi_status status
,
294 struct acpi_walk_state
*walk_state
,
295 union acpi_parse_object
*op
);
300 void acpi_dm_disasm_byte_list(u32 level
, u8
* byte_data
, u32 byte_count
);
303 acpi_dm_byte_list(struct acpi_op_walk_info
*info
, union acpi_parse_object
*op
);
305 void acpi_dm_is_eisa_id(union acpi_parse_object
*op
);
307 void acpi_dm_eisa_id(u32 encoded_id
);
309 u8
acpi_dm_is_unicode_buffer(union acpi_parse_object
*op
);
311 u8
acpi_dm_is_string_buffer(union acpi_parse_object
*op
);
316 void acpi_dm_dump_integer8(u8 value
, char *name
);
318 void acpi_dm_dump_integer16(u16 value
, char *name
);
320 void acpi_dm_dump_integer32(u32 value
, char *name
);
322 void acpi_dm_dump_integer64(u64 value
, char *name
);
325 acpi_dm_resource_template(struct acpi_op_walk_info
*info
,
326 union acpi_parse_object
*op
,
327 u8
* byte_data
, u32 byte_count
);
329 acpi_status
acpi_dm_is_resource_template(union acpi_parse_object
*op
);
331 void acpi_dm_indent(u32 level
);
333 void acpi_dm_bit_list(u16 mask
);
335 void acpi_dm_decode_attribute(u8 attribute
);
337 void acpi_dm_descriptor_name(void);
343 acpi_dm_word_descriptor(union aml_resource
*resource
, u32 length
, u32 level
);
346 acpi_dm_dword_descriptor(union aml_resource
*resource
, u32 length
, u32 level
);
349 acpi_dm_extended_descriptor(union aml_resource
*resource
,
350 u32 length
, u32 level
);
353 acpi_dm_qword_descriptor(union aml_resource
*resource
, u32 length
, u32 level
);
356 acpi_dm_memory24_descriptor(union aml_resource
*resource
,
357 u32 length
, u32 level
);
360 acpi_dm_memory32_descriptor(union aml_resource
*resource
,
361 u32 length
, u32 level
);
364 acpi_dm_fixed_memory32_descriptor(union aml_resource
*resource
,
365 u32 length
, u32 level
);
368 acpi_dm_generic_register_descriptor(union aml_resource
*resource
,
369 u32 length
, u32 level
);
372 acpi_dm_interrupt_descriptor(union aml_resource
*resource
,
373 u32 length
, u32 level
);
376 acpi_dm_vendor_large_descriptor(union aml_resource
*resource
,
377 u32 length
, u32 level
);
379 void acpi_dm_vendor_common(char *name
, u8
* byte_data
, u32 length
, u32 level
);
385 acpi_dm_irq_descriptor(union aml_resource
*resource
, u32 length
, u32 level
);
388 acpi_dm_dma_descriptor(union aml_resource
*resource
, u32 length
, u32 level
);
390 void acpi_dm_io_descriptor(union aml_resource
*resource
, u32 length
, u32 level
);
393 acpi_dm_fixed_io_descriptor(union aml_resource
*resource
,
394 u32 length
, u32 level
);
397 acpi_dm_start_dependent_descriptor(union aml_resource
*resource
,
398 u32 length
, u32 level
);
401 acpi_dm_end_dependent_descriptor(union aml_resource
*resource
,
402 u32 length
, u32 level
);
405 acpi_dm_vendor_small_descriptor(union aml_resource
*resource
,
406 u32 length
, u32 level
);
411 void acpi_dm_add_to_external_list(char *path
, u8 type
, u32 value
);
416 void acpi_dm_find_resources(union acpi_parse_object
*root
);
419 acpi_dm_check_resource_reference(union acpi_parse_object
*op
,
420 struct acpi_walk_state
*walk_state
);
422 #endif /* __ACDISASM_H__ */