1 /******************************************************************************
3 * Module Name: exfield - ACPI AML (p-code) execution - field manipulation
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, 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.
53 #define _COMPONENT ACPI_EXECUTER
54 ACPI_MODULE_NAME ("exfield")
57 /*******************************************************************************
59 * FUNCTION: AcpiExReadDataFromField
61 * PARAMETERS: WalkState - Current execution state
62 * ObjDesc - The named field
63 * RetBufferDesc - Where the return data object is stored
67 * DESCRIPTION: Read from a named field. Returns either an Integer or a
68 * Buffer, depending on the size of the field.
70 ******************************************************************************/
73 AcpiExReadDataFromField (
74 ACPI_WALK_STATE
*WalkState
,
75 ACPI_OPERAND_OBJECT
*ObjDesc
,
76 ACPI_OPERAND_OBJECT
**RetBufferDesc
)
79 ACPI_OPERAND_OBJECT
*BufferDesc
;
85 ACPI_FUNCTION_TRACE_PTR (ExReadDataFromField
, ObjDesc
);
88 /* Parameter validation */
92 return_ACPI_STATUS (AE_AML_NO_OPERAND
);
96 return_ACPI_STATUS (AE_BAD_PARAMETER
);
99 if (ObjDesc
->Common
.Type
== ACPI_TYPE_BUFFER_FIELD
)
102 * If the BufferField arguments have not been previously evaluated,
103 * evaluate them now and save the results.
105 if (!(ObjDesc
->Common
.Flags
& AOPOBJ_DATA_VALID
))
107 Status
= AcpiDsGetBufferFieldArguments (ObjDesc
);
108 if (ACPI_FAILURE (Status
))
110 return_ACPI_STATUS (Status
);
114 else if ((ObjDesc
->Common
.Type
== ACPI_TYPE_LOCAL_REGION_FIELD
) &&
115 (ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_SMBUS
||
116 ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_GSBUS
||
117 ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_IPMI
))
120 * This is an SMBus, GSBus or IPMI read. We must create a buffer to hold
121 * the data and then directly access the region handler.
123 * Note: SMBus and GSBus protocol value is passed in upper 16-bits of Function
125 if (ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_SMBUS
)
127 Length
= ACPI_SMBUS_BUFFER_SIZE
;
128 Function
= ACPI_READ
| (ObjDesc
->Field
.Attribute
<< 16);
130 else if (ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_GSBUS
)
132 Length
= ACPI_GSBUS_BUFFER_SIZE
;
133 Function
= ACPI_READ
| (ObjDesc
->Field
.Attribute
<< 16);
137 Length
= ACPI_IPMI_BUFFER_SIZE
;
138 Function
= ACPI_READ
;
141 BufferDesc
= AcpiUtCreateBufferObject (Length
);
144 return_ACPI_STATUS (AE_NO_MEMORY
);
147 /* Lock entire transaction if requested */
149 AcpiExAcquireGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
151 /* Call the region handler for the read */
153 Status
= AcpiExAccessRegion (ObjDesc
, 0,
154 ACPI_CAST_PTR (UINT64
, BufferDesc
->Buffer
.Pointer
),
156 AcpiExReleaseGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
161 * Allocate a buffer for the contents of the field.
163 * If the field is larger than the current integer width, create
164 * a BUFFER to hold it. Otherwise, use an INTEGER. This allows
165 * the use of arithmetic operators on the returned value if the
166 * field size is equal or smaller than an Integer.
168 * Note: Field.length is in bits.
170 Length
= (ACPI_SIZE
) ACPI_ROUND_BITS_UP_TO_BYTES (ObjDesc
->Field
.BitLength
);
171 if (Length
> AcpiGbl_IntegerByteWidth
)
173 /* Field is too large for an Integer, create a Buffer instead */
175 BufferDesc
= AcpiUtCreateBufferObject (Length
);
178 return_ACPI_STATUS (AE_NO_MEMORY
);
180 Buffer
= BufferDesc
->Buffer
.Pointer
;
184 /* Field will fit within an Integer (normal case) */
186 BufferDesc
= AcpiUtCreateIntegerObject ((UINT64
) 0);
189 return_ACPI_STATUS (AE_NO_MEMORY
);
192 Length
= AcpiGbl_IntegerByteWidth
;
193 Buffer
= &BufferDesc
->Integer
.Value
;
196 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
197 "FieldRead [TO]: Obj %p, Type %X, Buf %p, ByteLen %X\n",
198 ObjDesc
, ObjDesc
->Common
.Type
, Buffer
, (UINT32
) Length
));
199 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
200 "FieldRead [FROM]: BitLen %X, BitOff %X, ByteOff %X\n",
201 ObjDesc
->CommonField
.BitLength
,
202 ObjDesc
->CommonField
.StartFieldBitOffset
,
203 ObjDesc
->CommonField
.BaseByteOffset
));
205 /* Lock entire transaction if requested */
207 AcpiExAcquireGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
209 /* Read from the field */
211 Status
= AcpiExExtractFromField (ObjDesc
, Buffer
, (UINT32
) Length
);
212 AcpiExReleaseGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
216 if (ACPI_FAILURE (Status
))
218 AcpiUtRemoveReference (BufferDesc
);
222 *RetBufferDesc
= BufferDesc
;
225 return_ACPI_STATUS (Status
);
229 /*******************************************************************************
231 * FUNCTION: AcpiExWriteDataToField
233 * PARAMETERS: SourceDesc - Contains data to write
234 * ObjDesc - The named field
235 * ResultDesc - Where the return value is returned, if any
239 * DESCRIPTION: Write to a named field
241 ******************************************************************************/
244 AcpiExWriteDataToField (
245 ACPI_OPERAND_OBJECT
*SourceDesc
,
246 ACPI_OPERAND_OBJECT
*ObjDesc
,
247 ACPI_OPERAND_OBJECT
**ResultDesc
)
252 ACPI_OPERAND_OBJECT
*BufferDesc
;
256 ACPI_FUNCTION_TRACE_PTR (ExWriteDataToField
, ObjDesc
);
259 /* Parameter validation */
261 if (!SourceDesc
|| !ObjDesc
)
263 return_ACPI_STATUS (AE_AML_NO_OPERAND
);
266 if (ObjDesc
->Common
.Type
== ACPI_TYPE_BUFFER_FIELD
)
269 * If the BufferField arguments have not been previously evaluated,
270 * evaluate them now and save the results.
272 if (!(ObjDesc
->Common
.Flags
& AOPOBJ_DATA_VALID
))
274 Status
= AcpiDsGetBufferFieldArguments (ObjDesc
);
275 if (ACPI_FAILURE (Status
))
277 return_ACPI_STATUS (Status
);
281 else if ((ObjDesc
->Common
.Type
== ACPI_TYPE_LOCAL_REGION_FIELD
) &&
282 (ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_SMBUS
||
283 ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_GSBUS
||
284 ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_IPMI
))
287 * This is an SMBus, GSBus or IPMI write. We will bypass the entire field
288 * mechanism and handoff the buffer directly to the handler. For
289 * these address spaces, the buffer is bi-directional; on a write,
290 * return data is returned in the same buffer.
292 * Source must be a buffer of sufficient size:
293 * ACPI_SMBUS_BUFFER_SIZE, ACPI_GSBUS_BUFFER_SIZE, or ACPI_IPMI_BUFFER_SIZE.
295 * Note: SMBus and GSBus protocol type is passed in upper 16-bits of Function
297 if (SourceDesc
->Common
.Type
!= ACPI_TYPE_BUFFER
)
299 ACPI_ERROR ((AE_INFO
,
300 "SMBus/IPMI/GenericSerialBus write requires Buffer, found type %s",
301 AcpiUtGetObjectTypeName (SourceDesc
)));
303 return_ACPI_STATUS (AE_AML_OPERAND_TYPE
);
306 if (ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_SMBUS
)
308 Length
= ACPI_SMBUS_BUFFER_SIZE
;
309 Function
= ACPI_WRITE
| (ObjDesc
->Field
.Attribute
<< 16);
311 else if (ObjDesc
->Field
.RegionObj
->Region
.SpaceId
== ACPI_ADR_SPACE_GSBUS
)
313 Length
= ACPI_GSBUS_BUFFER_SIZE
;
314 Function
= ACPI_WRITE
| (ObjDesc
->Field
.Attribute
<< 16);
318 Length
= ACPI_IPMI_BUFFER_SIZE
;
319 Function
= ACPI_WRITE
;
322 if (SourceDesc
->Buffer
.Length
< Length
)
324 ACPI_ERROR ((AE_INFO
,
325 "SMBus/IPMI/GenericSerialBus write requires Buffer of length %u, found length %u",
326 Length
, SourceDesc
->Buffer
.Length
));
328 return_ACPI_STATUS (AE_AML_BUFFER_LIMIT
);
331 /* Create the bi-directional buffer */
333 BufferDesc
= AcpiUtCreateBufferObject (Length
);
336 return_ACPI_STATUS (AE_NO_MEMORY
);
339 Buffer
= BufferDesc
->Buffer
.Pointer
;
340 ACPI_MEMCPY (Buffer
, SourceDesc
->Buffer
.Pointer
, Length
);
342 /* Lock entire transaction if requested */
344 AcpiExAcquireGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
347 * Perform the write (returns status and perhaps data in the
350 Status
= AcpiExAccessRegion (ObjDesc
, 0,
351 (UINT64
*) Buffer
, Function
);
352 AcpiExReleaseGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
354 *ResultDesc
= BufferDesc
;
355 return_ACPI_STATUS (Status
);
358 /* Get a pointer to the data to be written */
360 switch (SourceDesc
->Common
.Type
)
362 case ACPI_TYPE_INTEGER
:
364 Buffer
= &SourceDesc
->Integer
.Value
;
365 Length
= sizeof (SourceDesc
->Integer
.Value
);
368 case ACPI_TYPE_BUFFER
:
370 Buffer
= SourceDesc
->Buffer
.Pointer
;
371 Length
= SourceDesc
->Buffer
.Length
;
374 case ACPI_TYPE_STRING
:
376 Buffer
= SourceDesc
->String
.Pointer
;
377 Length
= SourceDesc
->String
.Length
;
382 return_ACPI_STATUS (AE_AML_OPERAND_TYPE
);
385 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
386 "FieldWrite [FROM]: Obj %p (%s:%X), Buf %p, ByteLen %X\n",
387 SourceDesc
, AcpiUtGetTypeName (SourceDesc
->Common
.Type
),
388 SourceDesc
->Common
.Type
, Buffer
, Length
));
390 ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD
,
391 "FieldWrite [TO]: Obj %p (%s:%X), BitLen %X, BitOff %X, ByteOff %X\n",
392 ObjDesc
, AcpiUtGetTypeName (ObjDesc
->Common
.Type
),
393 ObjDesc
->Common
.Type
,
394 ObjDesc
->CommonField
.BitLength
,
395 ObjDesc
->CommonField
.StartFieldBitOffset
,
396 ObjDesc
->CommonField
.BaseByteOffset
));
398 /* Lock entire transaction if requested */
400 AcpiExAcquireGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
402 /* Write to the field */
404 Status
= AcpiExInsertIntoField (ObjDesc
, Buffer
, Length
);
405 AcpiExReleaseGlobalLock (ObjDesc
->CommonField
.FieldFlags
);
407 return_ACPI_STATUS (Status
);