1 /******************************************************************************
3 * Module Name: exfldio - Aml Field I/O
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2008, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
51 #define _COMPONENT ACPI_EXECUTER
52 ACPI_MODULE_NAME("exfldio")
54 /* Local prototypes */
56 acpi_ex_field_datum_io(union acpi_operand_object
*obj_desc
,
57 u32 field_datum_byte_offset
,
58 acpi_integer
* value
, u32 read_write
);
61 acpi_ex_register_overflow(union acpi_operand_object
*obj_desc
,
65 acpi_ex_setup_region(union acpi_operand_object
*obj_desc
,
66 u32 field_datum_byte_offset
);
68 /*******************************************************************************
70 * FUNCTION: acpi_ex_setup_region
72 * PARAMETERS: obj_desc - Field to be read or written
73 * field_datum_byte_offset - Byte offset of this datum within the
78 * DESCRIPTION: Common processing for acpi_ex_extract_from_field and
79 * acpi_ex_insert_into_field. Initialize the Region if necessary and
80 * validate the request.
82 ******************************************************************************/
85 acpi_ex_setup_region(union acpi_operand_object
*obj_desc
,
86 u32 field_datum_byte_offset
)
88 acpi_status status
= AE_OK
;
89 union acpi_operand_object
*rgn_desc
;
91 ACPI_FUNCTION_TRACE_U32(ex_setup_region
, field_datum_byte_offset
);
93 rgn_desc
= obj_desc
->common_field
.region_obj
;
95 /* We must have a valid region */
97 if (rgn_desc
->common
.type
!= ACPI_TYPE_REGION
) {
98 ACPI_ERROR((AE_INFO
, "Needed Region, found type %X (%s)",
99 rgn_desc
->common
.type
,
100 acpi_ut_get_object_type_name(rgn_desc
)));
102 return_ACPI_STATUS(AE_AML_OPERAND_TYPE
);
106 * If the Region Address and Length have not been previously evaluated,
107 * evaluate them now and save the results.
109 if (!(rgn_desc
->common
.flags
& AOPOBJ_DATA_VALID
)) {
110 status
= acpi_ds_get_region_arguments(rgn_desc
);
111 if (ACPI_FAILURE(status
)) {
112 return_ACPI_STATUS(status
);
116 /* Exit if Address/Length have been disallowed by the host OS */
118 if (rgn_desc
->common
.flags
& AOPOBJ_INVALID
) {
119 return_ACPI_STATUS(AE_AML_ILLEGAL_ADDRESS
);
123 * Exit now for SMBus address space, it has a non-linear address space
124 * and the request cannot be directly validated
126 if (rgn_desc
->region
.space_id
== ACPI_ADR_SPACE_SMBUS
) {
128 /* SMBus has a non-linear address space */
130 return_ACPI_STATUS(AE_OK
);
132 #ifdef ACPI_UNDER_DEVELOPMENT
134 * If the Field access is any_acc, we can now compute the optimal
135 * access (because we know know the length of the parent region)
137 if (!(obj_desc
->common
.flags
& AOPOBJ_DATA_VALID
)) {
138 if (ACPI_FAILURE(status
)) {
139 return_ACPI_STATUS(status
);
145 * Validate the request. The entire request from the byte offset for a
146 * length of one field datum (access width) must fit within the region.
147 * (Region length is specified in bytes)
149 if (rgn_desc
->region
.length
<
150 (obj_desc
->common_field
.base_byte_offset
+
151 field_datum_byte_offset
+
152 obj_desc
->common_field
.access_byte_width
)) {
153 if (acpi_gbl_enable_interpreter_slack
) {
155 * Slack mode only: We will go ahead and allow access to this
156 * field if it is within the region length rounded up to the next
157 * access width boundary. acpi_size cast for 64-bit compile.
159 if (ACPI_ROUND_UP(rgn_desc
->region
.length
,
160 obj_desc
->common_field
.
161 access_byte_width
) >=
162 ((acpi_size
) obj_desc
->common_field
.
164 obj_desc
->common_field
.access_byte_width
+
165 field_datum_byte_offset
)) {
166 return_ACPI_STATUS(AE_OK
);
170 if (rgn_desc
->region
.length
<
171 obj_desc
->common_field
.access_byte_width
) {
173 * This is the case where the access_type (acc_word, etc.) is wider
174 * than the region itself. For example, a region of length one
175 * byte, and a field with Dword access specified.
178 "Field [%4.4s] access width (%d bytes) too large for region [%4.4s] (length %X)",
179 acpi_ut_get_node_name(obj_desc
->
181 obj_desc
->common_field
.access_byte_width
,
182 acpi_ut_get_node_name(rgn_desc
->region
.
184 rgn_desc
->region
.length
));
188 * Offset rounded up to next multiple of field width
189 * exceeds region length, indicate an error
192 "Field [%4.4s] Base+Offset+Width %X+%X+%X is beyond end of region [%4.4s] (length %X)",
193 acpi_ut_get_node_name(obj_desc
->common_field
.node
),
194 obj_desc
->common_field
.base_byte_offset
,
195 field_datum_byte_offset
,
196 obj_desc
->common_field
.access_byte_width
,
197 acpi_ut_get_node_name(rgn_desc
->region
.node
),
198 rgn_desc
->region
.length
));
200 return_ACPI_STATUS(AE_AML_REGION_LIMIT
);
203 return_ACPI_STATUS(AE_OK
);
206 /*******************************************************************************
208 * FUNCTION: acpi_ex_access_region
210 * PARAMETERS: obj_desc - Field to be read
211 * field_datum_byte_offset - Byte offset of this datum within the
213 * Value - Where to store value (must at least
214 * the size of acpi_integer)
215 * Function - Read or Write flag plus other region-
220 * DESCRIPTION: Read or Write a single field datum to an Operation Region.
222 ******************************************************************************/
225 acpi_ex_access_region(union acpi_operand_object
*obj_desc
,
226 u32 field_datum_byte_offset
,
227 acpi_integer
* value
, u32 function
)
230 union acpi_operand_object
*rgn_desc
;
233 ACPI_FUNCTION_TRACE(ex_access_region
);
236 * Ensure that the region operands are fully evaluated and verify
237 * the validity of the request
239 status
= acpi_ex_setup_region(obj_desc
, field_datum_byte_offset
);
240 if (ACPI_FAILURE(status
)) {
241 return_ACPI_STATUS(status
);
245 * The physical address of this field datum is:
247 * 1) The base of the region, plus
248 * 2) The base offset of the field, plus
249 * 3) The current offset into the field
251 rgn_desc
= obj_desc
->common_field
.region_obj
;
253 obj_desc
->common_field
.base_byte_offset
+ field_datum_byte_offset
;
255 if ((function
& ACPI_IO_MASK
) == ACPI_READ
) {
256 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
, "[READ]"));
258 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
, "[WRITE]"));
261 ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD
,
262 " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %p\n",
263 acpi_ut_get_region_name(rgn_desc
->region
.
265 rgn_desc
->region
.space_id
,
266 obj_desc
->common_field
.access_byte_width
,
267 obj_desc
->common_field
.base_byte_offset
,
268 field_datum_byte_offset
, ACPI_CAST_PTR(void,
274 /* Invoke the appropriate address_space/op_region handler */
277 acpi_ev_address_space_dispatch(rgn_desc
, function
, region_offset
,
278 ACPI_MUL_8(obj_desc
->common_field
.
282 if (ACPI_FAILURE(status
)) {
283 if (status
== AE_NOT_IMPLEMENTED
) {
285 "Region %s(%X) not implemented",
286 acpi_ut_get_region_name(rgn_desc
->region
.
288 rgn_desc
->region
.space_id
));
289 } else if (status
== AE_NOT_EXIST
) {
291 "Region %s(%X) has no handler",
292 acpi_ut_get_region_name(rgn_desc
->region
.
294 rgn_desc
->region
.space_id
));
298 return_ACPI_STATUS(status
);
301 /*******************************************************************************
303 * FUNCTION: acpi_ex_register_overflow
305 * PARAMETERS: obj_desc - Register(Field) to be written
306 * Value - Value to be stored
308 * RETURN: TRUE if value overflows the field, FALSE otherwise
310 * DESCRIPTION: Check if a value is out of range of the field being written.
311 * Used to check if the values written to Index and Bank registers
312 * are out of range. Normally, the value is simply truncated
313 * to fit the field, but this case is most likely a serious
314 * coding error in the ASL.
316 ******************************************************************************/
319 acpi_ex_register_overflow(union acpi_operand_object
*obj_desc
,
323 if (obj_desc
->common_field
.bit_length
>= ACPI_INTEGER_BIT_SIZE
) {
325 * The field is large enough to hold the maximum integer, so we can
331 if (value
>= ((acpi_integer
) 1 << obj_desc
->common_field
.bit_length
)) {
333 * The Value is larger than the maximum value that can fit into
339 /* The Value will fit into the field with no truncation */
344 /*******************************************************************************
346 * FUNCTION: acpi_ex_field_datum_io
348 * PARAMETERS: obj_desc - Field to be read
349 * field_datum_byte_offset - Byte offset of this datum within the
351 * Value - Where to store value (must be 64 bits)
352 * read_write - Read or Write flag
356 * DESCRIPTION: Read or Write a single datum of a field. The field_type is
357 * demultiplexed here to handle the different types of fields
358 * (buffer_field, region_field, index_field, bank_field)
360 ******************************************************************************/
363 acpi_ex_field_datum_io(union acpi_operand_object
*obj_desc
,
364 u32 field_datum_byte_offset
,
365 acpi_integer
* value
, u32 read_write
)
368 acpi_integer local_value
;
370 ACPI_FUNCTION_TRACE_U32(ex_field_datum_io
, field_datum_byte_offset
);
372 if (read_write
== ACPI_READ
) {
376 /* To support reads without saving return value */
377 value
= &local_value
;
380 /* Clear the entire return buffer first, [Very Important!] */
386 * The four types of fields are:
388 * buffer_field - Read/write from/to a Buffer
389 * region_field - Read/write from/to a Operation Region.
390 * bank_field - Write to a Bank Register, then read/write from/to an
392 * index_field - Write to an Index Register, then read/write from/to a
395 switch (obj_desc
->common
.type
) {
396 case ACPI_TYPE_BUFFER_FIELD
:
398 * If the buffer_field arguments have not been previously evaluated,
399 * evaluate them now and save the results.
401 if (!(obj_desc
->common
.flags
& AOPOBJ_DATA_VALID
)) {
402 status
= acpi_ds_get_buffer_field_arguments(obj_desc
);
403 if (ACPI_FAILURE(status
)) {
404 return_ACPI_STATUS(status
);
408 if (read_write
== ACPI_READ
) {
410 * Copy the data from the source buffer.
411 * Length is the field width in bytes.
414 (obj_desc
->buffer_field
.buffer_obj
)->buffer
.
416 obj_desc
->buffer_field
.base_byte_offset
+
417 field_datum_byte_offset
,
418 obj_desc
->common_field
.access_byte_width
);
421 * Copy the data to the target buffer.
422 * Length is the field width in bytes.
424 ACPI_MEMCPY((obj_desc
->buffer_field
.buffer_obj
)->buffer
.
426 obj_desc
->buffer_field
.base_byte_offset
+
427 field_datum_byte_offset
, value
,
428 obj_desc
->common_field
.access_byte_width
);
434 case ACPI_TYPE_LOCAL_BANK_FIELD
:
437 * Ensure that the bank_value is not beyond the capacity of
440 if (acpi_ex_register_overflow(obj_desc
->bank_field
.bank_obj
,
441 (acpi_integer
) obj_desc
->
443 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT
);
447 * For bank_fields, we must write the bank_value to the bank_register
448 * (itself a region_field) before we can access the data.
451 acpi_ex_insert_into_field(obj_desc
->bank_field
.bank_obj
,
452 &obj_desc
->bank_field
.value
,
453 sizeof(obj_desc
->bank_field
.
455 if (ACPI_FAILURE(status
)) {
456 return_ACPI_STATUS(status
);
460 * Now that the Bank has been selected, fall through to the
461 * region_field case and write the datum to the Operation Region
464 /*lint -fallthrough */
466 case ACPI_TYPE_LOCAL_REGION_FIELD
:
468 * For simple region_fields, we just directly access the owning
472 acpi_ex_access_region(obj_desc
, field_datum_byte_offset
,
476 case ACPI_TYPE_LOCAL_INDEX_FIELD
:
479 * Ensure that the index_value is not beyond the capacity of
482 if (acpi_ex_register_overflow(obj_desc
->index_field
.index_obj
,
483 (acpi_integer
) obj_desc
->
484 index_field
.value
)) {
485 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT
);
488 /* Write the index value to the index_register (itself a region_field) */
490 field_datum_byte_offset
+= obj_desc
->index_field
.value
;
492 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
493 "Write to Index Register: Value %8.8X\n",
494 field_datum_byte_offset
));
497 acpi_ex_insert_into_field(obj_desc
->index_field
.index_obj
,
498 &field_datum_byte_offset
,
499 sizeof(field_datum_byte_offset
));
500 if (ACPI_FAILURE(status
)) {
501 return_ACPI_STATUS(status
);
504 if (read_write
== ACPI_READ
) {
506 /* Read the datum from the data_register */
508 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
509 "Read from Data Register\n"));
512 acpi_ex_extract_from_field(obj_desc
->index_field
.
514 sizeof(acpi_integer
));
516 /* Write the datum to the data_register */
518 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
519 "Write to Data Register: Value %8.8X%8.8X\n",
520 ACPI_FORMAT_UINT64(*value
)));
523 acpi_ex_insert_into_field(obj_desc
->index_field
.
525 sizeof(acpi_integer
));
531 ACPI_ERROR((AE_INFO
, "Wrong object type in field I/O %X",
532 obj_desc
->common
.type
));
533 status
= AE_AML_INTERNAL
;
537 if (ACPI_SUCCESS(status
)) {
538 if (read_write
== ACPI_READ
) {
539 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
540 "Value Read %8.8X%8.8X, Width %d\n",
541 ACPI_FORMAT_UINT64(*value
),
542 obj_desc
->common_field
.
545 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
546 "Value Written %8.8X%8.8X, Width %d\n",
547 ACPI_FORMAT_UINT64(*value
),
548 obj_desc
->common_field
.
553 return_ACPI_STATUS(status
);
556 /*******************************************************************************
558 * FUNCTION: acpi_ex_write_with_update_rule
560 * PARAMETERS: obj_desc - Field to be written
561 * Mask - bitmask within field datum
562 * field_value - Value to write
563 * field_datum_byte_offset - Offset of datum within field
567 * DESCRIPTION: Apply the field update rule to a field write
569 ******************************************************************************/
572 acpi_ex_write_with_update_rule(union acpi_operand_object
*obj_desc
,
574 acpi_integer field_value
,
575 u32 field_datum_byte_offset
)
577 acpi_status status
= AE_OK
;
578 acpi_integer merged_value
;
579 acpi_integer current_value
;
581 ACPI_FUNCTION_TRACE_U32(ex_write_with_update_rule
, mask
);
583 /* Start with the new bits */
585 merged_value
= field_value
;
587 /* If the mask is all ones, we don't need to worry about the update rule */
589 if (mask
!= ACPI_INTEGER_MAX
) {
591 /* Decode the update rule */
593 switch (obj_desc
->common_field
.
594 field_flags
& AML_FIELD_UPDATE_RULE_MASK
) {
595 case AML_FIELD_UPDATE_PRESERVE
:
597 * Check if update rule needs to be applied (not if mask is all
598 * ones) The left shift drops the bits we want to ignore.
600 if ((~mask
<< (ACPI_MUL_8(sizeof(mask
)) -
601 ACPI_MUL_8(obj_desc
->common_field
.
602 access_byte_width
))) != 0) {
604 * Read the current contents of the byte/word/dword containing
605 * the field, and merge with the new field value.
608 acpi_ex_field_datum_io(obj_desc
,
609 field_datum_byte_offset
,
612 if (ACPI_FAILURE(status
)) {
613 return_ACPI_STATUS(status
);
616 merged_value
|= (current_value
& ~mask
);
620 case AML_FIELD_UPDATE_WRITE_AS_ONES
:
622 /* Set positions outside the field to all ones */
624 merged_value
|= ~mask
;
627 case AML_FIELD_UPDATE_WRITE_AS_ZEROS
:
629 /* Set positions outside the field to all zeros */
631 merged_value
&= mask
;
637 "Unknown UpdateRule value: %X",
638 (obj_desc
->common_field
.
640 AML_FIELD_UPDATE_RULE_MASK
)));
641 return_ACPI_STATUS(AE_AML_OPERAND_VALUE
);
645 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
646 "Mask %8.8X%8.8X, DatumOffset %X, Width %X, Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n",
647 ACPI_FORMAT_UINT64(mask
),
648 field_datum_byte_offset
,
649 obj_desc
->common_field
.access_byte_width
,
650 ACPI_FORMAT_UINT64(field_value
),
651 ACPI_FORMAT_UINT64(merged_value
)));
653 /* Write the merged value */
655 status
= acpi_ex_field_datum_io(obj_desc
, field_datum_byte_offset
,
656 &merged_value
, ACPI_WRITE
);
658 return_ACPI_STATUS(status
);
661 /*******************************************************************************
663 * FUNCTION: acpi_ex_extract_from_field
665 * PARAMETERS: obj_desc - Field to be read
666 * Buffer - Where to store the field data
667 * buffer_length - Length of Buffer
671 * DESCRIPTION: Retrieve the current value of the given field
673 ******************************************************************************/
676 acpi_ex_extract_from_field(union acpi_operand_object
*obj_desc
,
677 void *buffer
, u32 buffer_length
)
680 acpi_integer raw_datum
;
681 acpi_integer merged_datum
;
682 u32 field_offset
= 0;
683 u32 buffer_offset
= 0;
684 u32 buffer_tail_bits
;
686 u32 field_datum_count
;
689 ACPI_FUNCTION_TRACE(ex_extract_from_field
);
691 /* Validate target buffer and clear it */
694 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc
->common_field
.bit_length
)) {
696 "Field size %X (bits) is too large for buffer (%X)",
697 obj_desc
->common_field
.bit_length
, buffer_length
));
699 return_ACPI_STATUS(AE_BUFFER_OVERFLOW
);
701 ACPI_MEMSET(buffer
, 0, buffer_length
);
703 /* Compute the number of datums (access width data items) */
705 datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
,
706 obj_desc
->common_field
.access_bit_width
);
707 field_datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
+
708 obj_desc
->common_field
.
709 start_field_bit_offset
,
710 obj_desc
->common_field
.
713 /* Priming read from the field */
716 acpi_ex_field_datum_io(obj_desc
, field_offset
, &raw_datum
,
718 if (ACPI_FAILURE(status
)) {
719 return_ACPI_STATUS(status
);
722 raw_datum
>> obj_desc
->common_field
.start_field_bit_offset
;
724 /* Read the rest of the field */
726 for (i
= 1; i
< field_datum_count
; i
++) {
728 /* Get next input datum from the field */
730 field_offset
+= obj_desc
->common_field
.access_byte_width
;
731 status
= acpi_ex_field_datum_io(obj_desc
, field_offset
,
732 &raw_datum
, ACPI_READ
);
733 if (ACPI_FAILURE(status
)) {
734 return_ACPI_STATUS(status
);
738 * Merge with previous datum if necessary.
740 * Note: Before the shift, check if the shift value will be larger than
741 * the integer size. If so, there is no need to perform the operation.
742 * This avoids the differences in behavior between different compilers
743 * concerning shift values larger than the target data width.
745 if ((obj_desc
->common_field
.access_bit_width
-
746 obj_desc
->common_field
.start_field_bit_offset
) <
747 ACPI_INTEGER_BIT_SIZE
) {
749 raw_datum
<< (obj_desc
->common_field
.
751 obj_desc
->common_field
.
752 start_field_bit_offset
);
755 if (i
== datum_count
) {
759 /* Write merged datum to target buffer */
761 ACPI_MEMCPY(((char *)buffer
) + buffer_offset
, &merged_datum
,
762 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
763 buffer_length
- buffer_offset
));
765 buffer_offset
+= obj_desc
->common_field
.access_byte_width
;
767 raw_datum
>> obj_desc
->common_field
.start_field_bit_offset
;
770 /* Mask off any extra bits in the last datum */
772 buffer_tail_bits
= obj_desc
->common_field
.bit_length
%
773 obj_desc
->common_field
.access_bit_width
;
774 if (buffer_tail_bits
) {
775 merged_datum
&= ACPI_MASK_BITS_ABOVE(buffer_tail_bits
);
778 /* Write the last datum to the buffer */
780 ACPI_MEMCPY(((char *)buffer
) + buffer_offset
, &merged_datum
,
781 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
782 buffer_length
- buffer_offset
));
784 return_ACPI_STATUS(AE_OK
);
787 /*******************************************************************************
789 * FUNCTION: acpi_ex_insert_into_field
791 * PARAMETERS: obj_desc - Field to be written
792 * Buffer - Data to be written
793 * buffer_length - Length of Buffer
797 * DESCRIPTION: Store the Buffer contents into the given field
799 ******************************************************************************/
802 acpi_ex_insert_into_field(union acpi_operand_object
*obj_desc
,
803 void *buffer
, u32 buffer_length
)
807 acpi_integer width_mask
;
808 acpi_integer merged_datum
;
809 acpi_integer raw_datum
= 0;
810 u32 field_offset
= 0;
811 u32 buffer_offset
= 0;
812 u32 buffer_tail_bits
;
814 u32 field_datum_count
;
819 ACPI_FUNCTION_TRACE(ex_insert_into_field
);
821 /* Validate input buffer */
825 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc
->common_field
.bit_length
);
827 * We must have a buffer that is at least as long as the field
828 * we are writing to. This is because individual fields are
829 * indivisible and partial writes are not supported -- as per
830 * the ACPI specification.
832 if (buffer_length
< required_length
) {
834 /* We need to create a new buffer */
836 new_buffer
= ACPI_ALLOCATE_ZEROED(required_length
);
838 return_ACPI_STATUS(AE_NO_MEMORY
);
842 * Copy the original data to the new buffer, starting
843 * at Byte zero. All unused (upper) bytes of the
846 ACPI_MEMCPY((char *)new_buffer
, (char *)buffer
, buffer_length
);
848 buffer_length
= required_length
;
852 * Create the bitmasks used for bit insertion.
853 * Note: This if/else is used to bypass compiler differences with the
856 if (obj_desc
->common_field
.access_bit_width
== ACPI_INTEGER_BIT_SIZE
) {
857 width_mask
= ACPI_INTEGER_MAX
;
860 ACPI_MASK_BITS_ABOVE(obj_desc
->common_field
.
865 ACPI_MASK_BITS_BELOW(obj_desc
->common_field
.start_field_bit_offset
);
867 /* Compute the number of datums (access width data items) */
869 datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
,
870 obj_desc
->common_field
.access_bit_width
);
872 field_datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
+
873 obj_desc
->common_field
.
874 start_field_bit_offset
,
875 obj_desc
->common_field
.
878 /* Get initial Datum from the input buffer */
880 ACPI_MEMCPY(&raw_datum
, buffer
,
881 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
882 buffer_length
- buffer_offset
));
885 raw_datum
<< obj_desc
->common_field
.start_field_bit_offset
;
887 /* Write the entire field */
889 for (i
= 1; i
< field_datum_count
; i
++) {
891 /* Write merged datum to the target field */
893 merged_datum
&= mask
;
894 status
= acpi_ex_write_with_update_rule(obj_desc
, mask
,
897 if (ACPI_FAILURE(status
)) {
901 field_offset
+= obj_desc
->common_field
.access_byte_width
;
904 * Start new output datum by merging with previous input datum
907 * Note: Before the shift, check if the shift value will be larger than
908 * the integer size. If so, there is no need to perform the operation.
909 * This avoids the differences in behavior between different compilers
910 * concerning shift values larger than the target data width.
912 if ((obj_desc
->common_field
.access_bit_width
-
913 obj_desc
->common_field
.start_field_bit_offset
) <
914 ACPI_INTEGER_BIT_SIZE
) {
916 raw_datum
>> (obj_desc
->common_field
.
918 obj_desc
->common_field
.
919 start_field_bit_offset
);
926 if (i
== datum_count
) {
930 /* Get the next input datum from the buffer */
932 buffer_offset
+= obj_desc
->common_field
.access_byte_width
;
933 ACPI_MEMCPY(&raw_datum
, ((char *)buffer
) + buffer_offset
,
934 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
935 buffer_length
- buffer_offset
));
937 raw_datum
<< obj_desc
->common_field
.start_field_bit_offset
;
940 /* Mask off any extra bits in the last datum */
942 buffer_tail_bits
= (obj_desc
->common_field
.bit_length
+
943 obj_desc
->common_field
.start_field_bit_offset
) %
944 obj_desc
->common_field
.access_bit_width
;
945 if (buffer_tail_bits
) {
946 mask
&= ACPI_MASK_BITS_ABOVE(buffer_tail_bits
);
949 /* Write the last datum to the field */
951 merged_datum
&= mask
;
952 status
= acpi_ex_write_with_update_rule(obj_desc
,
957 /* Free temporary buffer if we used one */
960 ACPI_FREE(new_buffer
);
962 return_ACPI_STATUS(status
);