* [PATCH v3 0/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature @ 2025-11-17 2:16 Shuai Zhang 2025-11-17 2:16 ` [PATCH v3 1/1] " Shuai Zhang 0 siblings, 1 reply; 13+ messages in thread From: Shuai Zhang @ 2025-11-17 2:16 UTC (permalink / raw) To: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz Cc: linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng, shuai.zhang Update WCN6855 firmware to use the new FW file and added a fallback mechanism. changed v2: - Remove CC satble - Update commit - add test steps and log - Link to v2 https://lore.kernel.org/all/20251114081751.3940541-2-shuai.zhang@oss.qualcomm.com/ Changes v2: - Add Fixes tag. - Add comments in the commit and code to explain the reason for the changes. - Link to v1 https://lore.kernel.org/all/20251112074638.1592864-1-quic_shuaz@quicinc.com/ Shuai Zhang (1): Bluetooth: btqca: Add WCN6855 firmware priority selection feature drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-17 2:16 [PATCH v3 0/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature Shuai Zhang @ 2025-11-17 2:16 ` Shuai Zhang 2025-11-18 13:44 ` Shuai Zhang 2025-11-19 7:59 ` Dmitry Baryshkov 0 siblings, 2 replies; 13+ messages in thread From: Shuai Zhang @ 2025-11-17 2:16 UTC (permalink / raw) To: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz Cc: linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng, shuai.zhang Historically, WCN685x and QCA2066 shared the same firmware files. Now, changes are planned for the firmware that will make it incompatible with QCA2066, so a new firmware name is required for WCN685x. Test Steps: - Boot device - Check the BTFW loading status via dmesg Sanity pass and Test Log: QCA Downloading qca/wcnhpbftfw21.tlv Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 QCA Downloading qca/hpbftfw21.tlv Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> --- drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c index 7c958d606..8e0004ef7 100644 --- a/drivers/bluetooth/btqca.c +++ b/drivers/bluetooth/btqca.c @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, "qca/msbtfw%02x.mbn", rom_ver); break; case QCA_WCN6855: + /* Due to historical reasons, WCN685x chip has been using firmware + * without the "wcn" prefix. The mapping between the chip and its + * corresponding firmware has now been corrected. + */ snprintf(config.fwname, sizeof(config.fwname), - "qca/hpbtfw%02x.tlv", rom_ver); + "qca/wcnhpbtfw%02x.tlv", rom_ver); break; case QCA_WCN7850: snprintf(config.fwname, sizeof(config.fwname), @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, } err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { + snprintf(config.fwname, sizeof(config.fwname), + "qca/hpbtfw%02x.tlv", rom_ver); + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + } + if (err < 0) { bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); return err; @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, case QCA_WCN6855: qca_read_fw_board_id(hdev, &boardid); qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), - "hpnv", soc_type, ver, rom_ver, boardid); + "wcnhpnv", soc_type, ver, rom_ver, boardid); break; case QCA_WCN7850: qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, } err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), + "hpnv", soc_type, ver, rom_ver, boardid); + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + } + if (err < 0) { bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); return err; -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-17 2:16 ` [PATCH v3 1/1] " Shuai Zhang @ 2025-11-18 13:44 ` Shuai Zhang 2025-11-18 14:04 ` Konrad Dybcio 2025-11-19 7:59 ` Dmitry Baryshkov 1 sibling, 1 reply; 13+ messages in thread From: Shuai Zhang @ 2025-11-18 13:44 UTC (permalink / raw) To: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz Cc: linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng Dear On 11/17/2025 10:16 AM, Shuai Zhang wrote: > Historically, WCN685x and QCA2066 shared the same firmware files. > Now, changes are planned for the firmware that will make it incompatible > with QCA2066, so a new firmware name is required for WCN685x. > > Test Steps: > - Boot device > - Check the BTFW loading status via dmesg > > Sanity pass and Test Log: > QCA Downloading qca/wcnhpbftfw21.tlv > Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 > QCA Downloading qca/hpbftfw21.tlv > > Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> > --- > drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- > 1 file changed, 20 insertions(+), 2 deletions(-) > > diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c > index 7c958d606..8e0004ef7 100644 > --- a/drivers/bluetooth/btqca.c > +++ b/drivers/bluetooth/btqca.c > @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > "qca/msbtfw%02x.mbn", rom_ver); > break; > case QCA_WCN6855: > + /* Due to historical reasons, WCN685x chip has been using firmware > + * without the "wcn" prefix. The mapping between the chip and its > + * corresponding firmware has now been corrected. > + */ > snprintf(config.fwname, sizeof(config.fwname), > - "qca/hpbtfw%02x.tlv", rom_ver); > + "qca/wcnhpbtfw%02x.tlv", rom_ver); > break; > case QCA_WCN7850: > snprintf(config.fwname, sizeof(config.fwname), > @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > } > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + > + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { > + snprintf(config.fwname, sizeof(config.fwname), > + "qca/hpbtfw%02x.tlv", rom_ver); > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + } > + > if (err < 0) { > bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); > return err; > @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > case QCA_WCN6855: > qca_read_fw_board_id(hdev, &boardid); > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > - "hpnv", soc_type, ver, rom_ver, boardid); > + "wcnhpnv", soc_type, ver, rom_ver, boardid); > break; > case QCA_WCN7850: > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > } > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + > + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { > + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > + "hpnv", soc_type, ver, rom_ver, boardid); > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + } > + > if (err < 0) { > bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); > return err; Could you confirm if it has already been accepted? Kindly,regard Shuai ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-18 13:44 ` Shuai Zhang @ 2025-11-18 14:04 ` Konrad Dybcio 0 siblings, 0 replies; 13+ messages in thread From: Konrad Dybcio @ 2025-11-18 14:04 UTC (permalink / raw) To: Shuai Zhang, Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz Cc: linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng On 11/18/25 2:44 PM, Shuai Zhang wrote: > Dear > > On 11/17/2025 10:16 AM, Shuai Zhang wrote: >> Historically, WCN685x and QCA2066 shared the same firmware files. >> Now, changes are planned for the firmware that will make it incompatible >> with QCA2066, so a new firmware name is required for WCN685x. >> >> Test Steps: >> - Boot device >> - Check the BTFW loading status via dmesg >> >> Sanity pass and Test Log: >> QCA Downloading qca/wcnhpbftfw21.tlv >> Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 >> QCA Downloading qca/hpbftfw21.tlv >> >> Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> >> --- [...] > Could you confirm if it has already been accepted? Please familiarize yourself with the kernel development cycle. You sent this patch yesterday, at a very late point in the kernel dev cycle (rc6, normally rc7 or rc8 is last) when maintainers generally don't accept patches. https://docs.kernel.org/process/2.Process.html The branch your changes will land before being queued for torvalds merge the following cycle is likely: https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git/log/ which you can watch yourself, although normally maintainers respond with an "applied, thanks" message Please also trim your replies, you included a whole patch as context and only added meaningful text at the very end. Please also don't top-post. I see you're doing so as a mannerism, but it should generally be avoided. Konrad ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-17 2:16 ` [PATCH v3 1/1] " Shuai Zhang 2025-11-18 13:44 ` Shuai Zhang @ 2025-11-19 7:59 ` Dmitry Baryshkov 2025-12-16 12:54 ` Shuai Zhang 2025-12-19 9:19 ` Shuai Zhang 1 sibling, 2 replies; 13+ messages in thread From: Dmitry Baryshkov @ 2025-11-19 7:59 UTC (permalink / raw) To: Shuai Zhang Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: > Historically, WCN685x and QCA2066 shared the same firmware files. > Now, changes are planned for the firmware that will make it incompatible > with QCA2066, so a new firmware name is required for WCN685x. > > Test Steps: > - Boot device > - Check the BTFW loading status via dmesg > > Sanity pass and Test Log: > QCA Downloading qca/wcnhpbftfw21.tlv > Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 > QCA Downloading qca/hpbftfw21.tlv > > Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> > --- > drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- > 1 file changed, 20 insertions(+), 2 deletions(-) > > diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c > index 7c958d606..8e0004ef7 100644 > --- a/drivers/bluetooth/btqca.c > +++ b/drivers/bluetooth/btqca.c > @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > "qca/msbtfw%02x.mbn", rom_ver); > break; > case QCA_WCN6855: > + /* Due to historical reasons, WCN685x chip has been using firmware > + * without the "wcn" prefix. The mapping between the chip and its > + * corresponding firmware has now been corrected. > + */ > snprintf(config.fwname, sizeof(config.fwname), > - "qca/hpbtfw%02x.tlv", rom_ver); > + "qca/wcnhpbtfw%02x.tlv", rom_ver); > break; > case QCA_WCN7850: > snprintf(config.fwname, sizeof(config.fwname), > @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > } > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + > + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { > + snprintf(config.fwname, sizeof(config.fwname), > + "qca/hpbtfw%02x.tlv", rom_ver); > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + } Is there a reason for ignoring how it was done already for other cases when we need a similar fallback? Please extend the existing code (or rewrite it) instead of adding a similar hook at a completely different place. > + > if (err < 0) { > bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); > return err; > @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > case QCA_WCN6855: > qca_read_fw_board_id(hdev, &boardid); > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > - "hpnv", soc_type, ver, rom_ver, boardid); > + "wcnhpnv", soc_type, ver, rom_ver, boardid); > break; > case QCA_WCN7850: > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > } > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + > + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { > + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > + "hpnv", soc_type, ver, rom_ver, boardid); > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > + } > + > if (err < 0) { > bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); > return err; > -- > 2.34.1 > -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-19 7:59 ` Dmitry Baryshkov @ 2025-12-16 12:54 ` Shuai Zhang 2025-12-19 9:19 ` Shuai Zhang 1 sibling, 0 replies; 13+ messages in thread From: Shuai Zhang @ 2025-12-16 12:54 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng Hi Dmitry On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: > On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: >> Historically, WCN685x and QCA2066 shared the same firmware files. >> Now, changes are planned for the firmware that will make it incompatible >> with QCA2066, so a new firmware name is required for WCN685x. >> >> Test Steps: >> - Boot device >> - Check the BTFW loading status via dmesg >> >> Sanity pass and Test Log: >> QCA Downloading qca/wcnhpbftfw21.tlv >> Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 >> QCA Downloading qca/hpbftfw21.tlv >> >> Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> >> --- >> drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- >> 1 file changed, 20 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c >> index 7c958d606..8e0004ef7 100644 >> --- a/drivers/bluetooth/btqca.c >> +++ b/drivers/bluetooth/btqca.c >> @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> "qca/msbtfw%02x.mbn", rom_ver); >> break; >> case QCA_WCN6855: >> + /* Due to historical reasons, WCN685x chip has been using firmware >> + * without the "wcn" prefix. The mapping between the chip and its >> + * corresponding firmware has now been corrected. >> + */ >> snprintf(config.fwname, sizeof(config.fwname), >> - "qca/hpbtfw%02x.tlv", rom_ver); >> + "qca/wcnhpbtfw%02x.tlv", rom_ver); >> break; >> case QCA_WCN7850: >> snprintf(config.fwname, sizeof(config.fwname), >> @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> } >> >> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + >> + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { >> + snprintf(config.fwname, sizeof(config.fwname), >> + "qca/hpbtfw%02x.tlv", rom_ver); >> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + } > Is there a reason for ignoring how it was done already for other cases when > we need a similar fallback? Please extend the existing code (or rewrite > it) instead of adding a similar hook at a completely different place. Sorry, I missed this email. I will resubmit the new changes using the existing callback mechanism. >> + >> if (err < 0) { >> bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); >> return err; >> @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> case QCA_WCN6855: >> qca_read_fw_board_id(hdev, &boardid); >> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >> - "hpnv", soc_type, ver, rom_ver, boardid); >> + "wcnhpnv", soc_type, ver, rom_ver, boardid); >> break; >> case QCA_WCN7850: >> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >> @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> } >> >> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + >> + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { >> + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >> + "hpnv", soc_type, ver, rom_ver, boardid); >> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + } >> + >> if (err < 0) { >> bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); >> return err; >> -- >> 2.34.1 Thanks, Shuai ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-19 7:59 ` Dmitry Baryshkov 2025-12-16 12:54 ` Shuai Zhang @ 2025-12-19 9:19 ` Shuai Zhang 2025-12-21 15:21 ` Dmitry Baryshkov 1 sibling, 1 reply; 13+ messages in thread From: Shuai Zhang @ 2025-12-19 9:19 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng Hi Dmitry On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: > On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: >> Historically, WCN685x and QCA2066 shared the same firmware files. >> Now, changes are planned for the firmware that will make it incompatible >> with QCA2066, so a new firmware name is required for WCN685x. >> >> Test Steps: >> - Boot device >> - Check the BTFW loading status via dmesg >> >> Sanity pass and Test Log: >> QCA Downloading qca/wcnhpbftfw21.tlv >> Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 >> QCA Downloading qca/hpbftfw21.tlv >> >> Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> >> --- >> drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- >> 1 file changed, 20 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c >> index 7c958d606..8e0004ef7 100644 >> --- a/drivers/bluetooth/btqca.c >> +++ b/drivers/bluetooth/btqca.c >> @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> "qca/msbtfw%02x.mbn", rom_ver); >> break; >> case QCA_WCN6855: >> + /* Due to historical reasons, WCN685x chip has been using firmware >> + * without the "wcn" prefix. The mapping between the chip and its >> + * corresponding firmware has now been corrected. >> + */ >> snprintf(config.fwname, sizeof(config.fwname), >> - "qca/hpbtfw%02x.tlv", rom_ver); >> + "qca/wcnhpbtfw%02x.tlv", rom_ver); >> break; >> case QCA_WCN7850: >> snprintf(config.fwname, sizeof(config.fwname), >> @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> } >> >> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + >> + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { >> + snprintf(config.fwname, sizeof(config.fwname), >> + "qca/hpbtfw%02x.tlv", rom_ver); >> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + } > Is there a reason for ignoring how it was done already for other cases when > we need a similar fallback? Please extend the existing code (or rewrite > it) instead of adding a similar hook at a completely different place. Current Strategy (when DTS does not specify rampatch and firmware): Rampatch: Load the rampatch based on soc_type. NVM: Load the NVM with board_id based on soc_type. If the file corresponding to board_id does not exist, then load the NVM file ending with .bin. For HSP (new requirement): First, load the rampatch/NVM files wcnhpbtfw and wcnhpnv. If not found: Rampatch: Fall back to loading the hpbtfw rampatch file. NVM: Starting from wcnhpnv.bxxx, load the NVM file ending with .bin. If still not found, look for hpnv.bxxx and then apply the above NVM strategy again (soc_type(board_id) to .bin). The current changes are based on the original implementation, which should make them the clearest modifications. Please review according to the existing strategy, and feel free to let me know if you have any questions. >> + >> if (err < 0) { >> bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); >> return err; >> @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> case QCA_WCN6855: >> qca_read_fw_board_id(hdev, &boardid); >> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >> - "hpnv", soc_type, ver, rom_ver, boardid); >> + "wcnhpnv", soc_type, ver, rom_ver, boardid); >> break; >> case QCA_WCN7850: >> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >> @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >> } >> >> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + >> + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { >> + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >> + "hpnv", soc_type, ver, rom_ver, boardid); >> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >> + } >> + >> if (err < 0) { >> bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); >> return err; >> -- >> 2.34.1 >> Thanks, Shuai ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-12-19 9:19 ` Shuai Zhang @ 2025-12-21 15:21 ` Dmitry Baryshkov 2025-12-23 2:03 ` Shuai Zhang 0 siblings, 1 reply; 13+ messages in thread From: Dmitry Baryshkov @ 2025-12-21 15:21 UTC (permalink / raw) To: Shuai Zhang Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng On Fri, Dec 19, 2025 at 05:19:30PM +0800, Shuai Zhang wrote: > Hi Dmitry > > On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: > > On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: > > > Historically, WCN685x and QCA2066 shared the same firmware files. > > > Now, changes are planned for the firmware that will make it incompatible > > > with QCA2066, so a new firmware name is required for WCN685x. > > > > > > Test Steps: > > > - Boot device > > > - Check the BTFW loading status via dmesg > > > > > > Sanity pass and Test Log: > > > QCA Downloading qca/wcnhpbftfw21.tlv > > > Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 > > > QCA Downloading qca/hpbftfw21.tlv > > > > > > Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> > > > --- > > > drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- > > > 1 file changed, 20 insertions(+), 2 deletions(-) > > > > > > diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c > > > index 7c958d606..8e0004ef7 100644 > > > --- a/drivers/bluetooth/btqca.c > > > +++ b/drivers/bluetooth/btqca.c > > > @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > "qca/msbtfw%02x.mbn", rom_ver); > > > break; > > > case QCA_WCN6855: > > > + /* Due to historical reasons, WCN685x chip has been using firmware > > > + * without the "wcn" prefix. The mapping between the chip and its > > > + * corresponding firmware has now been corrected. > > > + */ > > > snprintf(config.fwname, sizeof(config.fwname), > > > - "qca/hpbtfw%02x.tlv", rom_ver); > > > + "qca/wcnhpbtfw%02x.tlv", rom_ver); > > > break; > > > case QCA_WCN7850: > > > snprintf(config.fwname, sizeof(config.fwname), > > > @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > } > > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > + > > > + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { > > > + snprintf(config.fwname, sizeof(config.fwname), > > > + "qca/hpbtfw%02x.tlv", rom_ver); > > > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > + } > > Is there a reason for ignoring how it was done already for other cases when > > we need a similar fallback? Please extend the existing code (or rewrite > > it) instead of adding a similar hook at a completely different place. > > Current Strategy (when DTS does not specify rampatch and firmware): > Rampatch: Load the rampatch based on soc_type. > NVM: Load the NVM with board_id based on soc_type. > If the file corresponding to board_id does not exist, then > load the NVM file ending with .bin. > For HSP (new requirement): > First, load the rampatch/NVM files wcnhpbtfw and wcnhpnv. > If not found: > Rampatch: Fall back to loading the hpbtfw rampatch file. > NVM: Starting from wcnhpnv.bxxx, load the NVM file ending with > .bin. > If still not found, look for hpnv.bxxx and then apply > the above NVM strategy again (soc_type(board_id) to .bin). > > The current changes are based on the original implementation, which should > make them the clearest modifications. > Please review according to the existing strategy, and feel free to let me > know if you have any questions. qca_download_firmware() has workaround code for WCN6750, loading TLV file if MBN is not present. It doesn't make sense to have similar workardounds in two different places. Could you please unify code (either by moving existing code or by moving your workaround). > > > + > > > if (err < 0) { > > > bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); > > > return err; > > > @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > case QCA_WCN6855: > > > qca_read_fw_board_id(hdev, &boardid); > > > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > - "hpnv", soc_type, ver, rom_ver, boardid); > > > + "wcnhpnv", soc_type, ver, rom_ver, boardid); > > > break; > > > case QCA_WCN7850: > > > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > } > > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > + > > > + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { > > > + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > + "hpnv", soc_type, ver, rom_ver, boardid); > > > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > + } > > > + > > > if (err < 0) { > > > bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); > > > return err; > > > -- > > > 2.34.1 > > > > Thanks, > Shuai -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-12-21 15:21 ` Dmitry Baryshkov @ 2025-12-23 2:03 ` Shuai Zhang 2025-12-24 4:23 ` Dmitry Baryshkov 0 siblings, 1 reply; 13+ messages in thread From: Shuai Zhang @ 2025-12-23 2:03 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng Hi Dmitry On 12/21/2025 11:21 PM, Dmitry Baryshkov wrote: > On Fri, Dec 19, 2025 at 05:19:30PM +0800, Shuai Zhang wrote: >> Hi Dmitry >> >> On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: >>> On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: >>>> Historically, WCN685x and QCA2066 shared the same firmware files. >>>> Now, changes are planned for the firmware that will make it incompatible >>>> with QCA2066, so a new firmware name is required for WCN685x. >>>> >>>> Test Steps: >>>> - Boot device >>>> - Check the BTFW loading status via dmesg >>>> >>>> Sanity pass and Test Log: >>>> QCA Downloading qca/wcnhpbftfw21.tlv >>>> Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 >>>> QCA Downloading qca/hpbftfw21.tlv >>>> >>>> Signed-off-by: Shuai Zhang<shuai.zhang@oss.qualcomm.com> >>>> --- >>>> drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- >>>> 1 file changed, 20 insertions(+), 2 deletions(-) >>>> >>>> diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c >>>> index 7c958d606..8e0004ef7 100644 >>>> --- a/drivers/bluetooth/btqca.c >>>> +++ b/drivers/bluetooth/btqca.c >>>> @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>> "qca/msbtfw%02x.mbn", rom_ver); >>>> break; >>>> case QCA_WCN6855: >>>> + /* Due to historical reasons, WCN685x chip has been using firmware >>>> + * without the "wcn" prefix. The mapping between the chip and its >>>> + * corresponding firmware has now been corrected. >>>> + */ >>>> snprintf(config.fwname, sizeof(config.fwname), >>>> - "qca/hpbtfw%02x.tlv", rom_ver); >>>> + "qca/wcnhpbtfw%02x.tlv", rom_ver); >>>> break; >>>> case QCA_WCN7850: >>>> snprintf(config.fwname, sizeof(config.fwname), >>>> @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>> } >>>> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>> + >>>> + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { >>>> + snprintf(config.fwname, sizeof(config.fwname), >>>> + "qca/hpbtfw%02x.tlv", rom_ver); >>>> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>> + } >>> Is there a reason for ignoring how it was done already for other cases when >>> we need a similar fallback? Please extend the existing code (or rewrite >>> it) instead of adding a similar hook at a completely different place. >> Current Strategy (when DTS does not specify rampatch and firmware): >> Rampatch: Load the rampatch based on soc_type. >> NVM: Load the NVM with board_id based on soc_type. >> If the file corresponding to board_id does not exist, then >> load the NVM file ending with .bin. >> For HSP (new requirement): >> First, load the rampatch/NVM files wcnhpbtfw and wcnhpnv. >> If not found: >> Rampatch: Fall back to loading the hpbtfw rampatch file. >> NVM: Starting from wcnhpnv.bxxx, load the NVM file ending with >> .bin. >> If still not found, look for hpnv.bxxx and then apply >> the above NVM strategy again (soc_type(board_id) to .bin). >> >> The current changes are based on the original implementation, which should >> make them the clearest modifications. >> Please review according to the existing strategy, and feel free to let me >> know if you have any questions. > qca_download_firmware() has workaround code for WCN6750, loading TLV > file if MBN is not present. It doesn't make sense to have similar > workardounds in two different places. Could you please unify code > (either by moving existing code or by moving your workaround). I tried to move the changes into |qca_download_firmware|, but it conflicts with the logic for loading the default NVM. Specifically, when there is no NVM corresponding to the board_id, it will not load the |.bin| NVM file. I’m not sure whether this limitation is within a controllable range. https://github.com/shuaz-shuai/Add-WCN6855-firmware-priority-selection-feature >>>> + >>>> if (err < 0) { >>>> bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); >>>> return err; >>>> @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>> case QCA_WCN6855: >>>> qca_read_fw_board_id(hdev, &boardid); >>>> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >>>> - "hpnv", soc_type, ver, rom_ver, boardid); >>>> + "wcnhpnv", soc_type, ver, rom_ver, boardid); >>>> break; >>>> case QCA_WCN7850: >>>> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >>>> @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>> } >>>> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>> + >>>> + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { >>>> + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >>>> + "hpnv", soc_type, ver, rom_ver, boardid); >>>> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>> + } >>>> + >>>> if (err < 0) { >>>> bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); >>>> return err; >>>> -- >>>> 2.34.1 >>>> >> Thanks, >> Shuai ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-12-23 2:03 ` Shuai Zhang @ 2025-12-24 4:23 ` Dmitry Baryshkov 2025-12-24 6:54 ` Shuai Zhang 0 siblings, 1 reply; 13+ messages in thread From: Dmitry Baryshkov @ 2025-12-24 4:23 UTC (permalink / raw) To: Shuai Zhang Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng On Tue, Dec 23, 2025 at 10:03:44AM +0800, Shuai Zhang wrote: > Hi Dmitry > > On 12/21/2025 11:21 PM, Dmitry Baryshkov wrote: > > On Fri, Dec 19, 2025 at 05:19:30PM +0800, Shuai Zhang wrote: > > > Hi Dmitry > > > > > > On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: > > > > On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: > > > > > Historically, WCN685x and QCA2066 shared the same firmware files. > > > > > Now, changes are planned for the firmware that will make it incompatible > > > > > with QCA2066, so a new firmware name is required for WCN685x. > > > > > > > > > > Test Steps: > > > > > - Boot device > > > > > - Check the BTFW loading status via dmesg > > > > > > > > > > Sanity pass and Test Log: > > > > > QCA Downloading qca/wcnhpbftfw21.tlv > > > > > Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 > > > > > QCA Downloading qca/hpbftfw21.tlv > > > > > > > > > > Signed-off-by: Shuai Zhang<shuai.zhang@oss.qualcomm.com> > > > > > --- > > > > > drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- > > > > > 1 file changed, 20 insertions(+), 2 deletions(-) > > > > > > > > > > diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c > > > > > index 7c958d606..8e0004ef7 100644 > > > > > --- a/drivers/bluetooth/btqca.c > > > > > +++ b/drivers/bluetooth/btqca.c > > > > > @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > "qca/msbtfw%02x.mbn", rom_ver); > > > > > break; > > > > > case QCA_WCN6855: > > > > > + /* Due to historical reasons, WCN685x chip has been using firmware > > > > > + * without the "wcn" prefix. The mapping between the chip and its > > > > > + * corresponding firmware has now been corrected. > > > > > + */ > > > > > snprintf(config.fwname, sizeof(config.fwname), > > > > > - "qca/hpbtfw%02x.tlv", rom_ver); > > > > > + "qca/wcnhpbtfw%02x.tlv", rom_ver); > > > > > break; > > > > > case QCA_WCN7850: > > > > > snprintf(config.fwname, sizeof(config.fwname), > > > > > @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > } > > > > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > + > > > > > + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { > > > > > + snprintf(config.fwname, sizeof(config.fwname), > > > > > + "qca/hpbtfw%02x.tlv", rom_ver); > > > > > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > + } > > > > Is there a reason for ignoring how it was done already for other cases when > > > > we need a similar fallback? Please extend the existing code (or rewrite > > > > it) instead of adding a similar hook at a completely different place. > > > Current Strategy (when DTS does not specify rampatch and firmware): > > > Rampatch: Load the rampatch based on soc_type. > > > NVM: Load the NVM with board_id based on soc_type. > > > If the file corresponding to board_id does not exist, then > > > load the NVM file ending with .bin. > > > For HSP (new requirement): > > > First, load the rampatch/NVM files wcnhpbtfw and wcnhpnv. > > > If not found: > > > Rampatch: Fall back to loading the hpbtfw rampatch file. > > > NVM: Starting from wcnhpnv.bxxx, load the NVM file ending with > > > .bin. > > > If still not found, look for hpnv.bxxx and then apply > > > the above NVM strategy again (soc_type(board_id) to .bin). > > > > > > The current changes are based on the original implementation, which should > > > make them the clearest modifications. > > > Please review according to the existing strategy, and feel free to let me > > > know if you have any questions. > > qca_download_firmware() has workaround code for WCN6750, loading TLV > > file if MBN is not present. It doesn't make sense to have similar > > workardounds in two different places. Could you please unify code > > (either by moving existing code or by moving your workaround). > I tried to move the changes into |qca_download_firmware|, but it conflicts > with the logic for > loading the default NVM. Specifically, when there is no NVM corresponding to > the board_id, > it will not load the |.bin| NVM file. I’m not sure whether this limitation > is within a controllable range. > > https://github.com/shuaz-shuai/Add-WCN6855-firmware-priority-selection-feature So, the solution is to move the quirk for WCN6750 out of qca_download_firmware(). > > > > > > + > > > > > if (err < 0) { > > > > > bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); > > > > > return err; > > > > > @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > case QCA_WCN6855: > > > > > qca_read_fw_board_id(hdev, &boardid); > > > > > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > > > - "hpnv", soc_type, ver, rom_ver, boardid); > > > > > + "wcnhpnv", soc_type, ver, rom_ver, boardid); > > > > > break; > > > > > case QCA_WCN7850: > > > > > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > > > @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > } > > > > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > + > > > > > + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { > > > > > + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > > > + "hpnv", soc_type, ver, rom_ver, boardid); > > > > > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > + } > > > > > + > > > > > if (err < 0) { > > > > > bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); > > > > > return err; > > > > > -- > > > > > 2.34.1 > > > > > > > > Thanks, > > > Shuai -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-12-24 4:23 ` Dmitry Baryshkov @ 2025-12-24 6:54 ` Shuai Zhang 2025-12-24 9:39 ` Dmitry Baryshkov 0 siblings, 1 reply; 13+ messages in thread From: Shuai Zhang @ 2025-12-24 6:54 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng On 12/24/2025 12:23 PM, Dmitry Baryshkov wrote: > On Tue, Dec 23, 2025 at 10:03:44AM +0800, Shuai Zhang wrote: >> Hi Dmitry >> >> On 12/21/2025 11:21 PM, Dmitry Baryshkov wrote: >>> On Fri, Dec 19, 2025 at 05:19:30PM +0800, Shuai Zhang wrote: >>>> Hi Dmitry >>>> >>>> On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: >>>>> On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: >>>>>> Historically, WCN685x and QCA2066 shared the same firmware files. >>>>>> Now, changes are planned for the firmware that will make it incompatible >>>>>> with QCA2066, so a new firmware name is required for WCN685x. >>>>>> >>>>>> Test Steps: >>>>>> - Boot device >>>>>> - Check the BTFW loading status via dmesg >>>>>> >>>>>> Sanity pass and Test Log: >>>>>> QCA Downloading qca/wcnhpbftfw21.tlv >>>>>> Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 >>>>>> QCA Downloading qca/hpbftfw21.tlv >>>>>> >>>>>> Signed-off-by: Shuai Zhang<shuai.zhang@oss.qualcomm.com> >>>>>> --- >>>>>> drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- >>>>>> 1 file changed, 20 insertions(+), 2 deletions(-) >>>>>> >>>>>> diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c >>>>>> index 7c958d606..8e0004ef7 100644 >>>>>> --- a/drivers/bluetooth/btqca.c >>>>>> +++ b/drivers/bluetooth/btqca.c >>>>>> @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>>>> "qca/msbtfw%02x.mbn", rom_ver); >>>>>> break; >>>>>> case QCA_WCN6855: >>>>>> + /* Due to historical reasons, WCN685x chip has been using firmware >>>>>> + * without the "wcn" prefix. The mapping between the chip and its >>>>>> + * corresponding firmware has now been corrected. >>>>>> + */ >>>>>> snprintf(config.fwname, sizeof(config.fwname), >>>>>> - "qca/hpbtfw%02x.tlv", rom_ver); >>>>>> + "qca/wcnhpbtfw%02x.tlv", rom_ver); >>>>>> break; >>>>>> case QCA_WCN7850: >>>>>> snprintf(config.fwname, sizeof(config.fwname), >>>>>> @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>>>> } >>>>>> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>>>> + >>>>>> + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { >>>>>> + snprintf(config.fwname, sizeof(config.fwname), >>>>>> + "qca/hpbtfw%02x.tlv", rom_ver); >>>>>> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>>>> + } >>>>> Is there a reason for ignoring how it was done already for other cases when >>>>> we need a similar fallback? Please extend the existing code (or rewrite >>>>> it) instead of adding a similar hook at a completely different place. >>>> Current Strategy (when DTS does not specify rampatch and firmware): >>>> Rampatch: Load the rampatch based on soc_type. >>>> NVM: Load the NVM with board_id based on soc_type. >>>> If the file corresponding to board_id does not exist, then >>>> load the NVM file ending with .bin. >>>> For HSP (new requirement): >>>> First, load the rampatch/NVM files wcnhpbtfw and wcnhpnv. >>>> If not found: >>>> Rampatch: Fall back to loading the hpbtfw rampatch file. >>>> NVM: Starting from wcnhpnv.bxxx, load the NVM file ending with >>>> .bin. >>>> If still not found, look for hpnv.bxxx and then apply >>>> the above NVM strategy again (soc_type(board_id) to .bin). >>>> >>>> The current changes are based on the original implementation, which should >>>> make them the clearest modifications. >>>> Please review according to the existing strategy, and feel free to let me >>>> know if you have any questions. >>> qca_download_firmware() has workaround code for WCN6750, loading TLV >>> file if MBN is not present. It doesn't make sense to have similar >>> workardounds in two different places. Could you please unify code >>> (either by moving existing code or by moving your workaround). >> I tried to move the changes into |qca_download_firmware|, but it conflicts >> with the logic for >> loading the default NVM. Specifically, when there is no NVM corresponding to >> the board_id, >> it will not load the |.bin| NVM file. I’m not sure whether this limitation >> is within a controllable range. >> >> https://github.com/shuaz-shuai/Add-WCN6855-firmware-priority-selection-feature > So, the solution is to move the quirk for WCN6750 out of > qca_download_firmware(). I’m not entirely clear on the rationale for removing WCN6750, as our current discussion focuses on handling WCN6855. If the logic for loading hpbtfw.tlv and hpnv.bxxx when wcnhpbtfw.tlv and wcnhpnv.bxxx are missing is moved into qca_download_firmware(), it won’t affect the firmware (hpbtfw.tlv). However, for NVM, if loading hpnv.bxxx fails, the hpnv.bin file will also not be loaded, which is a defect. This is why I prefer retaining the V3 changes. Please let me know if you have any concerns or questions. >>>>>> + >>>>>> if (err < 0) { >>>>>> bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); >>>>>> return err; >>>>>> @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>>>> case QCA_WCN6855: >>>>>> qca_read_fw_board_id(hdev, &boardid); >>>>>> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >>>>>> - "hpnv", soc_type, ver, rom_ver, boardid); >>>>>> + "wcnhpnv", soc_type, ver, rom_ver, boardid); >>>>>> break; >>>>>> case QCA_WCN7850: >>>>>> qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >>>>>> @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, >>>>>> } >>>>>> err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>>>> + >>>>>> + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { >>>>>> + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), >>>>>> + "hpnv", soc_type, ver, rom_ver, boardid); >>>>>> + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); >>>>>> + } >>>>>> + >>>>>> if (err < 0) { >>>>>> bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); >>>>>> return err; >>>>>> -- >>>>>> 2.34.1 >>>>>> >>>> Thanks, >>>> Shuai ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-12-24 6:54 ` Shuai Zhang @ 2025-12-24 9:39 ` Dmitry Baryshkov 0 siblings, 0 replies; 13+ messages in thread From: Dmitry Baryshkov @ 2025-12-24 9:39 UTC (permalink / raw) To: Shuai Zhang Cc: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz, linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng On Wed, Dec 24, 2025 at 02:54:24PM +0800, Shuai Zhang wrote: > > On 12/24/2025 12:23 PM, Dmitry Baryshkov wrote: > > On Tue, Dec 23, 2025 at 10:03:44AM +0800, Shuai Zhang wrote: > > > Hi Dmitry > > > > > > On 12/21/2025 11:21 PM, Dmitry Baryshkov wrote: > > > > On Fri, Dec 19, 2025 at 05:19:30PM +0800, Shuai Zhang wrote: > > > > > Hi Dmitry > > > > > > > > > > On 11/19/2025 3:59 PM, Dmitry Baryshkov wrote: > > > > > > On Mon, Nov 17, 2025 at 10:16:45AM +0800, Shuai Zhang wrote: > > > > > > > Historically, WCN685x and QCA2066 shared the same firmware files. > > > > > > > Now, changes are planned for the firmware that will make it incompatible > > > > > > > with QCA2066, so a new firmware name is required for WCN685x. > > > > > > > > > > > > > > Test Steps: > > > > > > > - Boot device > > > > > > > - Check the BTFW loading status via dmesg > > > > > > > > > > > > > > Sanity pass and Test Log: > > > > > > > QCA Downloading qca/wcnhpbftfw21.tlv > > > > > > > Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 > > > > > > > QCA Downloading qca/hpbftfw21.tlv > > > > > > > > > > > > > > Signed-off-by: Shuai Zhang<shuai.zhang@oss.qualcomm.com> > > > > > > > --- > > > > > > > drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- > > > > > > > 1 file changed, 20 insertions(+), 2 deletions(-) > > > > > > > > > > > > > > diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c > > > > > > > index 7c958d606..8e0004ef7 100644 > > > > > > > --- a/drivers/bluetooth/btqca.c > > > > > > > +++ b/drivers/bluetooth/btqca.c > > > > > > > @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > > > "qca/msbtfw%02x.mbn", rom_ver); > > > > > > > break; > > > > > > > case QCA_WCN6855: > > > > > > > + /* Due to historical reasons, WCN685x chip has been using firmware > > > > > > > + * without the "wcn" prefix. The mapping between the chip and its > > > > > > > + * corresponding firmware has now been corrected. > > > > > > > + */ > > > > > > > snprintf(config.fwname, sizeof(config.fwname), > > > > > > > - "qca/hpbtfw%02x.tlv", rom_ver); > > > > > > > + "qca/wcnhpbtfw%02x.tlv", rom_ver); > > > > > > > break; > > > > > > > case QCA_WCN7850: > > > > > > > snprintf(config.fwname, sizeof(config.fwname), > > > > > > > @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > > > } > > > > > > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > > > + > > > > > > > + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { > > > > > > > + snprintf(config.fwname, sizeof(config.fwname), > > > > > > > + "qca/hpbtfw%02x.tlv", rom_ver); > > > > > > > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > > > + } > > > > > > Is there a reason for ignoring how it was done already for other cases when > > > > > > we need a similar fallback? Please extend the existing code (or rewrite > > > > > > it) instead of adding a similar hook at a completely different place. > > > > > Current Strategy (when DTS does not specify rampatch and firmware): > > > > > Rampatch: Load the rampatch based on soc_type. > > > > > NVM: Load the NVM with board_id based on soc_type. > > > > > If the file corresponding to board_id does not exist, then > > > > > load the NVM file ending with .bin. > > > > > For HSP (new requirement): > > > > > First, load the rampatch/NVM files wcnhpbtfw and wcnhpnv. > > > > > If not found: > > > > > Rampatch: Fall back to loading the hpbtfw rampatch file. > > > > > NVM: Starting from wcnhpnv.bxxx, load the NVM file ending with > > > > > .bin. > > > > > If still not found, look for hpnv.bxxx and then apply > > > > > the above NVM strategy again (soc_type(board_id) to .bin). > > > > > > > > > > The current changes are based on the original implementation, which should > > > > > make them the clearest modifications. > > > > > Please review according to the existing strategy, and feel free to let me > > > > > know if you have any questions. > > > > qca_download_firmware() has workaround code for WCN6750, loading TLV > > > > file if MBN is not present. It doesn't make sense to have similar > > > > workardounds in two different places. Could you please unify code > > > > (either by moving existing code or by moving your workaround). > > > I tried to move the changes into |qca_download_firmware|, but it conflicts > > > with the logic for > > > loading the default NVM. Specifically, when there is no NVM corresponding to > > > the board_id, > > > it will not load the |.bin| NVM file. I’m not sure whether this limitation > > > is within a controllable range. > > > > > > https://github.com/shuaz-shuai/Add-WCN6855-firmware-priority-selection-feature > > So, the solution is to move the quirk for WCN6750 out of > > qca_download_firmware(). > > I’m not entirely clear on the rationale for removing WCN6750, > > as our current discussion focuses on handling WCN6855. > As I wrote earlier, code uniformity. We already have a quirk code handling almost the same pattern as yours: load the fallback file if the expected one is missing. Also please fix your editor not to insert extra empty lines in your response. > > If the logic for loading hpbtfw.tlv and hpnv.bxxx when wcnhpbtfw.tlv and > wcnhpnv.bxxx > > are missing is moved into qca_download_firmware(), > > it won’t affect the firmware (hpbtfw.tlv). However, for NVM, if loading > hpnv.bxxx fails, > > the hpnv.bin file will also not be loaded, which is a defect. As I wrote, you are providing more and more arguments for moving WCN6750 code from qca_download_firmware() to the caller site. > > This is why I prefer retaining the V3 changes. > > Please let me know if you have any concerns or questions. > > > > > > > > + > > > > > > > if (err < 0) { > > > > > > > bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); > > > > > > > return err; > > > > > > > @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > > > case QCA_WCN6855: > > > > > > > qca_read_fw_board_id(hdev, &boardid); > > > > > > > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > > > > > - "hpnv", soc_type, ver, rom_ver, boardid); > > > > > > > + "wcnhpnv", soc_type, ver, rom_ver, boardid); > > > > > > > break; > > > > > > > case QCA_WCN7850: > > > > > > > qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > > > > > @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, > > > > > > > } > > > > > > > err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > > > + > > > > > > > + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { > > > > > > > + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), > > > > > > > + "hpnv", soc_type, ver, rom_ver, boardid); > > > > > > > + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); > > > > > > > + } > > > > > > > + > > > > > > > if (err < 0) { > > > > > > > bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); > > > > > > > return err; > > > > > > > -- > > > > > > > 2.34.1 > > > > > > > > > > > > Thanks, > > > > > Shuai -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v3 0/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature @ 2025-11-17 2:14 Shuai Zhang 2025-11-17 2:14 ` [PATCH v3 1/1] " Shuai Zhang 0 siblings, 1 reply; 13+ messages in thread From: Shuai Zhang @ 2025-11-17 2:14 UTC (permalink / raw) To: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz Cc: linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng, shuai.zhang, stable Update WCN6855 firmware to use the new FW file and added a fallback mechanism. changed v2: - Remove CC satble - Update commit - add test steps and log - Link to v2 https://lore.kernel.org/all/20251114081751.3940541-2-shuai.zhang@oss.qualcomm.com/ Changes v2: - Add Fixes tag. - Add comments in the commit and code to explain the reason for the changes. - Link to v1 https://lore.kernel.org/all/20251112074638.1592864-1-quic_shuaz@quicinc.com/ Shuai Zhang (1): Bluetooth: btqca: Add WCN6855 firmware priority selection feature drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v3 1/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature 2025-11-17 2:14 [PATCH v3 0/1] " Shuai Zhang @ 2025-11-17 2:14 ` Shuai Zhang 0 siblings, 0 replies; 13+ messages in thread From: Shuai Zhang @ 2025-11-17 2:14 UTC (permalink / raw) To: Bartosz Golaszewski, Marcel Holtmann, Luiz Augusto von Dentz Cc: linux-arm-msm, linux-bluetooth, linux-kernel, cheng.jiang, quic_chezhou, wei.deng, shuai.zhang, stable Historically, WCN685x and QCA2066 shared the same firmware files. Now, changes are planned for the firmware that will make it incompatible with QCA2066, so a new firmware name is required for WCN685x. Test Steps: - Boot device - Check the BTFW loading status via dmesg Sanity pass and Test Log: QCA Downloading qca/wcnhpbftfw21.tlv Direct firmware load for qca/wcnhpbftfw21.tlv failed with error -2 QCA Downloading qca/hpbftfw21.tlv Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com> --- drivers/bluetooth/btqca.c | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c index 7c958d606..8e0004ef7 100644 --- a/drivers/bluetooth/btqca.c +++ b/drivers/bluetooth/btqca.c @@ -847,8 +847,12 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, "qca/msbtfw%02x.mbn", rom_ver); break; case QCA_WCN6855: + /* Due to historical reasons, WCN685x chip has been using firmware + * without the "wcn" prefix. The mapping between the chip and its + * corresponding firmware has now been corrected. + */ snprintf(config.fwname, sizeof(config.fwname), - "qca/hpbtfw%02x.tlv", rom_ver); + "qca/wcnhpbtfw%02x.tlv", rom_ver); break; case QCA_WCN7850: snprintf(config.fwname, sizeof(config.fwname), @@ -861,6 +865,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, } err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + + if (!rampatch_name && err < 0 && soc_type == QCA_WCN6855) { + snprintf(config.fwname, sizeof(config.fwname), + "qca/hpbtfw%02x.tlv", rom_ver); + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + } + if (err < 0) { bt_dev_err(hdev, "QCA Failed to download patch (%d)", err); return err; @@ -923,7 +934,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, case QCA_WCN6855: qca_read_fw_board_id(hdev, &boardid); qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), - "hpnv", soc_type, ver, rom_ver, boardid); + "wcnhpnv", soc_type, ver, rom_ver, boardid); break; case QCA_WCN7850: qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), @@ -936,6 +947,13 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate, } err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + + if (!firmware_name && err < 0 && soc_type == QCA_WCN6855) { + qca_get_nvm_name_by_board(config.fwname, sizeof(config.fwname), + "hpnv", soc_type, ver, rom_ver, boardid); + err = qca_download_firmware(hdev, &config, soc_type, rom_ver); + } + if (err < 0) { bt_dev_err(hdev, "QCA Failed to download NVM (%d)", err); return err; -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-12-24 9:39 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-11-17 2:16 [PATCH v3 0/1] Bluetooth: btqca: Add WCN6855 firmware priority selection feature Shuai Zhang 2025-11-17 2:16 ` [PATCH v3 1/1] " Shuai Zhang 2025-11-18 13:44 ` Shuai Zhang 2025-11-18 14:04 ` Konrad Dybcio 2025-11-19 7:59 ` Dmitry Baryshkov 2025-12-16 12:54 ` Shuai Zhang 2025-12-19 9:19 ` Shuai Zhang 2025-12-21 15:21 ` Dmitry Baryshkov 2025-12-23 2:03 ` Shuai Zhang 2025-12-24 4:23 ` Dmitry Baryshkov 2025-12-24 6:54 ` Shuai Zhang 2025-12-24 9:39 ` Dmitry Baryshkov -- strict thread matches above, loose matches on Subject: below -- 2025-11-17 2:14 [PATCH v3 0/1] " Shuai Zhang 2025-11-17 2:14 ` [PATCH v3 1/1] " Shuai Zhang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox