2020-04-03 21:44:01 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Google Corporation
|
|
|
|
*/
|
|
|
|
|
2020-06-17 16:39:13 +02:00
|
|
|
#define MSFT_FEATURE_MASK_BREDR_RSSI_MONITOR BIT(0)
|
|
|
|
#define MSFT_FEATURE_MASK_LE_CONN_RSSI_MONITOR BIT(1)
|
|
|
|
#define MSFT_FEATURE_MASK_LE_ADV_RSSI_MONITOR BIT(2)
|
|
|
|
#define MSFT_FEATURE_MASK_LE_ADV_MONITOR BIT(3)
|
|
|
|
#define MSFT_FEATURE_MASK_CURVE_VALIDITY BIT(4)
|
|
|
|
#define MSFT_FEATURE_MASK_CONCURRENT_ADV_MONITOR BIT(5)
|
|
|
|
|
2020-04-03 21:44:01 +02:00
|
|
|
#if IS_ENABLED(CONFIG_BT_MSFTEXT)
|
|
|
|
|
2021-01-22 16:36:12 +08:00
|
|
|
bool msft_monitor_supported(struct hci_dev *hdev);
|
2021-09-09 14:10:23 -07:00
|
|
|
void msft_register(struct hci_dev *hdev);
|
2024-04-30 12:20:51 -04:00
|
|
|
void msft_release(struct hci_dev *hdev);
|
2020-04-03 21:44:01 +02:00
|
|
|
void msft_do_open(struct hci_dev *hdev);
|
|
|
|
void msft_do_close(struct hci_dev *hdev);
|
2021-12-01 10:55:03 -08:00
|
|
|
void msft_vendor_evt(struct hci_dev *hdev, void *data, struct sk_buff *skb);
|
2020-06-17 16:39:13 +02:00
|
|
|
__u64 msft_get_features(struct hci_dev *hdev);
|
2021-01-22 16:36:12 +08:00
|
|
|
int msft_add_monitor_pattern(struct hci_dev *hdev, struct adv_monitor *monitor);
|
2022-07-20 16:21:14 -07:00
|
|
|
int msft_remove_monitor(struct hci_dev *hdev, struct adv_monitor *monitor);
|
2021-01-22 16:36:17 +08:00
|
|
|
void msft_req_add_set_filter_enable(struct hci_request *req, bool enable);
|
2021-01-22 16:36:15 +08:00
|
|
|
int msft_set_filter_enable(struct hci_dev *hdev, bool enable);
|
2021-10-27 16:59:00 -07:00
|
|
|
int msft_suspend_sync(struct hci_dev *hdev);
|
|
|
|
int msft_resume_sync(struct hci_dev *hdev);
|
2021-04-06 21:55:56 +02:00
|
|
|
bool msft_curve_validity(struct hci_dev *hdev);
|
2020-04-03 21:44:01 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2021-01-22 16:36:12 +08:00
|
|
|
static inline bool msft_monitor_supported(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-09 14:10:23 -07:00
|
|
|
static inline void msft_register(struct hci_dev *hdev) {}
|
2024-04-30 12:20:51 -04:00
|
|
|
static inline void msft_release(struct hci_dev *hdev) {}
|
2020-04-03 21:44:01 +02:00
|
|
|
static inline void msft_do_open(struct hci_dev *hdev) {}
|
|
|
|
static inline void msft_do_close(struct hci_dev *hdev) {}
|
2021-12-06 11:27:01 -08:00
|
|
|
static inline void msft_vendor_evt(struct hci_dev *hdev, void *data,
|
|
|
|
struct sk_buff *skb) {}
|
2020-06-17 16:39:13 +02:00
|
|
|
static inline __u64 msft_get_features(struct hci_dev *hdev) { return 0; }
|
2021-01-22 16:36:12 +08:00
|
|
|
static inline int msft_add_monitor_pattern(struct hci_dev *hdev,
|
|
|
|
struct adv_monitor *monitor)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
2020-04-03 21:44:01 +02:00
|
|
|
|
2021-01-22 16:36:13 +08:00
|
|
|
static inline int msft_remove_monitor(struct hci_dev *hdev,
|
2022-07-20 16:21:14 -07:00
|
|
|
struct adv_monitor *monitor)
|
2021-01-22 16:36:13 +08:00
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2021-01-22 16:36:17 +08:00
|
|
|
static inline void msft_req_add_set_filter_enable(struct hci_request *req,
|
|
|
|
bool enable) {}
|
2021-01-22 16:36:15 +08:00
|
|
|
static inline int msft_set_filter_enable(struct hci_dev *hdev, bool enable)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
2021-10-27 16:59:00 -07:00
|
|
|
static inline int msft_suspend_sync(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int msft_resume_sync(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
2021-09-21 14:47:10 -07:00
|
|
|
|
2021-04-06 21:55:56 +02:00
|
|
|
static inline bool msft_curve_validity(struct hci_dev *hdev)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-03 21:44:01 +02:00
|
|
|
#endif
|