blob: b60c9cf82862f9e94dfb254b6a30b003e2dd5426 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: rscalc - Calculate stream and list lengths
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"
47#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_RESOURCES
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("rscalc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moorebda663d2005-09-16 16:51:15 -040052/* Local prototypes */
Robert Moorebda663d2005-09-16 16:51:15 -040053static u8 acpi_rs_count_set_bits(u16 bit_field);
54
Bob Moore08978312005-10-21 00:00:00 -040055static acpi_rs_length
Robert Moorebda663d2005-09-16 16:51:15 -040056acpi_rs_struct_option_length(struct acpi_resource_source *resource_source);
57
58static u32
59acpi_rs_stream_option_length(u32 resource_length, u32 minimum_total_length);
60
61/*******************************************************************************
62 *
63 * FUNCTION: acpi_rs_count_set_bits
64 *
65 * PARAMETERS: bit_field - Field in which to count bits
66 *
67 * RETURN: Number of bits set within the field
68 *
69 * DESCRIPTION: Count the number of bits set in a resource field. Used for
70 * (Short descriptor) interrupt and DMA lists.
71 *
72 ******************************************************************************/
73
74static u8 acpi_rs_count_set_bits(u16 bit_field)
75{
Bob Moore67a119f2008-06-10 13:42:13 +080076 u8 bits_set;
Robert Moorebda663d2005-09-16 16:51:15 -040077
78 ACPI_FUNCTION_ENTRY();
79
80 for (bits_set = 0; bit_field; bits_set++) {
Bob Moore52fc0b02006-10-02 00:00:00 -040081
Robert Moorebda663d2005-09-16 16:51:15 -040082 /* Zero the least significant bit that is set */
83
Bob Moore1d18c052008-04-10 19:06:40 +040084 bit_field &= (u16) (bit_field - 1);
Robert Moorebda663d2005-09-16 16:51:15 -040085 }
86
Lv Zheng9c0d7932012-12-19 05:37:21 +000087 return (bits_set);
Robert Moorebda663d2005-09-16 16:51:15 -040088}
89
90/*******************************************************************************
91 *
Robert Moorebda663d2005-09-16 16:51:15 -040092 * FUNCTION: acpi_rs_struct_option_length
93 *
94 * PARAMETERS: resource_source - Pointer to optional descriptor field
95 *
96 * RETURN: Status
97 *
98 * DESCRIPTION: Common code to handle optional resource_source_index and
99 * resource_source fields in some Large descriptors. Used during
100 * list-to-stream conversion
101 *
102 ******************************************************************************/
103
Bob Moore08978312005-10-21 00:00:00 -0400104static acpi_rs_length
Robert Moorebda663d2005-09-16 16:51:15 -0400105acpi_rs_struct_option_length(struct acpi_resource_source *resource_source)
106{
107 ACPI_FUNCTION_ENTRY();
108
109 /*
110 * If the resource_source string is valid, return the size of the string
111 * (string_length includes the NULL terminator) plus the size of the
112 * resource_source_index (1).
113 */
114 if (resource_source->string_ptr) {
Bob Moore08978312005-10-21 00:00:00 -0400115 return ((acpi_rs_length) (resource_source->string_length + 1));
Robert Moorebda663d2005-09-16 16:51:15 -0400116 }
117
118 return (0);
119}
120
121/*******************************************************************************
122 *
123 * FUNCTION: acpi_rs_stream_option_length
124 *
125 * PARAMETERS: resource_length - Length from the resource header
126 * minimum_total_length - Minimum length of this resource, before
127 * any optional fields. Includes header size
128 *
129 * RETURN: Length of optional string (0 if no string present)
130 *
131 * DESCRIPTION: Common code to handle optional resource_source_index and
132 * resource_source fields in some Large descriptors. Used during
133 * stream-to-list conversion
134 *
135 ******************************************************************************/
136
137static u32
Bob Moore50eca3e2005-09-30 19:03:00 -0400138acpi_rs_stream_option_length(u32 resource_length,
139 u32 minimum_aml_resource_length)
Robert Moorebda663d2005-09-16 16:51:15 -0400140{
141 u32 string_length = 0;
Robert Moorebda663d2005-09-16 16:51:15 -0400142
143 ACPI_FUNCTION_ENTRY();
144
145 /*
146 * The resource_source_index and resource_source are optional elements of some
147 * Large-type resource descriptors.
148 */
149
Robert Moorebda663d2005-09-16 16:51:15 -0400150 /*
151 * If the length of the actual resource descriptor is greater than the ACPI
152 * spec-defined minimum length, it means that a resource_source_index exists
153 * and is followed by a (required) null terminated string. The string length
154 * (including the null terminator) is the resource length minus the minimum
155 * length, minus one byte for the resource_source_index itself.
156 */
Bob Moore50eca3e2005-09-30 19:03:00 -0400157 if (resource_length > minimum_aml_resource_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400158
Robert Moorebda663d2005-09-16 16:51:15 -0400159 /* Compute the length of the optional string */
160
Bob Moore50eca3e2005-09-30 19:03:00 -0400161 string_length =
162 resource_length - minimum_aml_resource_length - 1;
Robert Moorebda663d2005-09-16 16:51:15 -0400163 }
164
Bob Mooreea936b72006-02-17 00:00:00 -0500165 /*
166 * Round the length up to a multiple of the native word in order to
167 * guarantee that the entire resource descriptor is native word aligned
168 */
169 return ((u32) ACPI_ROUND_UP_TO_NATIVE_WORD(string_length));
Robert Moorebda663d2005-09-16 16:51:15 -0400170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*******************************************************************************
173 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400174 * FUNCTION: acpi_rs_get_aml_length
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
Bob Mooreba494be2012-07-12 09:40:10 +0800176 * PARAMETERS: resource - Pointer to the resource linked list
Lv Zheng9a0a3592013-11-21 12:17:34 +0800177 * resource_list_size - Size of the resource linked list
Robert Moorebda663d2005-09-16 16:51:15 -0400178 * size_needed - Where the required size is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 *
180 * RETURN: Status
181 *
Robert Moorebda663d2005-09-16 16:51:15 -0400182 * DESCRIPTION: Takes a linked list of internal resource descriptors and
183 * calculates the size buffer needed to hold the corresponding
184 * external resource byte stream.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 *
186 ******************************************************************************/
Robert Moorebda663d2005-09-16 16:51:15 -0400187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188acpi_status
Lv Zheng9a0a3592013-11-21 12:17:34 +0800189acpi_rs_get_aml_length(struct acpi_resource *resource,
190 acpi_size resource_list_size, acpi_size * size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Bob Moore50eca3e2005-09-30 19:03:00 -0400192 acpi_size aml_size_needed = 0;
Lv Zheng9a0a3592013-11-21 12:17:34 +0800193 struct acpi_resource *resource_end;
Bob Moore08978312005-10-21 00:00:00 -0400194 acpi_rs_length total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Bob Mooreb229cf92006-04-21 17:15:00 -0400196 ACPI_FUNCTION_TRACE(rs_get_aml_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Robert Moorebda663d2005-09-16 16:51:15 -0400198 /* Traverse entire list of internal resource descriptors */
Robert Moore44f6c012005-04-18 22:49:35 -0400199
Lv Zheng9a0a3592013-11-21 12:17:34 +0800200 resource_end =
201 ACPI_ADD_PTR(struct acpi_resource, resource, resource_list_size);
202 while (resource < resource_end) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400203
Robert Moorebda663d2005-09-16 16:51:15 -0400204 /* Validate the descriptor type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Bob Moore50eca3e2005-09-30 19:03:00 -0400206 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Robert Moorebda663d2005-09-16 16:51:15 -0400207 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Bob Moorec13085e2013-03-08 09:19:38 +0000210 /* Sanity check the length. It must not be zero, or we loop forever */
211
212 if (!resource->length) {
213 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
214 }
215
Robert Moorebda663d2005-09-16 16:51:15 -0400216 /* Get the base size of the (external stream) resource descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Bob Moore08978312005-10-21 00:00:00 -0400218 total_size = acpi_gbl_aml_resource_sizes[resource->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Robert Moorebda663d2005-09-16 16:51:15 -0400220 /*
221 * Augment the base size for descriptors with optional and/or
222 * variable-length fields
223 */
224 switch (resource->type) {
Bob Moore1d5b2852008-04-10 19:06:43 +0400225 case ACPI_RESOURCE_TYPE_IRQ:
226
Bob Moore66d3ca92008-04-10 19:06:44 +0400227 /* Length can be 3 or 2 */
228
Bob Moore1d5b2852008-04-10 19:06:43 +0400229 if (resource->data.irq.descriptor_length == 2) {
230 total_size--;
231 }
232 break;
233
Bob Moore66d3ca92008-04-10 19:06:44 +0400234 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
235
236 /* Length can be 1 or 0 */
237
238 if (resource->data.irq.descriptor_length == 0) {
239 total_size--;
240 }
241 break;
242
Bob Moore50eca3e2005-09-30 19:03:00 -0400243 case ACPI_RESOURCE_TYPE_VENDOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400245 * Vendor Defined Resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * For a Vendor Specific resource, if the Length is between 1 and 7
247 * it will be created as a Small Resource data type, otherwise it
248 * is a Large Resource data type.
249 */
Bob Moore50eca3e2005-09-30 19:03:00 -0400250 if (resource->data.vendor.byte_length > 7) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400251
Robert Moorebda663d2005-09-16 16:51:15 -0400252 /* Base size of a Large resource descriptor */
253
Bob Moore08978312005-10-21 00:00:00 -0400254 total_size =
Bob Moore50eca3e2005-09-30 19:03:00 -0400255 sizeof(struct aml_resource_large_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Robert Moorebda663d2005-09-16 16:51:15 -0400257
258 /* Add the size of the vendor-specific data */
259
Bob Moore08978312005-10-21 00:00:00 -0400260 total_size = (acpi_rs_length)
261 (total_size + resource->data.vendor.byte_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 break;
263
Bob Moore50eca3e2005-09-30 19:03:00 -0400264 case ACPI_RESOURCE_TYPE_END_TAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400266 * End Tag:
267 * We are done -- return the accumulated total size.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
Bob Moore08978312005-10-21 00:00:00 -0400269 *size_needed = aml_size_needed + total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Robert Moorebda663d2005-09-16 16:51:15 -0400271 /* Normal exit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Robert Moorebda663d2005-09-16 16:51:15 -0400273 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Bob Moore50eca3e2005-09-30 19:03:00 -0400275 case ACPI_RESOURCE_TYPE_ADDRESS16:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400277 * 16-Bit Address Resource:
278 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
Bob Moore08978312005-10-21 00:00:00 -0400280 total_size = (acpi_rs_length)
281 (total_size +
282 acpi_rs_struct_option_length(&resource->data.
283 address16.
284 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286
Bob Moore50eca3e2005-09-30 19:03:00 -0400287 case ACPI_RESOURCE_TYPE_ADDRESS32:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400289 * 32-Bit Address Resource:
290 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
Bob Moore08978312005-10-21 00:00:00 -0400292 total_size = (acpi_rs_length)
293 (total_size +
294 acpi_rs_struct_option_length(&resource->data.
295 address32.
296 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298
Bob Moore50eca3e2005-09-30 19:03:00 -0400299 case ACPI_RESOURCE_TYPE_ADDRESS64:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400301 * 64-Bit Address Resource:
302 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 */
Bob Moore08978312005-10-21 00:00:00 -0400304 total_size = (acpi_rs_length)
305 (total_size +
306 acpi_rs_struct_option_length(&resource->data.
307 address64.
308 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 break;
310
Bob Moore50eca3e2005-09-30 19:03:00 -0400311 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400313 * Extended IRQ Resource:
314 * Add the size of each additional optional interrupt beyond the
315 * required 1 (4 bytes for each u32 interrupt number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
Bob Moore08978312005-10-21 00:00:00 -0400317 total_size = (acpi_rs_length)
318 (total_size +
319 ((resource->data.extended_irq.interrupt_count -
320 1) * 4) +
321 /* Add the size of the optional resource_source info */
322 acpi_rs_struct_option_length(&resource->data.
323 extended_irq.
324 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 break;
326
Lin Minge0fe0a82011-11-16 14:38:13 +0800327 case ACPI_RESOURCE_TYPE_GPIO:
328
329 total_size =
330 (acpi_rs_length) (total_size +
331 (resource->data.gpio.
332 pin_table_length * 2) +
333 resource->data.gpio.
334 resource_source.string_length +
335 resource->data.gpio.
336 vendor_length);
337
338 break;
339
340 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
341
342 total_size =
343 acpi_gbl_aml_resource_serial_bus_sizes[resource->
344 data.
345 common_serial_bus.
346 type];
347
348 total_size = (acpi_rs_length) (total_size +
349 resource->data.
350 i2c_serial_bus.
351 resource_source.
352 string_length +
353 resource->data.
354 i2c_serial_bus.
355 vendor_length);
356
357 break;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000360
Robert Moorebda663d2005-09-16 16:51:15 -0400361 break;
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Robert Moore44f6c012005-04-18 22:49:35 -0400364 /* Update the total */
365
Bob Moore08978312005-10-21 00:00:00 -0400366 aml_size_needed += total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Robert Moore44f6c012005-04-18 22:49:35 -0400368 /* Point to the next object */
369
Bob Moore96db2552005-11-02 00:00:00 -0500370 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500371 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore96db2552005-11-02 00:00:00 -0500372 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
Bob Moore96db2552005-11-02 00:00:00 -0500375 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400376
Bob Moore96db2552005-11-02 00:00:00 -0500377 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/*******************************************************************************
381 *
382 * FUNCTION: acpi_rs_get_list_length
383 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400384 * PARAMETERS: aml_buffer - Pointer to the resource byte stream
385 * aml_buffer_length - Size of aml_buffer
386 * size_needed - Where the size needed is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
388 * RETURN: Status
389 *
Robert Moorebda663d2005-09-16 16:51:15 -0400390 * DESCRIPTION: Takes an external resource byte stream and calculates the size
391 * buffer needed to hold the corresponding internal resource
392 * descriptor linked list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 *
394 ******************************************************************************/
395
396acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400397acpi_rs_get_list_length(u8 * aml_buffer,
398 u32 aml_buffer_length, acpi_size * size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Bob Moore96db2552005-11-02 00:00:00 -0500400 acpi_status status;
401 u8 *end_aml;
Robert Moorebda663d2005-09-16 16:51:15 -0400402 u8 *buffer;
Bob Mooreea936b72006-02-17 00:00:00 -0500403 u32 buffer_size;
Len Brown4be44fc2005-08-05 00:44:28 -0400404 u16 temp16;
Robert Moorebda663d2005-09-16 16:51:15 -0400405 u16 resource_length;
Robert Moorebda663d2005-09-16 16:51:15 -0400406 u32 extra_struct_bytes;
Bob Moore96db2552005-11-02 00:00:00 -0500407 u8 resource_index;
408 u8 minimum_aml_resource_length;
Lin Minge0fe0a82011-11-16 14:38:13 +0800409 union aml_resource *aml_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bob Mooreb229cf92006-04-21 17:15:00 -0400411 ACPI_FUNCTION_TRACE(rs_get_list_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Lin Minge0fe0a82011-11-16 14:38:13 +0800413 *size_needed = ACPI_RS_SIZE_MIN; /* Minimum size is one end_tag */
Bob Moore96db2552005-11-02 00:00:00 -0500414 end_aml = aml_buffer + aml_buffer_length;
Robert Moore44f6c012005-04-18 22:49:35 -0400415
Bob Moore96db2552005-11-02 00:00:00 -0500416 /* Walk the list of AML resource descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Bob Moore96db2552005-11-02 00:00:00 -0500418 while (aml_buffer < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400419
Bob Moore96db2552005-11-02 00:00:00 -0500420 /* Validate the Resource Type and Resource Length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Bob Moore886308e2012-12-19 05:38:07 +0000422 status =
423 acpi_ut_validate_resource(NULL, aml_buffer,
424 &resource_index);
Bob Moore96db2552005-11-02 00:00:00 -0500425 if (ACPI_FAILURE(status)) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800426 /*
427 * Exit on failure. Cannot continue because the descriptor length
428 * may be bogus also.
429 */
Bob Moore96db2552005-11-02 00:00:00 -0500430 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
Lin Minge0fe0a82011-11-16 14:38:13 +0800433 aml_resource = (void *)aml_buffer;
434
Bob Moore96db2552005-11-02 00:00:00 -0500435 /* Get the resource length and base (minimum) AML size */
Robert Moore44f6c012005-04-18 22:49:35 -0400436
Bob Moore08978312005-10-21 00:00:00 -0400437 resource_length = acpi_ut_get_resource_length(aml_buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500438 minimum_aml_resource_length =
439 acpi_gbl_resource_aml_sizes[resource_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Bob Moore96db2552005-11-02 00:00:00 -0500441 /*
442 * Augment the size for descriptors with optional
443 * and/or variable length fields
444 */
Robert Moorebda663d2005-09-16 16:51:15 -0400445 extra_struct_bytes = 0;
Bob Moore96db2552005-11-02 00:00:00 -0500446 buffer =
447 aml_buffer + acpi_ut_get_resource_header_length(aml_buffer);
Robert Moorebda663d2005-09-16 16:51:15 -0400448
Bob Moore96db2552005-11-02 00:00:00 -0500449 switch (acpi_ut_get_resource_type(aml_buffer)) {
450 case ACPI_RESOURCE_NAME_IRQ:
Robert Moorebda663d2005-09-16 16:51:15 -0400451 /*
Bob Moore96db2552005-11-02 00:00:00 -0500452 * IRQ Resource:
453 * Get the number of bits set in the 16-bit IRQ mask
Robert Moorebda663d2005-09-16 16:51:15 -0400454 */
Bob Moore96db2552005-11-02 00:00:00 -0500455 ACPI_MOVE_16_TO_16(&temp16, buffer);
Bob Moorec51a4de2005-11-17 13:07:00 -0500456 extra_struct_bytes = acpi_rs_count_set_bits(temp16);
Bob Moore96db2552005-11-02 00:00:00 -0500457 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400458
Bob Moore96db2552005-11-02 00:00:00 -0500459 case ACPI_RESOURCE_NAME_DMA:
Robert Moorebda663d2005-09-16 16:51:15 -0400460 /*
Bob Moore96db2552005-11-02 00:00:00 -0500461 * DMA Resource:
462 * Get the number of bits set in the 8-bit DMA mask
Robert Moorebda663d2005-09-16 16:51:15 -0400463 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500464 extra_struct_bytes = acpi_rs_count_set_bits(*buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500465 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400466
Bob Moore96db2552005-11-02 00:00:00 -0500467 case ACPI_RESOURCE_NAME_VENDOR_SMALL:
Bob Mooreea936b72006-02-17 00:00:00 -0500468 case ACPI_RESOURCE_NAME_VENDOR_LARGE:
Bob Moore96db2552005-11-02 00:00:00 -0500469 /*
470 * Vendor Resource:
Bob Mooreea936b72006-02-17 00:00:00 -0500471 * Get the number of vendor data bytes
Bob Moore96db2552005-11-02 00:00:00 -0500472 */
Bob Mooreea936b72006-02-17 00:00:00 -0500473 extra_struct_bytes = resource_length;
Feng Tangbee6dc32012-10-31 02:27:15 +0000474
475 /*
476 * There is already one byte included in the minimum
477 * descriptor size. If there are extra struct bytes,
478 * subtract one from the count.
479 */
480 if (extra_struct_bytes) {
481 extra_struct_bytes--;
482 }
Bob Moore96db2552005-11-02 00:00:00 -0500483 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400484
Bob Moore96db2552005-11-02 00:00:00 -0500485 case ACPI_RESOURCE_NAME_END_TAG:
486 /*
Lin Minge0fe0a82011-11-16 14:38:13 +0800487 * End Tag: This is the normal exit
Bob Moore96db2552005-11-02 00:00:00 -0500488 */
Bob Moore96db2552005-11-02 00:00:00 -0500489 return_ACPI_STATUS(AE_OK);
Robert Moorebda663d2005-09-16 16:51:15 -0400490
Bob Moore96db2552005-11-02 00:00:00 -0500491 case ACPI_RESOURCE_NAME_ADDRESS32:
492 case ACPI_RESOURCE_NAME_ADDRESS16:
Bob Mooreea936b72006-02-17 00:00:00 -0500493 case ACPI_RESOURCE_NAME_ADDRESS64:
Bob Moore96db2552005-11-02 00:00:00 -0500494 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500495 * Address Resource:
496 * Add the size of the optional resource_source
Bob Moore96db2552005-11-02 00:00:00 -0500497 */
498 extra_struct_bytes =
499 acpi_rs_stream_option_length(resource_length,
500 minimum_aml_resource_length);
501 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400502
Bob Moore96db2552005-11-02 00:00:00 -0500503 case ACPI_RESOURCE_NAME_EXTENDED_IRQ:
504 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500505 * Extended IRQ Resource:
506 * Using the interrupt_table_length, add 4 bytes for each additional
507 * interrupt. Note: at least one interrupt is required and is
508 * included in the minimum descriptor size (reason for the -1)
Bob Moore96db2552005-11-02 00:00:00 -0500509 */
Bob Mooreea936b72006-02-17 00:00:00 -0500510 extra_struct_bytes = (buffer[1] - 1) * sizeof(u32);
Robert Moorebda663d2005-09-16 16:51:15 -0400511
Bob Mooreea936b72006-02-17 00:00:00 -0500512 /* Add the size of the optional resource_source */
513
514 extra_struct_bytes +=
Bob Moore96db2552005-11-02 00:00:00 -0500515 acpi_rs_stream_option_length(resource_length -
516 extra_struct_bytes,
517 minimum_aml_resource_length);
518 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400519
Lin Minge0fe0a82011-11-16 14:38:13 +0800520 case ACPI_RESOURCE_NAME_GPIO:
521
522 /* Vendor data is optional */
523
524 if (aml_resource->gpio.vendor_length) {
525 extra_struct_bytes +=
526 aml_resource->gpio.vendor_offset -
527 aml_resource->gpio.pin_table_offset +
528 aml_resource->gpio.vendor_length;
529 } else {
530 extra_struct_bytes +=
531 aml_resource->large_header.resource_length +
532 sizeof(struct aml_resource_large_header) -
533 aml_resource->gpio.pin_table_offset;
534 }
535 break;
536
537 case ACPI_RESOURCE_NAME_SERIAL_BUS:
538
539 minimum_aml_resource_length =
540 acpi_gbl_resource_aml_serial_bus_sizes
541 [aml_resource->common_serial_bus.type];
542 extra_struct_bytes +=
543 aml_resource->common_serial_bus.resource_length -
544 minimum_aml_resource_length;
545 break;
546
Bob Moore96db2552005-11-02 00:00:00 -0500547 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000548
Bob Moore96db2552005-11-02 00:00:00 -0500549 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400550 }
551
Bob Mooreea936b72006-02-17 00:00:00 -0500552 /*
553 * Update the required buffer size for the internal descriptor structs
554 *
555 * Important: Round the size up for the appropriate alignment. This
556 * is a requirement on IA64.
557 */
Lin Minge0fe0a82011-11-16 14:38:13 +0800558 if (acpi_ut_get_resource_type(aml_buffer) ==
559 ACPI_RESOURCE_NAME_SERIAL_BUS) {
560 buffer_size =
561 acpi_gbl_resource_struct_serial_bus_sizes
562 [aml_resource->common_serial_bus.type] +
563 extra_struct_bytes;
564 } else {
565 buffer_size =
566 acpi_gbl_resource_struct_sizes[resource_index] +
567 extra_struct_bytes;
568 }
569 buffer_size = (u32)ACPI_ROUND_UP_TO_NATIVE_WORD(buffer_size);
Robert Moorebda663d2005-09-16 16:51:15 -0400570
Bob Mooreea936b72006-02-17 00:00:00 -0500571 *size_needed += buffer_size;
572
573 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
Bob Mooreb229cf92006-04-21 17:15:00 -0400574 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
Bob Mooreea936b72006-02-17 00:00:00 -0500575 acpi_ut_get_resource_type(aml_buffer),
576 acpi_ut_get_descriptor_length(aml_buffer),
577 buffer_size));
Robert Moorebda663d2005-09-16 16:51:15 -0400578
579 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500580 * Point to the next resource within the AML stream using the length
581 * contained in the resource descriptor header
Robert Moorebda663d2005-09-16 16:51:15 -0400582 */
Bob Moore96db2552005-11-02 00:00:00 -0500583 aml_buffer += acpi_ut_get_descriptor_length(aml_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
Bob Moore96db2552005-11-02 00:00:00 -0500586 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400587
Bob Moore96db2552005-11-02 00:00:00 -0500588 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/*******************************************************************************
592 *
593 * FUNCTION: acpi_rs_get_pci_routing_table_length
594 *
595 * PARAMETERS: package_object - Pointer to the package object
596 * buffer_size_needed - u32 pointer of the size buffer
597 * needed to properly return the
598 * parsed data
599 *
600 * RETURN: Status
601 *
602 * DESCRIPTION: Given a package representing a PCI routing table, this
603 * calculates the size of the corresponding linked list of
604 * descriptions.
605 *
606 ******************************************************************************/
607
608acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400609acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
610 acpi_size * buffer_size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Len Brown4be44fc2005-08-05 00:44:28 -0400612 u32 number_of_elements;
613 acpi_size temp_size_needed = 0;
614 union acpi_operand_object **top_object_list;
615 u32 index;
616 union acpi_operand_object *package_element;
617 union acpi_operand_object **sub_object_list;
618 u8 name_found;
619 u32 table_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Bob Mooreb229cf92006-04-21 17:15:00 -0400621 ACPI_FUNCTION_TRACE(rs_get_pci_routing_table_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 number_of_elements = package_object->package.count;
624
625 /*
626 * Calculate the size of the return buffer.
627 * The base size is the number of elements * the sizes of the
Bob Moore73a30902012-10-31 02:26:55 +0000628 * structures. Additional space for the strings is added below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * The minus one is to subtract the size of the u8 Source[1]
630 * member because it is added below.
631 *
632 * But each PRT_ENTRY structure has a pointer to a string and
633 * the size of that string must be found.
634 */
635 top_object_list = package_object->package.elements;
636
637 for (index = 0; index < number_of_elements; index++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400638
Robert Moore44f6c012005-04-18 22:49:35 -0400639 /* Dereference the sub-package */
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 package_element = *top_object_list;
642
Robert Moore53951bd2009-05-02 11:48:37 -0700643 /* We must have a valid Package object */
644
645 if (!package_element ||
646 (package_element->common.type != ACPI_TYPE_PACKAGE)) {
Bob Moore474caff2009-05-21 10:10:16 +0800647 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Robert Moore53951bd2009-05-02 11:48:37 -0700648 }
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /*
651 * The sub_object_list will now point to an array of the
652 * four IRQ elements: Address, Pin, Source and source_index
653 */
654 sub_object_list = package_element->package.elements;
655
Robert Moore44f6c012005-04-18 22:49:35 -0400656 /* Scan the irq_table_elements for the Source Name String */
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 name_found = FALSE;
659
Lv Zhengaa6329c2013-06-08 09:01:01 +0800660 for (table_index = 0;
661 table_index < package_element->package.count
662 && !name_found; table_index++) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500663 if (*sub_object_list && /* Null object allowed */
664 ((ACPI_TYPE_STRING ==
Bob Moore3371c192009-02-18 14:44:03 +0800665 (*sub_object_list)->common.type) ||
Bob Mooreb8e4d892006-01-27 16:43:00 -0500666 ((ACPI_TYPE_LOCAL_REFERENCE ==
Bob Moore3371c192009-02-18 14:44:03 +0800667 (*sub_object_list)->common.type) &&
Bob Moore1044f1f2008-09-27 11:08:41 +0800668 ((*sub_object_list)->reference.class ==
669 ACPI_REFCLASS_NAME)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 name_found = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400671 } else {
Robert Moore44f6c012005-04-18 22:49:35 -0400672 /* Look at the next element */
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 sub_object_list++;
675 }
676 }
677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Robert Moore44f6c012005-04-18 22:49:35 -0400680 /* Was a String type found? */
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (name_found) {
Bob Moore3371c192009-02-18 14:44:03 +0800683 if ((*sub_object_list)->common.type == ACPI_TYPE_STRING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /*
685 * The length String.Length field does not include the
686 * terminating NULL, add 1
687 */
Robert Moore44f6c012005-04-18 22:49:35 -0400688 temp_size_needed += ((acpi_size)
Len Brown4be44fc2005-08-05 00:44:28 -0400689 (*sub_object_list)->string.
690 length + 1);
691 } else {
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000692 temp_size_needed += acpi_ns_get_pathname_length((*sub_object_list)->reference.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Len Brown4be44fc2005-08-05 00:44:28 -0400694 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /*
696 * If no name was found, then this is a NULL, which is
697 * translated as a u32 zero.
698 */
Len Brown4be44fc2005-08-05 00:44:28 -0400699 temp_size_needed += sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
702 /* Round up the size since each element must be aligned */
703
Bob Moore958dd242006-05-12 17:12:00 -0400704 temp_size_needed = ACPI_ROUND_UP_TO_64BIT(temp_size_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Robert Moore44f6c012005-04-18 22:49:35 -0400706 /* Point to the next union acpi_operand_object */
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 top_object_list++;
709 }
710
711 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500712 * Add an extra element to the end of the list, essentially a
Robert Moore44f6c012005-04-18 22:49:35 -0400713 * NULL terminator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 */
Len Brown4be44fc2005-08-05 00:44:28 -0400715 *buffer_size_needed =
716 temp_size_needed + sizeof(struct acpi_pci_routing_table);
717 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}