blob: 14cb6c0c8be2b67df5a2693681c2028245b2363f [file] [log] [blame]
Bob Moore96db2552005-11-02 00:00:00 -05001/*******************************************************************************
2 *
Joe Perches3c5f9be42008-02-03 17:06:17 +02003 * Module Name: utresrc - Resource management utilities
Bob Moore96db2552005-11-02 00:00:00 -05004 *
5 ******************************************************************************/
6
7/*
Bob Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, Intel Corp.
Bob Moore96db2552005-11-02 00:00:00 -05009 * 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
44#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
Lin Minge0fe0a82011-11-16 14:38:13 +080046#include "acresrc.h"
Bob Moore96db2552005-11-02 00:00:00 -050047
48#define _COMPONENT ACPI_UTILITIES
Bob Mooreb229cf92006-04-21 17:15:00 -040049ACPI_MODULE_NAME("utresrc")
Lv Zheng33348612014-02-08 09:42:46 +080050
51#if defined(ACPI_DEBUG_OUTPUT) || defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
Bob Mooredefba1d2005-12-16 17:05:00 -050052/*
53 * Strings used to decode resource descriptors.
Justin P. Mattock70f23fd2011-05-10 10:16:21 +020054 * Used by both the disassembler and the debugger resource dump routines
Bob Mooredefba1d2005-12-16 17:05:00 -050055 */
Bob Mooreb229cf92006-04-21 17:15:00 -040056const char *acpi_gbl_bm_decode[] = {
57 "NotBusMaster",
58 "BusMaster"
Bob Mooredefba1d2005-12-16 17:05:00 -050059};
60
Bob Mooreb229cf92006-04-21 17:15:00 -040061const char *acpi_gbl_config_decode[] = {
Bob Mooredefba1d2005-12-16 17:05:00 -050062 "0 - Good Configuration",
63 "1 - Acceptable Configuration",
64 "2 - Suboptimal Configuration",
65 "3 - ***Invalid Configuration***",
66};
67
Bob Mooreb229cf92006-04-21 17:15:00 -040068const char *acpi_gbl_consume_decode[] = {
69 "ResourceProducer",
70 "ResourceConsumer"
Bob Mooredefba1d2005-12-16 17:05:00 -050071};
72
Bob Mooreb229cf92006-04-21 17:15:00 -040073const char *acpi_gbl_dec_decode[] = {
74 "PosDecode",
75 "SubDecode"
Bob Mooredefba1d2005-12-16 17:05:00 -050076};
77
Bob Mooreb229cf92006-04-21 17:15:00 -040078const char *acpi_gbl_he_decode[] = {
Bob Mooredefba1d2005-12-16 17:05:00 -050079 "Level",
80 "Edge"
81};
82
Bob Mooreb229cf92006-04-21 17:15:00 -040083const char *acpi_gbl_io_decode[] = {
Bob Mooredefba1d2005-12-16 17:05:00 -050084 "Decode10",
85 "Decode16"
86};
87
Bob Mooreb229cf92006-04-21 17:15:00 -040088const char *acpi_gbl_ll_decode[] = {
89 "ActiveHigh",
90 "ActiveLow"
Bob Mooredefba1d2005-12-16 17:05:00 -050091};
92
Bob Mooreb229cf92006-04-21 17:15:00 -040093const char *acpi_gbl_max_decode[] = {
94 "MaxNotFixed",
95 "MaxFixed"
Bob Mooredefba1d2005-12-16 17:05:00 -050096};
97
Bob Mooreb229cf92006-04-21 17:15:00 -040098const char *acpi_gbl_mem_decode[] = {
99 "NonCacheable",
Bob Mooredefba1d2005-12-16 17:05:00 -0500100 "Cacheable",
Bob Mooreb229cf92006-04-21 17:15:00 -0400101 "WriteCombining",
Bob Mooredefba1d2005-12-16 17:05:00 -0500102 "Prefetchable"
103};
104
Bob Mooreb229cf92006-04-21 17:15:00 -0400105const char *acpi_gbl_min_decode[] = {
106 "MinNotFixed",
107 "MinFixed"
Bob Mooredefba1d2005-12-16 17:05:00 -0500108};
109
Bob Mooreb229cf92006-04-21 17:15:00 -0400110const char *acpi_gbl_mtp_decode[] = {
111 "AddressRangeMemory",
112 "AddressRangeReserved",
113 "AddressRangeACPI",
114 "AddressRangeNVS"
Bob Mooredefba1d2005-12-16 17:05:00 -0500115};
116
Bob Mooreb229cf92006-04-21 17:15:00 -0400117const char *acpi_gbl_rng_decode[] = {
118 "InvalidRanges",
119 "NonISAOnlyRanges",
120 "ISAOnlyRanges",
121 "EntireRange"
Bob Mooredefba1d2005-12-16 17:05:00 -0500122};
123
Bob Mooreb229cf92006-04-21 17:15:00 -0400124const char *acpi_gbl_rw_decode[] = {
125 "ReadOnly",
126 "ReadWrite"
Bob Mooredefba1d2005-12-16 17:05:00 -0500127};
128
Bob Mooreb229cf92006-04-21 17:15:00 -0400129const char *acpi_gbl_shr_decode[] = {
Bob Mooredefba1d2005-12-16 17:05:00 -0500130 "Exclusive",
Bob Moore1f06c922012-12-19 05:38:12 +0000131 "Shared",
132 "ExclusiveAndWake", /* ACPI 5.0 */
133 "SharedAndWake" /* ACPI 5.0 */
Bob Mooredefba1d2005-12-16 17:05:00 -0500134};
135
Bob Mooreb229cf92006-04-21 17:15:00 -0400136const char *acpi_gbl_siz_decode[] = {
Bob Mooredefba1d2005-12-16 17:05:00 -0500137 "Transfer8",
138 "Transfer8_16",
139 "Transfer16",
Bob Mooreb229cf92006-04-21 17:15:00 -0400140 "InvalidSize"
Bob Mooredefba1d2005-12-16 17:05:00 -0500141};
142
Bob Mooreb229cf92006-04-21 17:15:00 -0400143const char *acpi_gbl_trs_decode[] = {
144 "DenseTranslation",
145 "SparseTranslation"
Bob Mooredefba1d2005-12-16 17:05:00 -0500146};
147
Bob Mooreb229cf92006-04-21 17:15:00 -0400148const char *acpi_gbl_ttp_decode[] = {
149 "TypeStatic",
150 "TypeTranslation"
Bob Mooredefba1d2005-12-16 17:05:00 -0500151};
152
Bob Mooreb229cf92006-04-21 17:15:00 -0400153const char *acpi_gbl_typ_decode[] = {
Bob Mooredefba1d2005-12-16 17:05:00 -0500154 "Compatibility",
Bob Mooreb229cf92006-04-21 17:15:00 -0400155 "TypeA",
156 "TypeB",
157 "TypeF"
Bob Mooredefba1d2005-12-16 17:05:00 -0500158};
159
Lin Minge0fe0a82011-11-16 14:38:13 +0800160const char *acpi_gbl_ppc_decode[] = {
161 "PullDefault",
162 "PullUp",
163 "PullDown",
164 "PullNone"
165};
166
167const char *acpi_gbl_ior_decode[] = {
168 "IoRestrictionNone",
169 "IoRestrictionInputOnly",
170 "IoRestrictionOutputOnly",
171 "IoRestrictionNoneAndPreserve"
172};
173
174const char *acpi_gbl_dts_decode[] = {
175 "Width8bit",
176 "Width16bit",
177 "Width32bit",
178 "Width64bit",
179 "Width128bit",
180 "Width256bit",
181};
182
183/* GPIO connection type */
184
185const char *acpi_gbl_ct_decode[] = {
186 "Interrupt",
187 "I/O"
188};
189
190/* Serial bus type */
191
192const char *acpi_gbl_sbt_decode[] = {
193 "/* UNKNOWN serial bus type */",
194 "I2C",
195 "SPI",
196 "UART"
197};
198
199/* I2C serial bus access mode */
200
201const char *acpi_gbl_am_decode[] = {
202 "AddressingMode7Bit",
203 "AddressingMode10Bit"
204};
205
206/* I2C serial bus slave mode */
207
208const char *acpi_gbl_sm_decode[] = {
209 "ControllerInitiated",
210 "DeviceInitiated"
211};
212
213/* SPI serial bus wire mode */
214
215const char *acpi_gbl_wm_decode[] = {
216 "FourWireMode",
217 "ThreeWireMode"
218};
219
220/* SPI serial clock phase */
221
222const char *acpi_gbl_cph_decode[] = {
223 "ClockPhaseFirst",
224 "ClockPhaseSecond"
225};
226
227/* SPI serial bus clock polarity */
228
229const char *acpi_gbl_cpo_decode[] = {
230 "ClockPolarityLow",
231 "ClockPolarityHigh"
232};
233
234/* SPI serial bus device polarity */
235
236const char *acpi_gbl_dp_decode[] = {
237 "PolarityLow",
238 "PolarityHigh"
239};
240
241/* UART serial bus endian */
242
243const char *acpi_gbl_ed_decode[] = {
244 "LittleEndian",
245 "BigEndian"
246};
247
248/* UART serial bus bits per byte */
249
250const char *acpi_gbl_bpb_decode[] = {
251 "DataBitsFive",
252 "DataBitsSix",
253 "DataBitsSeven",
254 "DataBitsEight",
255 "DataBitsNine",
256 "/* UNKNOWN Bits per byte */",
257 "/* UNKNOWN Bits per byte */",
258 "/* UNKNOWN Bits per byte */"
259};
260
261/* UART serial bus stop bits */
262
263const char *acpi_gbl_sb_decode[] = {
264 "StopBitsNone",
265 "StopBitsOne",
266 "StopBitsOnePlusHalf",
267 "StopBitsTwo"
268};
269
270/* UART serial bus flow control */
271
272const char *acpi_gbl_fc_decode[] = {
273 "FlowControlNone",
274 "FlowControlHardware",
275 "FlowControlXON",
276 "/* UNKNOWN flow control keyword */"
277};
278
279/* UART serial bus parity type */
280
281const char *acpi_gbl_pt_decode[] = {
282 "ParityTypeNone",
283 "ParityTypeEven",
284 "ParityTypeOdd",
285 "ParityTypeMark",
286 "ParityTypeSpace",
287 "/* UNKNOWN parity keyword */",
288 "/* UNKNOWN parity keyword */",
289 "/* UNKNOWN parity keyword */"
290};
291
Bob Mooredefba1d2005-12-16 17:05:00 -0500292#endif
293
Bob Moore96db2552005-11-02 00:00:00 -0500294/*
295 * Base sizes of the raw AML resource descriptors, indexed by resource type.
296 * Zero indicates a reserved (and therefore invalid) resource type.
297 */
298const u8 acpi_gbl_resource_aml_sizes[] = {
299 /* Small descriptors */
300
301 0,
302 0,
303 0,
304 0,
305 ACPI_AML_SIZE_SMALL(struct aml_resource_irq),
306 ACPI_AML_SIZE_SMALL(struct aml_resource_dma),
307 ACPI_AML_SIZE_SMALL(struct aml_resource_start_dependent),
308 ACPI_AML_SIZE_SMALL(struct aml_resource_end_dependent),
309 ACPI_AML_SIZE_SMALL(struct aml_resource_io),
310 ACPI_AML_SIZE_SMALL(struct aml_resource_fixed_io),
Lin Minge0fe0a82011-11-16 14:38:13 +0800311 ACPI_AML_SIZE_SMALL(struct aml_resource_fixed_dma),
Bob Moore96db2552005-11-02 00:00:00 -0500312 0,
313 0,
314 0,
315 ACPI_AML_SIZE_SMALL(struct aml_resource_vendor_small),
316 ACPI_AML_SIZE_SMALL(struct aml_resource_end_tag),
317
318 /* Large descriptors */
319
320 0,
321 ACPI_AML_SIZE_LARGE(struct aml_resource_memory24),
322 ACPI_AML_SIZE_LARGE(struct aml_resource_generic_register),
323 0,
324 ACPI_AML_SIZE_LARGE(struct aml_resource_vendor_large),
325 ACPI_AML_SIZE_LARGE(struct aml_resource_memory32),
326 ACPI_AML_SIZE_LARGE(struct aml_resource_fixed_memory32),
327 ACPI_AML_SIZE_LARGE(struct aml_resource_address32),
328 ACPI_AML_SIZE_LARGE(struct aml_resource_address16),
329 ACPI_AML_SIZE_LARGE(struct aml_resource_extended_irq),
330 ACPI_AML_SIZE_LARGE(struct aml_resource_address64),
Lin Minge0fe0a82011-11-16 14:38:13 +0800331 ACPI_AML_SIZE_LARGE(struct aml_resource_extended_address64),
332 ACPI_AML_SIZE_LARGE(struct aml_resource_gpio),
333 0,
334 ACPI_AML_SIZE_LARGE(struct aml_resource_common_serialbus),
335};
336
337const u8 acpi_gbl_resource_aml_serial_bus_sizes[] = {
338 0,
339 ACPI_AML_SIZE_LARGE(struct aml_resource_i2c_serialbus),
340 ACPI_AML_SIZE_LARGE(struct aml_resource_spi_serialbus),
341 ACPI_AML_SIZE_LARGE(struct aml_resource_uart_serialbus),
Bob Moore96db2552005-11-02 00:00:00 -0500342};
343
344/*
345 * Resource types, used to validate the resource length field.
346 * The length of fixed-length types must match exactly, variable
347 * lengths must meet the minimum required length, etc.
348 * Zero indicates a reserved (and therefore invalid) resource type.
349 */
350static const u8 acpi_gbl_resource_types[] = {
351 /* Small descriptors */
352
353 0,
354 0,
355 0,
356 0,
Lin Minge0fe0a82011-11-16 14:38:13 +0800357 ACPI_SMALL_VARIABLE_LENGTH, /* 04 IRQ */
358 ACPI_FIXED_LENGTH, /* 05 DMA */
359 ACPI_SMALL_VARIABLE_LENGTH, /* 06 start_dependent_functions */
360 ACPI_FIXED_LENGTH, /* 07 end_dependent_functions */
361 ACPI_FIXED_LENGTH, /* 08 IO */
Bob Mooreba494be2012-07-12 09:40:10 +0800362 ACPI_FIXED_LENGTH, /* 09 fixed_IO */
363 ACPI_FIXED_LENGTH, /* 0A fixed_DMA */
Bob Moore96db2552005-11-02 00:00:00 -0500364 0,
365 0,
366 0,
Bob Mooreba494be2012-07-12 09:40:10 +0800367 ACPI_VARIABLE_LENGTH, /* 0E vendor_short */
368 ACPI_FIXED_LENGTH, /* 0F end_tag */
Bob Moore96db2552005-11-02 00:00:00 -0500369
370 /* Large descriptors */
371
372 0,
Lin Minge0fe0a82011-11-16 14:38:13 +0800373 ACPI_FIXED_LENGTH, /* 01 Memory24 */
374 ACPI_FIXED_LENGTH, /* 02 generic_register */
Bob Moore96db2552005-11-02 00:00:00 -0500375 0,
Lin Minge0fe0a82011-11-16 14:38:13 +0800376 ACPI_VARIABLE_LENGTH, /* 04 vendor_long */
377 ACPI_FIXED_LENGTH, /* 05 Memory32 */
378 ACPI_FIXED_LENGTH, /* 06 memory32_fixed */
379 ACPI_VARIABLE_LENGTH, /* 07 Dword* address */
380 ACPI_VARIABLE_LENGTH, /* 08 Word* address */
Bob Mooreba494be2012-07-12 09:40:10 +0800381 ACPI_VARIABLE_LENGTH, /* 09 extended_IRQ */
382 ACPI_VARIABLE_LENGTH, /* 0A Qword* address */
383 ACPI_FIXED_LENGTH, /* 0B Extended* address */
384 ACPI_VARIABLE_LENGTH, /* 0C Gpio* */
Lin Minge0fe0a82011-11-16 14:38:13 +0800385 0,
Bob Mooreba494be2012-07-12 09:40:10 +0800386 ACPI_VARIABLE_LENGTH /* 0E *serial_bus */
Bob Moore96db2552005-11-02 00:00:00 -0500387};
388
389/*******************************************************************************
390 *
Bob Moore616861242006-03-17 16:44:00 -0500391 * FUNCTION: acpi_ut_walk_aml_resources
392 *
Bob Moore886308e2012-12-19 05:38:07 +0000393 * PARAMETERS: walk_state - Current walk info
394 * PARAMETERS: aml - Pointer to the raw AML resource template
395 * aml_length - Length of the entire template
396 * user_function - Called once for each descriptor found. If
397 * NULL, a pointer to the end_tag is returned
398 * context - Passed to user_function
Bob Moore616861242006-03-17 16:44:00 -0500399 *
400 * RETURN: Status
401 *
402 * DESCRIPTION: Walk a raw AML resource list(buffer). User function called
403 * once for each resource found.
404 *
405 ******************************************************************************/
406
407acpi_status
Bob Moore886308e2012-12-19 05:38:07 +0000408acpi_ut_walk_aml_resources(struct acpi_walk_state *walk_state,
409 u8 *aml,
Bob Moore616861242006-03-17 16:44:00 -0500410 acpi_size aml_length,
Bob Moore793c2382006-03-31 00:00:00 -0500411 acpi_walk_aml_callback user_function, void **context)
Bob Moore616861242006-03-17 16:44:00 -0500412{
413 acpi_status status;
414 u8 *end_aml;
415 u8 resource_index;
416 u32 length;
417 u32 offset = 0;
Lin Minge0fe0a82011-11-16 14:38:13 +0800418 u8 end_tag[2] = { 0x79, 0x00 };
Bob Moore616861242006-03-17 16:44:00 -0500419
Bob Mooreb229cf92006-04-21 17:15:00 -0400420 ACPI_FUNCTION_TRACE(ut_walk_aml_resources);
Bob Moore616861242006-03-17 16:44:00 -0500421
422 /* The absolute minimum resource template is one end_tag descriptor */
423
424 if (aml_length < sizeof(struct aml_resource_end_tag)) {
425 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
426 }
427
428 /* Point to the end of the resource template buffer */
429
430 end_aml = aml + aml_length;
431
432 /* Walk the byte list, abort on any invalid descriptor type or length */
433
434 while (aml < end_aml) {
435
436 /* Validate the Resource Type and Resource Length */
437
Bob Moore886308e2012-12-19 05:38:07 +0000438 status =
439 acpi_ut_validate_resource(walk_state, aml, &resource_index);
Bob Moore616861242006-03-17 16:44:00 -0500440 if (ACPI_FAILURE(status)) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800441 /*
442 * Exit on failure. Cannot continue because the descriptor length
443 * may be bogus also.
444 */
Bob Moore616861242006-03-17 16:44:00 -0500445 return_ACPI_STATUS(status);
446 }
447
448 /* Get the length of this descriptor */
449
450 length = acpi_ut_get_descriptor_length(aml);
451
452 /* Invoke the user function */
453
454 if (user_function) {
455 status =
456 user_function(aml, length, offset, resource_index,
457 context);
458 if (ACPI_FAILURE(status)) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800459 return_ACPI_STATUS(status);
Bob Moore616861242006-03-17 16:44:00 -0500460 }
461 }
462
463 /* An end_tag descriptor terminates this resource template */
464
465 if (acpi_ut_get_resource_type(aml) ==
466 ACPI_RESOURCE_NAME_END_TAG) {
467 /*
468 * There must be at least one more byte in the buffer for
469 * the 2nd byte of the end_tag
470 */
471 if ((aml + 1) >= end_aml) {
472 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
473 }
474
475 /* Return the pointer to the end_tag if requested */
476
477 if (!user_function) {
Bob Moore793c2382006-03-31 00:00:00 -0500478 *context = aml;
Bob Moore616861242006-03-17 16:44:00 -0500479 }
480
481 /* Normal exit */
482
483 return_ACPI_STATUS(AE_OK);
484 }
485
486 aml += length;
487 offset += length;
488 }
489
490 /* Did not find an end_tag descriptor */
491
Lin Minge0fe0a82011-11-16 14:38:13 +0800492 if (user_function) {
493
494 /* Insert an end_tag anyway. acpi_rs_get_list_length always leaves room */
495
Bob Moore886308e2012-12-19 05:38:07 +0000496 (void)acpi_ut_validate_resource(walk_state, end_tag,
497 &resource_index);
Lin Minge0fe0a82011-11-16 14:38:13 +0800498 status =
499 user_function(end_tag, 2, offset, resource_index, context);
500 if (ACPI_FAILURE(status)) {
501 return_ACPI_STATUS(status);
502 }
503 }
504
505 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Bob Moore616861242006-03-17 16:44:00 -0500506}
507
508/*******************************************************************************
509 *
Bob Moore96db2552005-11-02 00:00:00 -0500510 * FUNCTION: acpi_ut_validate_resource
511 *
Bob Moore886308e2012-12-19 05:38:07 +0000512 * PARAMETERS: walk_state - Current walk info
513 * aml - Pointer to the raw AML resource descriptor
514 * return_index - Where the resource index is returned. NULL
515 * if the index is not required.
Bob Moore96db2552005-11-02 00:00:00 -0500516 *
517 * RETURN: Status, and optionally the Index into the global resource tables
518 *
519 * DESCRIPTION: Validate an AML resource descriptor by checking the Resource
520 * Type and Resource Length. Returns an index into the global
521 * resource information/dispatch tables for later use.
522 *
523 ******************************************************************************/
524
Bob Moore886308e2012-12-19 05:38:07 +0000525acpi_status
526acpi_ut_validate_resource(struct acpi_walk_state *walk_state,
527 void *aml, u8 *return_index)
Bob Moore96db2552005-11-02 00:00:00 -0500528{
Lin Minge0fe0a82011-11-16 14:38:13 +0800529 union aml_resource *aml_resource;
Bob Moore96db2552005-11-02 00:00:00 -0500530 u8 resource_type;
531 u8 resource_index;
532 acpi_rs_length resource_length;
533 acpi_rs_length minimum_resource_length;
534
535 ACPI_FUNCTION_ENTRY();
536
537 /*
538 * 1) Validate the resource_type field (Byte 0)
539 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500540 resource_type = ACPI_GET8(aml);
Bob Moore96db2552005-11-02 00:00:00 -0500541
542 /*
543 * Byte 0 contains the descriptor name (Resource Type)
544 * Examine the large/small bit in the resource header
545 */
546 if (resource_type & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400547
Bob Moore96db2552005-11-02 00:00:00 -0500548 /* Verify the large resource type (name) against the max */
549
550 if (resource_type > ACPI_RESOURCE_NAME_LARGE_MAX) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800551 goto invalid_resource;
Bob Moore96db2552005-11-02 00:00:00 -0500552 }
553
554 /*
555 * Large Resource Type -- bits 6:0 contain the name
556 * Translate range 0x80-0x8B to index range 0x10-0x1B
557 */
558 resource_index = (u8) (resource_type - 0x70);
559 } else {
560 /*
561 * Small Resource Type -- bits 6:3 contain the name
562 * Shift range to index range 0x00-0x0F
563 */
564 resource_index = (u8)
565 ((resource_type & ACPI_RESOURCE_NAME_SMALL_MASK) >> 3);
566 }
567
Lin Minge0fe0a82011-11-16 14:38:13 +0800568 /*
569 * Check validity of the resource type, via acpi_gbl_resource_types. Zero
570 * indicates an invalid resource.
571 */
Bob Moore96db2552005-11-02 00:00:00 -0500572 if (!acpi_gbl_resource_types[resource_index]) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800573 goto invalid_resource;
Bob Moore96db2552005-11-02 00:00:00 -0500574 }
575
576 /*
Lin Minge0fe0a82011-11-16 14:38:13 +0800577 * Validate the resource_length field. This ensures that the length
578 * is at least reasonable, and guarantees that it is non-zero.
Bob Moore96db2552005-11-02 00:00:00 -0500579 */
580 resource_length = acpi_ut_get_resource_length(aml);
581 minimum_resource_length = acpi_gbl_resource_aml_sizes[resource_index];
582
583 /* Validate based upon the type of resource - fixed length or variable */
584
585 switch (acpi_gbl_resource_types[resource_index]) {
586 case ACPI_FIXED_LENGTH:
587
588 /* Fixed length resource, length must match exactly */
589
590 if (resource_length != minimum_resource_length) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800591 goto bad_resource_length;
Bob Moore96db2552005-11-02 00:00:00 -0500592 }
593 break;
594
595 case ACPI_VARIABLE_LENGTH:
596
597 /* Variable length resource, length must be at least the minimum */
598
599 if (resource_length < minimum_resource_length) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800600 goto bad_resource_length;
Bob Moore96db2552005-11-02 00:00:00 -0500601 }
602 break;
603
604 case ACPI_SMALL_VARIABLE_LENGTH:
605
606 /* Small variable length resource, length can be (Min) or (Min-1) */
607
608 if ((resource_length > minimum_resource_length) ||
609 (resource_length < (minimum_resource_length - 1))) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800610 goto bad_resource_length;
Bob Moore96db2552005-11-02 00:00:00 -0500611 }
612 break;
613
614 default:
615
616 /* Shouldn't happen (because of validation earlier), but be sure */
617
Lin Minge0fe0a82011-11-16 14:38:13 +0800618 goto invalid_resource;
619 }
620
621 aml_resource = ACPI_CAST_PTR(union aml_resource, aml);
622 if (resource_type == ACPI_RESOURCE_NAME_SERIAL_BUS) {
623
624 /* Validate the bus_type field */
625
626 if ((aml_resource->common_serial_bus.type == 0) ||
627 (aml_resource->common_serial_bus.type >
628 AML_RESOURCE_MAX_SERIALBUSTYPE)) {
Bob Moore886308e2012-12-19 05:38:07 +0000629 if (walk_state) {
630 ACPI_ERROR((AE_INFO,
631 "Invalid/unsupported SerialBus resource descriptor: BusType 0x%2.2X",
632 aml_resource->common_serial_bus.
633 type));
634 }
Lin Minge0fe0a82011-11-16 14:38:13 +0800635 return (AE_AML_INVALID_RESOURCE_TYPE);
636 }
Bob Moore96db2552005-11-02 00:00:00 -0500637 }
638
639 /* Optionally return the resource table index */
640
641 if (return_index) {
642 *return_index = resource_index;
643 }
644
645 return (AE_OK);
Lin Minge0fe0a82011-11-16 14:38:13 +0800646
Lv Zheng10622bf2013-10-29 09:30:02 +0800647invalid_resource:
Lin Minge0fe0a82011-11-16 14:38:13 +0800648
Bob Moore886308e2012-12-19 05:38:07 +0000649 if (walk_state) {
650 ACPI_ERROR((AE_INFO,
651 "Invalid/unsupported resource descriptor: Type 0x%2.2X",
652 resource_type));
653 }
Lin Minge0fe0a82011-11-16 14:38:13 +0800654 return (AE_AML_INVALID_RESOURCE_TYPE);
655
Lv Zheng10622bf2013-10-29 09:30:02 +0800656bad_resource_length:
Lin Minge0fe0a82011-11-16 14:38:13 +0800657
Bob Moore886308e2012-12-19 05:38:07 +0000658 if (walk_state) {
659 ACPI_ERROR((AE_INFO,
660 "Invalid resource descriptor length: Type "
661 "0x%2.2X, Length 0x%4.4X, MinLength 0x%4.4X",
662 resource_type, resource_length,
663 minimum_resource_length));
664 }
Lin Minge0fe0a82011-11-16 14:38:13 +0800665 return (AE_AML_BAD_RESOURCE_LENGTH);
Bob Moore96db2552005-11-02 00:00:00 -0500666}
667
668/*******************************************************************************
669 *
670 * FUNCTION: acpi_ut_get_resource_type
671 *
Bob Mooreba494be2012-07-12 09:40:10 +0800672 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
Bob Moore96db2552005-11-02 00:00:00 -0500673 *
674 * RETURN: The Resource Type with no extraneous bits (except the
675 * Large/Small descriptor bit -- this is left alone)
676 *
677 * DESCRIPTION: Extract the Resource Type/Name from the first byte of
678 * a resource descriptor.
679 *
680 ******************************************************************************/
681
682u8 acpi_ut_get_resource_type(void *aml)
683{
684 ACPI_FUNCTION_ENTRY();
685
686 /*
687 * Byte 0 contains the descriptor name (Resource Type)
688 * Examine the large/small bit in the resource header
689 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500690 if (ACPI_GET8(aml) & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400691
Bob Moore96db2552005-11-02 00:00:00 -0500692 /* Large Resource Type -- bits 6:0 contain the name */
693
Bob Moorec51a4de2005-11-17 13:07:00 -0500694 return (ACPI_GET8(aml));
Bob Moore96db2552005-11-02 00:00:00 -0500695 } else {
696 /* Small Resource Type -- bits 6:3 contain the name */
697
Bob Moorec51a4de2005-11-17 13:07:00 -0500698 return ((u8) (ACPI_GET8(aml) & ACPI_RESOURCE_NAME_SMALL_MASK));
Bob Moore96db2552005-11-02 00:00:00 -0500699 }
700}
701
702/*******************************************************************************
703 *
704 * FUNCTION: acpi_ut_get_resource_length
705 *
Bob Mooreba494be2012-07-12 09:40:10 +0800706 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
Bob Moore96db2552005-11-02 00:00:00 -0500707 *
708 * RETURN: Byte Length
709 *
710 * DESCRIPTION: Get the "Resource Length" of a raw AML descriptor. By
711 * definition, this does not include the size of the descriptor
712 * header or the length field itself.
713 *
714 ******************************************************************************/
715
716u16 acpi_ut_get_resource_length(void *aml)
717{
718 acpi_rs_length resource_length;
719
720 ACPI_FUNCTION_ENTRY();
721
722 /*
723 * Byte 0 contains the descriptor name (Resource Type)
724 * Examine the large/small bit in the resource header
725 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500726 if (ACPI_GET8(aml) & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400727
Bob Moore96db2552005-11-02 00:00:00 -0500728 /* Large Resource type -- bytes 1-2 contain the 16-bit length */
729
Bob Moorec51a4de2005-11-17 13:07:00 -0500730 ACPI_MOVE_16_TO_16(&resource_length, ACPI_ADD_PTR(u8, aml, 1));
Bob Moore96db2552005-11-02 00:00:00 -0500731
732 } else {
733 /* Small Resource type -- bits 2:0 of byte 0 contain the length */
734
Bob Moorec51a4de2005-11-17 13:07:00 -0500735 resource_length = (u16) (ACPI_GET8(aml) &
Bob Moore96db2552005-11-02 00:00:00 -0500736 ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK);
737 }
738
739 return (resource_length);
740}
741
742/*******************************************************************************
743 *
744 * FUNCTION: acpi_ut_get_resource_header_length
745 *
Bob Mooreba494be2012-07-12 09:40:10 +0800746 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
Bob Moore96db2552005-11-02 00:00:00 -0500747 *
748 * RETURN: Length of the AML header (depends on large/small descriptor)
749 *
750 * DESCRIPTION: Get the length of the header for this resource.
751 *
752 ******************************************************************************/
753
754u8 acpi_ut_get_resource_header_length(void *aml)
755{
756 ACPI_FUNCTION_ENTRY();
757
758 /* Examine the large/small bit in the resource header */
759
Bob Moorec51a4de2005-11-17 13:07:00 -0500760 if (ACPI_GET8(aml) & ACPI_RESOURCE_NAME_LARGE) {
Bob Moore96db2552005-11-02 00:00:00 -0500761 return (sizeof(struct aml_resource_large_header));
762 } else {
763 return (sizeof(struct aml_resource_small_header));
764 }
765}
766
767/*******************************************************************************
768 *
769 * FUNCTION: acpi_ut_get_descriptor_length
770 *
Bob Mooreba494be2012-07-12 09:40:10 +0800771 * PARAMETERS: aml - Pointer to the raw AML resource descriptor
Bob Moore96db2552005-11-02 00:00:00 -0500772 *
773 * RETURN: Byte length
774 *
775 * DESCRIPTION: Get the total byte length of a raw AML descriptor, including the
776 * length of the descriptor header and the length field itself.
777 * Used to walk descriptor lists.
778 *
779 ******************************************************************************/
780
781u32 acpi_ut_get_descriptor_length(void *aml)
782{
783 ACPI_FUNCTION_ENTRY();
784
785 /*
786 * Get the Resource Length (does not include header length) and add
787 * the header length (depends on if this is a small or large resource)
788 */
789 return (acpi_ut_get_resource_length(aml) +
790 acpi_ut_get_resource_header_length(aml));
791}
792
793/*******************************************************************************
794 *
795 * FUNCTION: acpi_ut_get_resource_end_tag
796 *
797 * PARAMETERS: obj_desc - The resource template buffer object
Bob Moorec51a4de2005-11-17 13:07:00 -0500798 * end_tag - Where the pointer to the end_tag is returned
Bob Moore96db2552005-11-02 00:00:00 -0500799 *
Bob Moorec51a4de2005-11-17 13:07:00 -0500800 * RETURN: Status, pointer to the end tag
Bob Moore96db2552005-11-02 00:00:00 -0500801 *
802 * DESCRIPTION: Find the end_tag resource descriptor in an AML resource template
Bob Mooreb8e4d892006-01-27 16:43:00 -0500803 * Note: allows a buffer length of zero.
Bob Moore96db2552005-11-02 00:00:00 -0500804 *
805 ******************************************************************************/
806
807acpi_status
Lv Zheng3e8214e2012-12-19 05:37:15 +0000808acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc, u8 **end_tag)
Bob Moore96db2552005-11-02 00:00:00 -0500809{
810 acpi_status status;
Bob Moore96db2552005-11-02 00:00:00 -0500811
Bob Mooreb229cf92006-04-21 17:15:00 -0400812 ACPI_FUNCTION_TRACE(ut_get_resource_end_tag);
Bob Moore96db2552005-11-02 00:00:00 -0500813
Bob Mooreb8e4d892006-01-27 16:43:00 -0500814 /* Allow a buffer length of zero */
815
816 if (!obj_desc->buffer.length) {
Bob Moore616861242006-03-17 16:44:00 -0500817 *end_tag = obj_desc->buffer.pointer;
Bob Mooreb8e4d892006-01-27 16:43:00 -0500818 return_ACPI_STATUS(AE_OK);
819 }
820
Bob Moore616861242006-03-17 16:44:00 -0500821 /* Validate the template and get a pointer to the end_tag */
Bob Moore96db2552005-11-02 00:00:00 -0500822
Bob Moore886308e2012-12-19 05:38:07 +0000823 status = acpi_ut_walk_aml_resources(NULL, obj_desc->buffer.pointer,
Bob Moore616861242006-03-17 16:44:00 -0500824 obj_desc->buffer.length, NULL,
Bob Moore793c2382006-03-31 00:00:00 -0500825 (void **)end_tag);
Bob Moore52fc0b02006-10-02 00:00:00 -0400826
Bob Moore616861242006-03-17 16:44:00 -0500827 return_ACPI_STATUS(status);
Bob Moore96db2552005-11-02 00:00:00 -0500828}