blob: 19df8ce66ee73132cb8cf4fbad64da6d5c945b0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exfldio - Aml Field I/O
4 *
5 *****************************************************************************/
6
7/*
Bob Mooreb4e104e2011-01-17 11:05:40 +08008 * Copyright (C) 2000 - 2011, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acinterp.h"
47#include "amlcode.h"
48#include "acevents.h"
49#include "acdispat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("exfldio")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Robert Moore44f6c012005-04-18 22:49:35 -040054/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040055static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040056acpi_ex_field_datum_io(union acpi_operand_object *obj_desc,
57 u32 field_datum_byte_offset,
Bob Moore5df7e6c2010-01-21 10:06:32 +080058 u64 *value, u32 read_write);
Robert Moore44f6c012005-04-18 22:49:35 -040059
60static u8
Bob Moore5df7e6c2010-01-21 10:06:32 +080061acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value);
Robert Moore44f6c012005-04-18 22:49:35 -040062
63static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040064acpi_ex_setup_region(union acpi_operand_object *obj_desc,
65 u32 field_datum_byte_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*******************************************************************************
68 *
69 * FUNCTION: acpi_ex_setup_region
70 *
Robert Moore44f6c012005-04-18 22:49:35 -040071 * PARAMETERS: obj_desc - Field to be read or written
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * 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 Moore44f6c012005-04-18 22:49:35 -040083static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040084acpi_ex_setup_region(union acpi_operand_object *obj_desc,
85 u32 field_datum_byte_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Len Brown4be44fc2005-08-05 00:44:28 -040087 acpi_status status = AE_OK;
88 union acpi_operand_object *rgn_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Bob Mooreb229cf92006-04-21 17:15:00 -040090 ACPI_FUNCTION_TRACE_U32(ex_setup_region, field_datum_byte_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 rgn_desc = obj_desc->common_field.region_obj;
93
94 /* We must have a valid region */
95
Bob Moore3371c192009-02-18 14:44:03 +080096 if (rgn_desc->common.type != ACPI_TYPE_REGION) {
Bob Mooref6a22b02010-03-05 17:56:40 +080097 ACPI_ERROR((AE_INFO, "Needed Region, found type 0x%X (%s)",
Bob Moore3371c192009-02-18 14:44:03 +080098 rgn_desc->common.type,
Bob Mooreb8e4d892006-01-27 16:43:00 -050099 acpi_ut_get_object_type_name(rgn_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Len Brown4be44fc2005-08-05 00:44:28 -0400101 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
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 Brown4be44fc2005-08-05 00:44:28 -0400109 status = acpi_ds_get_region_arguments(rgn_desc);
110 if (ACPI_FAILURE(status)) {
111 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 }
114
Len Brown7cb7f452009-07-27 18:42:38 -0400115 /* 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 Mooreb229cf92006-04-21 17:15:00 -0400121 /*
Bob Moore09387b42010-08-06 09:09:33 +0800122 * Exit now for SMBus or IPMI address space, it has a non-linear
123 * address space and the request cannot be directly validated
Bob Mooreb229cf92006-04-21 17:15:00 -0400124 */
Lin Ming6557a492009-06-24 11:32:04 +0800125 if (rgn_desc->region.space_id == ACPI_ADR_SPACE_SMBUS ||
126 rgn_desc->region.space_id == ACPI_ADR_SPACE_IPMI) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400127
Lin Ming6557a492009-06-24 11:32:04 +0800128 /* SMBus or IPMI has a non-linear address space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Len Brown4be44fc2005-08-05 00:44:28 -0400130 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#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 Brown4be44fc2005-08-05 00:44:28 -0400138 if (ACPI_FAILURE(status)) {
139 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
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 Moore41195322006-05-26 16:36:00 -0400149 if (rgn_desc->region.length <
Bob Moore09387b42010-08-06 09:09:33 +0800150 (obj_desc->common_field.base_byte_offset + field_datum_byte_offset +
Bob Moore41195322006-05-26 16:36:00 -0400151 obj_desc->common_field.access_byte_width)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 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 Moore67a119f2008-06-10 13:42:13 +0800156 * access width boundary. acpi_size cast for 64-bit compile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
Len Brown4be44fc2005-08-05 00:44:28 -0400158 if (ACPI_ROUND_UP(rgn_desc->region.length,
159 obj_desc->common_field.
160 access_byte_width) >=
Bob Moore67a119f2008-06-10 13:42:13 +0800161 ((acpi_size) obj_desc->common_field.
162 base_byte_offset +
163 obj_desc->common_field.access_byte_width +
164 field_datum_byte_offset)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400165 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167 }
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169 if (rgn_desc->region.length <
170 obj_desc->common_field.access_byte_width) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /*
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 Mooreb8e4d892006-01-27 16:43:00 -0500176 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800177 "Field [%4.4s] access width (%u bytes) too large for region [%4.4s] (length %u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500178 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 Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
186 /*
187 * Offset rounded up to next multiple of field width
188 * exceeds region length, indicate an error
189 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500190 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800191 "Field [%4.4s] Base+Offset+Width %u+%u+%u is beyond end of region [%4.4s] (length %u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500192 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 Torvalds1da177e2005-04-16 15:20:36 -0700198
Len Brown4be44fc2005-08-05 00:44:28 -0400199 return_ACPI_STATUS(AE_AML_REGION_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
Len Brown4be44fc2005-08-05 00:44:28 -0400202 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*******************************************************************************
206 *
207 * FUNCTION: acpi_ex_access_region
208 *
Robert Moore44f6c012005-04-18 22:49:35 -0400209 * PARAMETERS: obj_desc - Field to be read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * field_datum_byte_offset - Byte offset of this datum within the
211 * parent field
Robert Moore44f6c012005-04-18 22:49:35 -0400212 * Value - Where to store value (must at least
Bob Moore5df7e6c2010-01-21 10:06:32 +0800213 * 64 bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * 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
223acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400224acpi_ex_access_region(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800225 u32 field_datum_byte_offset, u64 *value, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Len Brown4be44fc2005-08-05 00:44:28 -0400227 acpi_status status;
228 union acpi_operand_object *rgn_desc;
Bob Mooref5407af2009-05-21 10:56:52 +0800229 u32 region_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Bob Mooreb229cf92006-04-21 17:15:00 -0400231 ACPI_FUNCTION_TRACE(ex_access_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /*
234 * Ensure that the region operands are fully evaluated and verify
235 * the validity of the request
236 */
Len Brown4be44fc2005-08-05 00:44:28 -0400237 status = acpi_ex_setup_region(obj_desc, field_datum_byte_offset);
238 if (ACPI_FAILURE(status)) {
239 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
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 Mooref5407af2009-05-21 10:56:52 +0800250 region_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400251 obj_desc->common_field.base_byte_offset + field_datum_byte_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 if ((function & ACPI_IO_MASK) == ACPI_READ) {
Len Brown4be44fc2005-08-05 00:44:28 -0400254 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[READ]"));
255 } else {
256 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[WRITE]"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258
Len Brown4be44fc2005-08-05 00:44:28 -0400259 ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD,
Bob Mooref3d2e782007-02-02 19:48:18 +0300260 " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400261 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 Mooreb7f9f042008-04-10 19:06:40 +0400266 field_datum_byte_offset, ACPI_CAST_PTR(void,
Bob Mooref5407af2009-05-21 10:56:52 +0800267 (rgn_desc->
268 region.
269 address +
270 region_offset))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /* Invoke the appropriate address_space/op_region handler */
273
Bob Mooref5407af2009-05-21 10:56:52 +0800274 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 Torvalds1da177e2005-04-16 15:20:36 -0700279
Len Brown4be44fc2005-08-05 00:44:28 -0400280 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (status == AE_NOT_IMPLEMENTED) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500282 ACPI_ERROR((AE_INFO,
Bob Moore1b74dfb2011-02-14 15:52:56 +0800283 "Region %s (ID=%u) not implemented",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500284 acpi_ut_get_region_name(rgn_desc->region.
285 space_id),
286 rgn_desc->region.space_id));
Len Brown4be44fc2005-08-05 00:44:28 -0400287 } else if (status == AE_NOT_EXIST) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500288 ACPI_ERROR((AE_INFO,
Bob Moore1b74dfb2011-02-14 15:52:56 +0800289 "Region %s (ID=%u) has no handler",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500290 acpi_ut_get_region_name(rgn_desc->region.
291 space_id),
292 rgn_desc->region.space_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 }
295
Len Brown4be44fc2005-08-05 00:44:28 -0400296 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/*******************************************************************************
300 *
301 * FUNCTION: acpi_ex_register_overflow
302 *
Robert Moore44f6c012005-04-18 22:49:35 -0400303 * PARAMETERS: obj_desc - Register(Field) to be written
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 * 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 Moore44f6c012005-04-18 22:49:35 -0400316static u8
Bob Moore5df7e6c2010-01-21 10:06:32 +0800317acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Bob Moore46dfb092011-11-28 10:10:10 +0800319 ACPI_FUNCTION_NAME(ex_register_overflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) {
322 /*
323 * The field is large enough to hold the maximum integer, so we can
324 * never overflow it.
325 */
326 return (FALSE);
327 }
328
Bob Moore5df7e6c2010-01-21 10:06:32 +0800329 if (value >= ((u64) 1 << obj_desc->common_field.bit_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /*
331 * The Value is larger than the maximum value that can fit into
332 * the register.
333 */
Bob Moore46dfb092011-11-28 10:10:10 +0800334 ACPI_ERROR((AE_INFO,
335 "Index value 0x%8.8X%8.8X overflows field width 0x%X",
336 ACPI_FORMAT_UINT64(value),
337 obj_desc->common_field.bit_length));
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return (TRUE);
340 }
341
342 /* The Value will fit into the field with no truncation */
343
344 return (FALSE);
345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/*******************************************************************************
348 *
349 * FUNCTION: acpi_ex_field_datum_io
350 *
Robert Moore44f6c012005-04-18 22:49:35 -0400351 * PARAMETERS: obj_desc - Field to be read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * field_datum_byte_offset - Byte offset of this datum within the
353 * parent field
Robert Moore44f6c012005-04-18 22:49:35 -0400354 * Value - Where to store value (must be 64 bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * read_write - Read or Write flag
356 *
357 * RETURN: Status
358 *
359 * DESCRIPTION: Read or Write a single datum of a field. The field_type is
360 * demultiplexed here to handle the different types of fields
361 * (buffer_field, region_field, index_field, bank_field)
362 *
363 ******************************************************************************/
364
Robert Moore44f6c012005-04-18 22:49:35 -0400365static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400366acpi_ex_field_datum_io(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800367 u32 field_datum_byte_offset, u64 *value, u32 read_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Len Brown4be44fc2005-08-05 00:44:28 -0400369 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800370 u64 local_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Bob Mooreb229cf92006-04-21 17:15:00 -0400372 ACPI_FUNCTION_TRACE_U32(ex_field_datum_io, field_datum_byte_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 if (read_write == ACPI_READ) {
375 if (!value) {
376 local_value = 0;
Robert Moore44f6c012005-04-18 22:49:35 -0400377
378 /* To support reads without saving return value */
379 value = &local_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 /* Clear the entire return buffer first, [Very Important!] */
383
384 *value = 0;
385 }
386
387 /*
388 * The four types of fields are:
389 *
390 * buffer_field - Read/write from/to a Buffer
391 * region_field - Read/write from/to a Operation Region.
Robert Moore44f6c012005-04-18 22:49:35 -0400392 * bank_field - Write to a Bank Register, then read/write from/to an
393 * operation_region
394 * index_field - Write to an Index Register, then read/write from/to a
395 * Data Register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
Bob Moore3371c192009-02-18 14:44:03 +0800397 switch (obj_desc->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 case ACPI_TYPE_BUFFER_FIELD:
399 /*
400 * If the buffer_field arguments have not been previously evaluated,
401 * evaluate them now and save the results.
402 */
403 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400404 status = acpi_ds_get_buffer_field_arguments(obj_desc);
405 if (ACPI_FAILURE(status)) {
406 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408 }
409
410 if (read_write == ACPI_READ) {
411 /*
412 * Copy the data from the source buffer.
413 * Length is the field width in bytes.
414 */
Len Brown4be44fc2005-08-05 00:44:28 -0400415 ACPI_MEMCPY(value,
416 (obj_desc->buffer_field.buffer_obj)->buffer.
417 pointer +
418 obj_desc->buffer_field.base_byte_offset +
419 field_datum_byte_offset,
420 obj_desc->common_field.access_byte_width);
421 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /*
423 * Copy the data to the target buffer.
424 * Length is the field width in bytes.
425 */
Len Brown4be44fc2005-08-05 00:44:28 -0400426 ACPI_MEMCPY((obj_desc->buffer_field.buffer_obj)->buffer.
427 pointer +
428 obj_desc->buffer_field.base_byte_offset +
429 field_datum_byte_offset, value,
430 obj_desc->common_field.access_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 status = AE_OK;
434 break;
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 case ACPI_TYPE_LOCAL_BANK_FIELD:
437
Robert Moore44f6c012005-04-18 22:49:35 -0400438 /*
439 * Ensure that the bank_value is not beyond the capacity of
440 * the register
441 */
Len Brown4be44fc2005-08-05 00:44:28 -0400442 if (acpi_ex_register_overflow(obj_desc->bank_field.bank_obj,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800443 (u64) obj_desc->bank_field.
444 value)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400445 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
448 /*
449 * For bank_fields, we must write the bank_value to the bank_register
450 * (itself a region_field) before we can access the data.
451 */
Len Brown4be44fc2005-08-05 00:44:28 -0400452 status =
453 acpi_ex_insert_into_field(obj_desc->bank_field.bank_obj,
454 &obj_desc->bank_field.value,
455 sizeof(obj_desc->bank_field.
456 value));
457 if (ACPI_FAILURE(status)) {
458 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460
461 /*
462 * Now that the Bank has been selected, fall through to the
463 * region_field case and write the datum to the Operation Region
464 */
465
466 /*lint -fallthrough */
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 case ACPI_TYPE_LOCAL_REGION_FIELD:
469 /*
470 * For simple region_fields, we just directly access the owning
471 * Operation Region.
472 */
Len Brown4be44fc2005-08-05 00:44:28 -0400473 status =
474 acpi_ex_access_region(obj_desc, field_datum_byte_offset,
475 value, read_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 case ACPI_TYPE_LOCAL_INDEX_FIELD:
479
Robert Moore44f6c012005-04-18 22:49:35 -0400480 /*
481 * Ensure that the index_value is not beyond the capacity of
482 * the register
483 */
Len Brown4be44fc2005-08-05 00:44:28 -0400484 if (acpi_ex_register_overflow(obj_desc->index_field.index_obj,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800485 (u64) obj_desc->index_field.
486 value)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400487 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489
490 /* Write the index value to the index_register (itself a region_field) */
491
492 field_datum_byte_offset += obj_desc->index_field.value;
493
Len Brown4be44fc2005-08-05 00:44:28 -0400494 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
495 "Write to Index Register: Value %8.8X\n",
496 field_datum_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Len Brown4be44fc2005-08-05 00:44:28 -0400498 status =
499 acpi_ex_insert_into_field(obj_desc->index_field.index_obj,
500 &field_datum_byte_offset,
501 sizeof(field_datum_byte_offset));
502 if (ACPI_FAILURE(status)) {
503 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (read_write == ACPI_READ) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* Read the datum from the data_register */
509
Bob Mooree9a8c6a2008-11-12 15:16:49 +0800510 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
511 "Read from Data Register\n"));
512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 status =
514 acpi_ex_extract_from_field(obj_desc->index_field.
515 data_obj, value,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800516 sizeof(u64));
Len Brown4be44fc2005-08-05 00:44:28 -0400517 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Write the datum to the data_register */
519
Bob Mooree9a8c6a2008-11-12 15:16:49 +0800520 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
521 "Write to Data Register: Value %8.8X%8.8X\n",
522 ACPI_FORMAT_UINT64(*value)));
523
Len Brown4be44fc2005-08-05 00:44:28 -0400524 status =
525 acpi_ex_insert_into_field(obj_desc->index_field.
526 data_obj, value,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800527 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529 break;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 default:
532
Bob Mooref6a22b02010-03-05 17:56:40 +0800533 ACPI_ERROR((AE_INFO, "Wrong object type in field I/O %u",
Bob Moore3371c192009-02-18 14:44:03 +0800534 obj_desc->common.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 status = AE_AML_INTERNAL;
536 break;
537 }
538
Len Brown4be44fc2005-08-05 00:44:28 -0400539 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (read_write == ACPI_READ) {
Len Brown4be44fc2005-08-05 00:44:28 -0400541 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800542 "Value Read %8.8X%8.8X, Width %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400543 ACPI_FORMAT_UINT64(*value),
544 obj_desc->common_field.
545 access_byte_width));
546 } else {
547 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800548 "Value Written %8.8X%8.8X, Width %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400549 ACPI_FORMAT_UINT64(*value),
550 obj_desc->common_field.
551 access_byte_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 }
554
Len Brown4be44fc2005-08-05 00:44:28 -0400555 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*******************************************************************************
559 *
560 * FUNCTION: acpi_ex_write_with_update_rule
561 *
Robert Moore44f6c012005-04-18 22:49:35 -0400562 * PARAMETERS: obj_desc - Field to be written
563 * Mask - bitmask within field datum
564 * field_value - Value to write
565 * field_datum_byte_offset - Offset of datum within field
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 *
567 * RETURN: Status
568 *
569 * DESCRIPTION: Apply the field update rule to a field write
570 *
571 ******************************************************************************/
572
573acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400574acpi_ex_write_with_update_rule(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800575 u64 mask,
576 u64 field_value, u32 field_datum_byte_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Len Brown4be44fc2005-08-05 00:44:28 -0400578 acpi_status status = AE_OK;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800579 u64 merged_value;
580 u64 current_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Bob Mooreb229cf92006-04-21 17:15:00 -0400582 ACPI_FUNCTION_TRACE_U32(ex_write_with_update_rule, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* Start with the new bits */
585
586 merged_value = field_value;
587
588 /* If the mask is all ones, we don't need to worry about the update rule */
589
Bob Moore5df7e6c2010-01-21 10:06:32 +0800590 if (mask != ACPI_UINT64_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* Decode the update rule */
593
Len Brown4be44fc2005-08-05 00:44:28 -0400594 switch (obj_desc->common_field.
595 field_flags & AML_FIELD_UPDATE_RULE_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 case AML_FIELD_UPDATE_PRESERVE:
597 /*
598 * Check if update rule needs to be applied (not if mask is all
599 * ones) The left shift drops the bits we want to ignore.
600 */
Len Brown4be44fc2005-08-05 00:44:28 -0400601 if ((~mask << (ACPI_MUL_8(sizeof(mask)) -
602 ACPI_MUL_8(obj_desc->common_field.
603 access_byte_width))) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /*
605 * Read the current contents of the byte/word/dword containing
606 * the field, and merge with the new field value.
607 */
Len Brown4be44fc2005-08-05 00:44:28 -0400608 status =
609 acpi_ex_field_datum_io(obj_desc,
610 field_datum_byte_offset,
611 &current_value,
612 ACPI_READ);
613 if (ACPI_FAILURE(status)) {
614 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
617 merged_value |= (current_value & ~mask);
618 }
619 break;
620
621 case AML_FIELD_UPDATE_WRITE_AS_ONES:
622
623 /* Set positions outside the field to all ones */
624
625 merged_value |= ~mask;
626 break;
627
628 case AML_FIELD_UPDATE_WRITE_AS_ZEROS:
629
630 /* Set positions outside the field to all zeros */
631
632 merged_value &= mask;
633 break;
634
635 default:
636
Bob Mooreb8e4d892006-01-27 16:43:00 -0500637 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800638 "Unknown UpdateRule value: 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500639 (obj_desc->common_field.
640 field_flags &
641 AML_FIELD_UPDATE_RULE_MASK)));
Len Brown4be44fc2005-08-05 00:44:28 -0400642 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644 }
645
Len Brown4be44fc2005-08-05 00:44:28 -0400646 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400647 "Mask %8.8X%8.8X, DatumOffset %X, Width %X, Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400648 ACPI_FORMAT_UINT64(mask),
649 field_datum_byte_offset,
650 obj_desc->common_field.access_byte_width,
651 ACPI_FORMAT_UINT64(field_value),
652 ACPI_FORMAT_UINT64(merged_value)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* Write the merged value */
655
Len Brown4be44fc2005-08-05 00:44:28 -0400656 status = acpi_ex_field_datum_io(obj_desc, field_datum_byte_offset,
657 &merged_value, ACPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Len Brown4be44fc2005-08-05 00:44:28 -0400659 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/*******************************************************************************
663 *
664 * FUNCTION: acpi_ex_extract_from_field
665 *
666 * PARAMETERS: obj_desc - Field to be read
667 * Buffer - Where to store the field data
668 * buffer_length - Length of Buffer
669 *
670 * RETURN: Status
671 *
672 * DESCRIPTION: Retrieve the current value of the given field
673 *
674 ******************************************************************************/
675
676acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400677acpi_ex_extract_from_field(union acpi_operand_object *obj_desc,
678 void *buffer, u32 buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Len Brown4be44fc2005-08-05 00:44:28 -0400680 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800681 u64 raw_datum;
682 u64 merged_datum;
Len Brown4be44fc2005-08-05 00:44:28 -0400683 u32 field_offset = 0;
684 u32 buffer_offset = 0;
685 u32 buffer_tail_bits;
686 u32 datum_count;
687 u32 field_datum_count;
Bob Moore09387b42010-08-06 09:09:33 +0800688 u32 access_bit_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400689 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Bob Mooreb229cf92006-04-21 17:15:00 -0400691 ACPI_FUNCTION_TRACE(ex_extract_from_field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 /* Validate target buffer and clear it */
694
Len Brown4be44fc2005-08-05 00:44:28 -0400695 if (buffer_length <
696 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500697 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800698 "Field size %u (bits) is too large for buffer (%u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500699 obj_desc->common_field.bit_length, buffer_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Len Brown4be44fc2005-08-05 00:44:28 -0400701 return_ACPI_STATUS(AE_BUFFER_OVERFLOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Bob Moore09387b42010-08-06 09:09:33 +0800703
Len Brown4be44fc2005-08-05 00:44:28 -0400704 ACPI_MEMSET(buffer, 0, buffer_length);
Bob Moore09387b42010-08-06 09:09:33 +0800705 access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width);
706
707 /* Handle the simple case here */
708
709 if ((obj_desc->common_field.start_field_bit_offset == 0) &&
710 (obj_desc->common_field.bit_length == access_bit_width)) {
711 status = acpi_ex_field_datum_io(obj_desc, 0, buffer, ACPI_READ);
712 return_ACPI_STATUS(status);
713 }
714
715/* TBD: Move to common setup code */
716
717 /* Field algorithm is limited to sizeof(u64), truncate if needed */
718
719 if (obj_desc->common_field.access_byte_width > sizeof(u64)) {
720 obj_desc->common_field.access_byte_width = sizeof(u64);
721 access_bit_width = sizeof(u64) * 8;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* Compute the number of datums (access width data items) */
725
Bob Moore09387b42010-08-06 09:09:33 +0800726 datum_count =
727 ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length,
728 access_bit_width);
729
Len Brown4be44fc2005-08-05 00:44:28 -0400730 field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length +
731 obj_desc->common_field.
732 start_field_bit_offset,
Len Brown4be44fc2005-08-05 00:44:28 -0400733 access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* Priming read from the field */
736
Len Brown4be44fc2005-08-05 00:44:28 -0400737 status =
738 acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum,
739 ACPI_READ);
740 if (ACPI_FAILURE(status)) {
741 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Len Brown4be44fc2005-08-05 00:44:28 -0400743 merged_datum =
744 raw_datum >> obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* Read the rest of the field */
747
748 for (i = 1; i < field_datum_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* Get next input datum from the field */
751
752 field_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400753 status = acpi_ex_field_datum_io(obj_desc, field_offset,
754 &raw_datum, ACPI_READ);
755 if (ACPI_FAILURE(status)) {
756 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758
Bob Moore967440e32006-06-23 17:04:00 -0400759 /*
760 * Merge with previous datum if necessary.
761 *
762 * Note: Before the shift, check if the shift value will be larger than
763 * the integer size. If so, there is no need to perform the operation.
764 * This avoids the differences in behavior between different compilers
765 * concerning shift values larger than the target data width.
766 */
Bob Moore09387b42010-08-06 09:09:33 +0800767 if (access_bit_width -
768 obj_desc->common_field.start_field_bit_offset <
Bob Moore967440e32006-06-23 17:04:00 -0400769 ACPI_INTEGER_BIT_SIZE) {
770 merged_datum |=
Bob Moore09387b42010-08-06 09:09:33 +0800771 raw_datum << (access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400772 obj_desc->common_field.
773 start_field_bit_offset);
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 if (i == datum_count) {
777 break;
778 }
779
780 /* Write merged datum to target buffer */
781
Len Brown4be44fc2005-08-05 00:44:28 -0400782 ACPI_MEMCPY(((char *)buffer) + buffer_offset, &merged_datum,
783 ACPI_MIN(obj_desc->common_field.access_byte_width,
784 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 buffer_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400787 merged_datum =
788 raw_datum >> obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790
791 /* Mask off any extra bits in the last datum */
792
Bob Moore09387b42010-08-06 09:09:33 +0800793 buffer_tail_bits = obj_desc->common_field.bit_length % access_bit_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (buffer_tail_bits) {
Len Brown4be44fc2005-08-05 00:44:28 -0400795 merged_datum &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
798 /* Write the last datum to the buffer */
799
Len Brown4be44fc2005-08-05 00:44:28 -0400800 ACPI_MEMCPY(((char *)buffer) + buffer_offset, &merged_datum,
801 ACPI_MIN(obj_desc->common_field.access_byte_width,
802 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Len Brown4be44fc2005-08-05 00:44:28 -0400804 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807/*******************************************************************************
808 *
809 * FUNCTION: acpi_ex_insert_into_field
810 *
811 * PARAMETERS: obj_desc - Field to be written
812 * Buffer - Data to be written
813 * buffer_length - Length of Buffer
814 *
815 * RETURN: Status
816 *
817 * DESCRIPTION: Store the Buffer contents into the given field
818 *
819 ******************************************************************************/
820
821acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400822acpi_ex_insert_into_field(union acpi_operand_object *obj_desc,
823 void *buffer, u32 buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Bob Moore09387b42010-08-06 09:09:33 +0800825 void *new_buffer;
Len Brown4be44fc2005-08-05 00:44:28 -0400826 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800827 u64 mask;
828 u64 width_mask;
829 u64 merged_datum;
830 u64 raw_datum = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400831 u32 field_offset = 0;
832 u32 buffer_offset = 0;
833 u32 buffer_tail_bits;
834 u32 datum_count;
835 u32 field_datum_count;
Bob Moore09387b42010-08-06 09:09:33 +0800836 u32 access_bit_width;
Bob Moore9aa61692008-04-10 19:06:41 +0400837 u32 required_length;
Bob Moore09387b42010-08-06 09:09:33 +0800838 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Bob Mooreb229cf92006-04-21 17:15:00 -0400840 ACPI_FUNCTION_TRACE(ex_insert_into_field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /* Validate input buffer */
843
Bob Moore9aa61692008-04-10 19:06:41 +0400844 new_buffer = NULL;
845 required_length =
846 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length);
847 /*
848 * We must have a buffer that is at least as long as the field
849 * we are writing to. This is because individual fields are
850 * indivisible and partial writes are not supported -- as per
851 * the ACPI specification.
852 */
853 if (buffer_length < required_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Bob Moore9aa61692008-04-10 19:06:41 +0400855 /* We need to create a new buffer */
856
857 new_buffer = ACPI_ALLOCATE_ZEROED(required_length);
858 if (!new_buffer) {
859 return_ACPI_STATUS(AE_NO_MEMORY);
860 }
861
862 /*
863 * Copy the original data to the new buffer, starting
864 * at Byte zero. All unused (upper) bytes of the
865 * buffer will be 0.
866 */
867 ACPI_MEMCPY((char *)new_buffer, (char *)buffer, buffer_length);
868 buffer = new_buffer;
869 buffer_length = required_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871
Bob Moore09387b42010-08-06 09:09:33 +0800872/* TBD: Move to common setup code */
873
874 /* Algo is limited to sizeof(u64), so cut the access_byte_width */
875 if (obj_desc->common_field.access_byte_width > sizeof(u64)) {
876 obj_desc->common_field.access_byte_width = sizeof(u64);
877 }
878
879 access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width);
880
Bob Moore967440e32006-06-23 17:04:00 -0400881 /*
882 * Create the bitmasks used for bit insertion.
883 * Note: This if/else is used to bypass compiler differences with the
884 * shift operator
885 */
Bob Moore09387b42010-08-06 09:09:33 +0800886 if (access_bit_width == ACPI_INTEGER_BIT_SIZE) {
Bob Moore5df7e6c2010-01-21 10:06:32 +0800887 width_mask = ACPI_UINT64_MAX;
Bob Moore967440e32006-06-23 17:04:00 -0400888 } else {
Bob Moore09387b42010-08-06 09:09:33 +0800889 width_mask = ACPI_MASK_BITS_ABOVE(access_bit_width);
Bob Moore967440e32006-06-23 17:04:00 -0400890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Bob Moore967440e32006-06-23 17:04:00 -0400892 mask = width_mask &
893 ACPI_MASK_BITS_BELOW(obj_desc->common_field.start_field_bit_offset);
894
895 /* Compute the number of datums (access width data items) */
Bob Moore41195322006-05-26 16:36:00 -0400896
897 datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length,
Bob Moore09387b42010-08-06 09:09:33 +0800898 access_bit_width);
Bob Moore41195322006-05-26 16:36:00 -0400899
900 field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length +
901 obj_desc->common_field.
902 start_field_bit_offset,
Bob Moore41195322006-05-26 16:36:00 -0400903 access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 /* Get initial Datum from the input buffer */
906
Len Brown4be44fc2005-08-05 00:44:28 -0400907 ACPI_MEMCPY(&raw_datum, buffer,
908 ACPI_MIN(obj_desc->common_field.access_byte_width,
909 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Len Brown4be44fc2005-08-05 00:44:28 -0400911 merged_datum =
912 raw_datum << obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 /* Write the entire field */
915
916 for (i = 1; i < field_datum_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 /* Write merged datum to the target field */
919
920 merged_datum &= mask;
Len Brown4be44fc2005-08-05 00:44:28 -0400921 status = acpi_ex_write_with_update_rule(obj_desc, mask,
922 merged_datum,
923 field_offset);
924 if (ACPI_FAILURE(status)) {
Bob Moore9aa61692008-04-10 19:06:41 +0400925 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 field_offset += obj_desc->common_field.access_byte_width;
Bob Moore967440e32006-06-23 17:04:00 -0400929
930 /*
931 * Start new output datum by merging with previous input datum
932 * if necessary.
933 *
934 * Note: Before the shift, check if the shift value will be larger than
935 * the integer size. If so, there is no need to perform the operation.
936 * This avoids the differences in behavior between different compilers
937 * concerning shift values larger than the target data width.
938 */
Bob Moore09387b42010-08-06 09:09:33 +0800939 if ((access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400940 obj_desc->common_field.start_field_bit_offset) <
941 ACPI_INTEGER_BIT_SIZE) {
942 merged_datum =
Bob Moore09387b42010-08-06 09:09:33 +0800943 raw_datum >> (access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400944 obj_desc->common_field.
945 start_field_bit_offset);
946 } else {
947 merged_datum = 0;
948 }
949
Bob Moore4c90ece2006-06-08 16:29:00 -0400950 mask = width_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 if (i == datum_count) {
953 break;
954 }
955
956 /* Get the next input datum from the buffer */
957
958 buffer_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400959 ACPI_MEMCPY(&raw_datum, ((char *)buffer) + buffer_offset,
960 ACPI_MIN(obj_desc->common_field.access_byte_width,
961 buffer_length - buffer_offset));
Bob Moore09387b42010-08-06 09:09:33 +0800962
Len Brown4be44fc2005-08-05 00:44:28 -0400963 merged_datum |=
964 raw_datum << obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
967 /* Mask off any extra bits in the last datum */
968
969 buffer_tail_bits = (obj_desc->common_field.bit_length +
Len Brown4be44fc2005-08-05 00:44:28 -0400970 obj_desc->common_field.start_field_bit_offset) %
Bob Moore09387b42010-08-06 09:09:33 +0800971 access_bit_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (buffer_tail_bits) {
Len Brown4be44fc2005-08-05 00:44:28 -0400973 mask &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
976 /* Write the last datum to the field */
977
978 merged_datum &= mask;
Len Brown4be44fc2005-08-05 00:44:28 -0400979 status = acpi_ex_write_with_update_rule(obj_desc,
980 mask, merged_datum,
981 field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Bob Moore9aa61692008-04-10 19:06:41 +0400983 exit:
984 /* Free temporary buffer if we used one */
985
986 if (new_buffer) {
987 ACPI_FREE(new_buffer);
988 }
Len Brown4be44fc2005-08-05 00:44:28 -0400989 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}