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>
45 #include <acpi/acinterp.h>
46 #include <acpi/amlcode.h>
47 #include <acpi/acevents.h>
48 #include <acpi/acdispat.h>
50 #define _COMPONENT ACPI_EXECUTER
51 ACPI_MODULE_NAME("exfldio")
53 /* Local prototypes */
55 acpi_ex_field_datum_io(union acpi_operand_object
*obj_desc
,
56 u32 field_datum_byte_offset
,
57 acpi_integer
* value
, u32 read_write
);
60 acpi_ex_register_overflow(union acpi_operand_object
*obj_desc
,
64 acpi_ex_setup_region(union acpi_operand_object
*obj_desc
,
65 u32 field_datum_byte_offset
);
67 /*******************************************************************************
69 * FUNCTION: acpi_ex_setup_region
71 * PARAMETERS: obj_desc - Field to be read or written
72 * field_datum_byte_offset - Byte offset of this datum within the
77 * DESCRIPTION: Common processing for acpi_ex_extract_from_field and
78 * acpi_ex_insert_into_field. Initialize the Region if necessary and
79 * validate the request.
81 ******************************************************************************/
84 acpi_ex_setup_region(union acpi_operand_object
*obj_desc
,
85 u32 field_datum_byte_offset
)
87 acpi_status status
= AE_OK
;
88 union acpi_operand_object
*rgn_desc
;
90 ACPI_FUNCTION_TRACE_U32(ex_setup_region
, field_datum_byte_offset
);
92 rgn_desc
= obj_desc
->common_field
.region_obj
;
94 /* We must have a valid region */
96 if (ACPI_GET_OBJECT_TYPE(rgn_desc
) != ACPI_TYPE_REGION
) {
97 ACPI_ERROR((AE_INFO
, "Needed Region, found type %X (%s)",
98 ACPI_GET_OBJECT_TYPE(rgn_desc
),
99 acpi_ut_get_object_type_name(rgn_desc
)));
101 return_ACPI_STATUS(AE_AML_OPERAND_TYPE
);
105 * If the Region Address and Length have not been previously evaluated,
106 * evaluate them now and save the results.
108 if (!(rgn_desc
->common
.flags
& AOPOBJ_DATA_VALID
)) {
109 status
= acpi_ds_get_region_arguments(rgn_desc
);
110 if (ACPI_FAILURE(status
)) {
111 return_ACPI_STATUS(status
);
115 /* Exit if Address/Length have been disallowed by the host OS */
117 if (rgn_desc
->common
.flags
& AOPOBJ_INVALID
) {
118 return_ACPI_STATUS(AE_AML_ILLEGAL_ADDRESS
);
122 * Exit now for SMBus address space, it has a non-linear address space
123 * and the request cannot be directly validated
125 if (rgn_desc
->region
.space_id
== ACPI_ADR_SPACE_SMBUS
) {
127 /* SMBus has a non-linear address space */
129 return_ACPI_STATUS(AE_OK
);
131 #ifdef ACPI_UNDER_DEVELOPMENT
133 * If the Field access is any_acc, we can now compute the optimal
134 * access (because we know know the length of the parent region)
136 if (!(obj_desc
->common
.flags
& AOPOBJ_DATA_VALID
)) {
137 if (ACPI_FAILURE(status
)) {
138 return_ACPI_STATUS(status
);
144 * Validate the request. The entire request from the byte offset for a
145 * length of one field datum (access width) must fit within the region.
146 * (Region length is specified in bytes)
148 if (rgn_desc
->region
.length
<
149 (obj_desc
->common_field
.base_byte_offset
+
150 field_datum_byte_offset
+
151 obj_desc
->common_field
.access_byte_width
)) {
152 if (acpi_gbl_enable_interpreter_slack
) {
154 * Slack mode only: We will go ahead and allow access to this
155 * field if it is within the region length rounded up to the next
156 * access width boundary. acpi_size cast for 64-bit compile.
158 if (ACPI_ROUND_UP(rgn_desc
->region
.length
,
159 obj_desc
->common_field
.
160 access_byte_width
) >=
161 ((acpi_size
) obj_desc
->common_field
.
163 obj_desc
->common_field
.access_byte_width
+
164 field_datum_byte_offset
)) {
165 return_ACPI_STATUS(AE_OK
);
169 if (rgn_desc
->region
.length
<
170 obj_desc
->common_field
.access_byte_width
) {
172 * This is the case where the access_type (acc_word, etc.) is wider
173 * than the region itself. For example, a region of length one
174 * byte, and a field with Dword access specified.
177 "Field [%4.4s] access width (%d bytes) too large for region [%4.4s] (length %X)",
178 acpi_ut_get_node_name(obj_desc
->
180 obj_desc
->common_field
.access_byte_width
,
181 acpi_ut_get_node_name(rgn_desc
->region
.
183 rgn_desc
->region
.length
));
187 * Offset rounded up to next multiple of field width
188 * exceeds region length, indicate an error
191 "Field [%4.4s] Base+Offset+Width %X+%X+%X is beyond end of region [%4.4s] (length %X)",
192 acpi_ut_get_node_name(obj_desc
->common_field
.node
),
193 obj_desc
->common_field
.base_byte_offset
,
194 field_datum_byte_offset
,
195 obj_desc
->common_field
.access_byte_width
,
196 acpi_ut_get_node_name(rgn_desc
->region
.node
),
197 rgn_desc
->region
.length
));
199 return_ACPI_STATUS(AE_AML_REGION_LIMIT
);
202 return_ACPI_STATUS(AE_OK
);
205 /*******************************************************************************
207 * FUNCTION: acpi_ex_access_region
209 * PARAMETERS: obj_desc - Field to be read
210 * field_datum_byte_offset - Byte offset of this datum within the
212 * Value - Where to store value (must at least
213 * the size of acpi_integer)
214 * Function - Read or Write flag plus other region-
219 * DESCRIPTION: Read or Write a single field datum to an Operation Region.
221 ******************************************************************************/
224 acpi_ex_access_region(union acpi_operand_object
*obj_desc
,
225 u32 field_datum_byte_offset
,
226 acpi_integer
* value
, u32 function
)
229 union acpi_operand_object
*rgn_desc
;
230 acpi_physical_address address
;
232 ACPI_FUNCTION_TRACE(ex_access_region
);
235 * Ensure that the region operands are fully evaluated and verify
236 * the validity of the request
238 status
= acpi_ex_setup_region(obj_desc
, field_datum_byte_offset
);
239 if (ACPI_FAILURE(status
)) {
240 return_ACPI_STATUS(status
);
244 * The physical address of this field datum is:
246 * 1) The base of the region, plus
247 * 2) The base offset of the field, plus
248 * 3) The current offset into the field
250 rgn_desc
= obj_desc
->common_field
.region_obj
;
251 address
= rgn_desc
->region
.address
+
252 obj_desc
->common_field
.base_byte_offset
+ field_datum_byte_offset
;
254 if ((function
& ACPI_IO_MASK
) == ACPI_READ
) {
255 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
, "[READ]"));
257 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
, "[WRITE]"));
260 ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD
,
261 " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %p\n",
262 acpi_ut_get_region_name(rgn_desc
->region
.
264 rgn_desc
->region
.space_id
,
265 obj_desc
->common_field
.access_byte_width
,
266 obj_desc
->common_field
.base_byte_offset
,
267 field_datum_byte_offset
, ACPI_CAST_PTR(void,
270 /* Invoke the appropriate address_space/op_region handler */
272 status
= acpi_ev_address_space_dispatch(rgn_desc
, function
,
274 ACPI_MUL_8(obj_desc
->
279 if (ACPI_FAILURE(status
)) {
280 if (status
== AE_NOT_IMPLEMENTED
) {
282 "Region %s(%X) not implemented",
283 acpi_ut_get_region_name(rgn_desc
->region
.
285 rgn_desc
->region
.space_id
));
286 } else if (status
== AE_NOT_EXIST
) {
288 "Region %s(%X) has no handler",
289 acpi_ut_get_region_name(rgn_desc
->region
.
291 rgn_desc
->region
.space_id
));
295 return_ACPI_STATUS(status
);
298 /*******************************************************************************
300 * FUNCTION: acpi_ex_register_overflow
302 * PARAMETERS: obj_desc - Register(Field) to be written
303 * Value - Value to be stored
305 * RETURN: TRUE if value overflows the field, FALSE otherwise
307 * DESCRIPTION: Check if a value is out of range of the field being written.
308 * Used to check if the values written to Index and Bank registers
309 * are out of range. Normally, the value is simply truncated
310 * to fit the field, but this case is most likely a serious
311 * coding error in the ASL.
313 ******************************************************************************/
316 acpi_ex_register_overflow(union acpi_operand_object
*obj_desc
,
320 if (obj_desc
->common_field
.bit_length
>= ACPI_INTEGER_BIT_SIZE
) {
322 * The field is large enough to hold the maximum integer, so we can
328 if (value
>= ((acpi_integer
) 1 << obj_desc
->common_field
.bit_length
)) {
330 * The Value is larger than the maximum value that can fit into
336 /* The Value will fit into the field with no truncation */
341 /*******************************************************************************
343 * FUNCTION: acpi_ex_field_datum_io
345 * PARAMETERS: obj_desc - Field to be read
346 * field_datum_byte_offset - Byte offset of this datum within the
348 * Value - Where to store value (must be 64 bits)
349 * read_write - Read or Write flag
353 * DESCRIPTION: Read or Write a single datum of a field. The field_type is
354 * demultiplexed here to handle the different types of fields
355 * (buffer_field, region_field, index_field, bank_field)
357 ******************************************************************************/
360 acpi_ex_field_datum_io(union acpi_operand_object
*obj_desc
,
361 u32 field_datum_byte_offset
,
362 acpi_integer
* value
, u32 read_write
)
365 acpi_integer local_value
;
367 ACPI_FUNCTION_TRACE_U32(ex_field_datum_io
, field_datum_byte_offset
);
369 if (read_write
== ACPI_READ
) {
373 /* To support reads without saving return value */
374 value
= &local_value
;
377 /* Clear the entire return buffer first, [Very Important!] */
383 * The four types of fields are:
385 * buffer_field - Read/write from/to a Buffer
386 * region_field - Read/write from/to a Operation Region.
387 * bank_field - Write to a Bank Register, then read/write from/to an
389 * index_field - Write to an Index Register, then read/write from/to a
392 switch (ACPI_GET_OBJECT_TYPE(obj_desc
)) {
393 case ACPI_TYPE_BUFFER_FIELD
:
395 * If the buffer_field arguments have not been previously evaluated,
396 * evaluate them now and save the results.
398 if (!(obj_desc
->common
.flags
& AOPOBJ_DATA_VALID
)) {
399 status
= acpi_ds_get_buffer_field_arguments(obj_desc
);
400 if (ACPI_FAILURE(status
)) {
401 return_ACPI_STATUS(status
);
405 if (read_write
== ACPI_READ
) {
407 * Copy the data from the source buffer.
408 * Length is the field width in bytes.
411 (obj_desc
->buffer_field
.buffer_obj
)->buffer
.
413 obj_desc
->buffer_field
.base_byte_offset
+
414 field_datum_byte_offset
,
415 obj_desc
->common_field
.access_byte_width
);
418 * Copy the data to the target buffer.
419 * Length is the field width in bytes.
421 ACPI_MEMCPY((obj_desc
->buffer_field
.buffer_obj
)->buffer
.
423 obj_desc
->buffer_field
.base_byte_offset
+
424 field_datum_byte_offset
, value
,
425 obj_desc
->common_field
.access_byte_width
);
431 case ACPI_TYPE_LOCAL_BANK_FIELD
:
434 * Ensure that the bank_value is not beyond the capacity of
437 if (acpi_ex_register_overflow(obj_desc
->bank_field
.bank_obj
,
438 (acpi_integer
) obj_desc
->
440 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT
);
444 * For bank_fields, we must write the bank_value to the bank_register
445 * (itself a region_field) before we can access the data.
448 acpi_ex_insert_into_field(obj_desc
->bank_field
.bank_obj
,
449 &obj_desc
->bank_field
.value
,
450 sizeof(obj_desc
->bank_field
.
452 if (ACPI_FAILURE(status
)) {
453 return_ACPI_STATUS(status
);
457 * Now that the Bank has been selected, fall through to the
458 * region_field case and write the datum to the Operation Region
461 /*lint -fallthrough */
463 case ACPI_TYPE_LOCAL_REGION_FIELD
:
465 * For simple region_fields, we just directly access the owning
469 acpi_ex_access_region(obj_desc
, field_datum_byte_offset
,
473 case ACPI_TYPE_LOCAL_INDEX_FIELD
:
476 * Ensure that the index_value is not beyond the capacity of
479 if (acpi_ex_register_overflow(obj_desc
->index_field
.index_obj
,
480 (acpi_integer
) obj_desc
->
481 index_field
.value
)) {
482 return_ACPI_STATUS(AE_AML_REGISTER_LIMIT
);
485 /* Write the index value to the index_register (itself a region_field) */
487 field_datum_byte_offset
+= obj_desc
->index_field
.value
;
489 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
490 "Write to Index Register: Value %8.8X\n",
491 field_datum_byte_offset
));
494 acpi_ex_insert_into_field(obj_desc
->index_field
.index_obj
,
495 &field_datum_byte_offset
,
496 sizeof(field_datum_byte_offset
));
497 if (ACPI_FAILURE(status
)) {
498 return_ACPI_STATUS(status
);
501 if (read_write
== ACPI_READ
) {
503 /* Read the datum from the data_register */
505 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
506 "Read from Data Register\n"));
509 acpi_ex_extract_from_field(obj_desc
->index_field
.
511 sizeof(acpi_integer
));
513 /* Write the datum to the data_register */
515 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
516 "Write to Data Register: Value %8.8X%8.8X\n",
517 ACPI_FORMAT_UINT64(*value
)));
520 acpi_ex_insert_into_field(obj_desc
->index_field
.
522 sizeof(acpi_integer
));
528 ACPI_ERROR((AE_INFO
, "Wrong object type in field I/O %X",
529 ACPI_GET_OBJECT_TYPE(obj_desc
)));
530 status
= AE_AML_INTERNAL
;
534 if (ACPI_SUCCESS(status
)) {
535 if (read_write
== ACPI_READ
) {
536 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
537 "Value Read %8.8X%8.8X, Width %d\n",
538 ACPI_FORMAT_UINT64(*value
),
539 obj_desc
->common_field
.
542 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
543 "Value Written %8.8X%8.8X, Width %d\n",
544 ACPI_FORMAT_UINT64(*value
),
545 obj_desc
->common_field
.
550 return_ACPI_STATUS(status
);
553 /*******************************************************************************
555 * FUNCTION: acpi_ex_write_with_update_rule
557 * PARAMETERS: obj_desc - Field to be written
558 * Mask - bitmask within field datum
559 * field_value - Value to write
560 * field_datum_byte_offset - Offset of datum within field
564 * DESCRIPTION: Apply the field update rule to a field write
566 ******************************************************************************/
569 acpi_ex_write_with_update_rule(union acpi_operand_object
*obj_desc
,
571 acpi_integer field_value
,
572 u32 field_datum_byte_offset
)
574 acpi_status status
= AE_OK
;
575 acpi_integer merged_value
;
576 acpi_integer current_value
;
578 ACPI_FUNCTION_TRACE_U32(ex_write_with_update_rule
, mask
);
580 /* Start with the new bits */
582 merged_value
= field_value
;
584 /* If the mask is all ones, we don't need to worry about the update rule */
586 if (mask
!= ACPI_INTEGER_MAX
) {
588 /* Decode the update rule */
590 switch (obj_desc
->common_field
.
591 field_flags
& AML_FIELD_UPDATE_RULE_MASK
) {
592 case AML_FIELD_UPDATE_PRESERVE
:
594 * Check if update rule needs to be applied (not if mask is all
595 * ones) The left shift drops the bits we want to ignore.
597 if ((~mask
<< (ACPI_MUL_8(sizeof(mask
)) -
598 ACPI_MUL_8(obj_desc
->common_field
.
599 access_byte_width
))) != 0) {
601 * Read the current contents of the byte/word/dword containing
602 * the field, and merge with the new field value.
605 acpi_ex_field_datum_io(obj_desc
,
606 field_datum_byte_offset
,
609 if (ACPI_FAILURE(status
)) {
610 return_ACPI_STATUS(status
);
613 merged_value
|= (current_value
& ~mask
);
617 case AML_FIELD_UPDATE_WRITE_AS_ONES
:
619 /* Set positions outside the field to all ones */
621 merged_value
|= ~mask
;
624 case AML_FIELD_UPDATE_WRITE_AS_ZEROS
:
626 /* Set positions outside the field to all zeros */
628 merged_value
&= mask
;
634 "Unknown UpdateRule value: %X",
635 (obj_desc
->common_field
.
637 AML_FIELD_UPDATE_RULE_MASK
)));
638 return_ACPI_STATUS(AE_AML_OPERAND_VALUE
);
642 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD
,
643 "Mask %8.8X%8.8X, DatumOffset %X, Width %X, Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n",
644 ACPI_FORMAT_UINT64(mask
),
645 field_datum_byte_offset
,
646 obj_desc
->common_field
.access_byte_width
,
647 ACPI_FORMAT_UINT64(field_value
),
648 ACPI_FORMAT_UINT64(merged_value
)));
650 /* Write the merged value */
652 status
= acpi_ex_field_datum_io(obj_desc
, field_datum_byte_offset
,
653 &merged_value
, ACPI_WRITE
);
655 return_ACPI_STATUS(status
);
658 /*******************************************************************************
660 * FUNCTION: acpi_ex_extract_from_field
662 * PARAMETERS: obj_desc - Field to be read
663 * Buffer - Where to store the field data
664 * buffer_length - Length of Buffer
668 * DESCRIPTION: Retrieve the current value of the given field
670 ******************************************************************************/
673 acpi_ex_extract_from_field(union acpi_operand_object
*obj_desc
,
674 void *buffer
, u32 buffer_length
)
677 acpi_integer raw_datum
;
678 acpi_integer merged_datum
;
679 u32 field_offset
= 0;
680 u32 buffer_offset
= 0;
681 u32 buffer_tail_bits
;
683 u32 field_datum_count
;
686 ACPI_FUNCTION_TRACE(ex_extract_from_field
);
688 /* Validate target buffer and clear it */
691 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc
->common_field
.bit_length
)) {
693 "Field size %X (bits) is too large for buffer (%X)",
694 obj_desc
->common_field
.bit_length
, buffer_length
));
696 return_ACPI_STATUS(AE_BUFFER_OVERFLOW
);
698 ACPI_MEMSET(buffer
, 0, buffer_length
);
700 /* Compute the number of datums (access width data items) */
702 datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
,
703 obj_desc
->common_field
.access_bit_width
);
704 field_datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
+
705 obj_desc
->common_field
.
706 start_field_bit_offset
,
707 obj_desc
->common_field
.
710 /* Priming read from the field */
713 acpi_ex_field_datum_io(obj_desc
, field_offset
, &raw_datum
,
715 if (ACPI_FAILURE(status
)) {
716 return_ACPI_STATUS(status
);
719 raw_datum
>> obj_desc
->common_field
.start_field_bit_offset
;
721 /* Read the rest of the field */
723 for (i
= 1; i
< field_datum_count
; i
++) {
725 /* Get next input datum from the field */
727 field_offset
+= obj_desc
->common_field
.access_byte_width
;
728 status
= acpi_ex_field_datum_io(obj_desc
, field_offset
,
729 &raw_datum
, ACPI_READ
);
730 if (ACPI_FAILURE(status
)) {
731 return_ACPI_STATUS(status
);
735 * Merge with previous datum if necessary.
737 * Note: Before the shift, check if the shift value will be larger than
738 * the integer size. If so, there is no need to perform the operation.
739 * This avoids the differences in behavior between different compilers
740 * concerning shift values larger than the target data width.
742 if ((obj_desc
->common_field
.access_bit_width
-
743 obj_desc
->common_field
.start_field_bit_offset
) <
744 ACPI_INTEGER_BIT_SIZE
) {
746 raw_datum
<< (obj_desc
->common_field
.
748 obj_desc
->common_field
.
749 start_field_bit_offset
);
752 if (i
== datum_count
) {
756 /* Write merged datum to target buffer */
758 ACPI_MEMCPY(((char *)buffer
) + buffer_offset
, &merged_datum
,
759 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
760 buffer_length
- buffer_offset
));
762 buffer_offset
+= obj_desc
->common_field
.access_byte_width
;
764 raw_datum
>> obj_desc
->common_field
.start_field_bit_offset
;
767 /* Mask off any extra bits in the last datum */
769 buffer_tail_bits
= obj_desc
->common_field
.bit_length
%
770 obj_desc
->common_field
.access_bit_width
;
771 if (buffer_tail_bits
) {
772 merged_datum
&= ACPI_MASK_BITS_ABOVE(buffer_tail_bits
);
775 /* Write the last datum to the buffer */
777 ACPI_MEMCPY(((char *)buffer
) + buffer_offset
, &merged_datum
,
778 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
779 buffer_length
- buffer_offset
));
781 return_ACPI_STATUS(AE_OK
);
784 /*******************************************************************************
786 * FUNCTION: acpi_ex_insert_into_field
788 * PARAMETERS: obj_desc - Field to be written
789 * Buffer - Data to be written
790 * buffer_length - Length of Buffer
794 * DESCRIPTION: Store the Buffer contents into the given field
796 ******************************************************************************/
799 acpi_ex_insert_into_field(union acpi_operand_object
*obj_desc
,
800 void *buffer
, u32 buffer_length
)
804 acpi_integer width_mask
;
805 acpi_integer merged_datum
;
806 acpi_integer raw_datum
= 0;
807 u32 field_offset
= 0;
808 u32 buffer_offset
= 0;
809 u32 buffer_tail_bits
;
811 u32 field_datum_count
;
816 ACPI_FUNCTION_TRACE(ex_insert_into_field
);
818 /* Validate input buffer */
822 ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc
->common_field
.bit_length
);
824 * We must have a buffer that is at least as long as the field
825 * we are writing to. This is because individual fields are
826 * indivisible and partial writes are not supported -- as per
827 * the ACPI specification.
829 if (buffer_length
< required_length
) {
831 /* We need to create a new buffer */
833 new_buffer
= ACPI_ALLOCATE_ZEROED(required_length
);
835 return_ACPI_STATUS(AE_NO_MEMORY
);
839 * Copy the original data to the new buffer, starting
840 * at Byte zero. All unused (upper) bytes of the
843 ACPI_MEMCPY((char *)new_buffer
, (char *)buffer
, buffer_length
);
845 buffer_length
= required_length
;
849 * Create the bitmasks used for bit insertion.
850 * Note: This if/else is used to bypass compiler differences with the
853 if (obj_desc
->common_field
.access_bit_width
== ACPI_INTEGER_BIT_SIZE
) {
854 width_mask
= ACPI_INTEGER_MAX
;
857 ACPI_MASK_BITS_ABOVE(obj_desc
->common_field
.
862 ACPI_MASK_BITS_BELOW(obj_desc
->common_field
.start_field_bit_offset
);
864 /* Compute the number of datums (access width data items) */
866 datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
,
867 obj_desc
->common_field
.access_bit_width
);
869 field_datum_count
= ACPI_ROUND_UP_TO(obj_desc
->common_field
.bit_length
+
870 obj_desc
->common_field
.
871 start_field_bit_offset
,
872 obj_desc
->common_field
.
875 /* Get initial Datum from the input buffer */
877 ACPI_MEMCPY(&raw_datum
, buffer
,
878 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
879 buffer_length
- buffer_offset
));
882 raw_datum
<< obj_desc
->common_field
.start_field_bit_offset
;
884 /* Write the entire field */
886 for (i
= 1; i
< field_datum_count
; i
++) {
888 /* Write merged datum to the target field */
890 merged_datum
&= mask
;
891 status
= acpi_ex_write_with_update_rule(obj_desc
, mask
,
894 if (ACPI_FAILURE(status
)) {
898 field_offset
+= obj_desc
->common_field
.access_byte_width
;
901 * Start new output datum by merging with previous input datum
904 * Note: Before the shift, check if the shift value will be larger than
905 * the integer size. If so, there is no need to perform the operation.
906 * This avoids the differences in behavior between different compilers
907 * concerning shift values larger than the target data width.
909 if ((obj_desc
->common_field
.access_bit_width
-
910 obj_desc
->common_field
.start_field_bit_offset
) <
911 ACPI_INTEGER_BIT_SIZE
) {
913 raw_datum
>> (obj_desc
->common_field
.
915 obj_desc
->common_field
.
916 start_field_bit_offset
);
923 if (i
== datum_count
) {
927 /* Get the next input datum from the buffer */
929 buffer_offset
+= obj_desc
->common_field
.access_byte_width
;
930 ACPI_MEMCPY(&raw_datum
, ((char *)buffer
) + buffer_offset
,
931 ACPI_MIN(obj_desc
->common_field
.access_byte_width
,
932 buffer_length
- buffer_offset
));
934 raw_datum
<< obj_desc
->common_field
.start_field_bit_offset
;
937 /* Mask off any extra bits in the last datum */
939 buffer_tail_bits
= (obj_desc
->common_field
.bit_length
+
940 obj_desc
->common_field
.start_field_bit_offset
) %
941 obj_desc
->common_field
.access_bit_width
;
942 if (buffer_tail_bits
) {
943 mask
&= ACPI_MASK_BITS_ABOVE(buffer_tail_bits
);
946 /* Write the last datum to the field */
948 merged_datum
&= mask
;
949 status
= acpi_ex_write_with_update_rule(obj_desc
,
954 /* Free temporary buffer if we used one */
957 ACPI_FREE(new_buffer
);
959 return_ACPI_STATUS(status
);