acdisasm.h revision 1.28 1 1.1 jruoho /******************************************************************************
2 1.1 jruoho *
3 1.1 jruoho * Name: acdisasm.h - AML disassembler
4 1.1 jruoho *
5 1.1 jruoho *****************************************************************************/
6 1.1 jruoho
7 1.3 jruoho /*
8 1.27 christos * Copyright (C) 2000 - 2023, Intel Corp.
9 1.1 jruoho * All rights reserved.
10 1.1 jruoho *
11 1.3 jruoho * Redistribution and use in source and binary forms, with or without
12 1.3 jruoho * modification, are permitted provided that the following conditions
13 1.3 jruoho * are met:
14 1.3 jruoho * 1. Redistributions of source code must retain the above copyright
15 1.3 jruoho * notice, this list of conditions, and the following disclaimer,
16 1.3 jruoho * without modification.
17 1.3 jruoho * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.3 jruoho * substantially similar to the "NO WARRANTY" disclaimer below
19 1.3 jruoho * ("Disclaimer") and any redistribution must be conditioned upon
20 1.3 jruoho * including a substantially similar Disclaimer requirement for further
21 1.3 jruoho * binary redistribution.
22 1.3 jruoho * 3. Neither the names of the above-listed copyright holders nor the names
23 1.3 jruoho * of any contributors may be used to endorse or promote products derived
24 1.3 jruoho * from this software without specific prior written permission.
25 1.3 jruoho *
26 1.3 jruoho * Alternatively, this software may be distributed under the terms of the
27 1.3 jruoho * GNU General Public License ("GPL") version 2 as published by the Free
28 1.3 jruoho * Software Foundation.
29 1.3 jruoho *
30 1.3 jruoho * NO WARRANTY
31 1.3 jruoho * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.3 jruoho * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.21 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 1.3 jruoho * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.3 jruoho * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.3 jruoho * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.3 jruoho * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.3 jruoho * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.3 jruoho * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.3 jruoho * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.3 jruoho * POSSIBILITY OF SUCH DAMAGES.
42 1.3 jruoho */
43 1.1 jruoho
44 1.1 jruoho #ifndef __ACDISASM_H__
45 1.1 jruoho #define __ACDISASM_H__
46 1.1 jruoho
47 1.1 jruoho #include "amlresrc.h"
48 1.1 jruoho
49 1.1 jruoho
50 1.1 jruoho #define BLOCK_NONE 0
51 1.1 jruoho #define BLOCK_PAREN 1
52 1.1 jruoho #define BLOCK_BRACE 2
53 1.1 jruoho #define BLOCK_COMMA_LIST 4
54 1.2 jruoho #define ACPI_DEFAULT_RESNAME *(const UINT32 *) "__RD"
55 1.1 jruoho
56 1.3 jruoho /*
57 1.3 jruoho * Raw table data header. Used by disassembler and data table compiler.
58 1.3 jruoho * Do not change.
59 1.3 jruoho */
60 1.3 jruoho #define ACPI_RAW_TABLE_DATA_HEADER "Raw Table Data"
61 1.3 jruoho
62 1.1 jruoho
63 1.8 christos typedef struct acpi_dmtable_info
64 1.1 jruoho {
65 1.1 jruoho UINT8 Opcode;
66 1.5 christos UINT16 Offset;
67 1.1 jruoho char *Name;
68 1.1 jruoho UINT8 Flags;
69 1.1 jruoho
70 1.1 jruoho } ACPI_DMTABLE_INFO;
71 1.1 jruoho
72 1.5 christos /* Values for Flags field above */
73 1.5 christos
74 1.1 jruoho #define DT_LENGTH 0x01 /* Field is a subtable length */
75 1.1 jruoho #define DT_FLAG 0x02 /* Field is a flag value */
76 1.1 jruoho #define DT_NON_ZERO 0x04 /* Field must be non-zero */
77 1.5 christos #define DT_OPTIONAL 0x08 /* Field is optional */
78 1.5 christos #define DT_DESCRIBES_OPTIONAL 0x10 /* Field describes an optional field (length, etc.) */
79 1.5 christos #define DT_COUNT 0x20 /* Currently not used */
80 1.1 jruoho
81 1.1 jruoho /*
82 1.1 jruoho * Values for Opcode above.
83 1.5 christos * Note: 0-7 must not change, they are used as a flag shift value. Other
84 1.5 christos * than those, new values can be added wherever appropriate.
85 1.1 jruoho */
86 1.5 christos typedef enum
87 1.5 christos {
88 1.5 christos /* Simple Data Types */
89 1.5 christos
90 1.5 christos ACPI_DMT_FLAG0 = 0,
91 1.5 christos ACPI_DMT_FLAG1 = 1,
92 1.5 christos ACPI_DMT_FLAG2 = 2,
93 1.5 christos ACPI_DMT_FLAG3 = 3,
94 1.5 christos ACPI_DMT_FLAG4 = 4,
95 1.5 christos ACPI_DMT_FLAG5 = 5,
96 1.5 christos ACPI_DMT_FLAG6 = 6,
97 1.5 christos ACPI_DMT_FLAG7 = 7,
98 1.5 christos ACPI_DMT_FLAGS0,
99 1.5 christos ACPI_DMT_FLAGS1,
100 1.5 christos ACPI_DMT_FLAGS2,
101 1.25 christos ACPI_DMT_FLAGS8_2,
102 1.5 christos ACPI_DMT_FLAGS4,
103 1.14 christos ACPI_DMT_FLAGS4_0,
104 1.14 christos ACPI_DMT_FLAGS4_4,
105 1.14 christos ACPI_DMT_FLAGS4_8,
106 1.14 christos ACPI_DMT_FLAGS4_12,
107 1.14 christos ACPI_DMT_FLAGS16_16,
108 1.5 christos ACPI_DMT_UINT8,
109 1.5 christos ACPI_DMT_UINT16,
110 1.5 christos ACPI_DMT_UINT24,
111 1.5 christos ACPI_DMT_UINT32,
112 1.5 christos ACPI_DMT_UINT40,
113 1.5 christos ACPI_DMT_UINT48,
114 1.5 christos ACPI_DMT_UINT56,
115 1.5 christos ACPI_DMT_UINT64,
116 1.5 christos ACPI_DMT_BUF7,
117 1.5 christos ACPI_DMT_BUF10,
118 1.11 christos ACPI_DMT_BUF12,
119 1.5 christos ACPI_DMT_BUF16,
120 1.23 christos ACPI_DMT_BUF18,
121 1.28 christos ACPI_DMT_BUF32,
122 1.28 christos ACPI_DMT_BUF112,
123 1.5 christos ACPI_DMT_BUF128,
124 1.5 christos ACPI_DMT_SIG,
125 1.5 christos ACPI_DMT_STRING,
126 1.5 christos ACPI_DMT_NAME4,
127 1.5 christos ACPI_DMT_NAME6,
128 1.5 christos ACPI_DMT_NAME8,
129 1.5 christos
130 1.5 christos /* Types that are decoded to strings and miscellaneous */
131 1.5 christos
132 1.5 christos ACPI_DMT_ACCWIDTH,
133 1.5 christos ACPI_DMT_CHKSUM,
134 1.5 christos ACPI_DMT_GAS,
135 1.5 christos ACPI_DMT_SPACEID,
136 1.5 christos ACPI_DMT_UNICODE,
137 1.5 christos ACPI_DMT_UUID,
138 1.5 christos
139 1.5 christos /* Types used only for the Data Table Compiler */
140 1.5 christos
141 1.5 christos ACPI_DMT_BUFFER,
142 1.7 christos ACPI_DMT_RAW_BUFFER, /* Large, multiple line buffer */
143 1.5 christos ACPI_DMT_DEVICE_PATH,
144 1.5 christos ACPI_DMT_LABEL,
145 1.5 christos ACPI_DMT_PCI_PATH,
146 1.5 christos
147 1.5 christos /* Types that are specific to particular ACPI tables */
148 1.5 christos
149 1.23 christos ACPI_DMT_AEST,
150 1.23 christos ACPI_DMT_AEST_CACHE,
151 1.23 christos ACPI_DMT_AEST_GIC,
152 1.23 christos ACPI_DMT_AEST_RES,
153 1.23 christos ACPI_DMT_AEST_XFACE,
154 1.23 christos ACPI_DMT_AEST_XRUPT,
155 1.24 christos ACPI_DMT_AGDI,
156 1.5 christos ACPI_DMT_ASF,
157 1.27 christos ACPI_DMT_ASPT,
158 1.26 christos ACPI_DMT_CDAT,
159 1.21 christos ACPI_DMT_CEDT,
160 1.5 christos ACPI_DMT_DMAR,
161 1.6 christos ACPI_DMT_DMAR_SCOPE,
162 1.5 christos ACPI_DMT_EINJACT,
163 1.5 christos ACPI_DMT_EINJINST,
164 1.5 christos ACPI_DMT_ERSTACT,
165 1.5 christos ACPI_DMT_ERSTINST,
166 1.5 christos ACPI_DMT_FADTPM,
167 1.6 christos ACPI_DMT_GTDT,
168 1.5 christos ACPI_DMT_HEST,
169 1.5 christos ACPI_DMT_HESTNTFY,
170 1.5 christos ACPI_DMT_HESTNTYP,
171 1.14 christos ACPI_DMT_HMAT,
172 1.8 christos ACPI_DMT_IORTMEM,
173 1.5 christos ACPI_DMT_IVRS,
174 1.22 christos ACPI_DMT_IVRS_DE,
175 1.22 christos ACPI_DMT_IVRS_UNTERMINATED_STRING,
176 1.6 christos ACPI_DMT_LPIT,
177 1.5 christos ACPI_DMT_MADT,
178 1.27 christos ACPI_DMT_MPAM_LOCATOR,
179 1.8 christos ACPI_DMT_NFIT,
180 1.5 christos ACPI_DMT_PCCT,
181 1.21 christos ACPI_DMT_PHAT,
182 1.5 christos ACPI_DMT_PMTT,
183 1.21 christos ACPI_DMT_PMTT_VENDOR,
184 1.14 christos ACPI_DMT_PPTT,
185 1.22 christos ACPI_DMT_RGRT,
186 1.27 christos ACPI_DMT_RHCT,
187 1.14 christos ACPI_DMT_SDEI,
188 1.15 christos ACPI_DMT_SDEV,
189 1.5 christos ACPI_DMT_SLIC,
190 1.5 christos ACPI_DMT_SRAT,
191 1.15 christos ACPI_DMT_TPM2,
192 1.21 christos ACPI_DMT_VIOT,
193 1.23 christos ACPI_DMT_WPBT_UNICODE,
194 1.5 christos
195 1.5 christos /* Special opcodes */
196 1.5 christos
197 1.5 christos ACPI_DMT_EXTRA_TEXT,
198 1.5 christos ACPI_DMT_EXIT
199 1.5 christos
200 1.5 christos } ACPI_ENTRY_TYPES;
201 1.1 jruoho
202 1.1 jruoho typedef
203 1.1 jruoho void (*ACPI_DMTABLE_HANDLER) (
204 1.1 jruoho ACPI_TABLE_HEADER *Table);
205 1.1 jruoho
206 1.1 jruoho typedef
207 1.1 jruoho ACPI_STATUS (*ACPI_CMTABLE_HANDLER) (
208 1.1 jruoho void **PFieldList);
209 1.1 jruoho
210 1.1 jruoho typedef struct acpi_dmtable_data
211 1.1 jruoho {
212 1.1 jruoho char *Signature;
213 1.1 jruoho ACPI_DMTABLE_INFO *TableInfo;
214 1.1 jruoho ACPI_DMTABLE_HANDLER TableHandler;
215 1.1 jruoho ACPI_CMTABLE_HANDLER CmTableHandler;
216 1.3 jruoho const unsigned char *Template;
217 1.1 jruoho
218 1.1 jruoho } ACPI_DMTABLE_DATA;
219 1.1 jruoho
220 1.1 jruoho
221 1.1 jruoho typedef struct acpi_op_walk_info
222 1.1 jruoho {
223 1.9 christos ACPI_WALK_STATE *WalkState;
224 1.9 christos ACPI_PARSE_OBJECT *MappingOp;
225 1.9 christos UINT8 *PreviousAml;
226 1.9 christos UINT8 *StartAml;
227 1.1 jruoho UINT32 Level;
228 1.1 jruoho UINT32 LastLevel;
229 1.1 jruoho UINT32 Count;
230 1.1 jruoho UINT32 BitOffset;
231 1.1 jruoho UINT32 Flags;
232 1.9 christos UINT32 AmlOffset;
233 1.1 jruoho
234 1.1 jruoho } ACPI_OP_WALK_INFO;
235 1.1 jruoho
236 1.1 jruoho /*
237 1.1 jruoho * TBD - another copy of this is in asltypes.h, fix
238 1.1 jruoho */
239 1.1 jruoho #ifndef ASL_WALK_CALLBACK_DEFINED
240 1.1 jruoho typedef
241 1.1 jruoho ACPI_STATUS (*ASL_WALK_CALLBACK) (
242 1.1 jruoho ACPI_PARSE_OBJECT *Op,
243 1.1 jruoho UINT32 Level,
244 1.1 jruoho void *Context);
245 1.1 jruoho #define ASL_WALK_CALLBACK_DEFINED
246 1.1 jruoho #endif
247 1.1 jruoho
248 1.5 christos typedef
249 1.5 christos void (*ACPI_RESOURCE_HANDLER) (
250 1.6 christos ACPI_OP_WALK_INFO *Info,
251 1.5 christos AML_RESOURCE *Resource,
252 1.5 christos UINT32 Length,
253 1.5 christos UINT32 Level);
254 1.1 jruoho
255 1.1 jruoho typedef struct acpi_resource_tag
256 1.1 jruoho {
257 1.1 jruoho UINT32 BitIndex;
258 1.1 jruoho char *Tag;
259 1.1 jruoho
260 1.1 jruoho } ACPI_RESOURCE_TAG;
261 1.1 jruoho
262 1.1 jruoho /* Strings used for decoding flags to ASL keywords */
263 1.1 jruoho
264 1.1 jruoho extern const char *AcpiGbl_WordDecode[];
265 1.1 jruoho extern const char *AcpiGbl_IrqDecode[];
266 1.1 jruoho extern const char *AcpiGbl_LockRule[];
267 1.1 jruoho extern const char *AcpiGbl_AccessTypes[];
268 1.1 jruoho extern const char *AcpiGbl_UpdateRules[];
269 1.1 jruoho extern const char *AcpiGbl_MatchOps[];
270 1.1 jruoho
271 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestHdr[];
272 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestProcError[];
273 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestCacheRsrc[];
274 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestTlbRsrc[];
275 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestGenRsrc[];
276 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestMemError[];
277 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestSmmuError[];
278 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestVendorError[];
279 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestVendorV2Error[];
280 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestGicError[];
281 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestPCIeError[];
282 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestProxyError[];
283 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXface[];
284 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXfaceHeader[];
285 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXface4k[];
286 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXface16k[];
287 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXface64k[];
288 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXrupt[];
289 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAestXruptV2[];
290 1.24 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAgdi[];
291 1.25 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoApmtNode[];
292 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf0[];
293 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf1[];
294 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf1a[];
295 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf2[];
296 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf2a[];
297 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf3[];
298 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsf4[];
299 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsfHdr[];
300 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAspt[];
301 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAsptHdr[];
302 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAspt0[];
303 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAspt1[];
304 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoAspt2[];
305 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoBdat[];
306 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoBoot[];
307 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoBert[];
308 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoBgrt[];
309 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCcel[];
310 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdatTableHdr[];
311 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdatHeader[];
312 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdat0[];
313 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdat1[];
314 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdat2[];
315 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdat3[];
316 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdat4[];
317 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdat5[];
318 1.26 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCdatEntries[];
319 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCedtHdr[];
320 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCedt0[];
321 1.25 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCedt1[];
322 1.25 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCedt1_te[];
323 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCedt2[];
324 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCedt2_te[];
325 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoCpep[];
326 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoCpep0[];
327 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCsrt0[];
328 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCsrt1[];
329 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCsrt2[];
330 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoCsrt2a[];
331 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2[];
332 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Device[];
333 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Addr[];
334 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Size[];
335 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2Name[];
336 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbg2OemData[];
337 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDbgp[];
338 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar[];
339 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmarHdr[];
340 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmarScope[];
341 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar0[];
342 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar1[];
343 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar2[];
344 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar3[];
345 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar4[];
346 1.25 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDmar5[];
347 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDrtm[];
348 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDrtm0[];
349 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDrtm0a[];
350 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDrtm1[];
351 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDrtm1a[];
352 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoDrtm2[];
353 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoEcdt[];
354 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoEinj[];
355 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoEinj0[];
356 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoErst[];
357 1.3 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoErst0[];
358 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoFacs[];
359 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoFadt1[];
360 1.12 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFadt2[];
361 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoFadt3[];
362 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFadt5[];
363 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFadt6[];
364 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFpdt[];
365 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFpdtHdr[];
366 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFpdt0[];
367 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoFpdt1[];
368 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoGas[];
369 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoGtdt[];
370 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoGtdtHdr[];
371 1.19 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoGtdtEl2[];
372 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoGtdt0[];
373 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoGtdt0a[];
374 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoGtdt1[];
375 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHeader[];
376 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest[];
377 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest0[];
378 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest1[];
379 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest2[];
380 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest6[];
381 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest7[];
382 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest8[];
383 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest9[];
384 1.10 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest10[];
385 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHest11[];
386 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHestNotify[];
387 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHestBank[];
388 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoHpet[];
389 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoLpitHdr[];
390 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoLpit0[];
391 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoLpit1[];
392 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat[];
393 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat0[];
394 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat1[];
395 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat1a[];
396 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat1b[];
397 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat1c[];
398 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat2[];
399 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmat2a[];
400 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoHmatHdr[];
401 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort[];
402 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort0[];
403 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort0a[];
404 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort1[];
405 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort1a[];
406 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort2[];
407 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort3[];
408 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort3a[];
409 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort3b[];
410 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort3c[];
411 1.10 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort4[];
412 1.17 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort5[];
413 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort6[];
414 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIort6a[];
415 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIortAcc[];
416 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIortHdr[];
417 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIortHdr3[];
418 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIortMap[];
419 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIortPad[];
420 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrs[];
421 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsHware1[];
422 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsHware23[];
423 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsMemory[];
424 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrs4[];
425 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrs8a[];
426 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrs8b[];
427 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrs8c[];
428 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsCidString[];
429 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsCidInteger[];
430 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsHid[];
431 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsUidString[];
432 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsUidInteger[];
433 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsHidString[];
434 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoIvrsHidInteger[];
435 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt[];
436 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt0[];
437 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt1[];
438 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt2[];
439 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt3[];
440 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt4[];
441 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt5[];
442 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt6[];
443 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt7[];
444 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt8[];
445 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt9[];
446 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt10[];
447 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt11[];
448 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt11a[];
449 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt11b[];
450 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt12[];
451 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt13[];
452 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt14[];
453 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt14a[];
454 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt15[];
455 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt15a[];
456 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt16[];
457 1.25 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt17[];
458 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt18[];
459 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt19[];
460 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt20[];
461 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt21[];
462 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt22[];
463 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt23[];
464 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt24[];
465 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt25[];
466 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt26[];
467 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt27[];
468 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadt128[];
469 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMadtHdr[];
470 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMcfg[];
471 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMcfg0[];
472 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMchi[];
473 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam0[];
474 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1[];
475 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1A[];
476 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1B[];
477 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1C[];
478 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1D[];
479 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1E[];
480 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1F[];
481 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1G[];
482 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam1Deps[];
483 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpam2[];
484 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpst[];
485 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpst0[];
486 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpst0A[];
487 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpst0B[];
488 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpst1[];
489 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoMpst2[];
490 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMsct[];
491 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoMsct0[];
492 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit[];
493 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfitHdr[];
494 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit0[];
495 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit1[];
496 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit2[];
497 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit2a[];
498 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit3[];
499 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit3a[];
500 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit4[];
501 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit5[];
502 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit6[];
503 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit6a[];
504 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoNfit7[];
505 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPhatHdr[];
506 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPhat0[];
507 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPhat0a[];
508 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPhat1[];
509 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPhat1a[];
510 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPhat1b[];
511 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmtt[];
512 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmtt0[];
513 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmtt1[];
514 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmtt2[];
515 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmttVendor[];
516 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPmttHdr[];
517 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct[];
518 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcctHdr[];
519 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct0[];
520 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct1[];
521 1.10 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct2[];
522 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct3[];
523 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct4[];
524 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPcct5[];
525 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPdtt[];
526 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPdtt0[];
527 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPptt0[];
528 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPptt0a[];
529 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPptt1[];
530 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPptt1a[];
531 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPptt2[];
532 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPpttHdr[];
533 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPrmtHdr[];
534 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPrmtModule[];
535 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoPrmtHandler[];
536 1.11 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRasf[];
537 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRas2[];
538 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRas2PccDesc[];
539 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRgrt[];
540 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRgrt0[];
541 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhct[];
542 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctNodeHdr[];
543 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctIsa1[];
544 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctIsaPad[];
545 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctCmo1[];
546 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctMmu1[];
547 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctHartInfo1[];
548 1.27 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoRhctHartInfo2[];
549 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoRsdp1[];
550 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoRsdp2[];
551 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoS3pt[];
552 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoS3ptHdr[];
553 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoS3pt0[];
554 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoS3pt1[];
555 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSbst[];
556 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdei[];
557 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev[];
558 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdevHdr[];
559 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev0[];
560 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev0a[];
561 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev0b[];
562 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdevSecCompHdr[];
563 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdevSecCompId[];
564 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdevSecCompMem[];
565 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev1[];
566 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev1a[];
567 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSdev1b[];
568 1.7 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSlic[];
569 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSlit[];
570 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSpcr[];
571 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSpmi[];
572 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat[];
573 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSratHdr[];
574 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat0[];
575 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat1[];
576 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat2[];
577 1.6 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat3[];
578 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat4[];
579 1.19 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat5[];
580 1.23 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat6[];
581 1.28 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSrat7[];
582 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoStao[];
583 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoStaoStr[];
584 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSvkl[];
585 1.22 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoSvkl0[];
586 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTcpaHdr[];
587 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTcpaClient[];
588 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTcpaServer[];
589 1.24 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTdel[];
590 1.5 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTpm2[];
591 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTpm2a[];
592 1.15 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTpm211[];
593 1.18 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTpm23[];
594 1.18 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoTpm23a[];
595 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoUefi[];
596 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoViot[];
597 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoViotHeader[];
598 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoViot1[];
599 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoViot2[];
600 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoViot3[];
601 1.21 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoViot4[];
602 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoWaet[];
603 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoWdat[];
604 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoWdat0[];
605 1.3 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoWddt[];
606 1.1 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoWdrt[];
607 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoWpbt[];
608 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoWpbt0[];
609 1.14 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoWsmt[];
610 1.8 christos extern ACPI_DMTABLE_INFO AcpiDmTableInfoXenv[];
611 1.1 jruoho
612 1.3 jruoho extern ACPI_DMTABLE_INFO AcpiDmTableInfoGeneric[][2];
613 1.3 jruoho
614 1.1 jruoho /*
615 1.8 christos * dmtable and ahtable
616 1.1 jruoho */
617 1.8 christos extern const ACPI_DMTABLE_DATA AcpiDmTableData[];
618 1.18 christos extern const AH_TABLE AcpiGbl_SupportedTables[];
619 1.3 jruoho
620 1.3 jruoho UINT8
621 1.3 jruoho AcpiDmGenerateChecksum (
622 1.3 jruoho void *Table,
623 1.3 jruoho UINT32 Length,
624 1.3 jruoho UINT8 OriginalChecksum);
625 1.1 jruoho
626 1.8 christos const ACPI_DMTABLE_DATA *
627 1.1 jruoho AcpiDmGetTableData (
628 1.1 jruoho char *Signature);
629 1.1 jruoho
630 1.1 jruoho void
631 1.1 jruoho AcpiDmDumpDataTable (
632 1.1 jruoho ACPI_TABLE_HEADER *Table);
633 1.1 jruoho
634 1.1 jruoho ACPI_STATUS
635 1.1 jruoho AcpiDmDumpTable (
636 1.1 jruoho UINT32 TableLength,
637 1.1 jruoho UINT32 TableOffset,
638 1.1 jruoho void *Table,
639 1.15 christos UINT32 SubtableLength,
640 1.1 jruoho ACPI_DMTABLE_INFO *Info);
641 1.1 jruoho
642 1.1 jruoho void
643 1.1 jruoho AcpiDmLineHeader (
644 1.1 jruoho UINT32 Offset,
645 1.1 jruoho UINT32 ByteLength,
646 1.1 jruoho char *Name);
647 1.1 jruoho
648 1.1 jruoho void
649 1.1 jruoho AcpiDmLineHeader2 (
650 1.1 jruoho UINT32 Offset,
651 1.1 jruoho UINT32 ByteLength,
652 1.1 jruoho char *Name,
653 1.1 jruoho UINT32 Value);
654 1.1 jruoho
655 1.1 jruoho
656 1.1 jruoho /*
657 1.1 jruoho * dmtbdump
658 1.1 jruoho */
659 1.1 jruoho void
660 1.7 christos AcpiDmDumpBuffer (
661 1.7 christos void *Table,
662 1.7 christos UINT32 BufferOffset,
663 1.7 christos UINT32 Length,
664 1.7 christos UINT32 AbsoluteOffset,
665 1.8 christos char *Header);
666 1.8 christos
667 1.8 christos void
668 1.8 christos AcpiDmDumpUnicode (
669 1.8 christos void *Table,
670 1.8 christos UINT32 BufferOffset,
671 1.8 christos UINT32 ByteLength);
672 1.7 christos
673 1.7 christos void
674 1.23 christos AcpiDmDumpAest (
675 1.23 christos ACPI_TABLE_HEADER *Table);
676 1.23 christos
677 1.23 christos void
678 1.25 christos AcpiDmDumpApmt (
679 1.25 christos ACPI_TABLE_HEADER *Table);
680 1.25 christos
681 1.25 christos void
682 1.1 jruoho AcpiDmDumpAsf (
683 1.1 jruoho ACPI_TABLE_HEADER *Table);
684 1.1 jruoho
685 1.1 jruoho void
686 1.27 christos AcpiDmDumpAspt (
687 1.27 christos ACPI_TABLE_HEADER *Table);
688 1.27 christos
689 1.27 christos void
690 1.26 christos AcpiDmDumpCcel (
691 1.26 christos ACPI_TABLE_HEADER *Table);
692 1.26 christos
693 1.26 christos void
694 1.26 christos AcpiDmDumpCdat (
695 1.26 christos ACPI_TABLE_HEADER *Table);
696 1.26 christos
697 1.26 christos void
698 1.21 christos AcpiDmDumpCedt (
699 1.21 christos ACPI_TABLE_HEADER *Table);
700 1.21 christos
701 1.21 christos void
702 1.1 jruoho AcpiDmDumpCpep (
703 1.1 jruoho ACPI_TABLE_HEADER *Table);
704 1.1 jruoho
705 1.1 jruoho void
706 1.5 christos AcpiDmDumpCsrt (
707 1.5 christos ACPI_TABLE_HEADER *Table);
708 1.5 christos
709 1.5 christos void
710 1.5 christos AcpiDmDumpDbg2 (
711 1.5 christos ACPI_TABLE_HEADER *Table);
712 1.5 christos
713 1.5 christos void
714 1.1 jruoho AcpiDmDumpDmar (
715 1.1 jruoho ACPI_TABLE_HEADER *Table);
716 1.1 jruoho
717 1.1 jruoho void
718 1.8 christos AcpiDmDumpDrtm (
719 1.8 christos ACPI_TABLE_HEADER *Table);
720 1.8 christos
721 1.8 christos void
722 1.1 jruoho AcpiDmDumpEinj (
723 1.1 jruoho ACPI_TABLE_HEADER *Table);
724 1.1 jruoho
725 1.1 jruoho void
726 1.1 jruoho AcpiDmDumpErst (
727 1.1 jruoho ACPI_TABLE_HEADER *Table);
728 1.1 jruoho
729 1.1 jruoho void
730 1.1 jruoho AcpiDmDumpFadt (
731 1.1 jruoho ACPI_TABLE_HEADER *Table);
732 1.1 jruoho
733 1.1 jruoho void
734 1.5 christos AcpiDmDumpFpdt (
735 1.5 christos ACPI_TABLE_HEADER *Table);
736 1.5 christos
737 1.5 christos void
738 1.6 christos AcpiDmDumpGtdt (
739 1.6 christos ACPI_TABLE_HEADER *Table);
740 1.6 christos
741 1.6 christos void
742 1.1 jruoho AcpiDmDumpHest (
743 1.1 jruoho ACPI_TABLE_HEADER *Table);
744 1.1 jruoho
745 1.1 jruoho void
746 1.14 christos AcpiDmDumpHmat (
747 1.14 christos ACPI_TABLE_HEADER *Table);
748 1.14 christos
749 1.14 christos void
750 1.8 christos AcpiDmDumpIort (
751 1.8 christos ACPI_TABLE_HEADER *Table);
752 1.8 christos
753 1.8 christos void
754 1.1 jruoho AcpiDmDumpIvrs (
755 1.1 jruoho ACPI_TABLE_HEADER *Table);
756 1.1 jruoho
757 1.1 jruoho void
758 1.6 christos AcpiDmDumpLpit (
759 1.6 christos ACPI_TABLE_HEADER *Table);
760 1.6 christos
761 1.6 christos void
762 1.5 christos AcpiDmDumpMadt (
763 1.5 christos ACPI_TABLE_HEADER *Table);
764 1.5 christos
765 1.5 christos void
766 1.1 jruoho AcpiDmDumpMcfg (
767 1.1 jruoho ACPI_TABLE_HEADER *Table);
768 1.1 jruoho
769 1.1 jruoho void
770 1.27 christos AcpiDmDumpMpam (
771 1.27 christos ACPI_TABLE_HEADER *Table);
772 1.27 christos
773 1.27 christos void
774 1.5 christos AcpiDmDumpMpst (
775 1.1 jruoho ACPI_TABLE_HEADER *Table);
776 1.1 jruoho
777 1.1 jruoho void
778 1.1 jruoho AcpiDmDumpMsct (
779 1.1 jruoho ACPI_TABLE_HEADER *Table);
780 1.1 jruoho
781 1.5 christos void
782 1.21 christos AcpiDmDumpNfit (
783 1.5 christos ACPI_TABLE_HEADER *Table);
784 1.5 christos
785 1.5 christos void
786 1.21 christos AcpiDmDumpPcct (
787 1.8 christos ACPI_TABLE_HEADER *Table);
788 1.8 christos
789 1.8 christos void
790 1.21 christos AcpiDmDumpPdtt (
791 1.5 christos ACPI_TABLE_HEADER *Table);
792 1.5 christos
793 1.5 christos void
794 1.21 christos AcpiDmDumpPhat (
795 1.15 christos ACPI_TABLE_HEADER *Table);
796 1.15 christos
797 1.15 christos void
798 1.5 christos AcpiDmDumpPmtt (
799 1.5 christos ACPI_TABLE_HEADER *Table);
800 1.5 christos
801 1.14 christos void
802 1.14 christos AcpiDmDumpPptt (
803 1.14 christos ACPI_TABLE_HEADER *Table);
804 1.14 christos
805 1.22 christos void
806 1.22 christos AcpiDmDumpPrmt (
807 1.22 christos ACPI_TABLE_HEADER *Table);
808 1.22 christos
809 1.22 christos void
810 1.28 christos AcpiDmDumpRas2 (
811 1.28 christos ACPI_TABLE_HEADER *Table);
812 1.28 christos
813 1.28 christos void
814 1.22 christos AcpiDmDumpRgrt (
815 1.22 christos ACPI_TABLE_HEADER *Table);
816 1.22 christos
817 1.27 christos void
818 1.27 christos AcpiDmDumpRhct (
819 1.27 christos ACPI_TABLE_HEADER *Table);
820 1.27 christos
821 1.1 jruoho UINT32
822 1.1 jruoho AcpiDmDumpRsdp (
823 1.1 jruoho ACPI_TABLE_HEADER *Table);
824 1.1 jruoho
825 1.1 jruoho void
826 1.1 jruoho AcpiDmDumpRsdt (
827 1.1 jruoho ACPI_TABLE_HEADER *Table);
828 1.1 jruoho
829 1.5 christos UINT32
830 1.5 christos AcpiDmDumpS3pt (
831 1.5 christos ACPI_TABLE_HEADER *Table);
832 1.5 christos
833 1.1 jruoho void
834 1.15 christos AcpiDmDumpSdev (
835 1.15 christos ACPI_TABLE_HEADER *Table);
836 1.15 christos
837 1.15 christos void
838 1.4 jruoho AcpiDmDumpSlic (
839 1.4 jruoho ACPI_TABLE_HEADER *Table);
840 1.4 jruoho
841 1.4 jruoho void
842 1.1 jruoho AcpiDmDumpSlit (
843 1.1 jruoho ACPI_TABLE_HEADER *Table);
844 1.1 jruoho
845 1.1 jruoho void
846 1.1 jruoho AcpiDmDumpSrat (
847 1.1 jruoho ACPI_TABLE_HEADER *Table);
848 1.1 jruoho
849 1.1 jruoho void
850 1.8 christos AcpiDmDumpStao (
851 1.8 christos ACPI_TABLE_HEADER *Table);
852 1.8 christos
853 1.8 christos void
854 1.22 christos AcpiDmDumpSvkl (
855 1.22 christos ACPI_TABLE_HEADER *Table);
856 1.22 christos
857 1.22 christos void
858 1.8 christos AcpiDmDumpTcpa (
859 1.8 christos ACPI_TABLE_HEADER *Table);
860 1.8 christos
861 1.8 christos void
862 1.24 christos AcpiDmDumpTdel (
863 1.24 christos ACPI_TABLE_HEADER *Table);
864 1.24 christos
865 1.24 christos void
866 1.15 christos AcpiDmDumpTpm2 (
867 1.15 christos ACPI_TABLE_HEADER *Table);
868 1.15 christos
869 1.15 christos void
870 1.21 christos AcpiDmDumpViot (
871 1.5 christos ACPI_TABLE_HEADER *Table);
872 1.5 christos
873 1.5 christos void
874 1.1 jruoho AcpiDmDumpWdat (
875 1.1 jruoho ACPI_TABLE_HEADER *Table);
876 1.1 jruoho
877 1.1 jruoho void
878 1.8 christos AcpiDmDumpWpbt (
879 1.8 christos ACPI_TABLE_HEADER *Table);
880 1.8 christos
881 1.8 christos void
882 1.1 jruoho AcpiDmDumpXsdt (
883 1.1 jruoho ACPI_TABLE_HEADER *Table);
884 1.1 jruoho
885 1.1 jruoho
886 1.1 jruoho /*
887 1.1 jruoho * dmwalk
888 1.1 jruoho */
889 1.1 jruoho void
890 1.1 jruoho AcpiDmDisassemble (
891 1.1 jruoho ACPI_WALK_STATE *WalkState,
892 1.1 jruoho ACPI_PARSE_OBJECT *Origin,
893 1.1 jruoho UINT32 NumOpcodes);
894 1.1 jruoho
895 1.1 jruoho void
896 1.1 jruoho AcpiDmWalkParseTree (
897 1.1 jruoho ACPI_PARSE_OBJECT *Op,
898 1.1 jruoho ASL_WALK_CALLBACK DescendingCallback,
899 1.1 jruoho ASL_WALK_CALLBACK AscendingCallback,
900 1.1 jruoho void *Context);
901 1.1 jruoho
902 1.1 jruoho
903 1.1 jruoho /*
904 1.1 jruoho * dmopcode
905 1.1 jruoho */
906 1.1 jruoho void
907 1.1 jruoho AcpiDmDisassembleOneOp (
908 1.1 jruoho ACPI_WALK_STATE *WalkState,
909 1.1 jruoho ACPI_OP_WALK_INFO *Info,
910 1.1 jruoho ACPI_PARSE_OBJECT *Op);
911 1.1 jruoho
912 1.1 jruoho UINT32
913 1.1 jruoho AcpiDmListType (
914 1.1 jruoho ACPI_PARSE_OBJECT *Op);
915 1.1 jruoho
916 1.1 jruoho void
917 1.1 jruoho AcpiDmMethodFlags (
918 1.1 jruoho ACPI_PARSE_OBJECT *Op);
919 1.1 jruoho
920 1.1 jruoho void
921 1.6 christos AcpiDmDisplayTargetPathname (
922 1.6 christos ACPI_PARSE_OBJECT *Op);
923 1.6 christos
924 1.6 christos void
925 1.6 christos AcpiDmNotifyDescription (
926 1.6 christos ACPI_PARSE_OBJECT *Op);
927 1.6 christos
928 1.6 christos void
929 1.5 christos AcpiDmPredefinedDescription (
930 1.5 christos ACPI_PARSE_OBJECT *Op);
931 1.5 christos
932 1.5 christos void
933 1.5 christos AcpiDmFieldPredefinedDescription (
934 1.5 christos ACPI_PARSE_OBJECT *Op);
935 1.5 christos
936 1.5 christos void
937 1.1 jruoho AcpiDmFieldFlags (
938 1.1 jruoho ACPI_PARSE_OBJECT *Op);
939 1.1 jruoho
940 1.1 jruoho void
941 1.1 jruoho AcpiDmAddressSpace (
942 1.1 jruoho UINT8 SpaceId);
943 1.1 jruoho
944 1.1 jruoho void
945 1.1 jruoho AcpiDmRegionFlags (
946 1.1 jruoho ACPI_PARSE_OBJECT *Op);
947 1.1 jruoho
948 1.1 jruoho void
949 1.1 jruoho AcpiDmMatchOp (
950 1.1 jruoho ACPI_PARSE_OBJECT *Op);
951 1.1 jruoho
952 1.1 jruoho
953 1.1 jruoho /*
954 1.1 jruoho * dmnames
955 1.1 jruoho */
956 1.1 jruoho UINT32
957 1.1 jruoho AcpiDmDumpName (
958 1.1 jruoho UINT32 Name);
959 1.1 jruoho
960 1.1 jruoho ACPI_STATUS
961 1.1 jruoho AcpiPsDisplayObjectPathname (
962 1.1 jruoho ACPI_WALK_STATE *WalkState,
963 1.1 jruoho ACPI_PARSE_OBJECT *Op);
964 1.1 jruoho
965 1.1 jruoho void
966 1.1 jruoho AcpiDmNamestring (
967 1.1 jruoho char *Name);
968 1.1 jruoho
969 1.1 jruoho
970 1.1 jruoho /*
971 1.1 jruoho * dmbuffer
972 1.1 jruoho */
973 1.1 jruoho void
974 1.1 jruoho AcpiDmDisasmByteList (
975 1.1 jruoho UINT32 Level,
976 1.1 jruoho UINT8 *ByteData,
977 1.1 jruoho UINT32 ByteCount);
978 1.1 jruoho
979 1.1 jruoho void
980 1.1 jruoho AcpiDmByteList (
981 1.1 jruoho ACPI_OP_WALK_INFO *Info,
982 1.1 jruoho ACPI_PARSE_OBJECT *Op);
983 1.1 jruoho
984 1.1 jruoho void
985 1.6 christos AcpiDmCheckForHardwareId (
986 1.1 jruoho ACPI_PARSE_OBJECT *Op);
987 1.1 jruoho
988 1.1 jruoho void
989 1.6 christos AcpiDmDecompressEisaId (
990 1.1 jruoho UINT32 EncodedId);
991 1.1 jruoho
992 1.1 jruoho BOOLEAN
993 1.6 christos AcpiDmIsUuidBuffer (
994 1.6 christos ACPI_PARSE_OBJECT *Op);
995 1.6 christos
996 1.6 christos BOOLEAN
997 1.1 jruoho AcpiDmIsUnicodeBuffer (
998 1.1 jruoho ACPI_PARSE_OBJECT *Op);
999 1.1 jruoho
1000 1.1 jruoho BOOLEAN
1001 1.1 jruoho AcpiDmIsStringBuffer (
1002 1.1 jruoho ACPI_PARSE_OBJECT *Op);
1003 1.1 jruoho
1004 1.5 christos BOOLEAN
1005 1.5 christos AcpiDmIsPldBuffer (
1006 1.5 christos ACPI_PARSE_OBJECT *Op);
1007 1.5 christos
1008 1.5 christos
1009 1.5 christos /*
1010 1.5 christos * dmdeferred
1011 1.5 christos */
1012 1.5 christos ACPI_STATUS
1013 1.5 christos AcpiDmParseDeferredOps (
1014 1.5 christos ACPI_PARSE_OBJECT *Root);
1015 1.5 christos
1016 1.1 jruoho
1017 1.1 jruoho /*
1018 1.1 jruoho * dmextern
1019 1.1 jruoho */
1020 1.3 jruoho ACPI_STATUS
1021 1.3 jruoho AcpiDmAddToExternalFileList (
1022 1.3 jruoho char *PathList);
1023 1.3 jruoho
1024 1.3 jruoho void
1025 1.3 jruoho AcpiDmClearExternalFileList (
1026 1.3 jruoho void);
1027 1.3 jruoho
1028 1.1 jruoho void
1029 1.5 christos AcpiDmAddOpToExternalList (
1030 1.1 jruoho ACPI_PARSE_OBJECT *Op,
1031 1.1 jruoho char *Path,
1032 1.1 jruoho UINT8 Type,
1033 1.5 christos UINT32 Value,
1034 1.5 christos UINT16 Flags);
1035 1.5 christos
1036 1.5 christos void
1037 1.14 christos AcpiDmCreateSubobjectForExternal (
1038 1.14 christos UINT8 Type,
1039 1.14 christos ACPI_NAMESPACE_NODE **Node,
1040 1.14 christos UINT32 Value);
1041 1.14 christos
1042 1.14 christos void
1043 1.5 christos AcpiDmAddNodeToExternalList (
1044 1.5 christos ACPI_NAMESPACE_NODE *Node,
1045 1.5 christos UINT8 Type,
1046 1.5 christos UINT32 Value,
1047 1.5 christos UINT16 Flags);
1048 1.1 jruoho
1049 1.1 jruoho void
1050 1.14 christos AcpiDmAddExternalListToNamespace (
1051 1.1 jruoho void);
1052 1.1 jruoho
1053 1.14 christos void
1054 1.14 christos AcpiDmAddOneExternalToNamespace (
1055 1.14 christos char *Path,
1056 1.14 christos UINT8 Type,
1057 1.14 christos UINT32 Value);
1058 1.14 christos
1059 1.1 jruoho UINT32
1060 1.14 christos AcpiDmGetUnresolvedExternalMethodCount (
1061 1.1 jruoho void);
1062 1.1 jruoho
1063 1.1 jruoho void
1064 1.1 jruoho AcpiDmClearExternalList (
1065 1.1 jruoho void);
1066 1.1 jruoho
1067 1.1 jruoho void
1068 1.1 jruoho AcpiDmEmitExternals (
1069 1.1 jruoho void);
1070 1.1 jruoho
1071 1.5 christos void
1072 1.13 christos AcpiDmEmitExternal (
1073 1.13 christos ACPI_PARSE_OBJECT *NameOp,
1074 1.13 christos ACPI_PARSE_OBJECT *TypeOp);
1075 1.13 christos
1076 1.13 christos void
1077 1.5 christos AcpiDmUnresolvedWarning (
1078 1.5 christos UINT8 Type);
1079 1.5 christos
1080 1.5 christos void
1081 1.5 christos AcpiDmGetExternalsFromFile (
1082 1.5 christos void);
1083 1.1 jruoho
1084 1.14 christos void
1085 1.14 christos AcpiDmMarkExternalConflict (
1086 1.14 christos ACPI_NAMESPACE_NODE *Node);
1087 1.14 christos
1088 1.14 christos
1089 1.1 jruoho /*
1090 1.1 jruoho * dmresrc
1091 1.1 jruoho */
1092 1.1 jruoho void
1093 1.1 jruoho AcpiDmDumpInteger8 (
1094 1.1 jruoho UINT8 Value,
1095 1.2 jruoho const char *Name);
1096 1.1 jruoho
1097 1.1 jruoho void
1098 1.1 jruoho AcpiDmDumpInteger16 (
1099 1.1 jruoho UINT16 Value,
1100 1.2 jruoho const char *Name);
1101 1.1 jruoho
1102 1.1 jruoho void
1103 1.1 jruoho AcpiDmDumpInteger32 (
1104 1.1 jruoho UINT32 Value,
1105 1.2 jruoho const char *Name);
1106 1.1 jruoho
1107 1.1 jruoho void
1108 1.1 jruoho AcpiDmDumpInteger64 (
1109 1.1 jruoho UINT64 Value,
1110 1.2 jruoho const char *Name);
1111 1.1 jruoho
1112 1.1 jruoho void
1113 1.1 jruoho AcpiDmResourceTemplate (
1114 1.1 jruoho ACPI_OP_WALK_INFO *Info,
1115 1.1 jruoho ACPI_PARSE_OBJECT *Op,
1116 1.1 jruoho UINT8 *ByteData,
1117 1.1 jruoho UINT32 ByteCount);
1118 1.1 jruoho
1119 1.1 jruoho ACPI_STATUS
1120 1.1 jruoho AcpiDmIsResourceTemplate (
1121 1.5 christos ACPI_WALK_STATE *WalkState,
1122 1.1 jruoho ACPI_PARSE_OBJECT *Op);
1123 1.1 jruoho
1124 1.1 jruoho void
1125 1.1 jruoho AcpiDmBitList (
1126 1.1 jruoho UINT16 Mask);
1127 1.1 jruoho
1128 1.1 jruoho void
1129 1.1 jruoho AcpiDmDescriptorName (
1130 1.1 jruoho void);
1131 1.1 jruoho
1132 1.1 jruoho
1133 1.1 jruoho /*
1134 1.1 jruoho * dmresrcl
1135 1.1 jruoho */
1136 1.1 jruoho void
1137 1.1 jruoho AcpiDmWordDescriptor (
1138 1.6 christos ACPI_OP_WALK_INFO *Info,
1139 1.1 jruoho AML_RESOURCE *Resource,
1140 1.1 jruoho UINT32 Length,
1141 1.1 jruoho UINT32 Level);
1142 1.1 jruoho
1143 1.1 jruoho void
1144 1.1 jruoho AcpiDmDwordDescriptor (
1145 1.6 christos ACPI_OP_WALK_INFO *Info,
1146 1.1 jruoho AML_RESOURCE *Resource,
1147 1.1 jruoho UINT32 Length,
1148 1.1 jruoho UINT32 Level);
1149 1.1 jruoho
1150 1.1 jruoho void
1151 1.1 jruoho AcpiDmExtendedDescriptor (
1152 1.6 christos ACPI_OP_WALK_INFO *Info,
1153 1.1 jruoho AML_RESOURCE *Resource,
1154 1.1 jruoho UINT32 Length,
1155 1.1 jruoho UINT32 Level);
1156 1.1 jruoho
1157 1.1 jruoho void
1158 1.1 jruoho AcpiDmQwordDescriptor (
1159 1.6 christos ACPI_OP_WALK_INFO *Info,
1160 1.1 jruoho AML_RESOURCE *Resource,
1161 1.1 jruoho UINT32 Length,
1162 1.1 jruoho UINT32 Level);
1163 1.1 jruoho
1164 1.1 jruoho void
1165 1.1 jruoho AcpiDmMemory24Descriptor (
1166 1.6 christos ACPI_OP_WALK_INFO *Info,
1167 1.1 jruoho AML_RESOURCE *Resource,
1168 1.1 jruoho UINT32 Length,
1169 1.1 jruoho UINT32 Level);
1170 1.1 jruoho
1171 1.1 jruoho void
1172 1.1 jruoho AcpiDmMemory32Descriptor (
1173 1.6 christos ACPI_OP_WALK_INFO *Info,
1174 1.1 jruoho AML_RESOURCE *Resource,
1175 1.1 jruoho UINT32 Length,
1176 1.1 jruoho UINT32 Level);
1177 1.1 jruoho
1178 1.1 jruoho void
1179 1.1 jruoho AcpiDmFixedMemory32Descriptor (
1180 1.6 christos ACPI_OP_WALK_INFO *Info,
1181 1.1 jruoho AML_RESOURCE *Resource,
1182 1.1 jruoho UINT32 Length,
1183 1.1 jruoho UINT32 Level);
1184 1.1 jruoho
1185 1.1 jruoho void
1186 1.1 jruoho AcpiDmGenericRegisterDescriptor (
1187 1.6 christos ACPI_OP_WALK_INFO *Info,
1188 1.1 jruoho AML_RESOURCE *Resource,
1189 1.1 jruoho UINT32 Length,
1190 1.1 jruoho UINT32 Level);
1191 1.1 jruoho
1192 1.1 jruoho void
1193 1.1 jruoho AcpiDmInterruptDescriptor (
1194 1.6 christos ACPI_OP_WALK_INFO *Info,
1195 1.1 jruoho AML_RESOURCE *Resource,
1196 1.1 jruoho UINT32 Length,
1197 1.1 jruoho UINT32 Level);
1198 1.1 jruoho
1199 1.1 jruoho void
1200 1.1 jruoho AcpiDmVendorLargeDescriptor (
1201 1.6 christos ACPI_OP_WALK_INFO *Info,
1202 1.1 jruoho AML_RESOURCE *Resource,
1203 1.1 jruoho UINT32 Length,
1204 1.1 jruoho UINT32 Level);
1205 1.1 jruoho
1206 1.1 jruoho void
1207 1.5 christos AcpiDmGpioDescriptor (
1208 1.6 christos ACPI_OP_WALK_INFO *Info,
1209 1.5 christos AML_RESOURCE *Resource,
1210 1.5 christos UINT32 Length,
1211 1.5 christos UINT32 Level);
1212 1.5 christos
1213 1.5 christos void
1214 1.14 christos AcpiDmPinFunctionDescriptor (
1215 1.14 christos ACPI_OP_WALK_INFO *Info,
1216 1.14 christos AML_RESOURCE *Resource,
1217 1.14 christos UINT32 Length,
1218 1.14 christos UINT32 Level);
1219 1.14 christos
1220 1.14 christos void
1221 1.14 christos AcpiDmPinConfigDescriptor (
1222 1.14 christos ACPI_OP_WALK_INFO *Info,
1223 1.14 christos AML_RESOURCE *Resource,
1224 1.14 christos UINT32 Length,
1225 1.14 christos UINT32 Level);
1226 1.14 christos
1227 1.14 christos void
1228 1.14 christos AcpiDmPinGroupDescriptor (
1229 1.14 christos ACPI_OP_WALK_INFO *Info,
1230 1.14 christos AML_RESOURCE *Resource,
1231 1.14 christos UINT32 Length,
1232 1.14 christos UINT32 Level);
1233 1.14 christos
1234 1.14 christos void
1235 1.14 christos AcpiDmPinGroupFunctionDescriptor (
1236 1.14 christos ACPI_OP_WALK_INFO *Info,
1237 1.14 christos AML_RESOURCE *Resource,
1238 1.14 christos UINT32 Length,
1239 1.14 christos UINT32 Level);
1240 1.14 christos
1241 1.14 christos void
1242 1.14 christos AcpiDmPinGroupConfigDescriptor (
1243 1.14 christos ACPI_OP_WALK_INFO *Info,
1244 1.14 christos AML_RESOURCE *Resource,
1245 1.14 christos UINT32 Length,
1246 1.14 christos UINT32 Level);
1247 1.14 christos
1248 1.14 christos void
1249 1.5 christos AcpiDmSerialBusDescriptor (
1250 1.6 christos ACPI_OP_WALK_INFO *Info,
1251 1.5 christos AML_RESOURCE *Resource,
1252 1.5 christos UINT32 Length,
1253 1.5 christos UINT32 Level);
1254 1.5 christos
1255 1.5 christos void
1256 1.1 jruoho AcpiDmVendorCommon (
1257 1.2 jruoho const char *Name,
1258 1.1 jruoho UINT8 *ByteData,
1259 1.1 jruoho UINT32 Length,
1260 1.1 jruoho UINT32 Level);
1261 1.1 jruoho
1262 1.27 christos void
1263 1.27 christos AcpiDmClockInputDescriptor (
1264 1.27 christos ACPI_OP_WALK_INFO *Info,
1265 1.27 christos AML_RESOURCE *Resource,
1266 1.27 christos UINT32 Length,
1267 1.27 christos UINT32 Level);
1268 1.1 jruoho
1269 1.1 jruoho /*
1270 1.1 jruoho * dmresrcs
1271 1.1 jruoho */
1272 1.1 jruoho void
1273 1.1 jruoho AcpiDmIrqDescriptor (
1274 1.6 christos ACPI_OP_WALK_INFO *Info,
1275 1.1 jruoho AML_RESOURCE *Resource,
1276 1.1 jruoho UINT32 Length,
1277 1.1 jruoho UINT32 Level);
1278 1.1 jruoho
1279 1.1 jruoho void
1280 1.1 jruoho AcpiDmDmaDescriptor (
1281 1.6 christos ACPI_OP_WALK_INFO *Info,
1282 1.1 jruoho AML_RESOURCE *Resource,
1283 1.1 jruoho UINT32 Length,
1284 1.1 jruoho UINT32 Level);
1285 1.1 jruoho
1286 1.1 jruoho void
1287 1.5 christos AcpiDmFixedDmaDescriptor (
1288 1.6 christos ACPI_OP_WALK_INFO *Info,
1289 1.5 christos AML_RESOURCE *Resource,
1290 1.5 christos UINT32 Length,
1291 1.5 christos UINT32 Level);
1292 1.5 christos
1293 1.5 christos void
1294 1.1 jruoho AcpiDmIoDescriptor (
1295 1.6 christos ACPI_OP_WALK_INFO *Info,
1296 1.1 jruoho AML_RESOURCE *Resource,
1297 1.1 jruoho UINT32 Length,
1298 1.1 jruoho UINT32 Level);
1299 1.1 jruoho
1300 1.1 jruoho void
1301 1.1 jruoho AcpiDmFixedIoDescriptor (
1302 1.6 christos ACPI_OP_WALK_INFO *Info,
1303 1.1 jruoho AML_RESOURCE *Resource,
1304 1.1 jruoho UINT32 Length,
1305 1.1 jruoho UINT32 Level);
1306 1.1 jruoho
1307 1.1 jruoho void
1308 1.1 jruoho AcpiDmStartDependentDescriptor (
1309 1.6 christos ACPI_OP_WALK_INFO *Info,
1310 1.1 jruoho AML_RESOURCE *Resource,
1311 1.1 jruoho UINT32 Length,
1312 1.1 jruoho UINT32 Level);
1313 1.1 jruoho
1314 1.1 jruoho void
1315 1.1 jruoho AcpiDmEndDependentDescriptor (
1316 1.6 christos ACPI_OP_WALK_INFO *Info,
1317 1.1 jruoho AML_RESOURCE *Resource,
1318 1.1 jruoho UINT32 Length,
1319 1.1 jruoho UINT32 Level);
1320 1.1 jruoho
1321 1.1 jruoho void
1322 1.1 jruoho AcpiDmVendorSmallDescriptor (
1323 1.6 christos ACPI_OP_WALK_INFO *Info,
1324 1.1 jruoho AML_RESOURCE *Resource,
1325 1.1 jruoho UINT32 Length,
1326 1.1 jruoho UINT32 Level);
1327 1.1 jruoho
1328 1.1 jruoho
1329 1.1 jruoho /*
1330 1.1 jruoho * dmutils
1331 1.1 jruoho */
1332 1.1 jruoho void
1333 1.1 jruoho AcpiDmDecodeAttribute (
1334 1.1 jruoho UINT8 Attribute);
1335 1.1 jruoho
1336 1.1 jruoho void
1337 1.1 jruoho AcpiDmIndent (
1338 1.1 jruoho UINT32 Level);
1339 1.1 jruoho
1340 1.1 jruoho BOOLEAN
1341 1.1 jruoho AcpiDmCommaIfListMember (
1342 1.1 jruoho ACPI_PARSE_OBJECT *Op);
1343 1.1 jruoho
1344 1.1 jruoho void
1345 1.1 jruoho AcpiDmCommaIfFieldMember (
1346 1.1 jruoho ACPI_PARSE_OBJECT *Op);
1347 1.1 jruoho
1348 1.1 jruoho
1349 1.1 jruoho /*
1350 1.1 jruoho * dmrestag
1351 1.1 jruoho */
1352 1.1 jruoho void
1353 1.1 jruoho AcpiDmFindResources (
1354 1.1 jruoho ACPI_PARSE_OBJECT *Root);
1355 1.1 jruoho
1356 1.1 jruoho void
1357 1.1 jruoho AcpiDmCheckResourceReference (
1358 1.1 jruoho ACPI_PARSE_OBJECT *Op,
1359 1.1 jruoho ACPI_WALK_STATE *WalkState);
1360 1.1 jruoho
1361 1.3 jruoho
1362 1.3 jruoho /*
1363 1.7 christos * dmcstyle
1364 1.7 christos */
1365 1.7 christos BOOLEAN
1366 1.7 christos AcpiDmCheckForSymbolicOpcode (
1367 1.7 christos ACPI_PARSE_OBJECT *Op,
1368 1.7 christos ACPI_OP_WALK_INFO *Info);
1369 1.7 christos
1370 1.7 christos void
1371 1.7 christos AcpiDmCloseOperator (
1372 1.7 christos ACPI_PARSE_OBJECT *Op);
1373 1.7 christos
1374 1.7 christos
1375 1.7 christos /*
1376 1.9 christos * dmtables
1377 1.3 jruoho */
1378 1.14 christos ACPI_STATUS
1379 1.14 christos AcpiDmProcessSwitch (
1380 1.14 christos ACPI_PARSE_OBJECT *Op);
1381 1.14 christos
1382 1.14 christos void
1383 1.14 christos AcpiDmClearTempList(
1384 1.14 christos void);
1385 1.14 christos
1386 1.14 christos /*
1387 1.14 christos * dmtables
1388 1.14 christos */
1389 1.3 jruoho void
1390 1.3 jruoho AdDisassemblerHeader (
1391 1.7 christos char *Filename,
1392 1.7 christos UINT8 TableType);
1393 1.3 jruoho
1394 1.7 christos #define ACPI_IS_AML_TABLE 0
1395 1.7 christos #define ACPI_IS_DATA_TABLE 1
1396 1.3 jruoho
1397 1.9 christos
1398 1.9 christos /*
1399 1.9 christos * adisasm
1400 1.9 christos */
1401 1.9 christos ACPI_STATUS
1402 1.9 christos AdAmlDisassemble (
1403 1.9 christos BOOLEAN OutToFile,
1404 1.9 christos char *Filename,
1405 1.9 christos char *Prefix,
1406 1.9 christos char **OutFilename);
1407 1.9 christos
1408 1.9 christos ACPI_STATUS
1409 1.9 christos AdGetLocalTables (
1410 1.9 christos void);
1411 1.9 christos
1412 1.9 christos ACPI_STATUS
1413 1.9 christos AdParseTable (
1414 1.9 christos ACPI_TABLE_HEADER *Table,
1415 1.9 christos ACPI_OWNER_ID *OwnerId,
1416 1.9 christos BOOLEAN LoadTable,
1417 1.9 christos BOOLEAN External);
1418 1.9 christos
1419 1.9 christos ACPI_STATUS
1420 1.9 christos AdDisplayTables (
1421 1.9 christos char *Filename,
1422 1.9 christos ACPI_TABLE_HEADER *Table);
1423 1.9 christos
1424 1.9 christos ACPI_STATUS
1425 1.9 christos AdDisplayStatistics (
1426 1.9 christos void);
1427 1.9 christos
1428 1.13 christos
1429 1.13 christos /*
1430 1.13 christos * dmwalk
1431 1.13 christos */
1432 1.13 christos UINT32
1433 1.13 christos AcpiDmBlockType (
1434 1.13 christos ACPI_PARSE_OBJECT *Op);
1435 1.13 christos
1436 1.13 christos
1437 1.1 jruoho #endif /* __ACDISASM_H__ */
1438