All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] driver: bluetooth: hci_qca: fix ssr fail when BT_EN is pulled up by hw
@ 2025-06-09 10:55 Shuai Zhang
  2025-06-09 11:33 ` [v1] " bluez.test.bot
  2025-06-12 13:15 ` [PATCH v1] " Luiz Augusto von Dentz
  0 siblings, 2 replies; 3+ messages in thread
From: Shuai Zhang @ 2025-06-09 10:55 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: quic_bt, Shuai Zhang

If the SoC always enables the bt_en pin via hardware and the driver
cannot control the bt_en pin of the SoC chip, then during SSR,
the QCA_SSR_TRIGGERED and QCA_IBS_DISABLED bits cannot be cleared.
This leads to a reset command timeout failure.

To address this, clear QCA_SSR_TRIGGERED and QCA_IBS_DISABLED bits
after the coredump collection is complete.
Also, add msleep delay to wait for controller to complete SSR.

Signed-off-by: Shuai Zhang <quic_shuaz@quicinc.com>
---
 drivers/bluetooth/hci_qca.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c
index a2dc39c00..1c3df6e30 100644
--- a/drivers/bluetooth/hci_qca.c
+++ b/drivers/bluetooth/hci_qca.c
@@ -1653,6 +1653,22 @@ static void qca_hw_error(struct hci_dev *hdev, u8 code)
 	}
 
 	clear_bit(QCA_HW_ERROR_EVENT, &qca->flags);
+
+	/*If the SoC always enables the bt_en pin via hardware and the driver
+	* cannot control the bt_en pin of the SoC chip, then during SSR,
+	* the QCA_SSR_TRIGGERED and QCA_IBS_DISABLED bits cannot be cleared.
+	* This leads to a reset command timeout failure.
+	*
+	* To address this, clear QCA_SSR_TRIGGERED and QCA_IBS_DISABLED bits
+	* after the coredump collection is complete.
+	* Also, add msleep delay to wait for controller to complete SSR.
+	*/
+	if(!test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks)) {
+		clear_bit(QCA_SSR_TRIGGERED, &qca->flags);
+		clear_bit(QCA_IBS_DISABLED,&qca->flags);
+		qca->tx_ibs_state = HCI_IBS_TX_AWAKE;
+		msleep(50);
+	}
 }
 
 static void qca_reset(struct hci_dev *hdev)
-- 
2.34.1


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

end of thread, other threads:[~2025-06-12 13:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-09 10:55 [PATCH v1] driver: bluetooth: hci_qca: fix ssr fail when BT_EN is pulled up by hw Shuai Zhang
2025-06-09 11:33 ` [v1] " bluez.test.bot
2025-06-12 13:15 ` [PATCH v1] " Luiz Augusto von Dentz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.