summaryrefslogtreecommitdiff
path: root/drivers/acpi/resources/rsirq.c
blob: 4e854ba70811c5b8a022b74c7f6a8bf3c61138f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
/*******************************************************************************
 *
 * Module Name: rsirq - IRQ resource descriptors
 *
 ******************************************************************************/

/*
 * Copyright (C) 2000 - 2005, R. Byron Moore
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
#include <acpi/acresrc.h>

#define _COMPONENT          ACPI_RESOURCES
ACPI_MODULE_NAME("rsirq")

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_irq
 *
 * PARAMETERS:  Aml                 - Pointer to the AML resource descriptor
 *              aml_resource_length - Length of the resource from the AML header
 *              Resource            - Where the internal resource is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert a raw AML resource descriptor to the corresponding
 *              internal resource descriptor, simplifying bitflags and handling
 *              alignment and endian issues if necessary.
 *
 ******************************************************************************/
acpi_status
acpi_rs_get_irq(union aml_resource *aml,
		u16 aml_resource_length, struct acpi_resource *resource)
{
	u16 temp16 = 0;
	u32 interrupt_count = 0;
	u32 i;
	u32 resource_length;

	ACPI_FUNCTION_TRACE("rs_get_irq");

	/* Get the IRQ mask (bytes 1:2) */

	ACPI_MOVE_16_TO_16(&temp16, &aml->irq.irq_mask);

	/* Decode the IRQ bits (up to 16 possible) */

	for (i = 0; i < 16; i++) {
		if ((temp16 >> i) & 0x01) {
			resource->data.irq.interrupts[interrupt_count] = i;
			interrupt_count++;
		}
	}

	/* Zero interrupts is valid */

	resource_length = 0;
	resource->data.irq.interrupt_count = interrupt_count;
	if (interrupt_count > 0) {
		/* Calculate the structure size based upon the number of interrupts */

		resource_length = (u32) (interrupt_count - 1) * 4;
	}

	/* Get Flags (Byte 3) if it is used */

	if (aml_resource_length == 3) {
		/* Check for HE, LL interrupts */

		switch (aml->irq.flags & 0x09) {
		case 0x01:	/* HE */
			resource->data.irq.triggering = ACPI_EDGE_SENSITIVE;
			resource->data.irq.polarity = ACPI_ACTIVE_HIGH;
			break;

		case 0x08:	/* LL */
			resource->data.irq.triggering = ACPI_LEVEL_SENSITIVE;
			resource->data.irq.polarity = ACPI_ACTIVE_LOW;
			break;

		default:
			/*
			 * Only _LL and _HE polarity/trigger interrupts
			 * are allowed (ACPI spec, section "IRQ Format")
			 * so 0x00 and 0x09 are illegal.
			 */
			ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
					  "Invalid interrupt polarity/trigger in resource list, %X\n",
					  aml->irq.flags));
			return_ACPI_STATUS(AE_BAD_DATA);
		}

		/* Get Sharing flag */

		resource->data.irq.sharable = (aml->irq.flags >> 3) & 0x01;
	} else {
		/*
		 * Default configuration: assume Edge Sensitive, Active High,
		 * Non-Sharable as per the ACPI Specification
		 */
		resource->data.irq.triggering = ACPI_EDGE_SENSITIVE;
		resource->data.irq.polarity = ACPI_ACTIVE_HIGH;
		resource->data.irq.sharable = ACPI_EXCLUSIVE;
	}

	/* Complete the resource header */

	resource->type = ACPI_RESOURCE_TYPE_IRQ;
	resource->length =
	    resource_length + ACPI_SIZEOF_RESOURCE(struct acpi_resource_irq);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_set_irq
 *
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
 *              external AML resource descriptor.
 *
 ******************************************************************************/

