Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Module Name: rsmisc - Miscellaneous resource descriptors |
| 4 | * |
| 5 | ******************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | a8357b0 | 2010-01-22 19:07:36 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2010, 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 "acresrc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | #define _COMPONENT ACPI_RESOURCES |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | ACPI_MODULE_NAME("rsmisc") |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 50 | #define INIT_RESOURCE_TYPE(i) i->resource_offset |
| 51 | #define INIT_RESOURCE_LENGTH(i) i->aml_offset |
| 52 | #define INIT_TABLE_LENGTH(i) i->value |
| 53 | #define COMPARE_OPCODE(i) i->resource_offset |
| 54 | #define COMPARE_TARGET(i) i->aml_offset |
| 55 | #define COMPARE_VALUE(i) i->value |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | /******************************************************************************* |
| 57 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 58 | * FUNCTION: acpi_rs_convert_aml_to_resource |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | * |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 60 | * PARAMETERS: Resource - Pointer to the resource descriptor |
| 61 | * Aml - Where the AML descriptor is returned |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 62 | * Info - Pointer to appropriate conversion table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | * |
| 64 | * RETURN: Status |
| 65 | * |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 66 | * DESCRIPTION: Convert an external AML resource descriptor to the corresponding |
| 67 | * internal resource descriptor |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * |
| 69 | ******************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | acpi_status |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 71 | acpi_rs_convert_aml_to_resource(struct acpi_resource *resource, |
| 72 | union aml_resource *aml, |
| 73 | struct acpi_rsconvert_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 75 | acpi_rs_length aml_resource_length; |
| 76 | void *source; |
| 77 | void *destination; |
| 78 | char *target; |
| 79 | u8 count; |
| 80 | u8 flags_mode = FALSE; |
| 81 | u16 item_count = 0; |
| 82 | u16 temp16 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 84 | ACPI_FUNCTION_TRACE(rs_convert_aml_to_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 86 | if (((acpi_size) resource) & 0x3) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 87 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 88 | /* Each internal resource struct is expected to be 32-bit aligned */ |
| 89 | |
| 90 | ACPI_WARNING((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 91 | "Misaligned resource pointer (get): %p Type 0x%2.2X Length %u", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 92 | resource, resource->type, resource->length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 95 | /* Extract the resource Length field (does not include header length) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 97 | aml_resource_length = acpi_ut_get_resource_length(aml); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | /* |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 100 | * First table entry must be ACPI_RSC_INITxxx and must contain the |
| 101 | * table length (# of table entries) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | */ |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 103 | count = INIT_TABLE_LENGTH(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 105 | while (count) { |
| 106 | /* |
| 107 | * Source is the external AML byte stream buffer, |
| 108 | * destination is the internal resource descriptor |
| 109 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 110 | source = ACPI_ADD_PTR(void, aml, info->aml_offset); |
| 111 | destination = |
| 112 | ACPI_ADD_PTR(void, resource, info->resource_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 114 | switch (info->opcode) { |
| 115 | case ACPI_RSC_INITGET: |
| 116 | /* |
| 117 | * Get the resource type and the initial (minimum) length |
| 118 | */ |
| 119 | ACPI_MEMSET(resource, 0, INIT_RESOURCE_LENGTH(info)); |
| 120 | resource->type = INIT_RESOURCE_TYPE(info); |
| 121 | resource->length = INIT_RESOURCE_LENGTH(info); |
| 122 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 124 | case ACPI_RSC_INITSET: |
| 125 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 127 | case ACPI_RSC_FLAGINIT: |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 128 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 129 | flags_mode = TRUE; |
| 130 | break; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 131 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 132 | case ACPI_RSC_1BITFLAG: |
| 133 | /* |
| 134 | * Mask and shift the flag bit |
| 135 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 136 | ACPI_SET8(destination) = (u8) |
| 137 | ((ACPI_GET8(source) >> info->value) & 0x01); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 138 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 140 | case ACPI_RSC_2BITFLAG: |
| 141 | /* |
| 142 | * Mask and shift the flag bits |
| 143 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 144 | ACPI_SET8(destination) = (u8) |
| 145 | ((ACPI_GET8(source) >> info->value) & 0x03); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 146 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 148 | case ACPI_RSC_COUNT: |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 149 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 150 | item_count = ACPI_GET8(source); |
| 151 | ACPI_SET8(destination) = (u8) item_count; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 152 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 153 | resource->length = resource->length + |
| 154 | (info->value * (item_count - 1)); |
| 155 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 157 | case ACPI_RSC_COUNT16: |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 158 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 159 | item_count = aml_resource_length; |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 160 | ACPI_SET16(destination) = item_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 162 | resource->length = resource->length + |
| 163 | (info->value * (item_count - 1)); |
| 164 | break; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 165 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 166 | case ACPI_RSC_LENGTH: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 168 | resource->length = resource->length + info->value; |
| 169 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 171 | case ACPI_RSC_MOVE8: |
| 172 | case ACPI_RSC_MOVE16: |
| 173 | case ACPI_RSC_MOVE32: |
| 174 | case ACPI_RSC_MOVE64: |
| 175 | /* |
| 176 | * Raw data move. Use the Info value field unless item_count has |
| 177 | * been previously initialized via a COUNT opcode |
| 178 | */ |
| 179 | if (info->value) { |
| 180 | item_count = info->value; |
| 181 | } |
| 182 | acpi_rs_move_data(destination, source, item_count, |
| 183 | info->opcode); |
| 184 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 186 | case ACPI_RSC_SET8: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 188 | ACPI_MEMSET(destination, info->aml_offset, info->value); |
| 189 | break; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 190 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 191 | case ACPI_RSC_DATA8: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 193 | target = ACPI_ADD_PTR(char, resource, info->value); |
| 194 | ACPI_MEMCPY(destination, source, ACPI_GET16(target)); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 195 | break; |
| 196 | |
| 197 | case ACPI_RSC_ADDRESS: |
| 198 | /* |
| 199 | * Common handler for address descriptor flags |
| 200 | */ |
| 201 | if (!acpi_rs_get_address_common(resource, aml)) { |
| 202 | return_ACPI_STATUS |
| 203 | (AE_AML_INVALID_RESOURCE_TYPE); |
| 204 | } |
| 205 | break; |
| 206 | |
| 207 | case ACPI_RSC_SOURCE: |
| 208 | /* |
| 209 | * Optional resource_source (Index and String) |
| 210 | */ |
| 211 | resource->length += |
| 212 | acpi_rs_get_resource_source(aml_resource_length, |
| 213 | info->value, |
| 214 | destination, aml, NULL); |
| 215 | break; |
| 216 | |
| 217 | case ACPI_RSC_SOURCEX: |
| 218 | /* |
| 219 | * Optional resource_source (Index and String). This is the more |
| 220 | * complicated case used by the Interrupt() macro |
| 221 | */ |
| 222 | target = |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 223 | ACPI_ADD_PTR(char, resource, |
| 224 | info->aml_offset + (item_count * 4)); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 225 | |
| 226 | resource->length += |
| 227 | acpi_rs_get_resource_source(aml_resource_length, |
| 228 | (acpi_rs_length) (((item_count - 1) * sizeof(u32)) + info->value), destination, aml, target); |
| 229 | break; |
| 230 | |
| 231 | case ACPI_RSC_BITMASK: |
| 232 | /* |
| 233 | * 8-bit encoded bitmask (DMA macro) |
| 234 | */ |
| 235 | item_count = |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 236 | acpi_rs_decode_bitmask(ACPI_GET8(source), |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 237 | destination); |
| 238 | if (item_count) { |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 239 | resource->length += (item_count - 1); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 240 | } |
| 241 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 242 | target = ACPI_ADD_PTR(char, resource, info->value); |
| 243 | ACPI_SET8(target) = (u8) item_count; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 244 | break; |
| 245 | |
| 246 | case ACPI_RSC_BITMASK16: |
| 247 | /* |
| 248 | * 16-bit encoded bitmask (IRQ macro) |
| 249 | */ |
| 250 | ACPI_MOVE_16_TO_16(&temp16, source); |
| 251 | |
| 252 | item_count = |
| 253 | acpi_rs_decode_bitmask(temp16, destination); |
| 254 | if (item_count) { |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 255 | resource->length += (item_count - 1); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 256 | } |
| 257 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 258 | target = ACPI_ADD_PTR(char, resource, info->value); |
| 259 | ACPI_SET8(target) = (u8) item_count; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 260 | break; |
| 261 | |
| 262 | case ACPI_RSC_EXIT_NE: |
| 263 | /* |
| 264 | * Control - Exit conversion if not equal |
| 265 | */ |
| 266 | switch (info->resource_offset) { |
| 267 | case ACPI_RSC_COMPARE_AML_LENGTH: |
| 268 | if (aml_resource_length != info->value) { |
| 269 | goto exit; |
| 270 | } |
| 271 | break; |
| 272 | |
| 273 | case ACPI_RSC_COMPARE_VALUE: |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 274 | if (ACPI_GET8(source) != info->value) { |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 275 | goto exit; |
| 276 | } |
| 277 | break; |
| 278 | |
| 279 | default: |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 280 | |
| 281 | ACPI_ERROR((AE_INFO, |
| 282 | "Invalid conversion sub-opcode")); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 283 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
| 284 | } |
| 285 | break; |
| 286 | |
| 287 | default: |
| 288 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 289 | ACPI_ERROR((AE_INFO, "Invalid conversion opcode")); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 290 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 293 | count--; |
| 294 | info++; |
| 295 | } |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 296 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 297 | exit: |
| 298 | if (!flags_mode) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 299 | |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 300 | /* Round the resource struct length up to the next boundary (32 or 64) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 302 | resource->length = |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 303 | (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(resource->length); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 304 | } |
| 305 | return_ACPI_STATUS(AE_OK); |
| 306 | } |
| 307 | |
| 308 | /******************************************************************************* |
| 309 | * |
| 310 | * FUNCTION: acpi_rs_convert_resource_to_aml |
| 311 | * |
| 312 | * PARAMETERS: Resource - Pointer to the resource descriptor |
| 313 | * Aml - Where the AML descriptor is returned |
| 314 | * Info - Pointer to appropriate conversion table |
| 315 | * |
| 316 | * RETURN: Status |
| 317 | * |
| 318 | * DESCRIPTION: Convert an internal resource descriptor to the corresponding |
| 319 | * external AML resource descriptor. |
| 320 | * |
| 321 | ******************************************************************************/ |
| 322 | |
| 323 | acpi_status |
| 324 | acpi_rs_convert_resource_to_aml(struct acpi_resource *resource, |
| 325 | union aml_resource *aml, |
| 326 | struct acpi_rsconvert_info *info) |
| 327 | { |
| 328 | void *source = NULL; |
| 329 | void *destination; |
| 330 | acpi_rsdesc_size aml_length = 0; |
| 331 | u8 count; |
| 332 | u16 temp16 = 0; |
| 333 | u16 item_count = 0; |
| 334 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 335 | ACPI_FUNCTION_TRACE(rs_convert_resource_to_aml); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 336 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 337 | /* |
| 338 | * First table entry must be ACPI_RSC_INITxxx and must contain the |
| 339 | * table length (# of table entries) |
| 340 | */ |
| 341 | count = INIT_TABLE_LENGTH(info); |
| 342 | |
| 343 | while (count) { |
| 344 | /* |
| 345 | * Source is the internal resource descriptor, |
| 346 | * destination is the external AML byte stream buffer |
| 347 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 348 | source = ACPI_ADD_PTR(void, resource, info->resource_offset); |
| 349 | destination = ACPI_ADD_PTR(void, aml, info->aml_offset); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 350 | |
| 351 | switch (info->opcode) { |
| 352 | case ACPI_RSC_INITSET: |
| 353 | |
| 354 | ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info)); |
| 355 | aml_length = INIT_RESOURCE_LENGTH(info); |
| 356 | acpi_rs_set_resource_header(INIT_RESOURCE_TYPE(info), |
| 357 | aml_length, aml); |
| 358 | break; |
| 359 | |
| 360 | case ACPI_RSC_INITGET: |
| 361 | break; |
| 362 | |
| 363 | case ACPI_RSC_FLAGINIT: |
| 364 | /* |
| 365 | * Clear the flag byte |
| 366 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 367 | ACPI_SET8(destination) = 0; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 368 | break; |
| 369 | |
| 370 | case ACPI_RSC_1BITFLAG: |
| 371 | /* |
| 372 | * Mask and shift the flag bit |
| 373 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 374 | ACPI_SET8(destination) |= (u8) |
| 375 | ((ACPI_GET8(source) & 0x01) << info->value); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 376 | break; |
| 377 | |
| 378 | case ACPI_RSC_2BITFLAG: |
| 379 | /* |
| 380 | * Mask and shift the flag bits |
| 381 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 382 | ACPI_SET8(destination) |= (u8) |
| 383 | ((ACPI_GET8(source) & 0x03) << info->value); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 384 | break; |
| 385 | |
| 386 | case ACPI_RSC_COUNT: |
| 387 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 388 | item_count = ACPI_GET8(source); |
| 389 | ACPI_SET8(destination) = (u8) item_count; |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 390 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 391 | aml_length = |
| 392 | (u16) (aml_length + |
| 393 | (info->value * (item_count - 1))); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 394 | break; |
| 395 | |
| 396 | case ACPI_RSC_COUNT16: |
| 397 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 398 | item_count = ACPI_GET16(source); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 399 | aml_length = (u16) (aml_length + item_count); |
| 400 | acpi_rs_set_resource_length(aml_length, aml); |
| 401 | break; |
| 402 | |
| 403 | case ACPI_RSC_LENGTH: |
| 404 | |
| 405 | acpi_rs_set_resource_length(info->value, aml); |
| 406 | break; |
| 407 | |
| 408 | case ACPI_RSC_MOVE8: |
| 409 | case ACPI_RSC_MOVE16: |
| 410 | case ACPI_RSC_MOVE32: |
| 411 | case ACPI_RSC_MOVE64: |
| 412 | |
| 413 | if (info->value) { |
| 414 | item_count = info->value; |
| 415 | } |
| 416 | acpi_rs_move_data(destination, source, item_count, |
| 417 | info->opcode); |
| 418 | break; |
| 419 | |
| 420 | case ACPI_RSC_ADDRESS: |
| 421 | |
| 422 | /* Set the Resource Type, General Flags, and Type-Specific Flags */ |
| 423 | |
| 424 | acpi_rs_set_address_common(aml, resource); |
| 425 | break; |
| 426 | |
| 427 | case ACPI_RSC_SOURCEX: |
| 428 | /* |
| 429 | * Optional resource_source (Index and String) |
| 430 | */ |
| 431 | aml_length = |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 432 | acpi_rs_set_resource_source(aml, (acpi_rs_length) |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 433 | aml_length, source); |
| 434 | acpi_rs_set_resource_length(aml_length, aml); |
| 435 | break; |
| 436 | |
| 437 | case ACPI_RSC_SOURCE: |
| 438 | /* |
| 439 | * Optional resource_source (Index and String). This is the more |
| 440 | * complicated case used by the Interrupt() macro |
| 441 | */ |
| 442 | aml_length = |
| 443 | acpi_rs_set_resource_source(aml, info->value, |
| 444 | source); |
| 445 | acpi_rs_set_resource_length(aml_length, aml); |
| 446 | break; |
| 447 | |
| 448 | case ACPI_RSC_BITMASK: |
| 449 | /* |
| 450 | * 8-bit encoded bitmask (DMA macro) |
| 451 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 452 | ACPI_SET8(destination) = (u8) |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 453 | acpi_rs_encode_bitmask(source, |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 454 | *ACPI_ADD_PTR(u8, resource, |
| 455 | info->value)); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 456 | break; |
| 457 | |
| 458 | case ACPI_RSC_BITMASK16: |
| 459 | /* |
| 460 | * 16-bit encoded bitmask (IRQ macro) |
| 461 | */ |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 462 | temp16 = acpi_rs_encode_bitmask(source, |
| 463 | *ACPI_ADD_PTR(u8, |
| 464 | resource, |
| 465 | info-> |
| 466 | value)); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 467 | ACPI_MOVE_16_TO_16(destination, &temp16); |
| 468 | break; |
| 469 | |
| 470 | case ACPI_RSC_EXIT_LE: |
| 471 | /* |
| 472 | * Control - Exit conversion if less than or equal |
| 473 | */ |
| 474 | if (item_count <= info->value) { |
| 475 | goto exit; |
| 476 | } |
| 477 | break; |
| 478 | |
| 479 | case ACPI_RSC_EXIT_NE: |
| 480 | /* |
| 481 | * Control - Exit conversion if not equal |
| 482 | */ |
| 483 | switch (COMPARE_OPCODE(info)) { |
| 484 | case ACPI_RSC_COMPARE_VALUE: |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 485 | |
| 486 | if (*ACPI_ADD_PTR(u8, resource, |
| 487 | COMPARE_TARGET(info)) != |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 488 | COMPARE_VALUE(info)) { |
| 489 | goto exit; |
| 490 | } |
| 491 | break; |
| 492 | |
| 493 | default: |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 494 | |
| 495 | ACPI_ERROR((AE_INFO, |
| 496 | "Invalid conversion sub-opcode")); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 497 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
| 498 | } |
| 499 | break; |
| 500 | |
Bob Moore | 1d5b285 | 2008-04-10 19:06:43 +0400 | [diff] [blame] | 501 | case ACPI_RSC_EXIT_EQ: |
| 502 | /* |
| 503 | * Control - Exit conversion if equal |
| 504 | */ |
| 505 | if (*ACPI_ADD_PTR(u8, resource, |
| 506 | COMPARE_TARGET(info)) == |
| 507 | COMPARE_VALUE(info)) { |
| 508 | goto exit; |
| 509 | } |
| 510 | break; |
| 511 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 512 | default: |
| 513 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 514 | ACPI_ERROR((AE_INFO, "Invalid conversion opcode")); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 515 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 517 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 518 | count--; |
| 519 | info++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 522 | exit: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 523 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 526 | #if 0 |
| 527 | /* Previous resource validations */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 529 | if (aml->ext_address64.revision_iD != AML_RESOURCE_EXTENDED_ADDRESS_REVISION) { |
| 530 | return_ACPI_STATUS(AE_SUPPORT); |
| 531 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 533 | if (resource->data.start_dpf.performance_robustness >= 3) { |
| 534 | return_ACPI_STATUS(AE_AML_BAD_RESOURCE_VALUE); |
| 535 | } |
| 536 | |
| 537 | if (((aml->irq.flags & 0x09) == 0x00) || ((aml->irq.flags & 0x09) == 0x09)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | /* |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 539 | * Only [active_high, edge_sensitive] or [active_low, level_sensitive] |
| 540 | * polarity/trigger interrupts are allowed (ACPI spec, section |
| 541 | * "IRQ Format"), so 0x00 and 0x09 are illegal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | */ |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 543 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 544 | "Invalid interrupt polarity/trigger in resource list, 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 545 | aml->irq.flags)); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 546 | return_ACPI_STATUS(AE_BAD_DATA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 549 | resource->data.extended_irq.interrupt_count = temp8; |
| 550 | if (temp8 < 1) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 551 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 552 | /* Must have at least one IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 554 | return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 555 | } |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 556 | |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 557 | if (resource->data.dma.transfer == 0x03) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 558 | ACPI_ERROR((AE_INFO, "Invalid DMA.Transfer preference (3)")); |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 559 | return_ACPI_STATUS(AE_BAD_DATA); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 560 | } |
Bob Moore | 0897831 | 2005-10-21 00:00:00 -0400 | [diff] [blame] | 561 | #endif |