blob: d3d2dbfba680c18d533caf861eb26a910dbc0db1 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
Bob Mooree324e102018-10-03 11:45:36 -07004 * Module Name: exfield - AML execution - field_unit read/write
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Bob Moore840c02c2019-01-14 09:55:25 -08006 * Copyright (C) 2000 - 2019, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050011#include "accommon.h"
12#include "acdispat.h"
13#include "acinterp.h"
Lv Zheng6273f002014-04-16 21:24:34 +080014#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040017ACPI_MODULE_NAME("exfield")
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Bob Mooree324e102018-10-03 11:45:36 -070019/*
20 * This table maps the various Attrib protocols to the byte transfer
21 * length. Used for the generic serial bus.
22 */
23#define ACPI_INVALID_PROTOCOL_ID 0x80
24#define ACPI_MAX_PROTOCOL_ID 0x0F
Bob Mooree324e102018-10-03 11:45:36 -070025const u8 acpi_protocol_lengths[] = {
26 ACPI_INVALID_PROTOCOL_ID, /* 0 - reserved */
27 ACPI_INVALID_PROTOCOL_ID, /* 1 - reserved */
28 0x00, /* 2 - ATTRIB_QUICK */
29 ACPI_INVALID_PROTOCOL_ID, /* 3 - reserved */
30 0x01, /* 4 - ATTRIB_SEND_RECEIVE */
31 ACPI_INVALID_PROTOCOL_ID, /* 5 - reserved */
32 0x01, /* 6 - ATTRIB_BYTE */
33 ACPI_INVALID_PROTOCOL_ID, /* 7 - reserved */
34 0x02, /* 8 - ATTRIB_WORD */
35 ACPI_INVALID_PROTOCOL_ID, /* 9 - reserved */
36 0xFF, /* A - ATTRIB_BLOCK */
37 0xFF, /* B - ATTRIB_BYTES */
38 0x02, /* C - ATTRIB_PROCESS_CALL */
39 0xFF, /* D - ATTRIB_BLOCK_PROCESS_CALL */
40 0xFF, /* E - ATTRIB_RAW_BYTES */
41 0xFF /* F - ATTRIB_RAW_PROCESS_BYTES */
42};
Lv Zheng6273f002014-04-16 21:24:34 +080043
Erik Schmaussc163f90c2019-02-15 13:36:19 -080044#define PCC_MASTER_SUBSPACE 3
Erik Schmaussaa6ec562019-02-22 16:06:25 -080045
46/*
47 * The following macros determine a given offset is a COMD field.
48 * According to the specification, generic subspaces (types 0-2) contains a
49 * 2-byte COMD field at offset 4 and master subspaces (type 3) contains a 4-byte
50 * COMD field starting at offset 12.
51 */
Erik Schmaussc163f90c2019-02-15 13:36:19 -080052#define GENERIC_SUBSPACE_COMMAND(a) (4 == a || a == 5)
53#define MASTER_SUBSPACE_COMMAND(a) (12 <= a && a <= 15)
Erik Schmaussaa6ec562019-02-22 16:06:25 -080054
Lv Zheng6273f002014-04-16 21:24:34 +080055/*******************************************************************************
56 *
Bob Mooree324e102018-10-03 11:45:36 -070057 * FUNCTION: acpi_ex_get_protocol_buffer_length
Lv Zheng6273f002014-04-16 21:24:34 +080058 *
Bob Mooree324e102018-10-03 11:45:36 -070059 * PARAMETERS: protocol_id - The type of the protocol indicated by region
Lv Zheng6273f002014-04-16 21:24:34 +080060 * field access attributes
Bob Mooree324e102018-10-03 11:45:36 -070061 * return_length - Where the protocol byte transfer length is
62 * returned
Lv Zheng6273f002014-04-16 21:24:34 +080063 *
Bob Mooree324e102018-10-03 11:45:36 -070064 * RETURN: Status and decoded byte transfer length
Lv Zheng6273f002014-04-16 21:24:34 +080065 *
66 * DESCRIPTION: This routine returns the length of the generic_serial_bus
67 * protocol bytes
68 *
69 ******************************************************************************/
70
Bob Mooree324e102018-10-03 11:45:36 -070071acpi_status
72acpi_ex_get_protocol_buffer_length(u32 protocol_id, u32 *return_length)
Lv Zheng6273f002014-04-16 21:24:34 +080073{
Lv Zheng6273f002014-04-16 21:24:34 +080074
Bob Mooree324e102018-10-03 11:45:36 -070075 if ((protocol_id > ACPI_MAX_PROTOCOL_ID) ||
76 (acpi_protocol_lengths[protocol_id] == ACPI_INVALID_PROTOCOL_ID)) {
77 ACPI_ERROR((AE_INFO,
78 "Invalid Field/AccessAs protocol ID: 0x%4.4X",
79 protocol_id));
Lv Zheng6273f002014-04-16 21:24:34 +080080
Bob Mooree324e102018-10-03 11:45:36 -070081 return (AE_AML_PROTOCOL);
Lv Zheng6273f002014-04-16 21:24:34 +080082 }
83
Bob Mooree324e102018-10-03 11:45:36 -070084 *return_length = acpi_protocol_lengths[protocol_id];
85 return (AE_OK);
Lv Zheng6273f002014-04-16 21:24:34 +080086}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*******************************************************************************
89 *
90 * FUNCTION: acpi_ex_read_data_from_field
91 *
92 * PARAMETERS: walk_state - Current execution state
93 * obj_desc - The named field
94 * ret_buffer_desc - Where the return data object is stored
95 *
96 * RETURN: Status
97 *
Bob Moore73a30902012-10-31 02:26:55 +000098 * DESCRIPTION: Read from a named field. Returns either an Integer or a
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * Buffer, depending on the size of the field.
100 *
101 ******************************************************************************/
Lv Zheng6273f002014-04-16 21:24:34 +0800102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103acpi_status
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800104acpi_ex_read_data_from_field(struct acpi_walk_state *walk_state,
Len Brown4be44fc2005-08-05 00:44:28 -0400105 union acpi_operand_object *obj_desc,
106 union acpi_operand_object **ret_buffer_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Len Brown4be44fc2005-08-05 00:44:28 -0400108 acpi_status status;
109 union acpi_operand_object *buffer_desc;
Len Brown4be44fc2005-08-05 00:44:28 -0400110 void *buffer;
Bob Mooree324e102018-10-03 11:45:36 -0700111 u32 buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Bob Mooreb229cf92006-04-21 17:15:00 -0400113 ACPI_FUNCTION_TRACE_PTR(ex_read_data_from_field, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* Parameter validation */
116
117 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400118 return_ACPI_STATUS(AE_AML_NO_OPERAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Robert Moore88ac00f2005-05-26 00:00:00 -0400120 if (!ret_buffer_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 return_ACPI_STATUS(AE_BAD_PARAMETER);
Robert Moore88ac00f2005-05-26 00:00:00 -0400122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Bob Moore3371c192009-02-18 14:44:03 +0800124 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /*
126 * If the buffer_field arguments have not been previously evaluated,
127 * evaluate them now and save the results.
128 */
129 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400130 status = acpi_ds_get_buffer_field_arguments(obj_desc);
131 if (ACPI_FAILURE(status)) {
132 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134 }
Bob Moore3371c192009-02-18 14:44:03 +0800135 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
136 (obj_desc->field.region_obj->region.space_id ==
Lin Ming6557a492009-06-24 11:32:04 +0800137 ACPI_ADR_SPACE_SMBUS
138 || obj_desc->field.region_obj->region.space_id ==
Bob Moore2da120b2011-11-16 14:14:32 +0800139 ACPI_ADR_SPACE_GSBUS
140 || obj_desc->field.region_obj->region.space_id ==
Lin Ming6557a492009-06-24 11:32:04 +0800141 ACPI_ADR_SPACE_IPMI)) {
Bob Mooref99b89e2018-10-03 11:45:34 -0700142
Bob Mooree324e102018-10-03 11:45:36 -0700143 /* SMBus, GSBus, IPMI serial */
Bob Mooref99b89e2018-10-03 11:45:34 -0700144
Bob Mooree324e102018-10-03 11:45:36 -0700145 status = acpi_ex_read_serial_bus(obj_desc, ret_buffer_desc);
146 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
149 /*
150 * Allocate a buffer for the contents of the field.
151 *
Bob Moore5df7e6c2010-01-21 10:06:32 +0800152 * If the field is larger than the current integer width, create
Bob Moore73a30902012-10-31 02:26:55 +0000153 * a BUFFER to hold it. Otherwise, use an INTEGER. This allows
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * the use of arithmetic operators on the returned value if the
155 * field size is equal or smaller than an Integer.
156 *
157 * Note: Field.length is in bits.
158 */
Bob Mooree324e102018-10-03 11:45:36 -0700159 buffer_length =
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800160 (acpi_size)ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->field.bit_length);
Bob Moore1fad8732015-12-29 13:54:36 +0800161
Bob Mooree324e102018-10-03 11:45:36 -0700162 if (buffer_length > acpi_gbl_integer_byte_width) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* Field is too large for an Integer, create a Buffer instead */
165
Bob Mooree324e102018-10-03 11:45:36 -0700166 buffer_desc = acpi_ut_create_buffer_object(buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!buffer_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400168 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170 buffer = buffer_desc->buffer.pointer;
Len Brown4be44fc2005-08-05 00:44:28 -0400171 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Field will fit within an Integer (normal case) */
173
Bob Mooredc95a272009-11-12 09:52:45 +0800174 buffer_desc = acpi_ut_create_integer_object((u64) 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (!buffer_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400176 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
Bob Mooree324e102018-10-03 11:45:36 -0700179 buffer_length = acpi_gbl_integer_byte_width;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 buffer = &buffer_desc->integer.value;
181 }
182
Bob Moore75ec6e52014-09-23 10:35:47 +0800183 if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
184 (obj_desc->field.region_obj->region.space_id ==
185 ACPI_ADR_SPACE_GPIO)) {
Bob Moore75ec6e52014-09-23 10:35:47 +0800186
Bob Mooree324e102018-10-03 11:45:36 -0700187 /* General Purpose I/O */
Bob Moore75ec6e52014-09-23 10:35:47 +0800188
Bob Mooree324e102018-10-03 11:45:36 -0700189 status = acpi_ex_read_gpio(obj_desc, buffer);
190 goto exit;
Erik Schmaussaa6ec562019-02-22 16:06:25 -0800191 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
192 (obj_desc->field.region_obj->region.space_id ==
193 ACPI_ADR_SPACE_PLATFORM_COMM)) {
194 /*
195 * Reading from a PCC field unit does not require the handler because
196 * it only requires reading from the internal_pcc_buffer.
197 */
198 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
199 "PCC FieldRead bits %u\n",
200 obj_desc->field.bit_length));
201
202 memcpy(buffer,
203 obj_desc->field.region_obj->field.internal_pcc_buffer +
204 obj_desc->field.base_byte_offset,
205 (acpi_size)ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->field.
206 bit_length));
207
208 *ret_buffer_desc = buffer_desc;
209 return AE_OK;
Bob Moore75ec6e52014-09-23 10:35:47 +0800210 }
211
Len Brown4be44fc2005-08-05 00:44:28 -0400212 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400213 "FieldRead [TO]: Obj %p, Type %X, Buf %p, ByteLen %X\n",
Bob Moore3371c192009-02-18 14:44:03 +0800214 obj_desc, obj_desc->common.type, buffer,
Bob Mooree324e102018-10-03 11:45:36 -0700215 buffer_length));
Len Brown4be44fc2005-08-05 00:44:28 -0400216 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400217 "FieldRead [FROM]: BitLen %X, BitOff %X, ByteOff %X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400218 obj_desc->common_field.bit_length,
219 obj_desc->common_field.start_field_bit_offset,
220 obj_desc->common_field.base_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* Lock entire transaction if requested */
223
Bob Mooreba886cd2008-04-10 19:06:37 +0400224 acpi_ex_acquire_global_lock(obj_desc->common_field.field_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* Read from the field */
227
Bob Mooree324e102018-10-03 11:45:36 -0700228 status = acpi_ex_extract_from_field(obj_desc, buffer, buffer_length);
Bob Mooref02e9fa2008-04-10 19:06:37 +0400229 acpi_ex_release_global_lock(obj_desc->common_field.field_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Lv Zheng10622bf2013-10-29 09:30:02 +0800231exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400232 if (ACPI_FAILURE(status)) {
233 acpi_ut_remove_reference(buffer_desc);
234 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 *ret_buffer_desc = buffer_desc;
236 }
237
Len Brown4be44fc2005-08-05 00:44:28 -0400238 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*******************************************************************************
242 *
243 * FUNCTION: acpi_ex_write_data_to_field
244 *
245 * PARAMETERS: source_desc - Contains data to write
246 * obj_desc - The named field
Robert Moore44f6c012005-04-18 22:49:35 -0400247 * result_desc - Where the return value is returned, if any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 *
249 * RETURN: Status
250 *
251 * DESCRIPTION: Write to a named field
252 *
253 ******************************************************************************/
254
255acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400256acpi_ex_write_data_to_field(union acpi_operand_object *source_desc,
257 union acpi_operand_object *obj_desc,
258 union acpi_operand_object **result_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Len Brown4be44fc2005-08-05 00:44:28 -0400260 acpi_status status;
Bob Mooree324e102018-10-03 11:45:36 -0700261 u32 buffer_length;
Erik Schmaussaa6ec562019-02-22 16:06:25 -0800262 u32 data_length;
Len Brown4be44fc2005-08-05 00:44:28 -0400263 void *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Bob Mooreb229cf92006-04-21 17:15:00 -0400265 ACPI_FUNCTION_TRACE_PTR(ex_write_data_to_field, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* Parameter validation */
268
269 if (!source_desc || !obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400270 return_ACPI_STATUS(AE_AML_NO_OPERAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
Bob Moore3371c192009-02-18 14:44:03 +0800273 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /*
275 * If the buffer_field arguments have not been previously evaluated,
276 * evaluate them now and save the results.
277 */
278 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400279 status = acpi_ds_get_buffer_field_arguments(obj_desc);
280 if (ACPI_FAILURE(status)) {
281 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283 }
Bob Moore3371c192009-02-18 14:44:03 +0800284 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
285 (obj_desc->field.region_obj->region.space_id ==
Bob Mooree324e102018-10-03 11:45:36 -0700286 ACPI_ADR_SPACE_GPIO)) {
287
288 /* General Purpose I/O */
289
290 status = acpi_ex_write_gpio(source_desc, obj_desc, result_desc);
291 return_ACPI_STATUS(status);
292 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
293 (obj_desc->field.region_obj->region.space_id ==
Lin Ming6557a492009-06-24 11:32:04 +0800294 ACPI_ADR_SPACE_SMBUS
295 || obj_desc->field.region_obj->region.space_id ==
Bob Moore2da120b2011-11-16 14:14:32 +0800296 ACPI_ADR_SPACE_GSBUS
297 || obj_desc->field.region_obj->region.space_id ==
Lin Ming6557a492009-06-24 11:32:04 +0800298 ACPI_ADR_SPACE_IPMI)) {
Robert Moore44f6c012005-04-18 22:49:35 -0400299
Bob Mooree324e102018-10-03 11:45:36 -0700300 /* SMBus, GSBus, IPMI serial */
Bob Moore75ec6e52014-09-23 10:35:47 +0800301
Bob Moore1fad8732015-12-29 13:54:36 +0800302 status =
Bob Mooree324e102018-10-03 11:45:36 -0700303 acpi_ex_write_serial_bus(source_desc, obj_desc,
304 result_desc);
Bob Moore75ec6e52014-09-23 10:35:47 +0800305 return_ACPI_STATUS(status);
Erik Schmaussaa6ec562019-02-22 16:06:25 -0800306 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) &&
307 (obj_desc->field.region_obj->region.space_id ==
308 ACPI_ADR_SPACE_PLATFORM_COMM)) {
309 /*
310 * According to the spec a write to the COMD field will invoke the
311 * region handler. Otherwise, write to the pcc_internal buffer. This
312 * implementation will use the offsets specified rather than the name
313 * of the field. This is considered safer because some firmware tools
314 * are known to obfiscate named objects.
315 */
316 data_length =
317 (acpi_size)ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->field.
318 bit_length);
319 memcpy(obj_desc->field.region_obj->field.internal_pcc_buffer +
320 obj_desc->field.base_byte_offset,
321 source_desc->buffer.pointer, data_length);
Erik Schmaussc163f90c2019-02-15 13:36:19 -0800322
Erik Schmaussaa6ec562019-02-22 16:06:25 -0800323 if ((obj_desc->field.region_obj->region.address ==
324 PCC_MASTER_SUBSPACE
325 && MASTER_SUBSPACE_COMMAND(obj_desc->field.
326 base_byte_offset))
327 || GENERIC_SUBSPACE_COMMAND(obj_desc->field.
328 base_byte_offset)) {
329
330 /* Perform the write */
331
332 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
333 "PCC COMD field has been written. Invoking PCC handler now.\n"));
334
335 status =
336 acpi_ex_access_region(obj_desc, 0,
337 (u64 *)obj_desc->field.
338 region_obj->field.
339 internal_pcc_buffer,
340 ACPI_WRITE);
341 return_ACPI_STATUS(status);
342 }
343 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
Robert Moore44f6c012005-04-18 22:49:35 -0400346 /* Get a pointer to the data to be written */
347
Bob Moore3371c192009-02-18 14:44:03 +0800348 switch (source_desc->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 case ACPI_TYPE_INTEGER:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 buffer = &source_desc->integer.value;
Bob Mooree324e102018-10-03 11:45:36 -0700352 buffer_length = sizeof(source_desc->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 break;
354
355 case ACPI_TYPE_BUFFER:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 buffer = source_desc->buffer.pointer;
Bob Mooree324e102018-10-03 11:45:36 -0700358 buffer_length = source_desc->buffer.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360
361 case ACPI_TYPE_STRING:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 buffer = source_desc->string.pointer;
Bob Mooree324e102018-10-03 11:45:36 -0700364 buffer_length = source_desc->string.length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 break;
366
367 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400368 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370
Len Brown4be44fc2005-08-05 00:44:28 -0400371 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400372 "FieldWrite [FROM]: Obj %p (%s:%X), Buf %p, ByteLen %X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400373 source_desc,
Bob Moore3371c192009-02-18 14:44:03 +0800374 acpi_ut_get_type_name(source_desc->common.type),
Bob Mooree324e102018-10-03 11:45:36 -0700375 source_desc->common.type, buffer, buffer_length));
Robert Moore44f6c012005-04-18 22:49:35 -0400376
Len Brown4be44fc2005-08-05 00:44:28 -0400377 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
Bob Mooreb229cf92006-04-21 17:15:00 -0400378 "FieldWrite [TO]: Obj %p (%s:%X), BitLen %X, BitOff %X, ByteOff %X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400379 obj_desc,
Bob Moore3371c192009-02-18 14:44:03 +0800380 acpi_ut_get_type_name(obj_desc->common.type),
381 obj_desc->common.type,
Len Brown4be44fc2005-08-05 00:44:28 -0400382 obj_desc->common_field.bit_length,
383 obj_desc->common_field.start_field_bit_offset,
384 obj_desc->common_field.base_byte_offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /* Lock entire transaction if requested */
387
Bob Mooreba886cd2008-04-10 19:06:37 +0400388 acpi_ex_acquire_global_lock(obj_desc->common_field.field_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* Write to the field */
391
Bob Mooree324e102018-10-03 11:45:36 -0700392 status = acpi_ex_insert_into_field(obj_desc, buffer, buffer_length);
393 acpi_ex_release_global_lock(obj_desc->common_field.field_flags);
394 return_ACPI_STATUS(status);
395}