blob: f0c5ed0b7db8c10e0636817c6e76571c5672bbbb [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 Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, 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 Moore1fad8732015-12-29 13:54:36 +0800183 "Field [%4.4s] access width (%u bytes) "
184 "too large for region [%4.4s] (length %u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500185 acpi_ut_get_node_name(obj_desc->
186 common_field.node),
187 obj_desc->common_field.access_byte_width,
188 acpi_ut_get_node_name(rgn_desc->region.
189 node),
190 rgn_desc->region.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 /*
194 * Offset rounded up to next multiple of field width
195 * exceeds region length, indicate an error
196 */
Bob Mooreb8e4d892006-01-27 16:43:00 -0500197 ACPI_ERROR((AE_INFO,
Bob Moore1fad8732015-12-29 13:54:36 +0800198 "Field [%4.4s] Base+Offset+Width %u+%u+%u "
199 "is beyond end of region [%4.4s] (length %u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500200 acpi_ut_get_node_name(obj_desc->common_field.node),
201 obj_desc->common_field.base_byte_offset,
202 field_datum_byte_offset,
203 obj_desc->common_field.access_byte_width,
204 acpi_ut_get_node_name(rgn_desc->region.node),
205 rgn_desc->region.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Len Brown4be44fc2005-08-05 00:44:28 -0400207 return_ACPI_STATUS(AE_AML_REGION_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Len Brown4be44fc2005-08-05 00:44:28 -0400210 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/*******************************************************************************
214 *
215 * FUNCTION: acpi_ex_access_region
216 *
Robert Moore44f6c012005-04-18 22:49:35 -0400217 * PARAMETERS: obj_desc - Field to be read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * field_datum_byte_offset - Byte offset of this datum within the
219 * parent field
Bob Mooreba494be2012-07-12 09:40:10 +0800220 * value - Where to store value (must at least
Bob Moore5df7e6c2010-01-21 10:06:32 +0800221 * 64 bits)
Bob Mooreba494be2012-07-12 09:40:10 +0800222 * function - Read or Write flag plus other region-
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 * dependent flags
224 *
225 * RETURN: Status
226 *
227 * DESCRIPTION: Read or Write a single field datum to an Operation Region.
228 *
229 ******************************************************************************/
230
231acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400232acpi_ex_access_region(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800233 u32 field_datum_byte_offset, u64 *value, u32 function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Len Brown4be44fc2005-08-05 00:44:28 -0400235 acpi_status status;
236 union acpi_operand_object *rgn_desc;
Bob Mooref5407af2009-05-21 10:56:52 +0800237 u32 region_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Bob Mooreb229cf92006-04-21 17:15:00 -0400239 ACPI_FUNCTION_TRACE(ex_access_region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /*
242 * Ensure that the region operands are fully evaluated and verify
243 * the validity of the request
244 */
Len Brown4be44fc2005-08-05 00:44:28 -0400245 status = acpi_ex_setup_region(obj_desc, field_datum_byte_offset);
246 if (ACPI_FAILURE(status)) {
247 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
250 /*
251 * The physical address of this field datum is:
252 *
253 * 1) The base of the region, plus
254 * 2) The base offset of the field, plus
255 * 3) The current offset into the field
256 */
257 rgn_desc = obj_desc->common_field.region_obj;
Bob Mooref5407af2009-05-21 10:56:52 +0800258 region_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400259 obj_desc->common_field.base_byte_offset + field_datum_byte_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if ((function & ACPI_IO_MASK) == ACPI_READ) {
Len Brown4be44fc2005-08-05 00:44:28 -0400262 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[READ]"));
263 } else {
264 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[WRITE]"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
Len Brown4be44fc2005-08-05 00:44:28 -0400267 ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD,
Lv Zhengcc2080b2015-04-13 11:48:46 +0800268 " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %8.8X%8.8X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400269 acpi_ut_get_region_name(rgn_desc->region.
270 space_id),
271 rgn_desc->region.space_id,
272 obj_desc->common_field.access_byte_width,
273 obj_desc->common_field.base_byte_offset,
Lv Zhengcc2080b2015-04-13 11:48:46 +0800274 field_datum_byte_offset,
275 ACPI_FORMAT_UINT64(rgn_desc->region.address +
276 region_offset)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 /* Invoke the appropriate address_space/op_region handler */
279
Bob Moore9ce81782011-11-16 13:39:07 +0800280 status = acpi_ev_address_space_dispatch(rgn_desc, obj_desc,
281 function, region_offset,
282 ACPI_MUL_8(obj_desc->
283 common_field.
284 access_byte_width),
285 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Len Brown4be44fc2005-08-05 00:44:28 -0400287 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (status == AE_NOT_IMPLEMENTED) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500289 ACPI_ERROR((AE_INFO,
Bob Moore1b74dfb2011-02-14 15:52:56 +0800290 "Region %s (ID=%u) not implemented",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500291 acpi_ut_get_region_name(rgn_desc->region.
292 space_id),
293 rgn_desc->region.space_id));
Len Brown4be44fc2005-08-05 00:44:28 -0400294 } else if (status == AE_NOT_EXIST) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500295 ACPI_ERROR((AE_INFO,
Bob Moore1b74dfb2011-02-14 15:52:56 +0800296 "Region %s (ID=%u) has no handler",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500297 acpi_ut_get_region_name(rgn_desc->region.
298 space_id),
299 rgn_desc->region.space_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*******************************************************************************
307 *
308 * FUNCTION: acpi_ex_register_overflow
309 *
Robert Moore44f6c012005-04-18 22:49:35 -0400310 * PARAMETERS: obj_desc - Register(Field) to be written
Bob Mooreba494be2012-07-12 09:40:10 +0800311 * value - Value to be stored
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 *
313 * RETURN: TRUE if value overflows the field, FALSE otherwise
314 *
315 * DESCRIPTION: Check if a value is out of range of the field being written.
316 * Used to check if the values written to Index and Bank registers
Bob Moore73a30902012-10-31 02:26:55 +0000317 * are out of range. Normally, the value is simply truncated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * to fit the field, but this case is most likely a serious
319 * coding error in the ASL.
320 *
321 ******************************************************************************/
322
Robert Moore44f6c012005-04-18 22:49:35 -0400323static u8
Bob Moore5df7e6c2010-01-21 10:06:32 +0800324acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326
327 if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) {
328 /*
329 * The field is large enough to hold the maximum integer, so we can
330 * never overflow it.
331 */
332 return (FALSE);
333 }
334
Bob Moore5df7e6c2010-01-21 10:06:32 +0800335 if (value >= ((u64) 1 << obj_desc->common_field.bit_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /*
337 * The Value is larger than the maximum value that can fit into
338 * the register.
339 */
Bob Moore46dfb092011-11-28 10:10:10 +0800340 ACPI_ERROR((AE_INFO,
341 "Index value 0x%8.8X%8.8X overflows field width 0x%X",
342 ACPI_FORMAT_UINT64(value),
343 obj_desc->common_field.bit_length));
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return (TRUE);
346 }
347
348 /* The Value will fit into the field with no truncation */
349
350 return (FALSE);
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/*******************************************************************************
354 *
355 * FUNCTION: acpi_ex_field_datum_io
356 *
Robert Moore44f6c012005-04-18 22:49:35 -0400357 * PARAMETERS: obj_desc - Field to be read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * field_datum_byte_offset - Byte offset of this datum within the
359 * parent field
Bob Mooreba494be2012-07-12 09:40:10 +0800360 * value - Where to store value (must be 64 bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * read_write - Read or Write flag
362 *
363 * RETURN: Status
364 *
Bob Moore73a30902012-10-31 02:26:55 +0000365 * DESCRIPTION: Read or Write a single datum of a field. The field_type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * demultiplexed here to handle the different types of fields
367 * (buffer_field, region_field, index_field, bank_field)
368 *
369 ******************************************************************************/
370
Robert Moore44f6c012005-04-18 22:49:35 -0400371static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400372acpi_ex_field_datum_io(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800373 u32 field_datum_byte_offset, u64 *value, u32 read_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Len Brown4be44fc2005-08-05 00:44:28 -0400375 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800376 u64 local_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Bob Mooreb229cf92006-04-21 17:15:00 -0400378 ACPI_FUNCTION_TRACE_U32(ex_field_datum_io, field_datum_byte_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (read_write == ACPI_READ) {
381 if (!value) {
382 local_value = 0;
Robert Moore44f6c012005-04-18 22:49:35 -0400383
384 /* To support reads without saving return value */
385 value = &local_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 /* Clear the entire return buffer first, [Very Important!] */
389
390 *value = 0;
391 }
392
393 /*
394 * The four types of fields are:
395 *
396 * buffer_field - Read/write from/to a Buffer
397 * region_field - Read/write from/to a Operation Region.
Robert Moore44f6c012005-04-18 22:49:35 -0400398 * bank_field - Write to a Bank Register, then read/write from/to an
399 * operation_region
400 * index_field - Write to an Index Register, then read/write from/to a
401 * Data Register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 */
Bob Moore3371c192009-02-18 14:44:03 +0800403 switch (obj_desc->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 case ACPI_TYPE_BUFFER_FIELD:
405 /*
406 * If the buffer_field arguments have not been previously evaluated,
407 * evaluate them now and save the results.
408 */
409 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400410 status = acpi_ds_get_buffer_field_arguments(obj_desc);
411 if (ACPI_FAILURE(status)) {
412 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 }
415
416 if (read_write == ACPI_READ) {
417 /*
418 * Copy the data from the source buffer.
419 * Length is the field width in bytes.
420 */
Bob Moore4fa46162015-07-01 14:45:11 +0800421 memcpy(value,
422 (obj_desc->buffer_field.buffer_obj)->buffer.
423 pointer +
424 obj_desc->buffer_field.base_byte_offset +
425 field_datum_byte_offset,
426 obj_desc->common_field.access_byte_width);
Len Brown4be44fc2005-08-05 00:44:28 -0400427 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 /*
429 * Copy the data to the target buffer.
430 * Length is the field width in bytes.
431 */
Bob Moore4fa46162015-07-01 14:45:11 +0800432 memcpy((obj_desc->buffer_field.buffer_obj)->buffer.
433 pointer +
434 obj_desc->buffer_field.base_byte_offset +
435 field_datum_byte_offset, value,
436 obj_desc->common_field.access_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
439 status = AE_OK;
440 break;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 case ACPI_TYPE_LOCAL_BANK_FIELD:
Robert Moore44f6c012005-04-18 22:49:35 -0400443 /*
444 * Ensure that the bank_value is not beyond the capacity of
445 * the register
446 */
Len Brown4be44fc2005-08-05 00:44:28 -0400447 if (acpi_ex_register_overflow(obj_desc->bank_field.bank_obj,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800448 (u64) obj_desc->bank_field.
449 value)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400450 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
453 /*
454 * For bank_fields, we must write the bank_value to the bank_register
455 * (itself a region_field) before we can access the data.
456 */
Len Brown4be44fc2005-08-05 00:44:28 -0400457 status =
458 acpi_ex_insert_into_field(obj_desc->bank_field.bank_obj,
459 &obj_desc->bank_field.value,
460 sizeof(obj_desc->bank_field.
461 value));
462 if (ACPI_FAILURE(status)) {
463 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
466 /*
467 * Now that the Bank has been selected, fall through to the
468 * region_field case and write the datum to the Operation Region
469 */
470
471 /*lint -fallthrough */
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 case ACPI_TYPE_LOCAL_REGION_FIELD:
474 /*
475 * For simple region_fields, we just directly access the owning
476 * Operation Region.
477 */
Len Brown4be44fc2005-08-05 00:44:28 -0400478 status =
479 acpi_ex_access_region(obj_desc, field_datum_byte_offset,
480 value, read_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 break;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 case ACPI_TYPE_LOCAL_INDEX_FIELD:
Robert Moore44f6c012005-04-18 22:49:35 -0400484 /*
485 * Ensure that the index_value is not beyond the capacity of
486 * the register
487 */
Len Brown4be44fc2005-08-05 00:44:28 -0400488 if (acpi_ex_register_overflow(obj_desc->index_field.index_obj,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800489 (u64) obj_desc->index_field.
490 value)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400491 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494 /* Write the index value to the index_register (itself a region_field) */
495
496 field_datum_byte_offset += obj_desc->index_field.value;
497
Len Brown4be44fc2005-08-05 00:44:28 -0400498 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
499 "Write to Index Register: Value %8.8X\n",
500 field_datum_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Len Brown4be44fc2005-08-05 00:44:28 -0400502 status =
503 acpi_ex_insert_into_field(obj_desc->index_field.index_obj,
504 &field_datum_byte_offset,
505 sizeof(field_datum_byte_offset));
506 if (ACPI_FAILURE(status)) {
507 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (read_write == ACPI_READ) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* Read the datum from the data_register */
513
Bob Mooree9a8c6a2008-11-12 15:16:49 +0800514 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
515 "Read from Data Register\n"));
516
Len Brown4be44fc2005-08-05 00:44:28 -0400517 status =
518 acpi_ex_extract_from_field(obj_desc->index_field.
519 data_obj, value,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800520 sizeof(u64));
Len Brown4be44fc2005-08-05 00:44:28 -0400521 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Write the datum to the data_register */
523
Bob Mooree9a8c6a2008-11-12 15:16:49 +0800524 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
525 "Write to Data Register: Value %8.8X%8.8X\n",
526 ACPI_FORMAT_UINT64(*value)));
527
Len Brown4be44fc2005-08-05 00:44:28 -0400528 status =
529 acpi_ex_insert_into_field(obj_desc->index_field.
530 data_obj, value,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800531 sizeof(u64));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 break;
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 default:
536
Bob Mooref6a22b02010-03-05 17:56:40 +0800537 ACPI_ERROR((AE_INFO, "Wrong object type in field I/O %u",
Bob Moore3371c192009-02-18 14:44:03 +0800538 obj_desc->common.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 status = AE_AML_INTERNAL;
540 break;
541 }
542
Len Brown4be44fc2005-08-05 00:44:28 -0400543 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (read_write == ACPI_READ) {
Len Brown4be44fc2005-08-05 00:44:28 -0400545 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800546 "Value Read %8.8X%8.8X, Width %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400547 ACPI_FORMAT_UINT64(*value),
548 obj_desc->common_field.
549 access_byte_width));
550 } else {
551 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800552 "Value Written %8.8X%8.8X, Width %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400553 ACPI_FORMAT_UINT64(*value),
554 obj_desc->common_field.
555 access_byte_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557 }
558
Len Brown4be44fc2005-08-05 00:44:28 -0400559 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*******************************************************************************
563 *
564 * FUNCTION: acpi_ex_write_with_update_rule
565 *
Robert Moore44f6c012005-04-18 22:49:35 -0400566 * PARAMETERS: obj_desc - Field to be written
Bob Mooreba494be2012-07-12 09:40:10 +0800567 * mask - bitmask within field datum
Robert Moore44f6c012005-04-18 22:49:35 -0400568 * field_value - Value to write
569 * field_datum_byte_offset - Offset of datum within field
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 *
571 * RETURN: Status
572 *
573 * DESCRIPTION: Apply the field update rule to a field write
574 *
575 ******************************************************************************/
576
577acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400578acpi_ex_write_with_update_rule(union acpi_operand_object *obj_desc,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800579 u64 mask,
580 u64 field_value, u32 field_datum_byte_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Len Brown4be44fc2005-08-05 00:44:28 -0400582 acpi_status status = AE_OK;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800583 u64 merged_value;
584 u64 current_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Bob Mooreb229cf92006-04-21 17:15:00 -0400586 ACPI_FUNCTION_TRACE_U32(ex_write_with_update_rule, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 /* Start with the new bits */
589
590 merged_value = field_value;
591
592 /* If the mask is all ones, we don't need to worry about the update rule */
593
Bob Moore5df7e6c2010-01-21 10:06:32 +0800594 if (mask != ACPI_UINT64_MAX) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* Decode the update rule */
597
Len Brown4be44fc2005-08-05 00:44:28 -0400598 switch (obj_desc->common_field.
599 field_flags & AML_FIELD_UPDATE_RULE_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 case AML_FIELD_UPDATE_PRESERVE:
601 /*
602 * Check if update rule needs to be applied (not if mask is all
603 * ones) The left shift drops the bits we want to ignore.
604 */
Len Brown4be44fc2005-08-05 00:44:28 -0400605 if ((~mask << (ACPI_MUL_8(sizeof(mask)) -
606 ACPI_MUL_8(obj_desc->common_field.
607 access_byte_width))) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * Read the current contents of the byte/word/dword containing
610 * the field, and merge with the new field value.
611 */
Len Brown4be44fc2005-08-05 00:44:28 -0400612 status =
613 acpi_ex_field_datum_io(obj_desc,
614 field_datum_byte_offset,
615 &current_value,
616 ACPI_READ);
617 if (ACPI_FAILURE(status)) {
618 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
621 merged_value |= (current_value & ~mask);
622 }
623 break;
624
625 case AML_FIELD_UPDATE_WRITE_AS_ONES:
626
627 /* Set positions outside the field to all ones */
628
629 merged_value |= ~mask;
630 break;
631
632 case AML_FIELD_UPDATE_WRITE_AS_ZEROS:
633
634 /* Set positions outside the field to all zeros */
635
636 merged_value &= mask;
637 break;
638
639 default:
640
Bob Mooreb8e4d892006-01-27 16:43:00 -0500641 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800642 "Unknown UpdateRule value: 0x%X",
Bob Moore1fad8732015-12-29 13:54:36 +0800643 (obj_desc->common_field.field_flags &
Bob Mooreb8e4d892006-01-27 16:43:00 -0500644 AML_FIELD_UPDATE_RULE_MASK)));
Len Brown4be44fc2005-08-05 00:44:28 -0400645 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647 }
648
Len Brown4be44fc2005-08-05 00:44:28 -0400649 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Moore1fad8732015-12-29 13:54:36 +0800650 "Mask %8.8X%8.8X, DatumOffset %X, Width %X, "
651 "Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400652 ACPI_FORMAT_UINT64(mask),
653 field_datum_byte_offset,
654 obj_desc->common_field.access_byte_width,
655 ACPI_FORMAT_UINT64(field_value),
656 ACPI_FORMAT_UINT64(merged_value)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /* Write the merged value */
659
Bob Moore1fad8732015-12-29 13:54:36 +0800660 status =
661 acpi_ex_field_datum_io(obj_desc, field_datum_byte_offset,
662 &merged_value, ACPI_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Len Brown4be44fc2005-08-05 00:44:28 -0400664 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667/*******************************************************************************
668 *
669 * FUNCTION: acpi_ex_extract_from_field
670 *
671 * PARAMETERS: obj_desc - Field to be read
Bob Mooreba494be2012-07-12 09:40:10 +0800672 * buffer - Where to store the field data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 * buffer_length - Length of Buffer
674 *
675 * RETURN: Status
676 *
677 * DESCRIPTION: Retrieve the current value of the given field
678 *
679 ******************************************************************************/
680
681acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400682acpi_ex_extract_from_field(union acpi_operand_object *obj_desc,
683 void *buffer, u32 buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Len Brown4be44fc2005-08-05 00:44:28 -0400685 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800686 u64 raw_datum;
687 u64 merged_datum;
Len Brown4be44fc2005-08-05 00:44:28 -0400688 u32 field_offset = 0;
689 u32 buffer_offset = 0;
690 u32 buffer_tail_bits;
691 u32 datum_count;
692 u32 field_datum_count;
Bob Moore09387b42010-08-06 09:09:33 +0800693 u32 access_bit_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400694 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Bob Mooreb229cf92006-04-21 17:15:00 -0400696 ACPI_FUNCTION_TRACE(ex_extract_from_field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /* Validate target buffer and clear it */
699
Len Brown4be44fc2005-08-05 00:44:28 -0400700 if (buffer_length <
701 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500702 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800703 "Field size %u (bits) is too large for buffer (%u)",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500704 obj_desc->common_field.bit_length, buffer_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Len Brown4be44fc2005-08-05 00:44:28 -0400706 return_ACPI_STATUS(AE_BUFFER_OVERFLOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
Bob Moore09387b42010-08-06 09:09:33 +0800708
Bob Moore4fa46162015-07-01 14:45:11 +0800709 memset(buffer, 0, buffer_length);
Bob Moore09387b42010-08-06 09:09:33 +0800710 access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width);
711
712 /* Handle the simple case here */
713
714 if ((obj_desc->common_field.start_field_bit_offset == 0) &&
715 (obj_desc->common_field.bit_length == access_bit_width)) {
Bob Moore61388f92013-05-08 04:01:15 +0000716 if (buffer_length >= sizeof(u64)) {
717 status =
718 acpi_ex_field_datum_io(obj_desc, 0, buffer,
719 ACPI_READ);
720 } else {
721 /* Use raw_datum (u64) to handle buffers < 64 bits */
722
723 status =
724 acpi_ex_field_datum_io(obj_desc, 0, &raw_datum,
725 ACPI_READ);
Bob Moore4fa46162015-07-01 14:45:11 +0800726 memcpy(buffer, &raw_datum, buffer_length);
Bob Moore61388f92013-05-08 04:01:15 +0000727 }
728
Bob Moore09387b42010-08-06 09:09:33 +0800729 return_ACPI_STATUS(status);
730 }
731
732/* TBD: Move to common setup code */
733
734 /* Field algorithm is limited to sizeof(u64), truncate if needed */
735
736 if (obj_desc->common_field.access_byte_width > sizeof(u64)) {
737 obj_desc->common_field.access_byte_width = sizeof(u64);
738 access_bit_width = sizeof(u64) * 8;
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 /* Compute the number of datums (access width data items) */
742
Bob Moore09387b42010-08-06 09:09:33 +0800743 datum_count =
744 ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length,
745 access_bit_width);
746
Len Brown4be44fc2005-08-05 00:44:28 -0400747 field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length +
748 obj_desc->common_field.
749 start_field_bit_offset,
Len Brown4be44fc2005-08-05 00:44:28 -0400750 access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /* Priming read from the field */
753
Len Brown4be44fc2005-08-05 00:44:28 -0400754 status =
755 acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum,
756 ACPI_READ);
757 if (ACPI_FAILURE(status)) {
758 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Len Brown4be44fc2005-08-05 00:44:28 -0400760 merged_datum =
761 raw_datum >> obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /* Read the rest of the field */
764
765 for (i = 1; i < field_datum_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /* Get next input datum from the field */
768
769 field_offset += obj_desc->common_field.access_byte_width;
Bob Moore1fad8732015-12-29 13:54:36 +0800770 status =
771 acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum,
772 ACPI_READ);
Len Brown4be44fc2005-08-05 00:44:28 -0400773 if (ACPI_FAILURE(status)) {
774 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Bob Moore967440e32006-06-23 17:04:00 -0400777 /*
778 * Merge with previous datum if necessary.
779 *
780 * Note: Before the shift, check if the shift value will be larger than
781 * the integer size. If so, there is no need to perform the operation.
782 * This avoids the differences in behavior between different compilers
783 * concerning shift values larger than the target data width.
784 */
Bob Moore09387b42010-08-06 09:09:33 +0800785 if (access_bit_width -
786 obj_desc->common_field.start_field_bit_offset <
Bob Moore967440e32006-06-23 17:04:00 -0400787 ACPI_INTEGER_BIT_SIZE) {
788 merged_datum |=
Bob Moore09387b42010-08-06 09:09:33 +0800789 raw_datum << (access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400790 obj_desc->common_field.
791 start_field_bit_offset);
792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (i == datum_count) {
795 break;
796 }
797
798 /* Write merged datum to target buffer */
799
Bob Moore4fa46162015-07-01 14:45:11 +0800800 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
804 buffer_offset += obj_desc->common_field.access_byte_width;
Len Brown4be44fc2005-08-05 00:44:28 -0400805 merged_datum =
806 raw_datum >> obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
809 /* Mask off any extra bits in the last datum */
810
Bob Moore09387b42010-08-06 09:09:33 +0800811 buffer_tail_bits = obj_desc->common_field.bit_length % access_bit_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (buffer_tail_bits) {
Len Brown4be44fc2005-08-05 00:44:28 -0400813 merged_datum &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
816 /* Write the last datum to the buffer */
817
Bob Moore4fa46162015-07-01 14:45:11 +0800818 memcpy(((char *)buffer) + buffer_offset, &merged_datum,
819 ACPI_MIN(obj_desc->common_field.access_byte_width,
820 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Len Brown4be44fc2005-08-05 00:44:28 -0400822 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/*******************************************************************************
826 *
827 * FUNCTION: acpi_ex_insert_into_field
828 *
829 * PARAMETERS: obj_desc - Field to be written
Bob Mooreba494be2012-07-12 09:40:10 +0800830 * buffer - Data to be written
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * buffer_length - Length of Buffer
832 *
833 * RETURN: Status
834 *
835 * DESCRIPTION: Store the Buffer contents into the given field
836 *
837 ******************************************************************************/
838
839acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400840acpi_ex_insert_into_field(union acpi_operand_object *obj_desc,
841 void *buffer, u32 buffer_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Bob Moore09387b42010-08-06 09:09:33 +0800843 void *new_buffer;
Len Brown4be44fc2005-08-05 00:44:28 -0400844 acpi_status status;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800845 u64 mask;
846 u64 width_mask;
847 u64 merged_datum;
848 u64 raw_datum = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400849 u32 field_offset = 0;
850 u32 buffer_offset = 0;
851 u32 buffer_tail_bits;
852 u32 datum_count;
853 u32 field_datum_count;
Bob Moore09387b42010-08-06 09:09:33 +0800854 u32 access_bit_width;
Bob Moore9aa61692008-04-10 19:06:41 +0400855 u32 required_length;
Bob Moore09387b42010-08-06 09:09:33 +0800856 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Bob Mooreb229cf92006-04-21 17:15:00 -0400858 ACPI_FUNCTION_TRACE(ex_insert_into_field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 /* Validate input buffer */
861
Bob Moore9aa61692008-04-10 19:06:41 +0400862 new_buffer = NULL;
863 required_length =
864 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length);
Bob Moore1fad8732015-12-29 13:54:36 +0800865
Bob Moore9aa61692008-04-10 19:06:41 +0400866 /*
867 * We must have a buffer that is at least as long as the field
Bob Moore73a30902012-10-31 02:26:55 +0000868 * we are writing to. This is because individual fields are
Bob Moore9aa61692008-04-10 19:06:41 +0400869 * indivisible and partial writes are not supported -- as per
870 * the ACPI specification.
871 */
872 if (buffer_length < required_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Bob Moore9aa61692008-04-10 19:06:41 +0400874 /* We need to create a new buffer */
875
876 new_buffer = ACPI_ALLOCATE_ZEROED(required_length);
877 if (!new_buffer) {
878 return_ACPI_STATUS(AE_NO_MEMORY);
879 }
880
881 /*
882 * Copy the original data to the new buffer, starting
Bob Moore73a30902012-10-31 02:26:55 +0000883 * at Byte zero. All unused (upper) bytes of the
Bob Moore9aa61692008-04-10 19:06:41 +0400884 * buffer will be 0.
885 */
Bob Moore4fa46162015-07-01 14:45:11 +0800886 memcpy((char *)new_buffer, (char *)buffer, buffer_length);
Bob Moore9aa61692008-04-10 19:06:41 +0400887 buffer = new_buffer;
888 buffer_length = required_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
Bob Moore09387b42010-08-06 09:09:33 +0800891/* TBD: Move to common setup code */
892
893 /* Algo is limited to sizeof(u64), so cut the access_byte_width */
894 if (obj_desc->common_field.access_byte_width > sizeof(u64)) {
895 obj_desc->common_field.access_byte_width = sizeof(u64);
896 }
897
898 access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width);
899
Bob Moore967440e32006-06-23 17:04:00 -0400900 /*
901 * Create the bitmasks used for bit insertion.
902 * Note: This if/else is used to bypass compiler differences with the
903 * shift operator
904 */
Bob Moore09387b42010-08-06 09:09:33 +0800905 if (access_bit_width == ACPI_INTEGER_BIT_SIZE) {
Bob Moore5df7e6c2010-01-21 10:06:32 +0800906 width_mask = ACPI_UINT64_MAX;
Bob Moore967440e32006-06-23 17:04:00 -0400907 } else {
Bob Moore09387b42010-08-06 09:09:33 +0800908 width_mask = ACPI_MASK_BITS_ABOVE(access_bit_width);
Bob Moore967440e32006-06-23 17:04:00 -0400909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Bob Moore967440e32006-06-23 17:04:00 -0400911 mask = width_mask &
912 ACPI_MASK_BITS_BELOW(obj_desc->common_field.start_field_bit_offset);
913
914 /* Compute the number of datums (access width data items) */
Bob Moore41195322006-05-26 16:36:00 -0400915
916 datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length,
Bob Moore09387b42010-08-06 09:09:33 +0800917 access_bit_width);
Bob Moore41195322006-05-26 16:36:00 -0400918
919 field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length +
920 obj_desc->common_field.
921 start_field_bit_offset,
Bob Moore41195322006-05-26 16:36:00 -0400922 access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 /* Get initial Datum from the input buffer */
925
Bob Moore4fa46162015-07-01 14:45:11 +0800926 memcpy(&raw_datum, buffer,
927 ACPI_MIN(obj_desc->common_field.access_byte_width,
928 buffer_length - buffer_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Len Brown4be44fc2005-08-05 00:44:28 -0400930 merged_datum =
931 raw_datum << obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* Write the entire field */
934
935 for (i = 1; i < field_datum_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /* Write merged datum to the target field */
938
939 merged_datum &= mask;
Bob Moore1fad8732015-12-29 13:54:36 +0800940 status =
941 acpi_ex_write_with_update_rule(obj_desc, mask, merged_datum,
942 field_offset);
Len Brown4be44fc2005-08-05 00:44:28 -0400943 if (ACPI_FAILURE(status)) {
Bob Moore9aa61692008-04-10 19:06:41 +0400944 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 field_offset += obj_desc->common_field.access_byte_width;
Bob Moore967440e32006-06-23 17:04:00 -0400948
949 /*
950 * Start new output datum by merging with previous input datum
951 * if necessary.
952 *
953 * Note: Before the shift, check if the shift value will be larger than
954 * the integer size. If so, there is no need to perform the operation.
955 * This avoids the differences in behavior between different compilers
956 * concerning shift values larger than the target data width.
957 */
Bob Moore09387b42010-08-06 09:09:33 +0800958 if ((access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400959 obj_desc->common_field.start_field_bit_offset) <
960 ACPI_INTEGER_BIT_SIZE) {
961 merged_datum =
Bob Moore09387b42010-08-06 09:09:33 +0800962 raw_datum >> (access_bit_width -
Bob Moore967440e32006-06-23 17:04:00 -0400963 obj_desc->common_field.
964 start_field_bit_offset);
965 } else {
966 merged_datum = 0;
967 }
968
Bob Moore4c90ece2006-06-08 16:29:00 -0400969 mask = width_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if (i == datum_count) {
972 break;
973 }
974
975 /* Get the next input datum from the buffer */
976
977 buffer_offset += obj_desc->common_field.access_byte_width;
Bob Moore4fa46162015-07-01 14:45:11 +0800978 memcpy(&raw_datum, ((char *)buffer) + buffer_offset,
979 ACPI_MIN(obj_desc->common_field.access_byte_width,
980 buffer_length - buffer_offset));
Bob Moore09387b42010-08-06 09:09:33 +0800981
Len Brown4be44fc2005-08-05 00:44:28 -0400982 merged_datum |=
983 raw_datum << obj_desc->common_field.start_field_bit_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
986 /* Mask off any extra bits in the last datum */
987
988 buffer_tail_bits = (obj_desc->common_field.bit_length +
Len Brown4be44fc2005-08-05 00:44:28 -0400989 obj_desc->common_field.start_field_bit_offset) %
Bob Moore09387b42010-08-06 09:09:33 +0800990 access_bit_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (buffer_tail_bits) {
Len Brown4be44fc2005-08-05 00:44:28 -0400992 mask &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994
995 /* Write the last datum to the field */
996
997 merged_datum &= mask;
Bob Moore1fad8732015-12-29 13:54:36 +0800998 status =
999 acpi_ex_write_with_update_rule(obj_desc, mask, merged_datum,
1000 field_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Lv Zheng10622bf2013-10-29 09:30:02 +08001002exit:
Bob Moore9aa61692008-04-10 19:06:41 +04001003 /* Free temporary buffer if we used one */
1004
1005 if (new_buffer) {
1006 ACPI_FREE(new_buffer);
1007 }
Len Brown4be44fc2005-08-05 00:44:28 -04001008 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}