Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: exprep - ACPI AML (p-code) execution - field prep utilities |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
David E. Box | 82a8094 | 2015-02-05 15:20:45 +0800 | [diff] [blame^] | 8 | * Copyright (C) 2000 - 2015, 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 "acinterp.h" |
| 47 | #include "amlcode.h" |
| 48 | #include "acnamesp.h" |
Bob Moore | 9ce8178 | 2011-11-16 13:39:07 +0800 | [diff] [blame] | 49 | #include "acdispat.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | ACPI_MODULE_NAME("exprep") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 54 | /* Local prototypes */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 55 | static u32 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 56 | acpi_ex_decode_field_access(union acpi_operand_object *obj_desc, |
| 57 | u8 field_flags, u32 * return_byte_alignment); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #ifdef ACPI_UNDER_DEVELOPMENT |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 60 | |
| 61 | static u32 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 62 | acpi_ex_generate_access(u32 field_bit_offset, |
| 63 | u32 field_bit_length, u32 region_length); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | /******************************************************************************* |
| 66 | * |
| 67 | * FUNCTION: acpi_ex_generate_access |
| 68 | * |
| 69 | * PARAMETERS: field_bit_offset - Start of field within parent region/buffer |
| 70 | * field_bit_length - Length of field in bits |
| 71 | * region_length - Length of parent in bytes |
| 72 | * |
| 73 | * RETURN: Field granularity (8, 16, 32 or 64) and |
| 74 | * byte_alignment (1, 2, 3, or 4) |
| 75 | * |
| 76 | * DESCRIPTION: Generate an optimal access width for fields defined with the |
| 77 | * any_acc keyword. |
| 78 | * |
| 79 | * NOTE: Need to have the region_length in order to check for boundary |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 80 | * conditions (end-of-region). However, the region_length is a deferred |
| 81 | * operation. Therefore, to complete this implementation, the generation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * of this access width must be deferred until the region length has |
| 83 | * been evaluated. |
| 84 | * |
| 85 | ******************************************************************************/ |
| 86 | |
| 87 | static u32 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | acpi_ex_generate_access(u32 field_bit_offset, |
| 89 | u32 field_bit_length, u32 region_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 91 | u32 field_byte_length; |
| 92 | u32 field_byte_offset; |
| 93 | u32 field_byte_end_offset; |
| 94 | u32 access_byte_width; |
| 95 | u32 field_start_offset; |
| 96 | u32 field_end_offset; |
| 97 | u32 minimum_access_width = 0xFFFFFFFF; |
| 98 | u32 minimum_accesses = 0xFFFFFFFF; |
| 99 | u32 accesses; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 101 | ACPI_FUNCTION_TRACE(ex_generate_access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
| 103 | /* Round Field start offset and length to "minimal" byte boundaries */ |
| 104 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 105 | field_byte_offset = ACPI_DIV_8(ACPI_ROUND_DOWN(field_bit_offset, 8)); |
| 106 | field_byte_end_offset = ACPI_DIV_8(ACPI_ROUND_UP(field_bit_length + |
| 107 | field_bit_offset, 8)); |
| 108 | field_byte_length = field_byte_end_offset - field_byte_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 111 | "Bit length %u, Bit offset %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 112 | field_bit_length, field_bit_offset)); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 113 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 114 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 115 | "Byte Length %u, Byte Offset %u, End Offset %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 116 | field_byte_length, field_byte_offset, |
| 117 | field_byte_end_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | /* |
| 120 | * Iterative search for the maximum access width that is both aligned |
| 121 | * and does not go beyond the end of the region |
| 122 | * |
| 123 | * Start at byte_acc and work upwards to qword_acc max. (1,2,4,8 bytes) |
| 124 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 125 | for (access_byte_width = 1; access_byte_width <= 8; |
| 126 | access_byte_width <<= 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 128 | * 1) Round end offset up to next access boundary and make sure that |
| 129 | * this does not go beyond the end of the parent region. |
| 130 | * 2) When the Access width is greater than the field_byte_length, we |
| 131 | * are done. (This does not optimize for the perfectly aligned |
| 132 | * case yet). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 134 | if (ACPI_ROUND_UP(field_byte_end_offset, access_byte_width) <= |
| 135 | region_length) { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 136 | field_start_offset = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 137 | ACPI_ROUND_DOWN(field_byte_offset, |
| 138 | access_byte_width) / |
| 139 | access_byte_width; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 140 | |
| 141 | field_end_offset = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 142 | ACPI_ROUND_UP((field_byte_length + |
| 143 | field_byte_offset), |
| 144 | access_byte_width) / |
| 145 | access_byte_width; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 146 | |
| 147 | accesses = field_end_offset - field_start_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 149 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 150 | "AccessWidth %u end is within region\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 151 | access_byte_width)); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 152 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 153 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 154 | "Field Start %u, Field End %u -- requires %u accesses\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | field_start_offset, field_end_offset, |
| 156 | accesses)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | /* Single access is optimal */ |
| 159 | |
| 160 | if (accesses <= 1) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 161 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 162 | "Entire field can be accessed with one operation of size %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 163 | access_byte_width)); |
| 164 | return_VALUE(access_byte_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Fits in the region, but requires more than one read/write. |
| 169 | * try the next wider access on next iteration |
| 170 | */ |
| 171 | if (accesses < minimum_accesses) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 172 | minimum_accesses = accesses; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | minimum_access_width = access_byte_width; |
| 174 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | } else { |
| 176 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 177 | "AccessWidth %u end is NOT within region\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 178 | access_byte_width)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (access_byte_width == 1) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 181 | "Field goes beyond end-of-region!\n")); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 182 | |
| 183 | /* Field does not fit in the region at all */ |
| 184 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 185 | return_VALUE(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 188 | /* |
| 189 | * This width goes beyond the end-of-region, back off to |
| 190 | * previous access |
| 191 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 192 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 193 | "Backing off to previous optimal access width of %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 194 | minimum_access_width)); |
| 195 | return_VALUE(minimum_access_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 199 | /* |
| 200 | * Could not read/write field with one operation, |
| 201 | * just use max access width |
| 202 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 203 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 204 | "Cannot access field in one operation, using width 8\n")); |
| 205 | return_VALUE(8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | #endif /* ACPI_UNDER_DEVELOPMENT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | /******************************************************************************* |
| 210 | * |
| 211 | * FUNCTION: acpi_ex_decode_field_access |
| 212 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 213 | * PARAMETERS: obj_desc - Field object |
| 214 | * field_flags - Encoded fieldflags (contains access bits) |
| 215 | * return_byte_alignment - Where the byte alignment is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * |
| 217 | * RETURN: Field granularity (8, 16, 32 or 64) and |
| 218 | * byte_alignment (1, 2, 3, or 4) |
| 219 | * |
| 220 | * DESCRIPTION: Decode the access_type bits of a field definition. |
| 221 | * |
| 222 | ******************************************************************************/ |
| 223 | |
| 224 | static u32 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 225 | acpi_ex_decode_field_access(union acpi_operand_object *obj_desc, |
| 226 | u8 field_flags, u32 * return_byte_alignment) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | u32 access; |
| 229 | u32 byte_alignment; |
| 230 | u32 bit_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 232 | ACPI_FUNCTION_TRACE(ex_decode_field_access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | access = (field_flags & AML_FIELD_ACCESS_TYPE_MASK); |
| 235 | |
| 236 | switch (access) { |
| 237 | case AML_FIELD_ACCESS_ANY: |
| 238 | |
| 239 | #ifdef ACPI_UNDER_DEVELOPMENT |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 240 | byte_alignment = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 241 | acpi_ex_generate_access(obj_desc->common_field. |
| 242 | start_field_bit_offset, |
| 243 | obj_desc->common_field.bit_length, |
| 244 | 0xFFFFFFFF |
| 245 | /* Temp until we pass region_length as parameter */ |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 246 | ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | bit_length = byte_alignment * 8; |
| 248 | #endif |
| 249 | |
| 250 | byte_alignment = 1; |
| 251 | bit_length = 8; |
| 252 | break; |
| 253 | |
| 254 | case AML_FIELD_ACCESS_BYTE: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | case AML_FIELD_ACCESS_BUFFER: /* ACPI 2.0 (SMBus Buffer) */ |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | byte_alignment = 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | bit_length = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | break; |
| 260 | |
| 261 | case AML_FIELD_ACCESS_WORD: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 262 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | byte_alignment = 2; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 264 | bit_length = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | break; |
| 266 | |
| 267 | case AML_FIELD_ACCESS_DWORD: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | byte_alignment = 4; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 270 | bit_length = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | break; |
| 272 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | case AML_FIELD_ACCESS_QWORD: /* ACPI 2.0 */ |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | byte_alignment = 8; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 276 | bit_length = 64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | break; |
| 278 | |
| 279 | default: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | /* Invalid field access type */ |
| 282 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 283 | ACPI_ERROR((AE_INFO, "Unknown field access type 0x%X", access)); |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 284 | return_UINT32(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 287 | if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | /* |
| 289 | * buffer_field access can be on any byte boundary, so the |
| 290 | * byte_alignment is always 1 byte -- regardless of any byte_alignment |
| 291 | * implied by the field access type. |
| 292 | */ |
| 293 | byte_alignment = 1; |
| 294 | } |
| 295 | |
| 296 | *return_byte_alignment = byte_alignment; |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 297 | return_UINT32(bit_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | /******************************************************************************* |
| 301 | * |
| 302 | * FUNCTION: acpi_ex_prep_common_field_object |
| 303 | * |
| 304 | * PARAMETERS: obj_desc - The field object |
| 305 | * field_flags - Access, lock_rule, and update_rule. |
| 306 | * The format of a field_flag is described |
| 307 | * in the ACPI specification |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 308 | * field_attribute - Special attributes (not used) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | * field_bit_position - Field start position |
| 310 | * field_bit_length - Field length in number of bits |
| 311 | * |
| 312 | * RETURN: Status |
| 313 | * |
| 314 | * DESCRIPTION: Initialize the areas of the field object that are common |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 315 | * to the various types of fields. Note: This is very "sensitive" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | * code because we are solving the general case for field |
| 317 | * alignment. |
| 318 | * |
| 319 | ******************************************************************************/ |
| 320 | |
| 321 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 322 | acpi_ex_prep_common_field_object(union acpi_operand_object *obj_desc, |
| 323 | u8 field_flags, |
| 324 | u8 field_attribute, |
| 325 | u32 field_bit_position, u32 field_bit_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 327 | u32 access_bit_width; |
| 328 | u32 byte_alignment; |
| 329 | u32 nearest_byte_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 331 | ACPI_FUNCTION_TRACE(ex_prep_common_field_object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | /* |
| 334 | * Note: the structure being initialized is the |
| 335 | * ACPI_COMMON_FIELD_INFO; No structure fields outside of the common |
| 336 | * area are initialized by this procedure. |
| 337 | */ |
| 338 | obj_desc->common_field.field_flags = field_flags; |
| 339 | obj_desc->common_field.attribute = field_attribute; |
| 340 | obj_desc->common_field.bit_length = field_bit_length; |
| 341 | |
| 342 | /* |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 343 | * Decode the access type so we can compute offsets. The access type gives |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | * two pieces of information - the width of each field access and the |
| 345 | * necessary byte_alignment (address granularity) of the access. |
| 346 | * |
| 347 | * For any_acc, the access_bit_width is the largest width that is both |
| 348 | * necessary and possible in an attempt to access the whole field in one |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 349 | * I/O operation. However, for any_acc, the byte_alignment is always one |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | * byte. |
| 351 | * |
| 352 | * For all Buffer Fields, the byte_alignment is always one byte. |
| 353 | * |
| 354 | * For all other access types (Byte, Word, Dword, Qword), the Bitwidth is |
| 355 | * the same (equivalent) as the byte_alignment. |
| 356 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 357 | access_bit_width = acpi_ex_decode_field_access(obj_desc, field_flags, |
| 358 | &byte_alignment); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | if (!access_bit_width) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 360 | return_ACPI_STATUS(AE_AML_OPERAND_VALUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
| 362 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 363 | /* Setup width (access granularity) fields (values are: 1, 2, 4, 8) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | obj_desc->common_field.access_byte_width = (u8) |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 366 | ACPI_DIV_8(access_bit_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
| 368 | /* |
| 369 | * base_byte_offset is the address of the start of the field within the |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 370 | * region. It is the byte address of the first *datum* (field-width data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | * unit) of the field. (i.e., the first datum that contains at least the |
| 372 | * first *bit* of the field.) |
| 373 | * |
| 374 | * Note: byte_alignment is always either equal to the access_bit_width or 8 |
| 375 | * (Byte access), and it defines the addressing granularity of the parent |
| 376 | * region or buffer. |
| 377 | */ |
| 378 | nearest_byte_address = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 379 | ACPI_ROUND_BITS_DOWN_TO_BYTES(field_bit_position); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | obj_desc->common_field.base_byte_offset = (u32) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 381 | ACPI_ROUND_DOWN(nearest_byte_address, byte_alignment); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
| 383 | /* |
| 384 | * start_field_bit_offset is the offset of the first bit of the field within |
| 385 | * a field datum. |
| 386 | */ |
| 387 | obj_desc->common_field.start_field_bit_offset = (u8) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 388 | (field_bit_position - |
| 389 | ACPI_MUL_8(obj_desc->common_field.base_byte_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 391 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | /******************************************************************************* |
| 395 | * |
| 396 | * FUNCTION: acpi_ex_prep_field_value |
| 397 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 398 | * PARAMETERS: info - Contains all field creation info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | * |
| 400 | * RETURN: Status |
| 401 | * |
Bob Moore | cf48958 | 2012-07-16 09:52:27 +0800 | [diff] [blame] | 402 | * DESCRIPTION: Construct an object of type union acpi_operand_object with a |
| 403 | * subtype of def_field and connect it to the parent Node. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | * |
| 405 | ******************************************************************************/ |
| 406 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 407 | acpi_status acpi_ex_prep_field_value(struct acpi_create_field_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 409 | union acpi_operand_object *obj_desc; |
Lin Ming | ef805d9 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 410 | union acpi_operand_object *second_desc = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 411 | acpi_status status; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 412 | u32 access_byte_width; |
| 413 | u32 type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 415 | ACPI_FUNCTION_TRACE(ex_prep_field_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
| 417 | /* Parameter validation */ |
| 418 | |
| 419 | if (info->field_type != ACPI_TYPE_LOCAL_INDEX_FIELD) { |
| 420 | if (!info->region_node) { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 421 | ACPI_ERROR((AE_INFO, "Null RegionNode")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 422 | return_ACPI_STATUS(AE_AML_NO_OPERAND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 425 | type = acpi_ns_get_type(info->region_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | if (type != ACPI_TYPE_REGION) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 427 | ACPI_ERROR((AE_INFO, |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 428 | "Needed Region, found type 0x%X (%s)", type, |
| 429 | acpi_ut_get_type_name(type))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 431 | return_ACPI_STATUS(AE_AML_OPERAND_TYPE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | |
| 435 | /* Allocate a new field object */ |
| 436 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 437 | obj_desc = acpi_ut_create_internal_object(info->field_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | if (!obj_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 439 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | /* Initialize areas of the object that are common to all fields */ |
| 443 | |
| 444 | obj_desc->common_field.node = info->field_node; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 445 | status = acpi_ex_prep_common_field_object(obj_desc, |
| 446 | info->field_flags, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 447 | info->attribute, |
| 448 | info->field_bit_position, |
| 449 | info->field_bit_length); |
| 450 | if (ACPI_FAILURE(status)) { |
| 451 | acpi_ut_delete_object_desc(obj_desc); |
| 452 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | /* Initialize areas of the object that are specific to the field type */ |
| 456 | |
| 457 | switch (info->field_type) { |
| 458 | case ACPI_TYPE_LOCAL_REGION_FIELD: |
| 459 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 460 | obj_desc->field.region_obj = |
| 461 | acpi_ns_get_attached_object(info->region_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Bob Moore | 9ce8178 | 2011-11-16 13:39:07 +0800 | [diff] [blame] | 463 | /* Fields specific to generic_serial_bus fields */ |
| 464 | |
| 465 | obj_desc->field.access_length = info->access_length; |
| 466 | |
| 467 | if (info->connection_node) { |
| 468 | second_desc = info->connection_node->object; |
| 469 | if (!(second_desc->common.flags & AOPOBJ_DATA_VALID)) { |
| 470 | status = |
| 471 | acpi_ds_get_buffer_arguments(second_desc); |
| 472 | if (ACPI_FAILURE(status)) { |
| 473 | acpi_ut_delete_object_desc(obj_desc); |
| 474 | return_ACPI_STATUS(status); |
| 475 | } |
| 476 | } |
| 477 | |
| 478 | obj_desc->field.resource_buffer = |
| 479 | second_desc->buffer.pointer; |
| 480 | obj_desc->field.resource_length = |
| 481 | (u16)second_desc->buffer.length; |
| 482 | } else if (info->resource_buffer) { |
| 483 | obj_desc->field.resource_buffer = info->resource_buffer; |
| 484 | obj_desc->field.resource_length = info->resource_length; |
| 485 | } |
| 486 | |
Bob Moore | 75ec6e5 | 2014-09-23 10:35:47 +0800 | [diff] [blame] | 487 | obj_desc->field.pin_number_index = info->pin_number_index; |
| 488 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 489 | /* Allow full data read from EC address space */ |
| 490 | |
| 491 | if ((obj_desc->field.region_obj->region.space_id == |
| 492 | ACPI_ADR_SPACE_EC) |
| 493 | && (obj_desc->common_field.bit_length > 8)) { |
| 494 | access_byte_width = |
| 495 | ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field. |
| 496 | bit_length); |
| 497 | |
| 498 | /* Maximum byte width supported is 255 */ |
| 499 | |
| 500 | if (access_byte_width < 256) { |
| 501 | obj_desc->common_field.access_byte_width = |
| 502 | (u8)access_byte_width; |
| 503 | } |
| 504 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | /* An additional reference for the container */ |
| 506 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 507 | acpi_ut_add_reference(obj_desc->field.region_obj); |
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_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 510 | "RegionField: BitOff %X, Off %X, Gran %X, Region %p\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 511 | obj_desc->field.start_field_bit_offset, |
| 512 | obj_desc->field.base_byte_offset, |
| 513 | obj_desc->field.access_byte_width, |
| 514 | obj_desc->field.region_obj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | break; |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | case ACPI_TYPE_LOCAL_BANK_FIELD: |
| 518 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 519 | obj_desc->bank_field.value = info->bank_value; |
| 520 | obj_desc->bank_field.region_obj = |
| 521 | acpi_ns_get_attached_object(info->region_node); |
| 522 | obj_desc->bank_field.bank_obj = |
| 523 | acpi_ns_get_attached_object(info->register_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | /* An additional reference for the attached objects */ |
| 526 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 527 | acpi_ut_add_reference(obj_desc->bank_field.region_obj); |
| 528 | acpi_ut_add_reference(obj_desc->bank_field.bank_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 530 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 531 | "Bank Field: BitOff %X, Off %X, Gran %X, Region %p, BankReg %p\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 532 | obj_desc->bank_field.start_field_bit_offset, |
| 533 | obj_desc->bank_field.base_byte_offset, |
| 534 | obj_desc->field.access_byte_width, |
| 535 | obj_desc->bank_field.region_obj, |
| 536 | obj_desc->bank_field.bank_obj)); |
Lin Ming | ef805d9 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 537 | |
| 538 | /* |
| 539 | * Remember location in AML stream of the field unit |
| 540 | * opcode and operands -- since the bank_value |
| 541 | * operands must be evaluated. |
| 542 | */ |
| 543 | second_desc = obj_desc->common.next_object; |
| 544 | second_desc->extra.aml_start = |
Bob Moore | b524376 | 2008-06-10 13:44:48 +0800 | [diff] [blame] | 545 | ACPI_CAST_PTR(union acpi_parse_object, |
| 546 | info->data_register_node)->named.data; |
Lin Ming | ef805d9 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 547 | second_desc->extra.aml_length = |
Bob Moore | b524376 | 2008-06-10 13:44:48 +0800 | [diff] [blame] | 548 | ACPI_CAST_PTR(union acpi_parse_object, |
| 549 | info->data_register_node)->named.length; |
Lin Ming | ef805d9 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | break; |
| 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | case ACPI_TYPE_LOCAL_INDEX_FIELD: |
| 554 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 555 | /* Get the Index and Data registers */ |
| 556 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 557 | obj_desc->index_field.index_obj = |
| 558 | acpi_ns_get_attached_object(info->register_node); |
| 559 | obj_desc->index_field.data_obj = |
| 560 | acpi_ns_get_attached_object(info->data_register_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 562 | if (!obj_desc->index_field.data_obj |
| 563 | || !obj_desc->index_field.index_obj) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 564 | ACPI_ERROR((AE_INFO, |
| 565 | "Null Index Object during field prep")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 566 | acpi_ut_delete_object_desc(obj_desc); |
| 567 | return_ACPI_STATUS(AE_AML_INTERNAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | /* An additional reference for the attached objects */ |
| 571 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 572 | acpi_ut_add_reference(obj_desc->index_field.data_obj); |
| 573 | acpi_ut_add_reference(obj_desc->index_field.index_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 575 | /* |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 576 | * April 2006: Changed to match MS behavior |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 577 | * |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 578 | * The value written to the Index register is the byte offset of the |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 579 | * target field in units of the granularity of the index_field |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 580 | * |
| 581 | * Previously, the value was calculated as an index in terms of the |
| 582 | * width of the Data register, as below: |
| 583 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 584 | * obj_desc->index_field.Value = (u32) |
| 585 | * (Info->field_bit_position / ACPI_MUL_8 ( |
| 586 | * obj_desc->Field.access_byte_width)); |
| 587 | * |
| 588 | * February 2006: Tried value as a byte offset: |
| 589 | * obj_desc->index_field.Value = (u32) |
| 590 | * ACPI_DIV_8 (Info->field_bit_position); |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 591 | */ |
Bob Moore | ea936b7 | 2006-02-17 00:00:00 -0500 | [diff] [blame] | 592 | obj_desc->index_field.value = |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 593 | (u32) ACPI_ROUND_DOWN(ACPI_DIV_8(info->field_bit_position), |
| 594 | obj_desc->index_field. |
| 595 | access_byte_width); |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 596 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 597 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 598 | "IndexField: BitOff %X, Off %X, Value %X, Gran %X, Index %p, Data %p\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 599 | obj_desc->index_field.start_field_bit_offset, |
| 600 | obj_desc->index_field.base_byte_offset, |
| 601 | obj_desc->index_field.value, |
| 602 | obj_desc->field.access_byte_width, |
| 603 | obj_desc->index_field.index_obj, |
| 604 | obj_desc->index_field.data_obj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | break; |
| 606 | |
| 607 | default: |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | /* No other types should get here */ |
Chao Guan | 1d1ea1b | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | break; |
| 612 | } |
| 613 | |
| 614 | /* |
| 615 | * Store the constructed descriptor (obj_desc) into the parent Node, |
| 616 | * preserving the current type of that named_obj. |
| 617 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 618 | status = acpi_ns_attach_object(info->field_node, obj_desc, |
| 619 | acpi_ns_get_type(info->field_node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 621 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 622 | "Set NamedObj %p [%4.4s], ObjDesc %p\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 623 | info->field_node, |
| 624 | acpi_ut_get_node_name(info->field_node), obj_desc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
| 626 | /* Remove local reference to the object */ |
| 627 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 628 | acpi_ut_remove_reference(obj_desc); |
| 629 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |