blob: fb4735315ad3e977ff008fd56f988de2fc8ba7d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: amlresrc.h - AML resource descriptors
5 *
6 *****************************************************************************/
7
8/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05009 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
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.
26 *
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.
30 *
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.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#ifndef __AMLRESRC_H
46#define __AMLRESRC_H
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ASL_RESNAME_ADDRESS "_ADR"
49#define ASL_RESNAME_ALIGNMENT "_ALN"
50#define ASL_RESNAME_ADDRESSSPACE "_ASI"
51#define ASL_RESNAME_ACCESSSIZE "_ASZ"
52#define ASL_RESNAME_TYPESPECIFICATTRIBUTES "_ATT"
53#define ASL_RESNAME_BASEADDRESS "_BAS"
Len Brown4be44fc2005-08-05 00:44:28 -040054#define ASL_RESNAME_BUSMASTER "_BM_" /* Master(1), Slave(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ASL_RESNAME_DECODE "_DEC"
56#define ASL_RESNAME_DMA "_DMA"
Len Brown4be44fc2005-08-05 00:44:28 -040057#define ASL_RESNAME_DMATYPE "_TYP" /* Compatible(0), A(1), B(2), F(3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define ASL_RESNAME_GRANULARITY "_GRA"
59#define ASL_RESNAME_INTERRUPT "_INT"
Len Brown4be44fc2005-08-05 00:44:28 -040060#define ASL_RESNAME_INTERRUPTLEVEL "_LL_" /* active_lo(1), active_hi(0) */
61#define ASL_RESNAME_INTERRUPTSHARE "_SHR" /* Shareable(1), no_share(0) */
62#define ASL_RESNAME_INTERRUPTTYPE "_HE_" /* Edge(1), Level(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define ASL_RESNAME_LENGTH "_LEN"
Len Brown4be44fc2005-08-05 00:44:28 -040064#define ASL_RESNAME_MEMATTRIBUTES "_MTP" /* Memory(0), Reserved(1), ACPI(2), NVS(3) */
65#define ASL_RESNAME_MEMTYPE "_MEM" /* non_cache(0), Cacheable(1) Cache+combine(2), Cache+prefetch(3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define ASL_RESNAME_MAXADDR "_MAX"
67#define ASL_RESNAME_MINADDR "_MIN"
68#define ASL_RESNAME_MAXTYPE "_MAF"
69#define ASL_RESNAME_MINTYPE "_MIF"
70#define ASL_RESNAME_REGISTERBITOFFSET "_RBO"
71#define ASL_RESNAME_REGISTERBITWIDTH "_RBW"
72#define ASL_RESNAME_RANGETYPE "_RNG"
Len Brown4be44fc2005-08-05 00:44:28 -040073#define ASL_RESNAME_READWRITETYPE "_RW_" /* read_only(0), Writeable (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define ASL_RESNAME_TRANSLATION "_TRA"
Len Brown4be44fc2005-08-05 00:44:28 -040075#define ASL_RESNAME_TRANSTYPE "_TRS" /* Sparse(1), Dense(0) */
76#define ASL_RESNAME_TYPE "_TTP" /* Translation(1), Static (0) */
77#define ASL_RESNAME_XFERTYPE "_SIz" /* 8(0), 8_and16(1), 16(2) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* Default sizes for "small" resource descriptors */
80
81#define ASL_RDESC_IRQ_SIZE 0x02
82#define ASL_RDESC_DMA_SIZE 0x02
83#define ASL_RDESC_ST_DEPEND_SIZE 0x00
84#define ASL_RDESC_END_DEPEND_SIZE 0x00
85#define ASL_RDESC_IO_SIZE 0x07
86#define ASL_RDESC_FIXED_IO_SIZE 0x03
87#define ASL_RDESC_END_TAG_SIZE 0x01
88
Len Brown4be44fc2005-08-05 00:44:28 -040089struct asl_resource_node {
90 u32 buffer_length;
91 void *buffer;
92 struct asl_resource_node *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093};
94
Bob Moore96db2552005-11-02 00:00:00 -050095/* Macros used to generate AML resource length fields */
96
97#define ACPI_AML_SIZE_LARGE(r) (sizeof (r) - sizeof (struct aml_resource_large_header))
98#define ACPI_AML_SIZE_SMALL(r) (sizeof (r) - sizeof (struct aml_resource_small_header))
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
101 * Resource descriptors defined in the ACPI specification.
102 *
103 * Packing/alignment must be BYTE because these descriptors
Bob Moore50eca3e2005-09-30 19:03:00 -0400104 * are used to overlay the raw AML byte stream.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
106#pragma pack(1)
107
Bob Moore50eca3e2005-09-30 19:03:00 -0400108/*
109 * SMALL descriptors
110 */
111#define AML_RESOURCE_SMALL_HEADER_COMMON \
112 u8 descriptor_type;
113
114struct aml_resource_small_header {
115AML_RESOURCE_SMALL_HEADER_COMMON};
116
117struct aml_resource_irq {
118 AML_RESOURCE_SMALL_HEADER_COMMON u16 irq_mask;
Len Brown4be44fc2005-08-05 00:44:28 -0400119 u8 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Bob Moore50eca3e2005-09-30 19:03:00 -0400122struct aml_resource_irq_noflags {
123 AML_RESOURCE_SMALL_HEADER_COMMON u16 irq_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Bob Moore50eca3e2005-09-30 19:03:00 -0400126struct aml_resource_dma {
127 AML_RESOURCE_SMALL_HEADER_COMMON u8 dma_channel_mask;
Len Brown4be44fc2005-08-05 00:44:28 -0400128 u8 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Bob Moore50eca3e2005-09-30 19:03:00 -0400131struct aml_resource_start_dependent {
132 AML_RESOURCE_SMALL_HEADER_COMMON u8 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Bob Moore50eca3e2005-09-30 19:03:00 -0400135struct aml_resource_start_dependent_noprio {
136AML_RESOURCE_SMALL_HEADER_COMMON};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Bob Moore50eca3e2005-09-30 19:03:00 -0400138struct aml_resource_end_dependent {
139AML_RESOURCE_SMALL_HEADER_COMMON};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Bob Moore50eca3e2005-09-30 19:03:00 -0400141struct aml_resource_io {
Bob Moore08978312005-10-21 00:00:00 -0400142 AML_RESOURCE_SMALL_HEADER_COMMON u8 flags;
Bob Moore50eca3e2005-09-30 19:03:00 -0400143 u16 minimum;
144 u16 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400145 u8 alignment;
Bob Moore50eca3e2005-09-30 19:03:00 -0400146 u8 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Bob Moore50eca3e2005-09-30 19:03:00 -0400149struct aml_resource_fixed_io {
150 AML_RESOURCE_SMALL_HEADER_COMMON u16 address;
151 u8 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
Bob Moore50eca3e2005-09-30 19:03:00 -0400154struct aml_resource_vendor_small {
155AML_RESOURCE_SMALL_HEADER_COMMON};
156
157struct aml_resource_end_tag {
158 AML_RESOURCE_SMALL_HEADER_COMMON u8 checksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Bob Moore50eca3e2005-09-30 19:03:00 -0400161/*
162 * LARGE descriptors
163 */
164#define AML_RESOURCE_LARGE_HEADER_COMMON \
Robert Moorebda663d2005-09-16 16:51:15 -0400165 u8 descriptor_type;\
Bob Moore50eca3e2005-09-30 19:03:00 -0400166 u16 resource_length;
Robert Moorebda663d2005-09-16 16:51:15 -0400167
Bob Moore50eca3e2005-09-30 19:03:00 -0400168struct aml_resource_large_header {
169AML_RESOURCE_LARGE_HEADER_COMMON};
Robert Moorebda663d2005-09-16 16:51:15 -0400170
Bob Moore50eca3e2005-09-30 19:03:00 -0400171struct aml_resource_memory24 {
Bob Moore08978312005-10-21 00:00:00 -0400172 AML_RESOURCE_LARGE_HEADER_COMMON u8 flags;
Bob Moore50eca3e2005-09-30 19:03:00 -0400173 u16 minimum;
174 u16 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 u16 alignment;
Bob Moore50eca3e2005-09-30 19:03:00 -0400176 u16 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
Bob Moore50eca3e2005-09-30 19:03:00 -0400179struct aml_resource_vendor_large {
180AML_RESOURCE_LARGE_HEADER_COMMON};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Bob Moore50eca3e2005-09-30 19:03:00 -0400182struct aml_resource_memory32 {
Bob Moore08978312005-10-21 00:00:00 -0400183 AML_RESOURCE_LARGE_HEADER_COMMON u8 flags;
Bob Moore50eca3e2005-09-30 19:03:00 -0400184 u32 minimum;
185 u32 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400186 u32 alignment;
Bob Moore50eca3e2005-09-30 19:03:00 -0400187 u32 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Bob Moore50eca3e2005-09-30 19:03:00 -0400190struct aml_resource_fixed_memory32 {
Bob Moore08978312005-10-21 00:00:00 -0400191 AML_RESOURCE_LARGE_HEADER_COMMON u8 flags;
Bob Moore50eca3e2005-09-30 19:03:00 -0400192 u32 address;
193 u32 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194};
195
Bob Moore50eca3e2005-09-30 19:03:00 -0400196#define AML_RESOURCE_ADDRESS_COMMON \
197 u8 resource_type; \
198 u8 flags; \
199 u8 specific_flags;
200
201struct aml_resource_address {
202AML_RESOURCE_LARGE_HEADER_COMMON AML_RESOURCE_ADDRESS_COMMON};
203
204struct aml_resource_extended_address64 {
205 AML_RESOURCE_LARGE_HEADER_COMMON
206 AML_RESOURCE_ADDRESS_COMMON u8 revision_iD;
Len Brown4be44fc2005-08-05 00:44:28 -0400207 u8 reserved;
208 u64 granularity;
Bob Moore50eca3e2005-09-30 19:03:00 -0400209 u64 minimum;
210 u64 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400211 u64 translation_offset;
212 u64 address_length;
Bob Moore08978312005-10-21 00:00:00 -0400213 u64 type_specific;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
Bob Moore50eca3e2005-09-30 19:03:00 -0400216#define AML_RESOURCE_EXTENDED_ADDRESS_REVISION 1 /* ACPI 3.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Bob Moore50eca3e2005-09-30 19:03:00 -0400218struct aml_resource_address64 {
219 AML_RESOURCE_LARGE_HEADER_COMMON
220 AML_RESOURCE_ADDRESS_COMMON u64 granularity;
221 u64 minimum;
222 u64 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400223 u64 translation_offset;
224 u64 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225};
226
Bob Moore50eca3e2005-09-30 19:03:00 -0400227struct aml_resource_address32 {
228 AML_RESOURCE_LARGE_HEADER_COMMON
229 AML_RESOURCE_ADDRESS_COMMON u32 granularity;
230 u32 minimum;
231 u32 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400232 u32 translation_offset;
233 u32 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Bob Moore50eca3e2005-09-30 19:03:00 -0400236struct aml_resource_address16 {
237 AML_RESOURCE_LARGE_HEADER_COMMON
238 AML_RESOURCE_ADDRESS_COMMON u16 granularity;
239 u16 minimum;
240 u16 maximum;
Len Brown4be44fc2005-08-05 00:44:28 -0400241 u16 translation_offset;
242 u16 address_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
Bob Moore50eca3e2005-09-30 19:03:00 -0400245struct aml_resource_extended_irq {
246 AML_RESOURCE_LARGE_HEADER_COMMON u8 flags;
Bob Moore08978312005-10-21 00:00:00 -0400247 u8 interrupt_count;
248 u32 interrupts[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* res_source_index, res_source optional fields follow */
250};
251
Bob Moore50eca3e2005-09-30 19:03:00 -0400252struct aml_resource_generic_register {
253 AML_RESOURCE_LARGE_HEADER_COMMON u8 address_space_id;
Len Brown4be44fc2005-08-05 00:44:28 -0400254 u8 bit_width;
255 u8 bit_offset;
Bob Moore50eca3e2005-09-30 19:03:00 -0400256 u8 access_size; /* ACPI 3.0, was previously Reserved */
Len Brown4be44fc2005-08-05 00:44:28 -0400257 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
260/* restore default alignment */
261
262#pragma pack()
263
264/* Union of all resource descriptors, so we can allocate the worst case */
265
Bob Moore50eca3e2005-09-30 19:03:00 -0400266union aml_resource {
267 /* Descriptor headers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Bob Moore50eca3e2005-09-30 19:03:00 -0400269 struct aml_resource_small_header small_header;
270 struct aml_resource_large_header large_header;
271
272 /* Small resource descriptors */
273
274 struct aml_resource_irq irq;
275 struct aml_resource_dma dma;
276 struct aml_resource_start_dependent start_dpf;
277 struct aml_resource_end_dependent end_dpf;
278 struct aml_resource_io io;
279 struct aml_resource_fixed_io fixed_io;
280 struct aml_resource_vendor_small vendor_small;
281 struct aml_resource_end_tag end_tag;
282
283 /* Large resource descriptors */
284
285 struct aml_resource_memory24 memory24;
286 struct aml_resource_generic_register generic_reg;
287 struct aml_resource_vendor_large vendor_large;
288 struct aml_resource_memory32 memory32;
289 struct aml_resource_fixed_memory32 fixed_memory32;
290 struct aml_resource_address16 address16;
291 struct aml_resource_address32 address32;
292 struct aml_resource_address64 address64;
293 struct aml_resource_extended_address64 ext_address64;
294 struct aml_resource_extended_irq extended_irq;
295
296 /* Utility overlays */
297
298 struct aml_resource_address address;
Len Brown4be44fc2005-08-05 00:44:28 -0400299 u32 u32_item;
300 u16 u16_item;
301 u8 U8item;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#endif