blob: 7dcd3495edde18aed22def7ba0e6b3ce9f5f6ab9 [file] [log] [blame]
Andrei Emeltchenkobe218712010-12-01 16:58:26 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
4
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
Andrei Emeltchenkobe218712010-12-01 16:58:26 +020015 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
Andrei Emeltchenkobe218712010-12-01 16:58:26 +020020 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 SOFTWARE IS DISCLAIMED.
23*/
24
25#ifndef __HCI_H
26#define __HCI_H
27
28#define HCI_MAX_ACL_SIZE 1024
29#define HCI_MAX_SCO_SIZE 255
30#define HCI_MAX_EVENT_SIZE 260
31#define HCI_MAX_FRAME_SIZE (HCI_MAX_ACL_SIZE + 4)
32
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +030033#define HCI_LINK_KEY_SIZE 16
Andrei Emeltchenko523e93c2012-05-25 15:09:26 +030034#define HCI_AMP_LINK_KEY_SIZE (2 * HCI_LINK_KEY_SIZE)
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +030035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* HCI dev events */
37#define HCI_DEV_REG 1
38#define HCI_DEV_UNREG 2
39#define HCI_DEV_UP 3
40#define HCI_DEV_DOWN 4
41#define HCI_DEV_SUSPEND 5
42#define HCI_DEV_RESUME 6
43
44/* HCI notify events */
45#define HCI_NOTIFY_CONN_ADD 1
46#define HCI_NOTIFY_CONN_DEL 2
47#define HCI_NOTIFY_VOICE_SETTING 3
48
Marcel Holtmannc13854c2010-02-08 15:27:07 +010049/* HCI bus types */
Marcel Holtmann0ac53932006-07-08 13:57:15 +020050#define HCI_VIRTUAL 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define HCI_USB 1
52#define HCI_PCCARD 2
53#define HCI_UART 3
54#define HCI_RS232 4
55#define HCI_PCI 5
Marcel Holtmann0ac53932006-07-08 13:57:15 +020056#define HCI_SDIO 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Marcel Holtmann943da252010-02-13 02:28:41 +010058/* HCI controller types */
59#define HCI_BREDR 0x00
David Vrabel8f1e1742010-08-09 17:38:10 -040060#define HCI_AMP 0x01
Marcel Holtmann943da252010-02-13 02:28:41 +010061
Andrei Emeltchenko8598d062012-05-29 13:59:09 +030062/* First BR/EDR Controller shall have ID = 0 */
63#define HCI_BREDR_ID 0
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* HCI device quirks */
66enum {
Szymon Janca6c511c2012-05-23 12:35:46 +020067 HCI_QUIRK_RESET_ON_CLOSE,
Marcel Holtmannda1f5192006-07-03 10:02:29 +020068 HCI_QUIRK_RAW_DEVICE,
69 HCI_QUIRK_FIXUP_BUFFER_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
72/* HCI device flags */
73enum {
74 HCI_UP,
75 HCI_INIT,
76 HCI_RUNNING,
77
78 HCI_PSCAN,
79 HCI_ISCAN,
80 HCI_AUTH,
81 HCI_ENCRYPT,
82 HCI_INQUIRY,
83
84 HCI_RAW,
Johan Hedbergab81cbf2010-12-15 13:53:18 +020085
Gustavo F. Padovan10572132011-03-16 15:36:29 -030086 HCI_RESET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Andre Guedesd23264a2011-11-25 20:53:38 -030089/*
90 * BR/EDR and/or LE controller flags: the flags defined here should represent
91 * states from the controller.
92 */
93enum {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +020094 HCI_SETUP,
95 HCI_AUTO_OFF,
96 HCI_MGMT,
97 HCI_PAIRABLE,
98 HCI_SERVICE_CACHE,
99 HCI_LINK_KEYS,
100 HCI_DEBUG_KEYS,
Johan Hovold94324962012-03-15 14:48:41 +0100101 HCI_UNREGISTER,
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200102
Andre Guedesd23264a2011-11-25 20:53:38 -0300103 HCI_LE_SCAN,
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200104 HCI_SSP_ENABLED,
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200105 HCI_HS_ENABLED,
Johan Hedberg06199cf2012-02-22 16:37:11 +0200106 HCI_LE_ENABLED,
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200107 HCI_CONNECTABLE,
108 HCI_DISCOVERABLE,
Johan Hedberg47990ea2012-02-22 11:58:37 +0200109 HCI_LINK_SECURITY,
Johan Hedbergc95f0ba2012-02-23 22:54:38 +0200110 HCI_PENDING_CLASS,
Andre Guedes21693c12012-03-21 00:03:36 -0300111 HCI_PERIODIC_INQ,
Andre Guedesd23264a2011-11-25 20:53:38 -0300112};
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* HCI ioctl defines */
115#define HCIDEVUP _IOW('H', 201, int)
116#define HCIDEVDOWN _IOW('H', 202, int)
117#define HCIDEVRESET _IOW('H', 203, int)
118#define HCIDEVRESTAT _IOW('H', 204, int)
119
120#define HCIGETDEVLIST _IOR('H', 210, int)
121#define HCIGETDEVINFO _IOR('H', 211, int)
122#define HCIGETCONNLIST _IOR('H', 212, int)
123#define HCIGETCONNINFO _IOR('H', 213, int)
Marcel Holtmann40be4922008-07-14 20:13:50 +0200124#define HCIGETAUTHINFO _IOR('H', 215, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126#define HCISETRAW _IOW('H', 220, int)
127#define HCISETSCAN _IOW('H', 221, int)
128#define HCISETAUTH _IOW('H', 222, int)
129#define HCISETENCRYPT _IOW('H', 223, int)
130#define HCISETPTYPE _IOW('H', 224, int)
131#define HCISETLINKPOL _IOW('H', 225, int)
132#define HCISETLINKMODE _IOW('H', 226, int)
133#define HCISETACLMTU _IOW('H', 227, int)
134#define HCISETSCOMTU _IOW('H', 228, int)
135
Johan Hedbergf0358562010-05-18 13:20:32 +0200136#define HCIBLOCKADDR _IOW('H', 230, int)
137#define HCIUNBLOCKADDR _IOW('H', 231, int)
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define HCIINQUIRY _IOR('H', 240, int)
140
141/* HCI timeouts */
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +0300142#define HCI_DISCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
143#define HCI_PAIRING_TIMEOUT msecs_to_jiffies(60000) /* 60 seconds */
144#define HCI_INIT_TIMEOUT msecs_to_jiffies(10000) /* 10 seconds */
145#define HCI_CMD_TIMEOUT msecs_to_jiffies(1000) /* 1 seconds */
146#define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200148/* HCI data types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#define HCI_COMMAND_PKT 0x01
150#define HCI_ACLDATA_PKT 0x02
151#define HCI_SCODATA_PKT 0x03
152#define HCI_EVENT_PKT 0x04
153#define HCI_VENDOR_PKT 0xff
154
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200155/* HCI packet types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define HCI_DM1 0x0008
157#define HCI_DM3 0x0400
158#define HCI_DM5 0x4000
159#define HCI_DH1 0x0010
160#define HCI_DH3 0x0800
161#define HCI_DH5 0x8000
162
163#define HCI_HV1 0x0020
164#define HCI_HV2 0x0040
165#define HCI_HV3 0x0080
166
167#define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3)
168#define ACL_PTYPE_MASK (~SCO_PTYPE_MASK)
169
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200170/* eSCO packet types */
171#define ESCO_HV1 0x0001
172#define ESCO_HV2 0x0002
173#define ESCO_HV3 0x0004
174#define ESCO_EV3 0x0008
175#define ESCO_EV4 0x0010
176#define ESCO_EV5 0x0020
Marcel Holtmannefc76882009-02-06 09:13:37 +0100177#define ESCO_2EV3 0x0040
178#define ESCO_3EV3 0x0080
179#define ESCO_2EV5 0x0100
180#define ESCO_3EV5 0x0200
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200181
Marcel Holtmanna8746412008-07-14 20:13:46 +0200182#define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100183#define EDR_ESCO_MASK (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
Marcel Holtmanna8746412008-07-14 20:13:46 +0200184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/* ACL flags */
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200186#define ACL_START_NO_FLUSH 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define ACL_CONT 0x01
188#define ACL_START 0x02
189#define ACL_ACTIVE_BCAST 0x04
190#define ACL_PICO_BCAST 0x08
191
192/* Baseband links */
193#define SCO_LINK 0x00
194#define ACL_LINK 0x01
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200195#define ESCO_LINK 0x02
Ville Tervofcd89c02011-02-10 22:38:47 -0300196/* Low Energy links do not have defined link type. Use invented one */
197#define LE_LINK 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199/* LMP features */
200#define LMP_3SLOT 0x01
201#define LMP_5SLOT 0x02
202#define LMP_ENCRYPT 0x04
203#define LMP_SOFFSET 0x08
204#define LMP_TACCURACY 0x10
205#define LMP_RSWITCH 0x20
206#define LMP_HOLD 0x40
Marcel Holtmann04837f62006-07-03 10:02:33 +0200207#define LMP_SNIFF 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#define LMP_PARK 0x01
210#define LMP_RSSI 0x02
211#define LMP_QUALITY 0x04
212#define LMP_SCO 0x08
213#define LMP_HV2 0x10
214#define LMP_HV3 0x20
215#define LMP_ULAW 0x40
216#define LMP_ALAW 0x80
217
218#define LMP_CVSD 0x01
219#define LMP_PSCHEME 0x02
220#define LMP_PCONTROL 0x04
221
Johan Hedbergd5859e22011-01-25 01:19:58 +0200222#define LMP_RSSI_INQ 0x40
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200223#define LMP_ESCO 0x80
224
225#define LMP_EV4 0x01
226#define LMP_EV5 0x02
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200227#define LMP_NO_BREDR 0x20
Johan Hedbergd5859e22011-01-25 01:19:58 +0200228#define LMP_LE 0x40
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200229
Marcel Holtmann04837f62006-07-03 10:02:33 +0200230#define LMP_SNIFF_SUBR 0x02
Johan Hedbergd5859e22011-01-25 01:19:58 +0200231#define LMP_PAUSE_ENC 0x04
Marcel Holtmannefc76882009-02-06 09:13:37 +0100232#define LMP_EDR_ESCO_2M 0x20
233#define LMP_EDR_ESCO_3M 0x40
234#define LMP_EDR_3S_ESCO 0x80
Marcel Holtmann04837f62006-07-03 10:02:33 +0200235
Johan Hedbergd5859e22011-01-25 01:19:58 +0200236#define LMP_EXT_INQ 0x01
Andre Guedese6100a22011-06-30 19:20:54 -0300237#define LMP_SIMUL_LE_BR 0x02
Marcel Holtmann769be972008-07-14 20:13:49 +0200238#define LMP_SIMPLE_PAIR 0x08
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200239#define LMP_NO_FLUSH 0x40
Marcel Holtmann769be972008-07-14 20:13:49 +0200240
Johan Hedbergd5859e22011-01-25 01:19:58 +0200241#define LMP_LSTO 0x01
242#define LMP_INQ_TX_PWR 0x02
Andre Guedes971e3a42011-06-30 19:20:52 -0300243#define LMP_EXTFEATURES 0x80
Johan Hedbergd5859e22011-01-25 01:19:58 +0200244
Andre Guedeseead27d2011-06-30 19:20:55 -0300245/* Extended LMP features */
Johan Hedbergcc2c04e2012-02-28 02:03:24 +0200246#define LMP_HOST_SSP 0x01
247#define LMP_HOST_LE 0x02
248#define LMP_HOST_LE_BREDR 0x04
Andre Guedeseead27d2011-06-30 19:20:55 -0300249
Marcel Holtmann04837f62006-07-03 10:02:33 +0200250/* Connection modes */
251#define HCI_CM_ACTIVE 0x0000
252#define HCI_CM_HOLD 0x0001
253#define HCI_CM_SNIFF 0x0002
254#define HCI_CM_PARK 0x0003
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/* Link policies */
257#define HCI_LP_RSWITCH 0x0001
258#define HCI_LP_HOLD 0x0002
259#define HCI_LP_SNIFF 0x0004
260#define HCI_LP_PARK 0x0008
261
Marcel Holtmann04837f62006-07-03 10:02:33 +0200262/* Link modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#define HCI_LM_ACCEPT 0x8000
264#define HCI_LM_MASTER 0x0001
265#define HCI_LM_AUTH 0x0002
266#define HCI_LM_ENCRYPT 0x0004
267#define HCI_LM_TRUSTED 0x0008
268#define HCI_LM_RELIABLE 0x0010
269#define HCI_LM_SECURE 0x0020
270
Marcel Holtmann40be4922008-07-14 20:13:50 +0200271/* Authentication types */
272#define HCI_AT_NO_BONDING 0x00
273#define HCI_AT_NO_BONDING_MITM 0x01
274#define HCI_AT_DEDICATED_BONDING 0x02
275#define HCI_AT_DEDICATED_BONDING_MITM 0x03
276#define HCI_AT_GENERAL_BONDING 0x04
277#define HCI_AT_GENERAL_BONDING_MITM 0x05
278
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +0200279/* Link Key types */
280#define HCI_LK_COMBINATION 0x00
281#define HCI_LK_LOCAL_UNIT 0x01
282#define HCI_LK_REMOTE_UNIT 0x02
283#define HCI_LK_DEBUG_COMBINATION 0x03
284#define HCI_LK_UNAUTH_COMBINATION 0x04
285#define HCI_LK_AUTH_COMBINATION 0x05
286#define HCI_LK_CHANGED_COMBINATION 0x06
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -0300287/* The spec doesn't define types for SMP keys, the _MASTER suffix is implied */
288#define HCI_SMP_STK 0x80
289#define HCI_SMP_STK_SLAVE 0x81
290#define HCI_SMP_LTK 0x82
291#define HCI_SMP_LTK_SLAVE 0x83
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +0200292
Andrei Emeltchenko9f5a0d72011-11-07 14:20:25 +0200293/* ---- HCI Error Codes ---- */
294#define HCI_ERROR_AUTH_FAILURE 0x05
295#define HCI_ERROR_REJ_BAD_ADDR 0x0f
296#define HCI_ERROR_REMOTE_USER_TERM 0x13
297#define HCI_ERROR_LOCAL_HOST_TERM 0x16
298#define HCI_ERROR_PAIRING_NOT_ALLOWED 0x18
299
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200300/* Flow control modes */
301#define HCI_FLOW_CTL_MODE_PACKET_BASED 0x00
302#define HCI_FLOW_CTL_MODE_BLOCK_BASED 0x01
303
Johan Hedberg32748db2011-12-30 14:57:23 +0200304/* Extended Inquiry Response field types */
305#define EIR_FLAGS 0x01 /* flags */
306#define EIR_UUID16_SOME 0x02 /* 16-bit UUID, more available */
307#define EIR_UUID16_ALL 0x03 /* 16-bit UUID, all listed */
308#define EIR_UUID32_SOME 0x04 /* 32-bit UUID, more available */
309#define EIR_UUID32_ALL 0x05 /* 32-bit UUID, all listed */
310#define EIR_UUID128_SOME 0x06 /* 128-bit UUID, more available */
311#define EIR_UUID128_ALL 0x07 /* 128-bit UUID, all listed */
312#define EIR_NAME_SHORT 0x08 /* shortened local name */
313#define EIR_NAME_COMPLETE 0x09 /* complete local name */
314#define EIR_TX_POWER 0x0A /* transmit power level */
Johan Hedberg9ec9fc82012-01-15 20:46:33 +0200315#define EIR_CLASS_OF_DEV 0x0D /* Class of Device */
316#define EIR_SSP_HASH_C 0x0E /* Simple Pairing Hash C */
317#define EIR_SSP_RAND_R 0x0F /* Simple Pairing Randomizer R */
Johan Hedberg32748db2011-12-30 14:57:23 +0200318#define EIR_DEVICE_ID 0x10 /* device ID */
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/* ----- HCI Commands ---- */
Ville Tervo6bd32322011-02-16 16:32:41 +0200321#define HCI_OP_NOP 0x0000
322
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200323#define HCI_OP_INQUIRY 0x0401
324struct hci_cp_inquiry {
325 __u8 lap[3];
326 __u8 length;
327 __u8 num_rsp;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300328} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200330#define HCI_OP_INQUIRY_CANCEL 0x0402
331
Andre Guedes79d6e062012-03-21 00:03:35 -0300332#define HCI_OP_PERIODIC_INQ 0x0403
333
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200334#define HCI_OP_EXIT_PERIODIC_INQ 0x0404
335
336#define HCI_OP_CREATE_CONN 0x0405
337struct hci_cp_create_conn {
338 bdaddr_t bdaddr;
339 __le16 pkt_type;
340 __u8 pscan_rep_mode;
341 __u8 pscan_mode;
342 __le16 clock_offset;
343 __u8 role_switch;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300344} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200346#define HCI_OP_DISCONNECT 0x0406
347struct hci_cp_disconnect {
348 __le16 handle;
349 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300350} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200352#define HCI_OP_ADD_SCO 0x0407
353struct hci_cp_add_sco {
354 __le16 handle;
355 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300356} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200357
358#define HCI_OP_CREATE_CONN_CANCEL 0x0408
359struct hci_cp_create_conn_cancel {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300361} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200363#define HCI_OP_ACCEPT_CONN_REQ 0x0409
364struct hci_cp_accept_conn_req {
365 bdaddr_t bdaddr;
366 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300367} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200369#define HCI_OP_REJECT_CONN_REQ 0x040a
370struct hci_cp_reject_conn_req {
371 bdaddr_t bdaddr;
372 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300373} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200375#define HCI_OP_LINK_KEY_REPLY 0x040b
376struct hci_cp_link_key_reply {
377 bdaddr_t bdaddr;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +0300378 __u8 link_key[HCI_LINK_KEY_SIZE];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300379} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200381#define HCI_OP_LINK_KEY_NEG_REPLY 0x040c
382struct hci_cp_link_key_neg_reply {
383 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300384} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200386#define HCI_OP_PIN_CODE_REPLY 0x040d
387struct hci_cp_pin_code_reply {
388 bdaddr_t bdaddr;
389 __u8 pin_len;
390 __u8 pin_code[16];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300391} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200392struct hci_rp_pin_code_reply {
393 __u8 status;
394 bdaddr_t bdaddr;
395} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200396
397#define HCI_OP_PIN_CODE_NEG_REPLY 0x040e
398struct hci_cp_pin_code_neg_reply {
399 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300400} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200401struct hci_rp_pin_code_neg_reply {
402 __u8 status;
403 bdaddr_t bdaddr;
404} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200405
406#define HCI_OP_CHANGE_CONN_PTYPE 0x040f
407struct hci_cp_change_conn_ptype {
408 __le16 handle;
409 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300410} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200411
412#define HCI_OP_AUTH_REQUESTED 0x0411
413struct hci_cp_auth_requested {
414 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300415} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200416
417#define HCI_OP_SET_CONN_ENCRYPT 0x0413
418struct hci_cp_set_conn_encrypt {
419 __le16 handle;
420 __u8 encrypt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300421} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200422
423#define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415
424struct hci_cp_change_conn_link_key {
425 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300426} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200427
428#define HCI_OP_REMOTE_NAME_REQ 0x0419
429struct hci_cp_remote_name_req {
430 bdaddr_t bdaddr;
431 __u8 pscan_rep_mode;
432 __u8 pscan_mode;
433 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300434} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200435
436#define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a
437struct hci_cp_remote_name_req_cancel {
438 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300439} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200440
441#define HCI_OP_READ_REMOTE_FEATURES 0x041b
442struct hci_cp_read_remote_features {
443 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300444} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200445
446#define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
447struct hci_cp_read_remote_ext_features {
448 __le16 handle;
449 __u8 page;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300450} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200451
452#define HCI_OP_READ_REMOTE_VERSION 0x041d
453struct hci_cp_read_remote_version {
454 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300455} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200456
457#define HCI_OP_SETUP_SYNC_CONN 0x0428
458struct hci_cp_setup_sync_conn {
459 __le16 handle;
460 __le32 tx_bandwidth;
461 __le32 rx_bandwidth;
462 __le16 max_latency;
463 __le16 voice_setting;
464 __u8 retrans_effort;
465 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300466} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200467
468#define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429
469struct hci_cp_accept_sync_conn_req {
470 bdaddr_t bdaddr;
471 __le32 tx_bandwidth;
472 __le32 rx_bandwidth;
473 __le16 max_latency;
474 __le16 content_format;
475 __u8 retrans_effort;
476 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300477} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200478
479#define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a
480struct hci_cp_reject_sync_conn_req {
481 bdaddr_t bdaddr;
482 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300483} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200484
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200485#define HCI_OP_IO_CAPABILITY_REPLY 0x042b
486struct hci_cp_io_capability_reply {
487 bdaddr_t bdaddr;
488 __u8 capability;
489 __u8 oob_data;
490 __u8 authentication;
491} __packed;
492
Johan Hedberga5c29682011-02-19 12:05:57 -0300493#define HCI_OP_USER_CONFIRM_REPLY 0x042c
494struct hci_cp_user_confirm_reply {
495 bdaddr_t bdaddr;
496} __packed;
497struct hci_rp_user_confirm_reply {
498 __u8 status;
499 bdaddr_t bdaddr;
500} __packed;
501
502#define HCI_OP_USER_CONFIRM_NEG_REPLY 0x042d
503
Brian Gix9ad40192011-11-12 22:01:11 -0800504#define HCI_OP_USER_PASSKEY_REPLY 0x042e
505struct hci_cp_user_passkey_reply {
506 bdaddr_t bdaddr;
507 __le32 passkey;
508} __packed;
509
510#define HCI_OP_USER_PASSKEY_NEG_REPLY 0x042f
511
Szymon Janc2763eda2011-03-22 13:12:22 +0100512#define HCI_OP_REMOTE_OOB_DATA_REPLY 0x0430
513struct hci_cp_remote_oob_data_reply {
514 bdaddr_t bdaddr;
515 __u8 hash[16];
516 __u8 randomizer[16];
517} __packed;
518
519#define HCI_OP_REMOTE_OOB_DATA_NEG_REPLY 0x0433
520struct hci_cp_remote_oob_data_neg_reply {
521 bdaddr_t bdaddr;
522} __packed;
523
Johan Hedberg03b555e2011-01-04 15:40:05 +0200524#define HCI_OP_IO_CAPABILITY_NEG_REPLY 0x0434
525struct hci_cp_io_capability_neg_reply {
526 bdaddr_t bdaddr;
527 __u8 reason;
528} __packed;
529
Andrei Emeltchenko523e93c2012-05-25 15:09:26 +0300530#define HCI_OP_CREATE_PHY_LINK 0x0435
531struct hci_cp_create_phy_link {
532 __u8 phy_handle;
533 __u8 key_len;
534 __u8 key_type;
535 __u8 key[HCI_AMP_LINK_KEY_SIZE];
536} __packed;
537
538#define HCI_OP_ACCEPT_PHY_LINK 0x0436
539struct hci_cp_accept_phy_link {
540 __u8 phy_handle;
541 __u8 key_len;
542 __u8 key_type;
543 __u8 key[HCI_AMP_LINK_KEY_SIZE];
544} __packed;
545
546#define HCI_OP_DISCONN_PHY_LINK 0x0437
547struct hci_cp_disconn_phy_link {
548 __u8 phy_handle;
549 __u8 reason;
550} __packed;
551
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200552#define HCI_OP_SNIFF_MODE 0x0803
553struct hci_cp_sniff_mode {
554 __le16 handle;
555 __le16 max_interval;
556 __le16 min_interval;
557 __le16 attempt;
558 __le16 timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300559} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200560
561#define HCI_OP_EXIT_SNIFF_MODE 0x0804
562struct hci_cp_exit_sniff_mode {
563 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300564} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200565
566#define HCI_OP_ROLE_DISCOVERY 0x0809
567struct hci_cp_role_discovery {
568 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300569} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200570struct hci_rp_role_discovery {
571 __u8 status;
572 __le16 handle;
573 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300574} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200575
576#define HCI_OP_SWITCH_ROLE 0x080b
577struct hci_cp_switch_role {
578 bdaddr_t bdaddr;
579 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300580} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200581
582#define HCI_OP_READ_LINK_POLICY 0x080c
583struct hci_cp_read_link_policy {
584 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300585} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200586struct hci_rp_read_link_policy {
587 __u8 status;
588 __le16 handle;
589 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300590} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200591
592#define HCI_OP_WRITE_LINK_POLICY 0x080d
593struct hci_cp_write_link_policy {
594 __le16 handle;
595 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300596} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200597struct hci_rp_write_link_policy {
598 __u8 status;
599 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300600} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200601
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200602#define HCI_OP_READ_DEF_LINK_POLICY 0x080e
603struct hci_rp_read_def_link_policy {
604 __u8 status;
605 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300606} __packed;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200607
608#define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f
609struct hci_cp_write_def_link_policy {
610 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300611} __packed;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200612
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200613#define HCI_OP_SNIFF_SUBRATE 0x0811
614struct hci_cp_sniff_subrate {
615 __le16 handle;
616 __le16 max_latency;
617 __le16 min_remote_timeout;
618 __le16 min_local_timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300619} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200620
621#define HCI_OP_SET_EVENT_MASK 0x0c01
622struct hci_cp_set_event_mask {
623 __u8 mask[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300624} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200625
626#define HCI_OP_RESET 0x0c03
627
628#define HCI_OP_SET_EVENT_FLT 0x0c05
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629struct hci_cp_set_event_flt {
630 __u8 flt_type;
631 __u8 cond_type;
632 __u8 condition[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300633} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635/* Filter types */
636#define HCI_FLT_CLEAR_ALL 0x00
637#define HCI_FLT_INQ_RESULT 0x01
638#define HCI_FLT_CONN_SETUP 0x02
639
640/* CONN_SETUP Condition types */
641#define HCI_CONN_SETUP_ALLOW_ALL 0x00
642#define HCI_CONN_SETUP_ALLOW_CLASS 0x01
643#define HCI_CONN_SETUP_ALLOW_BDADDR 0x02
644
645/* CONN_SETUP Conditions */
646#define HCI_CONN_SETUP_AUTO_OFF 0x01
647#define HCI_CONN_SETUP_AUTO_ON 0x02
648
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200649#define HCI_OP_DELETE_STORED_LINK_KEY 0x0c12
650struct hci_cp_delete_stored_link_key {
651 bdaddr_t bdaddr;
652 __u8 delete_all;
653} __packed;
654
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200655#define HCI_MAX_NAME_LENGTH 248
656
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200657#define HCI_OP_WRITE_LOCAL_NAME 0x0c13
658struct hci_cp_write_local_name {
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200659 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300660} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200661
662#define HCI_OP_READ_LOCAL_NAME 0x0c14
663struct hci_rp_read_local_name {
664 __u8 status;
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200665 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300666} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200667
668#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
669
670#define HCI_OP_WRITE_PG_TIMEOUT 0x0c18
671
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200672#define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200673 #define SCAN_DISABLED 0x00
674 #define SCAN_INQUIRY 0x01
675 #define SCAN_PAGE 0x02
676
677#define HCI_OP_READ_AUTH_ENABLE 0x0c1f
678
679#define HCI_OP_WRITE_AUTH_ENABLE 0x0c20
680 #define AUTH_DISABLED 0x00
681 #define AUTH_ENABLED 0x01
682
683#define HCI_OP_READ_ENCRYPT_MODE 0x0c21
684
685#define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22
686 #define ENCRYPT_DISABLED 0x00
687 #define ENCRYPT_P2P 0x01
688 #define ENCRYPT_BOTH 0x02
689
690#define HCI_OP_READ_CLASS_OF_DEV 0x0c23
691struct hci_rp_read_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 __u8 status;
693 __u8 dev_class[3];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300694} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200696#define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24
697struct hci_cp_write_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 __u8 dev_class[3];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300699} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200701#define HCI_OP_READ_VOICE_SETTING 0x0c25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702struct hci_rp_read_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800703 __u8 status;
704 __le16 voice_setting;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300705} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200707#define HCI_OP_WRITE_VOICE_SETTING 0x0c26
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708struct hci_cp_write_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800709 __le16 voice_setting;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300710} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200712#define HCI_OP_HOST_BUFFER_SIZE 0x0c33
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713struct hci_cp_host_buffer_size {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800714 __le16 acl_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 __u8 sco_mtu;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800716 __le16 acl_max_pkt;
717 __le16 sco_max_pkt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300718} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Johan Hedbergd5859e22011-01-25 01:19:58 +0200720#define HCI_OP_WRITE_INQUIRY_MODE 0x0c45
721
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300722#define HCI_MAX_EIR_LENGTH 240
723
724#define HCI_OP_WRITE_EIR 0x0c52
725struct hci_cp_write_eir {
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300726 __u8 fec;
727 __u8 data[HCI_MAX_EIR_LENGTH];
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300728} __packed;
729
Marcel Holtmann333140b2008-07-14 20:13:48 +0200730#define HCI_OP_READ_SSP_MODE 0x0c55
731struct hci_rp_read_ssp_mode {
732 __u8 status;
733 __u8 mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300734} __packed;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200735
736#define HCI_OP_WRITE_SSP_MODE 0x0c56
737struct hci_cp_write_ssp_mode {
738 __u8 mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300739} __packed;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200740
Szymon Jancc35938b2011-03-22 13:12:21 +0100741#define HCI_OP_READ_LOCAL_OOB_DATA 0x0c57
742struct hci_rp_read_local_oob_data {
743 __u8 status;
744 __u8 hash[16];
745 __u8 randomizer[16];
746} __packed;
747
Johan Hedbergd5859e22011-01-25 01:19:58 +0200748#define HCI_OP_READ_INQ_RSP_TX_POWER 0x0c58
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700749struct hci_rp_read_inq_rsp_tx_power {
750 __u8 status;
751 __s8 tx_power;
752} __packed;
Johan Hedbergd5859e22011-01-25 01:19:58 +0200753
Andrei Emeltchenko1e89cff2011-11-24 14:52:02 +0200754#define HCI_OP_READ_FLOW_CONTROL_MODE 0x0c66
755struct hci_rp_read_flow_control_mode {
756 __u8 status;
757 __u8 mode;
758} __packed;
759
Andre Guedesf9b49302011-06-30 19:20:53 -0300760#define HCI_OP_WRITE_LE_HOST_SUPPORTED 0x0c6d
761struct hci_cp_write_le_host_supported {
Gustavo F. Padovanf64b9932012-03-06 23:48:33 -0300762 __u8 le;
763 __u8 simul;
Andre Guedesf9b49302011-06-30 19:20:53 -0300764} __packed;
765
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200766#define HCI_OP_READ_LOCAL_VERSION 0x1001
767struct hci_rp_read_local_version {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200769 __u8 hci_ver;
770 __le16 hci_rev;
771 __u8 lmp_ver;
772 __le16 manufacturer;
773 __le16 lmp_subver;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300774} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200776#define HCI_OP_READ_LOCAL_COMMANDS 0x1002
777struct hci_rp_read_local_commands {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200779 __u8 commands[64];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300780} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200782#define HCI_OP_READ_LOCAL_FEATURES 0x1003
783struct hci_rp_read_local_features {
784 __u8 status;
785 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300786} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200787
788#define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
Andre Guedes971e3a42011-06-30 19:20:52 -0300789struct hci_cp_read_local_ext_features {
790 __u8 page;
791} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200792struct hci_rp_read_local_ext_features {
793 __u8 status;
794 __u8 page;
795 __u8 max_page;
796 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300797} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200798
799#define HCI_OP_READ_BUFFER_SIZE 0x1005
800struct hci_rp_read_buffer_size {
801 __u8 status;
802 __le16 acl_mtu;
803 __u8 sco_mtu;
804 __le16 acl_max_pkt;
805 __le16 sco_max_pkt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300806} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200807
808#define HCI_OP_READ_BD_ADDR 0x1009
809struct hci_rp_read_bd_addr {
810 __u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300812} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Andrei Emeltchenko350ee4c2011-12-07 15:56:51 +0200814#define HCI_OP_READ_DATA_BLOCK_SIZE 0x100a
815struct hci_rp_read_data_block_size {
816 __u8 status;
817 __le16 max_acl_len;
818 __le16 block_len;
819 __le16 num_blocks;
820} __packed;
821
Antti Julkuf6422ec2011-06-22 13:11:56 +0300822#define HCI_OP_WRITE_PAGE_SCAN_ACTIVITY 0x0c1c
823struct hci_cp_write_page_scan_activity {
824 __le16 interval;
825 __le16 window;
826} __packed;
827
828#define HCI_OP_WRITE_PAGE_SCAN_TYPE 0x0c47
829 #define PAGE_SCAN_TYPE_STANDARD 0x00
830 #define PAGE_SCAN_TYPE_INTERLACED 0x01
831
Andrei Emeltchenko928abaa2011-10-12 10:53:57 +0300832#define HCI_OP_READ_LOCAL_AMP_INFO 0x1409
833struct hci_rp_read_local_amp_info {
834 __u8 status;
835 __u8 amp_status;
836 __le32 total_bw;
837 __le32 max_bw;
838 __le32 min_latency;
839 __le32 max_pdu;
840 __u8 amp_type;
841 __le16 pal_cap;
842 __le16 max_assoc_size;
843 __le32 max_flush_to;
844 __le32 be_flush_to;
845} __packed;
846
Andrei Emeltchenko523e93c2012-05-25 15:09:26 +0300847#define HCI_OP_READ_LOCAL_AMP_ASSOC 0x140a
848struct hci_cp_read_local_amp_assoc {
849 __u8 phy_handle;
850 __le16 len_so_far;
851 __le16 max_len;
852} __packed;
853struct hci_rp_read_local_amp_assoc {
854 __u8 status;
855 __u8 phy_handle;
856 __le16 rem_len;
857 __u8 frag[0];
858} __packed;
859
860#define HCI_OP_WRITE_REMOTE_AMP_ASSOC 0x140b
861struct hci_cp_write_remote_amp_assoc {
862 __u8 phy_handle;
863 __le16 len_so_far;
864 __le16 rem_len;
865 __u8 frag[0];
866} __packed;
867struct hci_rp_write_remote_amp_assoc {
868 __u8 status;
869 __u8 phy_handle;
870} __packed;
871
Ville Tervo63185f62011-02-10 22:38:46 -0300872#define HCI_OP_LE_SET_EVENT_MASK 0x2001
873struct hci_cp_le_set_event_mask {
874 __u8 mask[8];
875} __packed;
876
877#define HCI_OP_LE_READ_BUFFER_SIZE 0x2002
878struct hci_rp_le_read_buffer_size {
879 __u8 status;
880 __le16 le_mtu;
881 __u8 le_max_pkt;
882} __packed;
883
Andre Guedes07f7fa52011-12-02 21:13:31 +0900884#define HCI_OP_LE_SET_SCAN_PARAM 0x200b
885struct hci_cp_le_set_scan_param {
886 __u8 type;
887 __le16 interval;
888 __le16 window;
889 __u8 own_address_type;
890 __u8 filter_policy;
891} __packed;
892
Andrei Emeltchenko68a8aea2011-12-19 16:14:18 +0200893#define LE_SCANNING_DISABLED 0x00
894#define LE_SCANNING_ENABLED 0x01
895
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300896#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c
897struct hci_cp_le_set_scan_enable {
898 __u8 enable;
899 __u8 filter_dup;
900} __packed;
901
Ville Tervo63185f62011-02-10 22:38:46 -0300902#define HCI_OP_LE_CREATE_CONN 0x200d
903struct hci_cp_le_create_conn {
904 __le16 scan_interval;
905 __le16 scan_window;
906 __u8 filter_policy;
907 __u8 peer_addr_type;
908 bdaddr_t peer_addr;
909 __u8 own_address_type;
910 __le16 conn_interval_min;
911 __le16 conn_interval_max;
912 __le16 conn_latency;
913 __le16 supervision_timeout;
914 __le16 min_ce_len;
915 __le16 max_ce_len;
916} __packed;
917
918#define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e
919
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200920#define HCI_OP_LE_CONN_UPDATE 0x2013
921struct hci_cp_le_conn_update {
922 __le16 handle;
923 __le16 conn_interval_min;
924 __le16 conn_interval_max;
925 __le16 conn_latency;
926 __le16 supervision_timeout;
927 __le16 min_ce_len;
928 __le16 max_ce_len;
929} __packed;
930
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300931#define HCI_OP_LE_START_ENC 0x2019
932struct hci_cp_le_start_enc {
933 __le16 handle;
934 __u8 rand[8];
935 __le16 ediv;
936 __u8 ltk[16];
937} __packed;
938
939#define HCI_OP_LE_LTK_REPLY 0x201a
940struct hci_cp_le_ltk_reply {
941 __le16 handle;
942 __u8 ltk[16];
943} __packed;
944struct hci_rp_le_ltk_reply {
945 __u8 status;
946 __le16 handle;
947} __packed;
948
949#define HCI_OP_LE_LTK_NEG_REPLY 0x201b
950struct hci_cp_le_ltk_neg_reply {
951 __le16 handle;
952} __packed;
953struct hci_rp_le_ltk_neg_reply {
954 __u8 status;
955 __le16 handle;
956} __packed;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958/* ---- HCI Events ---- */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200959#define HCI_EV_INQUIRY_COMPLETE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200961#define HCI_EV_INQUIRY_RESULT 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962struct inquiry_info {
963 bdaddr_t bdaddr;
964 __u8 pscan_rep_mode;
965 __u8 pscan_period_mode;
966 __u8 pscan_mode;
967 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800968 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300969} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200971#define HCI_EV_CONN_COMPLETE 0x03
972struct hci_ev_conn_complete {
973 __u8 status;
974 __le16 handle;
975 bdaddr_t bdaddr;
976 __u8 link_type;
977 __u8 encr_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300978} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200979
980#define HCI_EV_CONN_REQUEST 0x04
981struct hci_ev_conn_request {
982 bdaddr_t bdaddr;
983 __u8 dev_class[3];
984 __u8 link_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300985} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200986
987#define HCI_EV_DISCONN_COMPLETE 0x05
988struct hci_ev_disconn_complete {
989 __u8 status;
990 __le16 handle;
991 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300992} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200993
994#define HCI_EV_AUTH_COMPLETE 0x06
995struct hci_ev_auth_complete {
996 __u8 status;
997 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300998} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200999
1000#define HCI_EV_REMOTE_NAME 0x07
1001struct hci_ev_remote_name {
1002 __u8 status;
1003 bdaddr_t bdaddr;
Johan Hedberg1f6c6372011-03-16 14:29:35 +02001004 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001005} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001006
1007#define HCI_EV_ENCRYPT_CHANGE 0x08
1008struct hci_ev_encrypt_change {
1009 __u8 status;
1010 __le16 handle;
1011 __u8 encrypt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001012} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001013
1014#define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
1015struct hci_ev_change_link_key_complete {
1016 __u8 status;
1017 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001018} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001019
1020#define HCI_EV_REMOTE_FEATURES 0x0b
1021struct hci_ev_remote_features {
1022 __u8 status;
1023 __le16 handle;
1024 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001025} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001026
1027#define HCI_EV_REMOTE_VERSION 0x0c
1028struct hci_ev_remote_version {
1029 __u8 status;
1030 __le16 handle;
1031 __u8 lmp_ver;
1032 __le16 manufacturer;
1033 __le16 lmp_subver;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001034} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001035
1036#define HCI_EV_QOS_SETUP_COMPLETE 0x0d
1037struct hci_qos {
1038 __u8 service_type;
1039 __u32 token_rate;
1040 __u32 peak_bandwidth;
1041 __u32 latency;
1042 __u32 delay_variation;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001043} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001044struct hci_ev_qos_setup_complete {
1045 __u8 status;
1046 __le16 handle;
1047 struct hci_qos qos;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001048} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001049
1050#define HCI_EV_CMD_COMPLETE 0x0e
1051struct hci_ev_cmd_complete {
1052 __u8 ncmd;
1053 __le16 opcode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001054} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001055
1056#define HCI_EV_CMD_STATUS 0x0f
1057struct hci_ev_cmd_status {
1058 __u8 status;
1059 __u8 ncmd;
1060 __le16 opcode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001061} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001062
1063#define HCI_EV_ROLE_CHANGE 0x12
1064struct hci_ev_role_change {
1065 __u8 status;
1066 bdaddr_t bdaddr;
1067 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001068} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001069
1070#define HCI_EV_NUM_COMP_PKTS 0x13
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02001071struct hci_comp_pkts_info {
1072 __le16 handle;
1073 __le16 count;
1074} __packed;
1075
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001076struct hci_ev_num_comp_pkts {
1077 __u8 num_hndl;
Andrei Emeltchenko613a1c02011-12-19 16:31:30 +02001078 struct hci_comp_pkts_info handles[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001079} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001080
1081#define HCI_EV_MODE_CHANGE 0x14
1082struct hci_ev_mode_change {
1083 __u8 status;
1084 __le16 handle;
1085 __u8 mode;
1086 __le16 interval;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001087} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001088
1089#define HCI_EV_PIN_CODE_REQ 0x16
1090struct hci_ev_pin_code_req {
1091 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001092} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001093
1094#define HCI_EV_LINK_KEY_REQ 0x17
1095struct hci_ev_link_key_req {
1096 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001097} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001098
1099#define HCI_EV_LINK_KEY_NOTIFY 0x18
1100struct hci_ev_link_key_notify {
1101 bdaddr_t bdaddr;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03001102 __u8 link_key[HCI_LINK_KEY_SIZE];
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001103 __u8 key_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001104} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001105
1106#define HCI_EV_CLOCK_OFFSET 0x1c
1107struct hci_ev_clock_offset {
1108 __u8 status;
1109 __le16 handle;
1110 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001111} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001112
Marcel Holtmanna8746412008-07-14 20:13:46 +02001113#define HCI_EV_PKT_TYPE_CHANGE 0x1d
1114struct hci_ev_pkt_type_change {
1115 __u8 status;
1116 __le16 handle;
1117 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001118} __packed;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001119
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001120#define HCI_EV_PSCAN_REP_MODE 0x20
1121struct hci_ev_pscan_rep_mode {
1122 bdaddr_t bdaddr;
1123 __u8 pscan_rep_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001124} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
1127struct inquiry_info_with_rssi {
1128 bdaddr_t bdaddr;
1129 __u8 pscan_rep_mode;
1130 __u8 pscan_period_mode;
1131 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001132 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 __s8 rssi;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001134} __packed;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001135struct inquiry_info_with_rssi_and_pscan_mode {
1136 bdaddr_t bdaddr;
1137 __u8 pscan_rep_mode;
1138 __u8 pscan_period_mode;
1139 __u8 pscan_mode;
1140 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001141 __le16 clock_offset;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001142 __s8 rssi;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001143} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001145#define HCI_EV_REMOTE_EXT_FEATURES 0x23
1146struct hci_ev_remote_ext_features {
1147 __u8 status;
1148 __le16 handle;
1149 __u8 page;
1150 __u8 max_page;
1151 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001152} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001153
1154#define HCI_EV_SYNC_CONN_COMPLETE 0x2c
1155struct hci_ev_sync_conn_complete {
1156 __u8 status;
1157 __le16 handle;
1158 bdaddr_t bdaddr;
1159 __u8 link_type;
1160 __u8 tx_interval;
1161 __u8 retrans_window;
1162 __le16 rx_pkt_len;
1163 __le16 tx_pkt_len;
1164 __u8 air_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001165} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001166
1167#define HCI_EV_SYNC_CONN_CHANGED 0x2d
1168struct hci_ev_sync_conn_changed {
1169 __u8 status;
1170 __le16 handle;
1171 __u8 tx_interval;
1172 __u8 retrans_window;
1173 __le16 rx_pkt_len;
1174 __le16 tx_pkt_len;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001175} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001176
1177#define HCI_EV_SNIFF_SUBRATE 0x2e
1178struct hci_ev_sniff_subrate {
1179 __u8 status;
1180 __le16 handle;
1181 __le16 max_tx_latency;
1182 __le16 max_rx_latency;
1183 __le16 max_remote_timeout;
1184 __le16 max_local_timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001185} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001186
1187#define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001188struct extended_inquiry_info {
1189 bdaddr_t bdaddr;
1190 __u8 pscan_rep_mode;
1191 __u8 pscan_period_mode;
1192 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001193 __le16 clock_offset;
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001194 __s8 rssi;
1195 __u8 data[240];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001196} __packed;
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001197
Johan Hedberg1c2e0042012-06-08 23:31:13 +08001198#define HCI_EV_KEY_REFRESH_COMPLETE 0x30
1199struct hci_ev_key_refresh_complete {
1200 __u8 status;
1201 __le16 handle;
1202} __packed;
1203
Marcel Holtmann04936842008-07-14 20:13:48 +02001204#define HCI_EV_IO_CAPA_REQUEST 0x31
1205struct hci_ev_io_capa_request {
1206 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001207} __packed;
Marcel Holtmann04936842008-07-14 20:13:48 +02001208
Johan Hedberg03b555e2011-01-04 15:40:05 +02001209#define HCI_EV_IO_CAPA_REPLY 0x32
1210struct hci_ev_io_capa_reply {
1211 bdaddr_t bdaddr;
1212 __u8 capability;
1213 __u8 oob_data;
1214 __u8 authentication;
1215} __packed;
1216
Johan Hedberga5c29682011-02-19 12:05:57 -03001217#define HCI_EV_USER_CONFIRM_REQUEST 0x33
1218struct hci_ev_user_confirm_req {
1219 bdaddr_t bdaddr;
1220 __le32 passkey;
1221} __packed;
1222
Brian Gix9ad40192011-11-12 22:01:11 -08001223#define HCI_EV_USER_PASSKEY_REQUEST 0x34
1224struct hci_ev_user_passkey_req {
1225 bdaddr_t bdaddr;
1226} __packed;
1227
Szymon Janc2763eda2011-03-22 13:12:22 +01001228#define HCI_EV_REMOTE_OOB_DATA_REQUEST 0x35
1229struct hci_ev_remote_oob_data_request {
1230 bdaddr_t bdaddr;
1231} __packed;
1232
Marcel Holtmann04936842008-07-14 20:13:48 +02001233#define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
1234struct hci_ev_simple_pair_complete {
1235 __u8 status;
1236 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001237} __packed;
Marcel Holtmann04936842008-07-14 20:13:48 +02001238
Marcel Holtmann41a96212008-07-14 20:13:48 +02001239#define HCI_EV_REMOTE_HOST_FEATURES 0x3d
1240struct hci_ev_remote_host_features {
1241 bdaddr_t bdaddr;
1242 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001243} __packed;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001244
Ville Tervo63185f62011-02-10 22:38:46 -03001245#define HCI_EV_LE_META 0x3e
1246struct hci_ev_le_meta {
1247 __u8 subevent;
1248} __packed;
1249
Andrei Emeltchenko523e93c2012-05-25 15:09:26 +03001250#define HCI_EV_PHY_LINK_COMPLETE 0x40
1251struct hci_ev_phy_link_complete {
1252 __u8 status;
1253 __u8 phy_handle;
1254} __packed;
1255
1256#define HCI_EV_CHANNEL_SELECTED 0x41
1257struct hci_ev_channel_selected {
1258 __u8 phy_handle;
1259} __packed;
1260
1261#define HCI_EV_DISCONN_PHY_LINK_COMPLETE 0x42
1262struct hci_ev_disconn_phy_link_complete {
1263 __u8 status;
1264 __u8 phy_handle;
1265 __u8 reason;
1266} __packed;
1267
1268#define HCI_EV_LOGICAL_LINK_COMPLETE 0x45
1269struct hci_ev_logical_link_complete {
1270 __u8 status;
1271 __le16 handle;
1272 __u8 phy_handle;
1273 __u8 flow_spec_id;
1274} __packed;
1275
1276#define HCI_EV_DISCONN_LOGICAL_LINK_COMPLETE 0x46
1277struct hci_ev_disconn_logical_link_complete {
1278 __u8 status;
1279 __le16 handle;
1280 __u8 reason;
1281} __packed;
1282
Andrei Emeltchenko25e89e92012-01-04 12:41:58 +02001283#define HCI_EV_NUM_COMP_BLOCKS 0x48
1284struct hci_comp_blocks_info {
1285 __le16 handle;
1286 __le16 pkts;
1287 __le16 blocks;
1288} __packed;
1289
1290struct hci_ev_num_comp_blocks {
1291 __le16 num_blocks;
1292 __u8 num_hndl;
1293 struct hci_comp_blocks_info handles[0];
1294} __packed;
1295
Ville Tervo63185f62011-02-10 22:38:46 -03001296/* Low energy meta events */
1297#define HCI_EV_LE_CONN_COMPLETE 0x01
1298struct hci_ev_le_conn_complete {
1299 __u8 status;
1300 __le16 handle;
1301 __u8 role;
1302 __u8 bdaddr_type;
1303 bdaddr_t bdaddr;
1304 __le16 interval;
1305 __le16 latency;
1306 __le16 supervision_timeout;
1307 __u8 clk_accurancy;
1308} __packed;
1309
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001310#define HCI_EV_LE_LTK_REQ 0x05
1311struct hci_ev_le_ltk_req {
1312 __le16 handle;
1313 __u8 random[8];
1314 __le16 ediv;
1315} __packed;
1316
Anderson Briglia57a56fd2011-05-26 16:23:49 -03001317/* Advertising report event types */
1318#define ADV_IND 0x00
1319#define ADV_DIRECT_IND 0x01
1320#define ADV_SCAN_IND 0x02
1321#define ADV_NONCONN_IND 0x03
1322#define ADV_SCAN_RSP 0x04
1323
1324#define ADDR_LE_DEV_PUBLIC 0x00
1325#define ADDR_LE_DEV_RANDOM 0x01
1326
1327#define HCI_EV_LE_ADVERTISING_REPORT 0x02
1328struct hci_ev_le_advertising_info {
1329 __u8 evt_type;
1330 __u8 bdaddr_type;
1331 bdaddr_t bdaddr;
1332 __u8 length;
1333 __u8 data[0];
1334} __packed;
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336/* Internal events generated by Bluetooth stack */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001337#define HCI_EV_STACK_INTERNAL 0xfd
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338struct hci_ev_stack_internal {
1339 __u16 type;
1340 __u8 data[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001341} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001343#define HCI_EV_SI_DEVICE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344struct hci_ev_si_device {
1345 __u16 event;
1346 __u16 dev_id;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001347} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349#define HCI_EV_SI_SECURITY 0x02
1350struct hci_ev_si_security {
1351 __u16 event;
1352 __u16 proto;
1353 __u16 subproto;
1354 __u8 incoming;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001355} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357/* ---- HCI Packet structures ---- */
1358#define HCI_COMMAND_HDR_SIZE 3
1359#define HCI_EVENT_HDR_SIZE 2
1360#define HCI_ACL_HDR_SIZE 4
1361#define HCI_SCO_HDR_SIZE 3
1362
1363struct hci_command_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001364 __le16 opcode; /* OCF & OGF */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001365 __u8 plen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001366} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368struct hci_event_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001369 __u8 evt;
1370 __u8 plen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001371} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373struct hci_acl_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001374 __le16 handle; /* Handle & Flags(PB, BC) */
1375 __le16 dlen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001376} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378struct hci_sco_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001379 __le16 handle;
1380 __u8 dlen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001381} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001383static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
1384{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001385 return (struct hci_event_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001386}
1387
1388static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
1389{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001390 return (struct hci_acl_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001391}
1392
1393static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
1394{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001395 return (struct hci_sco_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001396}
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398/* Command opcode pack/unpack */
Gustavo Padovanc3c7ea62012-05-23 04:04:20 -03001399#define hci_opcode_pack(ogf, ocf) ((__u16) ((ocf & 0x03ff)|(ogf << 10)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400#define hci_opcode_ogf(op) (op >> 10)
1401#define hci_opcode_ocf(op) (op & 0x03ff)
1402
1403/* ACL handle and flags pack/unpack */
Gustavo Padovanc3c7ea62012-05-23 04:04:20 -03001404#define hci_handle_pack(h, f) ((__u16) ((h & 0x0fff)|(f << 12)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405#define hci_handle(h) (h & 0x0fff)
1406#define hci_flags(h) (h >> 12)
1407
1408/* ---- HCI Sockets ---- */
1409
1410/* Socket options */
1411#define HCI_DATA_DIR 1
1412#define HCI_FILTER 2
1413#define HCI_TIME_STAMP 3
1414
1415/* CMSG flags */
1416#define HCI_CMSG_DIR 0x0001
1417#define HCI_CMSG_TSTAMP 0x0002
1418
1419struct sockaddr_hci {
1420 sa_family_t hci_family;
1421 unsigned short hci_dev;
Johan Hedbergc02178d2010-12-08 00:21:05 +02001422 unsigned short hci_channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423};
1424#define HCI_DEV_NONE 0xffff
1425
Johan Hedbergc02178d2010-12-08 00:21:05 +02001426#define HCI_CHANNEL_RAW 0
Marcel Holtmanncd82e612012-02-20 20:34:38 +01001427#define HCI_CHANNEL_MONITOR 2
Gustavo Padovan66f3b912012-03-29 09:47:53 -03001428#define HCI_CHANNEL_CONTROL 3
Johan Hedbergc02178d2010-12-08 00:21:05 +02001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430struct hci_filter {
1431 unsigned long type_mask;
1432 unsigned long event_mask[2];
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001433 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434};
1435
1436struct hci_ufilter {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001437 __u32 type_mask;
1438 __u32 event_mask[2];
1439 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440};
1441
1442#define HCI_FLT_TYPE_BITS 31
1443#define HCI_FLT_EVENT_BITS 63
1444#define HCI_FLT_OGF_BITS 63
1445#define HCI_FLT_OCF_BITS 127
1446
1447/* ---- HCI Ioctl requests structures ---- */
1448struct hci_dev_stats {
1449 __u32 err_rx;
1450 __u32 err_tx;
1451 __u32 cmd_tx;
1452 __u32 evt_rx;
1453 __u32 acl_tx;
1454 __u32 acl_rx;
1455 __u32 sco_tx;
1456 __u32 sco_rx;
1457 __u32 byte_rx;
1458 __u32 byte_tx;
1459};
1460
1461struct hci_dev_info {
1462 __u16 dev_id;
1463 char name[8];
1464
1465 bdaddr_t bdaddr;
1466
1467 __u32 flags;
1468 __u8 type;
1469
1470 __u8 features[8];
1471
1472 __u32 pkt_type;
1473 __u32 link_policy;
1474 __u32 link_mode;
1475
1476 __u16 acl_mtu;
1477 __u16 acl_pkts;
1478 __u16 sco_mtu;
1479 __u16 sco_pkts;
1480
1481 struct hci_dev_stats stat;
1482};
1483
1484struct hci_conn_info {
1485 __u16 handle;
1486 bdaddr_t bdaddr;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001487 __u8 type;
1488 __u8 out;
1489 __u16 state;
1490 __u32 link_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491};
1492
1493struct hci_dev_req {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001494 __u16 dev_id;
1495 __u32 dev_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496};
1497
1498struct hci_dev_list_req {
1499 __u16 dev_num;
1500 struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
1501};
1502
1503struct hci_conn_list_req {
1504 __u16 dev_id;
1505 __u16 conn_num;
1506 struct hci_conn_info conn_info[0];
1507};
1508
1509struct hci_conn_info_req {
1510 bdaddr_t bdaddr;
1511 __u8 type;
1512 struct hci_conn_info conn_info[0];
1513};
1514
Marcel Holtmann40be4922008-07-14 20:13:50 +02001515struct hci_auth_info_req {
1516 bdaddr_t bdaddr;
1517 __u8 type;
1518};
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520struct hci_inquiry_req {
1521 __u16 dev_id;
1522 __u16 flags;
1523 __u8 lap[3];
1524 __u8 length;
1525 __u8 num_rsp;
1526};
1527#define IREQ_CACHE_FLUSH 0x0001
1528
Fabio Estevam8b281b92012-01-10 18:33:50 -02001529extern bool enable_hs;
Andrei Emeltchenko8830f512011-11-11 17:02:14 +02001530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531#endif /* __HCI_H */