summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSudha Bheemanna <b.sudha@samsung.com>2016-08-25 11:23:02 +0530
committerSeung-Woo Kim <sw0312.kim@samsung.com>2016-12-14 13:53:07 +0900
commit6f2fa4bc0de1289963096b09aed8b4e7cb418564 (patch)
treeee68492ae04effcd3932bcdefda7fafab40bd7b7 /include
parent12867e37edd1d2f33f648cbb32ba9552f9790961 (diff)
Bluetooth: Add BT LE discovery feature
This patch adds new MGMT commands to start LE discovery separately and handles LE discovery state. Change-Id: I85958b8c2b5c7e28f57c69e86037ab1e61a75db0 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/bluetooth/hci_core.h7
-rw-r--r--include/net/bluetooth/mgmt_tizen.h14
2 files changed, 21 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index ac35a7c34669..0a42a16beb1b 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -337,6 +337,9 @@ struct hci_dev {
void *smp_bredr_data;
struct discovery_state discovery;
+#ifdef TIZEN_BT
+ struct discovery_state le_discovery;
+#endif
struct hci_conn_hash conn_hash;
struct list_head mgmt_pending;
@@ -861,6 +864,9 @@ static inline int hci_conn_hash_lookup_rssi_count(struct hci_dev *hdev)
return count;
}
+
+bool hci_le_discovery_active(struct hci_dev *hdev);
+void hci_le_discovery_set_state(struct hci_dev *hdev, int state);
#endif
int hci_disconnect(struct hci_conn *conn, __u8 reason);
@@ -1496,6 +1502,7 @@ void mgmt_raw_rssi_response(struct hci_dev *hdev,
void mgmt_enable_rssi_cc(struct hci_dev *hdev, void *response, u8 status);
int mgmt_device_name_update(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *name,
u8 name_len);
+void mgmt_le_discovering(struct hci_dev *hdev, u8 discovering);
#endif
u8 hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max, u16 latency,
diff --git a/include/net/bluetooth/mgmt_tizen.h b/include/net/bluetooth/mgmt_tizen.h
index 102faf0f5478..844af75d1fe0 100644
--- a/include/net/bluetooth/mgmt_tizen.h
+++ b/include/net/bluetooth/mgmt_tizen.h
@@ -104,6 +104,20 @@ struct mgmt_cc_rp_disable_rssi {
} __packed;
/* RSSI monitoring */
+/* For le discovery */
+#define MGMT_OP_START_LE_DISCOVERY (TIZEN_OP_CODE_BASE + 0x0a)
+struct mgmt_cp_start_le_discovery {
+ __u8 type;
+} __packed;
+#define MGMT_START_LE_DISCOVERY_SIZE 1
+
+#define MGMT_OP_STOP_LE_DISCOVERY (TIZEN_OP_CODE_BASE + 0x0b)
+struct mgmt_cp_stop_le_discovery {
+ __u8 type;
+} __packed;
+#define MGMT_STOP_LE_DISCOVERY_SIZE 1
+/* le discovery */
+
/* EVENTS */
/* For device name update changes */