Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
* [PATCH v3 0/1] Bluetooth: btusb: add new custom firmwares
@ 2025-11-09  9:24 Shuai Zhang
  2025-11-09  9:24 ` [PATCH v3 1/1] " Shuai Zhang
  2025-11-10 20:40 ` [PATCH v3 0/1] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 4+ messages in thread
From: Shuai Zhang @ 2025-11-09  9:24 UTC (permalink / raw)
  To: Marcel Holtmann, Luiz Augusto von Dentz
  Cc: linux-bluetooth, linux-kernel, linux-arm-msm, quic_chejiang,
	quic_jiaymao, quic_chezhou, Shuai Zhang

add new custom firmwares

Please refer to the link for information about the qcs2066 folder.

a3f9f6dd047a ("Bluetooth: btusb: QCA: Support downloading custom-made firmwares")

Changes for v3
- remove CC stable
- V2 link
  https://lore.kernel.org/all/20251107125405.1632663-1-quic_shuaz@quicinc.com/

Changes for v2
- Add a more detailed description of the patch.
- remove CC stable
- V1 link
  https://lore.kernel.org/all/20251107021345.2759890-1-quic_shuaz@quicinc.com/

Shuai Zhang (1):
  Bluetooth: btusb: add new custom firmwares

 drivers/bluetooth/btusb.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v3 1/1] Bluetooth: btusb: add new custom firmwares
  2025-11-09  9:24 [PATCH v3 0/1] Bluetooth: btusb: add new custom firmwares Shuai Zhang
@ 2025-11-09  9:24 ` Shuai Zhang
  2025-11-09 20:15   ` Dmitry Baryshkov
  2025-11-10 20:40 ` [PATCH v3 0/1] " patchwork-bot+bluetooth
  1 sibling, 1 reply; 4+ messages in thread
From: Shuai Zhang @ 2025-11-09  9:24 UTC (permalink / raw)
  To: Marcel Holtmann, Luiz Augusto von Dentz
  Cc: linux-bluetooth, linux-kernel, linux-arm-msm, quic_chejiang,
	quic_jiaymao, quic_chezhou, Shuai Zhang

The new platform uses the QCA2066 chip along with a new board ID, which
requires a dedicated firmware file to ensure proper initialization.
Without this entry, the driver cannot locate and load the correct
firmware, resulting in Bluetooth bring-up failure.

This patch adds a new entry to the firmware table for QCA2066 so that
the driver can correctly identify the board ID and load the appropriate
firmware from 'qca/QCA2066/' in the linux-firmware repository.

Signed-off-by: Shuai Zhang <quic_shuaz@quicinc.com>
---
 drivers/bluetooth/btusb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index dcbff7641..7175e9b2d 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -3273,6 +3273,7 @@ static const struct qca_device_info qca_devices_table[] = {
 
 static const struct qca_custom_firmware qca_custom_btfws[] = {
 	{ 0x00130201, 0x030A, "QCA2066" },
+	{ 0x00130201, 0x030B, "QCA2066" },
 	{ },
 };
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 1/1] Bluetooth: btusb: add new custom firmwares
  2025-11-09  9:24 ` [PATCH v3 1/1] " Shuai Zhang
@ 2025-11-09 20:15   ` Dmitry Baryshkov
  0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2025-11-09 20:15 UTC (permalink / raw)
  To: Shuai Zhang
  Cc: Marcel Holtmann, Luiz Augusto von Dentz, linux-bluetooth,
	linux-kernel, linux-arm-msm, quic_chejiang, quic_jiaymao,
	quic_chezhou

On Sun, Nov 09, 2025 at 05:24:37PM +0800, Shuai Zhang wrote:
> The new platform uses the QCA2066 chip along with a new board ID, which
> requires a dedicated firmware file to ensure proper initialization.
> Without this entry, the driver cannot locate and load the correct
> firmware, resulting in Bluetooth bring-up failure.
> 
> This patch adds a new entry to the firmware table for QCA2066 so that
> the driver can correctly identify the board ID and load the appropriate
> firmware from 'qca/QCA2066/' in the linux-firmware repository.
> 
> Signed-off-by: Shuai Zhang <quic_shuaz@quicinc.com>
> ---
>  drivers/bluetooth/btusb.c | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>


-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 0/1] Bluetooth: btusb: add new custom firmwares
  2025-11-09  9:24 [PATCH v3 0/1] Bluetooth: btusb: add new custom firmwares Shuai Zhang
  2025-11-09  9:24 ` [PATCH v3 1/1] " Shuai Zhang
@ 2025-11-10 20:40 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2025-11-10 20:40 UTC (permalink / raw)
  To: Shuai Zhang
  Cc: marcel, luiz.dentz, linux-bluetooth, linux-kernel, linux-arm-msm,
	quic_chejiang, quic_jiaymao, quic_chezhou

Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Sun,  9 Nov 2025 17:24:36 +0800 you wrote:
> add new custom firmwares
> 
> Please refer to the link for information about the qcs2066 folder.
> 
> a3f9f6dd047a ("Bluetooth: btusb: QCA: Support downloading custom-made firmwares")
> 
> Changes for v3
> - remove CC stable
> - V2 link
>   https://lore.kernel.org/all/20251107125405.1632663-1-quic_shuaz@quicinc.com/
> 
> [...]

Here is the summary with links:
  - [v3,1/1] Bluetooth: btusb: add new custom firmwares
    https://git.kernel.org/bluetooth/bluetooth-next/c/c1b7e4ae360b

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-11-10 20:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-09  9:24 [PATCH v3 0/1] Bluetooth: btusb: add new custom firmwares Shuai Zhang
2025-11-09  9:24 ` [PATCH v3 1/1] " Shuai Zhang
2025-11-09 20:15   ` Dmitry Baryshkov
2025-11-10 20:40 ` [PATCH v3 0/1] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox