Bluetooth: btintel: Add support for Magnetor

Hardware variant for Magnetor core (CNVi) is added.

Signed-off-by: Kiran K <kiran.k@intel.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
Kiran K 2022-08-19 13:18:15 +05:30 committed by Luiz Augusto von Dentz
parent a614ee94a8
commit b43331b42e
1 changed files with 3 additions and 0 deletions

View File

@ -449,6 +449,7 @@ static int btintel_version_info_tlv(struct hci_dev *hdev,
case 0x17: /* TyP */ case 0x17: /* TyP */
case 0x18: /* Slr */ case 0x18: /* Slr */
case 0x19: /* Slr-F */ case 0x19: /* Slr-F */
case 0x1b: /* Mgr */
break; break;
default: default:
bt_dev_err(hdev, "Unsupported Intel hardware variant (0x%x)", bt_dev_err(hdev, "Unsupported Intel hardware variant (0x%x)",
@ -2330,6 +2331,7 @@ static void btintel_set_msft_opcode(struct hci_dev *hdev, u8 hw_variant)
case 0x17: case 0x17:
case 0x18: case 0x18:
case 0x19: case 0x19:
case 0x1b:
hci_set_msft_opcode(hdev, 0xFC1E); hci_set_msft_opcode(hdev, 0xFC1E);
break; break;
default: default:
@ -2542,6 +2544,7 @@ static int btintel_setup_combined(struct hci_dev *hdev)
case 0x17: case 0x17:
case 0x18: case 0x18:
case 0x19: case 0x19:
case 0x1b:
/* Display version information of TLV type */ /* Display version information of TLV type */
btintel_version_info_tlv(hdev, &ver_tlv); btintel_version_info_tlv(hdev, &ver_tlv);