@@ -754,6 +754,40 @@ void btintel_reset_to_bootloader(struct hci_dev *hdev)
}
EXPORT_SYMBOL_GPL(btintel_reset_to_bootloader);
+int btintel_read_supported_features(struct hci_dev *hdev,
+ struct intel_supported_features *supported_features)
+{
+ struct sk_buff *skb;
+ u8 page_no = 1;
+
+ /* Intel controller supports two pages, each page is of 128-bit
+ * feature bit mask. And each bit defines specific feature support
+ */
+ skb = __hci_cmd_sync(hdev, 0xfca6, sizeof(page_no), &page_no,
+ HCI_INIT_TIMEOUT);
+ if (IS_ERR(skb)) {
+ BT_ERR("Reading supported features(page1) failed (%ld)",
+ PTR_ERR(skb));
+ return PTR_ERR(skb);
+ }
+
+ if (skb->len != (sizeof(supported_features->page1) + 3)) {
+ bt_dev_err(hdev,
+ "Supported feature(page1) event size mismatch");
+ kfree_skb(skb);
+ return -EILSEQ;
+ }
+
+ memcpy(supported_features->page1, skb->data + 3,
+ sizeof(supported_features->page1));
+
+ /* Read the supported features page2 if required in future.
+ */
+ kfree_skb(skb);
+ return 0;
+}
+EXPORT_SYMBOL_GPL(btintel_read_supported_features);
+
MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
MODULE_DESCRIPTION("Bluetooth support for Intel devices ver " VERSION);
MODULE_VERSION(VERSION);
@@ -62,6 +62,11 @@ struct intel_reset {
__le32 boot_param;
} __packed;
+
+struct intel_supported_features {
+ __u8 page1[16];
+} __packed;
+
#if IS_ENABLED(CONFIG_BT_INTEL)
int btintel_check_bdaddr(struct hci_dev *hdev);
@@ -88,6 +93,9 @@ int btintel_read_boot_params(struct hci_dev *hdev,
int btintel_download_firmware(struct hci_dev *dev, const struct firmware *fw,
u32 *boot_param);
void btintel_reset_to_bootloader(struct hci_dev *hdev);
+int btintel_read_supported_features(struct hci_dev *hdev,
+ struct intel_supported_features *supported_features);
+
#else
static inline int btintel_check_bdaddr(struct hci_dev *hdev)
@@ -186,4 +194,10 @@ static inline int btintel_download_firmware(struct hci_dev *dev,
static inline void btintel_reset_to_bootloader(struct hci_dev *hdev)
{
}
+static int btintel_read_supported_features(struct hci_dev *hdev,
+ struct intel_supported_features *supported_features)
+{
+ return -EOPNOTSUPP;
+}
+
#endif
@@ -5,7 +5,6 @@
*
* Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
*/
-
#include <linux/dmi.h>
#include <linux/module.h>
#include <linux/usb.h>
@@ -2273,6 +2272,7 @@ static int btusb_setup_intel_new(struct hci_dev *hdev)
ktime_t calltime, delta, rettime;
unsigned long long duration;
int err;
+ struct intel_supported_features supported_features;
BT_DBG("%s", hdev->name);
@@ -2542,6 +2542,12 @@ static int btusb_setup_intel_new(struct hci_dev *hdev)
*/
btintel_load_ddc_config(hdev, fwname);
+ /* Read the Intel supported features and if new exception formats
+ * supported, need to load the additional DDC config to enable.
+ */
+ btintel_read_supported_features(hdev, &supported_features);
+
+
/* Read the Intel version information after loading the FW */
err = btintel_read_version(hdev, &ver);
if (err)