blob: ed866cf1c6d23c7f7ede4a11fb366ec64ecc9824 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsmisc - Miscellaneous resource descriptors
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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("rsmisc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Bob Moore08978312005-10-21 00:00:00 -040050#define INIT_RESOURCE_TYPE(i) i->resource_offset
51#define INIT_RESOURCE_LENGTH(i) i->aml_offset
52#define INIT_TABLE_LENGTH(i) i->value
53#define COMPARE_OPCODE(i) i->resource_offset
54#define COMPARE_TARGET(i) i->aml_offset
55#define COMPARE_VALUE(i) i->value
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*******************************************************************************
57 *
Bob Moore08978312005-10-21 00:00:00 -040058 * FUNCTION: acpi_rs_convert_aml_to_resource
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
Bob Moore50eca3e2005-09-30 19:03:00 -040060 * PARAMETERS: Resource - Pointer to the resource descriptor
61 * Aml - Where the AML descriptor is returned
Bob Moore08978312005-10-21 00:00:00 -040062 * Info - Pointer to appropriate conversion table
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 *
64 * RETURN: Status
65 *
Bob Moore08978312005-10-21 00:00:00 -040066 * DESCRIPTION: Convert an external AML resource descriptor to the corresponding
67 * internal resource descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 *
69 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070070acpi_status
Bob Moore08978312005-10-21 00:00:00 -040071acpi_rs_convert_aml_to_resource(struct acpi_resource *resource,
72 union aml_resource *aml,
73 struct acpi_rsconvert_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Bob Moore08978312005-10-21 00:00:00 -040075 acpi_rs_length aml_resource_length;
76 void *source;
77 void *destination;
78 char *target;
79 u8 count;
80 u8 flags_mode = FALSE;
81 u16 item_count = 0;
82 u16 temp16 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Moore08978312005-10-21 00:00:00 -040084 ACPI_FUNCTION_TRACE("rs_get_resource");
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Bob Moore08978312005-10-21 00:00:00 -040086 if (((acpi_native_uint) resource) & 0x3) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050087 /* Each internal resource struct is expected to be 32-bit aligned */
88
89 ACPI_WARNING((AE_INFO,
90 "Misaligned resource pointer (get): %p Type %2.2X Len %X",
91 resource, resource->type, resource->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93
Bob Moore08978312005-10-21 00:00:00 -040094 /* Extract the resource Length field (does not include header length) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Bob Moore08978312005-10-21 00:00:00 -040096 aml_resource_length = acpi_ut_get_resource_length(aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /*
Bob Moore08978312005-10-21 00:00:00 -040099 * First table entry must be ACPI_RSC_INITxxx and must contain the
100 * table length (# of table entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
Bob Moore08978312005-10-21 00:00:00 -0400102 count = INIT_TABLE_LENGTH(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Bob Moore08978312005-10-21 00:00:00 -0400104 while (count) {
105 /*
106 * Source is the external AML byte stream buffer,
107 * destination is the internal resource descriptor
108 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500109 source = ACPI_ADD_PTR(void, aml, info->aml_offset);
110 destination =
111 ACPI_ADD_PTR(void, resource, info->resource_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Bob Moore08978312005-10-21 00:00:00 -0400113 switch (info->opcode) {
114 case ACPI_RSC_INITGET:
115 /*
116 * Get the resource type and the initial (minimum) length
117 */
118 ACPI_MEMSET(resource, 0, INIT_RESOURCE_LENGTH(info));
119 resource->type = INIT_RESOURCE_TYPE(info);
120 resource->length = INIT_RESOURCE_LENGTH(info);
121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Bob Moore08978312005-10-21 00:00:00 -0400123 case ACPI_RSC_INITSET:
124 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Bob Moore08978312005-10-21 00:00:00 -0400126 case ACPI_RSC_FLAGINIT:
Robert Moore44f6c012005-04-18 22:49:35 -0400127
Bob Moore08978312005-10-21 00:00:00 -0400128 flags_mode = TRUE;
129 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400130
Bob Moore08978312005-10-21 00:00:00 -0400131 case ACPI_RSC_1BITFLAG:
132 /*
133 * Mask and shift the flag bit
134 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500135 ACPI_SET8(destination) = (u8)
136 ((ACPI_GET8(source) >> info->value) & 0x01);
Bob Moore08978312005-10-21 00:00:00 -0400137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Bob Moore08978312005-10-21 00:00:00 -0400139 case ACPI_RSC_2BITFLAG:
140 /*
141 * Mask and shift the flag bits
142 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500143 ACPI_SET8(destination) = (u8)
144 ((ACPI_GET8(source) >> info->value) & 0x03);
Bob Moore08978312005-10-21 00:00:00 -0400145 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bob Moore08978312005-10-21 00:00:00 -0400147 case ACPI_RSC_COUNT:
Bob Moore50eca3e2005-09-30 19:03:00 -0400148
Bob Moorec51a4de2005-11-17 13:07:00 -0500149 item_count = ACPI_GET8(source);
150 ACPI_SET8(destination) = (u8) item_count;
Robert Moore44f6c012005-04-18 22:49:35 -0400151
Bob Moore08978312005-10-21 00:00:00 -0400152 resource->length = resource->length +
153 (info->value * (item_count - 1));
154 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Bob Moore08978312005-10-21 00:00:00 -0400156 case ACPI_RSC_COUNT16:
Bob Moore50eca3e2005-09-30 19:03:00 -0400157
Bob Moore08978312005-10-21 00:00:00 -0400158 item_count = aml_resource_length;
Bob Moorec51a4de2005-11-17 13:07:00 -0500159 ACPI_SET16(destination) = item_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Bob Moore08978312005-10-21 00:00:00 -0400161 resource->length = resource->length +
162 (info->value * (item_count - 1));
163 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400164
Bob Moore08978312005-10-21 00:00:00 -0400165 case ACPI_RSC_LENGTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Bob Moore08978312005-10-21 00:00:00 -0400167 resource->length = resource->length + info->value;
168 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Bob Moore08978312005-10-21 00:00:00 -0400170 case ACPI_RSC_MOVE8:
171 case ACPI_RSC_MOVE16:
172 case ACPI_RSC_MOVE32:
173 case ACPI_RSC_MOVE64:
174 /*
175 * Raw data move. Use the Info value field unless item_count has
176 * been previously initialized via a COUNT opcode
177 */
178 if (info->value) {
179 item_count = info->value;
180 }
181 acpi_rs_move_data(destination, source, item_count,
182 info->opcode);
183 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Bob Moore08978312005-10-21 00:00:00 -0400185 case ACPI_RSC_SET8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Bob Moore08978312005-10-21 00:00:00 -0400187 ACPI_MEMSET(destination, info->aml_offset, info->value);
188 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400189
Bob Moore08978312005-10-21 00:00:00 -0400190 case ACPI_RSC_DATA8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Bob Moorec51a4de2005-11-17 13:07:00 -0500192 target = ACPI_ADD_PTR(char, resource, info->value);
193 ACPI_MEMCPY(destination, source, ACPI_GET16(target));
Bob Moore08978312005-10-21 00:00:00 -0400194 break;
195
196 case ACPI_RSC_ADDRESS:
197 /*
198 * Common handler for address descriptor flags
199 */
200 if (!acpi_rs_get_address_common(resource, aml)) {
201 return_ACPI_STATUS
202 (AE_AML_INVALID_RESOURCE_TYPE);
203 }
204 break;
205
206 case ACPI_RSC_SOURCE:
207 /*
208 * Optional resource_source (Index and String)
209 */
210 resource->length +=
211 acpi_rs_get_resource_source(aml_resource_length,
212 info->value,
213 destination, aml, NULL);
214 break;
215
216 case ACPI_RSC_SOURCEX:
217 /*
218 * Optional resource_source (Index and String). This is the more
219 * complicated case used by the Interrupt() macro
220 */
221 target =
Bob Moorec51a4de2005-11-17 13:07:00 -0500222 ACPI_ADD_PTR(char, resource,
223 info->aml_offset + (item_count * 4));
Bob Moore08978312005-10-21 00:00:00 -0400224
225 resource->length +=
226 acpi_rs_get_resource_source(aml_resource_length,
227 (acpi_rs_length) (((item_count - 1) * sizeof(u32)) + info->value), destination, aml, target);
228 break;
229
230 case ACPI_RSC_BITMASK:
231 /*
232 * 8-bit encoded bitmask (DMA macro)
233 */
234 item_count =
Bob Moorec51a4de2005-11-17 13:07:00 -0500235 acpi_rs_decode_bitmask(ACPI_GET8(source),
Bob Moore08978312005-10-21 00:00:00 -0400236 destination);
237 if (item_count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500238 resource->length += (item_count - 1);
Bob Moore08978312005-10-21 00:00:00 -0400239 }
240
Bob Moorec51a4de2005-11-17 13:07:00 -0500241 target = ACPI_ADD_PTR(char, resource, info->value);
242 ACPI_SET8(target) = (u8) item_count;
Bob Moore08978312005-10-21 00:00:00 -0400243 break;
244
245 case ACPI_RSC_BITMASK16:
246 /*
247 * 16-bit encoded bitmask (IRQ macro)
248 */
249 ACPI_MOVE_16_TO_16(&temp16, source);
250
251 item_count =
252 acpi_rs_decode_bitmask(temp16, destination);
253 if (item_count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500254 resource->length += (item_count - 1);
Bob Moore08978312005-10-21 00:00:00 -0400255 }
256
Bob Moorec51a4de2005-11-17 13:07:00 -0500257 target = ACPI_ADD_PTR(char, resource, info->value);
258 ACPI_SET8(target) = (u8) item_count;
Bob Moore08978312005-10-21 00:00:00 -0400259 break;
260
261 case ACPI_RSC_EXIT_NE:
262 /*
263 * Control - Exit conversion if not equal
264 */
265 switch (info->resource_offset) {
266 case ACPI_RSC_COMPARE_AML_LENGTH:
267 if (aml_resource_length != info->value) {
268 goto exit;
269 }
270 break;
271
272 case ACPI_RSC_COMPARE_VALUE:
Bob Moorec51a4de2005-11-17 13:07:00 -0500273 if (ACPI_GET8(source) != info->value) {
Bob Moore08978312005-10-21 00:00:00 -0400274 goto exit;
275 }
276 break;
277
278 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500279
280 ACPI_ERROR((AE_INFO,
281 "Invalid conversion sub-opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400282 return_ACPI_STATUS(AE_BAD_PARAMETER);
283 }
284 break;
285
286 default:
287
Bob Mooreb8e4d892006-01-27 16:43:00 -0500288 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400289 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
Bob Moore08978312005-10-21 00:00:00 -0400292 count--;
293 info++;
294 }
Robert Moore44f6c012005-04-18 22:49:35 -0400295
Bob Moore08978312005-10-21 00:00:00 -0400296 exit:
297 if (!flags_mode) {
298 /* Round the resource struct length up to the next 32-bit boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Bob Moore08978312005-10-21 00:00:00 -0400300 resource->length = ACPI_ROUND_UP_to_32_bITS(resource->length);
301 }
302 return_ACPI_STATUS(AE_OK);
303}
304
305/*******************************************************************************
306 *
307 * FUNCTION: acpi_rs_convert_resource_to_aml
308 *
309 * PARAMETERS: Resource - Pointer to the resource descriptor
310 * Aml - Where the AML descriptor is returned
311 * Info - Pointer to appropriate conversion table
312 *
313 * RETURN: Status
314 *
315 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
316 * external AML resource descriptor.
317 *
318 ******************************************************************************/
319
320acpi_status
321acpi_rs_convert_resource_to_aml(struct acpi_resource *resource,
322 union aml_resource *aml,
323 struct acpi_rsconvert_info *info)
324{
325 void *source = NULL;
326 void *destination;
327 acpi_rsdesc_size aml_length = 0;
328 u8 count;
329 u16 temp16 = 0;
330 u16 item_count = 0;
331
332 ACPI_FUNCTION_TRACE("rs_convert_resource_to_aml");
333
Bob Moore08978312005-10-21 00:00:00 -0400334 /*
335 * First table entry must be ACPI_RSC_INITxxx and must contain the
336 * table length (# of table entries)
337 */
338 count = INIT_TABLE_LENGTH(info);
339
340 while (count) {
341 /*
342 * Source is the internal resource descriptor,
343 * destination is the external AML byte stream buffer
344 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500345 source = ACPI_ADD_PTR(void, resource, info->resource_offset);
346 destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
Bob Moore08978312005-10-21 00:00:00 -0400347
348 switch (info->opcode) {
349 case ACPI_RSC_INITSET:
350
351 ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
352 aml_length = INIT_RESOURCE_LENGTH(info);
353 acpi_rs_set_resource_header(INIT_RESOURCE_TYPE(info),
354 aml_length, aml);
355 break;
356
357 case ACPI_RSC_INITGET:
358 break;
359
360 case ACPI_RSC_FLAGINIT:
361 /*
362 * Clear the flag byte
363 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500364 ACPI_SET8(destination) = 0;
Bob Moore08978312005-10-21 00:00:00 -0400365 break;
366
367 case ACPI_RSC_1BITFLAG:
368 /*
369 * Mask and shift the flag bit
370 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500371 ACPI_SET8(destination) |= (u8)
372 ((ACPI_GET8(source) & 0x01) << info->value);
Bob Moore08978312005-10-21 00:00:00 -0400373 break;
374
375 case ACPI_RSC_2BITFLAG:
376 /*
377 * Mask and shift the flag bits
378 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500379 ACPI_SET8(destination) |= (u8)
380 ((ACPI_GET8(source) & 0x03) << info->value);
Bob Moore08978312005-10-21 00:00:00 -0400381 break;
382
383 case ACPI_RSC_COUNT:
384
Bob Moorec51a4de2005-11-17 13:07:00 -0500385 item_count = ACPI_GET8(source);
386 ACPI_SET8(destination) = (u8) item_count;
Bob Moore08978312005-10-21 00:00:00 -0400387
Bob Moorec51a4de2005-11-17 13:07:00 -0500388 aml_length =
389 (u16) (aml_length +
390 (info->value * (item_count - 1)));
Bob Moore08978312005-10-21 00:00:00 -0400391 break;
392
393 case ACPI_RSC_COUNT16:
394
Bob Moorec51a4de2005-11-17 13:07:00 -0500395 item_count = ACPI_GET16(source);
Bob Moore08978312005-10-21 00:00:00 -0400396 aml_length = (u16) (aml_length + item_count);
397 acpi_rs_set_resource_length(aml_length, aml);
398 break;
399
400 case ACPI_RSC_LENGTH:
401
402 acpi_rs_set_resource_length(info->value, aml);
403 break;
404
405 case ACPI_RSC_MOVE8:
406 case ACPI_RSC_MOVE16:
407 case ACPI_RSC_MOVE32:
408 case ACPI_RSC_MOVE64:
409
410 if (info->value) {
411 item_count = info->value;
412 }
413 acpi_rs_move_data(destination, source, item_count,
414 info->opcode);
415 break;
416
417 case ACPI_RSC_ADDRESS:
418
419 /* Set the Resource Type, General Flags, and Type-Specific Flags */
420
421 acpi_rs_set_address_common(aml, resource);
422 break;
423
424 case ACPI_RSC_SOURCEX:
425 /*
426 * Optional resource_source (Index and String)
427 */
428 aml_length =
429 acpi_rs_set_resource_source(aml,
430 (acpi_rs_length)
431 aml_length, source);
432 acpi_rs_set_resource_length(aml_length, aml);
433 break;
434
435 case ACPI_RSC_SOURCE:
436 /*
437 * Optional resource_source (Index and String). This is the more
438 * complicated case used by the Interrupt() macro
439 */
440 aml_length =
441 acpi_rs_set_resource_source(aml, info->value,
442 source);
443 acpi_rs_set_resource_length(aml_length, aml);
444 break;
445
446 case ACPI_RSC_BITMASK:
447 /*
448 * 8-bit encoded bitmask (DMA macro)
449 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500450 ACPI_SET8(destination) = (u8)
Bob Moore08978312005-10-21 00:00:00 -0400451 acpi_rs_encode_bitmask(source,
Bob Moorec51a4de2005-11-17 13:07:00 -0500452 *ACPI_ADD_PTR(u8, resource,
453 info->value));
Bob Moore08978312005-10-21 00:00:00 -0400454 break;
455
456 case ACPI_RSC_BITMASK16:
457 /*
458 * 16-bit encoded bitmask (IRQ macro)
459 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500460 temp16 = acpi_rs_encode_bitmask(source,
461 *ACPI_ADD_PTR(u8,
462 resource,
463 info->
464 value));
Bob Moore08978312005-10-21 00:00:00 -0400465 ACPI_MOVE_16_TO_16(destination, &temp16);
466 break;
467
468 case ACPI_RSC_EXIT_LE:
469 /*
470 * Control - Exit conversion if less than or equal
471 */
472 if (item_count <= info->value) {
473 goto exit;
474 }
475 break;
476
477 case ACPI_RSC_EXIT_NE:
478 /*
479 * Control - Exit conversion if not equal
480 */
481 switch (COMPARE_OPCODE(info)) {
482 case ACPI_RSC_COMPARE_VALUE:
Bob Moorec51a4de2005-11-17 13:07:00 -0500483
484 if (*ACPI_ADD_PTR(u8, resource,
485 COMPARE_TARGET(info)) !=
Bob Moore08978312005-10-21 00:00:00 -0400486 COMPARE_VALUE(info)) {
487 goto exit;
488 }
489 break;
490
491 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500492
493 ACPI_ERROR((AE_INFO,
494 "Invalid conversion sub-opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400495 return_ACPI_STATUS(AE_BAD_PARAMETER);
496 }
497 break;
498
499 default:
500
Bob Mooreb8e4d892006-01-27 16:43:00 -0500501 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400502 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400504
Bob Moore08978312005-10-21 00:00:00 -0400505 count--;
506 info++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
Bob Moore08978312005-10-21 00:00:00 -0400509 exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400510 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Bob Moore08978312005-10-21 00:00:00 -0400513#if 0
514/* Previous resource validations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Bob Moore08978312005-10-21 00:00:00 -0400516if (aml->ext_address64.revision_iD != AML_RESOURCE_EXTENDED_ADDRESS_REVISION) {
517 return_ACPI_STATUS(AE_SUPPORT);
518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Bob Moore08978312005-10-21 00:00:00 -0400520if (resource->data.start_dpf.performance_robustness >= 3) {
521 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_VALUE);
522}
523
524if (((aml->irq.flags & 0x09) == 0x00) || ((aml->irq.flags & 0x09) == 0x09)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /*
Bob Moore08978312005-10-21 00:00:00 -0400526 * Only [active_high, edge_sensitive] or [active_low, level_sensitive]
527 * polarity/trigger interrupts are allowed (ACPI spec, section
528 * "IRQ Format"), so 0x00 and 0x09 are illegal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500530 ACPI_ERROR((AE_INFO,
531 "Invalid interrupt polarity/trigger in resource list, %X",
532 aml->irq.flags));
Bob Moore08978312005-10-21 00:00:00 -0400533 return_ACPI_STATUS(AE_BAD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Bob Moore08978312005-10-21 00:00:00 -0400536resource->data.extended_irq.interrupt_count = temp8;
537if (temp8 < 1) {
538 /* Must have at least one IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Bob Moore08978312005-10-21 00:00:00 -0400540 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
Bob Moore50eca3e2005-09-30 19:03:00 -0400541}
Robert Moore44f6c012005-04-18 22:49:35 -0400542
Bob Moore08978312005-10-21 00:00:00 -0400543if (resource->data.dma.transfer == 0x03) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500544 ACPI_ERROR((AE_INFO, "Invalid DMA.Transfer preference (3)"));
Bob Moore08978312005-10-21 00:00:00 -0400545 return_ACPI_STATUS(AE_BAD_DATA);
Bob Moore50eca3e2005-09-30 19:03:00 -0400546}
Bob Moore08978312005-10-21 00:00:00 -0400547#endif