acpi_status
acpi_rs_set_irq(struct acpi_resource *resource, union aml_resource *aml)
{
	acpi_size descriptor_length;
	u16 irq_mask;
	u8 i;

	ACPI_FUNCTION_TRACE("rs_set_irq");

	/* Convert interrupt list to 16-bit IRQ bitmask */

	irq_mask = 0;
	for (i = 0; i < resource->data.irq.interrupt_count; i++) {
		irq_mask |= (1 << resource->data.irq.interrupts[i]);
	}

	/* Set the interrupt mask */

	ACPI_MOVE_16_TO_16(&aml->irq.irq_mask, &irq_mask);

	/*
	 * The descriptor field is set based upon whether a third byte is
	 * needed to contain the IRQ Information.
	 */
	if ((resource->data.irq.triggering == ACPI_EDGE_SENSITIVE) &&
	    (resource->data.irq.polarity == ACPI_ACTIVE_HIGH) &&
	    (resource->data.irq.sharable == ACPI_EXCLUSIVE)) {
		/* irq_no_flags() descriptor can be used */

		descriptor_length = sizeof(struct aml_resource_irq_noflags);
	} else {
		/* Irq() descriptor must be used */

		descriptor_length = sizeof(struct aml_resource_irq);

		/* Set the IRQ Info byte */

		aml->irq.flags = (u8)
		    ((resource->data.irq.sharable & 0x01) << 4);

		if (ACPI_LEVEL_SENSITIVE == resource->data.irq.triggering &&
		    ACPI_ACTIVE_LOW == resource->data.irq.polarity) {
			aml->irq.flags |= 0x08;
		} else {
			aml->irq.flags |= 0x01;
		}
	}

	/* Complete the AML descriptor header */

	acpi_rs_set_resource_header(ACPI_RESOURCE_NAME_IRQ, descriptor_length,
				    aml);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_ext_irq
 *
 * PARAMETERS:  Aml                 - Pointer to the AML resource descriptor
 *              aml_resource_length - Length of the resource from the AML header
 *              Resource            - Where the internal resource is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert a raw AML resource descriptor to the corresponding
 *              internal resource descriptor, simplifying bitflags and handling
 *              alignment and endian issues if necessary.
 *
 ******************************************************************************/

acpi_status
acpi_rs_get_ext_irq(union aml_resource *aml,
		    u16 aml_resource_length, struct acpi_resource *resource)
{
	char *out_resource_string;
	u8 temp8;

	ACPI_FUNCTION_TRACE("rs_get_ext_irq");

	/* Get the flag bits */

	temp8 = aml->extended_irq.flags;
	resource->data.extended_irq.producer_consumer = temp8 & 0x01;
	resource->data.extended_irq.polarity = (temp8 >> 2) & 0x01;
	resource->data.extended_irq.sharable = (temp8 >> 3) & 0x01;

	/*
	 * Check for Interrupt Mode
	 *
	 * The definition of an Extended IRQ changed between ACPI spec v1.0b
	 * and ACPI spec 2.0 (section 6.4.3.6 in both).
	 *
	 * - Edge/Level are defined opposite in the table vs the headers
	 */
	resource->data.extended_irq.triggering =
	    (temp8 & 0x2) ? ACPI_EDGE_SENSITIVE : ACPI_LEVEL_SENSITIVE;

	/* Get the IRQ Table length (Byte4) */

	temp8 = aml->extended_irq.table_length;
	resource->data.extended_irq.interrupt_count = temp8;
	if (temp8 < 1) {
		/* Must have at least one IRQ */

		return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
	}

	/*
	 * Add any additional structure size to properly calculate
	 * the next pointer at the end of this function
	 */
	resource->length = (temp8 - 1) * 4;
	out_resource_string = ACPI_CAST_PTR(char,
					    (&resource->data.extended_irq.
					     interrupts[0] + temp8));

	/* Get every IRQ in the table, each is 32 bits */

	acpi_rs_move_data(resource->data.extended_irq.interrupts,
			  aml->extended_irq.interrupt_number,
			  (u16) temp8, ACPI_MOVE_TYPE_32_TO_32);

	/* Get the optional resource_source (index and string) */

	resource->length +=
	    acpi_rs_get_resource_source(aml_resource_length,
					(acpi_size) resource->length +
					sizeof(struct
					       aml_resource_extended_irq),
					&resource->data.extended_irq.
					resource_source, aml,
					out_resource_string);

	/* Complete the resource header */

	resource->type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
	resource->length +=
	    ACPI_SIZEOF_RESOURCE(struct acpi_resource_extended_irq);
	return_ACPI_STATUS(AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_set_ext_irq
 *
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
 *              external AML resource descriptor.
 *
 ******************************************************************************/

acpi_status
acpi_rs_set_ext_irq(struct acpi_resource *resource, union aml_resource *aml)
{
	acpi_size descriptor_length;

	ACPI_FUNCTION_TRACE("rs_set_ext_irq");

	/* Set the Interrupt vector flags */

	aml->extended_irq.flags = (u8)
	    ((resource->data.extended_irq.producer_consumer & 0x01) |
	     ((resource->data.extended_irq.sharable & 0x01) << 3) |
	     ((resource->data.extended_irq.polarity & 0x1) << 2));

	/*
	 * Set the Interrupt Mode
	 *
	 * The definition of an Extended IRQ changed between ACPI spec v1.0b
	 * and ACPI spec 2.0 (section 6.4.3.6 in both).  This code does not
	 * implement the more restrictive definition of 1.0b
	 *
	 * - Edge/Level are defined opposite in the table vs the headers
	 */
	if (resource->data.extended_irq.triggering == ACPI_EDGE_SENSITIVE) {
		aml->extended_irq.flags |= 0x02;
	}

	/* Set the Interrupt table length */

	aml->extended_irq.table_length = (u8)
	    resource->data.extended_irq.interrupt_count;

	descriptor_length = (sizeof(struct aml_resource_extended_irq) - 4) +
	    ((acpi_size) resource->data.extended_irq.interrupt_count *
	     sizeof(u32));

	/* Set each interrupt value */

	acpi_rs_move_data(aml->extended_irq.interrupt_number,
			  resource->data.extended_irq.interrupts,
			  (u16) resource->data.extended_irq.interrupt_count,
			  ACPI_MOVE_TYPE_32_TO_32);

	/* Resource Source Index and Resource Source are optional */

	descriptor_length = acpi_rs_set_resource_source(aml, descriptor_length,
							&resource->data.
							extended_irq.
							resource_source);

	/* Complete the AML descriptor header */

	acpi_rs_set_resource_header(ACPI_RESOURCE_NAME_EXTENDED_IRQ,
				    descriptor_length, aml);
	return_ACPI_STATUS(AE_OK);
}