ACPICA: Update for generic_serial_bus and attrib_raw_process_bytes protocol
Cleanup for this write-then-read protocol. The ACPI specification is rather unclear for the entire generic_serial_bus, but this change works correctly on the Surface 3. Reported-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Erik Schmauss <erik.schmauss@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
17b57b1883
commit
f99b89eefe
|
@ -60,11 +60,19 @@ acpi_ex_get_serial_access_length(u32 accessor_type, u32 access_length)
|
||||||
|
|
||||||
case AML_FIELD_ATTRIB_MULTIBYTE:
|
case AML_FIELD_ATTRIB_MULTIBYTE:
|
||||||
case AML_FIELD_ATTRIB_RAW_BYTES:
|
case AML_FIELD_ATTRIB_RAW_BYTES:
|
||||||
case AML_FIELD_ATTRIB_RAW_PROCESS:
|
|
||||||
|
|
||||||
length = access_length;
|
length = access_length;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case AML_FIELD_ATTRIB_RAW_PROCESS:
|
||||||
|
/*
|
||||||
|
* Worst case bidirectional buffer size. This ignores the
|
||||||
|
* access_length argument to access_as because it is not needed.
|
||||||
|
* August 2018.
|
||||||
|
*/
|
||||||
|
length = ACPI_MAX_GSBUS_BUFFER_SIZE;
|
||||||
|
break;
|
||||||
|
|
||||||
case AML_FIELD_ATTRIB_BLOCK:
|
case AML_FIELD_ATTRIB_BLOCK:
|
||||||
case AML_FIELD_ATTRIB_BLOCK_CALL:
|
case AML_FIELD_ATTRIB_BLOCK_CALL:
|
||||||
default:
|
default:
|
||||||
|
@ -147,6 +155,13 @@ acpi_ex_read_data_from_field(struct acpi_walk_state *walk_state,
|
||||||
} else if (obj_desc->field.region_obj->region.space_id ==
|
} else if (obj_desc->field.region_obj->region.space_id ==
|
||||||
ACPI_ADR_SPACE_GSBUS) {
|
ACPI_ADR_SPACE_GSBUS) {
|
||||||
accessor_type = obj_desc->field.attribute;
|
accessor_type = obj_desc->field.attribute;
|
||||||
|
if (accessor_type == AML_FIELD_ATTRIB_RAW_PROCESS) {
|
||||||
|
ACPI_ERROR((AE_INFO,
|
||||||
|
"Invalid direct read using bidirectional write-then-read protocol"));
|
||||||
|
|
||||||
|
return_ACPI_STATUS(AE_AML_PROTOCOL);
|
||||||
|
}
|
||||||
|
|
||||||
length =
|
length =
|
||||||
acpi_ex_get_serial_access_length(accessor_type,
|
acpi_ex_get_serial_access_length(accessor_type,
|
||||||
obj_desc->field.
|
obj_desc->field.
|
||||||
|
@ -305,6 +320,7 @@ acpi_ex_write_data_to_field(union acpi_operand_object *source_desc,
|
||||||
{
|
{
|
||||||
acpi_status status;
|
acpi_status status;
|
||||||
u32 length;
|
u32 length;
|
||||||
|
u32 data_length;
|
||||||
void *buffer;
|
void *buffer;
|
||||||
union acpi_operand_object *buffer_desc;
|
union acpi_operand_object *buffer_desc;
|
||||||
u32 function;
|
u32 function;
|
||||||
|
@ -361,6 +377,7 @@ acpi_ex_write_data_to_field(union acpi_operand_object *source_desc,
|
||||||
if (obj_desc->field.region_obj->region.space_id ==
|
if (obj_desc->field.region_obj->region.space_id ==
|
||||||
ACPI_ADR_SPACE_SMBUS) {
|
ACPI_ADR_SPACE_SMBUS) {
|
||||||
length = ACPI_SMBUS_BUFFER_SIZE;
|
length = ACPI_SMBUS_BUFFER_SIZE;
|
||||||
|
data_length = length;
|
||||||
function =
|
function =
|
||||||
ACPI_WRITE | (obj_desc->field.attribute << 16);
|
ACPI_WRITE | (obj_desc->field.attribute << 16);
|
||||||
} else if (obj_desc->field.region_obj->region.space_id ==
|
} else if (obj_desc->field.region_obj->region.space_id ==
|
||||||
|
@ -372,38 +389,47 @@ acpi_ex_write_data_to_field(union acpi_operand_object *source_desc,
|
||||||
access_length);
|
access_length);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Add additional 2 bytes for the generic_serial_bus data buffer:
|
* Buffer format for Generic Serial Bus protocols:
|
||||||
*
|
|
||||||
* Status; (Byte 0 of the data buffer)
|
* Status; (Byte 0 of the data buffer)
|
||||||
* Length; (Byte 1 of the data buffer)
|
* Length; (Byte 1 of the data buffer)
|
||||||
* Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
|
* Data[x-1]: (Bytes 2-x of the arbitrary length data buffer)
|
||||||
*/
|
*/
|
||||||
length += 2;
|
data_length = source_desc->buffer.pointer[1]; /* Data length is 2nd byte */
|
||||||
|
if (!data_length) {
|
||||||
|
ACPI_ERROR((AE_INFO,
|
||||||
|
"Invalid zero data length in transfer buffer"));
|
||||||
|
|
||||||
|
return_ACPI_STATUS(AE_AML_BUFFER_LENGTH);
|
||||||
|
}
|
||||||
|
|
||||||
function = ACPI_WRITE | (accessor_type << 16);
|
function = ACPI_WRITE | (accessor_type << 16);
|
||||||
} else { /* IPMI */
|
} else { /* IPMI */
|
||||||
|
|
||||||
length = ACPI_IPMI_BUFFER_SIZE;
|
length = ACPI_IPMI_BUFFER_SIZE;
|
||||||
|
data_length = length;
|
||||||
function = ACPI_WRITE;
|
function = ACPI_WRITE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (source_desc->buffer.length < length) {
|
if (source_desc->buffer.length < data_length) {
|
||||||
ACPI_ERROR((AE_INFO,
|
ACPI_ERROR((AE_INFO,
|
||||||
"SMBus/IPMI/GenericSerialBus write requires "
|
"SMBus/IPMI/GenericSerialBus write requires "
|
||||||
"Buffer of length %u, found length %u",
|
"Buffer data length %u, found buffer length %u",
|
||||||
length, source_desc->buffer.length));
|
data_length, source_desc->buffer.length));
|
||||||
|
|
||||||
return_ACPI_STATUS(AE_AML_BUFFER_LIMIT);
|
return_ACPI_STATUS(AE_AML_BUFFER_LIMIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create the bi-directional buffer */
|
/* Create the transfer/bidirectional buffer */
|
||||||
|
|
||||||
buffer_desc = acpi_ut_create_buffer_object(length);
|
buffer_desc = acpi_ut_create_buffer_object(length);
|
||||||
if (!buffer_desc) {
|
if (!buffer_desc) {
|
||||||
return_ACPI_STATUS(AE_NO_MEMORY);
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Copy the input buffer data to the transfer buffer */
|
||||||
|
|
||||||
buffer = buffer_desc->buffer.pointer;
|
buffer = buffer_desc->buffer.pointer;
|
||||||
memcpy(buffer, source_desc->buffer.pointer, length);
|
memcpy(buffer, source_desc->buffer.pointer, data_length);
|
||||||
|
|
||||||
/* Lock entire transaction if requested */
|
/* Lock entire transaction if requested */
|
||||||
|
|
||||||
|
|
|
@ -176,8 +176,9 @@
|
||||||
/* SMBus, GSBus and IPMI bidirectional buffer size */
|
/* SMBus, GSBus and IPMI bidirectional buffer size */
|
||||||
|
|
||||||
#define ACPI_SMBUS_BUFFER_SIZE 34
|
#define ACPI_SMBUS_BUFFER_SIZE 34
|
||||||
#define ACPI_GSBUS_BUFFER_SIZE 34
|
|
||||||
#define ACPI_IPMI_BUFFER_SIZE 66
|
#define ACPI_IPMI_BUFFER_SIZE 66
|
||||||
|
#define ACPI_GSBUS_BUFFER_SIZE 34 /* Not clear if this is needed */
|
||||||
|
#define ACPI_MAX_GSBUS_BUFFER_SIZE 255 /* Worst-case bidirectional buffer */
|
||||||
|
|
||||||
/* _sx_d and _sx_w control methods */
|
/* _sx_d and _sx_w control methods */
|
||||||
|
|
||||||
|
|
|
@ -171,8 +171,10 @@ struct acpi_exception_info {
|
||||||
#define AE_AML_LOOP_TIMEOUT EXCEP_AML (0x0021)
|
#define AE_AML_LOOP_TIMEOUT EXCEP_AML (0x0021)
|
||||||
#define AE_AML_UNINITIALIZED_NODE EXCEP_AML (0x0022)
|
#define AE_AML_UNINITIALIZED_NODE EXCEP_AML (0x0022)
|
||||||
#define AE_AML_TARGET_TYPE EXCEP_AML (0x0023)
|
#define AE_AML_TARGET_TYPE EXCEP_AML (0x0023)
|
||||||
|
#define AE_AML_PROTOCOL EXCEP_AML (0x0024)
|
||||||
|
#define AE_AML_BUFFER_LENGTH EXCEP_AML (0x0025)
|
||||||
|
|
||||||
#define AE_CODE_AML_MAX 0x0023
|
#define AE_CODE_AML_MAX 0x0025
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Internal exceptions used for control
|
* Internal exceptions used for control
|
||||||
|
@ -347,7 +349,10 @@ static const struct acpi_exception_info acpi_gbl_exception_names_aml[] = {
|
||||||
EXCEP_TXT("AE_AML_UNINITIALIZED_NODE",
|
EXCEP_TXT("AE_AML_UNINITIALIZED_NODE",
|
||||||
"A namespace node is uninitialized or unresolved"),
|
"A namespace node is uninitialized or unresolved"),
|
||||||
EXCEP_TXT("AE_AML_TARGET_TYPE",
|
EXCEP_TXT("AE_AML_TARGET_TYPE",
|
||||||
"A target operand of an incorrect type was encountered")
|
"A target operand of an incorrect type was encountered"),
|
||||||
|
EXCEP_TXT("AE_AML_PROTOCOL", "Violation of a fixed ACPI protocol"),
|
||||||
|
EXCEP_TXT("AE_AML_BUFFER_LENGTH",
|
||||||
|
"The length of the buffer is invalid/incorrect")
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct acpi_exception_info acpi_gbl_exception_names_ctrl[] = {
|
static const struct acpi_exception_info acpi_gbl_exception_names_ctrl[] = {
|
||||||
|
|
Loading…
Reference in New Issue