* [PATCH v1] Bluetooth: btintel: Add support for BlazarIW @ 2025-06-16 16:26 Kiran K 2025-06-16 16:38 ` [v1] " bluez.test.bot 2025-06-16 20:20 ` [PATCH v1] " Paul Menzel 0 siblings, 2 replies; 4+ messages in thread From: Kiran K @ 2025-06-16 16:26 UTC (permalink / raw) To: linux-bluetooth Cc: ravishankar.srivatsa, chethan.tumkur.narayan, chandrashekar.devegowda, aluvala.sai.teja, Kiran K Add support for Bluetooth core - BlazarIW over USB and PCIe transport. Signed-off-by: Kiran K <kiran.k@intel.com> --- 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 55cc1652bfe4..f6805027be0a 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 */ 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 cb3cf2b9acea..1004264128e3 100644 --- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c @@ -2137,6 +2137,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: /* BlazarIW */ /* Display version information of TLV type */ btintel_version_info_tlv(hdev, &ver_tlv); -- 2.43.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* RE: [v1] Bluetooth: btintel: Add support for BlazarIW 2025-06-16 16:26 [PATCH v1] Bluetooth: btintel: Add support for BlazarIW Kiran K @ 2025-06-16 16:38 ` bluez.test.bot 2025-06-16 20:20 ` [PATCH v1] " Paul Menzel 1 sibling, 0 replies; 4+ messages in thread From: bluez.test.bot @ 2025-06-16 16:38 UTC (permalink / raw) To: linux-bluetooth, kiran.k [-- Attachment #1: Type: text/plain, Size: 2082 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=972597 ---Test result--- Test Summary: CheckPatch PENDING 0.28 seconds GitLint PENDING 0.18 seconds SubjectPrefix PASS 0.12 seconds BuildKernel PASS 25.26 seconds CheckAllWarning PASS 27.28 seconds CheckSparse PASS 30.78 seconds BuildKernel32 PASS 24.56 seconds TestRunnerSetup PASS 466.01 seconds TestRunner_l2cap-tester PASS 25.98 seconds TestRunner_iso-tester FAIL 8.08 seconds TestRunner_bnep-tester PASS 6.00 seconds TestRunner_mgmt-tester FAIL 134.71 seconds TestRunner_rfcomm-tester PASS 9.43 seconds TestRunner_sco-tester PASS 14.96 seconds TestRunner_ioctl-tester PASS 10.12 seconds TestRunner_mesh-tester PASS 7.50 seconds TestRunner_smp-tester PASS 8.75 seconds TestRunner_userchan-tester PASS 6.31 seconds IncrementalBuild PENDING 0.89 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: No test result found ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 490, Passed: 485 (99.0%), Failed: 1, Not Run: 4 Failed Test Cases LL Privacy - Add Device 2 (2 Devices to AL) Failed 0.196 seconds ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] Bluetooth: btintel: Add support for BlazarIW 2025-06-16 16:26 [PATCH v1] Bluetooth: btintel: Add support for BlazarIW Kiran K 2025-06-16 16:38 ` [v1] " bluez.test.bot @ 2025-06-16 20:20 ` Paul Menzel 2025-06-18 12:33 ` K, Kiran 1 sibling, 1 reply; 4+ messages in thread From: Paul Menzel @ 2025-06-16 20:20 UTC (permalink / raw) To: Kiran K Cc: linux-bluetooth, ravishankar.srivatsa, chethan.tumkur.narayan, chandrashekar.devegowda, aluvala.sai.teja Dear Kiran, Thank you for your patch. Maybe for the summary/title: Bluetooth: btintel: Add BlazarIW TLV id Am 16.06.25 um 18:26 schrieb Kiran K: > Add support for Bluetooth core - BlazarIW over USB and PCIe transport. A statement, that only ids need to be added, and that support exists, would be nice. Any datasheet reference? Do you have the hardware, and were able to test this? > Signed-off-by: Kiran K <kiran.k@intel.com> > --- > 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 55cc1652bfe4..f6805027be0a 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 */ > 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 cb3cf2b9acea..1004264128e3 100644 > --- a/drivers/bluetooth/btintel_pcie.c > +++ b/drivers/bluetooth/btintel_pcie.c > @@ -2137,6 +2137,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: /* BlazarIW */ > /* Display version information of TLV type */ > btintel_version_info_tlv(hdev, &ver_tlv); > Kind regards, Paul ^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH v1] Bluetooth: btintel: Add support for BlazarIW 2025-06-16 20:20 ` [PATCH v1] " Paul Menzel @ 2025-06-18 12:33 ` K, Kiran 0 siblings, 0 replies; 4+ messages in thread From: K, Kiran @ 2025-06-18 12:33 UTC (permalink / raw) To: Paul Menzel Cc: linux-bluetooth@vger.kernel.org, Srivatsa, Ravishankar, Tumkur Narayan, Chethan, Devegowda, Chandrashekar, Aluvala Sai Teja Hi Paul, Thanks for your comments. >-----Original Message----- >From: Paul Menzel <pmenzel@molgen.mpg.de> >Sent: Tuesday, June 17, 2025 1:51 AM >To: K, Kiran <kiran.k@intel.com> >Cc: linux-bluetooth@vger.kernel.org; Srivatsa, Ravishankar ><ravishankar.srivatsa@intel.com>; Tumkur Narayan, Chethan ><chethan.tumkur.narayan@intel.com>; Devegowda, Chandrashekar ><chandrashekar.devegowda@intel.com>; Aluvala Sai Teja ><aluvala.sai.teja@intel.com> >Subject: Re: [PATCH v1] Bluetooth: btintel: Add support for BlazarIW > >Dear Kiran, > > >Thank you for your patch. Maybe for the summary/title: > >Bluetooth: btintel: Add BlazarIW TLV id > >Am 16.06.25 um 18:26 schrieb Kiran K: >> Add support for Bluetooth core - BlazarIW over USB and PCIe transport. > >A statement, that only ids need to be added, and that support exists, would be >nice. I will amend the commit message. > >Any datasheet reference? Do you have the hardware, and were able to test >this? Sorry, Intel doesn’t release these documents to public. I am able to test this. > >> Signed-off-by: Kiran K <kiran.k@intel.com> >> --- >> 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 55cc1652bfe4..f6805027be0a 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 */ >> 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 cb3cf2b9acea..1004264128e3 100644 >> --- a/drivers/bluetooth/btintel_pcie.c >> +++ b/drivers/bluetooth/btintel_pcie.c >> @@ -2137,6 +2137,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: /* BlazarIW */ >> /* Display version information of TLV type */ >> btintel_version_info_tlv(hdev, &ver_tlv); >> > > >Kind regards, > >Paul Thanks, Kiran ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-06-18 12:33 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-16 16:26 [PATCH v1] Bluetooth: btintel: Add support for BlazarIW Kiran K 2025-06-16 16:38 ` [v1] " bluez.test.bot 2025-06-16 20:20 ` [PATCH v1] " Paul Menzel 2025-06-18 12:33 ` K, Kiran
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.