2 /******************************************************************************
4 * Module Name: amlresrc.h - AML resource descriptors
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2005, R. Byron Moore
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
50 #define ASL_RESNAME_ADDRESS "_ADR"
51 #define ASL_RESNAME_ALIGNMENT "_ALN"
52 #define ASL_RESNAME_ADDRESSSPACE "_ASI"
53 #define ASL_RESNAME_ACCESSSIZE "_ASZ"
54 #define ASL_RESNAME_TYPESPECIFICATTRIBUTES "_ATT"
55 #define ASL_RESNAME_BASEADDRESS "_BAS"
56 #define ASL_RESNAME_BUSMASTER "_BM_" /* Master(1), Slave(0) */
57 #define ASL_RESNAME_DECODE "_DEC"
58 #define ASL_RESNAME_DMA "_DMA"
59 #define ASL_RESNAME_DMATYPE "_TYP" /* Compatible(0), A(1), B(2), F(3) */
60 #define ASL_RESNAME_GRANULARITY "_GRA"
61 #define ASL_RESNAME_INTERRUPT "_INT"
62 #define ASL_RESNAME_INTERRUPTLEVEL "_LL_" /* active_lo(1), active_hi(0) */
63 #define ASL_RESNAME_INTERRUPTSHARE "_SHR" /* Shareable(1), no_share(0) */
64 #define ASL_RESNAME_INTERRUPTTYPE "_HE_" /* Edge(1), Level(0) */
65 #define ASL_RESNAME_LENGTH "_LEN"
66 #define ASL_RESNAME_MEMATTRIBUTES "_MTP" /* Memory(0), Reserved(1), ACPI(2), NVS(3) */
67 #define ASL_RESNAME_MEMTYPE "_MEM" /* non_cache(0), Cacheable(1) Cache+combine(2), Cache+prefetch(3) */
68 #define ASL_RESNAME_MAXADDR "_MAX"
69 #define ASL_RESNAME_MINADDR "_MIN"
70 #define ASL_RESNAME_MAXTYPE "_MAF"
71 #define ASL_RESNAME_MINTYPE "_MIF"
72 #define ASL_RESNAME_REGISTERBITOFFSET "_RBO"
73 #define ASL_RESNAME_REGISTERBITWIDTH "_RBW"
74 #define ASL_RESNAME_RANGETYPE "_RNG"
75 #define ASL_RESNAME_READWRITETYPE "_RW_" /* read_only(0), Writeable (1) */
76 #define ASL_RESNAME_TRANSLATION "_TRA"
77 #define ASL_RESNAME_TRANSTYPE "_TRS" /* Sparse(1), Dense(0) */
78 #define ASL_RESNAME_TYPE "_TTP" /* Translation(1), Static (0) */
79 #define ASL_RESNAME_XFERTYPE "_SIz" /* 8(0), 8_and16(1), 16(2) */
82 /* Default sizes for "small" resource descriptors */
84 #define ASL_RDESC_IRQ_SIZE 0x02
85 #define ASL_RDESC_DMA_SIZE 0x02
86 #define ASL_RDESC_ST_DEPEND_SIZE 0x00
87 #define ASL_RDESC_END_DEPEND_SIZE 0x00
88 #define ASL_RDESC_IO_SIZE 0x07
89 #define ASL_RDESC_FIXED_IO_SIZE 0x03
90 #define ASL_RDESC_END_TAG_SIZE 0x01
93 struct asl_resource_node
97 struct asl_resource_node
*next
;
102 * Resource descriptors defined in the ACPI specification.
104 * Packing/alignment must be BYTE because these descriptors
105 * are used to overlay the AML byte stream.
109 struct asl_irq_format_desc
117 struct asl_irq_noflags_desc
124 struct asl_dma_format_desc
132 struct asl_start_dependent_desc
139 struct asl_start_dependent_noprio_desc
145 struct asl_end_dependent_desc
151 struct asl_io_port_desc
162 struct asl_fixed_io_port_desc
170 struct asl_small_vendor_desc
173 u8 vendor_defined
[7];
177 struct asl_end_tag_desc
184 /* LARGE descriptors */
186 struct asl_memory_24_desc
198 struct asl_large_vendor_desc
202 u8 vendor_defined
[1];
206 struct asl_memory_32_desc
218 struct asl_fixed_memory_32_desc
228 struct asl_extended_address_desc
240 u64 translation_offset
;
242 u64 type_specific_attributes
;
243 u8 optional_fields
[2]; /* Used for length calculation only */
246 #define ASL_EXTENDED_ADDRESS_DESC_REVISION 1 /* ACPI 3.0 */
249 struct asl_qword_address_desc
259 u64 translation_offset
;
261 u8 optional_fields
[2];
265 struct asl_dword_address_desc
275 u32 translation_offset
;
277 u8 optional_fields
[2];
281 struct asl_word_address_desc
291 u16 translation_offset
;
293 u8 optional_fields
[2];
297 struct asl_extended_xrupt_desc
303 u32 interrupt_number
[1];
304 /* res_source_index, res_source optional fields follow */
308 struct asl_general_register_desc
315 u8 access_size
; /* ACPI 3.0, was Reserved */
319 /* restore default alignment */
323 /* Union of all resource descriptors, so we can allocate the worst case */
325 union asl_resource_desc
327 struct asl_irq_format_desc irq
;
328 struct asl_dma_format_desc dma
;
329 struct asl_start_dependent_desc std
;
330 struct asl_end_dependent_desc end
;
331 struct asl_io_port_desc iop
;
332 struct asl_fixed_io_port_desc fio
;
333 struct asl_small_vendor_desc smv
;
334 struct asl_end_tag_desc et
;
336 struct asl_memory_24_desc M24
;
337 struct asl_large_vendor_desc lgv
;
338 struct asl_memory_32_desc M32
;
339 struct asl_fixed_memory_32_desc F32
;
340 struct asl_qword_address_desc qas
;
341 struct asl_dword_address_desc das
;
342 struct asl_word_address_desc was
;
343 struct asl_extended_address_desc eas
;
344 struct asl_extended_xrupt_desc exx
;
345 struct asl_general_register_desc grg
;