exfield.c revision 1.1.1.6 1 1.1 jruoho /******************************************************************************
2 1.1 jruoho *
3 1.1 jruoho * Module Name: exfield - ACPI AML (p-code) execution - field manipulation
4 1.1 jruoho *
5 1.1 jruoho *****************************************************************************/
6 1.1 jruoho
7 1.1.1.2 jruoho /*
8 1.1.1.5 christos * Copyright (C) 2000 - 2015, Intel Corp.
9 1.1 jruoho * All rights reserved.
10 1.1 jruoho *
11 1.1.1.2 jruoho * Redistribution and use in source and binary forms, with or without
12 1.1.1.2 jruoho * modification, are permitted provided that the following conditions
13 1.1.1.2 jruoho * are met:
14 1.1.1.2 jruoho * 1. Redistributions of source code must retain the above copyright
15 1.1.1.2 jruoho * notice, this list of conditions, and the following disclaimer,
16 1.1.1.2 jruoho * without modification.
17 1.1.1.2 jruoho * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1.1.2 jruoho * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1.1.2 jruoho * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1.1.2 jruoho * including a substantially similar Disclaimer requirement for further
21 1.1.1.2 jruoho * binary redistribution.
22 1.1.1.2 jruoho * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1.1.2 jruoho * of any contributors may be used to endorse or promote products derived
24 1.1.1.2 jruoho * from this software without specific prior written permission.
25 1.1.1.2 jruoho *
26 1.1.1.2 jruoho * Alternatively, this software may be distributed under the terms of the
27 1.1.1.2 jruoho * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1.1.2 jruoho * Software Foundation.
29 1.1.1.2 jruoho *
30 1.1.1.2 jruoho * NO WARRANTY
31 1.1.1.2 jruoho * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1.1.2 jruoho * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1.1.2 jruoho * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1.1.2 jruoho * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1.1.2 jruoho * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1.1.2 jruoho * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1.1.2 jruoho * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1.1.2 jruoho * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1.1.2 jruoho * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1.1.2 jruoho * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1.1.2 jruoho * POSSIBILITY OF SUCH DAMAGES.
42 1.1.1.2 jruoho */
43 1.1 jruoho
44 1.1 jruoho #include "acpi.h"
45 1.1 jruoho #include "accommon.h"
46 1.1 jruoho #include "acdispat.h"
47 1.1 jruoho #include "acinterp.h"
48 1.1.1.4 christos #include "amlcode.h"
49 1.1 jruoho
50 1.1 jruoho
51 1.1 jruoho #define _COMPONENT ACPI_EXECUTER
52 1.1 jruoho ACPI_MODULE_NAME ("exfield")
53 1.1 jruoho
54 1.1.1.4 christos /* Local prototypes */
55 1.1.1.4 christos
56 1.1.1.4 christos static UINT32
57 1.1.1.4 christos AcpiExGetSerialAccessLength (
58 1.1.1.4 christos UINT32 AccessorType,
59 1.1.1.4 christos UINT32 AccessLength);
60 1.1.1.4 christos
61 1.1.1.4 christos
62 1.1.1.4 christos /*******************************************************************************
63 1.1.1.4 christos *
64 1.1.1.4 christos * FUNCTION: AcpiExGetSerialAccessLength
65 1.1.1.4 christos *
66 1.1.1.4 christos * PARAMETERS: AccessorType - The type of the protocol indicated by region
67 1.1.1.4 christos * field access attributes
68 1.1.1.4 christos * AccessLength - The access length of the region field
69 1.1.1.4 christos *
70 1.1.1.4 christos * RETURN: Decoded access length
71 1.1.1.4 christos *
72 1.1.1.4 christos * DESCRIPTION: This routine returns the length of the GenericSerialBus
73 1.1.1.4 christos * protocol bytes
74 1.1.1.4 christos *
75 1.1.1.4 christos ******************************************************************************/
76 1.1.1.4 christos
77 1.1.1.4 christos static UINT32
78 1.1.1.4 christos AcpiExGetSerialAccessLength (
79 1.1.1.4 christos UINT32 AccessorType,
80 1.1.1.4 christos UINT32 AccessLength)
81 1.1.1.4 christos {
82 1.1.1.4 christos UINT32 Length;
83 1.1.1.4 christos
84 1.1.1.4 christos
85 1.1.1.4 christos switch (AccessorType)
86 1.1.1.4 christos {
87 1.1.1.4 christos case AML_FIELD_ATTRIB_QUICK:
88 1.1.1.4 christos
89 1.1.1.4 christos Length = 0;
90 1.1.1.4 christos break;
91 1.1.1.4 christos
92 1.1.1.4 christos case AML_FIELD_ATTRIB_SEND_RCV:
93 1.1.1.4 christos case AML_FIELD_ATTRIB_BYTE:
94 1.1.1.4 christos
95 1.1.1.4 christos Length = 1;
96 1.1.1.4 christos break;
97 1.1.1.4 christos
98 1.1.1.4 christos case AML_FIELD_ATTRIB_WORD:
99 1.1.1.4 christos case AML_FIELD_ATTRIB_WORD_CALL:
100 1.1.1.4 christos
101 1.1.1.4 christos Length = 2;
102 1.1.1.4 christos break;
103 1.1.1.4 christos
104 1.1.1.4 christos case AML_FIELD_ATTRIB_MULTIBYTE:
105 1.1.1.4 christos case AML_FIELD_ATTRIB_RAW_BYTES:
106 1.1.1.4 christos case AML_FIELD_ATTRIB_RAW_PROCESS:
107 1.1.1.4 christos
108 1.1.1.4 christos Length = AccessLength;
109 1.1.1.4 christos break;
110 1.1.1.4 christos
111 1.1.1.4 christos case AML_FIELD_ATTRIB_BLOCK:
112 1.1.1.4 christos case AML_FIELD_ATTRIB_BLOCK_CALL:
113 1.1.1.4 christos default:
114 1.1.1.4 christos
115 1.1.1.4 christos Length = ACPI_GSBUS_BUFFER_SIZE - 2;
116 1.1.1.4 christos break;
117 1.1.1.4 christos }
118 1.1.1.4 christos
119 1.1.1.4 christos return (Length);
120 1.1.1.4 christos }
121 1.1.1.4 christos
122 1.1 jruoho
123 1.1 jruoho /*******************************************************************************
124 1.1 jruoho *
125 1.1 jruoho * FUNCTION: AcpiExReadDataFromField
126 1.1 jruoho *
127 1.1 jruoho * PARAMETERS: WalkState - Current execution state
128 1.1 jruoho * ObjDesc - The named field
129 1.1 jruoho * RetBufferDesc - Where the return data object is stored
130 1.1 jruoho *
131 1.1 jruoho * RETURN: Status
132 1.1 jruoho *
133 1.1.1.3 christos * DESCRIPTION: Read from a named field. Returns either an Integer or a
134 1.1 jruoho * Buffer, depending on the size of the field.
135 1.1 jruoho *
136 1.1 jruoho ******************************************************************************/
137 1.1 jruoho
138 1.1 jruoho ACPI_STATUS
139 1.1 jruoho AcpiExReadDataFromField (
140 1.1 jruoho ACPI_WALK_STATE *WalkState,
141 1.1 jruoho ACPI_OPERAND_OBJECT *ObjDesc,
142 1.1 jruoho ACPI_OPERAND_OBJECT **RetBufferDesc)
143 1.1 jruoho {
144 1.1 jruoho ACPI_STATUS Status;
145 1.1 jruoho ACPI_OPERAND_OBJECT *BufferDesc;
146 1.1 jruoho ACPI_SIZE Length;
147 1.1 jruoho void *Buffer;
148 1.1 jruoho UINT32 Function;
149 1.1.1.4 christos UINT16 AccessorType;
150 1.1 jruoho
151 1.1 jruoho
152 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (ExReadDataFromField, ObjDesc);
153 1.1 jruoho
154 1.1 jruoho
155 1.1 jruoho /* Parameter validation */
156 1.1 jruoho
157 1.1 jruoho if (!ObjDesc)
158 1.1 jruoho {
159 1.1 jruoho return_ACPI_STATUS (AE_AML_NO_OPERAND);
160 1.1 jruoho }
161 1.1 jruoho if (!RetBufferDesc)
162 1.1 jruoho {
163 1.1 jruoho return_ACPI_STATUS (AE_BAD_PARAMETER);
164 1.1 jruoho }
165 1.1 jruoho
166 1.1 jruoho if (ObjDesc->Common.Type == ACPI_TYPE_BUFFER_FIELD)
167 1.1 jruoho {
168 1.1 jruoho /*
169 1.1 jruoho * If the BufferField arguments have not been previously evaluated,
170 1.1 jruoho * evaluate them now and save the results.
171 1.1 jruoho */
172 1.1 jruoho if (!(ObjDesc->Common.Flags & AOPOBJ_DATA_VALID))
173 1.1 jruoho {
174 1.1 jruoho Status = AcpiDsGetBufferFieldArguments (ObjDesc);
175 1.1 jruoho if (ACPI_FAILURE (Status))
176 1.1 jruoho {
177 1.1 jruoho return_ACPI_STATUS (Status);
178 1.1 jruoho }
179 1.1 jruoho }
180 1.1 jruoho }
181 1.1 jruoho else if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
182 1.1 jruoho (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_SMBUS ||
183 1.1.1.3 christos ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GSBUS ||
184 1.1 jruoho ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_IPMI))
185 1.1 jruoho {
186 1.1 jruoho /*
187 1.1.1.3 christos * This is an SMBus, GSBus or IPMI read. We must create a buffer to hold
188 1.1 jruoho * the data and then directly access the region handler.
189 1.1 jruoho *
190 1.1.1.3 christos * Note: SMBus and GSBus protocol value is passed in upper 16-bits of Function
191 1.1 jruoho */
192 1.1 jruoho if (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_SMBUS)
193 1.1 jruoho {
194 1.1 jruoho Length = ACPI_SMBUS_BUFFER_SIZE;
195 1.1 jruoho Function = ACPI_READ | (ObjDesc->Field.Attribute << 16);
196 1.1 jruoho }
197 1.1.1.3 christos else if (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GSBUS)
198 1.1.1.3 christos {
199 1.1.1.4 christos AccessorType = ObjDesc->Field.Attribute;
200 1.1.1.4 christos Length = AcpiExGetSerialAccessLength (AccessorType,
201 1.1.1.4 christos ObjDesc->Field.AccessLength);
202 1.1.1.4 christos
203 1.1.1.4 christos /*
204 1.1.1.4 christos * Add additional 2 bytes for the GenericSerialBus data buffer:
205 1.1.1.4 christos *
206 1.1.1.4 christos * Status; (Byte 0 of the data buffer)
207 1.1.1.4 christos * Length; (Byte 1 of the data buffer)
208 1.1.1.4 christos * Data[x-1]; (Bytes 2-x of the arbitrary length data buffer)
209 1.1.1.4 christos */
210 1.1.1.4 christos Length += 2;
211 1.1.1.4 christos Function = ACPI_READ | (AccessorType << 16);
212 1.1.1.3 christos }
213 1.1 jruoho else /* IPMI */
214 1.1 jruoho {
215 1.1 jruoho Length = ACPI_IPMI_BUFFER_SIZE;
216 1.1 jruoho Function = ACPI_READ;
217 1.1 jruoho }
218 1.1 jruoho
219 1.1 jruoho BufferDesc = AcpiUtCreateBufferObject (Length);
220 1.1 jruoho if (!BufferDesc)
221 1.1 jruoho {
222 1.1 jruoho return_ACPI_STATUS (AE_NO_MEMORY);
223 1.1 jruoho }
224 1.1 jruoho
225 1.1 jruoho /* Lock entire transaction if requested */
226 1.1 jruoho
227 1.1 jruoho AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
228 1.1 jruoho
229 1.1 jruoho /* Call the region handler for the read */
230 1.1 jruoho
231 1.1 jruoho Status = AcpiExAccessRegion (ObjDesc, 0,
232 1.1 jruoho ACPI_CAST_PTR (UINT64, BufferDesc->Buffer.Pointer),
233 1.1 jruoho Function);
234 1.1 jruoho AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
235 1.1 jruoho goto Exit;
236 1.1 jruoho }
237 1.1 jruoho
238 1.1 jruoho /*
239 1.1 jruoho * Allocate a buffer for the contents of the field.
240 1.1 jruoho *
241 1.1 jruoho * If the field is larger than the current integer width, create
242 1.1.1.3 christos * a BUFFER to hold it. Otherwise, use an INTEGER. This allows
243 1.1 jruoho * the use of arithmetic operators on the returned value if the
244 1.1 jruoho * field size is equal or smaller than an Integer.
245 1.1 jruoho *
246 1.1 jruoho * Note: Field.length is in bits.
247 1.1 jruoho */
248 1.1 jruoho Length = (ACPI_SIZE) ACPI_ROUND_BITS_UP_TO_BYTES (ObjDesc->Field.BitLength);
249 1.1 jruoho if (Length > AcpiGbl_IntegerByteWidth)
250 1.1 jruoho {
251 1.1 jruoho /* Field is too large for an Integer, create a Buffer instead */
252 1.1 jruoho
253 1.1 jruoho BufferDesc = AcpiUtCreateBufferObject (Length);
254 1.1 jruoho if (!BufferDesc)
255 1.1 jruoho {
256 1.1 jruoho return_ACPI_STATUS (AE_NO_MEMORY);
257 1.1 jruoho }
258 1.1 jruoho Buffer = BufferDesc->Buffer.Pointer;
259 1.1 jruoho }
260 1.1 jruoho else
261 1.1 jruoho {
262 1.1 jruoho /* Field will fit within an Integer (normal case) */
263 1.1 jruoho
264 1.1 jruoho BufferDesc = AcpiUtCreateIntegerObject ((UINT64) 0);
265 1.1 jruoho if (!BufferDesc)
266 1.1 jruoho {
267 1.1 jruoho return_ACPI_STATUS (AE_NO_MEMORY);
268 1.1 jruoho }
269 1.1 jruoho
270 1.1 jruoho Length = AcpiGbl_IntegerByteWidth;
271 1.1 jruoho Buffer = &BufferDesc->Integer.Value;
272 1.1 jruoho }
273 1.1 jruoho
274 1.1.1.4 christos if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
275 1.1.1.4 christos (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GPIO))
276 1.1.1.4 christos {
277 1.1.1.4 christos /*
278 1.1.1.4 christos * For GPIO (GeneralPurposeIo), the Address will be the bit offset
279 1.1.1.4 christos * from the previous Connection() operator, making it effectively a
280 1.1.1.4 christos * pin number index. The BitLength is the length of the field, which
281 1.1.1.4 christos * is thus the number of pins.
282 1.1.1.4 christos */
283 1.1.1.4 christos ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
284 1.1.1.4 christos "GPIO FieldRead [FROM]: Pin %u Bits %u\n",
285 1.1.1.4 christos ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
286 1.1.1.4 christos
287 1.1.1.4 christos /* Lock entire transaction if requested */
288 1.1.1.4 christos
289 1.1.1.4 christos AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
290 1.1.1.4 christos
291 1.1.1.4 christos /* Perform the write */
292 1.1.1.4 christos
293 1.1.1.4 christos Status = AcpiExAccessRegion (ObjDesc, 0,
294 1.1.1.4 christos (UINT64 *) Buffer, ACPI_READ);
295 1.1.1.4 christos AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
296 1.1.1.4 christos if (ACPI_FAILURE (Status))
297 1.1.1.4 christos {
298 1.1.1.4 christos AcpiUtRemoveReference (BufferDesc);
299 1.1.1.4 christos }
300 1.1.1.4 christos else
301 1.1.1.4 christos {
302 1.1.1.4 christos *RetBufferDesc = BufferDesc;
303 1.1.1.4 christos }
304 1.1.1.4 christos return_ACPI_STATUS (Status);
305 1.1.1.4 christos }
306 1.1.1.4 christos
307 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
308 1.1 jruoho "FieldRead [TO]: Obj %p, Type %X, Buf %p, ByteLen %X\n",
309 1.1 jruoho ObjDesc, ObjDesc->Common.Type, Buffer, (UINT32) Length));
310 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
311 1.1 jruoho "FieldRead [FROM]: BitLen %X, BitOff %X, ByteOff %X\n",
312 1.1 jruoho ObjDesc->CommonField.BitLength,
313 1.1 jruoho ObjDesc->CommonField.StartFieldBitOffset,
314 1.1 jruoho ObjDesc->CommonField.BaseByteOffset));
315 1.1 jruoho
316 1.1 jruoho /* Lock entire transaction if requested */
317 1.1 jruoho
318 1.1 jruoho AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
319 1.1 jruoho
320 1.1 jruoho /* Read from the field */
321 1.1 jruoho
322 1.1 jruoho Status = AcpiExExtractFromField (ObjDesc, Buffer, (UINT32) Length);
323 1.1 jruoho AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
324 1.1 jruoho
325 1.1 jruoho
326 1.1 jruoho Exit:
327 1.1 jruoho if (ACPI_FAILURE (Status))
328 1.1 jruoho {
329 1.1 jruoho AcpiUtRemoveReference (BufferDesc);
330 1.1 jruoho }
331 1.1 jruoho else
332 1.1 jruoho {
333 1.1 jruoho *RetBufferDesc = BufferDesc;
334 1.1 jruoho }
335 1.1 jruoho
336 1.1 jruoho return_ACPI_STATUS (Status);
337 1.1 jruoho }
338 1.1 jruoho
339 1.1 jruoho
340 1.1 jruoho /*******************************************************************************
341 1.1 jruoho *
342 1.1 jruoho * FUNCTION: AcpiExWriteDataToField
343 1.1 jruoho *
344 1.1 jruoho * PARAMETERS: SourceDesc - Contains data to write
345 1.1 jruoho * ObjDesc - The named field
346 1.1 jruoho * ResultDesc - Where the return value is returned, if any
347 1.1 jruoho *
348 1.1 jruoho * RETURN: Status
349 1.1 jruoho *
350 1.1 jruoho * DESCRIPTION: Write to a named field
351 1.1 jruoho *
352 1.1 jruoho ******************************************************************************/
353 1.1 jruoho
354 1.1 jruoho ACPI_STATUS
355 1.1 jruoho AcpiExWriteDataToField (
356 1.1 jruoho ACPI_OPERAND_OBJECT *SourceDesc,
357 1.1 jruoho ACPI_OPERAND_OBJECT *ObjDesc,
358 1.1 jruoho ACPI_OPERAND_OBJECT **ResultDesc)
359 1.1 jruoho {
360 1.1 jruoho ACPI_STATUS Status;
361 1.1 jruoho UINT32 Length;
362 1.1 jruoho void *Buffer;
363 1.1 jruoho ACPI_OPERAND_OBJECT *BufferDesc;
364 1.1 jruoho UINT32 Function;
365 1.1.1.4 christos UINT16 AccessorType;
366 1.1 jruoho
367 1.1 jruoho
368 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (ExWriteDataToField, ObjDesc);
369 1.1 jruoho
370 1.1 jruoho
371 1.1 jruoho /* Parameter validation */
372 1.1 jruoho
373 1.1 jruoho if (!SourceDesc || !ObjDesc)
374 1.1 jruoho {
375 1.1 jruoho return_ACPI_STATUS (AE_AML_NO_OPERAND);
376 1.1 jruoho }
377 1.1 jruoho
378 1.1 jruoho if (ObjDesc->Common.Type == ACPI_TYPE_BUFFER_FIELD)
379 1.1 jruoho {
380 1.1 jruoho /*
381 1.1 jruoho * If the BufferField arguments have not been previously evaluated,
382 1.1 jruoho * evaluate them now and save the results.
383 1.1 jruoho */
384 1.1 jruoho if (!(ObjDesc->Common.Flags & AOPOBJ_DATA_VALID))
385 1.1 jruoho {
386 1.1 jruoho Status = AcpiDsGetBufferFieldArguments (ObjDesc);
387 1.1 jruoho if (ACPI_FAILURE (Status))
388 1.1 jruoho {
389 1.1 jruoho return_ACPI_STATUS (Status);
390 1.1 jruoho }
391 1.1 jruoho }
392 1.1 jruoho }
393 1.1 jruoho else if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
394 1.1 jruoho (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_SMBUS ||
395 1.1.1.3 christos ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GSBUS ||
396 1.1 jruoho ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_IPMI))
397 1.1 jruoho {
398 1.1 jruoho /*
399 1.1.1.3 christos * This is an SMBus, GSBus or IPMI write. We will bypass the entire field
400 1.1 jruoho * mechanism and handoff the buffer directly to the handler. For
401 1.1 jruoho * these address spaces, the buffer is bi-directional; on a write,
402 1.1 jruoho * return data is returned in the same buffer.
403 1.1 jruoho *
404 1.1 jruoho * Source must be a buffer of sufficient size:
405 1.1.1.3 christos * ACPI_SMBUS_BUFFER_SIZE, ACPI_GSBUS_BUFFER_SIZE, or ACPI_IPMI_BUFFER_SIZE.
406 1.1 jruoho *
407 1.1.1.3 christos * Note: SMBus and GSBus protocol type is passed in upper 16-bits of Function
408 1.1 jruoho */
409 1.1 jruoho if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER)
410 1.1 jruoho {
411 1.1 jruoho ACPI_ERROR ((AE_INFO,
412 1.1.1.3 christos "SMBus/IPMI/GenericSerialBus write requires Buffer, found type %s",
413 1.1 jruoho AcpiUtGetObjectTypeName (SourceDesc)));
414 1.1 jruoho
415 1.1 jruoho return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
416 1.1 jruoho }
417 1.1 jruoho
418 1.1 jruoho if (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_SMBUS)
419 1.1 jruoho {
420 1.1 jruoho Length = ACPI_SMBUS_BUFFER_SIZE;
421 1.1 jruoho Function = ACPI_WRITE | (ObjDesc->Field.Attribute << 16);
422 1.1 jruoho }
423 1.1.1.3 christos else if (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GSBUS)
424 1.1.1.3 christos {
425 1.1.1.4 christos AccessorType = ObjDesc->Field.Attribute;
426 1.1.1.4 christos Length = AcpiExGetSerialAccessLength (AccessorType,
427 1.1.1.4 christos ObjDesc->Field.AccessLength);
428 1.1.1.4 christos
429 1.1.1.4 christos /*
430 1.1.1.4 christos * Add additional 2 bytes for the GenericSerialBus data buffer:
431 1.1.1.4 christos *
432 1.1.1.4 christos * Status; (Byte 0 of the data buffer)
433 1.1.1.4 christos * Length; (Byte 1 of the data buffer)
434 1.1.1.4 christos * Data[x-1]; (Bytes 2-x of the arbitrary length data buffer)
435 1.1.1.4 christos */
436 1.1.1.4 christos Length += 2;
437 1.1.1.4 christos Function = ACPI_WRITE | (AccessorType << 16);
438 1.1.1.3 christos }
439 1.1 jruoho else /* IPMI */
440 1.1 jruoho {
441 1.1 jruoho Length = ACPI_IPMI_BUFFER_SIZE;
442 1.1 jruoho Function = ACPI_WRITE;
443 1.1 jruoho }
444 1.1 jruoho
445 1.1 jruoho if (SourceDesc->Buffer.Length < Length)
446 1.1 jruoho {
447 1.1 jruoho ACPI_ERROR ((AE_INFO,
448 1.1.1.3 christos "SMBus/IPMI/GenericSerialBus write requires Buffer of length %u, found length %u",
449 1.1 jruoho Length, SourceDesc->Buffer.Length));
450 1.1 jruoho
451 1.1 jruoho return_ACPI_STATUS (AE_AML_BUFFER_LIMIT);
452 1.1 jruoho }
453 1.1 jruoho
454 1.1 jruoho /* Create the bi-directional buffer */
455 1.1 jruoho
456 1.1 jruoho BufferDesc = AcpiUtCreateBufferObject (Length);
457 1.1 jruoho if (!BufferDesc)
458 1.1 jruoho {
459 1.1 jruoho return_ACPI_STATUS (AE_NO_MEMORY);
460 1.1 jruoho }
461 1.1 jruoho
462 1.1 jruoho Buffer = BufferDesc->Buffer.Pointer;
463 1.1.1.6 christos memcpy (Buffer, SourceDesc->Buffer.Pointer, Length);
464 1.1 jruoho
465 1.1 jruoho /* Lock entire transaction if requested */
466 1.1 jruoho
467 1.1 jruoho AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
468 1.1 jruoho
469 1.1 jruoho /*
470 1.1 jruoho * Perform the write (returns status and perhaps data in the
471 1.1 jruoho * same buffer)
472 1.1 jruoho */
473 1.1 jruoho Status = AcpiExAccessRegion (ObjDesc, 0,
474 1.1 jruoho (UINT64 *) Buffer, Function);
475 1.1 jruoho AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
476 1.1 jruoho
477 1.1 jruoho *ResultDesc = BufferDesc;
478 1.1 jruoho return_ACPI_STATUS (Status);
479 1.1 jruoho }
480 1.1.1.4 christos else if ((ObjDesc->Common.Type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
481 1.1.1.4 christos (ObjDesc->Field.RegionObj->Region.SpaceId == ACPI_ADR_SPACE_GPIO))
482 1.1.1.4 christos {
483 1.1.1.4 christos /*
484 1.1.1.4 christos * For GPIO (GeneralPurposeIo), we will bypass the entire field
485 1.1.1.4 christos * mechanism and handoff the bit address and bit width directly to
486 1.1.1.4 christos * the handler. The Address will be the bit offset
487 1.1.1.4 christos * from the previous Connection() operator, making it effectively a
488 1.1.1.4 christos * pin number index. The BitLength is the length of the field, which
489 1.1.1.4 christos * is thus the number of pins.
490 1.1.1.4 christos */
491 1.1.1.4 christos if (SourceDesc->Common.Type != ACPI_TYPE_INTEGER)
492 1.1.1.4 christos {
493 1.1.1.4 christos return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
494 1.1.1.4 christos }
495 1.1.1.4 christos
496 1.1.1.4 christos ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
497 1.1.1.4 christos "GPIO FieldWrite [FROM]: (%s:%X), Val %.8X [TO]: Pin %u Bits %u\n",
498 1.1.1.4 christos AcpiUtGetTypeName (SourceDesc->Common.Type),
499 1.1.1.4 christos SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value,
500 1.1.1.4 christos ObjDesc->Field.PinNumberIndex, ObjDesc->Field.BitLength));
501 1.1.1.4 christos
502 1.1.1.4 christos Buffer = &SourceDesc->Integer.Value;
503 1.1.1.4 christos
504 1.1.1.4 christos /* Lock entire transaction if requested */
505 1.1.1.4 christos
506 1.1.1.4 christos AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
507 1.1.1.4 christos
508 1.1.1.4 christos /* Perform the write */
509 1.1.1.4 christos
510 1.1.1.4 christos Status = AcpiExAccessRegion (ObjDesc, 0,
511 1.1.1.4 christos (UINT64 *) Buffer, ACPI_WRITE);
512 1.1.1.4 christos AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
513 1.1.1.4 christos return_ACPI_STATUS (Status);
514 1.1.1.4 christos }
515 1.1 jruoho
516 1.1 jruoho /* Get a pointer to the data to be written */
517 1.1 jruoho
518 1.1 jruoho switch (SourceDesc->Common.Type)
519 1.1 jruoho {
520 1.1 jruoho case ACPI_TYPE_INTEGER:
521 1.1.1.3 christos
522 1.1 jruoho Buffer = &SourceDesc->Integer.Value;
523 1.1 jruoho Length = sizeof (SourceDesc->Integer.Value);
524 1.1 jruoho break;
525 1.1 jruoho
526 1.1 jruoho case ACPI_TYPE_BUFFER:
527 1.1.1.3 christos
528 1.1 jruoho Buffer = SourceDesc->Buffer.Pointer;
529 1.1 jruoho Length = SourceDesc->Buffer.Length;
530 1.1 jruoho break;
531 1.1 jruoho
532 1.1 jruoho case ACPI_TYPE_STRING:
533 1.1.1.3 christos
534 1.1 jruoho Buffer = SourceDesc->String.Pointer;
535 1.1 jruoho Length = SourceDesc->String.Length;
536 1.1 jruoho break;
537 1.1 jruoho
538 1.1 jruoho default:
539 1.1.1.3 christos
540 1.1 jruoho return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
541 1.1 jruoho }
542 1.1 jruoho
543 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
544 1.1 jruoho "FieldWrite [FROM]: Obj %p (%s:%X), Buf %p, ByteLen %X\n",
545 1.1 jruoho SourceDesc, AcpiUtGetTypeName (SourceDesc->Common.Type),
546 1.1 jruoho SourceDesc->Common.Type, Buffer, Length));
547 1.1 jruoho
548 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_BFIELD,
549 1.1 jruoho "FieldWrite [TO]: Obj %p (%s:%X), BitLen %X, BitOff %X, ByteOff %X\n",
550 1.1 jruoho ObjDesc, AcpiUtGetTypeName (ObjDesc->Common.Type),
551 1.1 jruoho ObjDesc->Common.Type,
552 1.1 jruoho ObjDesc->CommonField.BitLength,
553 1.1 jruoho ObjDesc->CommonField.StartFieldBitOffset,
554 1.1 jruoho ObjDesc->CommonField.BaseByteOffset));
555 1.1 jruoho
556 1.1 jruoho /* Lock entire transaction if requested */
557 1.1 jruoho
558 1.1 jruoho AcpiExAcquireGlobalLock (ObjDesc->CommonField.FieldFlags);
559 1.1 jruoho
560 1.1 jruoho /* Write to the field */
561 1.1 jruoho
562 1.1 jruoho Status = AcpiExInsertIntoField (ObjDesc, Buffer, Length);
563 1.1 jruoho AcpiExReleaseGlobalLock (ObjDesc->CommonField.FieldFlags);
564 1.1 jruoho
565 1.1 jruoho return_ACPI_STATUS (Status);
566 1.1 jruoho }
567