blob: bc8f34590d9565cba48f429d7e7bd7750bfdb2a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsirq - IRQ resource descriptors
4 *
5 ******************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, 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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acresrc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("rsirq")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*******************************************************************************
52 *
Bob Moore08978312005-10-21 00:00:00 -040053 * acpi_rs_get_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 *
55 ******************************************************************************/
Bob Moore9cea6242012-12-31 00:07:31 +000056struct acpi_rsconvert_info acpi_rs_get_irq[9] = {
Bob Moore08978312005-10-21 00:00:00 -040057 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_IRQ,
58 ACPI_RS_SIZE(struct acpi_resource_irq),
59 ACPI_RSC_TABLE_SIZE(acpi_rs_get_irq)},
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Bob Moore50eca3e2005-09-30 19:03:00 -040061 /* Get the IRQ mask (bytes 1:2) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Bob Moore08978312005-10-21 00:00:00 -040063 {ACPI_RSC_BITMASK16, ACPI_RS_OFFSET(data.irq.interrupts[0]),
64 AML_OFFSET(irq.irq_mask),
65 ACPI_RS_OFFSET(data.irq.interrupt_count)},
Robert Moore44f6c012005-04-18 22:49:35 -040066
Bob Moore08978312005-10-21 00:00:00 -040067 /* Set default flags (others are zero) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Bob Moore08978312005-10-21 00:00:00 -040069 {ACPI_RSC_SET8, ACPI_RS_OFFSET(data.irq.triggering),
70 ACPI_EDGE_SENSITIVE,
71 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Bob Moore1d5b2852008-04-10 19:06:43 +040073 /* Get the descriptor length (2 or 3 for IRQ descriptor) */
74
75 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.irq.descriptor_length),
76 AML_OFFSET(irq.descriptor_type),
77 0},
78
Bob Moore08978312005-10-21 00:00:00 -040079 /* All done if no flag byte present in descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Bob Moore08978312005-10-21 00:00:00 -040081 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_AML_LENGTH, 0, 3},
Robert Moore44f6c012005-04-18 22:49:35 -040082
Bob Moore9cea6242012-12-31 00:07:31 +000083 /* Get flags: Triggering[0], Polarity[3], Sharing[4], Wake[5] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Bob Moore08978312005-10-21 00:00:00 -040085 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.triggering),
86 AML_OFFSET(irq.flags),
87 0},
Robert Moore44f6c012005-04-18 22:49:35 -040088
Bob Moore08978312005-10-21 00:00:00 -040089 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.polarity),
90 AML_OFFSET(irq.flags),
91 3},
Robert Moore44f6c012005-04-18 22:49:35 -040092
Bob Moore9cea6242012-12-31 00:07:31 +000093 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.sharable),
Bob Moore08978312005-10-21 00:00:00 -040094 AML_OFFSET(irq.flags),
Bob Moore9cea6242012-12-31 00:07:31 +000095 4},
96
97 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.wake_capable),
98 AML_OFFSET(irq.flags),
99 5}
Bob Moore08978312005-10-21 00:00:00 -0400100};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*******************************************************************************
103 *
Bob Moore08978312005-10-21 00:00:00 -0400104 * acpi_rs_set_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
106 ******************************************************************************/
107
Bob Moore9cea6242012-12-31 00:07:31 +0000108struct acpi_rsconvert_info acpi_rs_set_irq[14] = {
Bob Moore1d5b2852008-04-10 19:06:43 +0400109 /* Start with a default descriptor of length 3 */
110
Bob Moore08978312005-10-21 00:00:00 -0400111 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_IRQ,
112 sizeof(struct aml_resource_irq),
113 ACPI_RSC_TABLE_SIZE(acpi_rs_set_irq)},
Bob Moore50eca3e2005-09-30 19:03:00 -0400114
115 /* Convert interrupt list to 16-bit IRQ bitmask */
116
Bob Moore08978312005-10-21 00:00:00 -0400117 {ACPI_RSC_BITMASK16, ACPI_RS_OFFSET(data.irq.interrupts[0]),
118 AML_OFFSET(irq.irq_mask),
119 ACPI_RS_OFFSET(data.irq.interrupt_count)},
Bob Moore50eca3e2005-09-30 19:03:00 -0400120
Bob Moore9cea6242012-12-31 00:07:31 +0000121 /* Set flags: Triggering[0], Polarity[3], Sharing[4], Wake[5] */
Bob Moore50eca3e2005-09-30 19:03:00 -0400122
Bob Moore08978312005-10-21 00:00:00 -0400123 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.triggering),
124 AML_OFFSET(irq.flags),
125 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Bob Moore08978312005-10-21 00:00:00 -0400127 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.polarity),
128 AML_OFFSET(irq.flags),
129 3},
130
Bob Moore9cea6242012-12-31 00:07:31 +0000131 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.sharable),
Bob Moore08978312005-10-21 00:00:00 -0400132 AML_OFFSET(irq.flags),
133 4},
Bob Moore1d5b2852008-04-10 19:06:43 +0400134
Bob Moore9cea6242012-12-31 00:07:31 +0000135 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.irq.wake_capable),
136 AML_OFFSET(irq.flags),
137 5},
138
Bob Moore1d5b2852008-04-10 19:06:43 +0400139 /*
140 * All done if the output descriptor length is required to be 3
141 * (i.e., optimization to 2 bytes cannot be attempted)
142 */
143 {ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
144 ACPI_RS_OFFSET(data.irq.descriptor_length),
145 3},
146
147 /* Set length to 2 bytes (no flags byte) */
148
149 {ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_irq_noflags)},
150
151 /*
152 * All done if the output descriptor length is required to be 2.
153 *
154 * TBD: Perhaps we should check for error if input flags are not
155 * compatible with a 2-byte descriptor.
156 */
157 {ACPI_RSC_EXIT_EQ, ACPI_RSC_COMPARE_VALUE,
158 ACPI_RS_OFFSET(data.irq.descriptor_length),
159 2},
160
161 /* Reset length to 3 bytes (descriptor with flags byte) */
162
163 {ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_irq)},
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /*
Bob Moore08978312005-10-21 00:00:00 -0400166 * Check if the flags byte is necessary. Not needed if the flags are:
167 * ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_HIGH, ACPI_EXCLUSIVE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
Bob Moore08978312005-10-21 00:00:00 -0400169 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
170 ACPI_RS_OFFSET(data.irq.triggering),
171 ACPI_EDGE_SENSITIVE},
Bob Moore50eca3e2005-09-30 19:03:00 -0400172
Bob Moore08978312005-10-21 00:00:00 -0400173 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
174 ACPI_RS_OFFSET(data.irq.polarity),
175 ACPI_ACTIVE_HIGH},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Bob Moore08978312005-10-21 00:00:00 -0400177 {ACPI_RSC_EXIT_NE, ACPI_RSC_COMPARE_VALUE,
178 ACPI_RS_OFFSET(data.irq.sharable),
179 ACPI_EXCLUSIVE},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Bob Moore1d5b2852008-04-10 19:06:43 +0400181 /* We can optimize to a 2-byte irq_no_flags() descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400182
Bob Moore08978312005-10-21 00:00:00 -0400183 {ACPI_RSC_LENGTH, 0, 0, sizeof(struct aml_resource_irq_noflags)}
184};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/*******************************************************************************
187 *
Bob Moore08978312005-10-21 00:00:00 -0400188 * acpi_rs_convert_ext_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
190 ******************************************************************************/
191
Bob Moore9cea6242012-12-31 00:07:31 +0000192struct acpi_rsconvert_info acpi_rs_convert_ext_irq[10] = {
Bob Moore08978312005-10-21 00:00:00 -0400193 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_EXTENDED_IRQ,
194 ACPI_RS_SIZE(struct acpi_resource_extended_irq),
195 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_ext_irq)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Bob Moore08978312005-10-21 00:00:00 -0400197 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_EXTENDED_IRQ,
198 sizeof(struct aml_resource_extended_irq),
199 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Aaron Luf7b488e2012-12-31 00:07:24 +0000201 /*
202 * Flags: Producer/Consumer[0], Triggering[1], Polarity[2],
Bob Moore9cea6242012-12-31 00:07:31 +0000203 * Sharing[3], Wake[4]
Aaron Luf7b488e2012-12-31 00:07:24 +0000204 */
Bob Moore08978312005-10-21 00:00:00 -0400205 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.producer_consumer),
206 AML_OFFSET(extended_irq.flags),
207 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Bob Moore08978312005-10-21 00:00:00 -0400209 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.triggering),
210 AML_OFFSET(extended_irq.flags),
211 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Bob Moore08978312005-10-21 00:00:00 -0400213 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.polarity),
214 AML_OFFSET(extended_irq.flags),
215 2},
Robert Moore44f6c012005-04-18 22:49:35 -0400216
Bob Moore9cea6242012-12-31 00:07:31 +0000217 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.sharable),
Bob Moore08978312005-10-21 00:00:00 -0400218 AML_OFFSET(extended_irq.flags),
219 3},
Bob Moore50eca3e2005-09-30 19:03:00 -0400220
Bob Moore9cea6242012-12-31 00:07:31 +0000221 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.extended_irq.wake_capable),
222 AML_OFFSET(extended_irq.flags),
223 4},
224
Bob Moore08978312005-10-21 00:00:00 -0400225 /* IRQ Table length (Byte4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Bob Moore08978312005-10-21 00:00:00 -0400227 {ACPI_RSC_COUNT, ACPI_RS_OFFSET(data.extended_irq.interrupt_count),
228 AML_OFFSET(extended_irq.interrupt_count),
Lv Zheng3e8214e2012-12-19 05:37:15 +0000229 sizeof(u32)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Bob Moore08978312005-10-21 00:00:00 -0400231 /* Copy every IRQ in the table, each is 32 bits */
Robert Moore44f6c012005-04-18 22:49:35 -0400232
Bob Moore08978312005-10-21 00:00:00 -0400233 {ACPI_RSC_MOVE32, ACPI_RS_OFFSET(data.extended_irq.interrupts[0]),
234 AML_OFFSET(extended_irq.interrupts[0]),
Lv Zheng3e8214e2012-12-19 05:37:15 +0000235 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Bob Moore08978312005-10-21 00:00:00 -0400237 /* Optional resource_source (Index and String) */
Robert Moore44f6c012005-04-18 22:49:35 -0400238
Bob Moore08978312005-10-21 00:00:00 -0400239 {ACPI_RSC_SOURCEX, ACPI_RS_OFFSET(data.extended_irq.resource_source),
240 ACPI_RS_OFFSET(data.extended_irq.interrupts[0]),
241 sizeof(struct aml_resource_extended_irq)}
242};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*******************************************************************************
245 *
Bob Moore08978312005-10-21 00:00:00 -0400246 * acpi_rs_convert_dma
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 *
248 ******************************************************************************/
249
Bob Moore08978312005-10-21 00:00:00 -0400250struct acpi_rsconvert_info acpi_rs_convert_dma[6] = {
251 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_DMA,
252 ACPI_RS_SIZE(struct acpi_resource_dma),
253 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_dma)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Bob Moore08978312005-10-21 00:00:00 -0400255 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_DMA,
256 sizeof(struct aml_resource_dma),
257 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Bob Moore08978312005-10-21 00:00:00 -0400259 /* Flags: transfer preference, bus mastering, channel speed */
Robert Moore44f6c012005-04-18 22:49:35 -0400260
Bob Moore08978312005-10-21 00:00:00 -0400261 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.dma.transfer),
262 AML_OFFSET(dma.flags),
263 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Bob Moore08978312005-10-21 00:00:00 -0400265 {ACPI_RSC_1BITFLAG, ACPI_RS_OFFSET(data.dma.bus_master),
266 AML_OFFSET(dma.flags),
267 2},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Bob Moore08978312005-10-21 00:00:00 -0400269 {ACPI_RSC_2BITFLAG, ACPI_RS_OFFSET(data.dma.type),
270 AML_OFFSET(dma.flags),
271 5},
Robert Moore44f6c012005-04-18 22:49:35 -0400272
Bob Moore08978312005-10-21 00:00:00 -0400273 /* DMA channel mask bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Bob Moore08978312005-10-21 00:00:00 -0400275 {ACPI_RSC_BITMASK, ACPI_RS_OFFSET(data.dma.channels[0]),
276 AML_OFFSET(dma.dma_channel_mask),
277 ACPI_RS_OFFSET(data.dma.channel_count)}
278};
Lin Minge0fe0a82011-11-16 14:38:13 +0800279
280/*******************************************************************************
281 *
282 * acpi_rs_convert_fixed_dma
283 *
284 ******************************************************************************/
285
286struct acpi_rsconvert_info acpi_rs_convert_fixed_dma[4] = {
287 {ACPI_RSC_INITGET, ACPI_RESOURCE_TYPE_FIXED_DMA,
288 ACPI_RS_SIZE(struct acpi_resource_fixed_dma),
289 ACPI_RSC_TABLE_SIZE(acpi_rs_convert_fixed_dma)},
290
291 {ACPI_RSC_INITSET, ACPI_RESOURCE_NAME_FIXED_DMA,
292 sizeof(struct aml_resource_fixed_dma),
293 0},
294
295 /*
296 * These fields are contiguous in both the source and destination:
297 * request_lines
298 * Channels
299 */
Lin Minge0fe0a82011-11-16 14:38:13 +0800300 {ACPI_RSC_MOVE16, ACPI_RS_OFFSET(data.fixed_dma.request_lines),
301 AML_OFFSET(fixed_dma.request_lines),
302 2},
303
304 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET(data.fixed_dma.width),
305 AML_OFFSET(fixed_dma.width),
306 1},
Lin Minge0fe0a82011-11-16 14:38:13 +0800307};