Return-Path: From: Andrei Emeltchenko To: linux-bluetooth@vger.kernel.org Subject: [RFCv2 19/20] Bluetooth: AMP: Process physical link complete event Date: Tue, 24 Jul 2012 16:22:00 +0300 Message-Id: <1343136121-22476-20-git-send-email-Andrei.Emeltchenko.news@gmail.com> In-Reply-To: <1343136121-22476-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> References: <1340981212-21709-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> <1343136121-22476-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Andrei Emeltchenko Add new hci_conn for representing AMP physical link. Signed-off-by: Andrei Emeltchenko --- include/net/bluetooth/hci.h | 1 + net/bluetooth/hci_event.c | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 2b19703..74b448a 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -207,6 +207,7 @@ enum { #define ESCO_LINK 0x02 /* Low Energy links do not have defined link type. Use invented one */ #define LE_LINK 0x80 +#define AMP_LINK 0x81 /* LMP features */ #define LMP_3SLOT 0x01 diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 6615be6..cfe3ef3 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -3411,6 +3411,38 @@ unlock: hci_dev_unlock(hdev); } +static void hci_phy_link_complete_evt(struct hci_dev *hdev, + struct sk_buff *skb) +{ + struct hci_ev_phy_link_complete *ev = (void *) skb->data; + struct hci_conn *conn; + + BT_DBG("%s handle 0x%2.2x status 0x%2.2x", hdev->name, ev->phy_handle, + ev->status); + + if (ev->status) + return; + + hci_dev_lock(hdev); + + conn = hci_conn_add(hdev, AMP_LINK, BDADDR_ANY); + if (conn) { + conn->handle = ev->phy_handle; + conn->state = BT_CONNECTED; + + hci_conn_hold(conn); + conn->disc_timeout = HCI_DISCONN_TIMEOUT/2; + hci_conn_put(conn); + + hci_conn_hold_device(conn); + hci_conn_add_sysfs(conn); + } else { + BT_ERR("Cannot add connection"); + } + + hci_dev_unlock(hdev); +} + static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb) { struct hci_ev_le_conn_complete *ev = (void *) skb->data; @@ -3719,6 +3751,10 @@ void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb) hci_remote_oob_data_request_evt(hdev, skb); break; + case HCI_EV_PHY_LINK_COMPLETE: + hci_phy_link_complete_evt(hdev, skb); + break; + case HCI_EV_NUM_COMP_BLOCKS: hci_num_comp_blocks_evt(hdev, skb); break; -- 1.7.9.5