blob: 725a3746a2df095163e5c10ca35077cf8afbb72c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exfldio - Aml Field I/O
4 *
5 *****************************************************************************/
6
7/*
David E. Box82a80942015-02-05 15:20:45 +08008 * Copyright (C) 2000 - 2015, 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,
Lv Zheng1f86e8c2012-10-31 02:25:45 +000057 u32 field_datum_byte_offset, u64 *value, u32 read_write);
Robert Moore44f6c012005-04-18 22:49:35 -040058
59static u8
Bob Moore5df7e6c2010-01-21 10:06:32 +080060acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value);
Robert Moore44f6c012005-04-18 22:49:35 -040061
62static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040063acpi_ex_setup_region(union acpi_operand_object *obj_desc,
64 u32 field_datum_byte_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/*******************************************************************************
67 *
68 * FUNCTION: acpi_ex_setup_region
69 *
Robert Moore44f6c012005-04-18 22:49:35 -040070 * PARAMETERS: obj_desc - Field to be read or written
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * field_datum_byte_offset - Byte offset of this datum within the
72 * parent field
73 *
74 * RETURN: Status
75 *
76 * DESCRIPTION: Common processing for acpi_ex_extract_from_field and
77 * acpi_ex_insert_into_field. Initialize the Region if necessary and
78 * validate the request.
79 *
80 ******************************************************************************/
81
Robert Moore44f6c012005-04-18 22:49:35 -040082static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040083acpi_ex_setup_region(union acpi_operand_object *obj_desc,
84 u32 field_datum_byte_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Len Brown4be44fc2005-08-05 00:44:28 -040086 acpi_status status = AE_OK;
87 union acpi_operand_object *rgn_desc;
Bob Mooreec463662011-11-30 09:35:05 +080088 u8 space_id;
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
Bob Mooreec463662011-11-30 09:35:05 +0800104 space_id = rgn_desc->region.space_id;
105
106 /* Validate the Space ID */
107
108 if (!acpi_is_valid_space_id(space_id)) {
109 ACPI_ERROR((AE_INFO,
110 "Invalid/unknown Address Space ID: 0x%2.2X",
111 space_id));
112 return_ACPI_STATUS(AE_AML_INVALID_SPACE_ID);
113 }
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 /*
116 * If the Region Address and Length have not been previously evaluated,
117 * evaluate them now and save the results.
118 */
119 if (!(rgn_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400120 status = acpi_ds_get_region_arguments(rgn_desc);
121 if (ACPI_FAILURE(status)) {
122 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124 }
125
Bob Mooreb229cf92006-04-21 17:15:00 -0400126 /*
Bob Moore2da120b2011-11-16 14:14:32 +0800127 * Exit now for SMBus, GSBus or IPMI address space, it has a non-linear
Bob Moore09387b42010-08-06 09:09:33 +0800128 * address space and the request cannot be directly validated
Bob Mooreb229cf92006-04-21 17:15:00 -0400129 */
Bob Mooreec463662011-11-30 09:35:05 +0800130 if (space_id == ACPI_ADR_SPACE_SMBUS ||
Bob Moore2da120b2011-11-16 14:14:32 +0800131 space_id == ACPI_ADR_SPACE_GSBUS ||
Bob Mooreec463662011-11-30 09:35:05 +0800132 space_id == ACPI_ADR_SPACE_IPMI) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400133
Lin Ming6557a492009-06-24 11:32:04 +0800134 /* SMBus or IPMI has a non-linear address space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Len Brown4be44fc2005-08-05 00:44:28 -0400136 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#ifdef ACPI_UNDER_DEVELOPMENT
139 /*
140 * If the Field access is any_acc, we can now compute the optimal
141 * access (because we know know the length of the parent region)
142 */
143 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400144 if (ACPI_FAILURE(status)) {
145 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147 }
148#endif
149
150 /*
Bob Moore73a30902012-10-31 02:26:55 +0000151 * Validate the request. The entire request from the byte offset for a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * length of one field datum (access width) must fit within the region.
153 * (Region length is specified in bytes)
154 */
Bob Moore41195322006-05-26 16:36:00 -0400155 if (rgn_desc->region.length <
Bob Moore09387b42010-08-06 09:09:33 +0800156 (obj_desc->common_field.base_byte_offset + field_datum_byte_offset +
Bob Moore41195322006-05-26 16:36:00 -0400157 obj_desc->common_field.access_byte_width)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (acpi_gbl_enable_interpreter_slack) {
159 /*
160 * Slack mode only: We will go ahead and allow access to this
161 * field if it is within the region length rounded up to the next
Bob Moore67a119f2008-06-10 13:42:13 +0800162 * access width boundary. acpi_size cast for 64-bit compile.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Len Brown4be44fc2005-08-05 00:44:28 -0400164 if (ACPI_ROUND_UP(rgn_desc->region.length,
165 obj_desc->common_field.
166 access_byte_width) >=
Bob Moore67a119f2008-06-10 13:42:13 +0800167 ((acpi_size) obj_desc->common_field.
168 base_byte_offset +
169 obj_desc->common_field.access_byte_width +
170 field_datum_byte_offset)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400171 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173 }
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 if (rgn_desc->region.length <
176 obj_desc->common_field.access_byte_width) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
178 * This is the case where the access_type (acc_word, etc.) is wider
Bob Moore73a30902012-10-31 02:26:55 +0000179 * than the region itself. For example, a region of length one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * byte, and a field with Dword access specified.
181 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500182 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800183 "Field [%4.4s] access width (%u bytes) too large for region [%4.4s] (length %u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500184 acpi_ut_get_node_name(obj_desc->
185 common_field.node),
186 obj_desc->common_field.access_byte_width,
187 acpi_ut_get_node_name(rgn_desc->region.
188 node),
189 rgn_desc->region.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
192 /*
193 * Offset rounded up to next multiple of field width
194 * exceeds region length, indicate an error
195 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500196 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800197 "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 -0500198 acpi_ut_get_node_name(obj_desc->common_field.node),
199 obj_desc->common_field.base_byte_offset,
200 field_datum_byte_offset,
201 obj_desc->common_field.access_byte_width,
202 acpi_ut_get_node_name(rgn_desc->region.node),
203 rgn_desc->region.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Len Brown4be44fc2005-08-05 00:44:28 -0400205 return_ACPI_STATUS(AE_AML_REGION_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
Len Brown4be44fc2005-08-05 00:44:28 -0400208 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/*******************************************************************************
212 *
213 * FUNCTION: acpi_ex_access_region
214 *
Robert Moore44f6c012005-04-18 22:49:35 -0400215 * PARAMETERS: obj_desc - Field to be read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * field_datum_byte_offset - Byte offset of this datum within the
217 * parent field
Bob Mooreba494be2012-07-12 09:40:10 +0800218 * value - Where to store value (must at least
Bob Moore5df7e6c2010-01-21 10:06:32 +0800219 * 64 bits)
Bob Mooreba494be2012-07-12 09:40:10 +0800220 * function - Read or Write flag plus other region-
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * dependent flags
222 *
223 * RETURN: Status
224 *
225 * DESCRIPTION: Read or Write a single field datum to an Operation Region.
226 *
227 ******************************************************************************/
228
229acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400230acpi_ex_access_region(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800231 u32 field_datum_byte_offset, u64 *value, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Len Brown4be44fc2005-08-05 00:44:28 -0400233 acpi_status status;
234 union acpi_operand_object *rgn_desc;
Bob Mooref5407af2009-05-21 10:56:52 +0800235 u32 region_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Bob Mooreb229cf92006-04-21 17:15:00 -0400237 ACPI_FUNCTION_TRACE(ex_access_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /*
240 * Ensure that the region operands are fully evaluated and verify
241 * the validity of the request
242 */
Len Brown4be44fc2005-08-05 00:44:28 -0400243 status = acpi_ex_setup_region(obj_desc, field_datum_byte_offset);
244 if (ACPI_FAILURE(status)) {
245 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
248 /*
249 * The physical address of this field datum is:
250 *
251 * 1) The base of the region, plus
252 * 2) The base offset of the field, plus
253 * 3) The current offset into the field
254 */
255 rgn_desc = obj_desc->common_field.region_obj;
Bob Mooref5407af2009-05-21 10:56:52 +0800256 region_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400257 obj_desc->common_field.base_byte_offset + field_datum_byte_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if ((function & ACPI_IO_MASK) == ACPI_READ) {
Len Brown4be44fc2005-08-05 00:44:28 -0400260 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[READ]"));
261 } else {
262 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[WRITE]"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD,
Lv Zhengcc2080b2015-04-13 11:48:46 +0800266 " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %8.8X%8.8X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400267 acpi_ut_get_region_name(rgn_desc->region.
268 space_id),
269 rgn_desc->region.space_id,
270 obj_desc->common_field.access_byte_width,
271 obj_desc->common_field.base_byte_offset,
Lv Zhengcc2080b2015-04-13 11:48:46 +0800272 field_datum_byte_offset,
273 ACPI_FORMAT_UINT64(rgn_desc->region.address +
274 region_offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /* Invoke the appropriate address_space/op_region handler */
277
Bob Moore9ce81782011-11-16 13:39:07 +0800278 status = acpi_ev_address_space_dispatch(rgn_desc, obj_desc,
279 function, region_offset,
280 ACPI_MUL_8(obj_desc->
281 common_field.
282 access_byte_width),
283 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Len Brown4be44fc2005-08-05 00:44:28 -0400285 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (status == AE_NOT_IMPLEMENTED) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500287 ACPI_ERROR((AE_INFO,
Bob Moore1b74dfb2011-02-14 15:52:56 +0800288 "Region %s (ID=%u) not implemented",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500289 acpi_ut_get_region_name(rgn_desc->region.
290 space_id),
291 rgn_desc->region.space_id));
Len Brown4be44fc2005-08-05 00:44:28 -0400292 } else if (status == AE_NOT_EXIST) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500293 ACPI_ERROR((AE_INFO,
Bob Moore1b74dfb2011-02-14 15:52:56 +0800294 "Region %s (ID=%u) has no handler",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500295 acpi_ut_get_region_name(rgn_desc->region.
296 space_id),
297 rgn_desc->region.space_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 }
300
Len Brown4be44fc2005-08-05 00:44:28 -0400301 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*******************************************************************************
305 *
306 * FUNCTION: acpi_ex_register_overflow
307 *
Robert Moore44f6c012005-04-18 22:49:35 -0400308 * PARAMETERS: obj_desc - Register(Field) to be written
Bob Mooreba494be2012-07-12 09:40:10 +0800309 * value - Value to be stored
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 *
311 * RETURN: TRUE if value overflows the field, FALSE otherwise
312 *
313 * DESCRIPTION: Check if a value is out of range of the field being written.
314 * Used to check if the values written to Index and Bank registers
Bob Moore73a30902012-10-31 02:26:55 +0000315 * are out of range. Normally, the value is simply truncated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * to fit the field, but this case is most likely a serious
317 * coding error in the ASL.
318 *
319 ******************************************************************************/
320
Robert Moore44f6c012005-04-18 22:49:35 -0400321static u8
Bob Moore5df7e6c2010-01-21 10:06:32 +0800322acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324
325 if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) {
326 /*
327 * The field is large enough to hold the maximum integer, so we can
328 * never overflow it.
329 */
330 return (FALSE);
331 }
332
Bob Moore5df7e6c2010-01-21 10:06:32 +0800333 if (value >= ((u64) 1 << obj_desc->common_field.bit_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /*
335 * The Value is larger than the maximum value that can fit into
336 * the register.
337 */
Bob Moore46dfb092011-11-28 10:10:10 +0800338 ACPI_ERROR((AE_INFO,
339 "Index value 0x%8.8X%8.8X overflows field width 0x%X",
340 ACPI_FORMAT_UINT64(value),
341 obj_desc->common_field.bit_length));
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return (TRUE);
344 }
345
346 /* The Value will fit into the field with no truncation */
347
348 return (FALSE);
349}
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351/*******************************************************************************
352 *
353 * FUNCTION: acpi_ex_field_datum_io
354 *
Robert Moore44f6c012005-04-18 22:49:35 -0400355 * PARAMETERS: obj_desc - Field to be read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * field_datum_byte_offset - Byte offset of this datum within the
357 * parent field
Bob Mooreba494be2012-07-12 09:40:10 +0800358 * value - Where to store value (must be 64 bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * read_write - Read or Write flag
360 *
361 * RETURN: Status
362 *
Bob Moore73a30902012-10-31 02:26:55 +0000363 * DESCRIPTION: Read or Write a single datum of a field. The field_type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * demultiplexed here to handle the different types of fields
365 * (buffer_field, region_field, index_field, bank_field)
366 *
367 ******************************************************************************/
368
Robert Moore44f6c012005-04-18 22:49:35 -0400369static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400370acpi_ex_field_datum_io(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800371 u32 field_datum_byte_offset, u64 *value, u32 read_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Len Brown4be44fc2005-08-05 00:44:28 -0400373 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800374 u64 local_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Bob Mooreb229cf92006-04-21 17:15:00 -0400376 ACPI_FUNCTION_TRACE_U32(ex_field_datum_io, field_datum_byte_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 if (read_write == ACPI_READ) {
379 if (!value) {
380 local_value = 0;
Robert Moore44f6c012005-04-18 22:49:35 -0400381
382 /* To support reads without saving return value */
383 value = &local_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
386 /* Clear the entire return buffer first, [Very Important!] */
387
388 *value = 0;
389 }
390
391 /*
392 * The four types of fields are:
393 *
394 * buffer_field - Read/write from/to a Buffer
395 * region_field - Read/write from/to a Operation Region.
Robert Moore44f6c012005-04-18 22:49:35 -0400396 * bank_field - Write to a Bank Register, then read/write from/to an
397 * operation_region
398 * index_field - Write to an Index Register, then read/write from/to a
399 * Data Register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 */
Bob Moore3371c192009-02-18 14:44:03 +0800401 switch (obj_desc->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 case ACPI_TYPE_BUFFER_FIELD:
403 /*
404 * If the buffer_field arguments have not been previously evaluated,
405 * evaluate them now and save the results.
406 */
407 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400408 status = acpi_ds_get_buffer_field_arguments(obj_desc);
409 if (ACPI_FAILURE(status)) {
410 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 }
413
414 if (read_write == ACPI_READ) {
415 /*
416 * Copy the data from the source buffer.
417 * Length is the field width in bytes.
418 */
Len Brown4be44fc2005-08-05 00:44:28 -0400419 ACPI_MEMCPY(value,
420 (obj_desc->buffer_field.buffer_obj)->buffer.
421 pointer +
422 obj_desc->buffer_field.base_byte_offset +
423 field_datum_byte_offset,
424 obj_desc->common_field.access_byte_width);
425 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /*
427 * Copy the data to the target buffer.
428 * Length is the field width in bytes.
429 */
Len Brown4be44fc2005-08-05 00:44:28 -0400430 ACPI_MEMCPY((obj_desc->buffer_field.buffer_obj)->buffer.
431 pointer +
432 obj_desc->buffer_field.base_byte_offset +
433 field_datum_byte_offset, value,
434 obj_desc->common_field.access_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 status = AE_OK;
438 break;
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 case ACPI_TYPE_LOCAL_BANK_FIELD:
Robert Moore44f6c012005-04-18 22:49:35 -0400441 /*
442 * Ensure that the bank_value is not beyond the capacity of
443 * the register
444 */
Len Brown4be44fc2005-08-05 00:44:28 -0400445 if (acpi_ex_register_overflow(obj_desc->bank_field.bank_obj,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800446 (u64) obj_desc->bank_field.
447 value)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400448 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
451 /*
452 * For bank_fields, we must write the bank_value to the bank_register
453 * (itself a region_field) before we can access the data.
454 */
Len Brown4be44fc2005-08-05 00:44:28 -0400455 status =
456 acpi_ex_insert_into_field(obj_desc->bank_field.bank_obj,
457 &obj_desc->bank_field.value,
458 sizeof(obj_desc->bank_field.
459 value));
460 if (ACPI_FAILURE(status)) {
461 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 /*
465 * Now that the Bank has been selected, fall through to the
466 * region_field case and write the datum to the Operation Region
467 */
468
469 /*lint -fallthrough */
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 case ACPI_TYPE_LOCAL_REGION_FIELD:
472 /*
473 * For simple region_fields, we just directly access the owning
474 * Operation Region.
475 */
Len Brown4be44fc2005-08-05 00:44:28 -0400476 status =
477 acpi_ex_access_region(obj_desc, field_datum_byte_offset,
478 value, read_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 break;
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 case ACPI_TYPE_LOCAL_INDEX_FIELD:
Robert Moore44f6c012005-04-18 22:49:35 -0400482 /*
483 * Ensure that the index_value is not beyond the capacity of
484 * the register
485 */
Len Brown4be44fc2005-08-05 00:44:28 -0400486 if (acpi_ex_register_overflow(obj_desc->index_field.index_obj,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800487 (u64) obj_desc->index_field.
488 value)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400489 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491
492 /* Write the index value to the index_register (itself a region_field) */
493
494 field_datum_byte_offset += obj_desc->index_field.value;
495
Len Brown4be44fc2005-08-05 00:44:28 -0400496 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
497 "Write to Index Register: Value %8.8X\n",
498 field_datum_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Len Brown4be44fc2005-08-05 00:44:28 -0400500 status =
501 acpi_ex_insert_into_field(obj_desc->index_field.index_obj,
502 &field_datum_byte_offset,
503 sizeof(field_datum_byte_offset));
504 if (ACPI_FAILURE(status)) {
505 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (read_write == ACPI_READ) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* Read the datum from the data_register */
511
Bob Mooree9a8c6a2008-11-12 15:16:49 +0800512 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
513 "Read from Data Register\n"));
514
Len Brown4be44fc2005-08-05 00:44:28 -0400515 status =
516 acpi_ex_extract_from_field(obj_desc->index_field.
517 data_obj, value,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800518 sizeof(u64));
Len Brown4be44fc2005-08-05 00:44:28 -0400519 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /* Write the datum to the data_register */
521
Bob Mooree9a8c6a2008-11-12 15:16:49 +0800522 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
523 "Write to Data Register: Value %8.8X%8.8X\n",
524 ACPI_FORMAT_UINT64(*value)));
525
Len Brown4be44fc2005-08-05 00:44:28 -0400526 status =
527 acpi_ex_insert_into_field(obj_desc->index_field.
528 data_obj, value,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800529 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531 break;
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 default:
534
Bob Mooref6a22b02010-03-05 17:56:40 +0800535 ACPI_ERROR((AE_INFO, "Wrong object type in field I/O %u",
Bob Moore3371c192009-02-18 14:44:03 +0800536 obj_desc->common.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 status = AE_AML_INTERNAL;
538 break;
539 }
540
Len Brown4be44fc2005-08-05 00:44:28 -0400541 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (read_write == ACPI_READ) {
Len Brown4be44fc2005-08-05 00:44:28 -0400543 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800544 "Value Read %8.8X%8.8X, Width %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400545 ACPI_FORMAT_UINT64(*value),
546 obj_desc->common_field.
547 access_byte_width));
548 } else {
549 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800550 "Value Written %8.8X%8.8X, Width %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400551 ACPI_FORMAT_UINT64(*value),
552 obj_desc->common_field.
553 access_byte_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 }
556
Len Brown4be44fc2005-08-05 00:44:28 -0400557 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/*******************************************************************************
561 *
562 * FUNCTION: acpi_ex_write_with_update_rule
563 *
Robert Moore44f6c012005-04-18 22:49:35 -0400564 * PARAMETERS: obj_desc - Field to be written
Bob Mooreba494be2012-07-12 09:40:10 +0800565 * mask - bitmask within field datum
Robert Moore44f6c012005-04-18 22:49:35 -0400566 * field_value - Value to write
567 * field_datum_byte_offset - Offset of datum within field
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 *
569 * RETURN: Status
570 *
571 * DESCRIPTION: Apply the field update rule to a field write
572 *
573 ******************************************************************************/
574
575acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400576acpi_ex_write_with_update_rule(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800577 u64 mask,
578 u64 field_value, u32 field_datum_byte_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Len Brown4be44fc2005-08-05 00:44:28 -0400580 acpi_status status = AE_OK;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800581 u64 merged_value;
582 u64 current_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Bob Mooreb229cf92006-04-21 17:15:00 -0400584 ACPI_FUNCTION_TRACE_U32(ex_write_with_update_rule, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 /* Start with the new bits */
587
588 merged_value = field_value;
589
590 /* If the mask is all ones, we don't need to worry about the update rule */
591
Bob Moore5df7e6c2010-01-21 10:06:32 +0800592 if (mask != ACPI_UINT64_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* Decode the update rule */
595
Len Brown4be44fc2005-08-05 00:44:28 -0400596 switch (obj_desc->common_field.
597 field_flags & AML_FIELD_UPDATE_RULE_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 case AML_FIELD_UPDATE_PRESERVE:
599 /*
600 * Check if update rule needs to be applied (not if mask is all
601 * ones) The left shift drops the bits we want to ignore.
602 */
Len Brown4be44fc2005-08-05 00:44:28 -0400603 if ((~mask << (ACPI_MUL_8(sizeof(mask)) -
604 ACPI_MUL_8(obj_desc->common_field.
605 access_byte_width))) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /*
607 * Read the current contents of the byte/word/dword containing
608 * the field, and merge with the new field value.
609 */
Len Brown4be44fc2005-08-05 00:44:28 -0400610 status =
611 acpi_ex_field_datum_io(obj_desc,
612 field_datum_byte_offset,
613 &current_value,
614 ACPI_READ);
615 if (ACPI_FAILURE(status)) {
616 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
619 merged_value |= (current_value & ~mask);
620 }
621 break;
622
623 case AML_FIELD_UPDATE_WRITE_AS_ONES:
624
625 /* Set positions outside the field to all ones */
626
627 merged_value |= ~mask;
628 break;
629
630 case AML_FIELD_UPDATE_WRITE_AS_ZEROS:
631
632 /* Set positions outside the field to all zeros */
633
634 merged_value &= mask;
635 break;
636
637 default:
638
Bob Mooreb8e4d892006-01-27 16:43:00 -0500639 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800640 "Unknown UpdateRule value: 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500641 (obj_desc->common_field.
642 field_flags &
643 AML_FIELD_UPDATE_RULE_MASK)));
Len Brown4be44fc2005-08-05 00:44:28 -0400644 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 }
647
Len Brown4be44fc2005-08-05 00:44:28 -0400648 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400649 "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 -0400650 ACPI_FORMAT_UINT64(mask),
651 field_datum_byte_offset,
652 obj_desc->common_field.access_byte_width,
653 ACPI_FORMAT_UINT64(field_value),
654 ACPI_FORMAT_UINT64(merged_value)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /* Write the merged value */
657
Len Brown4be44fc2005-08-05 00:44:28 -0400658 status = acpi_ex_field_datum_io(obj_desc, field_datum_byte_offset,
659 &merged_value, ACPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Len Brown4be44fc2005-08-05 00:44:28 -0400661 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/*******************************************************************************
665 *
666 * FUNCTION: acpi_ex_extract_from_field
667 *
668 * PARAMETERS: obj_desc - Field to be read
Bob Mooreba494be2012-07-12 09:40:10 +0800669 * buffer - Where to store the field data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 * buffer_length - Length of Buffer
671 *
672 * RETURN: Status
673 *
674 * DESCRIPTION: Retrieve the current value of the given field
675 *
676 ******************************************************************************/
677
678acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400679acpi_ex_extract_from_field(union acpi_operand_object *obj_desc,
680 void *buffer, u32 buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Len Brown4be44fc2005-08-05 00:44:28 -0400682 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800683 u64 raw_datum;
684 u64 merged_datum;
Len Brown4be44fc2005-08-05 00:44:28 -0400685 u32 field_offset = 0;
686 u32 buffer_offset = 0;
687 u32 buffer_tail_bits;
688 u32 datum_count;
689 u32 field_datum_count;
Bob Moore09387b42010-08-06 09:09:33 +0800690 u32 access_bit_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400691 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Bob Mooreb229cf92006-04-21 17:15:00 -0400693 ACPI_FUNCTION_TRACE(ex_extract_from_field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 /* Validate target buffer and clear it */
696
Len Brown4be44fc2005-08-05 00:44:28 -0400697 if (buffer_length <
698 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500699 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800700 "Field size %u (bits) is too large for buffer (%u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500701 obj_desc->common_field.bit_length, buffer_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Len Brown4be44fc2005-08-05 00:44:28 -0400703 return_ACPI_STATUS(AE_BUFFER_OVERFLOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
Bob Moore09387b42010-08-06 09:09:33 +0800705
Len Brown4be44fc2005-08-05 00:44:28 -0400706 ACPI_MEMSET(buffer, 0, buffer_length);
Bob Moore09387b42010-08-06 09:09:33 +0800707 access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width);
708
709 /* Handle the simple case here */
710
711 if ((obj_desc->common_field.start_field_bit_offset == 0) &&
712 (obj_desc->common_field.bit_length == access_bit_width)) {
Bob Moore61388f92013-05-08 04:01:15 +0000713 if (buffer_length >= sizeof(u64)) {
714 status =
715 acpi_ex_field_datum_io(obj_desc, 0, buffer,
716 ACPI_READ);
717 } else {
718 /* Use raw_datum (u64) to handle buffers < 64 bits */
719
720 status =
721 acpi_ex_field_datum_io(obj_desc, 0, &raw_datum,
722 ACPI_READ);
723 ACPI_MEMCPY(buffer, &raw_datum, buffer_length);
724 }
725
Bob Moore09387b42010-08-06 09:09:33 +0800726 return_ACPI_STATUS(status);
727 }
728
729/* TBD: Move to common setup code */
730
731 /* Field algorithm is limited to sizeof(u64), truncate if needed */
732
733 if (obj_desc->common_field.access_byte_width > sizeof(u64)) {
734 obj_desc->common_field.access_byte_width = sizeof(u64);
735 access_bit_width = sizeof(u64) * 8;
736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 /* Compute the number of datums (access width data items) */
739
Bob Moore09387b42010-08-06 09:09:33 +0800740 datum_count =
741 ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length,
742 access_bit_width);
743
Len Brown4be44fc2005-08-05 00:44:28 -0400744 field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length +
745 obj_desc->common_field.
746 start_field_bit_offset,
Len Brown4be44fc2005-08-05 00:44:28 -0400747 access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /* Priming read from the field */
750
Len Brown4be44fc2005-08-05 00:44:28 -0400751 status =
752 acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum,
753 ACPI_READ);
754 if (ACPI_FAILURE(status)) {
755 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Len Brown4be44fc2005-08-05 00:44:28 -0400757 merged_datum =
758 raw_datum >> obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /* Read the rest of the field */
761
762 for (i = 1; i < field_datum_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 /* Get next input datum from the field */
765
766 field_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400767 status = acpi_ex_field_datum_io(obj_desc, field_offset,
768 &raw_datum, ACPI_READ);
769 if (ACPI_FAILURE(status)) {
770 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
Bob Moore967440e32006-06-23 17:04:00 -0400773 /*
774 * Merge with previous datum if necessary.
775 *
776 * Note: Before the shift, check if the shift value will be larger than
777 * the integer size. If so, there is no need to perform the operation.
778 * This avoids the differences in behavior between different compilers
779 * concerning shift values larger than the target data width.
780 */
Bob Moore09387b42010-08-06 09:09:33 +0800781 if (access_bit_width -
782 obj_desc->common_field.start_field_bit_offset <
Bob Moore967440e32006-06-23 17:04:00 -0400783 ACPI_INTEGER_BIT_SIZE) {
784 merged_datum |=
Bob Moore09387b42010-08-06 09:09:33 +0800785 raw_datum << (access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400786 obj_desc->common_field.
787 start_field_bit_offset);
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (i == datum_count) {
791 break;
792 }
793
794 /* Write merged datum to target buffer */
795
Len Brown4be44fc2005-08-05 00:44:28 -0400796 ACPI_MEMCPY(((char *)buffer) + buffer_offset, &merged_datum,
797 ACPI_MIN(obj_desc->common_field.access_byte_width,
798 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 buffer_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400801 merged_datum =
802 raw_datum >> obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804
805 /* Mask off any extra bits in the last datum */
806
Bob Moore09387b42010-08-06 09:09:33 +0800807 buffer_tail_bits = obj_desc->common_field.bit_length % access_bit_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (buffer_tail_bits) {
Len Brown4be44fc2005-08-05 00:44:28 -0400809 merged_datum &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811
812 /* Write the last datum to the buffer */
813
Len Brown4be44fc2005-08-05 00:44:28 -0400814 ACPI_MEMCPY(((char *)buffer) + buffer_offset, &merged_datum,
815 ACPI_MIN(obj_desc->common_field.access_byte_width,
816 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Len Brown4be44fc2005-08-05 00:44:28 -0400818 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/*******************************************************************************
822 *
823 * FUNCTION: acpi_ex_insert_into_field
824 *
825 * PARAMETERS: obj_desc - Field to be written
Bob Mooreba494be2012-07-12 09:40:10 +0800826 * buffer - Data to be written
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 * buffer_length - Length of Buffer
828 *
829 * RETURN: Status
830 *
831 * DESCRIPTION: Store the Buffer contents into the given field
832 *
833 ******************************************************************************/
834
835acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400836acpi_ex_insert_into_field(union acpi_operand_object *obj_desc,
837 void *buffer, u32 buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Bob Moore09387b42010-08-06 09:09:33 +0800839 void *new_buffer;
Len Brown4be44fc2005-08-05 00:44:28 -0400840 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800841 u64 mask;
842 u64 width_mask;
843 u64 merged_datum;
844 u64 raw_datum = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400845 u32 field_offset = 0;
846 u32 buffer_offset = 0;
847 u32 buffer_tail_bits;
848 u32 datum_count;
849 u32 field_datum_count;
Bob Moore09387b42010-08-06 09:09:33 +0800850 u32 access_bit_width;
Bob Moore9aa61692008-04-10 19:06:41 +0400851 u32 required_length;
Bob Moore09387b42010-08-06 09:09:33 +0800852 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Bob Mooreb229cf92006-04-21 17:15:00 -0400854 ACPI_FUNCTION_TRACE(ex_insert_into_field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 /* Validate input buffer */
857
Bob Moore9aa61692008-04-10 19:06:41 +0400858 new_buffer = NULL;
859 required_length =
860 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length);
861 /*
862 * We must have a buffer that is at least as long as the field
Bob Moore73a30902012-10-31 02:26:55 +0000863 * we are writing to. This is because individual fields are
Bob Moore9aa61692008-04-10 19:06:41 +0400864 * indivisible and partial writes are not supported -- as per
865 * the ACPI specification.
866 */
867 if (buffer_length < required_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Bob Moore9aa61692008-04-10 19:06:41 +0400869 /* We need to create a new buffer */
870
871 new_buffer = ACPI_ALLOCATE_ZEROED(required_length);
872 if (!new_buffer) {
873 return_ACPI_STATUS(AE_NO_MEMORY);
874 }
875
876 /*
877 * Copy the original data to the new buffer, starting
Bob Moore73a30902012-10-31 02:26:55 +0000878 * at Byte zero. All unused (upper) bytes of the
Bob Moore9aa61692008-04-10 19:06:41 +0400879 * buffer will be 0.
880 */
881 ACPI_MEMCPY((char *)new_buffer, (char *)buffer, buffer_length);
882 buffer = new_buffer;
883 buffer_length = required_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
885
Bob Moore09387b42010-08-06 09:09:33 +0800886/* TBD: Move to common setup code */
887
888 /* Algo is limited to sizeof(u64), so cut the access_byte_width */
889 if (obj_desc->common_field.access_byte_width > sizeof(u64)) {
890 obj_desc->common_field.access_byte_width = sizeof(u64);
891 }
892
893 access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width);
894
Bob Moore967440e32006-06-23 17:04:00 -0400895 /*
896 * Create the bitmasks used for bit insertion.
897 * Note: This if/else is used to bypass compiler differences with the
898 * shift operator
899 */
Bob Moore09387b42010-08-06 09:09:33 +0800900 if (access_bit_width == ACPI_INTEGER_BIT_SIZE) {
Bob Moore5df7e6c2010-01-21 10:06:32 +0800901 width_mask = ACPI_UINT64_MAX;
Bob Moore967440e32006-06-23 17:04:00 -0400902 } else {
Bob Moore09387b42010-08-06 09:09:33 +0800903 width_mask = ACPI_MASK_BITS_ABOVE(access_bit_width);
Bob Moore967440e32006-06-23 17:04:00 -0400904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Bob Moore967440e32006-06-23 17:04:00 -0400906 mask = width_mask &
907 ACPI_MASK_BITS_BELOW(obj_desc->common_field.start_field_bit_offset);
908
909 /* Compute the number of datums (access width data items) */
Bob Moore41195322006-05-26 16:36:00 -0400910
911 datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length,
Bob Moore09387b42010-08-06 09:09:33 +0800912 access_bit_width);
Bob Moore41195322006-05-26 16:36:00 -0400913
914 field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length +
915 obj_desc->common_field.
916 start_field_bit_offset,
Bob Moore41195322006-05-26 16:36:00 -0400917 access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 /* Get initial Datum from the input buffer */
920
Len Brown4be44fc2005-08-05 00:44:28 -0400921 ACPI_MEMCPY(&raw_datum, buffer,
922 ACPI_MIN(obj_desc->common_field.access_byte_width,
923 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Len Brown4be44fc2005-08-05 00:44:28 -0400925 merged_datum =
926 raw_datum << obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 /* Write the entire field */
929
930 for (i = 1; i < field_datum_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /* Write merged datum to the target field */
933
934 merged_datum &= mask;
Len Brown4be44fc2005-08-05 00:44:28 -0400935 status = acpi_ex_write_with_update_rule(obj_desc, mask,
936 merged_datum,
937 field_offset);
938 if (ACPI_FAILURE(status)) {
Bob Moore9aa61692008-04-10 19:06:41 +0400939 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 field_offset += obj_desc->common_field.access_byte_width;
Bob Moore967440e32006-06-23 17:04:00 -0400943
944 /*
945 * Start new output datum by merging with previous input datum
946 * if necessary.
947 *
948 * Note: Before the shift, check if the shift value will be larger than
949 * the integer size. If so, there is no need to perform the operation.
950 * This avoids the differences in behavior between different compilers
951 * concerning shift values larger than the target data width.
952 */
Bob Moore09387b42010-08-06 09:09:33 +0800953 if ((access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400954 obj_desc->common_field.start_field_bit_offset) <
955 ACPI_INTEGER_BIT_SIZE) {
956 merged_datum =
Bob Moore09387b42010-08-06 09:09:33 +0800957 raw_datum >> (access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400958 obj_desc->common_field.
959 start_field_bit_offset);
960 } else {
961 merged_datum = 0;
962 }
963
Bob Moore4c90ece2006-06-08 16:29:00 -0400964 mask = width_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 if (i == datum_count) {
967 break;
968 }
969
970 /* Get the next input datum from the buffer */
971
972 buffer_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400973 ACPI_MEMCPY(&raw_datum, ((char *)buffer) + buffer_offset,
974 ACPI_MIN(obj_desc->common_field.access_byte_width,
975 buffer_length - buffer_offset));
Bob Moore09387b42010-08-06 09:09:33 +0800976
Len Brown4be44fc2005-08-05 00:44:28 -0400977 merged_datum |=
978 raw_datum << obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
981 /* Mask off any extra bits in the last datum */
982
983 buffer_tail_bits = (obj_desc->common_field.bit_length +
Len Brown4be44fc2005-08-05 00:44:28 -0400984 obj_desc->common_field.start_field_bit_offset) %
Bob Moore09387b42010-08-06 09:09:33 +0800985 access_bit_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (buffer_tail_bits) {
Len Brown4be44fc2005-08-05 00:44:28 -0400987 mask &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
990 /* Write the last datum to the field */
991
992 merged_datum &= mask;
Len Brown4be44fc2005-08-05 00:44:28 -0400993 status = acpi_ex_write_with_update_rule(obj_desc,
994 mask, merged_datum,
995 field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Lv Zheng10622bf2013-10-29 09:30:02 +0800997exit:
Bob Moore9aa61692008-04-10 19:06:41 +0400998 /* Free temporary buffer if we used one */
999
1000 if (new_buffer) {
1001 ACPI_FREE(new_buffer);
1002 }
Len Brown4be44fc2005-08-05 00:44:28 -04001003 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}