Message ID | e26167a3fcefdeae1151162e8676c9a467a8100d.1652390894.git.objelf@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/2] Bluetooth: btmtksdio: fix the reset takes too long | expand |
Hello: This series was applied to bluetooth/bluetooth-next.git (master) by Marcel Holtmann <marcel@holtmann.org>: On Fri, 13 May 2022 05:38:11 +0800 you wrote: > From: Sean Wang <sean.wang@mediatek.com> > > Sending WMT command during the reset in progress is invalid and would get > no response from firmware until the reset is complete, so we ignore the WMT > command here to resolve the issue which causes the whole reset process > taking too long. > > [...] Here is the summary with links: - [1/2] Bluetooth: btmtksdio: fix the reset takes too long https://git.kernel.org/bluetooth/bluetooth-next/c/baabb7f530e8 - [2/2] Bluetooth: btmtksdio: fix possible FW initialization failure https://git.kernel.org/bluetooth/bluetooth-next/c/7469720563e0 You are awesome, thank you!
Il 12/05/22 23:38, sean.wang@mediatek.com ha scritto: > From: Sean Wang <sean.wang@mediatek.com> > > Sending WMT command during the reset in progress is invalid and would get > no response from firmware until the reset is complete, so we ignore the WMT > command here to resolve the issue which causes the whole reset process > taking too long. > > Fixes: 8fafe702253d ("Bluetooth: mt7921s: support bluetooth reset mechanism") > Co-developed-by: Yake Yang <yake.yang@mediatek.com> > Signed-off-by: Yake Yang <yake.yang@mediatek.com> > Signed-off-by: Sean Wang <sean.wang@mediatek.com> It may be too late but, in any case, for the entire series: Tested-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
diff --git a/drivers/bluetooth/btmtksdio.c b/drivers/bluetooth/btmtksdio.c index 4ae6631a7c29..26e27fd79a21 100644 --- a/drivers/bluetooth/btmtksdio.c +++ b/drivers/bluetooth/btmtksdio.c @@ -1189,6 +1189,10 @@ static int btmtksdio_shutdown(struct hci_dev *hdev) */ pm_runtime_get_sync(bdev->dev); + /* wmt command only works until the reset is complete */ + if (test_bit(BTMTKSDIO_HW_RESET_ACTIVE, &bdev->tx_state)) + goto ignore_wmt_cmd; + /* Disable the device */ wmt_params.op = BTMTK_WMT_FUNC_CTRL; wmt_params.flag = 0; @@ -1202,6 +1206,7 @@ static int btmtksdio_shutdown(struct hci_dev *hdev) return err; } +ignore_wmt_cmd: pm_runtime_put_noidle(bdev->dev); pm_runtime_disable(bdev->dev);