Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
a2mp.h
Go to the documentation of this file.
1 /*
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 
18 #include <net/bluetooth/l2cap.h>
19 
20 #define A2MP_FEAT_EXT 0x8000
21 
22 struct amp_mgr {
25  struct kref kref;
28  unsigned long flags;
29 };
30 
31 struct a2mp_cmd {
35  __u8 data[0];
36 } __packed;
37 
38 /* A2MP command codes */
39 #define A2MP_COMMAND_REJ 0x01
40 struct a2mp_cmd_rej {
42  __u8 data[0];
43 } __packed;
44 
45 #define A2MP_DISCOVER_REQ 0x02
49 } __packed;
50 
51 struct a2mp_cl {
55 } __packed;
56 
57 #define A2MP_DISCOVER_RSP 0x03
61  struct a2mp_cl cl[0];
62 } __packed;
63 
64 #define A2MP_CHANGE_NOTIFY 0x04
65 #define A2MP_CHANGE_RSP 0x05
66 
67 #define A2MP_GETINFO_REQ 0x06
68 struct a2mp_info_req {
70 } __packed;
71 
72 #define A2MP_GETINFO_RSP 0x07
73 struct a2mp_info_rsp {
81 } __packed;
82 
83 #define A2MP_GETAMPASSOC_REQ 0x08
86 } __packed;
87 
88 #define A2MP_GETAMPASSOC_RSP 0x09
93 } __packed;
94 
95 #define A2MP_CREATEPHYSLINK_REQ 0x0A
96 #define A2MP_DISCONNPHYSLINK_REQ 0x0C
101 } __packed;
102 
103 #define A2MP_CREATEPHYSLINK_RSP 0x0B
104 #define A2MP_DISCONNPHYSLINK_RSP 0x0D
109 } __packed;
110 
111 /* A2MP response status */
112 #define A2MP_STATUS_SUCCESS 0x00
113 #define A2MP_STATUS_INVALID_CTRL_ID 0x01
114 #define A2MP_STATUS_UNABLE_START_LINK_CREATION 0x02
115 #define A2MP_STATUS_NO_PHYSICAL_LINK_EXISTS 0x02
116 #define A2MP_STATUS_COLLISION_OCCURED 0x03
117 #define A2MP_STATUS_DISCONN_REQ_RECVD 0x04
118 #define A2MP_STATUS_PHYS_LINK_EXISTS 0x05
119 #define A2MP_STATUS_SECURITY_VIOLATION 0x06
120 
121 void amp_mgr_get(struct amp_mgr *mgr);
122 int amp_mgr_put(struct amp_mgr *mgr);
124  struct sk_buff *skb);
125 
126 #endif /* __A2MP_H */