blob: de12469d1c9c765138920eae7064a1fdf8da4839 [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 Moore77848132012-01-12 13:27:23 +08008 * Copyright (C) 2000 - 2012, 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
Bob Moore67a119f2008-06-10 13:42:13 +080087 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
Robert Moorebda663d2005-09-16 16:51:15 -0400177 * size_needed - Where the required size is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *
179 * RETURN: Status
180 *
Robert Moorebda663d2005-09-16 16:51:15 -0400181 * DESCRIPTION: Takes a linked list of internal resource descriptors and
182 * calculates the size buffer needed to hold the corresponding
183 * external resource byte stream.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *
185 ******************************************************************************/
Robert Moorebda663d2005-09-16 16:51:15 -0400186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400188acpi_rs_get_aml_length(struct acpi_resource * resource, acpi_size * size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Bob Moore50eca3e2005-09-30 19:03:00 -0400190 acpi_size aml_size_needed = 0;
Bob Moore08978312005-10-21 00:00:00 -0400191 acpi_rs_length total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Bob Mooreb229cf92006-04-21 17:15:00 -0400193 ACPI_FUNCTION_TRACE(rs_get_aml_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Robert Moorebda663d2005-09-16 16:51:15 -0400195 /* Traverse entire list of internal resource descriptors */
Robert Moore44f6c012005-04-18 22:49:35 -0400196
Robert Moorebda663d2005-09-16 16:51:15 -0400197 while (resource) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400198
Robert Moorebda663d2005-09-16 16:51:15 -0400199 /* Validate the descriptor type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Bob Moore50eca3e2005-09-30 19:03:00 -0400201 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Robert Moorebda663d2005-09-16 16:51:15 -0400202 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Robert Moorebda663d2005-09-16 16:51:15 -0400205 /* Get the base size of the (external stream) resource descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Bob Moore08978312005-10-21 00:00:00 -0400207 total_size = acpi_gbl_aml_resource_sizes[resource->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Robert Moorebda663d2005-09-16 16:51:15 -0400209 /*
210 * Augment the base size for descriptors with optional and/or
211 * variable-length fields
212 */
213 switch (resource->type) {
Bob Moore1d5b2852008-04-10 19:06:43 +0400214 case ACPI_RESOURCE_TYPE_IRQ:
215
Bob Moore66d3ca92008-04-10 19:06:44 +0400216 /* Length can be 3 or 2 */
217
Bob Moore1d5b2852008-04-10 19:06:43 +0400218 if (resource->data.irq.descriptor_length == 2) {
219 total_size--;
220 }
221 break;
222
Bob Moore66d3ca92008-04-10 19:06:44 +0400223 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
224
225 /* Length can be 1 or 0 */
226
227 if (resource->data.irq.descriptor_length == 0) {
228 total_size--;
229 }
230 break;
231
Bob Moore50eca3e2005-09-30 19:03:00 -0400232 case ACPI_RESOURCE_TYPE_VENDOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400234 * Vendor Defined Resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * For a Vendor Specific resource, if the Length is between 1 and 7
236 * it will be created as a Small Resource data type, otherwise it
237 * is a Large Resource data type.
238 */
Bob Moore50eca3e2005-09-30 19:03:00 -0400239 if (resource->data.vendor.byte_length > 7) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400240
Robert Moorebda663d2005-09-16 16:51:15 -0400241 /* Base size of a Large resource descriptor */
242
Bob Moore08978312005-10-21 00:00:00 -0400243 total_size =
Bob Moore50eca3e2005-09-30 19:03:00 -0400244 sizeof(struct aml_resource_large_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
Robert Moorebda663d2005-09-16 16:51:15 -0400246
247 /* Add the size of the vendor-specific data */
248
Bob Moore08978312005-10-21 00:00:00 -0400249 total_size = (acpi_rs_length)
250 (total_size + resource->data.vendor.byte_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252
Bob Moore50eca3e2005-09-30 19:03:00 -0400253 case ACPI_RESOURCE_TYPE_END_TAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400255 * End Tag:
256 * We are done -- return the accumulated total size.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Bob Moore08978312005-10-21 00:00:00 -0400258 *size_needed = aml_size_needed + total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Robert Moorebda663d2005-09-16 16:51:15 -0400260 /* Normal exit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Robert Moorebda663d2005-09-16 16:51:15 -0400262 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Bob Moore50eca3e2005-09-30 19:03:00 -0400264 case ACPI_RESOURCE_TYPE_ADDRESS16:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400266 * 16-Bit Address Resource:
267 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
Bob Moore08978312005-10-21 00:00:00 -0400269 total_size = (acpi_rs_length)
270 (total_size +
271 acpi_rs_struct_option_length(&resource->data.
272 address16.
273 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275
Bob Moore50eca3e2005-09-30 19:03:00 -0400276 case ACPI_RESOURCE_TYPE_ADDRESS32:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400278 * 32-Bit Address Resource:
279 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
Bob Moore08978312005-10-21 00:00:00 -0400281 total_size = (acpi_rs_length)
282 (total_size +
283 acpi_rs_struct_option_length(&resource->data.
284 address32.
285 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 break;
287
Bob Moore50eca3e2005-09-30 19:03:00 -0400288 case ACPI_RESOURCE_TYPE_ADDRESS64:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400290 * 64-Bit Address Resource:
291 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
Bob Moore08978312005-10-21 00:00:00 -0400293 total_size = (acpi_rs_length)
294 (total_size +
295 acpi_rs_struct_option_length(&resource->data.
296 address64.
297 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
299
Bob Moore50eca3e2005-09-30 19:03:00 -0400300 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400302 * Extended IRQ Resource:
303 * Add the size of each additional optional interrupt beyond the
304 * required 1 (4 bytes for each u32 interrupt number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 */
Bob Moore08978312005-10-21 00:00:00 -0400306 total_size = (acpi_rs_length)
307 (total_size +
308 ((resource->data.extended_irq.interrupt_count -
309 1) * 4) +
310 /* Add the size of the optional resource_source info */
311 acpi_rs_struct_option_length(&resource->data.
312 extended_irq.
313 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
315
Lin Minge0fe0a82011-11-16 14:38:13 +0800316 case ACPI_RESOURCE_TYPE_GPIO:
317
318 total_size =
319 (acpi_rs_length) (total_size +
320 (resource->data.gpio.
321 pin_table_length * 2) +
322 resource->data.gpio.
323 resource_source.string_length +
324 resource->data.gpio.
325 vendor_length);
326
327 break;
328
329 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
330
331 total_size =
332 acpi_gbl_aml_resource_serial_bus_sizes[resource->
333 data.
334 common_serial_bus.
335 type];
336
337 total_size = (acpi_rs_length) (total_size +
338 resource->data.
339 i2c_serial_bus.
340 resource_source.
341 string_length +
342 resource->data.
343 i2c_serial_bus.
344 vendor_length);
345
346 break;
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 default:
Robert Moorebda663d2005-09-16 16:51:15 -0400349 break;
350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Robert Moore44f6c012005-04-18 22:49:35 -0400352 /* Update the total */
353
Bob Moore08978312005-10-21 00:00:00 -0400354 aml_size_needed += total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Robert Moore44f6c012005-04-18 22:49:35 -0400356 /* Point to the next object */
357
Bob Moore96db2552005-11-02 00:00:00 -0500358 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500359 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore96db2552005-11-02 00:00:00 -0500360 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
Bob Moore96db2552005-11-02 00:00:00 -0500363 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400364
Bob Moore96db2552005-11-02 00:00:00 -0500365 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/*******************************************************************************
369 *
370 * FUNCTION: acpi_rs_get_list_length
371 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400372 * PARAMETERS: aml_buffer - Pointer to the resource byte stream
373 * aml_buffer_length - Size of aml_buffer
374 * size_needed - Where the size needed is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
376 * RETURN: Status
377 *
Robert Moorebda663d2005-09-16 16:51:15 -0400378 * DESCRIPTION: Takes an external resource byte stream and calculates the size
379 * buffer needed to hold the corresponding internal resource
380 * descriptor linked list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 *
382 ******************************************************************************/
383
384acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400385acpi_rs_get_list_length(u8 * aml_buffer,
386 u32 aml_buffer_length, acpi_size * size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Bob Moore96db2552005-11-02 00:00:00 -0500388 acpi_status status;
389 u8 *end_aml;
Robert Moorebda663d2005-09-16 16:51:15 -0400390 u8 *buffer;
Bob Mooreea936b72006-02-17 00:00:00 -0500391 u32 buffer_size;
Len Brown4be44fc2005-08-05 00:44:28 -0400392 u16 temp16;
Robert Moorebda663d2005-09-16 16:51:15 -0400393 u16 resource_length;
Robert Moorebda663d2005-09-16 16:51:15 -0400394 u32 extra_struct_bytes;
Bob Moore96db2552005-11-02 00:00:00 -0500395 u8 resource_index;
396 u8 minimum_aml_resource_length;
Lin Minge0fe0a82011-11-16 14:38:13 +0800397 union aml_resource *aml_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Bob Mooreb229cf92006-04-21 17:15:00 -0400399 ACPI_FUNCTION_TRACE(rs_get_list_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Lin Minge0fe0a82011-11-16 14:38:13 +0800401 *size_needed = ACPI_RS_SIZE_MIN; /* Minimum size is one end_tag */
Bob Moore96db2552005-11-02 00:00:00 -0500402 end_aml = aml_buffer + aml_buffer_length;
Robert Moore44f6c012005-04-18 22:49:35 -0400403
Bob Moore96db2552005-11-02 00:00:00 -0500404 /* Walk the list of AML resource descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Bob Moore96db2552005-11-02 00:00:00 -0500406 while (aml_buffer < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400407
Bob Moore96db2552005-11-02 00:00:00 -0500408 /* Validate the Resource Type and Resource Length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Bob Moore96db2552005-11-02 00:00:00 -0500410 status = acpi_ut_validate_resource(aml_buffer, &resource_index);
411 if (ACPI_FAILURE(status)) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800412 /*
413 * Exit on failure. Cannot continue because the descriptor length
414 * may be bogus also.
415 */
Bob Moore96db2552005-11-02 00:00:00 -0500416 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
Lin Minge0fe0a82011-11-16 14:38:13 +0800419 aml_resource = (void *)aml_buffer;
420
Bob Moore96db2552005-11-02 00:00:00 -0500421 /* Get the resource length and base (minimum) AML size */
Robert Moore44f6c012005-04-18 22:49:35 -0400422
Bob Moore08978312005-10-21 00:00:00 -0400423 resource_length = acpi_ut_get_resource_length(aml_buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500424 minimum_aml_resource_length =
425 acpi_gbl_resource_aml_sizes[resource_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Bob Moore96db2552005-11-02 00:00:00 -0500427 /*
428 * Augment the size for descriptors with optional
429 * and/or variable length fields
430 */
Robert Moorebda663d2005-09-16 16:51:15 -0400431 extra_struct_bytes = 0;
Bob Moore96db2552005-11-02 00:00:00 -0500432 buffer =
433 aml_buffer + acpi_ut_get_resource_header_length(aml_buffer);
Robert Moorebda663d2005-09-16 16:51:15 -0400434
Bob Moore96db2552005-11-02 00:00:00 -0500435 switch (acpi_ut_get_resource_type(aml_buffer)) {
436 case ACPI_RESOURCE_NAME_IRQ:
Robert Moorebda663d2005-09-16 16:51:15 -0400437 /*
Bob Moore96db2552005-11-02 00:00:00 -0500438 * IRQ Resource:
439 * Get the number of bits set in the 16-bit IRQ mask
Robert Moorebda663d2005-09-16 16:51:15 -0400440 */
Bob Moore96db2552005-11-02 00:00:00 -0500441 ACPI_MOVE_16_TO_16(&temp16, buffer);
Bob Moorec51a4de2005-11-17 13:07:00 -0500442 extra_struct_bytes = acpi_rs_count_set_bits(temp16);
Bob Moore96db2552005-11-02 00:00:00 -0500443 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400444
Bob Moore96db2552005-11-02 00:00:00 -0500445 case ACPI_RESOURCE_NAME_DMA:
Robert Moorebda663d2005-09-16 16:51:15 -0400446 /*
Bob Moore96db2552005-11-02 00:00:00 -0500447 * DMA Resource:
448 * Get the number of bits set in the 8-bit DMA mask
Robert Moorebda663d2005-09-16 16:51:15 -0400449 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500450 extra_struct_bytes = acpi_rs_count_set_bits(*buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500451 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400452
Bob Moore96db2552005-11-02 00:00:00 -0500453 case ACPI_RESOURCE_NAME_VENDOR_SMALL:
Bob Mooreea936b72006-02-17 00:00:00 -0500454 case ACPI_RESOURCE_NAME_VENDOR_LARGE:
Bob Moore96db2552005-11-02 00:00:00 -0500455 /*
456 * Vendor Resource:
Bob Mooreea936b72006-02-17 00:00:00 -0500457 * Get the number of vendor data bytes
Bob Moore96db2552005-11-02 00:00:00 -0500458 */
Bob Mooreea936b72006-02-17 00:00:00 -0500459 extra_struct_bytes = resource_length;
Bob Moore96db2552005-11-02 00:00:00 -0500460 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400461
Bob Moore96db2552005-11-02 00:00:00 -0500462 case ACPI_RESOURCE_NAME_END_TAG:
463 /*
Lin Minge0fe0a82011-11-16 14:38:13 +0800464 * End Tag: This is the normal exit
Bob Moore96db2552005-11-02 00:00:00 -0500465 */
Bob Moore96db2552005-11-02 00:00:00 -0500466 return_ACPI_STATUS(AE_OK);
Robert Moorebda663d2005-09-16 16:51:15 -0400467
Bob Moore96db2552005-11-02 00:00:00 -0500468 case ACPI_RESOURCE_NAME_ADDRESS32:
469 case ACPI_RESOURCE_NAME_ADDRESS16:
Bob Mooreea936b72006-02-17 00:00:00 -0500470 case ACPI_RESOURCE_NAME_ADDRESS64:
Bob Moore96db2552005-11-02 00:00:00 -0500471 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500472 * Address Resource:
473 * Add the size of the optional resource_source
Bob Moore96db2552005-11-02 00:00:00 -0500474 */
475 extra_struct_bytes =
476 acpi_rs_stream_option_length(resource_length,
477 minimum_aml_resource_length);
478 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400479
Bob Moore96db2552005-11-02 00:00:00 -0500480 case ACPI_RESOURCE_NAME_EXTENDED_IRQ:
481 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500482 * Extended IRQ Resource:
483 * Using the interrupt_table_length, add 4 bytes for each additional
484 * interrupt. Note: at least one interrupt is required and is
485 * included in the minimum descriptor size (reason for the -1)
Bob Moore96db2552005-11-02 00:00:00 -0500486 */
Bob Mooreea936b72006-02-17 00:00:00 -0500487 extra_struct_bytes = (buffer[1] - 1) * sizeof(u32);
Robert Moorebda663d2005-09-16 16:51:15 -0400488
Bob Mooreea936b72006-02-17 00:00:00 -0500489 /* Add the size of the optional resource_source */
490
491 extra_struct_bytes +=
Bob Moore96db2552005-11-02 00:00:00 -0500492 acpi_rs_stream_option_length(resource_length -
493 extra_struct_bytes,
494 minimum_aml_resource_length);
495 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400496
Lin Minge0fe0a82011-11-16 14:38:13 +0800497 case ACPI_RESOURCE_NAME_GPIO:
498
499 /* Vendor data is optional */
500
501 if (aml_resource->gpio.vendor_length) {
502 extra_struct_bytes +=
503 aml_resource->gpio.vendor_offset -
504 aml_resource->gpio.pin_table_offset +
505 aml_resource->gpio.vendor_length;
506 } else {
507 extra_struct_bytes +=
508 aml_resource->large_header.resource_length +
509 sizeof(struct aml_resource_large_header) -
510 aml_resource->gpio.pin_table_offset;
511 }
512 break;
513
514 case ACPI_RESOURCE_NAME_SERIAL_BUS:
515
516 minimum_aml_resource_length =
517 acpi_gbl_resource_aml_serial_bus_sizes
518 [aml_resource->common_serial_bus.type];
519 extra_struct_bytes +=
520 aml_resource->common_serial_bus.resource_length -
521 minimum_aml_resource_length;
522 break;
523
Bob Moore96db2552005-11-02 00:00:00 -0500524 default:
525 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400526 }
527
Bob Mooreea936b72006-02-17 00:00:00 -0500528 /*
529 * Update the required buffer size for the internal descriptor structs
530 *
531 * Important: Round the size up for the appropriate alignment. This
532 * is a requirement on IA64.
533 */
Lin Minge0fe0a82011-11-16 14:38:13 +0800534 if (acpi_ut_get_resource_type(aml_buffer) ==
535 ACPI_RESOURCE_NAME_SERIAL_BUS) {
536 buffer_size =
537 acpi_gbl_resource_struct_serial_bus_sizes
538 [aml_resource->common_serial_bus.type] +
539 extra_struct_bytes;
540 } else {
541 buffer_size =
542 acpi_gbl_resource_struct_sizes[resource_index] +
543 extra_struct_bytes;
544 }
545 buffer_size = (u32)ACPI_ROUND_UP_TO_NATIVE_WORD(buffer_size);
Robert Moorebda663d2005-09-16 16:51:15 -0400546
Bob Mooreea936b72006-02-17 00:00:00 -0500547 *size_needed += buffer_size;
548
549 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
Bob Mooreb229cf92006-04-21 17:15:00 -0400550 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
Bob Mooreea936b72006-02-17 00:00:00 -0500551 acpi_ut_get_resource_type(aml_buffer),
552 acpi_ut_get_descriptor_length(aml_buffer),
553 buffer_size));
Robert Moorebda663d2005-09-16 16:51:15 -0400554
555 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500556 * Point to the next resource within the AML stream using the length
557 * contained in the resource descriptor header
Robert Moorebda663d2005-09-16 16:51:15 -0400558 */
Bob Moore96db2552005-11-02 00:00:00 -0500559 aml_buffer += acpi_ut_get_descriptor_length(aml_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561
Bob Moore96db2552005-11-02 00:00:00 -0500562 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400563
Bob Moore96db2552005-11-02 00:00:00 -0500564 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567/*******************************************************************************
568 *
569 * FUNCTION: acpi_rs_get_pci_routing_table_length
570 *
571 * PARAMETERS: package_object - Pointer to the package object
572 * buffer_size_needed - u32 pointer of the size buffer
573 * needed to properly return the
574 * parsed data
575 *
576 * RETURN: Status
577 *
578 * DESCRIPTION: Given a package representing a PCI routing table, this
579 * calculates the size of the corresponding linked list of
580 * descriptions.
581 *
582 ******************************************************************************/
583
584acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400585acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
586 acpi_size * buffer_size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Len Brown4be44fc2005-08-05 00:44:28 -0400588 u32 number_of_elements;
589 acpi_size temp_size_needed = 0;
590 union acpi_operand_object **top_object_list;
591 u32 index;
592 union acpi_operand_object *package_element;
593 union acpi_operand_object **sub_object_list;
594 u8 name_found;
595 u32 table_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Bob Mooreb229cf92006-04-21 17:15:00 -0400597 ACPI_FUNCTION_TRACE(rs_get_pci_routing_table_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 number_of_elements = package_object->package.count;
600
601 /*
602 * Calculate the size of the return buffer.
603 * The base size is the number of elements * the sizes of the
604 * structures. Additional space for the strings is added below.
605 * The minus one is to subtract the size of the u8 Source[1]
606 * member because it is added below.
607 *
608 * But each PRT_ENTRY structure has a pointer to a string and
609 * the size of that string must be found.
610 */
611 top_object_list = package_object->package.elements;
612
613 for (index = 0; index < number_of_elements; index++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400614
Robert Moore44f6c012005-04-18 22:49:35 -0400615 /* Dereference the sub-package */
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 package_element = *top_object_list;
618
Robert Moore53951bd2009-05-02 11:48:37 -0700619 /* We must have a valid Package object */
620
621 if (!package_element ||
622 (package_element->common.type != ACPI_TYPE_PACKAGE)) {
Bob Moore474caff2009-05-21 10:10:16 +0800623 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Robert Moore53951bd2009-05-02 11:48:37 -0700624 }
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /*
627 * The sub_object_list will now point to an array of the
628 * four IRQ elements: Address, Pin, Source and source_index
629 */
630 sub_object_list = package_element->package.elements;
631
Robert Moore44f6c012005-04-18 22:49:35 -0400632 /* Scan the irq_table_elements for the Source Name String */
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 name_found = FALSE;
635
Len Brown4be44fc2005-08-05 00:44:28 -0400636 for (table_index = 0; table_index < 4 && !name_found;
637 table_index++) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500638 if (*sub_object_list && /* Null object allowed */
639 ((ACPI_TYPE_STRING ==
Bob Moore3371c192009-02-18 14:44:03 +0800640 (*sub_object_list)->common.type) ||
Bob Mooreb8e4d892006-01-27 16:43:00 -0500641 ((ACPI_TYPE_LOCAL_REFERENCE ==
Bob Moore3371c192009-02-18 14:44:03 +0800642 (*sub_object_list)->common.type) &&
Bob Moore1044f1f2008-09-27 11:08:41 +0800643 ((*sub_object_list)->reference.class ==
644 ACPI_REFCLASS_NAME)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 name_found = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400646 } else {
Robert Moore44f6c012005-04-18 22:49:35 -0400647 /* Look at the next element */
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 sub_object_list++;
650 }
651 }
652
Len Brown4be44fc2005-08-05 00:44:28 -0400653 temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Robert Moore44f6c012005-04-18 22:49:35 -0400655 /* Was a String type found? */
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (name_found) {
Bob Moore3371c192009-02-18 14:44:03 +0800658 if ((*sub_object_list)->common.type == ACPI_TYPE_STRING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /*
660 * The length String.Length field does not include the
661 * terminating NULL, add 1
662 */
Robert Moore44f6c012005-04-18 22:49:35 -0400663 temp_size_needed += ((acpi_size)
Len Brown4be44fc2005-08-05 00:44:28 -0400664 (*sub_object_list)->string.
665 length + 1);
666 } else {
Len Brownfd350942007-05-09 23:34:35 -0400667 temp_size_needed +=
668 acpi_ns_get_pathname_length((*sub_object_list)->reference.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
Len Brown4be44fc2005-08-05 00:44:28 -0400670 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /*
672 * If no name was found, then this is a NULL, which is
673 * translated as a u32 zero.
674 */
Len Brown4be44fc2005-08-05 00:44:28 -0400675 temp_size_needed += sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
678 /* Round up the size since each element must be aligned */
679
Bob Moore958dd242006-05-12 17:12:00 -0400680 temp_size_needed = ACPI_ROUND_UP_TO_64BIT(temp_size_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Robert Moore44f6c012005-04-18 22:49:35 -0400682 /* Point to the next union acpi_operand_object */
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 top_object_list++;
685 }
686
687 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500688 * Add an extra element to the end of the list, essentially a
Robert Moore44f6c012005-04-18 22:49:35 -0400689 * NULL terminator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Len Brown4be44fc2005-08-05 00:44:28 -0400691 *buffer_size_needed =
692 temp_size_needed + sizeof(struct acpi_pci_routing_table);
693 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}