Message ID | 1612277862-13022-1-git-send-email-gubbaven@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 1bb0c66332babc5cbc4581d962da0b03af9f23e8 |
Headers | show |
Series | [v2] Bluetooth: hci_qca: check for SSR triggered flag while suspend | expand |
Hi Venkata, > QCA_IBS_DISABLED flag will be set after memorydump started from > controller.Currently qca_suspend() is waiting for SSR to complete > based on flag QCA_IBS_DISABLED.Added to check for QCA_SSR_TRIGGERED > flag too. > > Fixes: 2be43abac5a8 ("Bluetooth: hci_qca: Wait for timeout during suspend") > Signed-off-by: Venkata Lakshmi Narayana Gubba <gubbaven@codeaurora.org> > --- > drivers/bluetooth/hci_qca.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) patch has been applied to bluetooth-next tree. Regards Marcel
Hello: This patch was applied to qcom/linux.git (refs/heads/for-next): On Tue, 2 Feb 2021 20:27:42 +0530 you wrote: > QCA_IBS_DISABLED flag will be set after memorydump started from > controller.Currently qca_suspend() is waiting for SSR to complete > based on flag QCA_IBS_DISABLED.Added to check for QCA_SSR_TRIGGERED > flag too. > > Fixes: 2be43abac5a8 ("Bluetooth: hci_qca: Wait for timeout during suspend") > Signed-off-by: Venkata Lakshmi Narayana Gubba <gubbaven@codeaurora.org> > > [...] Here is the summary with links: - [v2] Bluetooth: hci_qca: check for SSR triggered flag while suspend https://git.kernel.org/qcom/c/1bb0c66332ba You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c index 17a3859..ff2fb68 100644 --- a/drivers/bluetooth/hci_qca.c +++ b/drivers/bluetooth/hci_qca.c @@ -2111,7 +2111,8 @@ static int __maybe_unused qca_suspend(struct device *dev) !test_bit(QCA_SSR_TRIGGERED, &qca->flags)) return 0; - if (test_bit(QCA_IBS_DISABLED, &qca->flags)) { + if (test_bit(QCA_IBS_DISABLED, &qca->flags) || + test_bit(QCA_SSR_TRIGGERED, &qca->flags)) { wait_timeout = test_bit(QCA_SSR_TRIGGERED, &qca->flags) ? IBS_DISABLE_SSR_TIMEOUT_MS : FW_DOWNLOAD_TIMEOUT_MS;
QCA_IBS_DISABLED flag will be set after memorydump started from controller.Currently qca_suspend() is waiting for SSR to complete based on flag QCA_IBS_DISABLED.Added to check for QCA_SSR_TRIGGERED flag too. Fixes: 2be43abac5a8 ("Bluetooth: hci_qca: Wait for timeout during suspend") Signed-off-by: Venkata Lakshmi Narayana Gubba <gubbaven@codeaurora.org> --- drivers/bluetooth/hci_qca.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)