blob: db0a835e3317ec1b408e78203146400d718e36e3 [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 Moore6c9deb72007-02-02 19:48:24 +03008 * Copyright (C) 2000 - 2007, R. Byron Moore
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>
45#include <acpi/acresrc.h>
46#include <acpi/amlcode.h>
47#include <acpi/acnamesp.h>
48
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 Moore1d18c052008-04-10 19:06:40 +040076 acpi_native_uint 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 Moore1d18c052008-04-10 19:06:40 +040087 return ((u8) 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 *
Robert Moorebda663d2005-09-16 16:51:15 -0400176 * PARAMETERS: Resource - Pointer to the resource linked list
177 * 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
216 if (resource->data.irq.descriptor_length == 2) {
217 total_size--;
218 }
219 break;
220
Bob Moore50eca3e2005-09-30 19:03:00 -0400221 case ACPI_RESOURCE_TYPE_VENDOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400223 * Vendor Defined Resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 * For a Vendor Specific resource, if the Length is between 1 and 7
225 * it will be created as a Small Resource data type, otherwise it
226 * is a Large Resource data type.
227 */
Bob Moore50eca3e2005-09-30 19:03:00 -0400228 if (resource->data.vendor.byte_length > 7) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400229
Robert Moorebda663d2005-09-16 16:51:15 -0400230 /* Base size of a Large resource descriptor */
231
Bob Moore08978312005-10-21 00:00:00 -0400232 total_size =
Bob Moore50eca3e2005-09-30 19:03:00 -0400233 sizeof(struct aml_resource_large_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
Robert Moorebda663d2005-09-16 16:51:15 -0400235
236 /* Add the size of the vendor-specific data */
237
Bob Moore08978312005-10-21 00:00:00 -0400238 total_size = (acpi_rs_length)
239 (total_size + resource->data.vendor.byte_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 break;
241
Bob Moore50eca3e2005-09-30 19:03:00 -0400242 case ACPI_RESOURCE_TYPE_END_TAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400244 * End Tag:
245 * We are done -- return the accumulated total size.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
Bob Moore08978312005-10-21 00:00:00 -0400247 *size_needed = aml_size_needed + total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Robert Moorebda663d2005-09-16 16:51:15 -0400249 /* Normal exit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Robert Moorebda663d2005-09-16 16:51:15 -0400251 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Bob Moore50eca3e2005-09-30 19:03:00 -0400253 case ACPI_RESOURCE_TYPE_ADDRESS16:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400255 * 16-Bit Address Resource:
256 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Bob Moore08978312005-10-21 00:00:00 -0400258 total_size = (acpi_rs_length)
259 (total_size +
260 acpi_rs_struct_option_length(&resource->data.
261 address16.
262 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264
Bob Moore50eca3e2005-09-30 19:03:00 -0400265 case ACPI_RESOURCE_TYPE_ADDRESS32:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400267 * 32-Bit Address Resource:
268 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Bob Moore08978312005-10-21 00:00:00 -0400270 total_size = (acpi_rs_length)
271 (total_size +
272 acpi_rs_struct_option_length(&resource->data.
273 address32.
274 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 break;
276
Bob Moore50eca3e2005-09-30 19:03:00 -0400277 case ACPI_RESOURCE_TYPE_ADDRESS64:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400279 * 64-Bit Address Resource:
280 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
Bob Moore08978312005-10-21 00:00:00 -0400282 total_size = (acpi_rs_length)
283 (total_size +
284 acpi_rs_struct_option_length(&resource->data.
285 address64.
286 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 break;
288
Bob Moore50eca3e2005-09-30 19:03:00 -0400289 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400291 * Extended IRQ Resource:
292 * Add the size of each additional optional interrupt beyond the
293 * required 1 (4 bytes for each u32 interrupt number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
Bob Moore08978312005-10-21 00:00:00 -0400295 total_size = (acpi_rs_length)
296 (total_size +
297 ((resource->data.extended_irq.interrupt_count -
298 1) * 4) +
299 /* Add the size of the optional resource_source info */
300 acpi_rs_struct_option_length(&resource->data.
301 extended_irq.
302 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 break;
304
305 default:
Robert Moorebda663d2005-09-16 16:51:15 -0400306 break;
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Robert Moore44f6c012005-04-18 22:49:35 -0400309 /* Update the total */
310
Bob Moore08978312005-10-21 00:00:00 -0400311 aml_size_needed += total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Robert Moore44f6c012005-04-18 22:49:35 -0400313 /* Point to the next object */
314
Bob Moore96db2552005-11-02 00:00:00 -0500315 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500316 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore96db2552005-11-02 00:00:00 -0500317 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Bob Moore96db2552005-11-02 00:00:00 -0500320 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400321
Bob Moore96db2552005-11-02 00:00:00 -0500322 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*******************************************************************************
326 *
327 * FUNCTION: acpi_rs_get_list_length
328 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400329 * PARAMETERS: aml_buffer - Pointer to the resource byte stream
330 * aml_buffer_length - Size of aml_buffer
331 * size_needed - Where the size needed is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 *
333 * RETURN: Status
334 *
Robert Moorebda663d2005-09-16 16:51:15 -0400335 * DESCRIPTION: Takes an external resource byte stream and calculates the size
336 * buffer needed to hold the corresponding internal resource
337 * descriptor linked list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 *
339 ******************************************************************************/
340
341acpi_status
Bob Moore50eca3e2005-09-30 19:03:00 -0400342acpi_rs_get_list_length(u8 * aml_buffer,
343 u32 aml_buffer_length, acpi_size * size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Bob Moore96db2552005-11-02 00:00:00 -0500345 acpi_status status;
346 u8 *end_aml;
Robert Moorebda663d2005-09-16 16:51:15 -0400347 u8 *buffer;
Bob Mooreea936b72006-02-17 00:00:00 -0500348 u32 buffer_size;
Len Brown4be44fc2005-08-05 00:44:28 -0400349 u16 temp16;
Robert Moorebda663d2005-09-16 16:51:15 -0400350 u16 resource_length;
Robert Moorebda663d2005-09-16 16:51:15 -0400351 u32 extra_struct_bytes;
Bob Moore96db2552005-11-02 00:00:00 -0500352 u8 resource_index;
353 u8 minimum_aml_resource_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Bob Mooreb229cf92006-04-21 17:15:00 -0400355 ACPI_FUNCTION_TRACE(rs_get_list_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Bob Mooreea936b72006-02-17 00:00:00 -0500357 *size_needed = 0;
Bob Moore96db2552005-11-02 00:00:00 -0500358 end_aml = aml_buffer + aml_buffer_length;
Robert Moore44f6c012005-04-18 22:49:35 -0400359
Bob Moore96db2552005-11-02 00:00:00 -0500360 /* Walk the list of AML resource descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Bob Moore96db2552005-11-02 00:00:00 -0500362 while (aml_buffer < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400363
Bob Moore96db2552005-11-02 00:00:00 -0500364 /* Validate the Resource Type and Resource Length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Bob Moore96db2552005-11-02 00:00:00 -0500366 status = acpi_ut_validate_resource(aml_buffer, &resource_index);
367 if (ACPI_FAILURE(status)) {
368 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370
Bob Moore96db2552005-11-02 00:00:00 -0500371 /* Get the resource length and base (minimum) AML size */
Robert Moore44f6c012005-04-18 22:49:35 -0400372
Bob Moore08978312005-10-21 00:00:00 -0400373 resource_length = acpi_ut_get_resource_length(aml_buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500374 minimum_aml_resource_length =
375 acpi_gbl_resource_aml_sizes[resource_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Bob Moore96db2552005-11-02 00:00:00 -0500377 /*
378 * Augment the size for descriptors with optional
379 * and/or variable length fields
380 */
Robert Moorebda663d2005-09-16 16:51:15 -0400381 extra_struct_bytes = 0;
Bob Moore96db2552005-11-02 00:00:00 -0500382 buffer =
383 aml_buffer + acpi_ut_get_resource_header_length(aml_buffer);
Robert Moorebda663d2005-09-16 16:51:15 -0400384
Bob Moore96db2552005-11-02 00:00:00 -0500385 switch (acpi_ut_get_resource_type(aml_buffer)) {
386 case ACPI_RESOURCE_NAME_IRQ:
Robert Moorebda663d2005-09-16 16:51:15 -0400387 /*
Bob Moore96db2552005-11-02 00:00:00 -0500388 * IRQ Resource:
389 * Get the number of bits set in the 16-bit IRQ mask
Robert Moorebda663d2005-09-16 16:51:15 -0400390 */
Bob Moore96db2552005-11-02 00:00:00 -0500391 ACPI_MOVE_16_TO_16(&temp16, buffer);
Bob Moorec51a4de2005-11-17 13:07:00 -0500392 extra_struct_bytes = acpi_rs_count_set_bits(temp16);
Bob Moore96db2552005-11-02 00:00:00 -0500393 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400394
Bob Moore96db2552005-11-02 00:00:00 -0500395 case ACPI_RESOURCE_NAME_DMA:
Robert Moorebda663d2005-09-16 16:51:15 -0400396 /*
Bob Moore96db2552005-11-02 00:00:00 -0500397 * DMA Resource:
398 * Get the number of bits set in the 8-bit DMA mask
Robert Moorebda663d2005-09-16 16:51:15 -0400399 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500400 extra_struct_bytes = acpi_rs_count_set_bits(*buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500401 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400402
Bob Moore96db2552005-11-02 00:00:00 -0500403 case ACPI_RESOURCE_NAME_VENDOR_SMALL:
Bob Mooreea936b72006-02-17 00:00:00 -0500404 case ACPI_RESOURCE_NAME_VENDOR_LARGE:
Bob Moore96db2552005-11-02 00:00:00 -0500405 /*
406 * Vendor Resource:
Bob Mooreea936b72006-02-17 00:00:00 -0500407 * Get the number of vendor data bytes
Bob Moore96db2552005-11-02 00:00:00 -0500408 */
Bob Mooreea936b72006-02-17 00:00:00 -0500409 extra_struct_bytes = resource_length;
Bob Moore96db2552005-11-02 00:00:00 -0500410 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400411
Bob Moore96db2552005-11-02 00:00:00 -0500412 case ACPI_RESOURCE_NAME_END_TAG:
413 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500414 * End Tag:
415 * This is the normal exit, add size of end_tag
Bob Moore96db2552005-11-02 00:00:00 -0500416 */
Bob Mooreea936b72006-02-17 00:00:00 -0500417 *size_needed += ACPI_RS_SIZE_MIN;
Bob Moore96db2552005-11-02 00:00:00 -0500418 return_ACPI_STATUS(AE_OK);
Robert Moorebda663d2005-09-16 16:51:15 -0400419
Bob Moore96db2552005-11-02 00:00:00 -0500420 case ACPI_RESOURCE_NAME_ADDRESS32:
421 case ACPI_RESOURCE_NAME_ADDRESS16:
Bob Mooreea936b72006-02-17 00:00:00 -0500422 case ACPI_RESOURCE_NAME_ADDRESS64:
Bob Moore96db2552005-11-02 00:00:00 -0500423 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500424 * Address Resource:
425 * Add the size of the optional resource_source
Bob Moore96db2552005-11-02 00:00:00 -0500426 */
427 extra_struct_bytes =
428 acpi_rs_stream_option_length(resource_length,
429 minimum_aml_resource_length);
430 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400431
Bob Moore96db2552005-11-02 00:00:00 -0500432 case ACPI_RESOURCE_NAME_EXTENDED_IRQ:
433 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500434 * Extended IRQ Resource:
435 * Using the interrupt_table_length, add 4 bytes for each additional
436 * interrupt. Note: at least one interrupt is required and is
437 * included in the minimum descriptor size (reason for the -1)
Bob Moore96db2552005-11-02 00:00:00 -0500438 */
Bob Mooreea936b72006-02-17 00:00:00 -0500439 extra_struct_bytes = (buffer[1] - 1) * sizeof(u32);
Robert Moorebda663d2005-09-16 16:51:15 -0400440
Bob Mooreea936b72006-02-17 00:00:00 -0500441 /* Add the size of the optional resource_source */
442
443 extra_struct_bytes +=
Bob Moore96db2552005-11-02 00:00:00 -0500444 acpi_rs_stream_option_length(resource_length -
445 extra_struct_bytes,
446 minimum_aml_resource_length);
447 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400448
Bob Moore96db2552005-11-02 00:00:00 -0500449 default:
450 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400451 }
452
Bob Mooreea936b72006-02-17 00:00:00 -0500453 /*
454 * Update the required buffer size for the internal descriptor structs
455 *
456 * Important: Round the size up for the appropriate alignment. This
457 * is a requirement on IA64.
458 */
459 buffer_size = acpi_gbl_resource_struct_sizes[resource_index] +
460 extra_struct_bytes;
Bob Moore958dd242006-05-12 17:12:00 -0400461 buffer_size = (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(buffer_size);
Robert Moorebda663d2005-09-16 16:51:15 -0400462
Bob Mooreea936b72006-02-17 00:00:00 -0500463 *size_needed += buffer_size;
464
465 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
Bob Mooreb229cf92006-04-21 17:15:00 -0400466 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
Bob Mooreea936b72006-02-17 00:00:00 -0500467 acpi_ut_get_resource_type(aml_buffer),
468 acpi_ut_get_descriptor_length(aml_buffer),
469 buffer_size));
Robert Moorebda663d2005-09-16 16:51:15 -0400470
471 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500472 * Point to the next resource within the AML stream using the length
473 * contained in the resource descriptor header
Robert Moorebda663d2005-09-16 16:51:15 -0400474 */
Bob Moore96db2552005-11-02 00:00:00 -0500475 aml_buffer += acpi_ut_get_descriptor_length(aml_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477
Bob Moore96db2552005-11-02 00:00:00 -0500478 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400479
Bob Moore96db2552005-11-02 00:00:00 -0500480 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*******************************************************************************
484 *
485 * FUNCTION: acpi_rs_get_pci_routing_table_length
486 *
487 * PARAMETERS: package_object - Pointer to the package object
488 * buffer_size_needed - u32 pointer of the size buffer
489 * needed to properly return the
490 * parsed data
491 *
492 * RETURN: Status
493 *
494 * DESCRIPTION: Given a package representing a PCI routing table, this
495 * calculates the size of the corresponding linked list of
496 * descriptions.
497 *
498 ******************************************************************************/
499
500acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400501acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
502 acpi_size * buffer_size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Len Brown4be44fc2005-08-05 00:44:28 -0400504 u32 number_of_elements;
505 acpi_size temp_size_needed = 0;
506 union acpi_operand_object **top_object_list;
507 u32 index;
508 union acpi_operand_object *package_element;
509 union acpi_operand_object **sub_object_list;
510 u8 name_found;
511 u32 table_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Bob Mooreb229cf92006-04-21 17:15:00 -0400513 ACPI_FUNCTION_TRACE(rs_get_pci_routing_table_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 number_of_elements = package_object->package.count;
516
517 /*
518 * Calculate the size of the return buffer.
519 * The base size is the number of elements * the sizes of the
520 * structures. Additional space for the strings is added below.
521 * The minus one is to subtract the size of the u8 Source[1]
522 * member because it is added below.
523 *
524 * But each PRT_ENTRY structure has a pointer to a string and
525 * the size of that string must be found.
526 */
527 top_object_list = package_object->package.elements;
528
529 for (index = 0; index < number_of_elements; index++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400530
Robert Moore44f6c012005-04-18 22:49:35 -0400531 /* Dereference the sub-package */
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 package_element = *top_object_list;
534
535 /*
536 * The sub_object_list will now point to an array of the
537 * four IRQ elements: Address, Pin, Source and source_index
538 */
539 sub_object_list = package_element->package.elements;
540
Robert Moore44f6c012005-04-18 22:49:35 -0400541 /* Scan the irq_table_elements for the Source Name String */
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 name_found = FALSE;
544
Len Brown4be44fc2005-08-05 00:44:28 -0400545 for (table_index = 0; table_index < 4 && !name_found;
546 table_index++) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500547 if (*sub_object_list && /* Null object allowed */
548 ((ACPI_TYPE_STRING ==
549 ACPI_GET_OBJECT_TYPE(*sub_object_list)) ||
550 ((ACPI_TYPE_LOCAL_REFERENCE ==
551 ACPI_GET_OBJECT_TYPE(*sub_object_list)) &&
552 ((*sub_object_list)->reference.opcode ==
553 AML_INT_NAMEPATH_OP)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 name_found = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400555 } else {
Robert Moore44f6c012005-04-18 22:49:35 -0400556 /* Look at the next element */
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 sub_object_list++;
559 }
560 }
561
Len Brown4be44fc2005-08-05 00:44:28 -0400562 temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Robert Moore44f6c012005-04-18 22:49:35 -0400564 /* Was a String type found? */
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (name_found) {
Len Brown4be44fc2005-08-05 00:44:28 -0400567 if (ACPI_GET_OBJECT_TYPE(*sub_object_list) ==
568 ACPI_TYPE_STRING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /*
570 * The length String.Length field does not include the
571 * terminating NULL, add 1
572 */
Robert Moore44f6c012005-04-18 22:49:35 -0400573 temp_size_needed += ((acpi_size)
Len Brown4be44fc2005-08-05 00:44:28 -0400574 (*sub_object_list)->string.
575 length + 1);
576 } else {
Len Brownfd350942007-05-09 23:34:35 -0400577 temp_size_needed +=
578 acpi_ns_get_pathname_length((*sub_object_list)->reference.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Len Brown4be44fc2005-08-05 00:44:28 -0400580 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /*
582 * If no name was found, then this is a NULL, which is
583 * translated as a u32 zero.
584 */
Len Brown4be44fc2005-08-05 00:44:28 -0400585 temp_size_needed += sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
588 /* Round up the size since each element must be aligned */
589
Bob Moore958dd242006-05-12 17:12:00 -0400590 temp_size_needed = ACPI_ROUND_UP_TO_64BIT(temp_size_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Robert Moore44f6c012005-04-18 22:49:35 -0400592 /* Point to the next union acpi_operand_object */
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 top_object_list++;
595 }
596
597 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500598 * Add an extra element to the end of the list, essentially a
Robert Moore44f6c012005-04-18 22:49:35 -0400599 * NULL terminator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Len Brown4be44fc2005-08-05 00:44:28 -0400601 *buffer_size_needed =
602 temp_size_needed + sizeof(struct acpi_pci_routing_table);
603 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}