* [PATCH v2] Bluetooth: btintel: Add hardware id of BlazarIW
@ 2025-06-18 12:55 Kiran K
2025-06-18 13:29 ` Luiz Augusto von Dentz
2025-06-18 13:29 ` [v2] " bluez.test.bot
0 siblings, 2 replies; 3+ messages in thread
From: Kiran K @ 2025-06-18 12:55 UTC (permalink / raw)
To: linux-bluetooth
Cc: ravishankar.srivatsa, chethan.tumkur.narayan,
chandrashekar.devegowda, aluvala.sai.teja, Kiran K
Add hardware id of BlazarIW cnvi core for 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] 3+ messages in thread* Re: [PATCH v2] Bluetooth: btintel: Add hardware id of BlazarIW
2025-06-18 12:55 [PATCH v2] Bluetooth: btintel: Add hardware id of BlazarIW Kiran K
@ 2025-06-18 13:29 ` Luiz Augusto von Dentz
2025-06-18 13:29 ` [v2] " bluez.test.bot
1 sibling, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-06-18 13:29 UTC (permalink / raw)
To: Kiran K
Cc: linux-bluetooth, ravishankar.srivatsa, chethan.tumkur.narayan,
chandrashekar.devegowda, aluvala.sai.teja
Hi Kiran,
On Wed, Jun 18, 2025 at 8:44 AM Kiran K <kiran.k@intel.com> wrote:
>
> Add hardware id of BlazarIW cnvi core for USB and PCIe transport.
It might be a good idea to add some trace of what is the expected
response for the likes of the read version command for these
controllers.
> 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
>
>
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 3+ messages in thread* RE: [v2] Bluetooth: btintel: Add hardware id of BlazarIW
2025-06-18 12:55 [PATCH v2] Bluetooth: btintel: Add hardware id of BlazarIW Kiran K
2025-06-18 13:29 ` Luiz Augusto von Dentz
@ 2025-06-18 13:29 ` bluez.test.bot
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-06-18 13:29 UTC (permalink / raw)
To: linux-bluetooth, kiran.k
[-- Attachment #1: Type: text/plain, Size: 1950 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=973435
---Test result---
Test Summary:
CheckPatch PENDING 0.33 seconds
GitLint PENDING 0.30 seconds
SubjectPrefix PASS 0.12 seconds
BuildKernel PASS 24.52 seconds
CheckAllWarning PASS 26.76 seconds
CheckSparse PASS 30.15 seconds
BuildKernel32 PASS 24.24 seconds
TestRunnerSetup PASS 464.47 seconds
TestRunner_l2cap-tester PASS 25.57 seconds
TestRunner_iso-tester PASS 46.92 seconds
TestRunner_bnep-tester PASS 5.89 seconds
TestRunner_mgmt-tester FAIL 133.34 seconds
TestRunner_rfcomm-tester PASS 9.23 seconds
TestRunner_sco-tester PASS 14.70 seconds
TestRunner_ioctl-tester PASS 10.16 seconds
TestRunner_mesh-tester PASS 7.35 seconds
TestRunner_smp-tester PASS 8.45 seconds
TestRunner_userchan-tester PASS 6.13 seconds
IncrementalBuild PENDING 0.99 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
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 - Set Flags 2 (Enable RL) Failed 0.183 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
end of thread, other threads:[~2025-06-18 13:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-18 12:55 [PATCH v2] Bluetooth: btintel: Add hardware id of BlazarIW Kiran K
2025-06-18 13:29 ` Luiz Augusto von Dentz
2025-06-18 13:29 ` [v2] " bluez.test.bot
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.