1 /******************************************************************************
3 * Module Name: exfldio - Aml Field I/O
5 *****************************************************************************/
7 /******************************************************************************
11 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
12 * All rights reserved.
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
37 * The above copyright and patent license is granted only if the following
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
72 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
80 * 4. Disclaimer and Export Compliance
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
114 *****************************************************************************/
117 #define __EXFLDIO_C__
120 #include "accommon.h"
121 #include "acinterp.h"
123 #include "acevents.h"
124 #include "acdispat.h"
127 #define _COMPONENT ACPI_EXECUTER
128 ACPI_MODULE_NAME ("exfldio")
130 /* Local prototypes */
134 ACPI_OPERAND_OBJECT
*ObjDesc
,
135 UINT32 FieldDatumByteOffset
,
140 AcpiExRegisterOverflow (
141 ACPI_OPERAND_OBJECT
*ObjDesc
,
146 ACPI_OPERAND_OBJECT
*ObjDesc
,
147 UINT32 FieldDatumByteOffset
);
150 /*******************************************************************************
152 * FUNCTION: AcpiExSetupRegion
154 * PARAMETERS: ObjDesc - Field to be read or written
155 * FieldDatumByteOffset - Byte offset of this datum within the
160 * DESCRIPTION: Common processing for AcpiExExtractFromField and
161 * AcpiExInsertIntoField. Initialize the Region if necessary and
162 * validate the request.
164 ******************************************************************************/
168 ACPI_OPERAND_OBJECT
*ObjDesc
,
169 UINT32 FieldDatumByteOffset
)
171 ACPI_STATUS Status
= AE_OK
;
172 ACPI_OPERAND_OBJECT
*RgnDesc
;
175 ACPI_FUNCTION_TRACE_U32 (ExSetupRegion
, FieldDatumByteOffset
);
178 RgnDesc
= ObjDesc
->CommonField
.RegionObj
;
180 /* We must have a valid region */
182 if (RgnDesc
->Common
.Type
!= ACPI_TYPE_REGION
)
184 ACPI_ERROR ((AE_INFO
, "Needed Region, found type 0x%X (%s)",
185 RgnDesc
->Common
.Type
,
186 AcpiUtGetObjectTypeName (RgnDesc
)));
188 return_ACPI_STATUS (AE_AML_OPERAND_TYPE
);
192 * If the Region Address and Length have not been previously evaluated,
193 * evaluate them now and save the results.
195 if (!(RgnDesc
->Common
.Flags
& AOPOBJ_DATA_VALID
))
197 Status
= AcpiDsGetRegionArguments (RgnDesc
);
198 if (ACPI_FAILURE (Status
))
200 return_ACPI_STATUS (Status
);
205 * Exit now for SMBus or IPMI address space, it has a non-linear address space
206 * and the request cannot be directly validated
208 if (RgnDesc
->Region
.SpaceId
== ACPI_ADR_SPACE_SMBUS
||
209 RgnDesc
->Region
.SpaceId
== ACPI_ADR_SPACE_IPMI
)
211 /* SMBus or IPMI has a non-linear address space */
213 return_ACPI_STATUS (AE_OK
);
216 #ifdef ACPI_UNDER_DEVELOPMENT
218 * If the Field access is AnyAcc, we can now compute the optimal
219 * access (because we know know the length of the parent region)
221 if (!(ObjDesc
->Common
.Flags
& AOPOBJ_DATA_VALID
))
223 if (ACPI_FAILURE (Status
))
225 return_ACPI_STATUS (Status
);
231 * Validate the request. The entire request from the byte offset for a
232 * length of one field datum (access width) must fit within the region.
233 * (Region length is specified in bytes)
235 if (RgnDesc
->Region
.Length
<
236 (ObjDesc
->CommonField
.BaseByteOffset
+
237 FieldDatumByteOffset
+
238 ObjDesc
->CommonField
.AccessByteWidth
))
240 if (AcpiGbl_EnableInterpreterSlack
)
243 * Slack mode only: We will go ahead and allow access to this
244 * field if it is within the region length rounded up to the next
245 * access width boundary. ACPI_SIZE cast for 64-bit compile.
247 if (ACPI_ROUND_UP (RgnDesc
->Region
.Length
,
248 ObjDesc
->CommonField
.AccessByteWidth
) >=
249 ((ACPI_SIZE
) ObjDesc
->CommonField
.BaseByteOffset
+
250 ObjDesc
->CommonField
.AccessByteWidth
+
251 FieldDatumByteOffset
))
253 return_ACPI_STATUS (AE_OK
);
257 if (RgnDesc
->Region
.Length
< ObjDesc
->CommonField
.AccessByteWidth
)
260 * This is the case where the AccessType (AccWord, etc.) is wider
261 * than the region itself. For example, a region of length one
262 * byte, and a field with Dword access specified.
264 ACPI_ERROR ((AE_INFO
,
265 "Field [%4.4s] access width (%u bytes) too large for region [%4.4s] (length %u)",
266 AcpiUtGetNodeName (ObjDesc
->CommonField
.Node
),
267 ObjDesc
->CommonField
.AccessByteWidth
,
268 AcpiUtGetNodeName (RgnDesc
->Region
.Node
),
269 RgnDesc
->Region
.Length
));
273 * Offset rounded up to next multiple of field width
274 * exceeds region length, indicate an error
276 ACPI_ERROR ((AE_INFO
,
277 "Field [%4.4s] Base+Offset+Width %u+%u+%u is beyond end of region [%4.4s] (length %u)",
278 AcpiUtGetNodeName (ObjDesc
->CommonField
.Node
),
279 ObjDesc
->CommonField
.BaseByteOffset
,
280 FieldDatumByteOffset
, ObjDesc
->CommonField
.AccessByteWidth
,
281 AcpiUtGetNodeName (RgnDesc
->Region
.Node
),
282 RgnDesc
->Region
.Length
));
284 return_ACPI_STATUS (AE_AML_REGION_LIMIT
);
287 return_ACPI_STATUS (AE_OK
);
291 /*******************************************************************************
293 * FUNCTION: AcpiExAccessRegion
295 * PARAMETERS: ObjDesc - Field to be read
296 * FieldDatumByteOffset - Byte offset of this datum within the
298 * Value - Where to store value (must at least
300 * Function - Read or Write flag plus other region-
305 * DESCRIPTION: Read or Write a single field datum to an Operation Region.
307 ******************************************************************************/
311 ACPI_OPERAND_OBJECT
*ObjDesc
,
312 UINT32 FieldDatumByteOffset
,
317 ACPI_OPERAND_OBJECT
*RgnDesc
;
321 ACPI_FUNCTION_TRACE (ExAccessRegion
);
325 * Ensure that the region operands are fully evaluated and verify
326 * the validity of the request
328 Status
= AcpiExSetupRegion (ObjDesc
, FieldDatumByteOffset
);
329 if (ACPI_FAILURE (Status
))
331 return_ACPI_STATUS (Status
);
335 * The physical address of this field datum is:
337 * 1) The base of the region, plus
338 * 2) The base offset of the field, plus
339 * 3) The current offset into the field
341 RgnDesc
= ObjDesc
->CommonField
.RegionObj
;
343 ObjDesc
->CommonField
.BaseByteOffset
+
344 FieldDatumByteOffset
;
346 if ((Function
& ACPI_IO_MASK
) == ACPI_READ
)
348 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
, "[READ]"));
352 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
, "[WRITE]"));
355 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_BFIELD
,
356 " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %p\n",
357 AcpiUtGetRegionName (RgnDesc
->Region
.SpaceId
),
358 RgnDesc
->Region
.SpaceId
,
359 ObjDesc
->CommonField
.AccessByteWidth
,
360 ObjDesc
->CommonField
.BaseByteOffset
,
361 FieldDatumByteOffset
,
362 ACPI_CAST_PTR (void, (RgnDesc
->Region
.Address
+ RegionOffset
))));
364 /* Invoke the appropriate AddressSpace/OpRegion handler */
366 Status
= AcpiEvAddressSpaceDispatch (RgnDesc
, Function
, RegionOffset
,
367 ACPI_MUL_8 (ObjDesc
->CommonField
.AccessByteWidth
), Value
);
369 if (ACPI_FAILURE (Status
))
371 if (Status
== AE_NOT_IMPLEMENTED
)
373 ACPI_ERROR ((AE_INFO
,
374 "Region %s(0x%X) not implemented",
375 AcpiUtGetRegionName (RgnDesc
->Region
.SpaceId
),
376 RgnDesc
->Region
.SpaceId
));
378 else if (Status
== AE_NOT_EXIST
)
380 ACPI_ERROR ((AE_INFO
,
381 "Region %s(0x%X) has no handler",
382 AcpiUtGetRegionName (RgnDesc
->Region
.SpaceId
),
383 RgnDesc
->Region
.SpaceId
));
387 return_ACPI_STATUS (Status
);
391 /*******************************************************************************
393 * FUNCTION: AcpiExRegisterOverflow
395 * PARAMETERS: ObjDesc - Register(Field) to be written
396 * Value - Value to be stored
398 * RETURN: TRUE if value overflows the field, FALSE otherwise
400 * DESCRIPTION: Check if a value is out of range of the field being written.
401 * Used to check if the values written to Index and Bank registers
402 * are out of range. Normally, the value is simply truncated
403 * to fit the field, but this case is most likely a serious
404 * coding error in the ASL.
406 ******************************************************************************/
409 AcpiExRegisterOverflow (
410 ACPI_OPERAND_OBJECT
*ObjDesc
,
414 if (ObjDesc
->CommonField
.BitLength
>= ACPI_INTEGER_BIT_SIZE
)
417 * The field is large enough to hold the maximum integer, so we can
423 if (Value
>= ((UINT64
) 1 << ObjDesc
->CommonField
.BitLength
))
426 * The Value is larger than the maximum value that can fit into
432 /* The Value will fit into the field with no truncation */
438 /*******************************************************************************
440 * FUNCTION: AcpiExFieldDatumIo
442 * PARAMETERS: ObjDesc - Field to be read
443 * FieldDatumByteOffset - Byte offset of this datum within the
445 * Value - Where to store value (must be 64 bits)
446 * ReadWrite - Read or Write flag
450 * DESCRIPTION: Read or Write a single datum of a field. The FieldType is
451 * demultiplexed here to handle the different types of fields
452 * (BufferField, RegionField, IndexField, BankField)
454 ******************************************************************************/
458 ACPI_OPERAND_OBJECT
*ObjDesc
,
459 UINT32 FieldDatumByteOffset
,
467 ACPI_FUNCTION_TRACE_U32 (ExFieldDatumIo
, FieldDatumByteOffset
);
470 if (ReadWrite
== ACPI_READ
)
476 /* To support reads without saving return value */
480 /* Clear the entire return buffer first, [Very Important!] */
486 * The four types of fields are:
488 * BufferField - Read/write from/to a Buffer
489 * RegionField - Read/write from/to a Operation Region.
490 * BankField - Write to a Bank Register, then read/write from/to an
492 * IndexField - Write to an Index Register, then read/write from/to a
495 switch (ObjDesc
->Common
.Type
)
497 case ACPI_TYPE_BUFFER_FIELD
:
499 * If the BufferField arguments have not been previously evaluated,
500 * evaluate them now and save the results.
502 if (!(ObjDesc
->Common
.Flags
& AOPOBJ_DATA_VALID
))
504 Status
= AcpiDsGetBufferFieldArguments (ObjDesc
);
505 if (ACPI_FAILURE (Status
))
507 return_ACPI_STATUS (Status
);
511 if (ReadWrite
== ACPI_READ
)
514 * Copy the data from the source buffer.
515 * Length is the field width in bytes.
518 (ObjDesc
->BufferField
.BufferObj
)->Buffer
.Pointer
+
519 ObjDesc
->BufferField
.BaseByteOffset
+
520 FieldDatumByteOffset
,
521 ObjDesc
->CommonField
.AccessByteWidth
);
526 * Copy the data to the target buffer.
527 * Length is the field width in bytes.
529 ACPI_MEMCPY ((ObjDesc
->BufferField
.BufferObj
)->Buffer
.Pointer
+
530 ObjDesc
->BufferField
.BaseByteOffset
+
531 FieldDatumByteOffset
,
532 Value
, ObjDesc
->CommonField
.AccessByteWidth
);
539 case ACPI_TYPE_LOCAL_BANK_FIELD
:
542 * Ensure that the BankValue is not beyond the capacity of
545 if (AcpiExRegisterOverflow (ObjDesc
->BankField
.BankObj
,
546 (UINT64
) ObjDesc
->BankField
.Value
))
548 return_ACPI_STATUS (AE_AML_REGISTER_LIMIT
);
552 * For BankFields, we must write the BankValue to the BankRegister
553 * (itself a RegionField) before we can access the data.
555 Status
= AcpiExInsertIntoField (ObjDesc
->BankField
.BankObj
,
556 &ObjDesc
->BankField
.Value
,
557 sizeof (ObjDesc
->BankField
.Value
));
558 if (ACPI_FAILURE (Status
))
560 return_ACPI_STATUS (Status
);
564 * Now that the Bank has been selected, fall through to the
565 * RegionField case and write the datum to the Operation Region
568 /*lint -fallthrough */
571 case ACPI_TYPE_LOCAL_REGION_FIELD
:
573 * For simple RegionFields, we just directly access the owning
576 Status
= AcpiExAccessRegion (ObjDesc
, FieldDatumByteOffset
, Value
,
581 case ACPI_TYPE_LOCAL_INDEX_FIELD
:
585 * Ensure that the IndexValue is not beyond the capacity of
588 if (AcpiExRegisterOverflow (ObjDesc
->IndexField
.IndexObj
,
589 (UINT64
) ObjDesc
->IndexField
.Value
))
591 return_ACPI_STATUS (AE_AML_REGISTER_LIMIT
);
594 /* Write the index value to the IndexRegister (itself a RegionField) */
596 FieldDatumByteOffset
+= ObjDesc
->IndexField
.Value
;
598 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
599 "Write to Index Register: Value %8.8X\n",
600 FieldDatumByteOffset
));
602 Status
= AcpiExInsertIntoField (ObjDesc
->IndexField
.IndexObj
,
603 &FieldDatumByteOffset
,
604 sizeof (FieldDatumByteOffset
));
605 if (ACPI_FAILURE (Status
))
607 return_ACPI_STATUS (Status
);
610 if (ReadWrite
== ACPI_READ
)
612 /* Read the datum from the DataRegister */
614 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
615 "Read from Data Register\n"));
617 Status
= AcpiExExtractFromField (ObjDesc
->IndexField
.DataObj
,
618 Value
, sizeof (UINT64
));
622 /* Write the datum to the DataRegister */
624 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
625 "Write to Data Register: Value %8.8X%8.8X\n",
626 ACPI_FORMAT_UINT64 (*Value
)));
628 Status
= AcpiExInsertIntoField (ObjDesc
->IndexField
.DataObj
,
629 Value
, sizeof (UINT64
));
636 ACPI_ERROR ((AE_INFO
, "Wrong object type in field I/O %u",
637 ObjDesc
->Common
.Type
));
638 Status
= AE_AML_INTERNAL
;
642 if (ACPI_SUCCESS (Status
))
644 if (ReadWrite
== ACPI_READ
)
646 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
647 "Value Read %8.8X%8.8X, Width %u\n",
648 ACPI_FORMAT_UINT64 (*Value
),
649 ObjDesc
->CommonField
.AccessByteWidth
));
653 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
654 "Value Written %8.8X%8.8X, Width %u\n",
655 ACPI_FORMAT_UINT64 (*Value
),
656 ObjDesc
->CommonField
.AccessByteWidth
));
660 return_ACPI_STATUS (Status
);
664 /*******************************************************************************
666 * FUNCTION: AcpiExWriteWithUpdateRule
668 * PARAMETERS: ObjDesc - Field to be written
669 * Mask - bitmask within field datum
670 * FieldValue - Value to write
671 * FieldDatumByteOffset - Offset of datum within field
675 * DESCRIPTION: Apply the field update rule to a field write
677 ******************************************************************************/
680 AcpiExWriteWithUpdateRule (
681 ACPI_OPERAND_OBJECT
*ObjDesc
,
684 UINT32 FieldDatumByteOffset
)
686 ACPI_STATUS Status
= AE_OK
;
691 ACPI_FUNCTION_TRACE_U32 (ExWriteWithUpdateRule
, Mask
);
694 /* Start with the new bits */
696 MergedValue
= FieldValue
;
698 /* If the mask is all ones, we don't need to worry about the update rule */
700 if (Mask
!= ACPI_UINT64_MAX
)
702 /* Decode the update rule */
704 switch (ObjDesc
->CommonField
.FieldFlags
& AML_FIELD_UPDATE_RULE_MASK
)
706 case AML_FIELD_UPDATE_PRESERVE
:
708 * Check if update rule needs to be applied (not if mask is all
709 * ones) The left shift drops the bits we want to ignore.
711 if ((~Mask
<< (ACPI_MUL_8 (sizeof (Mask
)) -
712 ACPI_MUL_8 (ObjDesc
->CommonField
.AccessByteWidth
))) != 0)
715 * Read the current contents of the byte/word/dword containing
716 * the field, and merge with the new field value.
718 Status
= AcpiExFieldDatumIo (ObjDesc
, FieldDatumByteOffset
,
719 &CurrentValue
, ACPI_READ
);
720 if (ACPI_FAILURE (Status
))
722 return_ACPI_STATUS (Status
);
725 MergedValue
|= (CurrentValue
& ~Mask
);
729 case AML_FIELD_UPDATE_WRITE_AS_ONES
:
731 /* Set positions outside the field to all ones */
733 MergedValue
|= ~Mask
;
736 case AML_FIELD_UPDATE_WRITE_AS_ZEROS
:
738 /* Set positions outside the field to all zeros */
745 ACPI_ERROR ((AE_INFO
,
746 "Unknown UpdateRule value: 0x%X",
747 (ObjDesc
->CommonField
.FieldFlags
& AML_FIELD_UPDATE_RULE_MASK
)));
748 return_ACPI_STATUS (AE_AML_OPERAND_VALUE
);
752 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
753 "Mask %8.8X%8.8X, DatumOffset %X, Width %X, Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n",
754 ACPI_FORMAT_UINT64 (Mask
),
755 FieldDatumByteOffset
,
756 ObjDesc
->CommonField
.AccessByteWidth
,
757 ACPI_FORMAT_UINT64 (FieldValue
),
758 ACPI_FORMAT_UINT64 (MergedValue
)));
760 /* Write the merged value */
762 Status
= AcpiExFieldDatumIo (ObjDesc
, FieldDatumByteOffset
,
763 &MergedValue
, ACPI_WRITE
);
765 return_ACPI_STATUS (Status
);
769 /*******************************************************************************
771 * FUNCTION: AcpiExExtractFromField
773 * PARAMETERS: ObjDesc - Field to be read
774 * Buffer - Where to store the field data
775 * BufferLength - Length of Buffer
779 * DESCRIPTION: Retrieve the current value of the given field
781 ******************************************************************************/
784 AcpiExExtractFromField (
785 ACPI_OPERAND_OBJECT
*ObjDesc
,
792 UINT32 FieldOffset
= 0;
793 UINT32 BufferOffset
= 0;
794 UINT32 BufferTailBits
;
796 UINT32 FieldDatumCount
;
800 ACPI_FUNCTION_TRACE (ExExtractFromField
);
803 /* Validate target buffer and clear it */
806 ACPI_ROUND_BITS_UP_TO_BYTES (ObjDesc
->CommonField
.BitLength
))
808 ACPI_ERROR ((AE_INFO
,
809 "Field size %u (bits) is too large for buffer (%u)",
810 ObjDesc
->CommonField
.BitLength
, BufferLength
));
812 return_ACPI_STATUS (AE_BUFFER_OVERFLOW
);
814 ACPI_MEMSET (Buffer
, 0, BufferLength
);
816 /* Compute the number of datums (access width data items) */
818 DatumCount
= ACPI_ROUND_UP_TO (
819 ObjDesc
->CommonField
.BitLength
,
820 ObjDesc
->CommonField
.AccessBitWidth
);
821 FieldDatumCount
= ACPI_ROUND_UP_TO (
822 ObjDesc
->CommonField
.BitLength
+
823 ObjDesc
->CommonField
.StartFieldBitOffset
,
824 ObjDesc
->CommonField
.AccessBitWidth
);
826 /* Priming read from the field */
828 Status
= AcpiExFieldDatumIo (ObjDesc
, FieldOffset
, &RawDatum
, ACPI_READ
);
829 if (ACPI_FAILURE (Status
))
831 return_ACPI_STATUS (Status
);
833 MergedDatum
= RawDatum
>> ObjDesc
->CommonField
.StartFieldBitOffset
;
835 /* Read the rest of the field */
837 for (i
= 1; i
< FieldDatumCount
; i
++)
839 /* Get next input datum from the field */
841 FieldOffset
+= ObjDesc
->CommonField
.AccessByteWidth
;
842 Status
= AcpiExFieldDatumIo (ObjDesc
, FieldOffset
,
843 &RawDatum
, ACPI_READ
);
844 if (ACPI_FAILURE (Status
))
846 return_ACPI_STATUS (Status
);
850 * Merge with previous datum if necessary.
852 * Note: Before the shift, check if the shift value will be larger than
853 * the integer size. If so, there is no need to perform the operation.
854 * This avoids the differences in behavior between different compilers
855 * concerning shift values larger than the target data width.
857 if ((ObjDesc
->CommonField
.AccessBitWidth
-
858 ObjDesc
->CommonField
.StartFieldBitOffset
) < ACPI_INTEGER_BIT_SIZE
)
860 MergedDatum
|= RawDatum
<<
861 (ObjDesc
->CommonField
.AccessBitWidth
-
862 ObjDesc
->CommonField
.StartFieldBitOffset
);
870 /* Write merged datum to target buffer */
872 ACPI_MEMCPY (((char *) Buffer
) + BufferOffset
, &MergedDatum
,
873 ACPI_MIN(ObjDesc
->CommonField
.AccessByteWidth
,
874 BufferLength
- BufferOffset
));
876 BufferOffset
+= ObjDesc
->CommonField
.AccessByteWidth
;
877 MergedDatum
= RawDatum
>> ObjDesc
->CommonField
.StartFieldBitOffset
;
880 /* Mask off any extra bits in the last datum */
882 BufferTailBits
= ObjDesc
->CommonField
.BitLength
%
883 ObjDesc
->CommonField
.AccessBitWidth
;
886 MergedDatum
&= ACPI_MASK_BITS_ABOVE (BufferTailBits
);
889 /* Write the last datum to the buffer */
891 ACPI_MEMCPY (((char *) Buffer
) + BufferOffset
, &MergedDatum
,
892 ACPI_MIN(ObjDesc
->CommonField
.AccessByteWidth
,
893 BufferLength
- BufferOffset
));
895 return_ACPI_STATUS (AE_OK
);
899 /*******************************************************************************
901 * FUNCTION: AcpiExInsertIntoField
903 * PARAMETERS: ObjDesc - Field to be written
904 * Buffer - Data to be written
905 * BufferLength - Length of Buffer
909 * DESCRIPTION: Store the Buffer contents into the given field
911 ******************************************************************************/
914 AcpiExInsertIntoField (
915 ACPI_OPERAND_OBJECT
*ObjDesc
,
924 UINT32 FieldOffset
= 0;
925 UINT32 BufferOffset
= 0;
926 UINT32 BufferTailBits
;
928 UINT32 FieldDatumCount
;
930 UINT32 RequiredLength
;
934 ACPI_FUNCTION_TRACE (ExInsertIntoField
);
937 /* Validate input buffer */
940 RequiredLength
= ACPI_ROUND_BITS_UP_TO_BYTES (
941 ObjDesc
->CommonField
.BitLength
);
943 * We must have a buffer that is at least as long as the field
944 * we are writing to. This is because individual fields are
945 * indivisible and partial writes are not supported -- as per
946 * the ACPI specification.
948 if (BufferLength
< RequiredLength
)
950 /* We need to create a new buffer */
952 NewBuffer
= ACPI_ALLOCATE_ZEROED (RequiredLength
);
955 return_ACPI_STATUS (AE_NO_MEMORY
);
959 * Copy the original data to the new buffer, starting
960 * at Byte zero. All unused (upper) bytes of the
963 ACPI_MEMCPY ((char *) NewBuffer
, (char *) Buffer
, BufferLength
);
965 BufferLength
= RequiredLength
;
969 * Create the bitmasks used for bit insertion.
970 * Note: This if/else is used to bypass compiler differences with the
973 if (ObjDesc
->CommonField
.AccessBitWidth
== ACPI_INTEGER_BIT_SIZE
)
975 WidthMask
= ACPI_UINT64_MAX
;
979 WidthMask
= ACPI_MASK_BITS_ABOVE (ObjDesc
->CommonField
.AccessBitWidth
);
983 ACPI_MASK_BITS_BELOW (ObjDesc
->CommonField
.StartFieldBitOffset
);
985 /* Compute the number of datums (access width data items) */
987 DatumCount
= ACPI_ROUND_UP_TO (ObjDesc
->CommonField
.BitLength
,
988 ObjDesc
->CommonField
.AccessBitWidth
);
990 FieldDatumCount
= ACPI_ROUND_UP_TO (ObjDesc
->CommonField
.BitLength
+
991 ObjDesc
->CommonField
.StartFieldBitOffset
,
992 ObjDesc
->CommonField
.AccessBitWidth
);
994 /* Get initial Datum from the input buffer */
996 ACPI_MEMCPY (&RawDatum
, Buffer
,
997 ACPI_MIN(ObjDesc
->CommonField
.AccessByteWidth
,
998 BufferLength
- BufferOffset
));
1000 MergedDatum
= RawDatum
<< ObjDesc
->CommonField
.StartFieldBitOffset
;
1002 /* Write the entire field */
1004 for (i
= 1; i
< FieldDatumCount
; i
++)
1006 /* Write merged datum to the target field */
1008 MergedDatum
&= Mask
;
1009 Status
= AcpiExWriteWithUpdateRule (ObjDesc
, Mask
,
1010 MergedDatum
, FieldOffset
);
1011 if (ACPI_FAILURE (Status
))
1016 FieldOffset
+= ObjDesc
->CommonField
.AccessByteWidth
;
1019 * Start new output datum by merging with previous input datum
1022 * Note: Before the shift, check if the shift value will be larger than
1023 * the integer size. If so, there is no need to perform the operation.
1024 * This avoids the differences in behavior between different compilers
1025 * concerning shift values larger than the target data width.
1027 if ((ObjDesc
->CommonField
.AccessBitWidth
-
1028 ObjDesc
->CommonField
.StartFieldBitOffset
) < ACPI_INTEGER_BIT_SIZE
)
1030 MergedDatum
= RawDatum
>>
1031 (ObjDesc
->CommonField
.AccessBitWidth
-
1032 ObjDesc
->CommonField
.StartFieldBitOffset
);
1041 if (i
== DatumCount
)
1046 /* Get the next input datum from the buffer */
1048 BufferOffset
+= ObjDesc
->CommonField
.AccessByteWidth
;
1049 ACPI_MEMCPY (&RawDatum
, ((char *) Buffer
) + BufferOffset
,
1050 ACPI_MIN(ObjDesc
->CommonField
.AccessByteWidth
,
1051 BufferLength
- BufferOffset
));
1052 MergedDatum
|= RawDatum
<< ObjDesc
->CommonField
.StartFieldBitOffset
;
1055 /* Mask off any extra bits in the last datum */
1057 BufferTailBits
= (ObjDesc
->CommonField
.BitLength
+
1058 ObjDesc
->CommonField
.StartFieldBitOffset
) %
1059 ObjDesc
->CommonField
.AccessBitWidth
;
1062 Mask
&= ACPI_MASK_BITS_ABOVE (BufferTailBits
);
1065 /* Write the last datum to the field */
1067 MergedDatum
&= Mask
;
1068 Status
= AcpiExWriteWithUpdateRule (ObjDesc
,
1069 Mask
, MergedDatum
, FieldOffset
);
1072 /* Free temporary buffer if we used one */
1076 ACPI_FREE (NewBuffer
);
1078 return_ACPI_STATUS (Status
);