blob: 41eea4bc089c55c1858467284ff9f43011a9b178 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rsmisc - Miscellaneous resource descriptors
4 *
5 ******************************************************************************/
6
7/*
Bob Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, 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:
Lin Minge0fe0a82011-11-16 14:38:13 +0800197 /*
198 * Vendor data is optional (length/offset may both be zero)
199 * Examine vendor data length field first
200 */
201 target = ACPI_ADD_PTR(void, aml, (info->value + 2));
202 if (ACPI_GET16(target)) {
203
204 /* Use vendor offset to get resource source length */
205
206 target = ACPI_ADD_PTR(void, aml, info->value);
207 item_count =
208 ACPI_GET16(target) - ACPI_GET16(source);
209 } else {
210 /* No vendor data to worry about */
211
212 item_count = aml->large_header.resource_length +
213 sizeof(struct aml_resource_large_header) -
214 ACPI_GET16(source);
215 }
216
217 resource->length = resource->length + item_count;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000218 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800219 break;
220
221 case ACPI_RSC_COUNT_SERIAL_VEN:
222
223 item_count = ACPI_GET16(source) - info->value;
224
225 resource->length = resource->length + item_count;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000226 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800227 break;
228
229 case ACPI_RSC_COUNT_SERIAL_RES:
230
231 item_count = (aml_resource_length +
232 sizeof(struct aml_resource_large_header))
233 - ACPI_GET16(source) - info->value;
234
235 resource->length = resource->length + item_count;
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000236 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800237 break;
238
Bob Moore08978312005-10-21 00:00:00 -0400239 case ACPI_RSC_LENGTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Bob Moore08978312005-10-21 00:00:00 -0400241 resource->length = resource->length + info->value;
242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Bob Moore08978312005-10-21 00:00:00 -0400244 case ACPI_RSC_MOVE8:
245 case ACPI_RSC_MOVE16:
246 case ACPI_RSC_MOVE32:
247 case ACPI_RSC_MOVE64:
248 /*
249 * Raw data move. Use the Info value field unless item_count has
250 * been previously initialized via a COUNT opcode
251 */
252 if (info->value) {
253 item_count = info->value;
254 }
255 acpi_rs_move_data(destination, source, item_count,
256 info->opcode);
257 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Lin Minge0fe0a82011-11-16 14:38:13 +0800259 case ACPI_RSC_MOVE_GPIO_PIN:
260
261 /* Generate and set the PIN data pointer */
262
263 target = (char *)ACPI_ADD_PTR(void, resource,
264 (resource->length -
265 item_count * 2));
266 *(u16 **)destination = ACPI_CAST_PTR(u16, target);
267
268 /* Copy the PIN data */
269
270 source = ACPI_ADD_PTR(void, aml, ACPI_GET16(source));
271 acpi_rs_move_data(target, source, item_count,
272 info->opcode);
273 break;
274
275 case ACPI_RSC_MOVE_GPIO_RES:
276
277 /* Generate and set the resource_source string pointer */
278
279 target = (char *)ACPI_ADD_PTR(void, resource,
280 (resource->length -
281 item_count));
282 *(u8 **)destination = ACPI_CAST_PTR(u8, target);
283
284 /* Copy the resource_source string */
285
286 source = ACPI_ADD_PTR(void, aml, ACPI_GET16(source));
287 acpi_rs_move_data(target, source, item_count,
288 info->opcode);
289 break;
290
291 case ACPI_RSC_MOVE_SERIAL_VEN:
292
293 /* Generate and set the Vendor Data pointer */
294
295 target = (char *)ACPI_ADD_PTR(void, resource,
296 (resource->length -
297 item_count));
298 *(u8 **)destination = ACPI_CAST_PTR(u8, target);
299
300 /* Copy the Vendor Data */
301
302 source = ACPI_ADD_PTR(void, aml, info->value);
303 acpi_rs_move_data(target, source, item_count,
304 info->opcode);
305 break;
306
307 case ACPI_RSC_MOVE_SERIAL_RES:
308
309 /* Generate and set the resource_source string pointer */
310
311 target = (char *)ACPI_ADD_PTR(void, resource,
312 (resource->length -
313 item_count));
314 *(u8 **)destination = ACPI_CAST_PTR(u8, target);
315
316 /* Copy the resource_source string */
317
318 source =
319 ACPI_ADD_PTR(void, aml,
320 (ACPI_GET16(source) + info->value));
321 acpi_rs_move_data(target, source, item_count,
322 info->opcode);
323 break;
324
Bob Moore08978312005-10-21 00:00:00 -0400325 case ACPI_RSC_SET8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Bob Moore08978312005-10-21 00:00:00 -0400327 ACPI_MEMSET(destination, info->aml_offset, info->value);
328 break;
Robert Moore44f6c012005-04-18 22:49:35 -0400329
Bob Moore08978312005-10-21 00:00:00 -0400330 case ACPI_RSC_DATA8:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Bob Moorec51a4de2005-11-17 13:07:00 -0500332 target = ACPI_ADD_PTR(char, resource, info->value);
333 ACPI_MEMCPY(destination, source, ACPI_GET16(target));
Bob Moore08978312005-10-21 00:00:00 -0400334 break;
335
336 case ACPI_RSC_ADDRESS:
337 /*
338 * Common handler for address descriptor flags
339 */
340 if (!acpi_rs_get_address_common(resource, aml)) {
341 return_ACPI_STATUS
342 (AE_AML_INVALID_RESOURCE_TYPE);
343 }
344 break;
345
346 case ACPI_RSC_SOURCE:
347 /*
348 * Optional resource_source (Index and String)
349 */
350 resource->length +=
351 acpi_rs_get_resource_source(aml_resource_length,
352 info->value,
353 destination, aml, NULL);
354 break;
355
356 case ACPI_RSC_SOURCEX:
357 /*
358 * Optional resource_source (Index and String). This is the more
359 * complicated case used by the Interrupt() macro
360 */
Lin Minge0fe0a82011-11-16 14:38:13 +0800361 target = ACPI_ADD_PTR(char, resource,
362 info->aml_offset +
363 (item_count * 4));
Bob Moore08978312005-10-21 00:00:00 -0400364
365 resource->length +=
366 acpi_rs_get_resource_source(aml_resource_length,
Lin Minge0fe0a82011-11-16 14:38:13 +0800367 (acpi_rs_length)
368 (((item_count -
369 1) * sizeof(u32)) +
370 info->value),
371 destination, aml,
372 target);
Bob Moore08978312005-10-21 00:00:00 -0400373 break;
374
375 case ACPI_RSC_BITMASK:
376 /*
377 * 8-bit encoded bitmask (DMA macro)
378 */
379 item_count =
Bob Moorec51a4de2005-11-17 13:07:00 -0500380 acpi_rs_decode_bitmask(ACPI_GET8(source),
Bob Moore08978312005-10-21 00:00:00 -0400381 destination);
382 if (item_count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500383 resource->length += (item_count - 1);
Bob Moore08978312005-10-21 00:00:00 -0400384 }
385
Bob Moorec51a4de2005-11-17 13:07:00 -0500386 target = ACPI_ADD_PTR(char, resource, info->value);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000387 ACPI_SET8(target, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400388 break;
389
390 case ACPI_RSC_BITMASK16:
391 /*
392 * 16-bit encoded bitmask (IRQ macro)
393 */
394 ACPI_MOVE_16_TO_16(&temp16, source);
395
396 item_count =
397 acpi_rs_decode_bitmask(temp16, destination);
398 if (item_count) {
Bob Moorec51a4de2005-11-17 13:07:00 -0500399 resource->length += (item_count - 1);
Bob Moore08978312005-10-21 00:00:00 -0400400 }
401
Bob Moorec51a4de2005-11-17 13:07:00 -0500402 target = ACPI_ADD_PTR(char, resource, info->value);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000403 ACPI_SET8(target, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400404 break;
405
406 case ACPI_RSC_EXIT_NE:
407 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800408 * control - Exit conversion if not equal
Bob Moore08978312005-10-21 00:00:00 -0400409 */
410 switch (info->resource_offset) {
411 case ACPI_RSC_COMPARE_AML_LENGTH:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000412
Bob Moore08978312005-10-21 00:00:00 -0400413 if (aml_resource_length != info->value) {
414 goto exit;
415 }
416 break;
417
418 case ACPI_RSC_COMPARE_VALUE:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000419
Bob Moorec51a4de2005-11-17 13:07:00 -0500420 if (ACPI_GET8(source) != info->value) {
Bob Moore08978312005-10-21 00:00:00 -0400421 goto exit;
422 }
423 break;
424
425 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500426
427 ACPI_ERROR((AE_INFO,
428 "Invalid conversion sub-opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400429 return_ACPI_STATUS(AE_BAD_PARAMETER);
430 }
431 break;
432
433 default:
434
Bob Mooreb8e4d892006-01-27 16:43:00 -0500435 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400436 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
Bob Moore08978312005-10-21 00:00:00 -0400439 count--;
440 info++;
441 }
Robert Moore44f6c012005-04-18 22:49:35 -0400442
Lv Zheng10622bf2013-10-29 09:30:02 +0800443exit:
Bob Moore08978312005-10-21 00:00:00 -0400444 if (!flags_mode) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400445
Bob Mooreea936b72006-02-17 00:00:00 -0500446 /* Round the resource struct length up to the next boundary (32 or 64) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Bob Moore52fc0b02006-10-02 00:00:00 -0400448 resource->length =
Bob Mooreea936b72006-02-17 00:00:00 -0500449 (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(resource->length);
Bob Moore08978312005-10-21 00:00:00 -0400450 }
451 return_ACPI_STATUS(AE_OK);
452}
453
454/*******************************************************************************
455 *
456 * FUNCTION: acpi_rs_convert_resource_to_aml
457 *
Bob Mooreba494be2012-07-12 09:40:10 +0800458 * PARAMETERS: resource - Pointer to the resource descriptor
459 * aml - Where the AML descriptor is returned
460 * info - Pointer to appropriate conversion table
Bob Moore08978312005-10-21 00:00:00 -0400461 *
462 * RETURN: Status
463 *
464 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
465 * external AML resource descriptor.
466 *
467 ******************************************************************************/
468
469acpi_status
470acpi_rs_convert_resource_to_aml(struct acpi_resource *resource,
471 union aml_resource *aml,
472 struct acpi_rsconvert_info *info)
473{
474 void *source = NULL;
475 void *destination;
Lin Minge0fe0a82011-11-16 14:38:13 +0800476 char *target;
Bob Moore08978312005-10-21 00:00:00 -0400477 acpi_rsdesc_size aml_length = 0;
478 u8 count;
479 u16 temp16 = 0;
480 u16 item_count = 0;
481
Bob Mooreb229cf92006-04-21 17:15:00 -0400482 ACPI_FUNCTION_TRACE(rs_convert_resource_to_aml);
Bob Moore08978312005-10-21 00:00:00 -0400483
Lin Minge0fe0a82011-11-16 14:38:13 +0800484 if (!info) {
485 return_ACPI_STATUS(AE_BAD_PARAMETER);
486 }
487
Bob Moore08978312005-10-21 00:00:00 -0400488 /*
489 * First table entry must be ACPI_RSC_INITxxx and must contain the
490 * table length (# of table entries)
491 */
492 count = INIT_TABLE_LENGTH(info);
493
494 while (count) {
495 /*
496 * Source is the internal resource descriptor,
497 * destination is the external AML byte stream buffer
498 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500499 source = ACPI_ADD_PTR(void, resource, info->resource_offset);
500 destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
Bob Moore08978312005-10-21 00:00:00 -0400501
502 switch (info->opcode) {
503 case ACPI_RSC_INITSET:
504
505 ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
506 aml_length = INIT_RESOURCE_LENGTH(info);
507 acpi_rs_set_resource_header(INIT_RESOURCE_TYPE(info),
508 aml_length, aml);
509 break;
510
511 case ACPI_RSC_INITGET:
512 break;
513
514 case ACPI_RSC_FLAGINIT:
515 /*
516 * Clear the flag byte
517 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000518 ACPI_SET8(destination, 0);
Bob Moore08978312005-10-21 00:00:00 -0400519 break;
520
521 case ACPI_RSC_1BITFLAG:
522 /*
523 * Mask and shift the flag bit
524 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000525 ACPI_SET_BIT(*ACPI_CAST8(destination), (u8)
526 ((ACPI_GET8(source) & 0x01) << info->
527 value));
Bob Moore08978312005-10-21 00:00:00 -0400528 break;
529
530 case ACPI_RSC_2BITFLAG:
531 /*
532 * Mask and shift the flag bits
533 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000534 ACPI_SET_BIT(*ACPI_CAST8(destination), (u8)
535 ((ACPI_GET8(source) & 0x03) << info->
536 value));
Bob Moore08978312005-10-21 00:00:00 -0400537 break;
538
Lin Minge0fe0a82011-11-16 14:38:13 +0800539 case ACPI_RSC_3BITFLAG:
540 /*
541 * Mask and shift the flag bits
542 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000543 ACPI_SET_BIT(*ACPI_CAST8(destination), (u8)
544 ((ACPI_GET8(source) & 0x07) << info->
545 value));
Lin Minge0fe0a82011-11-16 14:38:13 +0800546 break;
547
Bob Moore08978312005-10-21 00:00:00 -0400548 case ACPI_RSC_COUNT:
549
Bob Moorec51a4de2005-11-17 13:07:00 -0500550 item_count = ACPI_GET8(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000551 ACPI_SET8(destination, item_count);
Bob Moore08978312005-10-21 00:00:00 -0400552
Bob Moorec51a4de2005-11-17 13:07:00 -0500553 aml_length =
554 (u16) (aml_length +
555 (info->value * (item_count - 1)));
Bob Moore08978312005-10-21 00:00:00 -0400556 break;
557
558 case ACPI_RSC_COUNT16:
559
Bob Moorec51a4de2005-11-17 13:07:00 -0500560 item_count = ACPI_GET16(source);
Bob Moore08978312005-10-21 00:00:00 -0400561 aml_length = (u16) (aml_length + item_count);
562 acpi_rs_set_resource_length(aml_length, aml);
563 break;
564
Lin Minge0fe0a82011-11-16 14:38:13 +0800565 case ACPI_RSC_COUNT_GPIO_PIN:
566
567 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000568 ACPI_SET16(destination, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800569
570 aml_length = (u16)(aml_length + item_count * 2);
571 target = ACPI_ADD_PTR(void, aml, info->value);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000572 ACPI_SET16(target, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800573 acpi_rs_set_resource_length(aml_length, aml);
574 break;
575
576 case ACPI_RSC_COUNT_GPIO_VEN:
577
578 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000579 ACPI_SET16(destination, item_count);
Lin Minge0fe0a82011-11-16 14:38:13 +0800580
581 aml_length =
582 (u16)(aml_length + (info->value * item_count));
583 acpi_rs_set_resource_length(aml_length, aml);
584 break;
585
586 case ACPI_RSC_COUNT_GPIO_RES:
587
588 /* Set resource source string length */
589
590 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000591 ACPI_SET16(destination, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800592
593 /* Compute offset for the Vendor Data */
594
595 aml_length = (u16)(aml_length + item_count);
596 target = ACPI_ADD_PTR(void, aml, info->value);
597
598 /* Set vendor offset only if there is vendor data */
599
600 if (resource->data.gpio.vendor_length) {
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000601 ACPI_SET16(target, aml_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800602 }
603
604 acpi_rs_set_resource_length(aml_length, aml);
605 break;
606
607 case ACPI_RSC_COUNT_SERIAL_VEN:
608
609 item_count = ACPI_GET16(source);
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000610 ACPI_SET16(destination, item_count + info->value);
Lin Minge0fe0a82011-11-16 14:38:13 +0800611 aml_length = (u16)(aml_length + item_count);
612 acpi_rs_set_resource_length(aml_length, aml);
613 break;
614
615 case ACPI_RSC_COUNT_SERIAL_RES:
616
617 item_count = ACPI_GET16(source);
618 aml_length = (u16)(aml_length + item_count);
619 acpi_rs_set_resource_length(aml_length, aml);
620 break;
621
Bob Moore08978312005-10-21 00:00:00 -0400622 case ACPI_RSC_LENGTH:
623
624 acpi_rs_set_resource_length(info->value, aml);
625 break;
626
627 case ACPI_RSC_MOVE8:
628 case ACPI_RSC_MOVE16:
629 case ACPI_RSC_MOVE32:
630 case ACPI_RSC_MOVE64:
631
632 if (info->value) {
633 item_count = info->value;
634 }
635 acpi_rs_move_data(destination, source, item_count,
636 info->opcode);
637 break;
638
Lin Minge0fe0a82011-11-16 14:38:13 +0800639 case ACPI_RSC_MOVE_GPIO_PIN:
640
641 destination = (char *)ACPI_ADD_PTR(void, aml,
642 ACPI_GET16
643 (destination));
644 source = *(u16 **)source;
645 acpi_rs_move_data(destination, source, item_count,
646 info->opcode);
647 break;
648
649 case ACPI_RSC_MOVE_GPIO_RES:
650
651 /* Used for both resource_source string and vendor_data */
652
653 destination = (char *)ACPI_ADD_PTR(void, aml,
654 ACPI_GET16
655 (destination));
656 source = *(u8 **)source;
657 acpi_rs_move_data(destination, source, item_count,
658 info->opcode);
659 break;
660
661 case ACPI_RSC_MOVE_SERIAL_VEN:
662
663 destination = (char *)ACPI_ADD_PTR(void, aml,
664 (aml_length -
665 item_count));
666 source = *(u8 **)source;
667 acpi_rs_move_data(destination, source, item_count,
668 info->opcode);
669 break;
670
671 case ACPI_RSC_MOVE_SERIAL_RES:
672
673 destination = (char *)ACPI_ADD_PTR(void, aml,
674 (aml_length -
675 item_count));
676 source = *(u8 **)source;
677 acpi_rs_move_data(destination, source, item_count,
678 info->opcode);
679 break;
680
Bob Moore08978312005-10-21 00:00:00 -0400681 case ACPI_RSC_ADDRESS:
682
683 /* Set the Resource Type, General Flags, and Type-Specific Flags */
684
685 acpi_rs_set_address_common(aml, resource);
686 break;
687
688 case ACPI_RSC_SOURCEX:
689 /*
690 * Optional resource_source (Index and String)
691 */
692 aml_length =
Lv Zheng3e8214e2012-12-19 05:37:15 +0000693 acpi_rs_set_resource_source(aml,
694 (acpi_rs_length)
Bob Moore08978312005-10-21 00:00:00 -0400695 aml_length, source);
696 acpi_rs_set_resource_length(aml_length, aml);
697 break;
698
699 case ACPI_RSC_SOURCE:
700 /*
701 * Optional resource_source (Index and String). This is the more
702 * complicated case used by the Interrupt() macro
703 */
704 aml_length =
705 acpi_rs_set_resource_source(aml, info->value,
706 source);
707 acpi_rs_set_resource_length(aml_length, aml);
708 break;
709
710 case ACPI_RSC_BITMASK:
711 /*
712 * 8-bit encoded bitmask (DMA macro)
713 */
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000714 ACPI_SET8(destination,
715 acpi_rs_encode_bitmask(source,
716 *ACPI_ADD_PTR(u8,
717 resource,
718 info->
719 value)));
Bob Moore08978312005-10-21 00:00:00 -0400720 break;
721
722 case ACPI_RSC_BITMASK16:
723 /*
724 * 16-bit encoded bitmask (IRQ macro)
725 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500726 temp16 = acpi_rs_encode_bitmask(source,
727 *ACPI_ADD_PTR(u8,
728 resource,
729 info->
730 value));
Bob Moore08978312005-10-21 00:00:00 -0400731 ACPI_MOVE_16_TO_16(destination, &temp16);
732 break;
733
734 case ACPI_RSC_EXIT_LE:
735 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800736 * control - Exit conversion if less than or equal
Bob Moore08978312005-10-21 00:00:00 -0400737 */
738 if (item_count <= info->value) {
739 goto exit;
740 }
741 break;
742
743 case ACPI_RSC_EXIT_NE:
744 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800745 * control - Exit conversion if not equal
Bob Moore08978312005-10-21 00:00:00 -0400746 */
747 switch (COMPARE_OPCODE(info)) {
748 case ACPI_RSC_COMPARE_VALUE:
Bob Moorec51a4de2005-11-17 13:07:00 -0500749
750 if (*ACPI_ADD_PTR(u8, resource,
751 COMPARE_TARGET(info)) !=
Bob Moore08978312005-10-21 00:00:00 -0400752 COMPARE_VALUE(info)) {
753 goto exit;
754 }
755 break;
756
757 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500758
759 ACPI_ERROR((AE_INFO,
760 "Invalid conversion sub-opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400761 return_ACPI_STATUS(AE_BAD_PARAMETER);
762 }
763 break;
764
Bob Moore1d5b2852008-04-10 19:06:43 +0400765 case ACPI_RSC_EXIT_EQ:
766 /*
Bob Mooreba494be2012-07-12 09:40:10 +0800767 * control - Exit conversion if equal
Bob Moore1d5b2852008-04-10 19:06:43 +0400768 */
769 if (*ACPI_ADD_PTR(u8, resource,
770 COMPARE_TARGET(info)) ==
771 COMPARE_VALUE(info)) {
772 goto exit;
773 }
774 break;
775
Bob Moore08978312005-10-21 00:00:00 -0400776 default:
777
Bob Mooreb8e4d892006-01-27 16:43:00 -0500778 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
Bob Moore08978312005-10-21 00:00:00 -0400779 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400781
Bob Moore08978312005-10-21 00:00:00 -0400782 count--;
783 info++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Lv Zheng10622bf2013-10-29 09:30:02 +0800786exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400787 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Bob Moore08978312005-10-21 00:00:00 -0400790#if 0
791/* Previous resource validations */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Bob Mooreba494be2012-07-12 09:40:10 +0800793if (aml->ext_address64.revision_ID != AML_RESOURCE_EXTENDED_ADDRESS_REVISION) {
Bob Moore08978312005-10-21 00:00:00 -0400794 return_ACPI_STATUS(AE_SUPPORT);
795}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Bob Moore08978312005-10-21 00:00:00 -0400797if (resource->data.start_dpf.performance_robustness >= 3) {
798 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_VALUE);
799}
800
801if (((aml->irq.flags & 0x09) == 0x00) || ((aml->irq.flags & 0x09) == 0x09)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /*
Bob Moore08978312005-10-21 00:00:00 -0400803 * Only [active_high, edge_sensitive] or [active_low, level_sensitive]
804 * polarity/trigger interrupts are allowed (ACPI spec, section
805 * "IRQ Format"), so 0x00 and 0x09 are illegal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500807 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800808 "Invalid interrupt polarity/trigger in resource list, 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500809 aml->irq.flags));
Bob Moore08978312005-10-21 00:00:00 -0400810 return_ACPI_STATUS(AE_BAD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Bob Moore08978312005-10-21 00:00:00 -0400813resource->data.extended_irq.interrupt_count = temp8;
814if (temp8 < 1) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400815
Bob Moore08978312005-10-21 00:00:00 -0400816 /* Must have at least one IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Bob Moore08978312005-10-21 00:00:00 -0400818 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
Bob Moore50eca3e2005-09-30 19:03:00 -0400819}
Robert Moore44f6c012005-04-18 22:49:35 -0400820
Bob Moore08978312005-10-21 00:00:00 -0400821if (resource->data.dma.transfer == 0x03) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500822 ACPI_ERROR((AE_INFO, "Invalid DMA.Transfer preference (3)"));
Bob Moore08978312005-10-21 00:00:00 -0400823 return_ACPI_STATUS(AE_BAD_DATA);
Bob Moore50eca3e2005-09-30 19:03:00 -0400824}
Bob Moore08978312005-10-21 00:00:00 -0400825#endif