Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Module Name: rscalc - Calculate stream and list lengths |
| 4 | * |
| 5 | ******************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | 4a90c7e | 2006-01-13 16:22:00 -0500 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2006, R. Byron Moore |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #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 Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("rscalc") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 52 | /* Local prototypes */ |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 53 | static u8 acpi_rs_count_set_bits(u16 bit_field); |
| 54 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 55 | static acpi_rs_length |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 56 | acpi_rs_struct_option_length(struct acpi_resource_source *resource_source); |
| 57 | |
| 58 | static u32 |
| 59 | acpi_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 | |
| 74 | static u8 acpi_rs_count_set_bits(u16 bit_field) |
| 75 | { |
| 76 | u8 bits_set; |
| 77 | |
| 78 | ACPI_FUNCTION_ENTRY(); |
| 79 | |
| 80 | for (bits_set = 0; bit_field; bits_set++) { |
| 81 | /* Zero the least significant bit that is set */ |
| 82 | |
| 83 | bit_field &= (bit_field - 1); |
| 84 | } |
| 85 | |
| 86 | return (bits_set); |
| 87 | } |
| 88 | |
| 89 | /******************************************************************************* |
| 90 | * |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 91 | * FUNCTION: acpi_rs_struct_option_length |
| 92 | * |
| 93 | * PARAMETERS: resource_source - Pointer to optional descriptor field |
| 94 | * |
| 95 | * RETURN: Status |
| 96 | * |
| 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 |
| 100 | * |
| 101 | ******************************************************************************/ |
| 102 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 103 | static acpi_rs_length |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 104 | acpi_rs_struct_option_length(struct acpi_resource_source *resource_source) |
| 105 | { |
| 106 | ACPI_FUNCTION_ENTRY(); |
| 107 | |
| 108 | /* |
| 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). |
| 112 | */ |
| 113 | if (resource_source->string_ptr) { |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 114 | return ((acpi_rs_length) (resource_source->string_length + 1)); |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | return (0); |
| 118 | } |
| 119 | |
| 120 | /******************************************************************************* |
| 121 | * |
| 122 | * FUNCTION: acpi_rs_stream_option_length |
| 123 | * |
| 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 |
| 127 | * |
| 128 | * RETURN: Length of optional string (0 if no string present) |
| 129 | * |
| 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 |
| 133 | * |
| 134 | ******************************************************************************/ |
| 135 | |
| 136 | static u32 |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 137 | acpi_rs_stream_option_length(u32 resource_length, |
| 138 | u32 minimum_aml_resource_length) |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 139 | { |
| 140 | u32 string_length = 0; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 141 | |
| 142 | ACPI_FUNCTION_ENTRY(); |
| 143 | |
| 144 | /* |
| 145 | * The resource_source_index and resource_source are optional elements of some |
| 146 | * Large-type resource descriptors. |
| 147 | */ |
| 148 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 149 | /* |
| 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. |
| 155 | */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 156 | if (resource_length > minimum_aml_resource_length) { |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 157 | /* Compute the length of the optional string */ |
| 158 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 159 | string_length = |
| 160 | resource_length - minimum_aml_resource_length - 1; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* Round up length to 32 bits for internal structure alignment */ |
| 164 | |
| 165 | return (ACPI_ROUND_UP_to_32_bITS(string_length)); |
| 166 | } |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /******************************************************************************* |
| 169 | * |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 170 | * FUNCTION: acpi_rs_get_aml_length |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | * |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 172 | * PARAMETERS: Resource - Pointer to the resource linked list |
| 173 | * size_needed - Where the required size is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | * |
| 175 | * RETURN: Status |
| 176 | * |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | * |
| 181 | ******************************************************************************/ |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | acpi_status |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 184 | acpi_rs_get_aml_length(struct acpi_resource * resource, acpi_size * size_needed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 186 | acpi_size aml_size_needed = 0; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 187 | acpi_rs_length total_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 189 | ACPI_FUNCTION_TRACE("rs_get_aml_length"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 191 | /* Traverse entire list of internal resource descriptors */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 192 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 193 | while (resource) { |
| 194 | /* Validate the descriptor type */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 196 | if (resource->type > ACPI_RESOURCE_TYPE_MAX) { |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 197 | return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE); |
| 198 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 200 | /* Get the base size of the (external stream) resource descriptor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 202 | total_size = acpi_gbl_aml_resource_sizes[resource->type]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 204 | /* |
| 205 | * Augment the base size for descriptors with optional and/or |
| 206 | * variable-length fields |
| 207 | */ |
| 208 | switch (resource->type) { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 209 | case ACPI_RESOURCE_TYPE_VENDOR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /* |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 211 | * Vendor Defined Resource: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
| 215 | */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 216 | if (resource->data.vendor.byte_length > 7) { |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 217 | /* Base size of a Large resource descriptor */ |
| 218 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 219 | total_size = |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 220 | sizeof(struct aml_resource_large_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 222 | |
| 223 | /* Add the size of the vendor-specific data */ |
| 224 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 225 | total_size = (acpi_rs_length) |
| 226 | (total_size + resource->data.vendor.byte_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | break; |
| 228 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 229 | case ACPI_RESOURCE_TYPE_END_TAG: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 231 | * End Tag: |
| 232 | * We are done -- return the accumulated total size. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 234 | *size_needed = aml_size_needed + total_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 236 | /* Normal exit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 238 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 240 | case ACPI_RESOURCE_TYPE_ADDRESS16: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 242 | * 16-Bit Address Resource: |
| 243 | * Add the size of the optional resource_source info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 245 | total_size = (acpi_rs_length) |
| 246 | (total_size + |
| 247 | acpi_rs_struct_option_length(&resource->data. |
| 248 | address16. |
| 249 | resource_source)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | break; |
| 251 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 252 | case ACPI_RESOURCE_TYPE_ADDRESS32: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | /* |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 254 | * 32-Bit Address Resource: |
| 255 | * Add the size of the optional resource_source info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 257 | total_size = (acpi_rs_length) |
| 258 | (total_size + |
| 259 | acpi_rs_struct_option_length(&resource->data. |
| 260 | address32. |
| 261 | resource_source)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | break; |
| 263 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 264 | case ACPI_RESOURCE_TYPE_ADDRESS64: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | /* |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 266 | * 64-Bit Address Resource: |
| 267 | * Add the size of the optional resource_source info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 269 | total_size = (acpi_rs_length) |
| 270 | (total_size + |
| 271 | acpi_rs_struct_option_length(&resource->data. |
| 272 | address64. |
| 273 | resource_source)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | break; |
| 275 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 276 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | /* |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 278 | * Extended IRQ Resource: |
| 279 | * Add the size of each additional optional interrupt beyond the |
| 280 | * required 1 (4 bytes for each u32 interrupt number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 282 | total_size = (acpi_rs_length) |
| 283 | (total_size + |
| 284 | ((resource->data.extended_irq.interrupt_count - |
| 285 | 1) * 4) + |
| 286 | /* Add the size of the optional resource_source info */ |
| 287 | acpi_rs_struct_option_length(&resource->data. |
| 288 | extended_irq. |
| 289 | resource_source)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | break; |
| 291 | |
| 292 | default: |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 293 | break; |
| 294 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 296 | /* Update the total */ |
| 297 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 298 | aml_size_needed += total_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 300 | /* Point to the next object */ |
| 301 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 302 | resource = |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 303 | ACPI_ADD_PTR(struct acpi_resource, resource, |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 304 | resource->length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 307 | /* Did not find an end_tag resource descriptor */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 308 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 309 | return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | /******************************************************************************* |
| 313 | * |
| 314 | * FUNCTION: acpi_rs_get_list_length |
| 315 | * |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 316 | * PARAMETERS: aml_buffer - Pointer to the resource byte stream |
| 317 | * aml_buffer_length - Size of aml_buffer |
| 318 | * size_needed - Where the size needed is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | * |
| 320 | * RETURN: Status |
| 321 | * |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 322 | * DESCRIPTION: Takes an external resource byte stream and calculates the size |
| 323 | * buffer needed to hold the corresponding internal resource |
| 324 | * descriptor linked list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | * |
| 326 | ******************************************************************************/ |
| 327 | |
| 328 | acpi_status |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 329 | acpi_rs_get_list_length(u8 * aml_buffer, |
| 330 | u32 aml_buffer_length, acpi_size * size_needed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 332 | acpi_status status; |
| 333 | u8 *end_aml; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 334 | u8 *buffer; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | u32 buffer_size = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 336 | u16 temp16; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 337 | u16 resource_length; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 338 | u32 extra_struct_bytes; |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 339 | u8 resource_index; |
| 340 | u8 minimum_aml_resource_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 342 | ACPI_FUNCTION_TRACE("rs_get_list_length"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 344 | end_aml = aml_buffer + aml_buffer_length; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 345 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 346 | /* Walk the list of AML resource descriptors */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 348 | while (aml_buffer < end_aml) { |
| 349 | /* Validate the Resource Type and Resource Length */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 351 | status = acpi_ut_validate_resource(aml_buffer, &resource_index); |
| 352 | if (ACPI_FAILURE(status)) { |
| 353 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 356 | /* Get the resource length and base (minimum) AML size */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 357 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 358 | resource_length = acpi_ut_get_resource_length(aml_buffer); |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 359 | minimum_aml_resource_length = |
| 360 | acpi_gbl_resource_aml_sizes[resource_index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 362 | /* |
| 363 | * Augment the size for descriptors with optional |
| 364 | * and/or variable length fields |
| 365 | */ |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 366 | extra_struct_bytes = 0; |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 367 | buffer = |
| 368 | aml_buffer + acpi_ut_get_resource_header_length(aml_buffer); |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 369 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 370 | switch (acpi_ut_get_resource_type(aml_buffer)) { |
| 371 | case ACPI_RESOURCE_NAME_IRQ: |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 372 | /* |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 373 | * IRQ Resource: |
| 374 | * Get the number of bits set in the 16-bit IRQ mask |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 375 | */ |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 376 | ACPI_MOVE_16_TO_16(&temp16, buffer); |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 377 | extra_struct_bytes = acpi_rs_count_set_bits(temp16); |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 378 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 379 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 380 | case ACPI_RESOURCE_NAME_DMA: |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 381 | /* |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 382 | * DMA Resource: |
| 383 | * Get the number of bits set in the 8-bit DMA mask |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 384 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 385 | extra_struct_bytes = acpi_rs_count_set_bits(*buffer); |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 386 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 387 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 388 | case ACPI_RESOURCE_NAME_VENDOR_SMALL: |
| 389 | /* |
| 390 | * Vendor Resource: |
| 391 | * Ensure a 32-bit boundary for the structure |
| 392 | */ |
| 393 | extra_struct_bytes = |
Bjorn Helgaas | 35b73ce | 2006-02-17 13:59:50 -0800 | [diff] [blame] | 394 | ACPI_ROUND_UP_to_32_bITS(resource_length); |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 395 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 396 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 397 | case ACPI_RESOURCE_NAME_END_TAG: |
| 398 | /* |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 399 | * End Tag: This is the normal exit, add size of end_tag |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 400 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 401 | *size_needed = buffer_size + ACPI_RS_SIZE_MIN; |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 402 | return_ACPI_STATUS(AE_OK); |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 403 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 404 | case ACPI_RESOURCE_NAME_VENDOR_LARGE: |
| 405 | /* |
| 406 | * Vendor Resource: |
| 407 | * Add vendor data and ensure a 32-bit boundary for the structure |
| 408 | */ |
| 409 | extra_struct_bytes = |
Bjorn Helgaas | 35b73ce | 2006-02-17 13:59:50 -0800 | [diff] [blame] | 410 | ACPI_ROUND_UP_to_32_bITS(resource_length); |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 411 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 412 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 413 | case ACPI_RESOURCE_NAME_ADDRESS32: |
| 414 | case ACPI_RESOURCE_NAME_ADDRESS16: |
| 415 | /* |
| 416 | * 32-Bit or 16-bit Address Resource: |
| 417 | * Add the size of any optional data (resource_source) |
| 418 | */ |
| 419 | extra_struct_bytes = |
| 420 | acpi_rs_stream_option_length(resource_length, |
| 421 | minimum_aml_resource_length); |
| 422 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 423 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 424 | case ACPI_RESOURCE_NAME_EXTENDED_IRQ: |
| 425 | /* |
| 426 | * Extended IRQ: |
| 427 | * Point past the interrupt_vector_flags to get the |
| 428 | * interrupt_table_length. |
| 429 | */ |
| 430 | buffer++; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 431 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 432 | extra_struct_bytes = |
| 433 | /* |
| 434 | * Add 4 bytes for each additional interrupt. Note: at |
| 435 | * least one interrupt is required and is included in |
| 436 | * the minimum descriptor size |
| 437 | */ |
| 438 | ((*buffer - 1) * sizeof(u32)) + |
| 439 | /* Add the size of any optional data (resource_source) */ |
| 440 | acpi_rs_stream_option_length(resource_length - |
| 441 | extra_struct_bytes, |
| 442 | minimum_aml_resource_length); |
| 443 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 444 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 445 | case ACPI_RESOURCE_NAME_ADDRESS64: |
| 446 | /* |
| 447 | * 64-Bit Address Resource: |
| 448 | * Add the size of any optional data (resource_source) |
| 449 | * Ensure a 64-bit boundary for the structure |
| 450 | */ |
| 451 | extra_struct_bytes = |
| 452 | ACPI_ROUND_UP_to_64_bITS |
| 453 | (acpi_rs_stream_option_length |
| 454 | (resource_length, minimum_aml_resource_length)); |
| 455 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 456 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 457 | default: |
| 458 | break; |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | /* Update the required buffer size for the internal descriptor structs */ |
| 462 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 463 | temp16 = (u16) (acpi_gbl_resource_struct_sizes[resource_index] + |
| 464 | extra_struct_bytes); |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 465 | buffer_size += (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(temp16); |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 466 | |
| 467 | /* |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 468 | * Point to the next resource within the stream |
Robert Moore | bda663d | 2005-09-16 16:51:15 -0400 | [diff] [blame] | 469 | * using the size of the header plus the length contained in the header |
| 470 | */ |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 471 | aml_buffer += acpi_ut_get_descriptor_length(aml_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 474 | /* Did not find an end_tag resource descriptor */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 475 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 476 | return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | } |
| 478 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | /******************************************************************************* |
| 480 | * |
| 481 | * FUNCTION: acpi_rs_get_pci_routing_table_length |
| 482 | * |
| 483 | * PARAMETERS: package_object - Pointer to the package object |
| 484 | * buffer_size_needed - u32 pointer of the size buffer |
| 485 | * needed to properly return the |
| 486 | * parsed data |
| 487 | * |
| 488 | * RETURN: Status |
| 489 | * |
| 490 | * DESCRIPTION: Given a package representing a PCI routing table, this |
| 491 | * calculates the size of the corresponding linked list of |
| 492 | * descriptions. |
| 493 | * |
| 494 | ******************************************************************************/ |
| 495 | |
| 496 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 497 | acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object, |
| 498 | acpi_size * buffer_size_needed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 500 | u32 number_of_elements; |
| 501 | acpi_size temp_size_needed = 0; |
| 502 | union acpi_operand_object **top_object_list; |
| 503 | u32 index; |
| 504 | union acpi_operand_object *package_element; |
| 505 | union acpi_operand_object **sub_object_list; |
| 506 | u8 name_found; |
| 507 | u32 table_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 509 | ACPI_FUNCTION_TRACE("rs_get_pci_routing_table_length"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | number_of_elements = package_object->package.count; |
| 512 | |
| 513 | /* |
| 514 | * Calculate the size of the return buffer. |
| 515 | * The base size is the number of elements * the sizes of the |
| 516 | * structures. Additional space for the strings is added below. |
| 517 | * The minus one is to subtract the size of the u8 Source[1] |
| 518 | * member because it is added below. |
| 519 | * |
| 520 | * But each PRT_ENTRY structure has a pointer to a string and |
| 521 | * the size of that string must be found. |
| 522 | */ |
| 523 | top_object_list = package_object->package.elements; |
| 524 | |
| 525 | for (index = 0; index < number_of_elements; index++) { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 526 | /* Dereference the sub-package */ |
| 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | package_element = *top_object_list; |
| 529 | |
| 530 | /* |
| 531 | * The sub_object_list will now point to an array of the |
| 532 | * four IRQ elements: Address, Pin, Source and source_index |
| 533 | */ |
| 534 | sub_object_list = package_element->package.elements; |
| 535 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 536 | /* Scan the irq_table_elements for the Source Name String */ |
| 537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | name_found = FALSE; |
| 539 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 540 | for (table_index = 0; table_index < 4 && !name_found; |
| 541 | table_index++) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 542 | if (*sub_object_list && /* Null object allowed */ |
| 543 | ((ACPI_TYPE_STRING == |
| 544 | ACPI_GET_OBJECT_TYPE(*sub_object_list)) || |
| 545 | ((ACPI_TYPE_LOCAL_REFERENCE == |
| 546 | ACPI_GET_OBJECT_TYPE(*sub_object_list)) && |
| 547 | ((*sub_object_list)->reference.opcode == |
| 548 | AML_INT_NAMEPATH_OP)))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | name_found = TRUE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 550 | } else { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 551 | /* Look at the next element */ |
| 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | sub_object_list++; |
| 554 | } |
| 555 | } |
| 556 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 557 | temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 559 | /* Was a String type found? */ |
| 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | if (name_found) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 562 | if (ACPI_GET_OBJECT_TYPE(*sub_object_list) == |
| 563 | ACPI_TYPE_STRING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | /* |
| 565 | * The length String.Length field does not include the |
| 566 | * terminating NULL, add 1 |
| 567 | */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 568 | temp_size_needed += ((acpi_size) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 569 | (*sub_object_list)->string. |
| 570 | length + 1); |
| 571 | } else { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 572 | temp_size_needed += acpi_ns_get_pathname_length((*sub_object_list)->reference.node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 574 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | /* |
| 576 | * If no name was found, then this is a NULL, which is |
| 577 | * translated as a u32 zero. |
| 578 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 579 | temp_size_needed += sizeof(u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | /* Round up the size since each element must be aligned */ |
| 583 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 584 | temp_size_needed = ACPI_ROUND_UP_to_64_bITS(temp_size_needed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 586 | /* Point to the next union acpi_operand_object */ |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | top_object_list++; |
| 589 | } |
| 590 | |
| 591 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 592 | * Adding an extra element to the end of the list, essentially a |
| 593 | * NULL terminator |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 595 | *buffer_size_needed = |
| 596 | temp_size_needed + sizeof(struct acpi_pci_routing_table); |
| 597 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |