Patch "firmware: ti_sci: Fix polled mode during system suspend" has been added to the 6.1-stable tree

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

 



This is a note to let you know that I've just added the patch titled

    firmware: ti_sci: Fix polled mode during system suspend

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     firmware-ti_sci-fix-polled-mode-during-system-suspen.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit e7315332536d4b9e324e851f2d1a448810447538
Author: Georgi Vlaev <g-vlaev@xxxxxx>
Date:   Fri Oct 21 21:57:04 2022 +0300

    firmware: ti_sci: Fix polled mode during system suspend
    
    [ Upstream commit b13b2c3e0e4d0854228b5217fa34e145f3ace8ac ]
    
    Commit b9e8a7d950ff ("firmware: ti_sci: Switch transport to polled
    mode during system suspend") uses read_poll_timeout_atomic() macro
    in ti_sci_do_xfer() to wait for completion when the system is
    suspending. The break condition of the macro is set to "true" which
    will cause it break immediately when evaluated, likely before the
    TISCI xfer is completed, and always return 0. We want to poll here
    until "done_state == true".
    
    1) Change the break condition of read_poll_timeout_atomic() to
    the bool variable "done_state".
    
    2) The read_poll_timeout_atomic() returns 0 if the break condition
    is met or -ETIMEDOUT if not. Since our break condition has changed
    to "done_state", we also don't have to check for "!done_state" when
    evaluating the return value.
    
    Fixes: b9e8a7d950ff ("firmware: ti_sci: Switch transport to polled mode during system suspend")
    
    Signed-off-by: Georgi Vlaev <g-vlaev@xxxxxx>
    Signed-off-by: Nishanth Menon <nm@xxxxxx>
    Link: https://lore.kernel.org/r/20221021185704.181316-1-g-vlaev@xxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c
index ebc32bbd9b83..6281e7153b47 100644
--- a/drivers/firmware/ti_sci.c
+++ b/drivers/firmware/ti_sci.c
@@ -429,15 +429,14 @@ static inline int ti_sci_do_xfer(struct ti_sci_info *info,
 		 * during noirq phase, so we must manually poll the completion.
 		 */
 		ret = read_poll_timeout_atomic(try_wait_for_completion, done_state,
-					       true, 1,
+					       done_state, 1,
 					       info->desc->max_rx_timeout_ms * 1000,
 					       false, &xfer->done);
 	}
 
-	if (ret == -ETIMEDOUT || !done_state) {
+	if (ret == -ETIMEDOUT)
 		dev_err(dev, "Mbox timedout in resp(caller: %pS)\n",
 			(void *)_RET_IP_);
-	}
 
 	/*
 	 * NOTE: we might prefer not to need the mailbox ticker to manage the



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux