Hi Luiz On 2025/7/8 2:39, Luiz Augusto von Dentz wrote: > Hi Shuai, > > On Fri, Jun 27, 2025 at 2:17 AM Shuai Zhang <quic_shuaz@xxxxxxxxxxx> wrote: >> >> Q1: >> 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. >> >> Fix1: >> 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. > > Not sure why you are sending with Q and Fix tags, never seen this > format being used for kernel patches before, each fix shall be sent > separately. I will submit it in two parts. > >> Q2: >> When the SSR (Sub-System Restart) duration exceeds 2 seconds, it triggers >> host tx_idle_timeout, which sets host TX state to sleep. due to the >> hardware pulling up bt_en, the firmware is not downloaded after the SSR. >> As a result, the controller does not enter sleep mode. Consequently, >> when the host sends a command afterward, it sends 0xFD to the controller, >> but the controller does not respond, leading to a command timeout. >> >> Fix2: >> Reset the tx_idle_timer after SSR (Sub-System Restart). >> >> Changes in v2: >> - Modified the format. >> - Add changes to fix tx_idle_timeout >> - Link to v1: https://lore.kernel.org/all/20250609105553.3756688-1-quic_shuaz@xxxxxxxxxxx/ > > The version history shouldn't be part of patch description, either add > it as comments after the description or add a cover letter to capture > the history. I will add a cover. > >> Signed-off-by: Shuai Zhang <quic_shuaz@xxxxxxxxxxx> >> --- >> drivers/bluetooth/hci_qca.c | 20 +++++++++++++++++++- >> 1 file changed, 19 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c >> index 4e56782b0..d415a3f31 100644 >> --- a/drivers/bluetooth/hci_qca.c >> +++ b/drivers/bluetooth/hci_qca.c >> @@ -1653,6 +1653,24 @@ static void qca_hw_error(struct hci_dev *hdev, u8 code) >> skb_queue_purge(&qca->rx_memdump_q); >> } >> >> + /* 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); >> + mod_timer(&qca->tx_idle_timer, jiffies + >> + msecs_to_jiffies(qca->tx_idle_delay)); >> + qca->tx_ibs_state = HCI_IBS_TX_AWAKE; >> + msleep(50); > > This is probably racy since it doesn't seem you are able to validate > SSR has been completed after 50 ms. This position has already submitted the core dump data. Before sending the command, the controller should be allowed to stabilize.