blob: 30157f5a12d7d774386ab834c6ee819232f23b2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exprep - ACPI AML (p-code) execution - field prep utilities
5 *
6 *****************************************************************************/
7
8/*
Bob Moore77848132012-01-12 13:27:23 +08009 * Copyright (C) 2000 - 2012, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
47#include "acinterp.h"
48#include "amlcode.h"
49#include "acnamesp.h"
Bob Moore9ce81782011-11-16 13:39:07 +080050#include "acdispat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("exprep")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Robert Moore44f6c012005-04-18 22:49:35 -040055/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040056static u32
Len Brown4be44fc2005-08-05 00:44:28 -040057acpi_ex_decode_field_access(union acpi_operand_object *obj_desc,
58 u8 field_flags, u32 * return_byte_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef ACPI_UNDER_DEVELOPMENT
Robert Moore44f6c012005-04-18 22:49:35 -040061
62static u32
Len Brown4be44fc2005-08-05 00:44:28 -040063acpi_ex_generate_access(u32 field_bit_offset,
64 u32 field_bit_length, u32 region_length);
Robert Moore44f6c012005-04-18 22:49:35 -040065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*******************************************************************************
67 *
68 * FUNCTION: acpi_ex_generate_access
69 *
70 * PARAMETERS: field_bit_offset - Start of field within parent region/buffer
71 * field_bit_length - Length of field in bits
72 * region_length - Length of parent in bytes
73 *
74 * RETURN: Field granularity (8, 16, 32 or 64) and
75 * byte_alignment (1, 2, 3, or 4)
76 *
77 * DESCRIPTION: Generate an optimal access width for fields defined with the
78 * any_acc keyword.
79 *
80 * NOTE: Need to have the region_length in order to check for boundary
81 * conditions (end-of-region). However, the region_length is a deferred
82 * operation. Therefore, to complete this implementation, the generation
83 * of this access width must be deferred until the region length has
84 * been evaluated.
85 *
86 ******************************************************************************/
87
88static u32
Len Brown4be44fc2005-08-05 00:44:28 -040089acpi_ex_generate_access(u32 field_bit_offset,
90 u32 field_bit_length, u32 region_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Len Brown4be44fc2005-08-05 00:44:28 -040092 u32 field_byte_length;
93 u32 field_byte_offset;
94 u32 field_byte_end_offset;
95 u32 access_byte_width;
96 u32 field_start_offset;
97 u32 field_end_offset;
98 u32 minimum_access_width = 0xFFFFFFFF;
99 u32 minimum_accesses = 0xFFFFFFFF;
100 u32 accesses;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Bob Mooreb229cf92006-04-21 17:15:00 -0400102 ACPI_FUNCTION_TRACE(ex_generate_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* Round Field start offset and length to "minimal" byte boundaries */
105
Len Brown4be44fc2005-08-05 00:44:28 -0400106 field_byte_offset = ACPI_DIV_8(ACPI_ROUND_DOWN(field_bit_offset, 8));
107 field_byte_end_offset = ACPI_DIV_8(ACPI_ROUND_UP(field_bit_length +
108 field_bit_offset, 8));
109 field_byte_length = field_byte_end_offset - field_byte_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Len Brown4be44fc2005-08-05 00:44:28 -0400111 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800112 "Bit length %u, Bit offset %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400113 field_bit_length, field_bit_offset));
Robert Moore44f6c012005-04-18 22:49:35 -0400114
Len Brown4be44fc2005-08-05 00:44:28 -0400115 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800116 "Byte Length %u, Byte Offset %u, End Offset %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400117 field_byte_length, field_byte_offset,
118 field_byte_end_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /*
121 * Iterative search for the maximum access width that is both aligned
122 * and does not go beyond the end of the region
123 *
124 * Start at byte_acc and work upwards to qword_acc max. (1,2,4,8 bytes)
125 */
Len Brown4be44fc2005-08-05 00:44:28 -0400126 for (access_byte_width = 1; access_byte_width <= 8;
127 access_byte_width <<= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400129 * 1) Round end offset up to next access boundary and make sure that
130 * this does not go beyond the end of the parent region.
131 * 2) When the Access width is greater than the field_byte_length, we
132 * are done. (This does not optimize for the perfectly aligned
133 * case yet).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 */
Len Brown4be44fc2005-08-05 00:44:28 -0400135 if (ACPI_ROUND_UP(field_byte_end_offset, access_byte_width) <=
136 region_length) {
Robert Moore44f6c012005-04-18 22:49:35 -0400137 field_start_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400138 ACPI_ROUND_DOWN(field_byte_offset,
139 access_byte_width) /
140 access_byte_width;
Robert Moore44f6c012005-04-18 22:49:35 -0400141
142 field_end_offset =
Len Brown4be44fc2005-08-05 00:44:28 -0400143 ACPI_ROUND_UP((field_byte_length +
144 field_byte_offset),
145 access_byte_width) /
146 access_byte_width;
Robert Moore44f6c012005-04-18 22:49:35 -0400147
148 accesses = field_end_offset - field_start_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Len Brown4be44fc2005-08-05 00:44:28 -0400150 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800151 "AccessWidth %u end is within region\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400152 access_byte_width));
Robert Moore44f6c012005-04-18 22:49:35 -0400153
Len Brown4be44fc2005-08-05 00:44:28 -0400154 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800155 "Field Start %u, Field End %u -- requires %u accesses\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400156 field_start_offset, field_end_offset,
157 accesses));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* Single access is optimal */
160
161 if (accesses <= 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400162 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800163 "Entire field can be accessed with one operation of size %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400164 access_byte_width));
165 return_VALUE(access_byte_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
168 /*
169 * Fits in the region, but requires more than one read/write.
170 * try the next wider access on next iteration
171 */
172 if (accesses < minimum_accesses) {
Len Brown4be44fc2005-08-05 00:44:28 -0400173 minimum_accesses = accesses;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 minimum_access_width = access_byte_width;
175 }
Len Brown4be44fc2005-08-05 00:44:28 -0400176 } else {
177 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800178 "AccessWidth %u end is NOT within region\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400179 access_byte_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (access_byte_width == 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400181 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
182 "Field goes beyond end-of-region!\n"));
Robert Moore44f6c012005-04-18 22:49:35 -0400183
184 /* Field does not fit in the region at all */
185
Len Brown4be44fc2005-08-05 00:44:28 -0400186 return_VALUE(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
Robert Moore44f6c012005-04-18 22:49:35 -0400189 /*
190 * This width goes beyond the end-of-region, back off to
191 * previous access
192 */
Len Brown4be44fc2005-08-05 00:44:28 -0400193 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb27d6592010-05-26 11:47:13 +0800194 "Backing off to previous optimal access width of %u\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400195 minimum_access_width));
196 return_VALUE(minimum_access_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198 }
199
Robert Moore44f6c012005-04-18 22:49:35 -0400200 /*
201 * Could not read/write field with one operation,
202 * just use max access width
203 */
Len Brown4be44fc2005-08-05 00:44:28 -0400204 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
205 "Cannot access field in one operation, using width 8\n"));
206 return_VALUE(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
Len Brown4be44fc2005-08-05 00:44:28 -0400208#endif /* ACPI_UNDER_DEVELOPMENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/*******************************************************************************
211 *
212 * FUNCTION: acpi_ex_decode_field_access
213 *
Robert Moore44f6c012005-04-18 22:49:35 -0400214 * PARAMETERS: obj_desc - Field object
215 * field_flags - Encoded fieldflags (contains access bits)
216 * return_byte_alignment - Where the byte alignment is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * RETURN: Field granularity (8, 16, 32 or 64) and
219 * byte_alignment (1, 2, 3, or 4)
220 *
221 * DESCRIPTION: Decode the access_type bits of a field definition.
222 *
223 ******************************************************************************/
224
225static u32
Len Brown4be44fc2005-08-05 00:44:28 -0400226acpi_ex_decode_field_access(union acpi_operand_object *obj_desc,
227 u8 field_flags, u32 * return_byte_alignment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Len Brown4be44fc2005-08-05 00:44:28 -0400229 u32 access;
230 u32 byte_alignment;
231 u32 bit_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Bob Mooreb229cf92006-04-21 17:15:00 -0400233 ACPI_FUNCTION_TRACE(ex_decode_field_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 access = (field_flags & AML_FIELD_ACCESS_TYPE_MASK);
236
237 switch (access) {
238 case AML_FIELD_ACCESS_ANY:
239
240#ifdef ACPI_UNDER_DEVELOPMENT
Robert Moore44f6c012005-04-18 22:49:35 -0400241 byte_alignment =
Len Brown4be44fc2005-08-05 00:44:28 -0400242 acpi_ex_generate_access(obj_desc->common_field.
243 start_field_bit_offset,
244 obj_desc->common_field.bit_length,
245 0xFFFFFFFF
246 /* Temp until we pass region_length as parameter */
Len Brownfd350942007-05-09 23:34:35 -0400247 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 bit_length = byte_alignment * 8;
249#endif
250
251 byte_alignment = 1;
252 bit_length = 8;
253 break;
254
255 case AML_FIELD_ACCESS_BYTE:
Len Brown4be44fc2005-08-05 00:44:28 -0400256 case AML_FIELD_ACCESS_BUFFER: /* ACPI 2.0 (SMBus Buffer) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 byte_alignment = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400258 bit_length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 break;
260
261 case AML_FIELD_ACCESS_WORD:
262 byte_alignment = 2;
Len Brown4be44fc2005-08-05 00:44:28 -0400263 bit_length = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 break;
265
266 case AML_FIELD_ACCESS_DWORD:
267 byte_alignment = 4;
Len Brown4be44fc2005-08-05 00:44:28 -0400268 bit_length = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 break;
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271 case AML_FIELD_ACCESS_QWORD: /* ACPI 2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 byte_alignment = 8;
Len Brown4be44fc2005-08-05 00:44:28 -0400273 bit_length = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275
276 default:
277 /* Invalid field access type */
278
Bob Mooref6a22b02010-03-05 17:56:40 +0800279 ACPI_ERROR((AE_INFO, "Unknown field access type 0x%X", access));
Bob Moore50eca3e2005-09-30 19:03:00 -0400280 return_UINT32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
Bob Moore3371c192009-02-18 14:44:03 +0800283 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /*
285 * buffer_field access can be on any byte boundary, so the
286 * byte_alignment is always 1 byte -- regardless of any byte_alignment
287 * implied by the field access type.
288 */
289 byte_alignment = 1;
290 }
291
292 *return_byte_alignment = byte_alignment;
Bob Moore50eca3e2005-09-30 19:03:00 -0400293 return_UINT32(bit_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/*******************************************************************************
297 *
298 * FUNCTION: acpi_ex_prep_common_field_object
299 *
300 * PARAMETERS: obj_desc - The field object
301 * field_flags - Access, lock_rule, and update_rule.
302 * The format of a field_flag is described
303 * in the ACPI specification
Robert Moore44f6c012005-04-18 22:49:35 -0400304 * field_attribute - Special attributes (not used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * field_bit_position - Field start position
306 * field_bit_length - Field length in number of bits
307 *
308 * RETURN: Status
309 *
310 * DESCRIPTION: Initialize the areas of the field object that are common
311 * to the various types of fields. Note: This is very "sensitive"
312 * code because we are solving the general case for field
313 * alignment.
314 *
315 ******************************************************************************/
316
317acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400318acpi_ex_prep_common_field_object(union acpi_operand_object *obj_desc,
319 u8 field_flags,
320 u8 field_attribute,
321 u32 field_bit_position, u32 field_bit_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Len Brown4be44fc2005-08-05 00:44:28 -0400323 u32 access_bit_width;
324 u32 byte_alignment;
325 u32 nearest_byte_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Bob Mooreb229cf92006-04-21 17:15:00 -0400327 ACPI_FUNCTION_TRACE(ex_prep_common_field_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /*
330 * Note: the structure being initialized is the
331 * ACPI_COMMON_FIELD_INFO; No structure fields outside of the common
332 * area are initialized by this procedure.
333 */
334 obj_desc->common_field.field_flags = field_flags;
335 obj_desc->common_field.attribute = field_attribute;
336 obj_desc->common_field.bit_length = field_bit_length;
337
338 /*
339 * Decode the access type so we can compute offsets. The access type gives
340 * two pieces of information - the width of each field access and the
341 * necessary byte_alignment (address granularity) of the access.
342 *
343 * For any_acc, the access_bit_width is the largest width that is both
344 * necessary and possible in an attempt to access the whole field in one
345 * I/O operation. However, for any_acc, the byte_alignment is always one
346 * byte.
347 *
348 * For all Buffer Fields, the byte_alignment is always one byte.
349 *
350 * For all other access types (Byte, Word, Dword, Qword), the Bitwidth is
351 * the same (equivalent) as the byte_alignment.
352 */
Len Brown4be44fc2005-08-05 00:44:28 -0400353 access_bit_width = acpi_ex_decode_field_access(obj_desc, field_flags,
354 &byte_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (!access_bit_width) {
Len Brown4be44fc2005-08-05 00:44:28 -0400356 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
Bob Moore09387b42010-08-06 09:09:33 +0800359 /* Setup width (access granularity) fields (values are: 1, 2, 4, 8) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 obj_desc->common_field.access_byte_width = (u8)
Bob Moore09387b42010-08-06 09:09:33 +0800362 ACPI_DIV_8(access_bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /*
365 * base_byte_offset is the address of the start of the field within the
366 * region. It is the byte address of the first *datum* (field-width data
367 * unit) of the field. (i.e., the first datum that contains at least the
368 * first *bit* of the field.)
369 *
370 * Note: byte_alignment is always either equal to the access_bit_width or 8
371 * (Byte access), and it defines the addressing granularity of the parent
372 * region or buffer.
373 */
374 nearest_byte_address =
Len Brown4be44fc2005-08-05 00:44:28 -0400375 ACPI_ROUND_BITS_DOWN_TO_BYTES(field_bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 obj_desc->common_field.base_byte_offset = (u32)
Len Brown4be44fc2005-08-05 00:44:28 -0400377 ACPI_ROUND_DOWN(nearest_byte_address, byte_alignment);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /*
380 * start_field_bit_offset is the offset of the first bit of the field within
381 * a field datum.
382 */
383 obj_desc->common_field.start_field_bit_offset = (u8)
Len Brown4be44fc2005-08-05 00:44:28 -0400384 (field_bit_position -
385 ACPI_MUL_8(obj_desc->common_field.base_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Len Brown4be44fc2005-08-05 00:44:28 -0400387 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/*******************************************************************************
391 *
392 * FUNCTION: acpi_ex_prep_field_value
393 *
Robert Moore44f6c012005-04-18 22:49:35 -0400394 * PARAMETERS: Info - Contains all field creation info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
396 * RETURN: Status
397 *
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +0100398 * DESCRIPTION: Construct a union acpi_operand_object of type def_field and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * connect it to the parent Node.
400 *
401 ******************************************************************************/
402
Len Brown4be44fc2005-08-05 00:44:28 -0400403acpi_status acpi_ex_prep_field_value(struct acpi_create_field_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Len Brown4be44fc2005-08-05 00:44:28 -0400405 union acpi_operand_object *obj_desc;
Lin Mingef805d92008-04-10 19:06:41 +0400406 union acpi_operand_object *second_desc = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400407 acpi_status status;
Bob Moore09387b42010-08-06 09:09:33 +0800408 u32 access_byte_width;
409 u32 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bob Mooreb229cf92006-04-21 17:15:00 -0400411 ACPI_FUNCTION_TRACE(ex_prep_field_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 /* Parameter validation */
414
415 if (info->field_type != ACPI_TYPE_LOCAL_INDEX_FIELD) {
416 if (!info->region_node) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400417 ACPI_ERROR((AE_INFO, "Null RegionNode"));
Len Brown4be44fc2005-08-05 00:44:28 -0400418 return_ACPI_STATUS(AE_AML_NO_OPERAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Len Brown4be44fc2005-08-05 00:44:28 -0400421 type = acpi_ns_get_type(info->region_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (type != ACPI_TYPE_REGION) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500423 ACPI_ERROR((AE_INFO,
Bob Moore09387b42010-08-06 09:09:33 +0800424 "Needed Region, found type 0x%X (%s)", type,
425 acpi_ut_get_type_name(type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Len Brown4be44fc2005-08-05 00:44:28 -0400427 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 }
430
431 /* Allocate a new field object */
432
Len Brown4be44fc2005-08-05 00:44:28 -0400433 obj_desc = acpi_ut_create_internal_object(info->field_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400435 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
438 /* Initialize areas of the object that are common to all fields */
439
440 obj_desc->common_field.node = info->field_node;
Bob Moore09387b42010-08-06 09:09:33 +0800441 status = acpi_ex_prep_common_field_object(obj_desc,
442 info->field_flags,
Len Brown4be44fc2005-08-05 00:44:28 -0400443 info->attribute,
444 info->field_bit_position,
445 info->field_bit_length);
446 if (ACPI_FAILURE(status)) {
447 acpi_ut_delete_object_desc(obj_desc);
448 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
451 /* Initialize areas of the object that are specific to the field type */
452
453 switch (info->field_type) {
454 case ACPI_TYPE_LOCAL_REGION_FIELD:
455
Len Brown4be44fc2005-08-05 00:44:28 -0400456 obj_desc->field.region_obj =
457 acpi_ns_get_attached_object(info->region_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Bob Moore9ce81782011-11-16 13:39:07 +0800459 /* Fields specific to generic_serial_bus fields */
460
461 obj_desc->field.access_length = info->access_length;
462
463 if (info->connection_node) {
464 second_desc = info->connection_node->object;
465 if (!(second_desc->common.flags & AOPOBJ_DATA_VALID)) {
466 status =
467 acpi_ds_get_buffer_arguments(second_desc);
468 if (ACPI_FAILURE(status)) {
469 acpi_ut_delete_object_desc(obj_desc);
470 return_ACPI_STATUS(status);
471 }
472 }
473
474 obj_desc->field.resource_buffer =
475 second_desc->buffer.pointer;
476 obj_desc->field.resource_length =
477 (u16)second_desc->buffer.length;
478 } else if (info->resource_buffer) {
479 obj_desc->field.resource_buffer = info->resource_buffer;
480 obj_desc->field.resource_length = info->resource_length;
481 }
482
Bob Moore09387b42010-08-06 09:09:33 +0800483 /* Allow full data read from EC address space */
484
485 if ((obj_desc->field.region_obj->region.space_id ==
486 ACPI_ADR_SPACE_EC)
487 && (obj_desc->common_field.bit_length > 8)) {
488 access_byte_width =
489 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.
490 bit_length);
491
492 /* Maximum byte width supported is 255 */
493
494 if (access_byte_width < 256) {
495 obj_desc->common_field.access_byte_width =
496 (u8)access_byte_width;
497 }
498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /* An additional reference for the container */
500
Len Brown4be44fc2005-08-05 00:44:28 -0400501 acpi_ut_add_reference(obj_desc->field.region_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Len Brown4be44fc2005-08-05 00:44:28 -0400503 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400504 "RegionField: BitOff %X, Off %X, Gran %X, Region %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400505 obj_desc->field.start_field_bit_offset,
506 obj_desc->field.base_byte_offset,
507 obj_desc->field.access_byte_width,
508 obj_desc->field.region_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 break;
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 case ACPI_TYPE_LOCAL_BANK_FIELD:
512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 obj_desc->bank_field.value = info->bank_value;
514 obj_desc->bank_field.region_obj =
515 acpi_ns_get_attached_object(info->region_node);
516 obj_desc->bank_field.bank_obj =
517 acpi_ns_get_attached_object(info->register_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 /* An additional reference for the attached objects */
520
Len Brown4be44fc2005-08-05 00:44:28 -0400521 acpi_ut_add_reference(obj_desc->bank_field.region_obj);
522 acpi_ut_add_reference(obj_desc->bank_field.bank_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Len Brown4be44fc2005-08-05 00:44:28 -0400524 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400525 "Bank Field: BitOff %X, Off %X, Gran %X, Region %p, BankReg %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400526 obj_desc->bank_field.start_field_bit_offset,
527 obj_desc->bank_field.base_byte_offset,
528 obj_desc->field.access_byte_width,
529 obj_desc->bank_field.region_obj,
530 obj_desc->bank_field.bank_obj));
Lin Mingef805d92008-04-10 19:06:41 +0400531
532 /*
533 * Remember location in AML stream of the field unit
534 * opcode and operands -- since the bank_value
535 * operands must be evaluated.
536 */
537 second_desc = obj_desc->common.next_object;
538 second_desc->extra.aml_start =
Bob Mooreb5243762008-06-10 13:44:48 +0800539 ACPI_CAST_PTR(union acpi_parse_object,
540 info->data_register_node)->named.data;
Lin Mingef805d92008-04-10 19:06:41 +0400541 second_desc->extra.aml_length =
Bob Mooreb5243762008-06-10 13:44:48 +0800542 ACPI_CAST_PTR(union acpi_parse_object,
543 info->data_register_node)->named.length;
Lin Mingef805d92008-04-10 19:06:41 +0400544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 case ACPI_TYPE_LOCAL_INDEX_FIELD:
548
Bob Mooreb8e4d892006-01-27 16:43:00 -0500549 /* Get the Index and Data registers */
550
Len Brown4be44fc2005-08-05 00:44:28 -0400551 obj_desc->index_field.index_obj =
552 acpi_ns_get_attached_object(info->register_node);
553 obj_desc->index_field.data_obj =
554 acpi_ns_get_attached_object(info->data_register_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Len Brown4be44fc2005-08-05 00:44:28 -0400556 if (!obj_desc->index_field.data_obj
557 || !obj_desc->index_field.index_obj) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500558 ACPI_ERROR((AE_INFO,
559 "Null Index Object during field prep"));
Len Brown4be44fc2005-08-05 00:44:28 -0400560 acpi_ut_delete_object_desc(obj_desc);
561 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 /* An additional reference for the attached objects */
565
Len Brown4be44fc2005-08-05 00:44:28 -0400566 acpi_ut_add_reference(obj_desc->index_field.data_obj);
567 acpi_ut_add_reference(obj_desc->index_field.index_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Bob Mooreb8e4d892006-01-27 16:43:00 -0500569 /*
Bob Mooreb229cf92006-04-21 17:15:00 -0400570 * April 2006: Changed to match MS behavior
Bob Mooreea936b72006-02-17 00:00:00 -0500571 *
Bob Mooreb8e4d892006-01-27 16:43:00 -0500572 * The value written to the Index register is the byte offset of the
Bob Mooreb229cf92006-04-21 17:15:00 -0400573 * target field in units of the granularity of the index_field
Bob Mooreea936b72006-02-17 00:00:00 -0500574 *
575 * Previously, the value was calculated as an index in terms of the
576 * width of the Data register, as below:
577 *
Bob Mooreb229cf92006-04-21 17:15:00 -0400578 * obj_desc->index_field.Value = (u32)
579 * (Info->field_bit_position / ACPI_MUL_8 (
580 * obj_desc->Field.access_byte_width));
581 *
582 * February 2006: Tried value as a byte offset:
583 * obj_desc->index_field.Value = (u32)
584 * ACPI_DIV_8 (Info->field_bit_position);
Bob Mooreb8e4d892006-01-27 16:43:00 -0500585 */
Bob Mooreea936b72006-02-17 00:00:00 -0500586 obj_desc->index_field.value =
Bob Mooreb229cf92006-04-21 17:15:00 -0400587 (u32) ACPI_ROUND_DOWN(ACPI_DIV_8(info->field_bit_position),
588 obj_desc->index_field.
589 access_byte_width);
Bob Mooreb8e4d892006-01-27 16:43:00 -0500590
Len Brown4be44fc2005-08-05 00:44:28 -0400591 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400592 "IndexField: BitOff %X, Off %X, Value %X, Gran %X, Index %p, Data %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400593 obj_desc->index_field.start_field_bit_offset,
594 obj_desc->index_field.base_byte_offset,
595 obj_desc->index_field.value,
596 obj_desc->field.access_byte_width,
597 obj_desc->index_field.index_obj,
598 obj_desc->index_field.data_obj));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 break;
600
601 default:
602 /* No other types should get here */
603 break;
604 }
605
606 /*
607 * Store the constructed descriptor (obj_desc) into the parent Node,
608 * preserving the current type of that named_obj.
609 */
Len Brown4be44fc2005-08-05 00:44:28 -0400610 status = acpi_ns_attach_object(info->field_node, obj_desc,
611 acpi_ns_get_type(info->field_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Len Brown4be44fc2005-08-05 00:44:28 -0400613 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400614 "Set NamedObj %p [%4.4s], ObjDesc %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400615 info->field_node,
616 acpi_ut_get_node_name(info->field_node), obj_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 /* Remove local reference to the object */
619
Len Brown4be44fc2005-08-05 00:44:28 -0400620 acpi_ut_remove_reference(obj_desc);
621 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}