drm/panel: panel-himax-hx83102: support for csot-pna957qt1-1 MIPI-DSI panel
[drm/drm-misc.git] / drivers / acpi / acpica / exserial.c
blob5241f4c01c765585ac3a47642602fc3d9ae68ede
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exserial - field_unit support for serial address spaces
6 * Copyright (C) 2000 - 2023, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acdispat.h"
13 #include "acinterp.h"
14 #include "amlcode.h"
16 #define _COMPONENT ACPI_EXECUTER
17 ACPI_MODULE_NAME("exserial")
19 /*******************************************************************************
21 * FUNCTION: acpi_ex_read_gpio
23 * PARAMETERS: obj_desc - The named field to read
24 * buffer - Where the return data is returned
26 * RETURN: Status
28 * DESCRIPTION: Read from a named field that references a Generic Serial Bus
29 * field
31 ******************************************************************************/
32 acpi_status acpi_ex_read_gpio(union acpi_operand_object *obj_desc, void *buffer)
34 acpi_status status;
36 ACPI_FUNCTION_TRACE_PTR(ex_read_gpio, obj_desc);
39 * For GPIO (general_purpose_io), the Address will be the bit offset
40 * from the previous Connection() operator, making it effectively a
41 * pin number index. The bit_length is the length of the field, which
42 * is thus the number of pins.
44 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
45 "GPIO FieldRead [FROM]: Pin %u Bits %u\n",
46 obj_desc->field.pin_number_index,
47 obj_desc->field.bit_length));
49 /* Lock entire transaction if requested */
51 acpi_ex_acquire_global_lock(obj_desc->common_field.field_flags);
53 /* Perform the read */
55 status = acpi_ex_access_region(obj_desc, 0, (u64 *)buffer, ACPI_READ);
57 acpi_ex_release_global_lock(obj_desc->common_field.field_flags);
58 return_ACPI_STATUS(status);
61 /*******************************************************************************
63 * FUNCTION: acpi_ex_write_gpio
65 * PARAMETERS: source_desc - Contains data to write. Expect to be
66 * an Integer object.
67 * obj_desc - The named field
68 * result_desc - Where the return value is returned, if any
70 * RETURN: Status
72 * DESCRIPTION: Write to a named field that references a General Purpose I/O
73 * field.
75 ******************************************************************************/
77 acpi_status
78 acpi_ex_write_gpio(union acpi_operand_object *source_desc,
79 union acpi_operand_object *obj_desc,
80 union acpi_operand_object **return_buffer)
82 acpi_status status;
83 void *buffer;
85 ACPI_FUNCTION_TRACE_PTR(ex_write_gpio, obj_desc);
88 * For GPIO (general_purpose_io), we will bypass the entire field
89 * mechanism and handoff the bit address and bit width directly to
90 * the handler. The Address will be the bit offset
91 * from the previous Connection() operator, making it effectively a
92 * pin number index. The bit_length is the length of the field, which
93 * is thus the number of pins.
95 if (source_desc->common.type != ACPI_TYPE_INTEGER) {
96 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
99 ACPI_DEBUG_PRINT((ACPI_DB_BFIELD,
100 "GPIO FieldWrite [FROM]: (%s:%X), Value %.8X [TO]: Pin %u Bits %u\n",
101 acpi_ut_get_type_name(source_desc->common.type),
102 source_desc->common.type,
103 (u32)source_desc->integer.value,
104 obj_desc->field.pin_number_index,
105 obj_desc->field.bit_length));
107 buffer = &source_desc->integer.value;
109 /* Lock entire transaction if requested */
111 acpi_ex_acquire_global_lock(obj_desc->common_field.field_flags);
113 /* Perform the write */
115 status = acpi_ex_access_region(obj_desc, 0, (u64 *)buffer, ACPI_WRITE);
116 acpi_ex_release_global_lock(obj_desc->common_field.field_flags);
117 return_ACPI_STATUS(status);
120 /*******************************************************************************
122 * FUNCTION: acpi_ex_read_serial_bus
124 * PARAMETERS: obj_desc - The named field to read
125 * return_buffer - Where the return value is returned, if any
127 * RETURN: Status
129 * DESCRIPTION: Read from a named field that references a serial bus
130 * (SMBus, IPMI, or GSBus).
132 ******************************************************************************/
134 acpi_status
135 acpi_ex_read_serial_bus(union acpi_operand_object *obj_desc,
136 union acpi_operand_object **return_buffer)
138 acpi_status status;
139 u32 buffer_length;
140 union acpi_operand_object *buffer_desc;
141 u32 function;
142 u16 accessor_type;
144 ACPI_FUNCTION_TRACE_PTR(ex_read_serial_bus, obj_desc);
147 * This is an SMBus, GSBus or IPMI read. We must create a buffer to
148 * hold the data and then directly access the region handler.
150 * Note: SMBus and GSBus protocol value is passed in upper 16-bits
151 * of Function
153 * Common buffer format:
154 * Status; (Byte 0 of the data buffer)
155 * Length; (Byte 1 of the data buffer)
156 * Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
158 switch (obj_desc->field.region_obj->region.space_id) {
159 case ACPI_ADR_SPACE_SMBUS:
161 buffer_length = ACPI_SMBUS_BUFFER_SIZE;
162 function = ACPI_READ | (obj_desc->field.attribute << 16);
163 break;
165 case ACPI_ADR_SPACE_IPMI:
167 buffer_length = ACPI_IPMI_BUFFER_SIZE;
168 function = ACPI_READ;
169 break;
171 case ACPI_ADR_SPACE_GSBUS:
173 accessor_type = obj_desc->field.attribute;
174 if (accessor_type == AML_FIELD_ATTRIB_RAW_PROCESS_BYTES) {
175 ACPI_ERROR((AE_INFO,
176 "Invalid direct read using bidirectional write-then-read protocol"));
178 return_ACPI_STATUS(AE_AML_PROTOCOL);
181 status =
182 acpi_ex_get_protocol_buffer_length(accessor_type,
183 &buffer_length);
184 if (ACPI_FAILURE(status)) {
185 ACPI_ERROR((AE_INFO,
186 "Invalid protocol ID for GSBus: 0x%4.4X",
187 accessor_type));
189 return_ACPI_STATUS(status);
192 /* Add header length to get the full size of the buffer */
194 buffer_length += ACPI_SERIAL_HEADER_SIZE;
195 function = ACPI_READ | (accessor_type << 16);
196 break;
198 case ACPI_ADR_SPACE_PLATFORM_RT:
200 buffer_length = ACPI_PRM_INPUT_BUFFER_SIZE;
201 function = ACPI_READ;
202 break;
204 default:
205 return_ACPI_STATUS(AE_AML_INVALID_SPACE_ID);
208 /* Create the local transfer buffer that is returned to the caller */
210 buffer_desc = acpi_ut_create_buffer_object(buffer_length);
211 if (!buffer_desc) {
212 return_ACPI_STATUS(AE_NO_MEMORY);
215 /* Lock entire transaction if requested */
217 acpi_ex_acquire_global_lock(obj_desc->common_field.field_flags);
219 /* Call the region handler for the write-then-read */
221 status = acpi_ex_access_region(obj_desc, 0,
222 ACPI_CAST_PTR(u64,
223 buffer_desc->buffer.
224 pointer), function);
225 acpi_ex_release_global_lock(obj_desc->common_field.field_flags);
227 *return_buffer = buffer_desc;
228 return_ACPI_STATUS(status);
231 /*******************************************************************************
233 * FUNCTION: acpi_ex_write_serial_bus
235 * PARAMETERS: source_desc - Contains data to write
236 * obj_desc - The named field
237 * return_buffer - Where the return value is returned, if any
239 * RETURN: Status
241 * DESCRIPTION: Write to a named field that references a serial bus
242 * (SMBus, IPMI, GSBus).
244 ******************************************************************************/
246 acpi_status
247 acpi_ex_write_serial_bus(union acpi_operand_object *source_desc,
248 union acpi_operand_object *obj_desc,
249 union acpi_operand_object **return_buffer)
251 acpi_status status;
252 u32 buffer_length;
253 u32 data_length;
254 void *buffer;
255 union acpi_operand_object *buffer_desc;
256 u32 function;
257 u16 accessor_type;
259 ACPI_FUNCTION_TRACE_PTR(ex_write_serial_bus, obj_desc);
262 * This is an SMBus, GSBus or IPMI write. We will bypass the entire
263 * field mechanism and handoff the buffer directly to the handler.
264 * For these address spaces, the buffer is bidirectional; on a
265 * write, return data is returned in the same buffer.
267 * Source must be a buffer of sufficient size, these are fixed size:
268 * ACPI_SMBUS_BUFFER_SIZE, or ACPI_IPMI_BUFFER_SIZE.
270 * Note: SMBus and GSBus protocol type is passed in upper 16-bits
271 * of Function
273 * Common buffer format:
274 * Status; (Byte 0 of the data buffer)
275 * Length; (Byte 1 of the data buffer)
276 * Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
278 if (source_desc->common.type != ACPI_TYPE_BUFFER) {
279 ACPI_ERROR((AE_INFO,
280 "SMBus/IPMI/GenericSerialBus write requires "
281 "Buffer, found type %s",
282 acpi_ut_get_object_type_name(source_desc)));
284 return_ACPI_STATUS(AE_AML_OPERAND_TYPE);
287 switch (obj_desc->field.region_obj->region.space_id) {
288 case ACPI_ADR_SPACE_SMBUS:
290 buffer_length = ACPI_SMBUS_BUFFER_SIZE;
291 function = ACPI_WRITE | (obj_desc->field.attribute << 16);
292 break;
294 case ACPI_ADR_SPACE_IPMI:
296 buffer_length = ACPI_IPMI_BUFFER_SIZE;
297 function = ACPI_WRITE;
298 break;
300 case ACPI_ADR_SPACE_GSBUS:
302 accessor_type = obj_desc->field.attribute;
303 status =
304 acpi_ex_get_protocol_buffer_length(accessor_type,
305 &buffer_length);
306 if (ACPI_FAILURE(status)) {
307 ACPI_ERROR((AE_INFO,
308 "Invalid protocol ID for GSBus: 0x%4.4X",
309 accessor_type));
311 return_ACPI_STATUS(status);
314 /* Add header length to get the full size of the buffer */
316 buffer_length += ACPI_SERIAL_HEADER_SIZE;
317 function = ACPI_WRITE | (accessor_type << 16);
318 break;
320 case ACPI_ADR_SPACE_PLATFORM_RT:
322 buffer_length = ACPI_PRM_INPUT_BUFFER_SIZE;
323 function = ACPI_WRITE;
324 break;
326 case ACPI_ADR_SPACE_FIXED_HARDWARE:
328 buffer_length = ACPI_FFH_INPUT_BUFFER_SIZE;
329 function = ACPI_WRITE;
330 break;
332 default:
333 return_ACPI_STATUS(AE_AML_INVALID_SPACE_ID);
336 /* Create the transfer/bidirectional/return buffer */
338 buffer_desc = acpi_ut_create_buffer_object(buffer_length);
339 if (!buffer_desc) {
340 return_ACPI_STATUS(AE_NO_MEMORY);
343 /* Copy the input buffer data to the transfer buffer */
345 buffer = buffer_desc->buffer.pointer;
346 data_length = ACPI_MIN(buffer_length, source_desc->buffer.length);
347 memcpy(buffer, source_desc->buffer.pointer, data_length);
349 /* Lock entire transaction if requested */
351 acpi_ex_acquire_global_lock(obj_desc->common_field.field_flags);
354 * Perform the write (returns status and perhaps data in the
355 * same buffer)
357 status = acpi_ex_access_region(obj_desc, 0, (u64 *)buffer, function);
358 acpi_ex_release_global_lock(obj_desc->common_field.field_flags);
360 *return_buffer = buffer_desc;
361 return_ACPI_STATUS(status);