blob: d5bf05a96096ad785897966876929b02dba60c02 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsmisc - Miscellaneous resource descriptors
4 *
5 ******************************************************************************/
6
7/*
Bob Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, 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("rsmisc")
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 Mooreba494be2012-07-12 09:40:10 +080060 * PARAMETERS: resource - Pointer to the resource descriptor
61 * aml - Where the AML descriptor is returned
62 * 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 Mooreb229cf92006-04-21 17:15:00 -040084 ACPI_FUNCTION_TRACE(rs_convert_aml_to_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Lin Minge0fe0a82011-11-16 14:38:13 +080086 if (!info) {
87 return_ACPI_STATUS(AE_BAD_PARAMETER);
88 }
89
Bob Moore67a119f2008-06-10 13:42:13 +080090 if (((acpi_size) resource) & 0x3) {
Bob Moore52fc0b02006-10-02 00:00:00 -040091
Bob Mooreb8e4d892006-01-27 16:43:00 -050092 /* Each internal resource struct is expected to be 32-bit aligned */
93
94 ACPI_WARNING((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +080095 "Misaligned resource pointer (get): %p Type 0x%2.2X Length %u",
Bob Mooreb8e4d892006-01-27 16:43:00 -050096 resource, resource->type, resource->length));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Bob Moore08978312005-10-21 00:00:00 -040099 /* Extract the resource Length field (does not include header length) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Bob Moore08978312005-10-21 00:00:00 -0400101 aml_resource_length = acpi_ut_get_resource_length(aml);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /*
Bob Moore08978312005-10-21 00:00:00 -0400104 * First table entry must be ACPI_RSC_INITxxx and must contain the
105 * table length (# of table entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
Bob Moore08978312005-10-21 00:00:00 -0400107 count = INIT_TABLE_LENGTH(info);
Bob Moore08978312005-10-21 00:00:00 -0400108 while (count) {
109 /*
110 * Source is the external AML byte stream buffer,
111 * destination is the internal resource descriptor
112 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500113 source = ACPI_ADD_PTR(void, aml, info->aml_offset);
114 destination =
115 ACPI_ADD_PTR(void, resource, info->resource_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Bob Moore08978312005-10-21 00:00:00 -0400117 switch (info->opcode) {
118 case ACPI_RSC_INITGET:
119 /*
120 * Get the resource type and the initial (minimum) length
121 */
122 ACPI_MEMSET(resource, 0, INIT_RESOURCE_LENGTH(info));
123 resource->type = INIT_RESOURCE_TYPE(info);
124 resource->length = INIT_RESOURCE_LENGTH(info);
125 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Bob Moore08978312005-10-21 00:00:00 -0400127 case ACPI_RSC_INITSET:
128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Bob Moore08978312005-10-21 00:00:00 -0400130 case ACPI_RSC_FLAGINIT:
Robert Moore44f6c012005-04-18 22:49:35 -0400131
Bob Moore08978312005-10-21 00:00:00 -0400132 flags_mode = TRUE;
133 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400134
Bob Moore08978312005-10-21 00:00:00 -0400135 case ACPI_RSC_1BITFLAG:
136 /*
137 * Mask and shift the flag bit
138 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000139 ACPI_SET8(destination,
140 ((ACPI_GET8(source) >> info->value) & 0x01));
Bob Moore08978312005-10-21 00:00:00 -0400141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Bob Moore08978312005-10-21 00:00:00 -0400143 case ACPI_RSC_2BITFLAG:
144 /*
145 * Mask and shift the flag bits
146 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000147 ACPI_SET8(destination,
148 ((ACPI_GET8(source) >> info->value) & 0x03));
Bob Moore08978312005-10-21 00:00:00 -0400149 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Lin Minge0fe0a82011-11-16 14:38:13 +0800151 case ACPI_RSC_3BITFLAG:
152 /*
153 * Mask and shift the flag bits
154 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000155 ACPI_SET8(destination,
156 ((ACPI_GET8(source) >> info->value) & 0x07));
Lin Minge0fe0a82011-11-16 14:38:13 +0800157 break;
158
Bob Moore08978312005-10-21 00:00:00 -0400159 case ACPI_RSC_COUNT:
Bob Moore50eca3e2005-09-30 19:03:00 -0400160
Bob Moorec51a4de2005-11-17 13:07:00 -0500161 item_count = ACPI_GET8(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000162 ACPI_SET8(destination, item_count);
Robert Moore44f6c012005-04-18 22:49:35 -0400163
Bob Moore08978312005-10-21 00:00:00 -0400164 resource->length = resource->length +
165 (info->value * (item_count - 1));
166 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bob Moore08978312005-10-21 00:00:00 -0400168 case ACPI_RSC_COUNT16:
Bob Moore50eca3e2005-09-30 19:03:00 -0400169
Bob Moore08978312005-10-21 00:00:00 -0400170 item_count = aml_resource_length;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000171 ACPI_SET16(destination, item_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Bob Moore08978312005-10-21 00:00:00 -0400173 resource->length = resource->length +
174 (info->value * (item_count - 1));
175 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400176
Lin Minge0fe0a82011-11-16 14:38:13 +0800177 case ACPI_RSC_COUNT_GPIO_PIN:
178
179 target = ACPI_ADD_PTR(void, aml, info->value);
180 item_count = ACPI_GET16(target) - ACPI_GET16(source);
181
182 resource->length = resource->length + item_count;
183 item_count = item_count / 2;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000184 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800185 break;
186
187 case ACPI_RSC_COUNT_GPIO_VEN:
188
189 item_count = ACPI_GET8(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000190 ACPI_SET8(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800191
192 resource->length = resource->length +
193 (info->value * item_count);
194 break;
195
196 case ACPI_RSC_COUNT_GPIO_RES:
197
198 /*
199 * Vendor data is optional (length/offset may both be zero)
200 * Examine vendor data length field first
201 */
202 target = ACPI_ADD_PTR(void, aml, (info->value + 2));
203 if (ACPI_GET16(target)) {
204
205 /* Use vendor offset to get resource source length */
206
207 target = ACPI_ADD_PTR(void, aml, info->value);
208 item_count =
209 ACPI_GET16(target) - ACPI_GET16(source);
210 } else {
211 /* No vendor data to worry about */
212
213 item_count = aml->large_header.resource_length +
214 sizeof(struct aml_resource_large_header) -
215 ACPI_GET16(source);
216 }
217
218 resource->length = resource->length + item_count;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000219 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800220 break;
221
222 case ACPI_RSC_COUNT_SERIAL_VEN:
223
224 item_count = ACPI_GET16(source) - info->value;
225
226 resource->length = resource->length + item_count;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000227 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800228 break;
229
230 case ACPI_RSC_COUNT_SERIAL_RES:
231
232 item_count = (aml_resource_length +
233 sizeof(struct aml_resource_large_header))
234 - ACPI_GET16(source) - info->value;
235
236 resource->length = resource->length + item_count;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000237 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800238 break;
239
Bob Moore08978312005-10-21 00:00:00 -0400240 case ACPI_RSC_LENGTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Bob Moore08978312005-10-21 00:00:00 -0400242 resource->length = resource->length + info->value;
243 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Bob Moore08978312005-10-21 00:00:00 -0400245 case ACPI_RSC_MOVE8:
246 case ACPI_RSC_MOVE16:
247 case ACPI_RSC_MOVE32:
248 case ACPI_RSC_MOVE64:
249 /*
250 * Raw data move. Use the Info value field unless item_count has
251 * been previously initialized via a COUNT opcode
252 */
253 if (info->value) {
254 item_count = info->value;
255 }
256 acpi_rs_move_data(destination, source, item_count,
257 info->opcode);
258 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Lin Minge0fe0a82011-11-16 14:38:13 +0800260 case ACPI_RSC_MOVE_GPIO_PIN:
261
262 /* Generate and set the PIN data pointer */
263
264 target = (char *)ACPI_ADD_PTR(void, resource,
265 (resource->length -
266 item_count * 2));
267 *(u16 **)destination = ACPI_CAST_PTR(u16, target);
268
269 /* Copy the PIN data */
270
271 source = ACPI_ADD_PTR(void, aml, ACPI_GET16(source));
272 acpi_rs_move_data(target, source, item_count,
273 info->opcode);
274 break;
275
276 case ACPI_RSC_MOVE_GPIO_RES:
277
278 /* Generate and set the resource_source string pointer */
279
280 target = (char *)ACPI_ADD_PTR(void, resource,
281 (resource->length -
282 item_count));
283 *(u8 **)destination = ACPI_CAST_PTR(u8, target);
284
285 /* Copy the resource_source string */
286
287 source = ACPI_ADD_PTR(void, aml, ACPI_GET16(source));
288 acpi_rs_move_data(target, source, item_count,
289 info->opcode);
290 break;
291
292 case ACPI_RSC_MOVE_SERIAL_VEN:
293
294 /* Generate and set the Vendor Data pointer */
295
296 target = (char *)ACPI_ADD_PTR(void, resource,
297 (resource->length -
298 item_count));
299 *(u8 **)destination = ACPI_CAST_PTR(u8, target);
300
301 /* Copy the Vendor Data */
302
303 source = ACPI_ADD_PTR(void, aml, info->value);
304 acpi_rs_move_data(target, source, item_count,
305 info->opcode);
306 break;
307
308 case ACPI_RSC_MOVE_SERIAL_RES:
309
310 /* Generate and set the resource_source string pointer */
311
312 target = (char *)ACPI_ADD_PTR(void, resource,
313 (resource->length -
314 item_count));
315 *(u8 **)destination = ACPI_CAST_PTR(u8, target);
316
317 /* Copy the resource_source string */
318
319 source =
320 ACPI_ADD_PTR(void, aml,
321 (ACPI_GET16(source) + info->value));
322 acpi_rs_move_data(target, source, item_count,
323 info->opcode);
324 break;
325
Bob Moore08978312005-10-21 00:00:00 -0400326 case ACPI_RSC_SET8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Bob Moore08978312005-10-21 00:00:00 -0400328 ACPI_MEMSET(destination, info->aml_offset, info->value);
329 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400330
Bob Moore08978312005-10-21 00:00:00 -0400331 case ACPI_RSC_DATA8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Bob Moorec51a4de2005-11-17 13:07:00 -0500333 target = ACPI_ADD_PTR(char, resource, info->value);
334 ACPI_MEMCPY(destination, source, ACPI_GET16(target));
Bob Moore08978312005-10-21 00:00:00 -0400335 break;
336
337 case ACPI_RSC_ADDRESS:
338 /*
339 * Common handler for address descriptor flags
340 */
341 if (!acpi_rs_get_address_common(resource, aml)) {
342 return_ACPI_STATUS
343 (AE_AML_INVALID_RESOURCE_TYPE);
344 }
345 break;
346
347 case ACPI_RSC_SOURCE:
348 /*
349 * Optional resource_source (Index and String)
350 */
351 resource->length +=
352 acpi_rs_get_resource_source(aml_resource_length,
353 info->value,
354 destination, aml, NULL);
355 break;
356
357 case ACPI_RSC_SOURCEX:
358 /*
359 * Optional resource_source (Index and String). This is the more
360 * complicated case used by the Interrupt() macro
361 */
Lin Minge0fe0a82011-11-16 14:38:13 +0800362 target = ACPI_ADD_PTR(char, resource,
363 info->aml_offset +
364 (item_count * 4));
Bob Moore08978312005-10-21 00:00:00 -0400365
366 resource->length +=
367 acpi_rs_get_resource_source(aml_resource_length,
Lin Minge0fe0a82011-11-16 14:38:13 +0800368 (acpi_rs_length)
369 (((item_count -
370 1) * sizeof(u32)) +
371 info->value),
372 destination, aml,
373 target);
Bob Moore08978312005-10-21 00:00:00 -0400374 break;
375
376 case ACPI_RSC_BITMASK:
377 /*
378 * 8-bit encoded bitmask (DMA macro)
379 */
380 item_count =
Bob Moorec51a4de2005-11-17 13:07:00 -0500381 acpi_rs_decode_bitmask(ACPI_GET8(source),
Bob Moore08978312005-10-21 00:00:00 -0400382 destination);
383 if (item_count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500384 resource->length += (item_count - 1);
Bob Moore08978312005-10-21 00:00:00 -0400385 }
386
Bob Moorec51a4de2005-11-17 13:07:00 -0500387 target = ACPI_ADD_PTR(char, resource, info->value);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000388 ACPI_SET8(target, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400389 break;
390
391 case ACPI_RSC_BITMASK16:
392 /*
393 * 16-bit encoded bitmask (IRQ macro)
394 */
395 ACPI_MOVE_16_TO_16(&temp16, source);
396
397 item_count =
398 acpi_rs_decode_bitmask(temp16, destination);
399 if (item_count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500400 resource->length += (item_count - 1);
Bob Moore08978312005-10-21 00:00:00 -0400401 }
402
Bob Moorec51a4de2005-11-17 13:07:00 -0500403 target = ACPI_ADD_PTR(char, resource, info->value);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000404 ACPI_SET8(target, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400405 break;
406
407 case ACPI_RSC_EXIT_NE:
408 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800409 * control - Exit conversion if not equal
Bob Moore08978312005-10-21 00:00:00 -0400410 */
411 switch (info->resource_offset) {
412 case ACPI_RSC_COMPARE_AML_LENGTH:
413 if (aml_resource_length != info->value) {
414 goto exit;
415 }
416 break;
417
418 case ACPI_RSC_COMPARE_VALUE:
Bob Moorec51a4de2005-11-17 13:07:00 -0500419 if (ACPI_GET8(source) != info->value) {
Bob Moore08978312005-10-21 00:00:00 -0400420 goto exit;
421 }
422 break;
423
424 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500425
426 ACPI_ERROR((AE_INFO,
427 "Invalid conversion sub-opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400428 return_ACPI_STATUS(AE_BAD_PARAMETER);
429 }
430 break;
431
432 default:
433
Bob Mooreb8e4d892006-01-27 16:43:00 -0500434 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400435 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
Bob Moore08978312005-10-21 00:00:00 -0400438 count--;
439 info++;
440 }
Robert Moore44f6c012005-04-18 22:49:35 -0400441
Bob Moore08978312005-10-21 00:00:00 -0400442 exit:
443 if (!flags_mode) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400444
Bob Mooreea936b72006-02-17 00:00:00 -0500445 /* Round the resource struct length up to the next boundary (32 or 64) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Bob Moore52fc0b02006-10-02 00:00:00 -0400447 resource->length =
Bob Mooreea936b72006-02-17 00:00:00 -0500448 (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(resource->length);
Bob Moore08978312005-10-21 00:00:00 -0400449 }
450 return_ACPI_STATUS(AE_OK);
451}
452
453/*******************************************************************************
454 *
455 * FUNCTION: acpi_rs_convert_resource_to_aml
456 *
Bob Mooreba494be2012-07-12 09:40:10 +0800457 * PARAMETERS: resource - Pointer to the resource descriptor
458 * aml - Where the AML descriptor is returned
459 * info - Pointer to appropriate conversion table
Bob Moore08978312005-10-21 00:00:00 -0400460 *
461 * RETURN: Status
462 *
463 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
464 * external AML resource descriptor.
465 *
466 ******************************************************************************/
467
468acpi_status
469acpi_rs_convert_resource_to_aml(struct acpi_resource *resource,
470 union aml_resource *aml,
471 struct acpi_rsconvert_info *info)
472{
473 void *source = NULL;
474 void *destination;
Lin Minge0fe0a82011-11-16 14:38:13 +0800475 char *target;
Bob Moore08978312005-10-21 00:00:00 -0400476 acpi_rsdesc_size aml_length = 0;
477 u8 count;
478 u16 temp16 = 0;
479 u16 item_count = 0;
480
Bob Mooreb229cf92006-04-21 17:15:00 -0400481 ACPI_FUNCTION_TRACE(rs_convert_resource_to_aml);
Bob Moore08978312005-10-21 00:00:00 -0400482
Lin Minge0fe0a82011-11-16 14:38:13 +0800483 if (!info) {
484 return_ACPI_STATUS(AE_BAD_PARAMETER);
485 }
486
Bob Moore08978312005-10-21 00:00:00 -0400487 /*
488 * First table entry must be ACPI_RSC_INITxxx and must contain the
489 * table length (# of table entries)
490 */
491 count = INIT_TABLE_LENGTH(info);
492
493 while (count) {
494 /*
495 * Source is the internal resource descriptor,
496 * destination is the external AML byte stream buffer
497 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500498 source = ACPI_ADD_PTR(void, resource, info->resource_offset);
499 destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
Bob Moore08978312005-10-21 00:00:00 -0400500
501 switch (info->opcode) {
502 case ACPI_RSC_INITSET:
503
504 ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
505 aml_length = INIT_RESOURCE_LENGTH(info);
506 acpi_rs_set_resource_header(INIT_RESOURCE_TYPE(info),
507 aml_length, aml);
508 break;
509
510 case ACPI_RSC_INITGET:
511 break;
512
513 case ACPI_RSC_FLAGINIT:
514 /*
515 * Clear the flag byte
516 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000517 ACPI_SET8(destination, 0);
Bob Moore08978312005-10-21 00:00:00 -0400518 break;
519
520 case ACPI_RSC_1BITFLAG:
521 /*
522 * Mask and shift the flag bit
523 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000524 ACPI_SET_BIT(*ACPI_CAST8(destination), (u8)
525 ((ACPI_GET8(source) & 0x01) << info->
526 value));
Bob Moore08978312005-10-21 00:00:00 -0400527 break;
528
529 case ACPI_RSC_2BITFLAG:
530 /*
531 * Mask and shift the flag bits
532 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000533 ACPI_SET_BIT(*ACPI_CAST8(destination), (u8)
534 ((ACPI_GET8(source) & 0x03) << info->
535 value));
Bob Moore08978312005-10-21 00:00:00 -0400536 break;
537
Lin Minge0fe0a82011-11-16 14:38:13 +0800538 case ACPI_RSC_3BITFLAG:
539 /*
540 * Mask and shift the flag bits
541 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000542 ACPI_SET_BIT(*ACPI_CAST8(destination), (u8)
543 ((ACPI_GET8(source) & 0x07) << info->
544 value));
Lin Minge0fe0a82011-11-16 14:38:13 +0800545 break;
546
Bob Moore08978312005-10-21 00:00:00 -0400547 case ACPI_RSC_COUNT:
548
Bob Moorec51a4de2005-11-17 13:07:00 -0500549 item_count = ACPI_GET8(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000550 ACPI_SET8(destination, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400551
Bob Moorec51a4de2005-11-17 13:07:00 -0500552 aml_length =
553 (u16) (aml_length +
554 (info->value * (item_count - 1)));
Bob Moore08978312005-10-21 00:00:00 -0400555 break;
556
557 case ACPI_RSC_COUNT16:
558
Bob Moorec51a4de2005-11-17 13:07:00 -0500559 item_count = ACPI_GET16(source);
Bob Moore08978312005-10-21 00:00:00 -0400560 aml_length = (u16) (aml_length + item_count);
561 acpi_rs_set_resource_length(aml_length, aml);
562 break;
563
Lin Minge0fe0a82011-11-16 14:38:13 +0800564 case ACPI_RSC_COUNT_GPIO_PIN:
565
566 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000567 ACPI_SET16(destination, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800568
569 aml_length = (u16)(aml_length + item_count * 2);
570 target = ACPI_ADD_PTR(void, aml, info->value);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000571 ACPI_SET16(target, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800572 acpi_rs_set_resource_length(aml_length, aml);
573 break;
574
575 case ACPI_RSC_COUNT_GPIO_VEN:
576
577 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000578 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800579
580 aml_length =
581 (u16)(aml_length + (info->value * item_count));
582 acpi_rs_set_resource_length(aml_length, aml);
583 break;
584
585 case ACPI_RSC_COUNT_GPIO_RES:
586
587 /* Set resource source string length */
588
589 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000590 ACPI_SET16(destination, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800591
592 /* Compute offset for the Vendor Data */
593
594 aml_length = (u16)(aml_length + item_count);
595 target = ACPI_ADD_PTR(void, aml, info->value);
596
597 /* Set vendor offset only if there is vendor data */
598
599 if (resource->data.gpio.vendor_length) {
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000600 ACPI_SET16(target, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800601 }
602
603 acpi_rs_set_resource_length(aml_length, aml);
604 break;
605
606 case ACPI_RSC_COUNT_SERIAL_VEN:
607
608 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000609 ACPI_SET16(destination, item_count + info->value);
Lin Minge0fe0a82011-11-16 14:38:13 +0800610 aml_length = (u16)(aml_length + item_count);
611 acpi_rs_set_resource_length(aml_length, aml);
612 break;
613
614 case ACPI_RSC_COUNT_SERIAL_RES:
615
616 item_count = ACPI_GET16(source);
617 aml_length = (u16)(aml_length + item_count);
618 acpi_rs_set_resource_length(aml_length, aml);
619 break;
620
Bob Moore08978312005-10-21 00:00:00 -0400621 case ACPI_RSC_LENGTH:
622
623 acpi_rs_set_resource_length(info->value, aml);
624 break;
625
626 case ACPI_RSC_MOVE8:
627 case ACPI_RSC_MOVE16:
628 case ACPI_RSC_MOVE32:
629 case ACPI_RSC_MOVE64:
630
631 if (info->value) {
632 item_count = info->value;
633 }
634 acpi_rs_move_data(destination, source, item_count,
635 info->opcode);
636 break;
637
Lin Minge0fe0a82011-11-16 14:38:13 +0800638 case ACPI_RSC_MOVE_GPIO_PIN:
639
640 destination = (char *)ACPI_ADD_PTR(void, aml,
641 ACPI_GET16
642 (destination));
643 source = *(u16 **)source;
644 acpi_rs_move_data(destination, source, item_count,
645 info->opcode);
646 break;
647
648 case ACPI_RSC_MOVE_GPIO_RES:
649
650 /* Used for both resource_source string and vendor_data */
651
652 destination = (char *)ACPI_ADD_PTR(void, aml,
653 ACPI_GET16
654 (destination));
655 source = *(u8 **)source;
656 acpi_rs_move_data(destination, source, item_count,
657 info->opcode);
658 break;
659
660 case ACPI_RSC_MOVE_SERIAL_VEN:
661
662 destination = (char *)ACPI_ADD_PTR(void, aml,
663 (aml_length -
664 item_count));
665 source = *(u8 **)source;
666 acpi_rs_move_data(destination, source, item_count,
667 info->opcode);
668 break;
669
670 case ACPI_RSC_MOVE_SERIAL_RES:
671
672 destination = (char *)ACPI_ADD_PTR(void, aml,
673 (aml_length -
674 item_count));
675 source = *(u8 **)source;
676 acpi_rs_move_data(destination, source, item_count,
677 info->opcode);
678 break;
679
Bob Moore08978312005-10-21 00:00:00 -0400680 case ACPI_RSC_ADDRESS:
681
682 /* Set the Resource Type, General Flags, and Type-Specific Flags */
683
684 acpi_rs_set_address_common(aml, resource);
685 break;
686
687 case ACPI_RSC_SOURCEX:
688 /*
689 * Optional resource_source (Index and String)
690 */
691 aml_length =
Lv Zheng3e8214e2012-12-19 05:37:15 +0000692 acpi_rs_set_resource_source(aml,
693 (acpi_rs_length)
Bob Moore08978312005-10-21 00:00:00 -0400694 aml_length, source);
695 acpi_rs_set_resource_length(aml_length, aml);
696 break;
697
698 case ACPI_RSC_SOURCE:
699 /*
700 * Optional resource_source (Index and String). This is the more
701 * complicated case used by the Interrupt() macro
702 */
703 aml_length =
704 acpi_rs_set_resource_source(aml, info->value,
705 source);
706 acpi_rs_set_resource_length(aml_length, aml);
707 break;
708
709 case ACPI_RSC_BITMASK:
710 /*
711 * 8-bit encoded bitmask (DMA macro)
712 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000713 ACPI_SET8(destination,
714 acpi_rs_encode_bitmask(source,
715 *ACPI_ADD_PTR(u8,
716 resource,
717 info->
718 value)));
Bob Moore08978312005-10-21 00:00:00 -0400719 break;
720
721 case ACPI_RSC_BITMASK16:
722 /*
723 * 16-bit encoded bitmask (IRQ macro)
724 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500725 temp16 = acpi_rs_encode_bitmask(source,
726 *ACPI_ADD_PTR(u8,
727 resource,
728 info->
729 value));
Bob Moore08978312005-10-21 00:00:00 -0400730 ACPI_MOVE_16_TO_16(destination, &temp16);
731 break;
732
733 case ACPI_RSC_EXIT_LE:
734 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800735 * control - Exit conversion if less than or equal
Bob Moore08978312005-10-21 00:00:00 -0400736 */
737 if (item_count <= info->value) {
738 goto exit;
739 }
740 break;
741
742 case ACPI_RSC_EXIT_NE:
743 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800744 * control - Exit conversion if not equal
Bob Moore08978312005-10-21 00:00:00 -0400745 */
746 switch (COMPARE_OPCODE(info)) {
747 case ACPI_RSC_COMPARE_VALUE:
Bob Moorec51a4de2005-11-17 13:07:00 -0500748
749 if (*ACPI_ADD_PTR(u8, resource,
750 COMPARE_TARGET(info)) !=
Bob Moore08978312005-10-21 00:00:00 -0400751 COMPARE_VALUE(info)) {
752 goto exit;
753 }
754 break;
755
756 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500757
758 ACPI_ERROR((AE_INFO,
759 "Invalid conversion sub-opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400760 return_ACPI_STATUS(AE_BAD_PARAMETER);
761 }
762 break;
763
Bob Moore1d5b2852008-04-10 19:06:43 +0400764 case ACPI_RSC_EXIT_EQ:
765 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800766 * control - Exit conversion if equal
Bob Moore1d5b2852008-04-10 19:06:43 +0400767 */
768 if (*ACPI_ADD_PTR(u8, resource,
769 COMPARE_TARGET(info)) ==
770 COMPARE_VALUE(info)) {
771 goto exit;
772 }
773 break;
774
Bob Moore08978312005-10-21 00:00:00 -0400775 default:
776
Bob Mooreb8e4d892006-01-27 16:43:00 -0500777 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400778 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400780
Bob Moore08978312005-10-21 00:00:00 -0400781 count--;
782 info++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
Bob Moore08978312005-10-21 00:00:00 -0400785 exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400786 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Bob Moore08978312005-10-21 00:00:00 -0400789#if 0
790/* Previous resource validations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Bob Mooreba494be2012-07-12 09:40:10 +0800792if (aml->ext_address64.revision_ID != AML_RESOURCE_EXTENDED_ADDRESS_REVISION) {
Bob Moore08978312005-10-21 00:00:00 -0400793 return_ACPI_STATUS(AE_SUPPORT);
794}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Bob Moore08978312005-10-21 00:00:00 -0400796if (resource->data.start_dpf.performance_robustness >= 3) {
797 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_VALUE);
798}
799
800if (((aml->irq.flags & 0x09) == 0x00) || ((aml->irq.flags & 0x09) == 0x09)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 /*
Bob Moore08978312005-10-21 00:00:00 -0400802 * Only [active_high, edge_sensitive] or [active_low, level_sensitive]
803 * polarity/trigger interrupts are allowed (ACPI spec, section
804 * "IRQ Format"), so 0x00 and 0x09 are illegal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500806 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800807 "Invalid interrupt polarity/trigger in resource list, 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500808 aml->irq.flags));
Bob Moore08978312005-10-21 00:00:00 -0400809 return_ACPI_STATUS(AE_BAD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Bob Moore08978312005-10-21 00:00:00 -0400812resource->data.extended_irq.interrupt_count = temp8;
813if (temp8 < 1) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400814
Bob Moore08978312005-10-21 00:00:00 -0400815 /* Must have at least one IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Bob Moore08978312005-10-21 00:00:00 -0400817 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
Bob Moore50eca3e2005-09-30 19:03:00 -0400818}
Robert Moore44f6c012005-04-18 22:49:35 -0400819
Bob Moore08978312005-10-21 00:00:00 -0400820if (resource->data.dma.transfer == 0x03) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500821 ACPI_ERROR((AE_INFO, "Invalid DMA.Transfer preference (3)"));
Bob Moore08978312005-10-21 00:00:00 -0400822 return_ACPI_STATUS(AE_BAD_DATA);
Bob Moore50eca3e2005-09-30 19:03:00 -0400823}
Bob Moore08978312005-10-21 00:00:00 -0400824#endif