From: Yepuri Siddu <yepuri.siddu@oss.qualcomm.com>
To: Bartosz Golaszewski <brgl@kernel.org>
Cc: quic_mohamull@quicinc.com, quic_hbandi@quicinc.com,
rahul.samana@oss.qualcomm.com, harshitha.reddy@oss.qualcomm.com,
dishank.garg@oss.qualcomm.com, linux-arm-msm@vger.kernel.org,
linux-bluetooth@vger.kernel.org, linux-kernel@vger.kernel.org,
Marcel Holtmann <marcel@holtmann.org>,
Luiz Augusto von Dentz <luiz.dentz@gmail.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konradybcio@kernel.org>,
Balakrishna Godavarthi <quic_bgodavar@quicinc.com>,
Rocky Liao <quic_rjliao@quicinc.com>
Subject: Re: [PATCH 4/4] Bluetooth: qca: combine NVM and calibration data for QCC2072
Date: Mon, 1 Jun 2026 15:12:23 +0530 [thread overview]
Message-ID: <83c71ff0-bbc3-4a1f-b18f-ab31dbf3e19d@oss.qualcomm.com> (raw)
In-Reply-To: <CAMRc=MeMm2rmeMOg-HcFY4ONvNbrS7qN=ioyAezRhurL_9Vt1Q@mail.gmail.com>
On 6/1/2026 1:59 PM, Bartosz Golaszewski wrote:
> On Fri, 29 May 2026 20:04:31 +0200, Yepuri Siddu
> <yepuri.siddu@oss.qualcomm.com> said:
>> QCC2072 requires the NVM and calibration data to be delivered to the
>> controller bundled together in an outer TLV of type 4. After loading
>> the NVM file, load the calibration file (qca/ornbcscal<ver>.bin) and
>> combine both into a single buffer with the outer TLV header before
>> passing it to qca_tlv_check_data().
>>
>> The outer TLV header encodes the combined payload length in the high
>> 24 bits and type 4 in the low 8 bits of the type_len field.
>>
>> If the calibration file is unavailable, fall back to downloading the
>> NVM alone.
>>
>> Signed-off-by: Yepuri Siddu <yepuri.siddu@oss.qualcomm.com>
>> ---
>> drivers/bluetooth/btqca.c | 47 +++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 47 insertions(+)
>>
>> diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c
>> index 0ef7546e7c7a..37db1cd9e8cf 100644
>> --- a/drivers/bluetooth/btqca.c
>> +++ b/drivers/bluetooth/btqca.c
>> @@ -612,6 +612,53 @@ static int qca_download_firmware(struct hci_dev *hdev,
>> memcpy(data, fw->data, size);
>> release_firmware(fw);
>>
>> + /* For QCC2072, combine the NVM (type 2) with the calibration file
>> + * into a single TLV of outer type 4.
>> + */
>> + if (soc_type == QCA_QCC2072 && config->type == TLV_TYPE_NVM) {
>> + const struct firmware *calib_fw = NULL;
>> + char calib_name[32];
>> + u8 *combined_data = NULL;
>> + size_t inner_len, combined_size;
>> + struct tlv_type_hdr *outer_hdr;
>> + int err;
>> +
>> + snprintf(calib_name, sizeof(calib_name),
>> + "qca/ornbcscal%02x.bin", rom_ver);
>> + err = request_firmware(&calib_fw, calib_name, &hdev->dev);
>> + if (err) {
>> + bt_dev_err(hdev, "QCA Failed to request file: %s (%d)",
>> + calib_name, err);
>> + goto skip_combination;
>
> How about providing a separate function to handle it and avoiding the
> objectively ugly label?
Thank you for the suggestion. Will send a v2 with this addressed.
>
>> + }
>> +
>> + bt_dev_info(hdev, "QCA Downloading %s", calib_name);
>> +
>> + inner_len = size + calib_fw->size;
>> + combined_size = sizeof(*outer_hdr) + inner_len;
>> + combined_data = vmalloc(combined_size);
>> + if (!combined_data) {
>> + bt_dev_warn(hdev,
>> + "QCA Failed to allocate memory for file: %s",
>> + calib_name);
>> + release_firmware(calib_fw);
>> + goto skip_combination;
>> + }
>> +
>> + outer_hdr = (struct tlv_type_hdr *)combined_data;
>> + /* high 24 bits = payload length, low 8 bits = type */
>> + outer_hdr->type_len = cpu_to_le32((inner_len << 8) | 4);
>> + memcpy(combined_data + sizeof(*outer_hdr), data, size);
>> + memcpy(combined_data + sizeof(*outer_hdr) + size,
>> + calib_fw->data, calib_fw->size);
>> + release_firmware(calib_fw);
>> + vfree(data);
>> + data = combined_data;
>> + size = combined_size;
>
> Otherwise it looks ok to me.
>
> Bartosz
>
>> +skip_combination:
>> + ;
>> + }
>> +
>> ret = qca_tlv_check_data(hdev, config, data, size, soc_type);
>> if (ret)
>> goto out;
>> --
>> 2.34.1
>>
>>
next prev parent reply other threads:[~2026-06-01 9:42 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-29 18:04 [PATCH 4/4] Bluetooth: qca: combine NVM and calibration data for QCC2072 Yepuri Siddu
2026-06-01 8:29 ` Bartosz Golaszewski
2026-06-01 9:42 ` Yepuri Siddu [this message]
2026-06-01 9:50 ` Dmitry Baryshkov
2026-06-01 9:58 ` Yepuri Siddu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=83c71ff0-bbc3-4a1f-b18f-ab31dbf3e19d@oss.qualcomm.com \
--to=yepuri.siddu@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=brgl@kernel.org \
--cc=conor+dt@kernel.org \
--cc=dishank.garg@oss.qualcomm.com \
--cc=harshitha.reddy@oss.qualcomm.com \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-bluetooth@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luiz.dentz@gmail.com \
--cc=marcel@holtmann.org \
--cc=quic_bgodavar@quicinc.com \
--cc=quic_hbandi@quicinc.com \
--cc=quic_mohamull@quicinc.com \
--cc=quic_rjliao@quicinc.com \
--cc=rahul.samana@oss.qualcomm.com \
--cc=robh@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox