Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Module Name: rsutils - Utilities for the resource manager |
| 4 | * |
| 5 | ******************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | fbb7a2d | 2014-02-08 09:42:25 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2014, Intel Corp. |
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> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 45 | #include "accommon.h" |
| 46 | #include "acnamesp.h" |
| 47 | #include "acresrc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define _COMPONENT ACPI_RESOURCES |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("rsutils") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /******************************************************************************* |
| 53 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 54 | * FUNCTION: acpi_rs_decode_bitmask |
| 55 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 56 | * PARAMETERS: mask - Bitmask to decode |
| 57 | * list - Where the converted list is returned |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 58 | * |
| 59 | * RETURN: Count of bits set (length of list) |
| 60 | * |
| 61 | * DESCRIPTION: Convert a bit mask into a list of values |
| 62 | * |
| 63 | ******************************************************************************/ |
| 64 | u8 acpi_rs_decode_bitmask(u16 mask, u8 * list) |
| 65 | { |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 66 | u8 i; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 67 | u8 bit_count; |
| 68 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 69 | ACPI_FUNCTION_ENTRY(); |
| 70 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 71 | /* Decode the mask bits */ |
| 72 | |
| 73 | for (i = 0, bit_count = 0; mask; i++) { |
| 74 | if (mask & 0x0001) { |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 75 | list[bit_count] = i; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 76 | bit_count++; |
| 77 | } |
| 78 | |
| 79 | mask >>= 1; |
| 80 | } |
| 81 | |
| 82 | return (bit_count); |
| 83 | } |
| 84 | |
| 85 | /******************************************************************************* |
| 86 | * |
| 87 | * FUNCTION: acpi_rs_encode_bitmask |
| 88 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 89 | * PARAMETERS: list - List of values to encode |
| 90 | * count - Length of list |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 91 | * |
| 92 | * RETURN: Encoded bitmask |
| 93 | * |
| 94 | * DESCRIPTION: Convert a list of values to an encoded bitmask |
| 95 | * |
| 96 | ******************************************************************************/ |
| 97 | |
| 98 | u16 acpi_rs_encode_bitmask(u8 * list, u8 count) |
| 99 | { |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 100 | u32 i; |
| 101 | u16 mask; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 102 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 103 | ACPI_FUNCTION_ENTRY(); |
| 104 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 105 | /* Encode the list into a single bitmask */ |
| 106 | |
| 107 | for (i = 0, mask = 0; i < count; i++) { |
Bob Moore | 1d18c05 | 2008-04-10 19:06:40 +0400 | [diff] [blame] | 108 | mask |= (0x1 << list[i]); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 109 | } |
| 110 | |
Lv Zheng | 9c0d793 | 2012-12-19 05:37:21 +0000 | [diff] [blame] | 111 | return (mask); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /******************************************************************************* |
| 115 | * |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 116 | * FUNCTION: acpi_rs_move_data |
| 117 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 118 | * PARAMETERS: destination - Pointer to the destination descriptor |
| 119 | * source - Pointer to the source descriptor |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 120 | * item_count - How many items to move |
| 121 | * move_type - Byte width |
| 122 | * |
| 123 | * RETURN: None |
| 124 | * |
| 125 | * DESCRIPTION: Move multiple data items from one descriptor to another. Handles |
| 126 | * alignment issues and endian issues if necessary, as configured |
| 127 | * via the ACPI_MOVE_* macros. (This is why a memcpy is not used) |
| 128 | * |
| 129 | ******************************************************************************/ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 130 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 131 | void |
| 132 | acpi_rs_move_data(void *destination, void *source, u16 item_count, u8 move_type) |
| 133 | { |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 134 | u32 i; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 135 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 136 | ACPI_FUNCTION_ENTRY(); |
| 137 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 138 | /* One move per item */ |
| 139 | |
| 140 | for (i = 0; i < item_count; i++) { |
| 141 | switch (move_type) { |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 142 | /* |
| 143 | * For the 8-bit case, we can perform the move all at once |
| 144 | * since there are no alignment or endian issues |
| 145 | */ |
| 146 | case ACPI_RSC_MOVE8: |
Lin Ming | e0fe0a8 | 2011-11-16 14:38:13 +0800 | [diff] [blame] | 147 | case ACPI_RSC_MOVE_GPIO_RES: |
| 148 | case ACPI_RSC_MOVE_SERIAL_VEN: |
| 149 | case ACPI_RSC_MOVE_SERIAL_RES: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 150 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 151 | ACPI_MEMCPY(destination, source, item_count); |
| 152 | return; |
| 153 | |
| 154 | /* |
| 155 | * 16-, 32-, and 64-bit cases must use the move macros that perform |
Lucas De Marchi | 58f87ed | 2010-09-07 12:49:45 -0400 | [diff] [blame] | 156 | * endian conversion and/or accommodate hardware that cannot perform |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 157 | * misaligned memory transfers |
| 158 | */ |
| 159 | case ACPI_RSC_MOVE16: |
Lin Ming | e0fe0a8 | 2011-11-16 14:38:13 +0800 | [diff] [blame] | 160 | case ACPI_RSC_MOVE_GPIO_PIN: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 161 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 162 | ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i], |
| 163 | &ACPI_CAST_PTR(u16, source)[i]); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 164 | break; |
| 165 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 166 | case ACPI_RSC_MOVE32: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 167 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 168 | ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i], |
| 169 | &ACPI_CAST_PTR(u32, source)[i]); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 170 | break; |
| 171 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 172 | case ACPI_RSC_MOVE64: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 173 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 174 | ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i], |
| 175 | &ACPI_CAST_PTR(u64, source)[i]); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 176 | break; |
| 177 | |
| 178 | default: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 179 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 180 | return; |
| 181 | } |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | /******************************************************************************* |
| 186 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 187 | * FUNCTION: acpi_rs_set_resource_length |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 188 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 189 | * PARAMETERS: total_length - Length of the AML descriptor, including |
| 190 | * the header and length fields. |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 191 | * aml - Pointer to the raw AML descriptor |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 192 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 193 | * RETURN: None |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 194 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 195 | * DESCRIPTION: Set the resource_length field of an AML |
| 196 | * resource descriptor, both Large and Small descriptors are |
| 197 | * supported automatically. Note: Descriptor Type field must |
| 198 | * be valid. |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 199 | * |
| 200 | ******************************************************************************/ |
| 201 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 202 | void |
| 203 | acpi_rs_set_resource_length(acpi_rsdesc_size total_length, |
| 204 | union aml_resource *aml) |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 205 | { |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 206 | acpi_rs_length resource_length; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 207 | |
| 208 | ACPI_FUNCTION_ENTRY(); |
| 209 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 210 | /* Length is the total descriptor length minus the header length */ |
| 211 | |
| 212 | resource_length = (acpi_rs_length) |
| 213 | (total_length - acpi_ut_get_resource_header_length(aml)); |
| 214 | |
| 215 | /* Length is stored differently for large and small descriptors */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 216 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 217 | if (aml->small_header.descriptor_type & ACPI_RESOURCE_NAME_LARGE) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 218 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 219 | /* Large descriptor -- bytes 1-2 contain the 16-bit length */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 220 | |
| 221 | ACPI_MOVE_16_TO_16(&aml->large_header.resource_length, |
| 222 | &resource_length); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 223 | } else { |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 224 | /* Small descriptor -- bits 2:0 of byte 0 contain the length */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 225 | |
| 226 | aml->small_header.descriptor_type = (u8) |
| 227 | |
| 228 | /* Clear any existing length, preserving descriptor type bits */ |
| 229 | ((aml->small_header. |
| 230 | descriptor_type & ~ACPI_RESOURCE_NAME_SMALL_LENGTH_MASK) |
| 231 | |
| 232 | | resource_length); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 233 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /******************************************************************************* |
| 237 | * |
| 238 | * FUNCTION: acpi_rs_set_resource_header |
| 239 | * |
| 240 | * PARAMETERS: descriptor_type - Byte to be inserted as the type |
| 241 | * total_length - Length of the AML descriptor, including |
| 242 | * the header and length fields. |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 243 | * aml - Pointer to the raw AML descriptor |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 244 | * |
| 245 | * RETURN: None |
| 246 | * |
| 247 | * DESCRIPTION: Set the descriptor_type and resource_length fields of an AML |
| 248 | * resource descriptor, both Large and Small descriptors are |
| 249 | * supported automatically |
| 250 | * |
| 251 | ******************************************************************************/ |
| 252 | |
| 253 | void |
| 254 | acpi_rs_set_resource_header(u8 descriptor_type, |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 255 | acpi_rsdesc_size total_length, |
| 256 | union aml_resource *aml) |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 257 | { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 258 | ACPI_FUNCTION_ENTRY(); |
| 259 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 260 | /* Set the Resource Type */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 261 | |
| 262 | aml->small_header.descriptor_type = descriptor_type; |
| 263 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 264 | /* Set the Resource Length */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 265 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 266 | acpi_rs_set_resource_length(total_length, aml); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | /******************************************************************************* |
| 270 | * |
| 271 | * FUNCTION: acpi_rs_strcpy |
| 272 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 273 | * PARAMETERS: destination - Pointer to the destination string |
| 274 | * source - Pointer to the source string |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 275 | * |
| 276 | * RETURN: String length, including NULL terminator |
| 277 | * |
| 278 | * DESCRIPTION: Local string copy that returns the string length, saving a |
| 279 | * strcpy followed by a strlen. |
| 280 | * |
| 281 | ******************************************************************************/ |
| 282 | |
| 283 | static u16 acpi_rs_strcpy(char *destination, char *source) |
| 284 | { |
| 285 | u16 i; |
| 286 | |
| 287 | ACPI_FUNCTION_ENTRY(); |
| 288 | |
| 289 | for (i = 0; source[i]; i++) { |
| 290 | destination[i] = source[i]; |
| 291 | } |
| 292 | |
| 293 | destination[i] = 0; |
| 294 | |
| 295 | /* Return string length including the NULL terminator */ |
| 296 | |
| 297 | return ((u16) (i + 1)); |
| 298 | } |
| 299 | |
| 300 | /******************************************************************************* |
| 301 | * |
| 302 | * FUNCTION: acpi_rs_get_resource_source |
| 303 | * |
| 304 | * PARAMETERS: resource_length - Length field of the descriptor |
| 305 | * minimum_length - Minimum length of the descriptor (minus |
| 306 | * any optional fields) |
| 307 | * resource_source - Where the resource_source is returned |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 308 | * aml - Pointer to the raw AML descriptor |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 309 | * string_ptr - (optional) where to store the actual |
| 310 | * resource_source string |
| 311 | * |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 312 | * RETURN: Length of the string plus NULL terminator, rounded up to native |
| 313 | * word boundary |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 314 | * |
| 315 | * DESCRIPTION: Copy the optional resource_source data from a raw AML descriptor |
| 316 | * to an internal resource descriptor |
| 317 | * |
| 318 | ******************************************************************************/ |
| 319 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 320 | acpi_rs_length |
| 321 | acpi_rs_get_resource_source(acpi_rs_length resource_length, |
| 322 | acpi_rs_length minimum_length, |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 323 | struct acpi_resource_source * resource_source, |
| 324 | union aml_resource * aml, char *string_ptr) |
| 325 | { |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 326 | acpi_rsdesc_size total_length; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 327 | u8 *aml_resource_source; |
| 328 | |
| 329 | ACPI_FUNCTION_ENTRY(); |
| 330 | |
| 331 | total_length = |
| 332 | resource_length + sizeof(struct aml_resource_large_header); |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 333 | aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 334 | |
| 335 | /* |
| 336 | * resource_source is present if the length of the descriptor is longer than |
| 337 | * the minimum length. |
| 338 | * |
| 339 | * Note: Some resource descriptors will have an additional null, so |
| 340 | * we add 1 to the minimum length. |
| 341 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 342 | if (total_length > (acpi_rsdesc_size) (minimum_length + 1)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 343 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 344 | /* Get the resource_source_index */ |
| 345 | |
| 346 | resource_source->index = aml_resource_source[0]; |
| 347 | |
| 348 | resource_source->string_ptr = string_ptr; |
| 349 | if (!string_ptr) { |
| 350 | /* |
| 351 | * String destination pointer is not specified; Set the String |
| 352 | * pointer to the end of the current resource_source structure. |
| 353 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 354 | resource_source->string_ptr = |
| 355 | ACPI_ADD_PTR(char, resource_source, |
| 356 | sizeof(struct acpi_resource_source)); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 357 | } |
| 358 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 359 | /* |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 360 | * In order for the Resource length to be a multiple of the native |
| 361 | * word, calculate the length of the string (+1 for NULL terminator) |
| 362 | * and expand to the next word multiple. |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 363 | * |
| 364 | * Zero the entire area of the buffer. |
| 365 | */ |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 366 | total_length = |
| 367 | (u32) |
| 368 | ACPI_STRLEN(ACPI_CAST_PTR(char, &aml_resource_source[1])) + |
| 369 | 1; |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 370 | total_length = (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(total_length); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 371 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 372 | ACPI_MEMSET(resource_source->string_ptr, 0, total_length); |
| 373 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 374 | /* Copy the resource_source string to the destination */ |
| 375 | |
| 376 | resource_source->string_length = |
| 377 | acpi_rs_strcpy(resource_source->string_ptr, |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 378 | ACPI_CAST_PTR(char, |
| 379 | &aml_resource_source[1])); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 380 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 381 | return ((acpi_rs_length) total_length); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 382 | } |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 383 | |
| 384 | /* resource_source is not present */ |
| 385 | |
| 386 | resource_source->index = 0; |
| 387 | resource_source->string_length = 0; |
| 388 | resource_source->string_ptr = NULL; |
| 389 | return (0); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | /******************************************************************************* |
| 393 | * |
| 394 | * FUNCTION: acpi_rs_set_resource_source |
| 395 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 396 | * PARAMETERS: aml - Pointer to the raw AML descriptor |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 397 | * minimum_length - Minimum length of the descriptor (minus |
| 398 | * any optional fields) |
| 399 | * resource_source - Internal resource_source |
| 400 | |
| 401 | * |
| 402 | * RETURN: Total length of the AML descriptor |
| 403 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 404 | * DESCRIPTION: Convert an optional resource_source from internal format to a |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 405 | * raw AML resource descriptor |
| 406 | * |
| 407 | ******************************************************************************/ |
| 408 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 409 | acpi_rsdesc_size |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 410 | acpi_rs_set_resource_source(union aml_resource * aml, |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 411 | acpi_rs_length minimum_length, |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 412 | struct acpi_resource_source * resource_source) |
| 413 | { |
| 414 | u8 *aml_resource_source; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 415 | acpi_rsdesc_size descriptor_length; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 416 | |
| 417 | ACPI_FUNCTION_ENTRY(); |
| 418 | |
| 419 | descriptor_length = minimum_length; |
| 420 | |
| 421 | /* Non-zero string length indicates presence of a resource_source */ |
| 422 | |
| 423 | if (resource_source->string_length) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 424 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 425 | /* Point to the end of the AML descriptor */ |
| 426 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 427 | aml_resource_source = ACPI_ADD_PTR(u8, aml, minimum_length); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 428 | |
| 429 | /* Copy the resource_source_index */ |
| 430 | |
| 431 | aml_resource_source[0] = (u8) resource_source->index; |
| 432 | |
| 433 | /* Copy the resource_source string */ |
| 434 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 435 | ACPI_STRCPY(ACPI_CAST_PTR(char, &aml_resource_source[1]), |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 436 | resource_source->string_ptr); |
| 437 | |
| 438 | /* |
| 439 | * Add the length of the string (+ 1 for null terminator) to the |
| 440 | * final descriptor length |
| 441 | */ |
| 442 | descriptor_length += |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 443 | ((acpi_rsdesc_size) resource_source->string_length + 1); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | /* Return the new total length of the AML descriptor */ |
| 447 | |
| 448 | return (descriptor_length); |
| 449 | } |
| 450 | |
| 451 | /******************************************************************************* |
| 452 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | * FUNCTION: acpi_rs_get_prt_method_data |
| 454 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 455 | * PARAMETERS: node - Device node |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 456 | * ret_buffer - Pointer to a buffer structure for the |
| 457 | * results |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | * |
| 459 | * RETURN: Status |
| 460 | * |
| 461 | * DESCRIPTION: This function is called to get the _PRT value of an object |
| 462 | * contained in an object specified by the handle passed in |
| 463 | * |
| 464 | * If the function fails an appropriate status will be returned |
| 465 | * and the contents of the callers buffer is undefined. |
| 466 | * |
| 467 | ******************************************************************************/ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | acpi_status |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 470 | acpi_rs_get_prt_method_data(struct acpi_namespace_node * node, |
| 471 | struct acpi_buffer * ret_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 473 | union acpi_operand_object *obj_desc; |
| 474 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 476 | ACPI_FUNCTION_TRACE(rs_get_prt_method_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | /* Parameters guaranteed valid by caller */ |
| 479 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 480 | /* Execute the method, no parameters */ |
| 481 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 482 | status = acpi_ut_evaluate_object(node, METHOD_NAME__PRT, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 483 | ACPI_BTYPE_PACKAGE, &obj_desc); |
| 484 | if (ACPI_FAILURE(status)) { |
| 485 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | /* |
| 489 | * Create a resource linked list from the byte stream buffer that comes |
| 490 | * back from the _CRS method execution. |
| 491 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 492 | status = acpi_rs_create_pci_routing_table(obj_desc, ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
| 494 | /* On exit, we must delete the object returned by evaluate_object */ |
| 495 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 496 | acpi_ut_remove_reference(obj_desc); |
| 497 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | /******************************************************************************* |
| 501 | * |
| 502 | * FUNCTION: acpi_rs_get_crs_method_data |
| 503 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 504 | * PARAMETERS: node - Device node |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 505 | * ret_buffer - Pointer to a buffer structure for the |
| 506 | * results |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | * |
| 508 | * RETURN: Status |
| 509 | * |
| 510 | * DESCRIPTION: This function is called to get the _CRS value of an object |
| 511 | * contained in an object specified by the handle passed in |
| 512 | * |
| 513 | * If the function fails an appropriate status will be returned |
| 514 | * and the contents of the callers buffer is undefined. |
| 515 | * |
| 516 | ******************************************************************************/ |
| 517 | |
| 518 | acpi_status |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 519 | acpi_rs_get_crs_method_data(struct acpi_namespace_node *node, |
| 520 | struct acpi_buffer *ret_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 522 | union acpi_operand_object *obj_desc; |
| 523 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 525 | ACPI_FUNCTION_TRACE(rs_get_crs_method_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | /* Parameters guaranteed valid by caller */ |
| 528 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 529 | /* Execute the method, no parameters */ |
| 530 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 531 | status = acpi_ut_evaluate_object(node, METHOD_NAME__CRS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 532 | ACPI_BTYPE_BUFFER, &obj_desc); |
| 533 | if (ACPI_FAILURE(status)) { |
| 534 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | /* |
| 538 | * Make the call to create a resource linked list from the |
| 539 | * byte stream buffer that comes back from the _CRS method |
| 540 | * execution. |
| 541 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 542 | status = acpi_rs_create_resource_list(obj_desc, ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 544 | /* On exit, we must delete the object returned by evaluateObject */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 546 | acpi_ut_remove_reference(obj_desc); |
| 547 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
| 549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | /******************************************************************************* |
| 551 | * |
| 552 | * FUNCTION: acpi_rs_get_prs_method_data |
| 553 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 554 | * PARAMETERS: node - Device node |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 555 | * ret_buffer - Pointer to a buffer structure for the |
| 556 | * results |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | * |
| 558 | * RETURN: Status |
| 559 | * |
| 560 | * DESCRIPTION: This function is called to get the _PRS value of an object |
| 561 | * contained in an object specified by the handle passed in |
| 562 | * |
| 563 | * If the function fails an appropriate status will be returned |
| 564 | * and the contents of the callers buffer is undefined. |
| 565 | * |
| 566 | ******************************************************************************/ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | #ifdef ACPI_FUTURE_USAGE |
| 569 | acpi_status |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 570 | acpi_rs_get_prs_method_data(struct acpi_namespace_node *node, |
| 571 | struct acpi_buffer *ret_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 573 | union acpi_operand_object *obj_desc; |
| 574 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 576 | ACPI_FUNCTION_TRACE(rs_get_prs_method_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
| 578 | /* Parameters guaranteed valid by caller */ |
| 579 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 580 | /* Execute the method, no parameters */ |
| 581 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 582 | status = acpi_ut_evaluate_object(node, METHOD_NAME__PRS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 583 | ACPI_BTYPE_BUFFER, &obj_desc); |
| 584 | if (ACPI_FAILURE(status)) { |
| 585 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | /* |
| 589 | * Make the call to create a resource linked list from the |
| 590 | * byte stream buffer that comes back from the _CRS method |
| 591 | * execution. |
| 592 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 593 | status = acpi_rs_create_resource_list(obj_desc, ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 595 | /* On exit, we must delete the object returned by evaluateObject */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 597 | acpi_ut_remove_reference(obj_desc); |
| 598 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 600 | #endif /* ACPI_FUTURE_USAGE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | /******************************************************************************* |
| 603 | * |
Bob Moore | a91cdde | 2011-11-16 14:46:57 +0800 | [diff] [blame] | 604 | * FUNCTION: acpi_rs_get_aei_method_data |
| 605 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 606 | * PARAMETERS: node - Device node |
Bob Moore | a91cdde | 2011-11-16 14:46:57 +0800 | [diff] [blame] | 607 | * ret_buffer - Pointer to a buffer structure for the |
| 608 | * results |
| 609 | * |
| 610 | * RETURN: Status |
| 611 | * |
| 612 | * DESCRIPTION: This function is called to get the _AEI value of an object |
| 613 | * contained in an object specified by the handle passed in |
| 614 | * |
| 615 | * If the function fails an appropriate status will be returned |
| 616 | * and the contents of the callers buffer is undefined. |
| 617 | * |
| 618 | ******************************************************************************/ |
| 619 | |
| 620 | acpi_status |
| 621 | acpi_rs_get_aei_method_data(struct acpi_namespace_node *node, |
| 622 | struct acpi_buffer *ret_buffer) |
| 623 | { |
| 624 | union acpi_operand_object *obj_desc; |
| 625 | acpi_status status; |
| 626 | |
| 627 | ACPI_FUNCTION_TRACE(rs_get_aei_method_data); |
| 628 | |
| 629 | /* Parameters guaranteed valid by caller */ |
| 630 | |
| 631 | /* Execute the method, no parameters */ |
| 632 | |
| 633 | status = acpi_ut_evaluate_object(node, METHOD_NAME__AEI, |
| 634 | ACPI_BTYPE_BUFFER, &obj_desc); |
| 635 | if (ACPI_FAILURE(status)) { |
| 636 | return_ACPI_STATUS(status); |
| 637 | } |
| 638 | |
| 639 | /* |
| 640 | * Make the call to create a resource linked list from the |
| 641 | * byte stream buffer that comes back from the _CRS method |
| 642 | * execution. |
| 643 | */ |
| 644 | status = acpi_rs_create_resource_list(obj_desc, ret_buffer); |
| 645 | |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 646 | /* On exit, we must delete the object returned by evaluateObject */ |
Bob Moore | a91cdde | 2011-11-16 14:46:57 +0800 | [diff] [blame] | 647 | |
| 648 | acpi_ut_remove_reference(obj_desc); |
| 649 | return_ACPI_STATUS(status); |
| 650 | } |
| 651 | |
| 652 | /******************************************************************************* |
| 653 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | * FUNCTION: acpi_rs_get_method_data |
| 655 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 656 | * PARAMETERS: handle - Handle to the containing object |
| 657 | * path - Path to method, relative to Handle |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 658 | * ret_buffer - Pointer to a buffer structure for the |
| 659 | * results |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | * |
| 661 | * RETURN: Status |
| 662 | * |
| 663 | * DESCRIPTION: This function is called to get the _CRS or _PRS value of an |
| 664 | * object contained in an object specified by the handle passed in |
| 665 | * |
| 666 | * If the function fails an appropriate status will be returned |
| 667 | * and the contents of the callers buffer is undefined. |
| 668 | * |
| 669 | ******************************************************************************/ |
| 670 | |
| 671 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 672 | acpi_rs_get_method_data(acpi_handle handle, |
| 673 | char *path, struct acpi_buffer *ret_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | union acpi_operand_object *obj_desc; |
| 676 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 678 | ACPI_FUNCTION_TRACE(rs_get_method_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
| 680 | /* Parameters guaranteed valid by caller */ |
| 681 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 682 | /* Execute the method, no parameters */ |
| 683 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 684 | status = |
Rafael J. Wysocki | 0fdce47 | 2012-12-31 00:05:58 +0000 | [diff] [blame] | 685 | acpi_ut_evaluate_object(ACPI_CAST_PTR |
| 686 | (struct acpi_namespace_node, handle), path, |
| 687 | ACPI_BTYPE_BUFFER, &obj_desc); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 688 | if (ACPI_FAILURE(status)) { |
| 689 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | /* |
| 693 | * Make the call to create a resource linked list from the |
| 694 | * byte stream buffer that comes back from the method |
| 695 | * execution. |
| 696 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 697 | status = acpi_rs_create_resource_list(obj_desc, ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
| 699 | /* On exit, we must delete the object returned by evaluate_object */ |
| 700 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 701 | acpi_ut_remove_reference(obj_desc); |
| 702 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | /******************************************************************************* |
| 706 | * |
| 707 | * FUNCTION: acpi_rs_set_srs_method_data |
| 708 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 709 | * PARAMETERS: node - Device node |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 710 | * in_buffer - Pointer to a buffer structure of the |
| 711 | * parameter |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | * |
| 713 | * RETURN: Status |
| 714 | * |
| 715 | * DESCRIPTION: This function is called to set the _SRS of an object contained |
| 716 | * in an object specified by the handle passed in |
| 717 | * |
| 718 | * If the function fails an appropriate status will be returned |
| 719 | * and the contents of the callers buffer is undefined. |
| 720 | * |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 721 | * Note: Parameters guaranteed valid by caller |
| 722 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | ******************************************************************************/ |
| 724 | |
| 725 | acpi_status |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 726 | acpi_rs_set_srs_method_data(struct acpi_namespace_node *node, |
| 727 | struct acpi_buffer *in_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | { |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 729 | struct acpi_evaluate_info *info; |
| 730 | union acpi_operand_object *args[2]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 731 | acpi_status status; |
| 732 | struct acpi_buffer buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 734 | ACPI_FUNCTION_TRACE(rs_set_srs_method_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 736 | /* Allocate and initialize the evaluation information block */ |
| 737 | |
| 738 | info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info)); |
| 739 | if (!info) { |
| 740 | return_ACPI_STATUS(AE_NO_MEMORY); |
| 741 | } |
| 742 | |
| 743 | info->prefix_node = node; |
Bob Moore | 29a241c | 2013-05-30 10:00:01 +0800 | [diff] [blame] | 744 | info->relative_pathname = METHOD_NAME__SRS; |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 745 | info->parameters = args; |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 746 | info->flags = ACPI_IGNORE_RETURN_VALUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
| 748 | /* |
| 749 | * The in_buffer parameter will point to a linked list of |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 750 | * resource parameters. It needs to be formatted into a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | * byte stream to be sent in as an input parameter to _SRS |
| 752 | * |
| 753 | * Convert the linked list into a byte stream |
| 754 | */ |
| 755 | buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER; |
Lv Zheng | 9a0a359 | 2013-11-21 12:17:34 +0800 | [diff] [blame] | 756 | status = acpi_rs_create_aml_resources(in_buffer, &buffer); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 757 | if (ACPI_FAILURE(status)) { |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 758 | goto cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | } |
| 760 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 761 | /* Create and initialize the method parameter object */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 762 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 763 | args[0] = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER); |
| 764 | if (!args[0]) { |
| 765 | /* |
| 766 | * Must free the buffer allocated above (otherwise it is freed |
| 767 | * later) |
| 768 | */ |
| 769 | ACPI_FREE(buffer.pointer); |
| 770 | status = AE_NO_MEMORY; |
| 771 | goto cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
| 773 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 774 | args[0]->buffer.length = (u32) buffer.length; |
| 775 | args[0]->buffer.pointer = buffer.pointer; |
| 776 | args[0]->common.flags = AOPOBJ_DATA_VALID; |
| 777 | args[1] = NULL; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 778 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 779 | /* Execute the method, no return value is expected */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 781 | status = acpi_ns_evaluate(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 783 | /* Clean up and return the status from acpi_ns_evaluate */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 784 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 785 | acpi_ut_remove_reference(args[0]); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 786 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 787 | cleanup: |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 788 | ACPI_FREE(info); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 789 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |