Commit 6aaceb7d authored by Christian A. Ehrhardt's avatar Christian A. Ehrhardt Committed by Greg Kroah-Hartman

usb: typec: ucsi_acpi: Refactor and fix DELL quirk

Some DELL systems don't like UCSI_ACK_CC_CI commands with the
UCSI_ACK_CONNECTOR_CHANGE but not the UCSI_ACK_COMMAND_COMPLETE
bit set. The current quirk still leaves room for races because
it requires two consecutive ACK commands to be sent.

Refactor and significantly simplify the quirk to fix this:
Send a dummy command and bundle the connector change ack with the
command completion ack in a single UCSI_ACK_CC_CI command.
This removes the need to probe for the quirk.

While there define flag bits for struct ucsi_acpi->flags in ucsi_acpi.c
and don't re-use definitions from ucsi.h for struct ucsi->flags.

Fixes: f3be347e ("usb: ucsi_acpi: Quirk to ack a connector change ack cmd")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarChristian A. Ehrhardt <lk@c--e.de>
Reviewed-by: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Tested-by: Neil Armstrong <neil.armstrong@linaro.org> # on SM8550-QRD
Link: https://lore.kernel.org/r/20240320073927.1641788-5-lk@c--e.deSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6b5c85dd
...@@ -23,10 +23,11 @@ struct ucsi_acpi { ...@@ -23,10 +23,11 @@ struct ucsi_acpi {
void *base; void *base;
struct completion complete; struct completion complete;
unsigned long flags; unsigned long flags;
#define UCSI_ACPI_SUPPRESS_EVENT 0
#define UCSI_ACPI_COMMAND_PENDING 1
#define UCSI_ACPI_ACK_PENDING 2
guid_t guid; guid_t guid;
u64 cmd; u64 cmd;
bool dell_quirk_probed;
bool dell_quirk_active;
}; };
static int ucsi_acpi_dsm(struct ucsi_acpi *ua, int func) static int ucsi_acpi_dsm(struct ucsi_acpi *ua, int func)
...@@ -79,9 +80,9 @@ static int ucsi_acpi_sync_write(struct ucsi *ucsi, unsigned int offset, ...@@ -79,9 +80,9 @@ static int ucsi_acpi_sync_write(struct ucsi *ucsi, unsigned int offset,
int ret; int ret;
if (ack) if (ack)
set_bit(ACK_PENDING, &ua->flags); set_bit(UCSI_ACPI_ACK_PENDING, &ua->flags);
else else
set_bit(COMMAND_PENDING, &ua->flags); set_bit(UCSI_ACPI_COMMAND_PENDING, &ua->flags);
ret = ucsi_acpi_async_write(ucsi, offset, val, val_len); ret = ucsi_acpi_async_write(ucsi, offset, val, val_len);
if (ret) if (ret)
...@@ -92,9 +93,9 @@ static int ucsi_acpi_sync_write(struct ucsi *ucsi, unsigned int offset, ...@@ -92,9 +93,9 @@ static int ucsi_acpi_sync_write(struct ucsi *ucsi, unsigned int offset,
out_clear_bit: out_clear_bit:
if (ack) if (ack)
clear_bit(ACK_PENDING, &ua->flags); clear_bit(UCSI_ACPI_ACK_PENDING, &ua->flags);
else else
clear_bit(COMMAND_PENDING, &ua->flags); clear_bit(UCSI_ACPI_COMMAND_PENDING, &ua->flags);
return ret; return ret;
} }
...@@ -129,51 +130,40 @@ static const struct ucsi_operations ucsi_zenbook_ops = { ...@@ -129,51 +130,40 @@ static const struct ucsi_operations ucsi_zenbook_ops = {
}; };
/* /*
* Some Dell laptops expect that an ACK command with the * Some Dell laptops don't like ACK commands with the
* UCSI_ACK_CONNECTOR_CHANGE bit set is followed by a (separate) * UCSI_ACK_CONNECTOR_CHANGE but not the UCSI_ACK_COMMAND_COMPLETE
* ACK command that only has the UCSI_ACK_COMMAND_COMPLETE bit set. * bit set. To work around this send a dummy command and bundle the
* If this is not done events are not delivered to OSPM and * UCSI_ACK_CONNECTOR_CHANGE with the UCSI_ACK_COMMAND_COMPLETE
* subsequent commands will timeout. * for the dummy command.
*/ */
static int static int
ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset, ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset,
const void *val, size_t val_len) const void *val, size_t val_len)
{ {
struct ucsi_acpi *ua = ucsi_get_drvdata(ucsi); struct ucsi_acpi *ua = ucsi_get_drvdata(ucsi);
u64 cmd = *(u64 *)val, ack = 0; u64 cmd = *(u64 *)val;
u64 dummycmd = UCSI_GET_CAPABILITY;
int ret; int ret;
if (UCSI_COMMAND(cmd) == UCSI_ACK_CC_CI && if (cmd == (UCSI_ACK_CC_CI | UCSI_ACK_CONNECTOR_CHANGE)) {
cmd & UCSI_ACK_CONNECTOR_CHANGE) cmd |= UCSI_ACK_COMMAND_COMPLETE;
ack = UCSI_ACK_CC_CI | UCSI_ACK_COMMAND_COMPLETE;
ret = ucsi_acpi_sync_write(ucsi, offset, val, val_len); /*
if (ret != 0) * The UCSI core thinks it is sending a connector change ack
return ret; * and will accept new connector change events. We don't want
if (ack == 0) * this to happen for the dummy command as its response will
return ret; * still report the very event that the core is trying to clear.
*/
if (!ua->dell_quirk_probed) { set_bit(UCSI_ACPI_SUPPRESS_EVENT, &ua->flags);
ua->dell_quirk_probed = true; ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &dummycmd,
sizeof(dummycmd));
clear_bit(UCSI_ACPI_SUPPRESS_EVENT, &ua->flags);
cmd = UCSI_GET_CAPABILITY; if (ret < 0)
ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &cmd,
sizeof(cmd));
if (ret == 0)
return ucsi_acpi_sync_write(ucsi, UCSI_CONTROL,
&ack, sizeof(ack));
if (ret != -ETIMEDOUT)
return ret; return ret;
ua->dell_quirk_active = true;
dev_err(ua->dev, "Firmware bug: Additional ACK required after ACKing a connector change.\n");
dev_err(ua->dev, "Firmware bug: Enabling workaround\n");
} }
if (!ua->dell_quirk_active) return ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &cmd, sizeof(cmd));
return ret;
return ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &ack, sizeof(ack));
} }
static const struct ucsi_operations ucsi_dell_ops = { static const struct ucsi_operations ucsi_dell_ops = {
...@@ -209,13 +199,14 @@ static void ucsi_acpi_notify(acpi_handle handle, u32 event, void *data) ...@@ -209,13 +199,14 @@ static void ucsi_acpi_notify(acpi_handle handle, u32 event, void *data)
if (ret) if (ret)
return; return;
if (UCSI_CCI_CONNECTOR(cci)) if (UCSI_CCI_CONNECTOR(cci) &&
!test_bit(UCSI_ACPI_SUPPRESS_EVENT, &ua->flags))
ucsi_connector_change(ua->ucsi, UCSI_CCI_CONNECTOR(cci)); ucsi_connector_change(ua->ucsi, UCSI_CCI_CONNECTOR(cci));
if (cci & UCSI_CCI_ACK_COMPLETE && test_bit(ACK_PENDING, &ua->flags)) if (cci & UCSI_CCI_ACK_COMPLETE && test_bit(ACK_PENDING, &ua->flags))
complete(&ua->complete); complete(&ua->complete);
if (cci & UCSI_CCI_COMMAND_COMPLETE && if (cci & UCSI_CCI_COMMAND_COMPLETE &&
test_bit(COMMAND_PENDING, &ua->flags)) test_bit(UCSI_ACPI_COMMAND_PENDING, &ua->flags))
complete(&ua->complete); complete(&ua->complete);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment