[RFC PATCH] usb: typec: ucsi: change role command to async write

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



In ucsi_dr_swap() and ucsi_pr_swap(), it will wait complete.
it is better change role switch command to async mode which will avoid
reset ppm in condition that data/power switch can't operate.

Signed-off-by: Linyu Yuan <quic_linyyuan@xxxxxxxxxxx>
---
 drivers/usb/typec/ucsi/ucsi.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/typec/ucsi/ucsi.c b/drivers/usb/typec/ucsi/ucsi.c
index 00fc867..466ae93 100644
--- a/drivers/usb/typec/ucsi/ucsi.c
+++ b/drivers/usb/typec/ucsi/ucsi.c
@@ -997,17 +997,21 @@ static int ucsi_reset_ppm(struct ucsi *ucsi)
 
 static int ucsi_role_cmd(struct ucsi_connector *con, u64 command)
 {
+	struct ucsi *ucsi = con->ucsi;
 	int ret;
 
-	ret = ucsi_send_command(con->ucsi, command, NULL, 0);
+	mutex_lock(&ucsi->ppm_lock);
+	ret = ucsi->ops->async_write(ucsi, UCSI_CONTROL, &command, sizeof(command));
+	mutex_unlock(&ucsi->ppm_lock);
+
 	if (ret == -ETIMEDOUT) {
 		u64 c;
 
 		/* PPM most likely stopped responding. Resetting everything. */
-		ucsi_reset_ppm(con->ucsi);
+		ucsi_reset_ppm(ucsi);
 
-		c = UCSI_SET_NOTIFICATION_ENABLE | con->ucsi->ntfy;
-		ucsi_send_command(con->ucsi, c, NULL, 0);
+		c = UCSI_SET_NOTIFICATION_ENABLE | ucsi->ntfy;
+		ucsi_send_command(ucsi, c, NULL, 0);
 
 		ucsi_reset_connector(con, true);
 	}
-- 
2.7.4




[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux