linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: typec: ucsi: Clear pending after acking connector change
@ 2021-05-16  4:09 Bjorn Andersson
  2021-05-17 10:03 ` Heikki Krogerus
  2021-05-18 13:21 ` Heikki Krogerus
  0 siblings, 2 replies; 10+ messages in thread
From: Bjorn Andersson @ 2021-05-16  4:09 UTC (permalink / raw)
  To: Heikki Krogerus, Greg Kroah-Hartman, Benjamin Berg
  Cc: linux-usb, linux-kernel

It's possible that the interrupt handler for the UCSI driver signals a
connector changes after the handler clears the PENDING bit, but before
it has sent the acknowledge request. The result is that the handler is
invoked yet again, to ack the same connector change.

At least some versions of the Qualcomm UCSI firmware will not handle the
second - "spurious" - acknowledgment gracefully. So make sure to not
clear the pending flag until the change is acknowledged.

Any connector changes coming in after the acknowledgment, that would
have the pending flag incorrectly cleared, would afaict be covered by
the subsequent connector status check.

Fixes: 217504a05532 ("usb: typec: ucsi: Work around PPM losing change information")
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---
 drivers/usb/typec/ucsi/ucsi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/typec/ucsi/ucsi.c b/drivers/usb/typec/ucsi/ucsi.c
index 282c3c825c13..f451ce0132a9 100644
--- a/drivers/usb/typec/ucsi/ucsi.c
+++ b/drivers/usb/typec/ucsi/ucsi.c
@@ -694,8 +694,8 @@ static void ucsi_handle_connector_change(struct work_struct *work)
 	ucsi_send_command(con->ucsi, command, NULL, 0);
 
 	/* 3. ACK connector change */
-	clear_bit(EVENT_PENDING, &ucsi->flags);
 	ret = ucsi_acknowledge_connector_change(ucsi);
+	clear_bit(EVENT_PENDING, &ucsi->flags);
 	if (ret) {
 		dev_err(ucsi->dev, "%s: ACK failed (%d)", __func__, ret);
 		goto out_unlock;
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-05-19 11:50 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16  4:09 [PATCH] usb: typec: ucsi: Clear pending after acking connector change Bjorn Andersson
2021-05-17 10:03 ` Heikki Krogerus
2021-05-17 12:15   ` Heikki Krogerus
2021-05-17 12:57     ` Benjamin Berg
2021-05-18 13:29       ` Heikki Krogerus
2021-05-18 18:04         ` Benjamin Berg
2021-05-19 11:33           ` Heikki Krogerus
2021-05-19 11:50             ` Benjamin Berg
2021-05-17 12:36   ` Benjamin Berg
2021-05-18 13:21 ` Heikki Krogerus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).