1 /*******************************************************************************
3 * Module Name: rscalc - Calculate stream and list lengths
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2005, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/acresrc.h>
46 #include <acpi/amlcode.h>
47 #include <acpi/acnamesp.h>
49 #define _COMPONENT ACPI_RESOURCES
50 ACPI_MODULE_NAME("rscalc")
52 /* Local prototypes */
53 static u8 acpi_rs_count_set_bits(u16 bit_field);
56 acpi_rs_struct_option_length(struct acpi_resource_source *resource_source);
59 acpi_rs_stream_option_length(u32 resource_length, u32 minimum_total_length);
61 /*******************************************************************************
63 * FUNCTION: acpi_rs_count_set_bits
65 * PARAMETERS: bit_field - Field in which to count bits
67 * RETURN: Number of bits set within the field
69 * DESCRIPTION: Count the number of bits set in a resource field. Used for
70 * (Short descriptor) interrupt and DMA lists.
72 ******************************************************************************/
74 static u8 acpi_rs_count_set_bits(u16 bit_field)
78 ACPI_FUNCTION_ENTRY();
80 for (bits_set = 0; bit_field; bits_set++) {
81 /* Zero the least significant bit that is set */
83 bit_field &= (bit_field - 1);
89 /*******************************************************************************
91 * FUNCTION: acpi_rs_struct_option_length
93 * PARAMETERS: resource_source - Pointer to optional descriptor field
97 * DESCRIPTION: Common code to handle optional resource_source_index and
98 * resource_source fields in some Large descriptors. Used during
99 * list-to-stream conversion
101 ******************************************************************************/
104 acpi_rs_struct_option_length(struct acpi_resource_source *resource_source)
106 ACPI_FUNCTION_ENTRY();
109 * If the resource_source string is valid, return the size of the string
110 * (string_length includes the NULL terminator) plus the size of the
111 * resource_source_index (1).
113 if (resource_source->string_ptr) {
114 return ((acpi_size) resource_source->string_length + 1);
120 /*******************************************************************************
122 * FUNCTION: acpi_rs_stream_option_length
124 * PARAMETERS: resource_length - Length from the resource header
125 * minimum_total_length - Minimum length of this resource, before
126 * any optional fields. Includes header size
128 * RETURN: Length of optional string (0 if no string present)
130 * DESCRIPTION: Common code to handle optional resource_source_index and
131 * resource_source fields in some Large descriptors. Used during
132 * stream-to-list conversion
134 ******************************************************************************/
137 acpi_rs_stream_option_length(u32 resource_length,
138 u32 minimum_aml_resource_length)
140 u32 string_length = 0;
142 ACPI_FUNCTION_ENTRY();
145 * The resource_source_index and resource_source are optional elements of some
146 * Large-type resource descriptors.
150 * If the length of the actual resource descriptor is greater than the ACPI
151 * spec-defined minimum length, it means that a resource_source_index exists
152 * and is followed by a (required) null terminated string. The string length
153 * (including the null terminator) is the resource length minus the minimum
154 * length, minus one byte for the resource_source_index itself.
156 if (resource_length > minimum_aml_resource_length) {
157 /* Compute the length of the optional string */
160 resource_length - minimum_aml_resource_length - 1;
163 /* Round up length to 32 bits for internal structure alignment */
165 return (ACPI_ROUND_UP_to_32_bITS(string_length));
168 /*******************************************************************************
170 * FUNCTION: acpi_rs_get_aml_length
172 * PARAMETERS: Resource - Pointer to the resource linked list
173 * size_needed - Where the required size is returned
177 * DESCRIPTION: Takes a linked list of internal resource descriptors and
178 * calculates the size buffer needed to hold the corresponding
179 * external resource byte stream.
181 ******************************************************************************/
184 acpi_rs_get_aml_length(struct acpi_resource * resource, acpi_size * size_needed)
186 acpi_size aml_size_needed = 0;
187 acpi_size segment_size;
189 ACPI_FUNCTION_TRACE("rs_get_aml_length");
191 /* Traverse entire list of internal resource descriptors */
194 /* Validate the descriptor type */
196 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
197 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
200 /* Get the base size of the (external stream) resource descriptor */
202 segment_size = acpi_gbl_aml_resource_sizes[resource->type];
205 * Augment the base size for descriptors with optional and/or
206 * variable-length fields
208 switch (resource->type) {
209 case ACPI_RESOURCE_TYPE_VENDOR:
211 * Vendor Defined Resource:
212 * For a Vendor Specific resource, if the Length is between 1 and 7
213 * it will be created as a Small Resource data type, otherwise it
214 * is a Large Resource data type.
216 if (resource->data.vendor.byte_length > 7) {
217 /* Base size of a Large resource descriptor */
220 sizeof(struct aml_resource_large_header);
223 /* Add the size of the vendor-specific data */
225 segment_size += resource->data.vendor.byte_length;
228 case ACPI_RESOURCE_TYPE_END_TAG:
231 * We are done -- return the accumulated total size.
233 *size_needed = aml_size_needed + segment_size;
237 return_ACPI_STATUS(AE_OK);
239 case ACPI_RESOURCE_TYPE_ADDRESS16:
241 * 16-Bit Address Resource:
242 * Add the size of the optional resource_source info
245 acpi_rs_struct_option_length(&resource->data.
250 case ACPI_RESOURCE_TYPE_ADDRESS32:
252 * 32-Bit Address Resource:
253 * Add the size of the optional resource_source info
256 acpi_rs_struct_option_length(&resource->data.
261 case ACPI_RESOURCE_TYPE_ADDRESS64:
263 * 64-Bit Address Resource:
264 * Add the size of the optional resource_source info
267 acpi_rs_struct_option_length(&resource->data.
272 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
274 * Extended IRQ Resource:
275 * Add the size of each additional optional interrupt beyond the
276 * required 1 (4 bytes for each u32 interrupt number)
278 segment_size += (((acpi_size)
279 resource->data.extended_irq.
280 interrupt_count - 1) * 4);
282 /* Add the size of the optional resource_source info */
285 acpi_rs_struct_option_length(&resource->data.
294 /* Update the total */
296 aml_size_needed += segment_size;
298 /* Point to the next object */
300 resource = ACPI_PTR_ADD(struct acpi_resource,
301 resource, resource->length);
304 /* Did not find an END_TAG descriptor */
306 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
309 /*******************************************************************************
311 * FUNCTION: acpi_rs_get_list_length
313 * PARAMETERS: aml_buffer - Pointer to the resource byte stream
314 * aml_buffer_length - Size of aml_buffer
315 * size_needed - Where the size needed is returned
319 * DESCRIPTION: Takes an external resource byte stream and calculates the size
320 * buffer needed to hold the corresponding internal resource
321 * descriptor linked list.
323 ******************************************************************************/
326 acpi_rs_get_list_length(u8 * aml_buffer,
327 u32 aml_buffer_length, acpi_size * size_needed)
330 struct acpi_resource_info *resource_info;
332 u32 bytes_parsed = 0;
337 u32 extra_struct_bytes;
339 ACPI_FUNCTION_TRACE("rs_get_list_length");
341 while (bytes_parsed < aml_buffer_length) {
342 /* The next byte in the stream is the resource descriptor type */
344 resource_type = acpi_rs_get_resource_type(*aml_buffer);
346 /* Get the base stream size and structure sizes for the descriptor */
348 resource_info = acpi_rs_get_resource_info(resource_type);
349 if (!resource_info) {
350 return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
353 /* Get the Length field from the input resource descriptor */
356 acpi_rs_get_resource_length(ACPI_CAST_PTR
360 /* Augment the size for descriptors with optional fields */
362 extra_struct_bytes = 0;
364 if (!(resource_type & ACPI_RESOURCE_NAME_LARGE)) {
366 * Small resource descriptors
369 sizeof(struct aml_resource_small_header);
370 buffer = aml_buffer + header_length;
372 switch (resource_type) {
373 case ACPI_RESOURCE_NAME_IRQ:
376 * Get the number of bits set in the IRQ word
378 ACPI_MOVE_16_TO_16(&temp16, buffer);
380 (acpi_rs_count_set_bits(temp16) *
384 case ACPI_RESOURCE_NAME_DMA:
387 * Get the number of bits set in the DMA channels byte
389 ACPI_MOVE_16_TO_16(&temp16, buffer);
391 (acpi_rs_count_set_bits(temp16) *
395 case ACPI_RESOURCE_NAME_VENDOR_SMALL:
397 * Vendor Specific Resource:
398 * Ensure a 32-bit boundary for the structure
401 ACPI_ROUND_UP_to_32_bITS(resource_length);
404 case ACPI_RESOURCE_NAME_END_TAG:
407 * Terminate the loop now
409 aml_buffer_length = bytes_parsed;
417 * Large resource descriptors
420 sizeof(struct aml_resource_large_header);
421 buffer = aml_buffer + header_length;
423 switch (resource_type) {
424 case ACPI_RESOURCE_NAME_VENDOR_LARGE:
426 * Vendor Defined Resource:
427 * Add vendor data and ensure a 32-bit boundary for the structure
430 ACPI_ROUND_UP_to_32_bITS(resource_length);
433 case ACPI_RESOURCE_NAME_ADDRESS32:
434 case ACPI_RESOURCE_NAME_ADDRESS16:
436 * 32-Bit or 16-bit Address Resource:
437 * Add the size of any optional data (resource_source)
440 acpi_rs_stream_option_length
443 minimum_aml_resource_length);
446 case ACPI_RESOURCE_NAME_EXTENDED_IRQ:
449 * Point past the interrupt_vector_flags to get the
450 * interrupt_table_length.
455 * Add 4 bytes for each additional interrupt. Note: at least one
456 * interrupt is required and is included in the minimum
460 ((*buffer - 1) * sizeof(u32));
462 /* Add the size of any optional data (resource_source) */
464 extra_struct_bytes +=
465 acpi_rs_stream_option_length(resource_length
469 minimum_aml_resource_length);
472 case ACPI_RESOURCE_NAME_ADDRESS64:
474 * 64-Bit Address Resource:
475 * Add the size of any optional data (resource_source)
476 * Ensure a 64-bit boundary for the structure
479 ACPI_ROUND_UP_to_64_bITS
480 (acpi_rs_stream_option_length
483 minimum_aml_resource_length));
491 /* Update the required buffer size for the internal descriptor structs */
494 (u16) (resource_info->minimum_internal_struct_length +
496 buffer_size += (u32) ACPI_ALIGN_RESOURCE_SIZE(temp16);
499 * Update byte count and point to the next resource within the stream
500 * using the size of the header plus the length contained in the header
502 temp16 = (u16) (header_length + resource_length);
503 bytes_parsed += temp16;
504 aml_buffer += temp16;
507 /* This is the data the caller needs */
509 *size_needed = buffer_size;
510 return_ACPI_STATUS(AE_OK);
513 /*******************************************************************************
515 * FUNCTION: acpi_rs_get_pci_routing_table_length
517 * PARAMETERS: package_object - Pointer to the package object
518 * buffer_size_needed - u32 pointer of the size buffer
519 * needed to properly return the
524 * DESCRIPTION: Given a package representing a PCI routing table, this
525 * calculates the size of the corresponding linked list of
528 ******************************************************************************/
531 acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
532 acpi_size * buffer_size_needed)
534 u32 number_of_elements;
535 acpi_size temp_size_needed = 0;
536 union acpi_operand_object **top_object_list;
538 union acpi_operand_object *package_element;
539 union acpi_operand_object **sub_object_list;
543 ACPI_FUNCTION_TRACE("rs_get_pci_routing_table_length");
545 number_of_elements = package_object->package.count;
548 * Calculate the size of the return buffer.
549 * The base size is the number of elements * the sizes of the
550 * structures. Additional space for the strings is added below.
551 * The minus one is to subtract the size of the u8 Source[1]
552 * member because it is added below.
554 * But each PRT_ENTRY structure has a pointer to a string and
555 * the size of that string must be found.
557 top_object_list = package_object->package.elements;
559 for (index = 0; index < number_of_elements; index++) {
560 /* Dereference the sub-package */
562 package_element = *top_object_list;
565 * The sub_object_list will now point to an array of the
566 * four IRQ elements: Address, Pin, Source and source_index
568 sub_object_list = package_element->package.elements;
570 /* Scan the irq_table_elements for the Source Name String */
574 for (table_index = 0; table_index < 4 && !name_found;
576 if ((ACPI_TYPE_STRING ==
577 ACPI_GET_OBJECT_TYPE(*sub_object_list))
579 ((ACPI_TYPE_LOCAL_REFERENCE ==
580 ACPI_GET_OBJECT_TYPE(*sub_object_list))
581 && ((*sub_object_list)->reference.opcode ==
582 AML_INT_NAMEPATH_OP))) {
585 /* Look at the next element */
591 temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4);
593 /* Was a String type found? */
596 if (ACPI_GET_OBJECT_TYPE(*sub_object_list) ==
599 * The length String.Length field does not include the
600 * terminating NULL, add 1
602 temp_size_needed += ((acpi_size)
603 (*sub_object_list)->string.
606 temp_size_needed += acpi_ns_get_pathname_length((*sub_object_list)->reference.node);
610 * If no name was found, then this is a NULL, which is
611 * translated as a u32 zero.
613 temp_size_needed += sizeof(u32);
616 /* Round up the size since each element must be aligned */
618 temp_size_needed = ACPI_ROUND_UP_to_64_bITS(temp_size_needed);
620 /* Point to the next union acpi_operand_object */
626 * Adding an extra element to the end of the list, essentially a
629 *buffer_size_needed =
630 temp_size_needed + sizeof(struct acpi_pci_routing_table);
631 return_ACPI_STATUS(AE_OK);