diff options
| author | Kiran K <kiran.k@intel.com> | 2026-02-28 14:42:36 +0530 |
|---|---|---|
| committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2026-04-10 10:28:44 -0400 |
| commit | 9c52085e10af716812cfc8de79bc4f22747b3c19 (patch) | |
| tree | 5b3ce5c61be4f1cd2eb30fee764afef3ad35bb98 /drivers/bluetooth | |
| parent | e64621ef1500f9c0c26d0b680223d4f3819cf24d (diff) | |
| download | lwn-9c52085e10af716812cfc8de79bc4f22747b3c19.tar.gz lwn-9c52085e10af716812cfc8de79bc4f22747b3c19.zip | |
Bluetooth: btintel: Add support for Scorpious Peak2F support
Add support for Intel Bluetooth Scorpious Peak2F core.
Signed-off-by: Kiran K <kiran.k@intel.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'drivers/bluetooth')
| -rw-r--r-- | drivers/bluetooth/btintel.c | 3 | ||||
| -rw-r--r-- | drivers/bluetooth/btintel_pcie.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index 77930bc225f5..dcaaa4ca02b9 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -503,6 +503,7 @@ int btintel_version_info_tlv(struct hci_dev *hdev, case 0x1e: /* BlazarI (Bzr) */ case 0x1f: /* Scorpious Peak */ case 0x20: /* Scorpious Peak2 */ + case 0x21: /* Scorpious Peak2 F */ case 0x22: /* BlazarIW (BzrIW) */ break; default: @@ -3330,6 +3331,7 @@ void btintel_set_msft_opcode(struct hci_dev *hdev, u8 hw_variant) case 0x1e: case 0x1f: case 0x20: + case 0x21: case 0x22: hci_set_msft_opcode(hdev, 0xFC1E); break; @@ -3672,6 +3674,7 @@ static int btintel_setup_combined(struct hci_dev *hdev) case 0x1e: case 0x1f: case 0x20: + case 0x21: 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 0febdbd0d86e..78209e8768bb 100644 --- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c @@ -2103,6 +2103,7 @@ static int btintel_pcie_setup_internal(struct hci_dev *hdev) case 0x1e: /* BzrI */ case 0x1f: /* ScP */ case 0x20: /* ScP2 */ + case 0x21: /* ScP2 F */ case 0x22: /* BzrIW */ /* Display version information of TLV type */ btintel_version_info_tlv(hdev, &ver_tlv); |
