* [PATCH v3] Bluetooth: btintel: Add support for BlazarIW core
@ 2025-07-24 12:28 Kiran K
2025-07-24 12:52 ` [v3] " bluez.test.bot
2025-07-24 21:00 ` [PATCH v3] " patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Kiran K @ 2025-07-24 12:28 UTC (permalink / raw)
To: linux-bluetooth; +Cc: ravishankar.srivatsa, Kiran K, Vijay Satija
Add support for the BlazarIW Bluetooth core used in the Wildcat Lake
platform.
HCI traces:
< HCI Command: Intel Read Version (0x3f|0x0005) plen 1
Requested Type:
All Supported Types(0xff)
> HCI Event: Command Complete (0x0e) plen 122
Intel Read Version (0x3f|0x0005) ncmd 1
Status: Success (0x00)
.....
CNVi BT(18): cnvi (BlazarIW) cnvibt: (0x00223700)
.....
.....
Signed-off-by: Vijay Satija <vijay.satija@intel.com>
Signed-off-by: Kiran K <kiran.k@intel.com>
---
changes in v3:
- Remove dmesg and include HCI traces of Intel Read version command and event
changes in v2:
- Include dmesg of firmware download traces
drivers/bluetooth/btintel.c | 3 +++
drivers/bluetooth/btintel_pcie.c | 1 +
2 files changed, 4 insertions(+)
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c
index be69d21c9aa7..9d29ab811f80 100644
--- a/drivers/bluetooth/btintel.c
+++ b/drivers/bluetooth/btintel.c
@@ -484,6 +484,7 @@ int btintel_version_info_tlv(struct hci_dev *hdev,
case 0x1d: /* BlazarU (BzrU) */
case 0x1e: /* BlazarI (Bzr) */
case 0x1f: /* Scorpious Peak */
+ case 0x22: /* BlazarIW (BzrIW) */
break;
default:
bt_dev_err(hdev, "Unsupported Intel hardware variant (0x%x)",
@@ -3253,6 +3254,7 @@ void btintel_set_msft_opcode(struct hci_dev *hdev, u8 hw_variant)
case 0x1d:
case 0x1e:
case 0x1f:
+ case 0x22:
hci_set_msft_opcode(hdev, 0xFC1E);
break;
default:
@@ -3593,6 +3595,7 @@ static int btintel_setup_combined(struct hci_dev *hdev)
case 0x1d:
case 0x1e:
case 0x1f:
+ case 0x22:
/* Display version information of TLV type */
btintel_version_info_tlv(hdev, &ver_tlv);
diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c
index a96975a55cbe..9792a49886ff 100644
--- a/drivers/bluetooth/btintel_pcie.c
+++ b/drivers/bluetooth/btintel_pcie.c
@@ -2157,6 +2157,7 @@ static int btintel_pcie_setup_internal(struct hci_dev *hdev)
switch (INTEL_HW_VARIANT(ver_tlv.cnvi_bt)) {
case 0x1e: /* BzrI */
case 0x1f: /* ScP */
+ case 0x22: /* BzrIW */
/* Display version information of TLV type */
btintel_version_info_tlv(hdev, &ver_tlv);
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: [v3] Bluetooth: btintel: Add support for BlazarIW core
2025-07-24 12:28 [PATCH v3] Bluetooth: btintel: Add support for BlazarIW core Kiran K
@ 2025-07-24 12:52 ` bluez.test.bot
2025-07-24 21:00 ` [PATCH v3] " patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-07-24 12:52 UTC (permalink / raw)
To: linux-bluetooth, kiran.k
[-- Attachment #1: Type: text/plain, Size: 2268 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=985533
---Test result---
Test Summary:
CheckPatch PENDING 0.42 seconds
GitLint PENDING 0.35 seconds
SubjectPrefix PASS 0.07 seconds
BuildKernel PASS 25.18 seconds
CheckAllWarning PASS 27.88 seconds
CheckSparse PASS 31.11 seconds
BuildKernel32 PASS 24.94 seconds
TestRunnerSetup PASS 485.62 seconds
TestRunner_l2cap-tester PASS 25.32 seconds
TestRunner_iso-tester FAIL 37.31 seconds
TestRunner_bnep-tester PASS 6.01 seconds
TestRunner_mgmt-tester PASS 130.57 seconds
TestRunner_rfcomm-tester PASS 9.60 seconds
TestRunner_sco-tester PASS 15.18 seconds
TestRunner_ioctl-tester PASS 10.50 seconds
TestRunner_mesh-tester FAIL 11.59 seconds
TestRunner_smp-tester PASS 8.74 seconds
TestRunner_userchan-tester PASS 6.39 seconds
IncrementalBuild PENDING 0.71 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: TestRunner_iso-tester - FAIL
Desc: Run iso-tester with test-runner
Output:
BUG: KASAN: slab-use-after-free in iso_conn_hold_unless_zero+0x76/0x1c0
Total: 130, Passed: 130 (100.0%), Failed: 0, Not Run: 0
##############################
Test: TestRunner_mesh-tester - FAIL
Desc: Run mesh-tester with test-runner
Output:
Total: 10, Passed: 8 (80.0%), Failed: 2, Not Run: 0
Failed Test Cases
Mesh - Send cancel - 1 Timed out 2.044 seconds
Mesh - Send cancel - 2 Timed out 2.000 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] Bluetooth: btintel: Add support for BlazarIW core
2025-07-24 12:28 [PATCH v3] Bluetooth: btintel: Add support for BlazarIW core Kiran K
2025-07-24 12:52 ` [v3] " bluez.test.bot
@ 2025-07-24 21:00 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2025-07-24 21:00 UTC (permalink / raw)
To: Kiran K; +Cc: linux-bluetooth, ravishankar.srivatsa, vijay.satija
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Thu, 24 Jul 2025 17:58:24 +0530 you wrote:
> Add support for the BlazarIW Bluetooth core used in the Wildcat Lake
> platform.
>
> HCI traces:
> < HCI Command: Intel Read Version (0x3f|0x0005) plen 1
> Requested Type:
> All Supported Types(0xff)
> > HCI Event: Command Complete (0x0e) plen 122
> Intel Read Version (0x3f|0x0005) ncmd 1
> Status: Success (0x00)
> .....
> CNVi BT(18): cnvi (BlazarIW) cnvibt: (0x00223700)
> .....
> .....
>
> [...]
Here is the summary with links:
- [v3] Bluetooth: btintel: Add support for BlazarIW core
https://git.kernel.org/bluetooth/bluetooth-next/c/e74375b59a51
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] 3+ messages in thread
end of thread, other threads:[~2025-07-24 20:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-24 12:28 [PATCH v3] Bluetooth: btintel: Add support for BlazarIW core Kiran K
2025-07-24 12:52 ` [v3] " bluez.test.bot
2025-07-24 21:00 ` [PATCH v3] " 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