mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-25 16:11:45 +00:00
Bluetooth: AMP: Add Logical Link Create function
After physical link is created logical link needs to be created. The process starts after L2CAP channel is created and L2CAP Configuration Response with result PENDING is received. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
parent
770bfefa2c
commit
5ce66b59d7
4 changed files with 73 additions and 5 deletions
|
@ -38,6 +38,7 @@
|
|||
#include <net/bluetooth/l2cap.h>
|
||||
#include <net/bluetooth/smp.h>
|
||||
#include <net/bluetooth/a2mp.h>
|
||||
#include <net/bluetooth/amp.h>
|
||||
|
||||
bool disable_ertm;
|
||||
|
||||
|
@ -1013,6 +1014,12 @@ static bool __amp_capable(struct l2cap_chan *chan)
|
|||
return false;
|
||||
}
|
||||
|
||||
static bool l2cap_check_efs(struct l2cap_chan *chan)
|
||||
{
|
||||
/* Check EFS parameters */
|
||||
return true;
|
||||
}
|
||||
|
||||
void l2cap_send_conn_req(struct l2cap_chan *chan)
|
||||
{
|
||||
struct l2cap_conn *conn = chan->conn;
|
||||
|
@ -3957,13 +3964,15 @@ static inline int l2cap_config_rsp(struct l2cap_conn *conn,
|
|||
goto done;
|
||||
}
|
||||
|
||||
/* check compatibility */
|
||||
|
||||
if (!chan->ctrl_id)
|
||||
if (!chan->ctrl_id) {
|
||||
l2cap_send_efs_conf_rsp(chan, buf, cmd->ident,
|
||||
0);
|
||||
else
|
||||
chan->ident = cmd->ident;
|
||||
} else {
|
||||
if (l2cap_check_efs(chan)) {
|
||||
amp_create_logical_link(chan);
|
||||
chan->ident = cmd->ident;
|
||||
}
|
||||
}
|
||||
}
|
||||
goto done;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue