blob: a8805efc036658d4622dac5dadfb631fcd6493a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsirq - IRQ resource descriptors
4 *
5 ******************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
25 *
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.
29 *
30 * NO WARRANTY
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.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acresrc.h>
46
47#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040048ACPI_MODULE_NAME("rsirq")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*******************************************************************************
51 *
Bob Moore08978312005-10-21 00:00:00 -040052 * acpi_rs_get_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 *
54 ******************************************************************************/
Bob Moore1d5b2852008-04-10 19:06:43 +040055struct acpi_rsconvert_info acpi_rs_get_irq[8] = {
Bob Moore08978312005-10-21 00:00:00 -040056 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_IRQ,
57 ACPI_RS_SIZE(struct acpi_resource_irq),
58 ACPI_RSC_TABLE_SIZE(acpi_rs_get_irq)},
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Bob Moore50eca3e2005-09-30 19:03:00 -040060 /* Get the IRQ mask (bytes 1:2) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Bob Moore08978312005-10-21 00:00:00 -040062 {ACPI_RSC_BITMASK16, ACPI_RS_OFFSET(data.irq.interrupts[0]),
63 AML_OFFSET(irq.irq_mask),
64 ACPI_RS_OFFSET(data.irq.interrupt_count)},
Robert Moore44f6c012005-04-18 22:49:35 -040065
Bob Moore08978312005-10-21 00:00:00 -040066 /* Set default flags (others are zero) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Bob Moore08978312005-10-21 00:00:00 -040068 {ACPI_RSC_SET8, ACPI_RS_OFFSET(data.irq.triggering),
69 ACPI_EDGE_SENSITIVE,
70 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Bob Moore1d5b2852008-04-10 19:06:43 +040072 /* Get the descriptor length (2 or 3 for IRQ descriptor) */
73
74 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.irq.descriptor_length),
75 AML_OFFSET(irq.descriptor_type),
76 0},
77
Bob Moore08978312005-10-21 00:00:00 -040078 /* All done if no flag byte present in descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Bob Moore08978312005-10-21 00:00:00 -040080 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_AML_LENGTH, 0, 3},
Robert Moore44f6c012005-04-18 22:49:35 -040081
Bob Moore08978312005-10-21 00:00:00 -040082 /* Get flags: Triggering[0], Polarity[3], Sharing[4] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Moore08978312005-10-21 00:00:00 -040084 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.triggering),
85 AML_OFFSET(irq.flags),
86 0},
Robert Moore44f6c012005-04-18 22:49:35 -040087
Bob Moore08978312005-10-21 00:00:00 -040088 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.polarity),
89 AML_OFFSET(irq.flags),
90 3},
Robert Moore44f6c012005-04-18 22:49:35 -040091
Bob Moore08978312005-10-21 00:00:00 -040092 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.sharable),
93 AML_OFFSET(irq.flags),
94 4}
95};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*******************************************************************************
98 *
Bob Moore08978312005-10-21 00:00:00 -040099 * acpi_rs_set_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
101 ******************************************************************************/
102
Bob Moore1d5b2852008-04-10 19:06:43 +0400103struct acpi_rsconvert_info acpi_rs_set_irq[13] = {
104 /* Start with a default descriptor of length 3 */
105
Bob Moore08978312005-10-21 00:00:00 -0400106 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_IRQ,
107 sizeof(struct aml_resource_irq),
108 ACPI_RSC_TABLE_SIZE(acpi_rs_set_irq)},
Bob Moore50eca3e2005-09-30 19:03:00 -0400109
110 /* Convert interrupt list to 16-bit IRQ bitmask */
111
Bob Moore08978312005-10-21 00:00:00 -0400112 {ACPI_RSC_BITMASK16, ACPI_RS_OFFSET(data.irq.interrupts[0]),
113 AML_OFFSET(irq.irq_mask),
114 ACPI_RS_OFFSET(data.irq.interrupt_count)},
Bob Moore50eca3e2005-09-30 19:03:00 -0400115
Bob Moore1d5b2852008-04-10 19:06:43 +0400116 /* Set the flags byte */
Bob Moore50eca3e2005-09-30 19:03:00 -0400117
Bob Moore08978312005-10-21 00:00:00 -0400118 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.triggering),
119 AML_OFFSET(irq.flags),
120 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Bob Moore08978312005-10-21 00:00:00 -0400122 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.polarity),
123 AML_OFFSET(irq.flags),
124 3},
125
126 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.sharable),
127 AML_OFFSET(irq.flags),
128 4},
Bob Moore1d5b2852008-04-10 19:06:43 +0400129
130 /*
131 * All done if the output descriptor length is required to be 3
132 * (i.e., optimization to 2 bytes cannot be attempted)
133 */
134 {ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
135 ACPI_RS_OFFSET(data.irq.descriptor_length),
136 3},
137
138 /* Set length to 2 bytes (no flags byte) */
139
140 {ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_irq_noflags)},
141
142 /*
143 * All done if the output descriptor length is required to be 2.
144 *
145 * TBD: Perhaps we should check for error if input flags are not
146 * compatible with a 2-byte descriptor.
147 */
148 {ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
149 ACPI_RS_OFFSET(data.irq.descriptor_length),
150 2},
151
152 /* Reset length to 3 bytes (descriptor with flags byte) */
153
154 {ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_irq)},
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /*
Bob Moore08978312005-10-21 00:00:00 -0400157 * Check if the flags byte is necessary. Not needed if the flags are:
158 * ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_HIGH, ACPI_EXCLUSIVE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Bob Moore08978312005-10-21 00:00:00 -0400160 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
161 ACPI_RS_OFFSET(data.irq.triggering),
162 ACPI_EDGE_SENSITIVE},
Bob Moore50eca3e2005-09-30 19:03:00 -0400163
Bob Moore08978312005-10-21 00:00:00 -0400164 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
165 ACPI_RS_OFFSET(data.irq.polarity),
166 ACPI_ACTIVE_HIGH},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bob Moore08978312005-10-21 00:00:00 -0400168 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
169 ACPI_RS_OFFSET(data.irq.sharable),
170 ACPI_EXCLUSIVE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Bob Moore1d5b2852008-04-10 19:06:43 +0400172 /* We can optimize to a 2-byte irq_no_flags() descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400173
Bob Moore08978312005-10-21 00:00:00 -0400174 {ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_irq_noflags)}
175};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*******************************************************************************
178 *
Bob Moore08978312005-10-21 00:00:00 -0400179 * acpi_rs_convert_ext_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *
181 ******************************************************************************/
182
Bob Moore08978312005-10-21 00:00:00 -0400183struct acpi_rsconvert_info acpi_rs_convert_ext_irq[9] = {
184 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_EXTENDED_IRQ,
185 ACPI_RS_SIZE(struct acpi_resource_extended_irq),
186 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_ext_irq)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Bob Moore08978312005-10-21 00:00:00 -0400188 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_EXTENDED_IRQ,
189 sizeof(struct aml_resource_extended_irq),
190 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Bob Moore08978312005-10-21 00:00:00 -0400192 /* Flag bits */
Robert Moore44f6c012005-04-18 22:49:35 -0400193
Bob Moore08978312005-10-21 00:00:00 -0400194 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.producer_consumer),
195 AML_OFFSET(extended_irq.flags),
196 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Bob Moore08978312005-10-21 00:00:00 -0400198 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.triggering),
199 AML_OFFSET(extended_irq.flags),
200 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Bob Moore08978312005-10-21 00:00:00 -0400202 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.polarity),
203 AML_OFFSET(extended_irq.flags),
204 2},
Robert Moore44f6c012005-04-18 22:49:35 -0400205
Bob Moore08978312005-10-21 00:00:00 -0400206 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.sharable),
207 AML_OFFSET(extended_irq.flags),
208 3},
Bob Moore50eca3e2005-09-30 19:03:00 -0400209
Bob Moore08978312005-10-21 00:00:00 -0400210 /* IRQ Table length (Byte4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Bob Moore08978312005-10-21 00:00:00 -0400212 {ACPI_RSC_COUNT, ACPI_RS_OFFSET(data.extended_irq.interrupt_count),
213 AML_OFFSET(extended_irq.interrupt_count),
214 sizeof(u32)}
215 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Bob Moore08978312005-10-21 00:00:00 -0400217 /* Copy every IRQ in the table, each is 32 bits */
Robert Moore44f6c012005-04-18 22:49:35 -0400218
Bob Moore08978312005-10-21 00:00:00 -0400219 {ACPI_RSC_MOVE32, ACPI_RS_OFFSET(data.extended_irq.interrupts[0]),
220 AML_OFFSET(extended_irq.interrupts[0]),
221 0}
222 ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Bob Moore08978312005-10-21 00:00:00 -0400224 /* Optional resource_source (Index and String) */
Robert Moore44f6c012005-04-18 22:49:35 -0400225
Bob Moore08978312005-10-21 00:00:00 -0400226 {ACPI_RSC_SOURCEX, ACPI_RS_OFFSET(data.extended_irq.resource_source),
227 ACPI_RS_OFFSET(data.extended_irq.interrupts[0]),
228 sizeof(struct aml_resource_extended_irq)}
229};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*******************************************************************************
232 *
Bob Moore08978312005-10-21 00:00:00 -0400233 * acpi_rs_convert_dma
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *
235 ******************************************************************************/
236
Bob Moore08978312005-10-21 00:00:00 -0400237struct acpi_rsconvert_info acpi_rs_convert_dma[6] = {
238 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_DMA,
239 ACPI_RS_SIZE(struct acpi_resource_dma),
240 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_dma)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Bob Moore08978312005-10-21 00:00:00 -0400242 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_DMA,
243 sizeof(struct aml_resource_dma),
244 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Bob Moore08978312005-10-21 00:00:00 -0400246 /* Flags: transfer preference, bus mastering, channel speed */
Robert Moore44f6c012005-04-18 22:49:35 -0400247
Bob Moore08978312005-10-21 00:00:00 -0400248 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.dma.transfer),
249 AML_OFFSET(dma.flags),
250 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Bob Moore08978312005-10-21 00:00:00 -0400252 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.dma.bus_master),
253 AML_OFFSET(dma.flags),
254 2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Bob Moore08978312005-10-21 00:00:00 -0400256 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.dma.type),
257 AML_OFFSET(dma.flags),
258 5},
Robert Moore44f6c012005-04-18 22:49:35 -0400259
Bob Moore08978312005-10-21 00:00:00 -0400260 /* DMA channel mask bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Bob Moore08978312005-10-21 00:00:00 -0400262 {ACPI_RSC_BITMASK, ACPI_RS_OFFSET(data.dma.channels[0]),
263 AML_OFFSET(dma.dma_channel_mask),
264 ACPI_RS_OFFSET(data.dma.channel_count)}
265};