Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / acpi / amlresrc.h
blobb20ec303df074f669844653289ff5bd4a983f104
2 /******************************************************************************
4 * Module Name: amlresrc.h - AML resource descriptors
6 *****************************************************************************/
8 /*
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
14 * are met:
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.
31 * NO WARRANTY
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.
46 #ifndef __AMLRESRC_H
47 #define __AMLRESRC_H
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
95 u32 buffer_length;
96 void *buffer;
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.
107 #pragma pack(1)
109 struct asl_irq_format_desc
111 u8 descriptor_type;
112 u16 irq_mask;
113 u8 flags;
117 struct asl_irq_noflags_desc
119 u8 descriptor_type;
120 u16 irq_mask;
124 struct asl_dma_format_desc
126 u8 descriptor_type;
127 u8 dma_channel_mask;
128 u8 flags;
132 struct asl_start_dependent_desc
134 u8 descriptor_type;
135 u8 flags;
139 struct asl_start_dependent_noprio_desc
141 u8 descriptor_type;
145 struct asl_end_dependent_desc
147 u8 descriptor_type;
151 struct asl_io_port_desc
153 u8 descriptor_type;
154 u8 information;
155 u16 address_min;
156 u16 address_max;
157 u8 alignment;
158 u8 length;
162 struct asl_fixed_io_port_desc
164 u8 descriptor_type;
165 u16 base_address;
166 u8 length;
170 struct asl_small_vendor_desc
172 u8 descriptor_type;
173 u8 vendor_defined[7];
177 struct asl_end_tag_desc
179 u8 descriptor_type;
180 u8 checksum;
184 /* LARGE descriptors */
186 struct asl_memory_24_desc
188 u8 descriptor_type;
189 u16 length;
190 u8 information;
191 u16 address_min;
192 u16 address_max;
193 u16 alignment;
194 u16 range_length;
198 struct asl_large_vendor_desc
200 u8 descriptor_type;
201 u16 length;
202 u8 vendor_defined[1];
206 struct asl_memory_32_desc
208 u8 descriptor_type;
209 u16 length;
210 u8 information;
211 u32 address_min;
212 u32 address_max;
213 u32 alignment;
214 u32 range_length;
218 struct asl_fixed_memory_32_desc
220 u8 descriptor_type;
221 u16 length;
222 u8 information;
223 u32 base_address;
224 u32 range_length;
228 struct asl_extended_address_desc
230 u8 descriptor_type;
231 u16 length;
232 u8 resource_type;
233 u8 flags;
234 u8 specific_flags;
235 u8 revision_iD;
236 u8 reserved;
237 u64 granularity;
238 u64 address_min;
239 u64 address_max;
240 u64 translation_offset;
241 u64 address_length;
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
251 u8 descriptor_type;
252 u16 length;
253 u8 resource_type;
254 u8 flags;
255 u8 specific_flags;
256 u64 granularity;
257 u64 address_min;
258 u64 address_max;
259 u64 translation_offset;
260 u64 address_length;
261 u8 optional_fields[2];
265 struct asl_dword_address_desc
267 u8 descriptor_type;
268 u16 length;
269 u8 resource_type;
270 u8 flags;
271 u8 specific_flags;
272 u32 granularity;
273 u32 address_min;
274 u32 address_max;
275 u32 translation_offset;
276 u32 address_length;
277 u8 optional_fields[2];
281 struct asl_word_address_desc
283 u8 descriptor_type;
284 u16 length;
285 u8 resource_type;
286 u8 flags;
287 u8 specific_flags;
288 u16 granularity;
289 u16 address_min;
290 u16 address_max;
291 u16 translation_offset;
292 u16 address_length;
293 u8 optional_fields[2];
297 struct asl_extended_xrupt_desc
299 u8 descriptor_type;
300 u16 length;
301 u8 flags;
302 u8 table_length;
303 u32 interrupt_number[1];
304 /* res_source_index, res_source optional fields follow */
308 struct asl_general_register_desc
310 u8 descriptor_type;
311 u16 length;
312 u8 address_space_id;
313 u8 bit_width;
314 u8 bit_offset;
315 u8 access_size; /* ACPI 3.0, was Reserved */
316 u64 address;
319 /* restore default alignment */
321 #pragma pack()
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;
346 u32 u32_item;
347 u16 u16_item;
348 u8 U8item;
352 #endif