-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bluetooth: AMP: Use HCI cmd to Read Loc AMP Assoc
When receiving A2MP Get AMP Assoc Request execute Read Local AMP Assoc HCI command to AMP controller. If the AMP Assoc data is larger than it can fit to HCI event only fragment is read. When all fragments are read send A2MP Get AMP Assoc Response. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
- Loading branch information
Andrei Emeltchenko
authored and
Gustavo Padovan
committed
Sep 27, 2012
1 parent
8e2a0d9
commit 903e454
Showing
8 changed files
with
171 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
Copyright (c) 2011,2012 Intel Corp. | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License version 2 and | ||
only version 2 as published by the Free Software Foundation. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
*/ | ||
|
||
#ifndef __AMP_H | ||
#define __AMP_H | ||
|
||
void amp_read_loc_info(struct hci_dev *hdev, struct amp_mgr *mgr); | ||
void amp_read_loc_assoc_frag(struct hci_dev *hdev, u8 phy_handle); | ||
void amp_read_loc_assoc(struct hci_dev *hdev, struct amp_mgr *mgr); | ||
|
||
#endif /* __AMP_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
Copyright (c) 2011,2012 Intel Corp. | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License version 2 and | ||
only version 2 as published by the Free Software Foundation. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
*/ | ||
|
||
#include <net/bluetooth/bluetooth.h> | ||
#include <net/bluetooth/hci.h> | ||
#include <net/bluetooth/hci_core.h> | ||
#include <net/bluetooth/a2mp.h> | ||
#include <net/bluetooth/amp.h> | ||
|
||
void amp_read_loc_assoc_frag(struct hci_dev *hdev, u8 phy_handle) | ||
{ | ||
struct hci_cp_read_local_amp_assoc cp; | ||
struct amp_assoc *loc_assoc = &hdev->loc_assoc; | ||
|
||
BT_DBG("%s handle %d", hdev->name, phy_handle); | ||
|
||
cp.phy_handle = phy_handle; | ||
cp.max_len = cpu_to_le16(hdev->amp_assoc_size); | ||
cp.len_so_far = cpu_to_le16(loc_assoc->offset); | ||
|
||
hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp); | ||
} | ||
|
||
void amp_read_loc_assoc(struct hci_dev *hdev, struct amp_mgr *mgr) | ||
{ | ||
struct hci_cp_read_local_amp_assoc cp; | ||
|
||
memset(&hdev->loc_assoc, 0, sizeof(struct amp_assoc)); | ||
memset(&cp, 0, sizeof(cp)); | ||
|
||
cp.max_len = cpu_to_le16(hdev->amp_assoc_size); | ||
|
||
mgr->state = READ_LOC_AMP_ASSOC; | ||
hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters