blob: 4a0f03157e0829cc2fb7815002cae684f50726c2 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
Bob Moore1fad8732015-12-29 13:54:36 +08004 * Module Name: exprep - ACPI AML field prep utilities
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Bob Moore800ba7c2020-01-10 11:31:49 -08006 * Copyright (C) 2000 - 2020, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050011#include "accommon.h"
12#include "acinterp.h"
13#include "amlcode.h"
14#include "acnamesp.h"
Bob Moore9ce81782011-11-16 13:39:07 +080015#include "acdispat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040018ACPI_MODULE_NAME("exprep")
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Robert Moore44f6c012005-04-18 22:49:35 -040020/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040021static u32
Len Brown4be44fc2005-08-05 00:44:28 -040022acpi_ex_decode_field_access(union acpi_operand_object *obj_desc,
23 u8 field_flags, u32 * return_byte_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#ifdef ACPI_UNDER_DEVELOPMENT
Robert Moore44f6c012005-04-18 22:49:35 -040026
27static u32
Len Brown4be44fc2005-08-05 00:44:28 -040028acpi_ex_generate_access(u32 field_bit_offset,
29 u32 field_bit_length, u32 region_length);
Robert Moore44f6c012005-04-18 22:49:35 -040030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*******************************************************************************
32 *
33 * FUNCTION: acpi_ex_generate_access
34 *
35 * PARAMETERS: field_bit_offset - Start of field within parent region/buffer
36 * field_bit_length - Length of field in bits
37 * region_length - Length of parent in bytes
38 *
39 * RETURN: Field granularity (8, 16, 32 or 64) and
40 * byte_alignment (1, 2, 3, or 4)
41 *
42 * DESCRIPTION: Generate an optimal access width for fields defined with the
43 * any_acc keyword.
44 *
45 * NOTE: Need to have the region_length in order to check for boundary
Bob Moore73a30902012-10-31 02:26:55 +000046 * conditions (end-of-region). However, the region_length is a deferred
47 * operation. Therefore, to complete this implementation, the generation
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * of this access width must be deferred until the region length has
49 * been evaluated.
50 *
51 ******************************************************************************/
52
53static u32
Len Brown4be44fc2005-08-05 00:44:28 -040054acpi_ex_generate_access(u32 field_bit_offset,
55 u32 field_bit_length, u32 region_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Len Brown4be44fc2005-08-05 00:44:28 -040057 u32 field_byte_length;
58 u32 field_byte_offset;
59 u32 field_byte_end_offset;
60 u32 access_byte_width;
61 u32 field_start_offset;
62 u32 field_end_offset;
63 u32 minimum_access_width = 0xFFFFFFFF;
64 u32 minimum_accesses = 0xFFFFFFFF;
65 u32 accesses;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Bob Mooreb229cf92006-04-21 17:15:00 -040067 ACPI_FUNCTION_TRACE(ex_generate_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /* Round Field start offset and length to "minimal" byte boundaries */
70
Len Brown4be44fc2005-08-05 00:44:28 -040071 field_byte_offset = ACPI_DIV_8(ACPI_ROUND_DOWN(field_bit_offset, 8));
Bob Moore1fad8732015-12-29 13:54:36 +080072
73 field_byte_end_offset =
74 ACPI_DIV_8(ACPI_ROUND_UP(field_bit_length + field_bit_offset, 8));
75
Len Brown4be44fc2005-08-05 00:44:28 -040076 field_byte_length = field_byte_end_offset - field_byte_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brown4be44fc2005-08-05 00:44:28 -040078 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +080079 "Bit length %u, Bit offset %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -040080 field_bit_length, field_bit_offset));
Robert Moore44f6c012005-04-18 22:49:35 -040081
Len Brown4be44fc2005-08-05 00:44:28 -040082 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +080083 "Byte Length %u, Byte Offset %u, End Offset %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -040084 field_byte_length, field_byte_offset,
85 field_byte_end_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /*
88 * Iterative search for the maximum access width that is both aligned
89 * and does not go beyond the end of the region
90 *
91 * Start at byte_acc and work upwards to qword_acc max. (1,2,4,8 bytes)
92 */
Len Brown4be44fc2005-08-05 00:44:28 -040093 for (access_byte_width = 1; access_byte_width <= 8;
94 access_byte_width <<= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /*
Robert Moore44f6c012005-04-18 22:49:35 -040096 * 1) Round end offset up to next access boundary and make sure that
97 * this does not go beyond the end of the parent region.
98 * 2) When the Access width is greater than the field_byte_length, we
99 * are done. (This does not optimize for the perfectly aligned
100 * case yet).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
Len Brown4be44fc2005-08-05 00:44:28 -0400102 if (ACPI_ROUND_UP(field_byte_end_offset, access_byte_width) <=
103 region_length) {
Robert Moore44f6c012005-04-18 22:49:35 -0400104 field_start_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400105 ACPI_ROUND_DOWN(field_byte_offset,
106 access_byte_width) /
107 access_byte_width;
Robert Moore44f6c012005-04-18 22:49:35 -0400108
109 field_end_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400110 ACPI_ROUND_UP((field_byte_length +
111 field_byte_offset),
112 access_byte_width) /
113 access_byte_width;
Robert Moore44f6c012005-04-18 22:49:35 -0400114
115 accesses = field_end_offset - field_start_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Len Brown4be44fc2005-08-05 00:44:28 -0400117 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800118 "AccessWidth %u end is within region\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400119 access_byte_width));
Robert Moore44f6c012005-04-18 22:49:35 -0400120
Len Brown4be44fc2005-08-05 00:44:28 -0400121 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800122 "Field Start %u, Field End %u -- requires %u accesses\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400123 field_start_offset, field_end_offset,
124 accesses));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Single access is optimal */
127
128 if (accesses <= 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400129 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Moore1fad8732015-12-29 13:54:36 +0800130 "Entire field can be accessed "
131 "with one operation of size %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400132 access_byte_width));
133 return_VALUE(access_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
136 /*
137 * Fits in the region, but requires more than one read/write.
138 * try the next wider access on next iteration
139 */
140 if (accesses < minimum_accesses) {
Len Brown4be44fc2005-08-05 00:44:28 -0400141 minimum_accesses = accesses;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 minimum_access_width = access_byte_width;
143 }
Len Brown4be44fc2005-08-05 00:44:28 -0400144 } else {
145 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800146 "AccessWidth %u end is NOT within region\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400147 access_byte_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (access_byte_width == 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400149 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
150 "Field goes beyond end-of-region!\n"));
Robert Moore44f6c012005-04-18 22:49:35 -0400151
152 /* Field does not fit in the region at all */
153
Len Brown4be44fc2005-08-05 00:44:28 -0400154 return_VALUE(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156
Robert Moore44f6c012005-04-18 22:49:35 -0400157 /*
158 * This width goes beyond the end-of-region, back off to
159 * previous access
160 */
Len Brown4be44fc2005-08-05 00:44:28 -0400161 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800162 "Backing off to previous optimal access width of %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400163 minimum_access_width));
164 return_VALUE(minimum_access_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166 }
167
Robert Moore44f6c012005-04-18 22:49:35 -0400168 /*
169 * Could not read/write field with one operation,
170 * just use max access width
171 */
Len Brown4be44fc2005-08-05 00:44:28 -0400172 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
173 "Cannot access field in one operation, using width 8\n"));
Bob Moore1fad8732015-12-29 13:54:36 +0800174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 return_VALUE(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
Len Brown4be44fc2005-08-05 00:44:28 -0400177#endif /* ACPI_UNDER_DEVELOPMENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/*******************************************************************************
180 *
181 * FUNCTION: acpi_ex_decode_field_access
182 *
Robert Moore44f6c012005-04-18 22:49:35 -0400183 * PARAMETERS: obj_desc - Field object
184 * field_flags - Encoded fieldflags (contains access bits)
185 * return_byte_alignment - Where the byte alignment is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * RETURN: Field granularity (8, 16, 32 or 64) and
188 * byte_alignment (1, 2, 3, or 4)
189 *
190 * DESCRIPTION: Decode the access_type bits of a field definition.
191 *
192 ******************************************************************************/
193
194static u32
Len Brown4be44fc2005-08-05 00:44:28 -0400195acpi_ex_decode_field_access(union acpi_operand_object *obj_desc,
196 u8 field_flags, u32 * return_byte_alignment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Len Brown4be44fc2005-08-05 00:44:28 -0400198 u32 access;
199 u32 byte_alignment;
200 u32 bit_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Bob Mooreb229cf92006-04-21 17:15:00 -0400202 ACPI_FUNCTION_TRACE(ex_decode_field_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 access = (field_flags & AML_FIELD_ACCESS_TYPE_MASK);
205
206 switch (access) {
207 case AML_FIELD_ACCESS_ANY:
208
209#ifdef ACPI_UNDER_DEVELOPMENT
Robert Moore44f6c012005-04-18 22:49:35 -0400210 byte_alignment =
Len Brown4be44fc2005-08-05 00:44:28 -0400211 acpi_ex_generate_access(obj_desc->common_field.
212 start_field_bit_offset,
213 obj_desc->common_field.bit_length,
214 0xFFFFFFFF
215 /* Temp until we pass region_length as parameter */
Len Brownfd350942007-05-09 23:34:35 -0400216 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 bit_length = byte_alignment * 8;
218#endif
219
220 byte_alignment = 1;
221 bit_length = 8;
222 break;
223
224 case AML_FIELD_ACCESS_BYTE:
Len Brown4be44fc2005-08-05 00:44:28 -0400225 case AML_FIELD_ACCESS_BUFFER: /* ACPI 2.0 (SMBus Buffer) */
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 byte_alignment = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400228 bit_length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 break;
230
231 case AML_FIELD_ACCESS_WORD:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 byte_alignment = 2;
Len Brown4be44fc2005-08-05 00:44:28 -0400234 bit_length = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
236
237 case AML_FIELD_ACCESS_DWORD:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 byte_alignment = 4;
Len Brown4be44fc2005-08-05 00:44:28 -0400240 bit_length = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 break;
242
Len Brown4be44fc2005-08-05 00:44:28 -0400243 case AML_FIELD_ACCESS_QWORD: /* ACPI 2.0 */
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 byte_alignment = 8;
Len Brown4be44fc2005-08-05 00:44:28 -0400246 bit_length = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 break;
248
249 default:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* Invalid field access type */
252
Bob Mooref6a22b02010-03-05 17:56:40 +0800253 ACPI_ERROR((AE_INFO, "Unknown field access type 0x%X", access));
Bob Moore1fad8732015-12-29 13:54:36 +0800254
Bob Moorefd1af712013-03-08 09:22:23 +0000255 return_UINT32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Bob Moore3371c192009-02-18 14:44:03 +0800258 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /*
260 * buffer_field access can be on any byte boundary, so the
261 * byte_alignment is always 1 byte -- regardless of any byte_alignment
262 * implied by the field access type.
263 */
264 byte_alignment = 1;
265 }
266
267 *return_byte_alignment = byte_alignment;
Bob Moorefd1af712013-03-08 09:22:23 +0000268 return_UINT32(bit_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*******************************************************************************
272 *
273 * FUNCTION: acpi_ex_prep_common_field_object
274 *
275 * PARAMETERS: obj_desc - The field object
276 * field_flags - Access, lock_rule, and update_rule.
277 * The format of a field_flag is described
278 * in the ACPI specification
Robert Moore44f6c012005-04-18 22:49:35 -0400279 * field_attribute - Special attributes (not used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 * field_bit_position - Field start position
281 * field_bit_length - Field length in number of bits
282 *
283 * RETURN: Status
284 *
285 * DESCRIPTION: Initialize the areas of the field object that are common
Bob Moore73a30902012-10-31 02:26:55 +0000286 * to the various types of fields. Note: This is very "sensitive"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * code because we are solving the general case for field
288 * alignment.
289 *
290 ******************************************************************************/
291
292acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400293acpi_ex_prep_common_field_object(union acpi_operand_object *obj_desc,
294 u8 field_flags,
295 u8 field_attribute,
296 u32 field_bit_position, u32 field_bit_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Len Brown4be44fc2005-08-05 00:44:28 -0400298 u32 access_bit_width;
299 u32 byte_alignment;
300 u32 nearest_byte_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Bob Mooreb229cf92006-04-21 17:15:00 -0400302 ACPI_FUNCTION_TRACE(ex_prep_common_field_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /*
305 * Note: the structure being initialized is the
306 * ACPI_COMMON_FIELD_INFO; No structure fields outside of the common
307 * area are initialized by this procedure.
308 */
309 obj_desc->common_field.field_flags = field_flags;
310 obj_desc->common_field.attribute = field_attribute;
311 obj_desc->common_field.bit_length = field_bit_length;
312
313 /*
Bob Moore73a30902012-10-31 02:26:55 +0000314 * Decode the access type so we can compute offsets. The access type gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * two pieces of information - the width of each field access and the
316 * necessary byte_alignment (address granularity) of the access.
317 *
318 * For any_acc, the access_bit_width is the largest width that is both
319 * necessary and possible in an attempt to access the whole field in one
Bob Moore73a30902012-10-31 02:26:55 +0000320 * I/O operation. However, for any_acc, the byte_alignment is always one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * byte.
322 *
323 * For all Buffer Fields, the byte_alignment is always one byte.
324 *
325 * For all other access types (Byte, Word, Dword, Qword), the Bitwidth is
326 * the same (equivalent) as the byte_alignment.
327 */
Bob Moore1fad8732015-12-29 13:54:36 +0800328 access_bit_width =
329 acpi_ex_decode_field_access(obj_desc, field_flags, &byte_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (!access_bit_width) {
Len Brown4be44fc2005-08-05 00:44:28 -0400331 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Bob Moore09387b42010-08-06 09:09:33 +0800334 /* Setup width (access granularity) fields (values are: 1, 2, 4, 8) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 obj_desc->common_field.access_byte_width = (u8)
Bob Moore09387b42010-08-06 09:09:33 +0800337 ACPI_DIV_8(access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /*
340 * base_byte_offset is the address of the start of the field within the
Bob Moore73a30902012-10-31 02:26:55 +0000341 * region. It is the byte address of the first *datum* (field-width data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * unit) of the field. (i.e., the first datum that contains at least the
343 * first *bit* of the field.)
344 *
345 * Note: byte_alignment is always either equal to the access_bit_width or 8
346 * (Byte access), and it defines the addressing granularity of the parent
347 * region or buffer.
348 */
349 nearest_byte_address =
Len Brown4be44fc2005-08-05 00:44:28 -0400350 ACPI_ROUND_BITS_DOWN_TO_BYTES(field_bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 obj_desc->common_field.base_byte_offset = (u32)
Len Brown4be44fc2005-08-05 00:44:28 -0400352 ACPI_ROUND_DOWN(nearest_byte_address, byte_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /*
355 * start_field_bit_offset is the offset of the first bit of the field within
356 * a field datum.
357 */
358 obj_desc->common_field.start_field_bit_offset = (u8)
Len Brown4be44fc2005-08-05 00:44:28 -0400359 (field_bit_position -
360 ACPI_MUL_8(obj_desc->common_field.base_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Len Brown4be44fc2005-08-05 00:44:28 -0400362 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/*******************************************************************************
366 *
367 * FUNCTION: acpi_ex_prep_field_value
368 *
Bob Mooreba494be2012-07-12 09:40:10 +0800369 * PARAMETERS: info - Contains all field creation info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *
371 * RETURN: Status
372 *
Bob Moorecf489582012-07-16 09:52:27 +0800373 * DESCRIPTION: Construct an object of type union acpi_operand_object with a
374 * subtype of def_field and connect it to the parent Node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
376 ******************************************************************************/
377
Len Brown4be44fc2005-08-05 00:44:28 -0400378acpi_status acpi_ex_prep_field_value(struct acpi_create_field_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Len Brown4be44fc2005-08-05 00:44:28 -0400380 union acpi_operand_object *obj_desc;
Lin Mingef805d92008-04-10 19:06:41 +0400381 union acpi_operand_object *second_desc = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400382 acpi_status status;
Bob Moore09387b42010-08-06 09:09:33 +0800383 u32 access_byte_width;
384 u32 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Bob Mooreb229cf92006-04-21 17:15:00 -0400386 ACPI_FUNCTION_TRACE(ex_prep_field_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* Parameter validation */
389
390 if (info->field_type != ACPI_TYPE_LOCAL_INDEX_FIELD) {
391 if (!info->region_node) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400392 ACPI_ERROR((AE_INFO, "Null RegionNode"));
Len Brown4be44fc2005-08-05 00:44:28 -0400393 return_ACPI_STATUS(AE_AML_NO_OPERAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395
Len Brown4be44fc2005-08-05 00:44:28 -0400396 type = acpi_ns_get_type(info->region_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (type != ACPI_TYPE_REGION) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500398 ACPI_ERROR((AE_INFO,
Bob Moore09387b42010-08-06 09:09:33 +0800399 "Needed Region, found type 0x%X (%s)", type,
400 acpi_ut_get_type_name(type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Len Brown4be44fc2005-08-05 00:44:28 -0400402 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 }
405
406 /* Allocate a new field object */
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 obj_desc = acpi_ut_create_internal_object(info->field_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400410 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
413 /* Initialize areas of the object that are common to all fields */
414
415 obj_desc->common_field.node = info->field_node;
Bob Moore09387b42010-08-06 09:09:33 +0800416 status = acpi_ex_prep_common_field_object(obj_desc,
417 info->field_flags,
Len Brown4be44fc2005-08-05 00:44:28 -0400418 info->attribute,
419 info->field_bit_position,
420 info->field_bit_length);
421 if (ACPI_FAILURE(status)) {
422 acpi_ut_delete_object_desc(obj_desc);
423 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
426 /* Initialize areas of the object that are specific to the field type */
427
428 switch (info->field_type) {
429 case ACPI_TYPE_LOCAL_REGION_FIELD:
430
Len Brown4be44fc2005-08-05 00:44:28 -0400431 obj_desc->field.region_obj =
432 acpi_ns_get_attached_object(info->region_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Bob Moore9ce81782011-11-16 13:39:07 +0800434 /* Fields specific to generic_serial_bus fields */
435
436 obj_desc->field.access_length = info->access_length;
437
438 if (info->connection_node) {
439 second_desc = info->connection_node->object;
440 if (!(second_desc->common.flags & AOPOBJ_DATA_VALID)) {
441 status =
442 acpi_ds_get_buffer_arguments(second_desc);
443 if (ACPI_FAILURE(status)) {
444 acpi_ut_delete_object_desc(obj_desc);
445 return_ACPI_STATUS(status);
446 }
447 }
448
449 obj_desc->field.resource_buffer =
450 second_desc->buffer.pointer;
451 obj_desc->field.resource_length =
452 (u16)second_desc->buffer.length;
453 } else if (info->resource_buffer) {
454 obj_desc->field.resource_buffer = info->resource_buffer;
455 obj_desc->field.resource_length = info->resource_length;
456 }
457
Bob Moore75ec6e52014-09-23 10:35:47 +0800458 obj_desc->field.pin_number_index = info->pin_number_index;
459
Bob Moore09387b42010-08-06 09:09:33 +0800460 /* Allow full data read from EC address space */
461
462 if ((obj_desc->field.region_obj->region.space_id ==
463 ACPI_ADR_SPACE_EC)
464 && (obj_desc->common_field.bit_length > 8)) {
465 access_byte_width =
466 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.
467 bit_length);
468
469 /* Maximum byte width supported is 255 */
470
471 if (access_byte_width < 256) {
472 obj_desc->common_field.access_byte_width =
473 (u8)access_byte_width;
474 }
475 }
Len Brown4be44fc2005-08-05 00:44:28 -0400476 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400477 "RegionField: BitOff %X, Off %X, Gran %X, Region %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400478 obj_desc->field.start_field_bit_offset,
479 obj_desc->field.base_byte_offset,
480 obj_desc->field.access_byte_width,
481 obj_desc->field.region_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 case ACPI_TYPE_LOCAL_BANK_FIELD:
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486 obj_desc->bank_field.value = info->bank_value;
487 obj_desc->bank_field.region_obj =
488 acpi_ns_get_attached_object(info->region_node);
489 obj_desc->bank_field.bank_obj =
490 acpi_ns_get_attached_object(info->register_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* An additional reference for the attached objects */
493
Len Brown4be44fc2005-08-05 00:44:28 -0400494 acpi_ut_add_reference(obj_desc->bank_field.region_obj);
495 acpi_ut_add_reference(obj_desc->bank_field.bank_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Len Brown4be44fc2005-08-05 00:44:28 -0400497 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400498 "Bank Field: BitOff %X, Off %X, Gran %X, Region %p, BankReg %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400499 obj_desc->bank_field.start_field_bit_offset,
500 obj_desc->bank_field.base_byte_offset,
501 obj_desc->field.access_byte_width,
502 obj_desc->bank_field.region_obj,
503 obj_desc->bank_field.bank_obj));
Lin Mingef805d92008-04-10 19:06:41 +0400504
505 /*
506 * Remember location in AML stream of the field unit
507 * opcode and operands -- since the bank_value
508 * operands must be evaluated.
509 */
510 second_desc = obj_desc->common.next_object;
511 second_desc->extra.aml_start =
Bob Mooreb5243762008-06-10 13:44:48 +0800512 ACPI_CAST_PTR(union acpi_parse_object,
513 info->data_register_node)->named.data;
Lin Mingef805d92008-04-10 19:06:41 +0400514 second_desc->extra.aml_length =
Bob Mooreb5243762008-06-10 13:44:48 +0800515 ACPI_CAST_PTR(union acpi_parse_object,
516 info->data_register_node)->named.length;
Lin Mingef805d92008-04-10 19:06:41 +0400517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 case ACPI_TYPE_LOCAL_INDEX_FIELD:
521
Bob Mooreb8e4d892006-01-27 16:43:00 -0500522 /* Get the Index and Data registers */
523
Len Brown4be44fc2005-08-05 00:44:28 -0400524 obj_desc->index_field.index_obj =
525 acpi_ns_get_attached_object(info->register_node);
526 obj_desc->index_field.data_obj =
527 acpi_ns_get_attached_object(info->data_register_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Len Brown4be44fc2005-08-05 00:44:28 -0400529 if (!obj_desc->index_field.data_obj
530 || !obj_desc->index_field.index_obj) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500531 ACPI_ERROR((AE_INFO,
532 "Null Index Object during field prep"));
Len Brown4be44fc2005-08-05 00:44:28 -0400533 acpi_ut_delete_object_desc(obj_desc);
534 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
537 /* An additional reference for the attached objects */
538
Len Brown4be44fc2005-08-05 00:44:28 -0400539 acpi_ut_add_reference(obj_desc->index_field.data_obj);
540 acpi_ut_add_reference(obj_desc->index_field.index_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Bob Mooreb8e4d892006-01-27 16:43:00 -0500542 /*
Bob Mooreb229cf92006-04-21 17:15:00 -0400543 * April 2006: Changed to match MS behavior
Bob Mooreea936b72006-02-17 00:00:00 -0500544 *
Bob Mooreb8e4d892006-01-27 16:43:00 -0500545 * The value written to the Index register is the byte offset of the
Bob Mooreb229cf92006-04-21 17:15:00 -0400546 * target field in units of the granularity of the index_field
Bob Mooreea936b72006-02-17 00:00:00 -0500547 *
548 * Previously, the value was calculated as an index in terms of the
549 * width of the Data register, as below:
550 *
Bob Mooreb229cf92006-04-21 17:15:00 -0400551 * obj_desc->index_field.Value = (u32)
552 * (Info->field_bit_position / ACPI_MUL_8 (
553 * obj_desc->Field.access_byte_width));
554 *
555 * February 2006: Tried value as a byte offset:
556 * obj_desc->index_field.Value = (u32)
557 * ACPI_DIV_8 (Info->field_bit_position);
Bob Mooreb8e4d892006-01-27 16:43:00 -0500558 */
Bob Mooreea936b72006-02-17 00:00:00 -0500559 obj_desc->index_field.value =
Bob Mooreb229cf92006-04-21 17:15:00 -0400560 (u32) ACPI_ROUND_DOWN(ACPI_DIV_8(info->field_bit_position),
561 obj_desc->index_field.
562 access_byte_width);
Bob Mooreb8e4d892006-01-27 16:43:00 -0500563
Len Brown4be44fc2005-08-05 00:44:28 -0400564 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Moore1fad8732015-12-29 13:54:36 +0800565 "IndexField: BitOff %X, Off %X, Value %X, "
566 "Gran %X, Index %p, Data %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400567 obj_desc->index_field.start_field_bit_offset,
568 obj_desc->index_field.base_byte_offset,
569 obj_desc->index_field.value,
570 obj_desc->field.access_byte_width,
571 obj_desc->index_field.index_obj,
572 obj_desc->index_field.data_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 break;
574
575 default:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* No other types should get here */
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 }
581
582 /*
583 * Store the constructed descriptor (obj_desc) into the parent Node,
584 * preserving the current type of that named_obj.
585 */
Bob Moore1fad8732015-12-29 13:54:36 +0800586 status =
587 acpi_ns_attach_object(info->field_node, obj_desc,
588 acpi_ns_get_type(info->field_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400591 "Set NamedObj %p [%4.4s], ObjDesc %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400592 info->field_node,
593 acpi_ut_get_node_name(info->field_node), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 /* Remove local reference to the object */
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597 acpi_ut_remove_reference(obj_desc);
598 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}