]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/acpica/exprep.c
ACPICA: Update local C library module comments for ASCII table
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / acpica / exprep.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: exprep - ACPI AML (p-code) execution - field prep utilities
4 *
5 *****************************************************************************/
6
7/*
77848130 8 * Copyright (C) 2000 - 2012, Intel Corp.
1da177e4
LT
9 * 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
1da177e4 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acinterp.h"
47#include "amlcode.h"
48#include "acnamesp.h"
9ce81784 49#include "acdispat.h"
1da177e4 50
1da177e4 51#define _COMPONENT ACPI_EXECUTER
4be44fcd 52ACPI_MODULE_NAME("exprep")
1da177e4 53
44f6c012 54/* Local prototypes */
44f6c012 55static u32
4be44fcd
LB
56acpi_ex_decode_field_access(union acpi_operand_object *obj_desc,
57 u8 field_flags, u32 * return_byte_alignment);
1da177e4
LT
58
59#ifdef ACPI_UNDER_DEVELOPMENT
44f6c012
RM
60
61static u32
4be44fcd
LB
62acpi_ex_generate_access(u32 field_bit_offset,
63 u32 field_bit_length, u32 region_length);
44f6c012 64
1da177e4
LT
65/*******************************************************************************
66 *
67 * FUNCTION: acpi_ex_generate_access
68 *
69 * PARAMETERS: field_bit_offset - Start of field within parent region/buffer
70 * field_bit_length - Length of field in bits
71 * region_length - Length of parent in bytes
72 *
73 * RETURN: Field granularity (8, 16, 32 or 64) and
74 * byte_alignment (1, 2, 3, or 4)
75 *
76 * DESCRIPTION: Generate an optimal access width for fields defined with the
77 * any_acc keyword.
78 *
79 * NOTE: Need to have the region_length in order to check for boundary
80 * conditions (end-of-region). However, the region_length is a deferred
81 * operation. Therefore, to complete this implementation, the generation
82 * of this access width must be deferred until the region length has
83 * been evaluated.
84 *
85 ******************************************************************************/
86
87static u32
4be44fcd
LB
88acpi_ex_generate_access(u32 field_bit_offset,
89 u32 field_bit_length, u32 region_length)
1da177e4 90{
4be44fcd
LB
91 u32 field_byte_length;
92 u32 field_byte_offset;
93 u32 field_byte_end_offset;
94 u32 access_byte_width;
95 u32 field_start_offset;
96 u32 field_end_offset;
97 u32 minimum_access_width = 0xFFFFFFFF;
98 u32 minimum_accesses = 0xFFFFFFFF;
99 u32 accesses;
100
b229cf92 101 ACPI_FUNCTION_TRACE(ex_generate_access);
1da177e4
LT
102
103 /* Round Field start offset and length to "minimal" byte boundaries */
104
4be44fcd
LB
105 field_byte_offset = ACPI_DIV_8(ACPI_ROUND_DOWN(field_bit_offset, 8));
106 field_byte_end_offset = ACPI_DIV_8(ACPI_ROUND_UP(field_bit_length +
107 field_bit_offset, 8));
108 field_byte_length = field_byte_end_offset - field_byte_offset;
1da177e4 109
4be44fcd 110 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 111 "Bit length %u, Bit offset %u\n",
4be44fcd 112 field_bit_length, field_bit_offset));
44f6c012 113
4be44fcd 114 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 115 "Byte Length %u, Byte Offset %u, End Offset %u\n",
4be44fcd
LB
116 field_byte_length, field_byte_offset,
117 field_byte_end_offset));
1da177e4
LT
118
119 /*
120 * Iterative search for the maximum access width that is both aligned
121 * and does not go beyond the end of the region
122 *
123 * Start at byte_acc and work upwards to qword_acc max. (1,2,4,8 bytes)
124 */
4be44fcd
LB
125 for (access_byte_width = 1; access_byte_width <= 8;
126 access_byte_width <<= 1) {
1da177e4 127 /*
44f6c012
RM
128 * 1) Round end offset up to next access boundary and make sure that
129 * this does not go beyond the end of the parent region.
130 * 2) When the Access width is greater than the field_byte_length, we
131 * are done. (This does not optimize for the perfectly aligned
132 * case yet).
1da177e4 133 */
4be44fcd
LB
134 if (ACPI_ROUND_UP(field_byte_end_offset, access_byte_width) <=
135 region_length) {
44f6c012 136 field_start_offset =
4be44fcd
LB
137 ACPI_ROUND_DOWN(field_byte_offset,
138 access_byte_width) /
139 access_byte_width;
44f6c012
RM
140
141 field_end_offset =
4be44fcd
LB
142 ACPI_ROUND_UP((field_byte_length +
143 field_byte_offset),
144 access_byte_width) /
145 access_byte_width;
44f6c012
RM
146
147 accesses = field_end_offset - field_start_offset;
1da177e4 148
4be44fcd 149 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 150 "AccessWidth %u end is within region\n",
4be44fcd 151 access_byte_width));
44f6c012 152
4be44fcd 153 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 154 "Field Start %u, Field End %u -- requires %u accesses\n",
4be44fcd
LB
155 field_start_offset, field_end_offset,
156 accesses));
1da177e4
LT
157
158 /* Single access is optimal */
159
160 if (accesses <= 1) {
4be44fcd 161 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 162 "Entire field can be accessed with one operation of size %u\n",
4be44fcd
LB
163 access_byte_width));
164 return_VALUE(access_byte_width);
1da177e4
LT
165 }
166
167 /*
168 * Fits in the region, but requires more than one read/write.
169 * try the next wider access on next iteration
170 */
171 if (accesses < minimum_accesses) {
4be44fcd 172 minimum_accesses = accesses;
1da177e4
LT
173 minimum_access_width = access_byte_width;
174 }
4be44fcd
LB
175 } else {
176 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 177 "AccessWidth %u end is NOT within region\n",
4be44fcd 178 access_byte_width));
1da177e4 179 if (access_byte_width == 1) {
4be44fcd
LB
180 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
181 "Field goes beyond end-of-region!\n"));
1da177e4 182
44f6c012 183 /* Field does not fit in the region at all */
1da177e4 184
4be44fcd 185 return_VALUE(0);
44f6c012
RM
186 }
187
188 /*
189 * This width goes beyond the end-of-region, back off to
190 * previous access
191 */
4be44fcd 192 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b27d6597 193 "Backing off to previous optimal access width of %u\n",
4be44fcd
LB
194 minimum_access_width));
195 return_VALUE(minimum_access_width);
1da177e4
LT
196 }
197 }
198
44f6c012
RM
199 /*
200 * Could not read/write field with one operation,
201 * just use max access width
202 */
4be44fcd
LB
203 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
204 "Cannot access field in one operation, using width 8\n"));
205 return_VALUE(8);
1da177e4 206}
4be44fcd 207#endif /* ACPI_UNDER_DEVELOPMENT */
1da177e4
LT
208
209/*******************************************************************************
210 *
211 * FUNCTION: acpi_ex_decode_field_access
212 *
44f6c012
RM
213 * PARAMETERS: obj_desc - Field object
214 * field_flags - Encoded fieldflags (contains access bits)
215 * return_byte_alignment - Where the byte alignment is returned
1da177e4
LT
216 *
217 * RETURN: Field granularity (8, 16, 32 or 64) and
218 * byte_alignment (1, 2, 3, or 4)
219 *
220 * DESCRIPTION: Decode the access_type bits of a field definition.
221 *
222 ******************************************************************************/
223
224static u32
4be44fcd
LB
225acpi_ex_decode_field_access(union acpi_operand_object *obj_desc,
226 u8 field_flags, u32 * return_byte_alignment)
1da177e4 227{
4be44fcd
LB
228 u32 access;
229 u32 byte_alignment;
230 u32 bit_length;
1da177e4 231
b229cf92 232 ACPI_FUNCTION_TRACE(ex_decode_field_access);
1da177e4
LT
233
234 access = (field_flags & AML_FIELD_ACCESS_TYPE_MASK);
235
236 switch (access) {
237 case AML_FIELD_ACCESS_ANY:
238
239#ifdef ACPI_UNDER_DEVELOPMENT
44f6c012 240 byte_alignment =
4be44fcd
LB
241 acpi_ex_generate_access(obj_desc->common_field.
242 start_field_bit_offset,
243 obj_desc->common_field.bit_length,
244 0xFFFFFFFF
245 /* Temp until we pass region_length as parameter */
fd350943 246 );
1da177e4
LT
247 bit_length = byte_alignment * 8;
248#endif
249
250 byte_alignment = 1;
251 bit_length = 8;
252 break;
253
254 case AML_FIELD_ACCESS_BYTE:
4be44fcd 255 case AML_FIELD_ACCESS_BUFFER: /* ACPI 2.0 (SMBus Buffer) */
1da177e4 256 byte_alignment = 1;
4be44fcd 257 bit_length = 8;
1da177e4
LT
258 break;
259
260 case AML_FIELD_ACCESS_WORD:
261 byte_alignment = 2;
4be44fcd 262 bit_length = 16;
1da177e4
LT
263 break;
264
265 case AML_FIELD_ACCESS_DWORD:
266 byte_alignment = 4;
4be44fcd 267 bit_length = 32;
1da177e4
LT
268 break;
269
4be44fcd 270 case AML_FIELD_ACCESS_QWORD: /* ACPI 2.0 */
1da177e4 271 byte_alignment = 8;
4be44fcd 272 bit_length = 64;
1da177e4
LT
273 break;
274
275 default:
276 /* Invalid field access type */
277
f6a22b0b 278 ACPI_ERROR((AE_INFO, "Unknown field access type 0x%X", access));
50eca3eb 279 return_UINT32(0);
1da177e4
LT
280 }
281
3371c19c 282 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) {
1da177e4
LT
283 /*
284 * buffer_field access can be on any byte boundary, so the
285 * byte_alignment is always 1 byte -- regardless of any byte_alignment
286 * implied by the field access type.
287 */
288 byte_alignment = 1;
289 }
290
291 *return_byte_alignment = byte_alignment;
50eca3eb 292 return_UINT32(bit_length);
1da177e4
LT
293}
294
1da177e4
LT
295/*******************************************************************************
296 *
297 * FUNCTION: acpi_ex_prep_common_field_object
298 *
299 * PARAMETERS: obj_desc - The field object
300 * field_flags - Access, lock_rule, and update_rule.
301 * The format of a field_flag is described
302 * in the ACPI specification
44f6c012 303 * field_attribute - Special attributes (not used)
1da177e4
LT
304 * field_bit_position - Field start position
305 * field_bit_length - Field length in number of bits
306 *
307 * RETURN: Status
308 *
309 * DESCRIPTION: Initialize the areas of the field object that are common
310 * to the various types of fields. Note: This is very "sensitive"
311 * code because we are solving the general case for field
312 * alignment.
313 *
314 ******************************************************************************/
315
316acpi_status
4be44fcd
LB
317acpi_ex_prep_common_field_object(union acpi_operand_object *obj_desc,
318 u8 field_flags,
319 u8 field_attribute,
320 u32 field_bit_position, u32 field_bit_length)
1da177e4 321{
4be44fcd
LB
322 u32 access_bit_width;
323 u32 byte_alignment;
324 u32 nearest_byte_address;
1da177e4 325
b229cf92 326 ACPI_FUNCTION_TRACE(ex_prep_common_field_object);
1da177e4
LT
327
328 /*
329 * Note: the structure being initialized is the
330 * ACPI_COMMON_FIELD_INFO; No structure fields outside of the common
331 * area are initialized by this procedure.
332 */
333 obj_desc->common_field.field_flags = field_flags;
334 obj_desc->common_field.attribute = field_attribute;
335 obj_desc->common_field.bit_length = field_bit_length;
336
337 /*
338 * Decode the access type so we can compute offsets. The access type gives
339 * two pieces of information - the width of each field access and the
340 * necessary byte_alignment (address granularity) of the access.
341 *
342 * For any_acc, the access_bit_width is the largest width that is both
343 * necessary and possible in an attempt to access the whole field in one
344 * I/O operation. However, for any_acc, the byte_alignment is always one
345 * byte.
346 *
347 * For all Buffer Fields, the byte_alignment is always one byte.
348 *
349 * For all other access types (Byte, Word, Dword, Qword), the Bitwidth is
350 * the same (equivalent) as the byte_alignment.
351 */
4be44fcd
LB
352 access_bit_width = acpi_ex_decode_field_access(obj_desc, field_flags,
353 &byte_alignment);
1da177e4 354 if (!access_bit_width) {
4be44fcd 355 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
1da177e4
LT
356 }
357
09387b43 358 /* Setup width (access granularity) fields (values are: 1, 2, 4, 8) */
1da177e4
LT
359
360 obj_desc->common_field.access_byte_width = (u8)
09387b43 361 ACPI_DIV_8(access_bit_width);
1da177e4
LT
362
363 /*
364 * base_byte_offset is the address of the start of the field within the
365 * region. It is the byte address of the first *datum* (field-width data
366 * unit) of the field. (i.e., the first datum that contains at least the
367 * first *bit* of the field.)
368 *
369 * Note: byte_alignment is always either equal to the access_bit_width or 8
370 * (Byte access), and it defines the addressing granularity of the parent
371 * region or buffer.
372 */
373 nearest_byte_address =
4be44fcd 374 ACPI_ROUND_BITS_DOWN_TO_BYTES(field_bit_position);
1da177e4 375 obj_desc->common_field.base_byte_offset = (u32)
4be44fcd 376 ACPI_ROUND_DOWN(nearest_byte_address, byte_alignment);
1da177e4
LT
377
378 /*
379 * start_field_bit_offset is the offset of the first bit of the field within
380 * a field datum.
381 */
382 obj_desc->common_field.start_field_bit_offset = (u8)
4be44fcd
LB
383 (field_bit_position -
384 ACPI_MUL_8(obj_desc->common_field.base_byte_offset));
1da177e4 385
4be44fcd 386 return_ACPI_STATUS(AE_OK);
1da177e4
LT
387}
388
1da177e4
LT
389/*******************************************************************************
390 *
391 * FUNCTION: acpi_ex_prep_field_value
392 *
ba494bee 393 * PARAMETERS: info - Contains all field creation info
1da177e4
LT
394 *
395 * RETURN: Status
396 *
cf48958e
BM
397 * DESCRIPTION: Construct an object of type union acpi_operand_object with a
398 * subtype of def_field and connect it to the parent Node.
1da177e4
LT
399 *
400 ******************************************************************************/
401
4be44fcd 402acpi_status acpi_ex_prep_field_value(struct acpi_create_field_info *info)
1da177e4 403{
4be44fcd 404 union acpi_operand_object *obj_desc;
ef805d95 405 union acpi_operand_object *second_desc = NULL;
4be44fcd 406 acpi_status status;
09387b43
BM
407 u32 access_byte_width;
408 u32 type;
1da177e4 409
b229cf92 410 ACPI_FUNCTION_TRACE(ex_prep_field_value);
1da177e4
LT
411
412 /* Parameter validation */
413
414 if (info->field_type != ACPI_TYPE_LOCAL_INDEX_FIELD) {
415 if (!info->region_node) {
b229cf92 416 ACPI_ERROR((AE_INFO, "Null RegionNode"));
4be44fcd 417 return_ACPI_STATUS(AE_AML_NO_OPERAND);
1da177e4
LT
418 }
419
4be44fcd 420 type = acpi_ns_get_type(info->region_node);
1da177e4 421 if (type != ACPI_TYPE_REGION) {
b8e4d893 422 ACPI_ERROR((AE_INFO,
09387b43
BM
423 "Needed Region, found type 0x%X (%s)", type,
424 acpi_ut_get_type_name(type)));
1da177e4 425
4be44fcd 426 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
1da177e4
LT
427 }
428 }
429
430 /* Allocate a new field object */
431
4be44fcd 432 obj_desc = acpi_ut_create_internal_object(info->field_type);
1da177e4 433 if (!obj_desc) {
4be44fcd 434 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
435 }
436
437 /* Initialize areas of the object that are common to all fields */
438
439 obj_desc->common_field.node = info->field_node;
09387b43
BM
440 status = acpi_ex_prep_common_field_object(obj_desc,
441 info->field_flags,
4be44fcd
LB
442 info->attribute,
443 info->field_bit_position,
444 info->field_bit_length);
445 if (ACPI_FAILURE(status)) {
446 acpi_ut_delete_object_desc(obj_desc);
447 return_ACPI_STATUS(status);
1da177e4
LT
448 }
449
450 /* Initialize areas of the object that are specific to the field type */
451
452 switch (info->field_type) {
453 case ACPI_TYPE_LOCAL_REGION_FIELD:
454
4be44fcd
LB
455 obj_desc->field.region_obj =
456 acpi_ns_get_attached_object(info->region_node);
1da177e4 457
9ce81784
BM
458 /* Fields specific to generic_serial_bus fields */
459
460 obj_desc->field.access_length = info->access_length;
461
462 if (info->connection_node) {
463 second_desc = info->connection_node->object;
464 if (!(second_desc->common.flags & AOPOBJ_DATA_VALID)) {
465 status =
466 acpi_ds_get_buffer_arguments(second_desc);
467 if (ACPI_FAILURE(status)) {
468 acpi_ut_delete_object_desc(obj_desc);
469 return_ACPI_STATUS(status);
470 }
471 }
472
473 obj_desc->field.resource_buffer =
474 second_desc->buffer.pointer;
475 obj_desc->field.resource_length =
476 (u16)second_desc->buffer.length;
477 } else if (info->resource_buffer) {
478 obj_desc->field.resource_buffer = info->resource_buffer;
479 obj_desc->field.resource_length = info->resource_length;
480 }
481
09387b43 482 /* Allow full data read from EC address space */
1da177e4 483
09387b43
BM
484 if ((obj_desc->field.region_obj->region.space_id ==
485 ACPI_ADR_SPACE_EC)
486 && (obj_desc->common_field.bit_length > 8)) {
487 access_byte_width =
488 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.
489 bit_length);
490
491 /* Maximum byte width supported is 255 */
1da177e4 492
09387b43 493 if (access_byte_width < 256) {
dadf28a1 494 obj_desc->common_field.access_byte_width =
09387b43 495 (u8)access_byte_width;
2060c445 496 }
dadf28a1 497 }
09387b43
BM
498 /* An additional reference for the container */
499
500 acpi_ut_add_reference(obj_desc->field.region_obj);
dadf28a1 501
4be44fcd 502 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b229cf92 503 "RegionField: BitOff %X, Off %X, Gran %X, Region %p\n",
4be44fcd
LB
504 obj_desc->field.start_field_bit_offset,
505 obj_desc->field.base_byte_offset,
506 obj_desc->field.access_byte_width,
507 obj_desc->field.region_obj));
1da177e4
LT
508 break;
509
1da177e4
LT
510 case ACPI_TYPE_LOCAL_BANK_FIELD:
511
4be44fcd
LB
512 obj_desc->bank_field.value = info->bank_value;
513 obj_desc->bank_field.region_obj =
514 acpi_ns_get_attached_object(info->region_node);
515 obj_desc->bank_field.bank_obj =
516 acpi_ns_get_attached_object(info->register_node);
1da177e4
LT
517
518 /* An additional reference for the attached objects */
519
4be44fcd
LB
520 acpi_ut_add_reference(obj_desc->bank_field.region_obj);
521 acpi_ut_add_reference(obj_desc->bank_field.bank_obj);
1da177e4 522
4be44fcd 523 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b229cf92 524 "Bank Field: BitOff %X, Off %X, Gran %X, Region %p, BankReg %p\n",
4be44fcd
LB
525 obj_desc->bank_field.start_field_bit_offset,
526 obj_desc->bank_field.base_byte_offset,
527 obj_desc->field.access_byte_width,
528 obj_desc->bank_field.region_obj,
529 obj_desc->bank_field.bank_obj));
ef805d95
LM
530
531 /*
532 * Remember location in AML stream of the field unit
533 * opcode and operands -- since the bank_value
534 * operands must be evaluated.
535 */
536 second_desc = obj_desc->common.next_object;
537 second_desc->extra.aml_start =
b5243764
BM
538 ACPI_CAST_PTR(union acpi_parse_object,
539 info->data_register_node)->named.data;
ef805d95 540 second_desc->extra.aml_length =
b5243764
BM
541 ACPI_CAST_PTR(union acpi_parse_object,
542 info->data_register_node)->named.length;
ef805d95 543
1da177e4
LT
544 break;
545
1da177e4
LT
546 case ACPI_TYPE_LOCAL_INDEX_FIELD:
547
b8e4d893
BM
548 /* Get the Index and Data registers */
549
4be44fcd
LB
550 obj_desc->index_field.index_obj =
551 acpi_ns_get_attached_object(info->register_node);
552 obj_desc->index_field.data_obj =
553 acpi_ns_get_attached_object(info->data_register_node);
4be44fcd
LB
554
555 if (!obj_desc->index_field.data_obj
556 || !obj_desc->index_field.index_obj) {
b8e4d893
BM
557 ACPI_ERROR((AE_INFO,
558 "Null Index Object during field prep"));
4be44fcd
LB
559 acpi_ut_delete_object_desc(obj_desc);
560 return_ACPI_STATUS(AE_AML_INTERNAL);
1da177e4
LT
561 }
562
563 /* An additional reference for the attached objects */
564
4be44fcd
LB
565 acpi_ut_add_reference(obj_desc->index_field.data_obj);
566 acpi_ut_add_reference(obj_desc->index_field.index_obj);
567
b8e4d893 568 /*
b229cf92 569 * April 2006: Changed to match MS behavior
ea936b78 570 *
b8e4d893 571 * The value written to the Index register is the byte offset of the
b229cf92 572 * target field in units of the granularity of the index_field
ea936b78
BM
573 *
574 * Previously, the value was calculated as an index in terms of the
575 * width of the Data register, as below:
576 *
b229cf92
BM
577 * obj_desc->index_field.Value = (u32)
578 * (Info->field_bit_position / ACPI_MUL_8 (
579 * obj_desc->Field.access_byte_width));
580 *
581 * February 2006: Tried value as a byte offset:
582 * obj_desc->index_field.Value = (u32)
583 * ACPI_DIV_8 (Info->field_bit_position);
b8e4d893 584 */
ea936b78 585 obj_desc->index_field.value =
b229cf92
BM
586 (u32) ACPI_ROUND_DOWN(ACPI_DIV_8(info->field_bit_position),
587 obj_desc->index_field.
588 access_byte_width);
b8e4d893 589
4be44fcd 590 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b229cf92 591 "IndexField: BitOff %X, Off %X, Value %X, Gran %X, Index %p, Data %p\n",
4be44fcd
LB
592 obj_desc->index_field.start_field_bit_offset,
593 obj_desc->index_field.base_byte_offset,
594 obj_desc->index_field.value,
595 obj_desc->field.access_byte_width,
596 obj_desc->index_field.index_obj,
597 obj_desc->index_field.data_obj));
1da177e4
LT
598 break;
599
600 default:
601 /* No other types should get here */
602 break;
603 }
604
605 /*
606 * Store the constructed descriptor (obj_desc) into the parent Node,
607 * preserving the current type of that named_obj.
608 */
4be44fcd
LB
609 status = acpi_ns_attach_object(info->field_node, obj_desc,
610 acpi_ns_get_type(info->field_node));
1da177e4 611
4be44fcd 612 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
b229cf92 613 "Set NamedObj %p [%4.4s], ObjDesc %p\n",
4be44fcd
LB
614 info->field_node,
615 acpi_ut_get_node_name(info->field_node), obj_desc));
1da177e4
LT
616
617 /* Remove local reference to the object */
618
4be44fcd
LB
619 acpi_ut_remove_reference(obj_desc);
620 return_ACPI_STATUS(status);
1da177e4 621}