blob: f1e83addd5b431c5522c1d9b9e20901ecd51b0b7 [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 Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, 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) {
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800115 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 /*
Bob Moore1fad8732015-12-29 13:54:36 +0800146 * The resource_source_index and resource_source are optional elements of
147 * some Large-type resource descriptors.
Robert Moorebda663d2005-09-16 16:51:15 -0400148 */
149
Robert Moorebda663d2005-09-16 16:51:15 -0400150 /*
Bob Moore1fad8732015-12-29 13:54:36 +0800151 * If the length of the actual resource descriptor is greater than the
152 * ACPI spec-defined minimum length, it means that a resource_source_index
153 * exists and is followed by a (required) null terminated string. The
154 * string length (including the null terminator) is the resource length
155 * minus the minimum length, minus one byte for the resource_source_index
156 * itself.
Robert Moorebda663d2005-09-16 16:51:15 -0400157 */
Bob Moore50eca3e2005-09-30 19:03:00 -0400158 if (resource_length > minimum_aml_resource_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400159
Robert Moorebda663d2005-09-16 16:51:15 -0400160 /* Compute the length of the optional string */
161
Bob Moore50eca3e2005-09-30 19:03:00 -0400162 string_length =
163 resource_length - minimum_aml_resource_length - 1;
Robert Moorebda663d2005-09-16 16:51:15 -0400164 }
165
Bob Mooreea936b72006-02-17 00:00:00 -0500166 /*
167 * Round the length up to a multiple of the native word in order to
168 * guarantee that the entire resource descriptor is native word aligned
169 */
170 return ((u32) ACPI_ROUND_UP_TO_NATIVE_WORD(string_length));
Robert Moorebda663d2005-09-16 16:51:15 -0400171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*******************************************************************************
174 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400175 * FUNCTION: acpi_rs_get_aml_length
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
Bob Mooreba494be2012-07-12 09:40:10 +0800177 * PARAMETERS: resource - Pointer to the resource linked list
Lv Zheng9a0a3592013-11-21 12:17:34 +0800178 * resource_list_size - Size of the resource linked list
Robert Moorebda663d2005-09-16 16:51:15 -0400179 * size_needed - Where the required size is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *
181 * RETURN: Status
182 *
Robert Moorebda663d2005-09-16 16:51:15 -0400183 * DESCRIPTION: Takes a linked list of internal resource descriptors and
184 * calculates the size buffer needed to hold the corresponding
185 * external resource byte stream.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 ******************************************************************************/
Robert Moorebda663d2005-09-16 16:51:15 -0400188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189acpi_status
Lv Zheng9a0a3592013-11-21 12:17:34 +0800190acpi_rs_get_aml_length(struct acpi_resource *resource,
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800191 acpi_size resource_list_size, acpi_size *size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Bob Moore50eca3e2005-09-30 19:03:00 -0400193 acpi_size aml_size_needed = 0;
Lv Zheng9a0a3592013-11-21 12:17:34 +0800194 struct acpi_resource *resource_end;
Bob Moore08978312005-10-21 00:00:00 -0400195 acpi_rs_length total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Bob Mooreb229cf92006-04-21 17:15:00 -0400197 ACPI_FUNCTION_TRACE(rs_get_aml_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Robert Moorebda663d2005-09-16 16:51:15 -0400199 /* Traverse entire list of internal resource descriptors */
Robert Moore44f6c012005-04-18 22:49:35 -0400200
Lv Zheng9a0a3592013-11-21 12:17:34 +0800201 resource_end =
202 ACPI_ADD_PTR(struct acpi_resource, resource, resource_list_size);
203 while (resource < resource_end) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400204
Robert Moorebda663d2005-09-16 16:51:15 -0400205 /* Validate the descriptor type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Bob Moore50eca3e2005-09-30 19:03:00 -0400207 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
Robert Moorebda663d2005-09-16 16:51:15 -0400208 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Bob Moorec13085e2013-03-08 09:19:38 +0000211 /* Sanity check the length. It must not be zero, or we loop forever */
212
213 if (!resource->length) {
214 return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
215 }
216
Robert Moorebda663d2005-09-16 16:51:15 -0400217 /* Get the base size of the (external stream) resource descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Bob Moore08978312005-10-21 00:00:00 -0400219 total_size = acpi_gbl_aml_resource_sizes[resource->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Robert Moorebda663d2005-09-16 16:51:15 -0400221 /*
222 * Augment the base size for descriptors with optional and/or
223 * variable-length fields
224 */
225 switch (resource->type) {
Bob Moore1d5b2852008-04-10 19:06:43 +0400226 case ACPI_RESOURCE_TYPE_IRQ:
227
Bob Moore66d3ca92008-04-10 19:06:44 +0400228 /* Length can be 3 or 2 */
229
Bob Moore1d5b2852008-04-10 19:06:43 +0400230 if (resource->data.irq.descriptor_length == 2) {
231 total_size--;
232 }
233 break;
234
Bob Moore66d3ca92008-04-10 19:06:44 +0400235 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
236
237 /* Length can be 1 or 0 */
238
239 if (resource->data.irq.descriptor_length == 0) {
240 total_size--;
241 }
242 break;
243
Bob Moore50eca3e2005-09-30 19:03:00 -0400244 case ACPI_RESOURCE_TYPE_VENDOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400246 * Vendor Defined Resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * For a Vendor Specific resource, if the Length is between 1 and 7
248 * it will be created as a Small Resource data type, otherwise it
249 * is a Large Resource data type.
250 */
Bob Moore50eca3e2005-09-30 19:03:00 -0400251 if (resource->data.vendor.byte_length > 7) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400252
Robert Moorebda663d2005-09-16 16:51:15 -0400253 /* Base size of a Large resource descriptor */
254
Bob Moore08978312005-10-21 00:00:00 -0400255 total_size =
Bob Moore50eca3e2005-09-30 19:03:00 -0400256 sizeof(struct aml_resource_large_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
Robert Moorebda663d2005-09-16 16:51:15 -0400258
259 /* Add the size of the vendor-specific data */
260
Bob Moore08978312005-10-21 00:00:00 -0400261 total_size = (acpi_rs_length)
262 (total_size + resource->data.vendor.byte_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264
Bob Moore50eca3e2005-09-30 19:03:00 -0400265 case ACPI_RESOURCE_TYPE_END_TAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400267 * End Tag:
268 * We are done -- return the accumulated total size.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Bob Moore08978312005-10-21 00:00:00 -0400270 *size_needed = aml_size_needed + total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Robert Moorebda663d2005-09-16 16:51:15 -0400272 /* Normal exit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Robert Moorebda663d2005-09-16 16:51:15 -0400274 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Bob Moore50eca3e2005-09-30 19:03:00 -0400276 case ACPI_RESOURCE_TYPE_ADDRESS16:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400278 * 16-Bit Address Resource:
279 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800281 total_size = (acpi_rs_length)(total_size +
282 acpi_rs_struct_option_length
283 (&resource->data.
284 address16.
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_ADDRESS32:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400290 * 32-Bit Address Resource:
291 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800293 total_size = (acpi_rs_length)(total_size +
294 acpi_rs_struct_option_length
295 (&resource->data.
296 address32.
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_ADDRESS64:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400302 * 64-Bit Address Resource:
303 * Add the size of the optional resource_source info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 */
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800305 total_size = (acpi_rs_length)(total_size +
306 acpi_rs_struct_option_length
307 (&resource->data.
308 address64.
309 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311
Bob Moore50eca3e2005-09-30 19:03:00 -0400312 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /*
Robert Moorebda663d2005-09-16 16:51:15 -0400314 * Extended IRQ Resource:
315 * Add the size of each additional optional interrupt beyond the
316 * required 1 (4 bytes for each u32 interrupt number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 */
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800318 total_size = (acpi_rs_length)(total_size +
319 ((resource->data.
Bob Moore1fad8732015-12-29 13:54:36 +0800320 extended_irq.
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800321 interrupt_count -
322 1) * 4) +
323 /* Add the size of the optional resource_source info */
324 acpi_rs_struct_option_length
325 (&resource->data.
326 extended_irq.
327 resource_source));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 break;
329
Lin Minge0fe0a82011-11-16 14:38:13 +0800330 case ACPI_RESOURCE_TYPE_GPIO:
331
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800332 total_size = (acpi_rs_length)(total_size +
333 (resource->data.gpio.
334 pin_table_length * 2) +
335 resource->data.gpio.
336 resource_source.
337 string_length +
338 resource->data.gpio.
339 vendor_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800340
341 break;
342
343 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
344
345 total_size =
346 acpi_gbl_aml_resource_serial_bus_sizes[resource->
347 data.
348 common_serial_bus.
349 type];
350
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800351 total_size = (acpi_rs_length)(total_size +
352 resource->data.
353 i2c_serial_bus.
354 resource_source.
355 string_length +
356 resource->data.
357 i2c_serial_bus.
358 vendor_length);
Lin Minge0fe0a82011-11-16 14:38:13 +0800359
360 break;
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000363
Robert Moorebda663d2005-09-16 16:51:15 -0400364 break;
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Robert Moore44f6c012005-04-18 22:49:35 -0400367 /* Update the total */
368
Bob Moore08978312005-10-21 00:00:00 -0400369 aml_size_needed += total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Robert Moore44f6c012005-04-18 22:49:35 -0400371 /* Point to the next object */
372
Bob Moore96db2552005-11-02 00:00:00 -0500373 resource =
Bob Moorec51a4de2005-11-17 13:07:00 -0500374 ACPI_ADD_PTR(struct acpi_resource, resource,
Bob Moore96db2552005-11-02 00:00:00 -0500375 resource->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
Bob Moore96db2552005-11-02 00:00:00 -0500378 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400379
Bob Moore96db2552005-11-02 00:00:00 -0500380 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/*******************************************************************************
384 *
385 * FUNCTION: acpi_rs_get_list_length
386 *
Bob Moore50eca3e2005-09-30 19:03:00 -0400387 * PARAMETERS: aml_buffer - Pointer to the resource byte stream
388 * aml_buffer_length - Size of aml_buffer
389 * size_needed - Where the size needed is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 *
391 * RETURN: Status
392 *
Robert Moorebda663d2005-09-16 16:51:15 -0400393 * DESCRIPTION: Takes an external resource byte stream and calculates the size
394 * buffer needed to hold the corresponding internal resource
395 * descriptor linked list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
397 ******************************************************************************/
398
399acpi_status
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800400acpi_rs_get_list_length(u8 *aml_buffer,
401 u32 aml_buffer_length, acpi_size *size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Bob Moore96db2552005-11-02 00:00:00 -0500403 acpi_status status;
404 u8 *end_aml;
Robert Moorebda663d2005-09-16 16:51:15 -0400405 u8 *buffer;
Bob Mooreea936b72006-02-17 00:00:00 -0500406 u32 buffer_size;
Len Brown4be44fc2005-08-05 00:44:28 -0400407 u16 temp16;
Robert Moorebda663d2005-09-16 16:51:15 -0400408 u16 resource_length;
Robert Moorebda663d2005-09-16 16:51:15 -0400409 u32 extra_struct_bytes;
Bob Moore96db2552005-11-02 00:00:00 -0500410 u8 resource_index;
411 u8 minimum_aml_resource_length;
Lin Minge0fe0a82011-11-16 14:38:13 +0800412 union aml_resource *aml_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Bob Mooreb229cf92006-04-21 17:15:00 -0400414 ACPI_FUNCTION_TRACE(rs_get_list_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Lin Minge0fe0a82011-11-16 14:38:13 +0800416 *size_needed = ACPI_RS_SIZE_MIN; /* Minimum size is one end_tag */
Bob Moore96db2552005-11-02 00:00:00 -0500417 end_aml = aml_buffer + aml_buffer_length;
Robert Moore44f6c012005-04-18 22:49:35 -0400418
Bob Moore96db2552005-11-02 00:00:00 -0500419 /* Walk the list of AML resource descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Bob Moore96db2552005-11-02 00:00:00 -0500421 while (aml_buffer < end_aml) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400422
Bob Moore96db2552005-11-02 00:00:00 -0500423 /* Validate the Resource Type and Resource Length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Bob Moore886308e2012-12-19 05:38:07 +0000425 status =
426 acpi_ut_validate_resource(NULL, aml_buffer,
427 &resource_index);
Bob Moore96db2552005-11-02 00:00:00 -0500428 if (ACPI_FAILURE(status)) {
Lin Minge0fe0a82011-11-16 14:38:13 +0800429 /*
430 * Exit on failure. Cannot continue because the descriptor length
431 * may be bogus also.
432 */
Bob Moore96db2552005-11-02 00:00:00 -0500433 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
Lin Minge0fe0a82011-11-16 14:38:13 +0800436 aml_resource = (void *)aml_buffer;
437
Bob Moore96db2552005-11-02 00:00:00 -0500438 /* Get the resource length and base (minimum) AML size */
Robert Moore44f6c012005-04-18 22:49:35 -0400439
Bob Moore08978312005-10-21 00:00:00 -0400440 resource_length = acpi_ut_get_resource_length(aml_buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500441 minimum_aml_resource_length =
442 acpi_gbl_resource_aml_sizes[resource_index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Bob Moore96db2552005-11-02 00:00:00 -0500444 /*
445 * Augment the size for descriptors with optional
446 * and/or variable length fields
447 */
Robert Moorebda663d2005-09-16 16:51:15 -0400448 extra_struct_bytes = 0;
Bob Moore96db2552005-11-02 00:00:00 -0500449 buffer =
450 aml_buffer + acpi_ut_get_resource_header_length(aml_buffer);
Robert Moorebda663d2005-09-16 16:51:15 -0400451
Bob Moore96db2552005-11-02 00:00:00 -0500452 switch (acpi_ut_get_resource_type(aml_buffer)) {
453 case ACPI_RESOURCE_NAME_IRQ:
Robert Moorebda663d2005-09-16 16:51:15 -0400454 /*
Bob Moore96db2552005-11-02 00:00:00 -0500455 * IRQ Resource:
456 * Get the number of bits set in the 16-bit IRQ mask
Robert Moorebda663d2005-09-16 16:51:15 -0400457 */
Bob Moore96db2552005-11-02 00:00:00 -0500458 ACPI_MOVE_16_TO_16(&temp16, buffer);
Bob Moorec51a4de2005-11-17 13:07:00 -0500459 extra_struct_bytes = acpi_rs_count_set_bits(temp16);
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_DMA:
Robert Moorebda663d2005-09-16 16:51:15 -0400463 /*
Bob Moore96db2552005-11-02 00:00:00 -0500464 * DMA Resource:
465 * Get the number of bits set in the 8-bit DMA mask
Robert Moorebda663d2005-09-16 16:51:15 -0400466 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500467 extra_struct_bytes = acpi_rs_count_set_bits(*buffer);
Bob Moore96db2552005-11-02 00:00:00 -0500468 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400469
Bob Moore96db2552005-11-02 00:00:00 -0500470 case ACPI_RESOURCE_NAME_VENDOR_SMALL:
Bob Mooreea936b72006-02-17 00:00:00 -0500471 case ACPI_RESOURCE_NAME_VENDOR_LARGE:
Bob Moore96db2552005-11-02 00:00:00 -0500472 /*
473 * Vendor Resource:
Bob Mooreea936b72006-02-17 00:00:00 -0500474 * Get the number of vendor data bytes
Bob Moore96db2552005-11-02 00:00:00 -0500475 */
Bob Mooreea936b72006-02-17 00:00:00 -0500476 extra_struct_bytes = resource_length;
Feng Tangbee6dc32012-10-31 02:27:15 +0000477
478 /*
479 * There is already one byte included in the minimum
480 * descriptor size. If there are extra struct bytes,
481 * subtract one from the count.
482 */
483 if (extra_struct_bytes) {
484 extra_struct_bytes--;
485 }
Bob Moore96db2552005-11-02 00:00:00 -0500486 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400487
Bob Moore96db2552005-11-02 00:00:00 -0500488 case ACPI_RESOURCE_NAME_END_TAG:
489 /*
Lin Minge0fe0a82011-11-16 14:38:13 +0800490 * End Tag: This is the normal exit
Bob Moore96db2552005-11-02 00:00:00 -0500491 */
Bob Moore96db2552005-11-02 00:00:00 -0500492 return_ACPI_STATUS(AE_OK);
Robert Moorebda663d2005-09-16 16:51:15 -0400493
Bob Moore96db2552005-11-02 00:00:00 -0500494 case ACPI_RESOURCE_NAME_ADDRESS32:
495 case ACPI_RESOURCE_NAME_ADDRESS16:
Bob Mooreea936b72006-02-17 00:00:00 -0500496 case ACPI_RESOURCE_NAME_ADDRESS64:
Bob Moore96db2552005-11-02 00:00:00 -0500497 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500498 * Address Resource:
499 * Add the size of the optional resource_source
Bob Moore96db2552005-11-02 00:00:00 -0500500 */
501 extra_struct_bytes =
502 acpi_rs_stream_option_length(resource_length,
503 minimum_aml_resource_length);
504 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400505
Bob Moore96db2552005-11-02 00:00:00 -0500506 case ACPI_RESOURCE_NAME_EXTENDED_IRQ:
507 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500508 * Extended IRQ Resource:
509 * Using the interrupt_table_length, add 4 bytes for each additional
510 * interrupt. Note: at least one interrupt is required and is
511 * included in the minimum descriptor size (reason for the -1)
Bob Moore96db2552005-11-02 00:00:00 -0500512 */
Bob Mooreea936b72006-02-17 00:00:00 -0500513 extra_struct_bytes = (buffer[1] - 1) * sizeof(u32);
Robert Moorebda663d2005-09-16 16:51:15 -0400514
Bob Mooreea936b72006-02-17 00:00:00 -0500515 /* Add the size of the optional resource_source */
516
517 extra_struct_bytes +=
Bob Moore96db2552005-11-02 00:00:00 -0500518 acpi_rs_stream_option_length(resource_length -
519 extra_struct_bytes,
520 minimum_aml_resource_length);
521 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400522
Lin Minge0fe0a82011-11-16 14:38:13 +0800523 case ACPI_RESOURCE_NAME_GPIO:
524
525 /* Vendor data is optional */
526
527 if (aml_resource->gpio.vendor_length) {
528 extra_struct_bytes +=
529 aml_resource->gpio.vendor_offset -
530 aml_resource->gpio.pin_table_offset +
531 aml_resource->gpio.vendor_length;
532 } else {
533 extra_struct_bytes +=
534 aml_resource->large_header.resource_length +
535 sizeof(struct aml_resource_large_header) -
536 aml_resource->gpio.pin_table_offset;
537 }
538 break;
539
540 case ACPI_RESOURCE_NAME_SERIAL_BUS:
541
542 minimum_aml_resource_length =
543 acpi_gbl_resource_aml_serial_bus_sizes
544 [aml_resource->common_serial_bus.type];
545 extra_struct_bytes +=
546 aml_resource->common_serial_bus.resource_length -
547 minimum_aml_resource_length;
548 break;
549
Bob Moore96db2552005-11-02 00:00:00 -0500550 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000551
Bob Moore96db2552005-11-02 00:00:00 -0500552 break;
Robert Moorebda663d2005-09-16 16:51:15 -0400553 }
554
Bob Mooreea936b72006-02-17 00:00:00 -0500555 /*
556 * Update the required buffer size for the internal descriptor structs
557 *
558 * Important: Round the size up for the appropriate alignment. This
559 * is a requirement on IA64.
560 */
Lin Minge0fe0a82011-11-16 14:38:13 +0800561 if (acpi_ut_get_resource_type(aml_buffer) ==
562 ACPI_RESOURCE_NAME_SERIAL_BUS) {
563 buffer_size =
564 acpi_gbl_resource_struct_serial_bus_sizes
565 [aml_resource->common_serial_bus.type] +
566 extra_struct_bytes;
567 } else {
568 buffer_size =
569 acpi_gbl_resource_struct_sizes[resource_index] +
570 extra_struct_bytes;
571 }
Robert Moorebda663d2005-09-16 16:51:15 -0400572
Bob Moore1fad8732015-12-29 13:54:36 +0800573 buffer_size = (u32)ACPI_ROUND_UP_TO_NATIVE_WORD(buffer_size);
Bob Mooreea936b72006-02-17 00:00:00 -0500574 *size_needed += buffer_size;
575
576 ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
Bob Mooreb229cf92006-04-21 17:15:00 -0400577 "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
Bob Mooreea936b72006-02-17 00:00:00 -0500578 acpi_ut_get_resource_type(aml_buffer),
579 acpi_ut_get_descriptor_length(aml_buffer),
580 buffer_size));
Robert Moorebda663d2005-09-16 16:51:15 -0400581
582 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500583 * Point to the next resource within the AML stream using the length
584 * contained in the resource descriptor header
Robert Moorebda663d2005-09-16 16:51:15 -0400585 */
Bob Moore96db2552005-11-02 00:00:00 -0500586 aml_buffer += acpi_ut_get_descriptor_length(aml_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
Bob Moore96db2552005-11-02 00:00:00 -0500589 /* Did not find an end_tag resource descriptor */
Robert Moore44f6c012005-04-18 22:49:35 -0400590
Bob Moore96db2552005-11-02 00:00:00 -0500591 return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/*******************************************************************************
595 *
596 * FUNCTION: acpi_rs_get_pci_routing_table_length
597 *
598 * PARAMETERS: package_object - Pointer to the package object
599 * buffer_size_needed - u32 pointer of the size buffer
600 * needed to properly return the
601 * parsed data
602 *
603 * RETURN: Status
604 *
605 * DESCRIPTION: Given a package representing a PCI routing table, this
606 * calculates the size of the corresponding linked list of
607 * descriptions.
608 *
609 ******************************************************************************/
610
611acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400612acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800613 acpi_size *buffer_size_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Len Brown4be44fc2005-08-05 00:44:28 -0400615 u32 number_of_elements;
616 acpi_size temp_size_needed = 0;
617 union acpi_operand_object **top_object_list;
618 u32 index;
619 union acpi_operand_object *package_element;
620 union acpi_operand_object **sub_object_list;
621 u8 name_found;
622 u32 table_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Bob Mooreb229cf92006-04-21 17:15:00 -0400624 ACPI_FUNCTION_TRACE(rs_get_pci_routing_table_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 number_of_elements = package_object->package.count;
627
628 /*
629 * Calculate the size of the return buffer.
630 * The base size is the number of elements * the sizes of the
Bob Moore73a30902012-10-31 02:26:55 +0000631 * structures. Additional space for the strings is added below.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * The minus one is to subtract the size of the u8 Source[1]
633 * member because it is added below.
634 *
635 * But each PRT_ENTRY structure has a pointer to a string and
636 * the size of that string must be found.
637 */
638 top_object_list = package_object->package.elements;
639
640 for (index = 0; index < number_of_elements; index++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400641
Bob Moore0a16d122014-02-26 10:31:18 +0800642 /* Dereference the subpackage */
Robert Moore44f6c012005-04-18 22:49:35 -0400643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 package_element = *top_object_list;
645
Robert Moore53951bd2009-05-02 11:48:37 -0700646 /* We must have a valid Package object */
647
648 if (!package_element ||
649 (package_element->common.type != ACPI_TYPE_PACKAGE)) {
Bob Moore474caff2009-05-21 10:10:16 +0800650 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Robert Moore53951bd2009-05-02 11:48:37 -0700651 }
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /*
654 * The sub_object_list will now point to an array of the
655 * four IRQ elements: Address, Pin, Source and source_index
656 */
657 sub_object_list = package_element->package.elements;
658
Robert Moore44f6c012005-04-18 22:49:35 -0400659 /* Scan the irq_table_elements for the Source Name String */
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 name_found = FALSE;
662
Lv Zhengaa6329c2013-06-08 09:01:01 +0800663 for (table_index = 0;
664 table_index < package_element->package.count
665 && !name_found; table_index++) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500666 if (*sub_object_list && /* Null object allowed */
667 ((ACPI_TYPE_STRING ==
Bob Moore3371c192009-02-18 14:44:03 +0800668 (*sub_object_list)->common.type) ||
Bob Mooreb8e4d892006-01-27 16:43:00 -0500669 ((ACPI_TYPE_LOCAL_REFERENCE ==
Bob Moore3371c192009-02-18 14:44:03 +0800670 (*sub_object_list)->common.type) &&
Bob Moore1044f1f2008-09-27 11:08:41 +0800671 ((*sub_object_list)->reference.class ==
672 ACPI_REFCLASS_NAME)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 name_found = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400674 } else {
Robert Moore44f6c012005-04-18 22:49:35 -0400675 /* Look at the next element */
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 sub_object_list++;
678 }
679 }
680
Len Brown4be44fc2005-08-05 00:44:28 -0400681 temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Robert Moore44f6c012005-04-18 22:49:35 -0400683 /* Was a String type found? */
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (name_found) {
Bob Moore3371c192009-02-18 14:44:03 +0800686 if ((*sub_object_list)->common.type == ACPI_TYPE_STRING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /*
688 * The length String.Length field does not include the
689 * terminating NULL, add 1
690 */
Robert Moore44f6c012005-04-18 22:49:35 -0400691 temp_size_needed += ((acpi_size)
Len Brown4be44fc2005-08-05 00:44:28 -0400692 (*sub_object_list)->string.
693 length + 1);
694 } else {
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000695 temp_size_needed += acpi_ns_get_pathname_length((*sub_object_list)->reference.node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
Len Brown4be44fc2005-08-05 00:44:28 -0400697 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * If no name was found, then this is a NULL, which is
700 * translated as a u32 zero.
701 */
Len Brown4be44fc2005-08-05 00:44:28 -0400702 temp_size_needed += sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 /* Round up the size since each element must be aligned */
706
Bob Moore958dd242006-05-12 17:12:00 -0400707 temp_size_needed = ACPI_ROUND_UP_TO_64BIT(temp_size_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Robert Moore44f6c012005-04-18 22:49:35 -0400709 /* Point to the next union acpi_operand_object */
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 top_object_list++;
712 }
713
714 /*
Bob Mooreea936b72006-02-17 00:00:00 -0500715 * Add an extra element to the end of the list, essentially a
Robert Moore44f6c012005-04-18 22:49:35 -0400716 * NULL terminator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
Len Brown4be44fc2005-08-05 00:44:28 -0400718 *buffer_size_needed =
719 temp_size_needed + sizeof(struct acpi_pci_routing_table);
720 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}