]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Bluetooth: btqca: move WCN7850 workaround to the caller
authorShuai Zhang <shuai.zhang@oss.qualcomm.com>
Tue, 6 Jan 2026 04:35:02 +0000 (12:35 +0800)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Thu, 29 Jan 2026 18:26:26 +0000 (13:26 -0500)
WCN7850 will first attempt to use ELF_TYPE_PATCH,
and if that fails, it will fall back to TLV_TYPE_PATCH.

To code uniformity, move WCN7850 workaround to the caller.

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Shuai Zhang <shuai.zhang@oss.qualcomm.com>
Acked-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
drivers/bluetooth/btqca.c

index 7c958d6065bec15aa1829d3e4b100ac9e4a568d0..0af3e2109f310fe41cdfa116f7b75274e407acd6 100644 (file)
@@ -581,28 +581,11 @@ static int qca_download_firmware(struct hci_dev *hdev,
 
        ret = request_firmware(&fw, config->fwname, &hdev->dev);
        if (ret) {
-               /* For WCN6750, if mbn file is not present then check for
-                * tlv file.
-                */
-               if (soc_type == QCA_WCN6750 && config->type == ELF_TYPE_PATCH) {
-                       bt_dev_dbg(hdev, "QCA Failed to request file: %s (%d)",
-                                  config->fwname, ret);
-                       config->type = TLV_TYPE_PATCH;
-                       snprintf(config->fwname, sizeof(config->fwname),
-                                "qca/msbtfw%02x.tlv", rom_ver);
-                       bt_dev_info(hdev, "QCA Downloading %s", config->fwname);
-                       ret = request_firmware(&fw, config->fwname, &hdev->dev);
-                       if (ret) {
-                               bt_dev_err(hdev, "QCA Failed to request file: %s (%d)",
-                                          config->fwname, ret);
-                               return ret;
-                       }
-               }
                /* If the board-specific file is missing, try loading the default
                 * one, unless that was attempted already.
                 */
-               else if (config->type == TLV_TYPE_NVM &&
-                        qca_get_alt_nvm_file(config->fwname, sizeof(config->fwname))) {
+               if (config->type == TLV_TYPE_NVM &&
+                   qca_get_alt_nvm_file(config->fwname, sizeof(config->fwname))) {
                        bt_dev_info(hdev, "QCA Downloading %s", config->fwname);
                        ret = request_firmware(&fw, config->fwname, &hdev->dev);
                        if (ret) {
@@ -861,8 +844,22 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate,
        }
 
        err = qca_download_firmware(hdev, &config, soc_type, rom_ver);
+       /* For WCN6750, if mbn file is not present then check for
+        * tlv file.
+        */
+       if (err < 0 && soc_type == QCA_WCN6750) {
+               bt_dev_dbg(hdev, "QCA Failed to request file: %s (%d)",
+                          config.fwname, err);
+               config.type = TLV_TYPE_PATCH;
+               snprintf(config.fwname, sizeof(config.fwname),
+                        "qca/msbtfw%02x.tlv", rom_ver);
+               bt_dev_info(hdev, "QCA Downloading %s", config.fwname);
+               err = qca_download_firmware(hdev, &config, soc_type, rom_ver);
+       }
+
        if (err < 0) {
-               bt_dev_err(hdev, "QCA Failed to download patch (%d)", err);
+               bt_dev_err(hdev, "QCA Failed to request file: %s (%d)",
+                          config.fwname, err);
                return err;
        }