blob: d5476719fa4c5bad9610776db3f87b7c74b32c39 [file] [log] [blame]
Andrei Emeltchenko9740e492012-05-29 13:59:02 +03001/*
2 Copyright (c) 2010,2011 Code Aurora Forum. All rights reserved.
3 Copyright (c) 2011,2012 Intel Corp.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 and
7 only version 2 as published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13*/
14
15#ifndef __A2MP_H
16#define __A2MP_H
17
Andrei Emeltchenko97e8e892012-05-29 13:59:17 +030018#include <net/bluetooth/l2cap.h>
19
Andrei Emeltchenko8598d062012-05-29 13:59:09 +030020#define A2MP_FEAT_EXT 0x8000
21
Andrei Emeltchenkof97268f2012-09-27 17:26:07 +030022enum amp_mgr_state {
23 READ_LOC_AMP_INFO,
Andrei Emeltchenko903e4542012-09-27 17:26:09 +030024 READ_LOC_AMP_ASSOC,
Andrei Emeltchenkof97268f2012-09-27 17:26:07 +030025};
26
Andrei Emeltchenko9740e492012-05-29 13:59:02 +030027struct amp_mgr {
Andrei Emeltchenkof97268f2012-09-27 17:26:07 +030028 struct list_head list;
Andrei Emeltchenko9740e492012-05-29 13:59:02 +030029 struct l2cap_conn *l2cap_conn;
30 struct l2cap_chan *a2mp_chan;
31 struct kref kref;
32 __u8 ident;
33 __u8 handle;
Andrei Emeltchenkof97268f2012-09-27 17:26:07 +030034 enum amp_mgr_state state;
Andrei Emeltchenko9740e492012-05-29 13:59:02 +030035 unsigned long flags;
36};
37
Andrei Emeltchenkof6d3c6e2012-05-29 13:59:03 +030038struct a2mp_cmd {
39 __u8 code;
40 __u8 ident;
41 __le16 len;
42 __u8 data[0];
43} __packed;
44
Andrei Emeltchenkob9058fb2012-05-29 13:59:05 +030045/* A2MP command codes */
46#define A2MP_COMMAND_REJ 0x01
47struct a2mp_cmd_rej {
48 __le16 reason;
49 __u8 data[0];
50} __packed;
51
52#define A2MP_DISCOVER_REQ 0x02
53struct a2mp_discov_req {
54 __le16 mtu;
55 __le16 ext_feat;
56} __packed;
57
58struct a2mp_cl {
59 __u8 id;
60 __u8 type;
61 __u8 status;
62} __packed;
63
64#define A2MP_DISCOVER_RSP 0x03
65struct a2mp_discov_rsp {
66 __le16 mtu;
67 __le16 ext_feat;
68 struct a2mp_cl cl[0];
69} __packed;
70
71#define A2MP_CHANGE_NOTIFY 0x04
72#define A2MP_CHANGE_RSP 0x05
73
74#define A2MP_GETINFO_REQ 0x06
75struct a2mp_info_req {
76 __u8 id;
77} __packed;
78
79#define A2MP_GETINFO_RSP 0x07
80struct a2mp_info_rsp {
81 __u8 id;
82 __u8 status;
83 __le32 total_bw;
84 __le32 max_bw;
85 __le32 min_latency;
86 __le16 pal_cap;
87 __le16 assoc_size;
88} __packed;
89
90#define A2MP_GETAMPASSOC_REQ 0x08
91struct a2mp_amp_assoc_req {
92 __u8 id;
93} __packed;
94
95#define A2MP_GETAMPASSOC_RSP 0x09
96struct a2mp_amp_assoc_rsp {
97 __u8 id;
98 __u8 status;
99 __u8 amp_assoc[0];
100} __packed;
101
102#define A2MP_CREATEPHYSLINK_REQ 0x0A
103#define A2MP_DISCONNPHYSLINK_REQ 0x0C
104struct a2mp_physlink_req {
105 __u8 local_id;
106 __u8 remote_id;
107 __u8 amp_assoc[0];
108} __packed;
109
110#define A2MP_CREATEPHYSLINK_RSP 0x0B
111#define A2MP_DISCONNPHYSLINK_RSP 0x0D
112struct a2mp_physlink_rsp {
113 __u8 local_id;
114 __u8 remote_id;
115 __u8 status;
116} __packed;
117
Andrei Emeltchenkoe7af522e2012-05-29 13:59:06 +0300118/* A2MP response status */
119#define A2MP_STATUS_SUCCESS 0x00
120#define A2MP_STATUS_INVALID_CTRL_ID 0x01
121#define A2MP_STATUS_UNABLE_START_LINK_CREATION 0x02
122#define A2MP_STATUS_NO_PHYSICAL_LINK_EXISTS 0x02
123#define A2MP_STATUS_COLLISION_OCCURED 0x03
124#define A2MP_STATUS_DISCONN_REQ_RECVD 0x04
125#define A2MP_STATUS_PHYS_LINK_EXISTS 0x05
126#define A2MP_STATUS_SECURITY_VIOLATION 0x06
127
Andrei Emeltchenkof97268f2012-09-27 17:26:07 +0300128extern struct list_head amp_mgr_list;
129extern struct mutex amp_mgr_list_lock;
130
Andrei Emeltchenko9740e492012-05-29 13:59:02 +0300131void amp_mgr_get(struct amp_mgr *mgr);
132int amp_mgr_put(struct amp_mgr *mgr);
Andrei Emeltchenko97e8e892012-05-29 13:59:17 +0300133struct l2cap_chan *a2mp_channel_create(struct l2cap_conn *conn,
134 struct sk_buff *skb);
Andrei Emeltchenkof97268f2012-09-27 17:26:07 +0300135struct amp_mgr *amp_mgr_lookup_by_state(u8 state);
Andrei Emeltchenko8e2a0d92012-09-27 17:26:08 +0300136void a2mp_send(struct amp_mgr *mgr, u8 code, u8 ident, u16 len, void *data);
137void a2mp_send_getinfo_rsp(struct hci_dev *hdev);
Andrei Emeltchenko903e4542012-09-27 17:26:09 +0300138void a2mp_send_getampassoc_rsp(struct hci_dev *hdev, u8 status);
Andrei Emeltchenko9740e492012-05-29 13:59:02 +0300139
140#endif /* __A2MP_H */