Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: exfldio - Aml Field I/O |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | b4e104e | 2011-01-17 11:05:40 +0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2011, 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 "acevents.h" |
| 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("exfldio") |
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 acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 56 | acpi_ex_field_datum_io(union acpi_operand_object *obj_desc, |
| 57 | u32 field_datum_byte_offset, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 58 | u64 *value, u32 read_write); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 59 | |
| 60 | static u8 |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 61 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 62 | |
| 63 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 64 | acpi_ex_setup_region(union acpi_operand_object *obj_desc, |
| 65 | u32 field_datum_byte_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | /******************************************************************************* |
| 68 | * |
| 69 | * FUNCTION: acpi_ex_setup_region |
| 70 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 71 | * PARAMETERS: obj_desc - Field to be read or written |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * field_datum_byte_offset - Byte offset of this datum within the |
| 73 | * parent field |
| 74 | * |
| 75 | * RETURN: Status |
| 76 | * |
| 77 | * DESCRIPTION: Common processing for acpi_ex_extract_from_field and |
| 78 | * acpi_ex_insert_into_field. Initialize the Region if necessary and |
| 79 | * validate the request. |
| 80 | * |
| 81 | ******************************************************************************/ |
| 82 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 83 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | acpi_ex_setup_region(union acpi_operand_object *obj_desc, |
| 85 | u32 field_datum_byte_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 87 | acpi_status status = AE_OK; |
| 88 | union acpi_operand_object *rgn_desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 90 | ACPI_FUNCTION_TRACE_U32(ex_setup_region, field_datum_byte_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | rgn_desc = obj_desc->common_field.region_obj; |
| 93 | |
| 94 | /* We must have a valid region */ |
| 95 | |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 96 | if (rgn_desc->common.type != ACPI_TYPE_REGION) { |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 97 | ACPI_ERROR((AE_INFO, "Needed Region, found type 0x%X (%s)", |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 98 | rgn_desc->common.type, |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 99 | acpi_ut_get_object_type_name(rgn_desc))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 101 | return_ACPI_STATUS(AE_AML_OPERAND_TYPE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /* |
| 105 | * If the Region Address and Length have not been previously evaluated, |
| 106 | * evaluate them now and save the results. |
| 107 | */ |
| 108 | if (!(rgn_desc->common.flags & AOPOBJ_DATA_VALID)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 109 | status = acpi_ds_get_region_arguments(rgn_desc); |
| 110 | if (ACPI_FAILURE(status)) { |
| 111 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | |
Len Brown | 7cb7f45 | 2009-07-27 18:42:38 -0400 | [diff] [blame] | 115 | /* Exit if Address/Length have been disallowed by the host OS */ |
| 116 | |
| 117 | if (rgn_desc->common.flags & AOPOBJ_INVALID) { |
| 118 | return_ACPI_STATUS(AE_AML_ILLEGAL_ADDRESS); |
| 119 | } |
| 120 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 121 | /* |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 122 | * Exit now for SMBus or IPMI address space, it has a non-linear |
| 123 | * address space and the request cannot be directly validated |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 124 | */ |
Lin Ming | 6557a49 | 2009-06-24 11:32:04 +0800 | [diff] [blame] | 125 | if (rgn_desc->region.space_id == ACPI_ADR_SPACE_SMBUS || |
| 126 | rgn_desc->region.space_id == ACPI_ADR_SPACE_IPMI) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 127 | |
Lin Ming | 6557a49 | 2009-06-24 11:32:04 +0800 | [diff] [blame] | 128 | /* SMBus or IPMI has a non-linear address space */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 130 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | #ifdef ACPI_UNDER_DEVELOPMENT |
| 133 | /* |
| 134 | * If the Field access is any_acc, we can now compute the optimal |
| 135 | * access (because we know know the length of the parent region) |
| 136 | */ |
| 137 | if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | if (ACPI_FAILURE(status)) { |
| 139 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | #endif |
| 143 | |
| 144 | /* |
| 145 | * Validate the request. The entire request from the byte offset for a |
| 146 | * length of one field datum (access width) must fit within the region. |
| 147 | * (Region length is specified in bytes) |
| 148 | */ |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 149 | if (rgn_desc->region.length < |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 150 | (obj_desc->common_field.base_byte_offset + field_datum_byte_offset + |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 151 | obj_desc->common_field.access_byte_width)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | if (acpi_gbl_enable_interpreter_slack) { |
| 153 | /* |
| 154 | * Slack mode only: We will go ahead and allow access to this |
| 155 | * field if it is within the region length rounded up to the next |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 156 | * access width boundary. acpi_size cast for 64-bit compile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | if (ACPI_ROUND_UP(rgn_desc->region.length, |
| 159 | obj_desc->common_field. |
| 160 | access_byte_width) >= |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 161 | ((acpi_size) obj_desc->common_field. |
| 162 | base_byte_offset + |
| 163 | obj_desc->common_field.access_byte_width + |
| 164 | field_datum_byte_offset)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 165 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | } |
| 168 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 169 | if (rgn_desc->region.length < |
| 170 | obj_desc->common_field.access_byte_width) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | /* |
| 172 | * This is the case where the access_type (acc_word, etc.) is wider |
| 173 | * than the region itself. For example, a region of length one |
| 174 | * byte, and a field with Dword access specified. |
| 175 | */ |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 176 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 177 | "Field [%4.4s] access width (%u bytes) too large for region [%4.4s] (length %u)", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 178 | acpi_ut_get_node_name(obj_desc-> |
| 179 | common_field.node), |
| 180 | obj_desc->common_field.access_byte_width, |
| 181 | acpi_ut_get_node_name(rgn_desc->region. |
| 182 | node), |
| 183 | rgn_desc->region.length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /* |
| 187 | * Offset rounded up to next multiple of field width |
| 188 | * exceeds region length, indicate an error |
| 189 | */ |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 190 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 191 | "Field [%4.4s] Base+Offset+Width %u+%u+%u is beyond end of region [%4.4s] (length %u)", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 192 | acpi_ut_get_node_name(obj_desc->common_field.node), |
| 193 | obj_desc->common_field.base_byte_offset, |
| 194 | field_datum_byte_offset, |
| 195 | obj_desc->common_field.access_byte_width, |
| 196 | acpi_ut_get_node_name(rgn_desc->region.node), |
| 197 | rgn_desc->region.length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 199 | return_ACPI_STATUS(AE_AML_REGION_LIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 202 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | /******************************************************************************* |
| 206 | * |
| 207 | * FUNCTION: acpi_ex_access_region |
| 208 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 209 | * PARAMETERS: obj_desc - Field to be read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | * field_datum_byte_offset - Byte offset of this datum within the |
| 211 | * parent field |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 212 | * Value - Where to store value (must at least |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 213 | * 64 bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | * Function - Read or Write flag plus other region- |
| 215 | * dependent flags |
| 216 | * |
| 217 | * RETURN: Status |
| 218 | * |
| 219 | * DESCRIPTION: Read or Write a single field datum to an Operation Region. |
| 220 | * |
| 221 | ******************************************************************************/ |
| 222 | |
| 223 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 224 | acpi_ex_access_region(union acpi_operand_object *obj_desc, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 225 | u32 field_datum_byte_offset, u64 *value, u32 function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 227 | acpi_status status; |
| 228 | union acpi_operand_object *rgn_desc; |
Bob Moore | f5407af | 2009-05-21 10:56:52 +0800 | [diff] [blame] | 229 | u32 region_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 231 | ACPI_FUNCTION_TRACE(ex_access_region); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | /* |
| 234 | * Ensure that the region operands are fully evaluated and verify |
| 235 | * the validity of the request |
| 236 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 237 | status = acpi_ex_setup_region(obj_desc, field_datum_byte_offset); |
| 238 | if (ACPI_FAILURE(status)) { |
| 239 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | /* |
| 243 | * The physical address of this field datum is: |
| 244 | * |
| 245 | * 1) The base of the region, plus |
| 246 | * 2) The base offset of the field, plus |
| 247 | * 3) The current offset into the field |
| 248 | */ |
| 249 | rgn_desc = obj_desc->common_field.region_obj; |
Bob Moore | f5407af | 2009-05-21 10:56:52 +0800 | [diff] [blame] | 250 | region_offset = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 251 | obj_desc->common_field.base_byte_offset + field_datum_byte_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | if ((function & ACPI_IO_MASK) == ACPI_READ) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[READ]")); |
| 255 | } else { |
| 256 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[WRITE]")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 259 | ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD, |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 260 | " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %p\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 261 | acpi_ut_get_region_name(rgn_desc->region. |
| 262 | space_id), |
| 263 | rgn_desc->region.space_id, |
| 264 | obj_desc->common_field.access_byte_width, |
| 265 | obj_desc->common_field.base_byte_offset, |
Bob Moore | b7f9f04 | 2008-04-10 19:06:40 +0400 | [diff] [blame] | 266 | field_datum_byte_offset, ACPI_CAST_PTR(void, |
Bob Moore | f5407af | 2009-05-21 10:56:52 +0800 | [diff] [blame] | 267 | (rgn_desc-> |
| 268 | region. |
| 269 | address + |
| 270 | region_offset)))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | /* Invoke the appropriate address_space/op_region handler */ |
| 273 | |
Bob Moore | f5407af | 2009-05-21 10:56:52 +0800 | [diff] [blame] | 274 | status = |
| 275 | acpi_ev_address_space_dispatch(rgn_desc, function, region_offset, |
| 276 | ACPI_MUL_8(obj_desc->common_field. |
| 277 | access_byte_width), |
| 278 | value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | if (status == AE_NOT_IMPLEMENTED) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 282 | ACPI_ERROR((AE_INFO, |
Bob Moore | 1b74dfb | 2011-02-14 15:52:56 +0800 | [diff] [blame] | 283 | "Region %s (ID=%u) not implemented", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 284 | acpi_ut_get_region_name(rgn_desc->region. |
| 285 | space_id), |
| 286 | rgn_desc->region.space_id)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 287 | } else if (status == AE_NOT_EXIST) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 288 | ACPI_ERROR((AE_INFO, |
Bob Moore | 1b74dfb | 2011-02-14 15:52:56 +0800 | [diff] [blame] | 289 | "Region %s (ID=%u) has no handler", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 290 | acpi_ut_get_region_name(rgn_desc->region. |
| 291 | space_id), |
| 292 | rgn_desc->region.space_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } |
| 294 | } |
| 295 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 296 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /******************************************************************************* |
| 300 | * |
| 301 | * FUNCTION: acpi_ex_register_overflow |
| 302 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 303 | * PARAMETERS: obj_desc - Register(Field) to be written |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | * Value - Value to be stored |
| 305 | * |
| 306 | * RETURN: TRUE if value overflows the field, FALSE otherwise |
| 307 | * |
| 308 | * DESCRIPTION: Check if a value is out of range of the field being written. |
| 309 | * Used to check if the values written to Index and Bank registers |
| 310 | * are out of range. Normally, the value is simply truncated |
| 311 | * to fit the field, but this case is most likely a serious |
| 312 | * coding error in the ASL. |
| 313 | * |
| 314 | ******************************************************************************/ |
| 315 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 316 | static u8 |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 317 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
| 319 | |
| 320 | if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) { |
| 321 | /* |
| 322 | * The field is large enough to hold the maximum integer, so we can |
| 323 | * never overflow it. |
| 324 | */ |
| 325 | return (FALSE); |
| 326 | } |
| 327 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 328 | if (value >= ((u64) 1 << obj_desc->common_field.bit_length)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | /* |
| 330 | * The Value is larger than the maximum value that can fit into |
| 331 | * the register. |
| 332 | */ |
| 333 | return (TRUE); |
| 334 | } |
| 335 | |
| 336 | /* The Value will fit into the field with no truncation */ |
| 337 | |
| 338 | return (FALSE); |
| 339 | } |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | /******************************************************************************* |
| 342 | * |
| 343 | * FUNCTION: acpi_ex_field_datum_io |
| 344 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 345 | * PARAMETERS: obj_desc - Field to be read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | * field_datum_byte_offset - Byte offset of this datum within the |
| 347 | * parent field |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 348 | * Value - Where to store value (must be 64 bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | * read_write - Read or Write flag |
| 350 | * |
| 351 | * RETURN: Status |
| 352 | * |
| 353 | * DESCRIPTION: Read or Write a single datum of a field. The field_type is |
| 354 | * demultiplexed here to handle the different types of fields |
| 355 | * (buffer_field, region_field, index_field, bank_field) |
| 356 | * |
| 357 | ******************************************************************************/ |
| 358 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 359 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 360 | acpi_ex_field_datum_io(union acpi_operand_object *obj_desc, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 361 | u32 field_datum_byte_offset, u64 *value, u32 read_write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 363 | acpi_status status; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 364 | u64 local_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 366 | ACPI_FUNCTION_TRACE_U32(ex_field_datum_io, field_datum_byte_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
| 368 | if (read_write == ACPI_READ) { |
| 369 | if (!value) { |
| 370 | local_value = 0; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 371 | |
| 372 | /* To support reads without saving return value */ |
| 373 | value = &local_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /* Clear the entire return buffer first, [Very Important!] */ |
| 377 | |
| 378 | *value = 0; |
| 379 | } |
| 380 | |
| 381 | /* |
| 382 | * The four types of fields are: |
| 383 | * |
| 384 | * buffer_field - Read/write from/to a Buffer |
| 385 | * region_field - Read/write from/to a Operation Region. |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 386 | * bank_field - Write to a Bank Register, then read/write from/to an |
| 387 | * operation_region |
| 388 | * index_field - Write to an Index Register, then read/write from/to a |
| 389 | * Data Register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | */ |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 391 | switch (obj_desc->common.type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | case ACPI_TYPE_BUFFER_FIELD: |
| 393 | /* |
| 394 | * If the buffer_field arguments have not been previously evaluated, |
| 395 | * evaluate them now and save the results. |
| 396 | */ |
| 397 | if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 398 | status = acpi_ds_get_buffer_field_arguments(obj_desc); |
| 399 | if (ACPI_FAILURE(status)) { |
| 400 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } |
| 402 | } |
| 403 | |
| 404 | if (read_write == ACPI_READ) { |
| 405 | /* |
| 406 | * Copy the data from the source buffer. |
| 407 | * Length is the field width in bytes. |
| 408 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 409 | ACPI_MEMCPY(value, |
| 410 | (obj_desc->buffer_field.buffer_obj)->buffer. |
| 411 | pointer + |
| 412 | obj_desc->buffer_field.base_byte_offset + |
| 413 | field_datum_byte_offset, |
| 414 | obj_desc->common_field.access_byte_width); |
| 415 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | /* |
| 417 | * Copy the data to the target buffer. |
| 418 | * Length is the field width in bytes. |
| 419 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 420 | ACPI_MEMCPY((obj_desc->buffer_field.buffer_obj)->buffer. |
| 421 | pointer + |
| 422 | obj_desc->buffer_field.base_byte_offset + |
| 423 | field_datum_byte_offset, value, |
| 424 | obj_desc->common_field.access_byte_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | status = AE_OK; |
| 428 | break; |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | case ACPI_TYPE_LOCAL_BANK_FIELD: |
| 431 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 432 | /* |
| 433 | * Ensure that the bank_value is not beyond the capacity of |
| 434 | * the register |
| 435 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 436 | if (acpi_ex_register_overflow(obj_desc->bank_field.bank_obj, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 437 | (u64) obj_desc->bank_field. |
| 438 | value)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 439 | return_ACPI_STATUS(AE_AML_REGISTER_LIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | /* |
| 443 | * For bank_fields, we must write the bank_value to the bank_register |
| 444 | * (itself a region_field) before we can access the data. |
| 445 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 446 | status = |
| 447 | acpi_ex_insert_into_field(obj_desc->bank_field.bank_obj, |
| 448 | &obj_desc->bank_field.value, |
| 449 | sizeof(obj_desc->bank_field. |
| 450 | value)); |
| 451 | if (ACPI_FAILURE(status)) { |
| 452 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | /* |
| 456 | * Now that the Bank has been selected, fall through to the |
| 457 | * region_field case and write the datum to the Operation Region |
| 458 | */ |
| 459 | |
| 460 | /*lint -fallthrough */ |
| 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | case ACPI_TYPE_LOCAL_REGION_FIELD: |
| 463 | /* |
| 464 | * For simple region_fields, we just directly access the owning |
| 465 | * Operation Region. |
| 466 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 467 | status = |
| 468 | acpi_ex_access_region(obj_desc, field_datum_byte_offset, |
| 469 | value, read_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | break; |
| 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | case ACPI_TYPE_LOCAL_INDEX_FIELD: |
| 473 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 474 | /* |
| 475 | * Ensure that the index_value is not beyond the capacity of |
| 476 | * the register |
| 477 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 478 | if (acpi_ex_register_overflow(obj_desc->index_field.index_obj, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 479 | (u64) obj_desc->index_field. |
| 480 | value)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 481 | return_ACPI_STATUS(AE_AML_REGISTER_LIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | /* Write the index value to the index_register (itself a region_field) */ |
| 485 | |
| 486 | field_datum_byte_offset += obj_desc->index_field.value; |
| 487 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 488 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 489 | "Write to Index Register: Value %8.8X\n", |
| 490 | field_datum_byte_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 492 | status = |
| 493 | acpi_ex_insert_into_field(obj_desc->index_field.index_obj, |
| 494 | &field_datum_byte_offset, |
| 495 | sizeof(field_datum_byte_offset)); |
| 496 | if (ACPI_FAILURE(status)) { |
| 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 | if (read_write == ACPI_READ) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | /* Read the datum from the data_register */ |
| 503 | |
Bob Moore | e9a8c6a | 2008-11-12 15:16:49 +0800 | [diff] [blame] | 504 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 505 | "Read from Data Register\n")); |
| 506 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 507 | status = |
| 508 | acpi_ex_extract_from_field(obj_desc->index_field. |
| 509 | data_obj, value, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 510 | sizeof(u64)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 511 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | /* Write the datum to the data_register */ |
| 513 | |
Bob Moore | e9a8c6a | 2008-11-12 15:16:49 +0800 | [diff] [blame] | 514 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 515 | "Write to Data Register: Value %8.8X%8.8X\n", |
| 516 | ACPI_FORMAT_UINT64(*value))); |
| 517 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 518 | status = |
| 519 | acpi_ex_insert_into_field(obj_desc->index_field. |
| 520 | data_obj, value, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 521 | sizeof(u64)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | } |
| 523 | break; |
| 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | default: |
| 526 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 527 | ACPI_ERROR((AE_INFO, "Wrong object type in field I/O %u", |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 528 | obj_desc->common.type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | status = AE_AML_INTERNAL; |
| 530 | break; |
| 531 | } |
| 532 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 533 | if (ACPI_SUCCESS(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | if (read_write == ACPI_READ) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 535 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 536 | "Value Read %8.8X%8.8X, Width %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 537 | ACPI_FORMAT_UINT64(*value), |
| 538 | obj_desc->common_field. |
| 539 | access_byte_width)); |
| 540 | } else { |
| 541 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 542 | "Value Written %8.8X%8.8X, Width %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 543 | ACPI_FORMAT_UINT64(*value), |
| 544 | obj_desc->common_field. |
| 545 | access_byte_width)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
| 547 | } |
| 548 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 549 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } |
| 551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | /******************************************************************************* |
| 553 | * |
| 554 | * FUNCTION: acpi_ex_write_with_update_rule |
| 555 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 556 | * PARAMETERS: obj_desc - Field to be written |
| 557 | * Mask - bitmask within field datum |
| 558 | * field_value - Value to write |
| 559 | * field_datum_byte_offset - Offset of datum within field |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | * |
| 561 | * RETURN: Status |
| 562 | * |
| 563 | * DESCRIPTION: Apply the field update rule to a field write |
| 564 | * |
| 565 | ******************************************************************************/ |
| 566 | |
| 567 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 568 | acpi_ex_write_with_update_rule(union acpi_operand_object *obj_desc, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 569 | u64 mask, |
| 570 | u64 field_value, u32 field_datum_byte_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 572 | acpi_status status = AE_OK; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 573 | u64 merged_value; |
| 574 | u64 current_value; |
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_U32(ex_write_with_update_rule, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
| 578 | /* Start with the new bits */ |
| 579 | |
| 580 | merged_value = field_value; |
| 581 | |
| 582 | /* If the mask is all ones, we don't need to worry about the update rule */ |
| 583 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 584 | if (mask != ACPI_UINT64_MAX) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | /* Decode the update rule */ |
| 587 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 588 | switch (obj_desc->common_field. |
| 589 | field_flags & AML_FIELD_UPDATE_RULE_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | case AML_FIELD_UPDATE_PRESERVE: |
| 591 | /* |
| 592 | * Check if update rule needs to be applied (not if mask is all |
| 593 | * ones) The left shift drops the bits we want to ignore. |
| 594 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 595 | if ((~mask << (ACPI_MUL_8(sizeof(mask)) - |
| 596 | ACPI_MUL_8(obj_desc->common_field. |
| 597 | access_byte_width))) != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | /* |
| 599 | * Read the current contents of the byte/word/dword containing |
| 600 | * the field, and merge with the new field value. |
| 601 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 602 | status = |
| 603 | acpi_ex_field_datum_io(obj_desc, |
| 604 | field_datum_byte_offset, |
| 605 | ¤t_value, |
| 606 | ACPI_READ); |
| 607 | if (ACPI_FAILURE(status)) { |
| 608 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | merged_value |= (current_value & ~mask); |
| 612 | } |
| 613 | break; |
| 614 | |
| 615 | case AML_FIELD_UPDATE_WRITE_AS_ONES: |
| 616 | |
| 617 | /* Set positions outside the field to all ones */ |
| 618 | |
| 619 | merged_value |= ~mask; |
| 620 | break; |
| 621 | |
| 622 | case AML_FIELD_UPDATE_WRITE_AS_ZEROS: |
| 623 | |
| 624 | /* Set positions outside the field to all zeros */ |
| 625 | |
| 626 | merged_value &= mask; |
| 627 | break; |
| 628 | |
| 629 | default: |
| 630 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 631 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 632 | "Unknown UpdateRule value: 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 633 | (obj_desc->common_field. |
| 634 | field_flags & |
| 635 | AML_FIELD_UPDATE_RULE_MASK))); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 636 | return_ACPI_STATUS(AE_AML_OPERAND_VALUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | } |
| 638 | } |
| 639 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 640 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 641 | "Mask %8.8X%8.8X, DatumOffset %X, Width %X, Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 642 | ACPI_FORMAT_UINT64(mask), |
| 643 | field_datum_byte_offset, |
| 644 | obj_desc->common_field.access_byte_width, |
| 645 | ACPI_FORMAT_UINT64(field_value), |
| 646 | ACPI_FORMAT_UINT64(merged_value))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
| 648 | /* Write the merged value */ |
| 649 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 650 | status = acpi_ex_field_datum_io(obj_desc, field_datum_byte_offset, |
| 651 | &merged_value, ACPI_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 653 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } |
| 655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | /******************************************************************************* |
| 657 | * |
| 658 | * FUNCTION: acpi_ex_extract_from_field |
| 659 | * |
| 660 | * PARAMETERS: obj_desc - Field to be read |
| 661 | * Buffer - Where to store the field data |
| 662 | * buffer_length - Length of Buffer |
| 663 | * |
| 664 | * RETURN: Status |
| 665 | * |
| 666 | * DESCRIPTION: Retrieve the current value of the given field |
| 667 | * |
| 668 | ******************************************************************************/ |
| 669 | |
| 670 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 671 | acpi_ex_extract_from_field(union acpi_operand_object *obj_desc, |
| 672 | void *buffer, u32 buffer_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 674 | acpi_status status; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 675 | u64 raw_datum; |
| 676 | u64 merged_datum; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 677 | u32 field_offset = 0; |
| 678 | u32 buffer_offset = 0; |
| 679 | u32 buffer_tail_bits; |
| 680 | u32 datum_count; |
| 681 | u32 field_datum_count; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 682 | u32 access_bit_width; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 683 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 685 | ACPI_FUNCTION_TRACE(ex_extract_from_field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | /* Validate target buffer and clear it */ |
| 688 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 689 | if (buffer_length < |
| 690 | ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 691 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 692 | "Field size %u (bits) is too large for buffer (%u)", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 693 | obj_desc->common_field.bit_length, buffer_length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 695 | return_ACPI_STATUS(AE_BUFFER_OVERFLOW); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | } |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 697 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 698 | ACPI_MEMSET(buffer, 0, buffer_length); |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 699 | access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width); |
| 700 | |
| 701 | /* Handle the simple case here */ |
| 702 | |
| 703 | if ((obj_desc->common_field.start_field_bit_offset == 0) && |
| 704 | (obj_desc->common_field.bit_length == access_bit_width)) { |
| 705 | status = acpi_ex_field_datum_io(obj_desc, 0, buffer, ACPI_READ); |
| 706 | return_ACPI_STATUS(status); |
| 707 | } |
| 708 | |
| 709 | /* TBD: Move to common setup code */ |
| 710 | |
| 711 | /* Field algorithm is limited to sizeof(u64), truncate if needed */ |
| 712 | |
| 713 | if (obj_desc->common_field.access_byte_width > sizeof(u64)) { |
| 714 | obj_desc->common_field.access_byte_width = sizeof(u64); |
| 715 | access_bit_width = sizeof(u64) * 8; |
| 716 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
| 718 | /* Compute the number of datums (access width data items) */ |
| 719 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 720 | datum_count = |
| 721 | ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length, |
| 722 | access_bit_width); |
| 723 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 724 | field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length + |
| 725 | obj_desc->common_field. |
| 726 | start_field_bit_offset, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 727 | access_bit_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
| 729 | /* Priming read from the field */ |
| 730 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 731 | status = |
| 732 | acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum, |
| 733 | ACPI_READ); |
| 734 | if (ACPI_FAILURE(status)) { |
| 735 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 737 | merged_datum = |
| 738 | raw_datum >> obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
| 740 | /* Read the rest of the field */ |
| 741 | |
| 742 | for (i = 1; i < field_datum_count; i++) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | /* Get next input datum from the field */ |
| 745 | |
| 746 | field_offset += obj_desc->common_field.access_byte_width; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 747 | status = acpi_ex_field_datum_io(obj_desc, field_offset, |
| 748 | &raw_datum, ACPI_READ); |
| 749 | if (ACPI_FAILURE(status)) { |
| 750 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | } |
| 752 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 753 | /* |
| 754 | * Merge with previous datum if necessary. |
| 755 | * |
| 756 | * Note: Before the shift, check if the shift value will be larger than |
| 757 | * the integer size. If so, there is no need to perform the operation. |
| 758 | * This avoids the differences in behavior between different compilers |
| 759 | * concerning shift values larger than the target data width. |
| 760 | */ |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 761 | if (access_bit_width - |
| 762 | obj_desc->common_field.start_field_bit_offset < |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 763 | ACPI_INTEGER_BIT_SIZE) { |
| 764 | merged_datum |= |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 765 | raw_datum << (access_bit_width - |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 766 | obj_desc->common_field. |
| 767 | start_field_bit_offset); |
| 768 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | if (i == datum_count) { |
| 771 | break; |
| 772 | } |
| 773 | |
| 774 | /* Write merged datum to target buffer */ |
| 775 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 776 | ACPI_MEMCPY(((char *)buffer) + buffer_offset, &merged_datum, |
| 777 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 778 | buffer_length - buffer_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | |
| 780 | buffer_offset += obj_desc->common_field.access_byte_width; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 781 | merged_datum = |
| 782 | raw_datum >> obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | /* Mask off any extra bits in the last datum */ |
| 786 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 787 | buffer_tail_bits = obj_desc->common_field.bit_length % access_bit_width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | if (buffer_tail_bits) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 789 | merged_datum &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | /* Write the last datum to the buffer */ |
| 793 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 794 | ACPI_MEMCPY(((char *)buffer) + buffer_offset, &merged_datum, |
| 795 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 796 | buffer_length - buffer_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 798 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | } |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | /******************************************************************************* |
| 802 | * |
| 803 | * FUNCTION: acpi_ex_insert_into_field |
| 804 | * |
| 805 | * PARAMETERS: obj_desc - Field to be written |
| 806 | * Buffer - Data to be written |
| 807 | * buffer_length - Length of Buffer |
| 808 | * |
| 809 | * RETURN: Status |
| 810 | * |
| 811 | * DESCRIPTION: Store the Buffer contents into the given field |
| 812 | * |
| 813 | ******************************************************************************/ |
| 814 | |
| 815 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 816 | acpi_ex_insert_into_field(union acpi_operand_object *obj_desc, |
| 817 | void *buffer, u32 buffer_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | { |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 819 | void *new_buffer; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 820 | acpi_status status; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 821 | u64 mask; |
| 822 | u64 width_mask; |
| 823 | u64 merged_datum; |
| 824 | u64 raw_datum = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 825 | u32 field_offset = 0; |
| 826 | u32 buffer_offset = 0; |
| 827 | u32 buffer_tail_bits; |
| 828 | u32 datum_count; |
| 829 | u32 field_datum_count; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 830 | u32 access_bit_width; |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 831 | u32 required_length; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 832 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 834 | ACPI_FUNCTION_TRACE(ex_insert_into_field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | |
| 836 | /* Validate input buffer */ |
| 837 | |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 838 | new_buffer = NULL; |
| 839 | required_length = |
| 840 | ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length); |
| 841 | /* |
| 842 | * We must have a buffer that is at least as long as the field |
| 843 | * we are writing to. This is because individual fields are |
| 844 | * indivisible and partial writes are not supported -- as per |
| 845 | * the ACPI specification. |
| 846 | */ |
| 847 | if (buffer_length < required_length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 849 | /* We need to create a new buffer */ |
| 850 | |
| 851 | new_buffer = ACPI_ALLOCATE_ZEROED(required_length); |
| 852 | if (!new_buffer) { |
| 853 | return_ACPI_STATUS(AE_NO_MEMORY); |
| 854 | } |
| 855 | |
| 856 | /* |
| 857 | * Copy the original data to the new buffer, starting |
| 858 | * at Byte zero. All unused (upper) bytes of the |
| 859 | * buffer will be 0. |
| 860 | */ |
| 861 | ACPI_MEMCPY((char *)new_buffer, (char *)buffer, buffer_length); |
| 862 | buffer = new_buffer; |
| 863 | buffer_length = required_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | } |
| 865 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 866 | /* TBD: Move to common setup code */ |
| 867 | |
| 868 | /* Algo is limited to sizeof(u64), so cut the access_byte_width */ |
| 869 | if (obj_desc->common_field.access_byte_width > sizeof(u64)) { |
| 870 | obj_desc->common_field.access_byte_width = sizeof(u64); |
| 871 | } |
| 872 | |
| 873 | access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width); |
| 874 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 875 | /* |
| 876 | * Create the bitmasks used for bit insertion. |
| 877 | * Note: This if/else is used to bypass compiler differences with the |
| 878 | * shift operator |
| 879 | */ |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 880 | if (access_bit_width == ACPI_INTEGER_BIT_SIZE) { |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 881 | width_mask = ACPI_UINT64_MAX; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 882 | } else { |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 883 | width_mask = ACPI_MASK_BITS_ABOVE(access_bit_width); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 884 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 886 | mask = width_mask & |
| 887 | ACPI_MASK_BITS_BELOW(obj_desc->common_field.start_field_bit_offset); |
| 888 | |
| 889 | /* Compute the number of datums (access width data items) */ |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 890 | |
| 891 | datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length, |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 892 | access_bit_width); |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 893 | |
| 894 | field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length + |
| 895 | obj_desc->common_field. |
| 896 | start_field_bit_offset, |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 897 | access_bit_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
| 899 | /* Get initial Datum from the input buffer */ |
| 900 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 901 | ACPI_MEMCPY(&raw_datum, buffer, |
| 902 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 903 | buffer_length - buffer_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 905 | merged_datum = |
| 906 | raw_datum << obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | |
| 908 | /* Write the entire field */ |
| 909 | |
| 910 | for (i = 1; i < field_datum_count; i++) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 911 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | /* Write merged datum to the target field */ |
| 913 | |
| 914 | merged_datum &= mask; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 915 | status = acpi_ex_write_with_update_rule(obj_desc, mask, |
| 916 | merged_datum, |
| 917 | field_offset); |
| 918 | if (ACPI_FAILURE(status)) { |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 919 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | field_offset += obj_desc->common_field.access_byte_width; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 923 | |
| 924 | /* |
| 925 | * Start new output datum by merging with previous input datum |
| 926 | * if necessary. |
| 927 | * |
| 928 | * Note: Before the shift, check if the shift value will be larger than |
| 929 | * the integer size. If so, there is no need to perform the operation. |
| 930 | * This avoids the differences in behavior between different compilers |
| 931 | * concerning shift values larger than the target data width. |
| 932 | */ |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 933 | if ((access_bit_width - |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 934 | obj_desc->common_field.start_field_bit_offset) < |
| 935 | ACPI_INTEGER_BIT_SIZE) { |
| 936 | merged_datum = |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 937 | raw_datum >> (access_bit_width - |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 938 | obj_desc->common_field. |
| 939 | start_field_bit_offset); |
| 940 | } else { |
| 941 | merged_datum = 0; |
| 942 | } |
| 943 | |
Bob Moore | 4c90ece | 2006-06-08 16:29:00 -0400 | [diff] [blame] | 944 | mask = width_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | |
| 946 | if (i == datum_count) { |
| 947 | break; |
| 948 | } |
| 949 | |
| 950 | /* Get the next input datum from the buffer */ |
| 951 | |
| 952 | buffer_offset += obj_desc->common_field.access_byte_width; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 953 | ACPI_MEMCPY(&raw_datum, ((char *)buffer) + buffer_offset, |
| 954 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 955 | buffer_length - buffer_offset)); |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 956 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 957 | merged_datum |= |
| 958 | raw_datum << obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | /* Mask off any extra bits in the last datum */ |
| 962 | |
| 963 | buffer_tail_bits = (obj_desc->common_field.bit_length + |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 964 | obj_desc->common_field.start_field_bit_offset) % |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 965 | access_bit_width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | if (buffer_tail_bits) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 967 | mask &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | /* Write the last datum to the field */ |
| 971 | |
| 972 | merged_datum &= mask; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 973 | status = acpi_ex_write_with_update_rule(obj_desc, |
| 974 | mask, merged_datum, |
| 975 | field_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 977 | exit: |
| 978 | /* Free temporary buffer if we used one */ |
| 979 | |
| 980 | if (new_buffer) { |
| 981 | ACPI_FREE(new_buffer); |
| 982 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 983 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |