blob: 3a7cd5dcf290ea4fd8bbd7f5b94bdb323b6110c2 [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
Srinivas Krovvidi10734192011-12-29 07:29:11 +05303 Copyright (c) 2000-2001, 2010-2012 Code Aurora Forum. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
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
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070028#define HCI_MAX_ACL_SIZE 1500
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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
33/* HCI dev events */
34#define HCI_DEV_REG 1
35#define HCI_DEV_UNREG 2
36#define HCI_DEV_UP 3
37#define HCI_DEV_DOWN 4
38#define HCI_DEV_SUSPEND 5
39#define HCI_DEV_RESUME 6
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070040#define HCI_DEV_WRITE 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* HCI notify events */
43#define HCI_NOTIFY_CONN_ADD 1
44#define HCI_NOTIFY_CONN_DEL 2
45#define HCI_NOTIFY_VOICE_SETTING 3
46
Marcel Holtmannc13854ce2010-02-08 15:27:07 +010047/* HCI bus types */
Marcel Holtmann0ac53932006-07-08 13:57:15 +020048#define HCI_VIRTUAL 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define HCI_USB 1
50#define HCI_PCCARD 2
51#define HCI_UART 3
52#define HCI_RS232 4
53#define HCI_PCI 5
Marcel Holtmann0ac53932006-07-08 13:57:15 +020054#define HCI_SDIO 6
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070055#define HCI_SMD 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Marcel Holtmann943da252010-02-13 02:28:41 +010057/* HCI controller types */
58#define HCI_BREDR 0x00
David Vrabel8f1e1742010-08-09 17:38:10 -040059#define HCI_AMP 0x01
Marcel Holtmann943da252010-02-13 02:28:41 +010060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* HCI device quirks */
62enum {
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010063 HCI_QUIRK_NO_RESET,
Marcel Holtmannda1f5192006-07-03 10:02:29 +020064 HCI_QUIRK_RAW_DEVICE,
65 HCI_QUIRK_FIXUP_BUFFER_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
68/* HCI device flags */
69enum {
70 HCI_UP,
71 HCI_INIT,
72 HCI_RUNNING,
73
74 HCI_PSCAN,
75 HCI_ISCAN,
76 HCI_AUTH,
77 HCI_ENCRYPT,
78 HCI_INQUIRY,
79
80 HCI_RAW,
Johan Hedbergab81cbf2010-12-15 13:53:18 +020081
82 HCI_SETUP,
83 HCI_AUTO_OFF,
Johan Hedbergebc99fe2011-01-04 11:54:26 +020084 HCI_MGMT,
Johan Hedbergc542a062011-01-26 13:11:03 +020085 HCI_PAIRABLE,
Johan Hedberg1aff6f02011-01-13 21:56:52 +020086 HCI_SERVICE_CACHE,
Johan Hedberg55ed8ca2011-01-17 14:41:05 +020087 HCI_LINK_KEYS,
88 HCI_DEBUG_KEYS,
Gustavo F. Padovan10572132011-03-16 15:36:29 -030089
90 HCI_RESET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
93/* HCI ioctl defines */
94#define HCIDEVUP _IOW('H', 201, int)
95#define HCIDEVDOWN _IOW('H', 202, int)
96#define HCIDEVRESET _IOW('H', 203, int)
97#define HCIDEVRESTAT _IOW('H', 204, int)
98
99#define HCIGETDEVLIST _IOR('H', 210, int)
100#define HCIGETDEVINFO _IOR('H', 211, int)
101#define HCIGETCONNLIST _IOR('H', 212, int)
102#define HCIGETCONNINFO _IOR('H', 213, int)
Marcel Holtmann40be4922008-07-14 20:13:50 +0200103#define HCIGETAUTHINFO _IOR('H', 215, int)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700104#define HCISETAUTHINFO _IOR('H', 216, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106#define HCISETRAW _IOW('H', 220, int)
107#define HCISETSCAN _IOW('H', 221, int)
108#define HCISETAUTH _IOW('H', 222, int)
109#define HCISETENCRYPT _IOW('H', 223, int)
110#define HCISETPTYPE _IOW('H', 224, int)
111#define HCISETLINKPOL _IOW('H', 225, int)
112#define HCISETLINKMODE _IOW('H', 226, int)
113#define HCISETACLMTU _IOW('H', 227, int)
114#define HCISETSCOMTU _IOW('H', 228, int)
115
Johan Hedbergf0358562010-05-18 13:20:32 +0200116#define HCIBLOCKADDR _IOW('H', 230, int)
117#define HCIUNBLOCKADDR _IOW('H', 231, int)
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define HCIINQUIRY _IOR('H', 240, int)
120
121/* HCI timeouts */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200122#define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */
123#define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200124#define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200125#define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */
126#define HCI_INIT_TIMEOUT (10000) /* 10 seconds */
Brian Gix6e4531c2011-10-28 16:12:08 -0700127#define HCI_CMD_TIMEOUT (5000) /* 5 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200129/* HCI data types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define HCI_COMMAND_PKT 0x01
131#define HCI_ACLDATA_PKT 0x02
132#define HCI_SCODATA_PKT 0x03
133#define HCI_EVENT_PKT 0x04
134#define HCI_VENDOR_PKT 0xff
135
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200136/* HCI packet types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define HCI_DM1 0x0008
138#define HCI_DM3 0x0400
139#define HCI_DM5 0x4000
140#define HCI_DH1 0x0010
141#define HCI_DH3 0x0800
142#define HCI_DH5 0x8000
143
144#define HCI_HV1 0x0020
145#define HCI_HV2 0x0040
146#define HCI_HV3 0x0080
147
148#define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3)
149#define ACL_PTYPE_MASK (~SCO_PTYPE_MASK)
150
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200151/* eSCO packet types */
152#define ESCO_HV1 0x0001
153#define ESCO_HV2 0x0002
154#define ESCO_HV3 0x0004
155#define ESCO_EV3 0x0008
156#define ESCO_EV4 0x0010
157#define ESCO_EV5 0x0020
Marcel Holtmannefc76882009-02-06 09:13:37 +0100158#define ESCO_2EV3 0x0040
159#define ESCO_3EV3 0x0080
160#define ESCO_2EV5 0x0100
161#define ESCO_3EV5 0x0200
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200162
Kun Han Kim15b911f2011-07-08 09:30:28 -0700163#define ESCO_WBS (ESCO_EV3 | (EDR_ESCO_MASK ^ ESCO_2EV3))
164
Nick Pellybbcda3b2010-02-11 11:54:28 -0800165#define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
166#define EDR_ESCO_MASK (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
167#define ALL_ESCO_MASK (SCO_ESCO_MASK | ESCO_EV3 | ESCO_EV4 | ESCO_EV5 | \
168 EDR_ESCO_MASK)
Marcel Holtmanna8746412008-07-14 20:13:46 +0200169
Kun Han Kim15b911f2011-07-08 09:30:28 -0700170/* Air Coding Format */
171#define ACF_CVSD 0x0000;
172#define ACF_ULAW 0x0001;
173#define ACF_ALAW 0x0002;
174#define ACF_TRANS 0x0003;
175
176/* Retransmission Effort */
177#define RE_NO_RETRANS 0x00;
178#define RE_POWER_CONSUMP 0x01;
179#define RE_LINK_QUALITY 0x02;
180#define RE_DONT_CARE 0xFF;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* ACL flags */
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200183#define ACL_START_NO_FLUSH 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#define ACL_CONT 0x01
185#define ACL_START 0x02
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700186#define ACL_COMPLETE 0x03
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define ACL_ACTIVE_BCAST 0x04
188#define ACL_PICO_BCAST 0x08
189
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700190#define ACL_PB_MASK (ACL_CONT | ACL_START)
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/* Baseband links */
193#define SCO_LINK 0x00
194#define ACL_LINK 0x01
Marcel Holtmann5b7f99092007-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 Holtmann5b7f99092007-07-11 09:51:55 +0200223#define LMP_ESCO 0x80
224
225#define LMP_EV4 0x01
226#define LMP_EV5 0x02
Johan Hedbergd5859e22011-01-25 01:19:58 +0200227#define LMP_LE 0x40
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200228
Marcel Holtmann04837f62006-07-03 10:02:33 +0200229#define LMP_SNIFF_SUBR 0x02
Johan Hedbergd5859e22011-01-25 01:19:58 +0200230#define LMP_PAUSE_ENC 0x04
Marcel Holtmannefc76882009-02-06 09:13:37 +0100231#define LMP_EDR_ESCO_2M 0x20
232#define LMP_EDR_ESCO_3M 0x40
233#define LMP_EDR_3S_ESCO 0x80
Marcel Holtmann04837f62006-07-03 10:02:33 +0200234
Johan Hedbergd5859e22011-01-25 01:19:58 +0200235#define LMP_EXT_INQ 0x01
Marcel Holtmann769be972008-07-14 20:13:49 +0200236#define LMP_SIMPLE_PAIR 0x08
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200237#define LMP_NO_FLUSH 0x40
Marcel Holtmann769be972008-07-14 20:13:49 +0200238
Johan Hedbergd5859e22011-01-25 01:19:58 +0200239#define LMP_LSTO 0x01
240#define LMP_INQ_TX_PWR 0x02
Andre Guedesc006aa02011-06-30 19:20:55 -0300241
Marcel Holtmann04837f62006-07-03 10:02:33 +0200242/* Connection modes */
243#define HCI_CM_ACTIVE 0x0000
244#define HCI_CM_HOLD 0x0001
245#define HCI_CM_SNIFF 0x0002
246#define HCI_CM_PARK 0x0003
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/* Link policies */
249#define HCI_LP_RSWITCH 0x0001
250#define HCI_LP_HOLD 0x0002
251#define HCI_LP_SNIFF 0x0004
252#define HCI_LP_PARK 0x0008
253
Marcel Holtmann04837f62006-07-03 10:02:33 +0200254/* Link modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#define HCI_LM_ACCEPT 0x8000
256#define HCI_LM_MASTER 0x0001
257#define HCI_LM_AUTH 0x0002
258#define HCI_LM_ENCRYPT 0x0004
259#define HCI_LM_TRUSTED 0x0008
260#define HCI_LM_RELIABLE 0x0010
261#define HCI_LM_SECURE 0x0020
262
Marcel Holtmann40be4922008-07-14 20:13:50 +0200263/* Authentication types */
264#define HCI_AT_NO_BONDING 0x00
265#define HCI_AT_NO_BONDING_MITM 0x01
266#define HCI_AT_DEDICATED_BONDING 0x02
267#define HCI_AT_DEDICATED_BONDING_MITM 0x03
268#define HCI_AT_GENERAL_BONDING 0x04
269#define HCI_AT_GENERAL_BONDING_MITM 0x05
270
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700271/* Flow control modes */
272#define HCI_PACKET_BASED_FLOW_CTL_MODE 0x00
273#define HCI_BLOCK_BASED_FLOW_CTL_MODE 0x01
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +0200274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/* ----- HCI Commands ---- */
Ville Tervo6bd32322011-02-16 16:32:41 +0200276#define HCI_OP_NOP 0x0000
277
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200278#define HCI_OP_INQUIRY 0x0401
279struct hci_cp_inquiry {
280 __u8 lap[3];
281 __u8 length;
282 __u8 num_rsp;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300283} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200285#define HCI_OP_INQUIRY_CANCEL 0x0402
286
287#define HCI_OP_EXIT_PERIODIC_INQ 0x0404
288
289#define HCI_OP_CREATE_CONN 0x0405
290struct hci_cp_create_conn {
291 bdaddr_t bdaddr;
292 __le16 pkt_type;
293 __u8 pscan_rep_mode;
294 __u8 pscan_mode;
295 __le16 clock_offset;
296 __u8 role_switch;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300297} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200299#define HCI_OP_DISCONNECT 0x0406
300struct hci_cp_disconnect {
301 __le16 handle;
302 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300303} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200305#define HCI_OP_ADD_SCO 0x0407
306struct hci_cp_add_sco {
307 __le16 handle;
308 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300309} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200310
311#define HCI_OP_CREATE_CONN_CANCEL 0x0408
312struct hci_cp_create_conn_cancel {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300314} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200316#define HCI_OP_ACCEPT_CONN_REQ 0x0409
317struct hci_cp_accept_conn_req {
318 bdaddr_t bdaddr;
319 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300320} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200322#define HCI_OP_REJECT_CONN_REQ 0x040a
323struct hci_cp_reject_conn_req {
324 bdaddr_t bdaddr;
325 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300326} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200328#define HCI_OP_LINK_KEY_REPLY 0x040b
329struct hci_cp_link_key_reply {
330 bdaddr_t bdaddr;
331 __u8 link_key[16];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300332} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700334struct hci_rp_link_key_reply {
335 __u8 status;
336 bdaddr_t bdaddr;
337} __packed;
338
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200339#define HCI_OP_LINK_KEY_NEG_REPLY 0x040c
340struct hci_cp_link_key_neg_reply {
341 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300342} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200344#define HCI_OP_PIN_CODE_REPLY 0x040d
345struct hci_cp_pin_code_reply {
346 bdaddr_t bdaddr;
347 __u8 pin_len;
348 __u8 pin_code[16];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300349} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200350struct hci_rp_pin_code_reply {
351 __u8 status;
352 bdaddr_t bdaddr;
353} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200354
355#define HCI_OP_PIN_CODE_NEG_REPLY 0x040e
356struct hci_cp_pin_code_neg_reply {
357 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300358} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200359struct hci_rp_pin_code_neg_reply {
360 __u8 status;
361 bdaddr_t bdaddr;
362} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200363
364#define HCI_OP_CHANGE_CONN_PTYPE 0x040f
365struct hci_cp_change_conn_ptype {
366 __le16 handle;
367 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300368} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200369
370#define HCI_OP_AUTH_REQUESTED 0x0411
371struct hci_cp_auth_requested {
372 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300373} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200374
375#define HCI_OP_SET_CONN_ENCRYPT 0x0413
376struct hci_cp_set_conn_encrypt {
377 __le16 handle;
378 __u8 encrypt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300379} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200380
381#define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415
382struct hci_cp_change_conn_link_key {
383 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300384} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200385
386#define HCI_OP_REMOTE_NAME_REQ 0x0419
387struct hci_cp_remote_name_req {
388 bdaddr_t bdaddr;
389 __u8 pscan_rep_mode;
390 __u8 pscan_mode;
391 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300392} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200393
394#define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a
395struct hci_cp_remote_name_req_cancel {
396 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300397} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200398
399#define HCI_OP_READ_REMOTE_FEATURES 0x041b
400struct hci_cp_read_remote_features {
401 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300402} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200403
404#define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
405struct hci_cp_read_remote_ext_features {
406 __le16 handle;
407 __u8 page;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300408} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200409
410#define HCI_OP_READ_REMOTE_VERSION 0x041d
411struct hci_cp_read_remote_version {
412 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300413} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200414
Mallikarjuna GBadc3a9a2012-11-21 17:01:05 +0530415#define HCI_OP_READ_CLOCK_OFFSET 0x041f
416struct hci_cp_read_clock_offset {
417 __le16 handle;
418} __packed;
419
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200420#define HCI_OP_SETUP_SYNC_CONN 0x0428
421struct hci_cp_setup_sync_conn {
422 __le16 handle;
423 __le32 tx_bandwidth;
424 __le32 rx_bandwidth;
425 __le16 max_latency;
426 __le16 voice_setting;
427 __u8 retrans_effort;
428 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300429} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200430
431#define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429
432struct hci_cp_accept_sync_conn_req {
433 bdaddr_t bdaddr;
434 __le32 tx_bandwidth;
435 __le32 rx_bandwidth;
436 __le16 max_latency;
437 __le16 content_format;
438 __u8 retrans_effort;
439 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300440} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200441
442#define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a
443struct hci_cp_reject_sync_conn_req {
444 bdaddr_t bdaddr;
445 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300446} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200447
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200448#define HCI_OP_IO_CAPABILITY_REPLY 0x042b
449struct hci_cp_io_capability_reply {
450 bdaddr_t bdaddr;
451 __u8 capability;
452 __u8 oob_data;
453 __u8 authentication;
454} __packed;
455
Johan Hedberga5c29682011-02-19 12:05:57 -0300456#define HCI_OP_USER_CONFIRM_REPLY 0x042c
457struct hci_cp_user_confirm_reply {
458 bdaddr_t bdaddr;
459} __packed;
460struct hci_rp_user_confirm_reply {
461 __u8 status;
462 bdaddr_t bdaddr;
463} __packed;
464
465#define HCI_OP_USER_CONFIRM_NEG_REPLY 0x042d
466
Szymon Janc2763eda2011-03-22 13:12:22 +0100467#define HCI_OP_REMOTE_OOB_DATA_REPLY 0x0430
468struct hci_cp_remote_oob_data_reply {
469 bdaddr_t bdaddr;
470 __u8 hash[16];
471 __u8 randomizer[16];
472} __packed;
473
474#define HCI_OP_REMOTE_OOB_DATA_NEG_REPLY 0x0433
475struct hci_cp_remote_oob_data_neg_reply {
476 bdaddr_t bdaddr;
477} __packed;
478
Johan Hedberg03b555e2011-01-04 15:40:05 +0200479#define HCI_OP_IO_CAPABILITY_NEG_REPLY 0x0434
480struct hci_cp_io_capability_neg_reply {
481 bdaddr_t bdaddr;
482 __u8 reason;
483} __packed;
484
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700485#define HCI_OP_CREATE_PHYS_LINK 0x0435
486struct hci_cp_create_phys_link {
487 __u8 phy_handle;
488 __u8 key_len;
489 __u8 type;
490 __u8 data[32];
491} __packed;
492
493#define HCI_OP_ACCEPT_PHYS_LINK 0x0436
494struct hci_cp_accept_phys_link {
495 __u8 phy_handle;
496 __u8 key_len;
497 __u8 type;
498 __u8 data[32];
499} __packed;
500
501#define HCI_OP_DISCONN_PHYS_LINK 0x0437
502struct hci_cp_disconn_phys_link {
503 __u8 phy_handle;
504 __u8 reason;
505} __packed;
506
507struct hci_ext_fs {
508 __u8 id;
509 __u8 type;
510 __le16 max_sdu;
511 __le32 sdu_arr_time;
512 __le32 acc_latency;
513 __le32 flush_to;
514} __packed;
515
516#define HCI_OP_CREATE_LOGICAL_LINK 0x0438
517#define HCI_OP_ACCEPT_LOGICAL_LINK 0x0439
518struct hci_cp_create_logical_link {
519 __u8 phy_handle;
520 struct hci_ext_fs tx_fs;
521 struct hci_ext_fs rx_fs;
522} __packed;
523
524#define HCI_OP_DISCONN_LOGICAL_LINK 0x043a
525struct hci_cp_disconn_logical_link {
526 __le16 log_handle;
527} __packed;
528
529#define HCI_OP_LOGICAL_LINK_CANCEL 0x043b
530struct hci_cp_logical_link_cancel {
531 __u8 phy_handle;
532 __u8 flow_spec_id;
533} __packed;
534
535struct hci_rp_logical_link_cancel {
536 __u8 status;
537 __u8 phy_handle;
538 __u8 flow_spec_id;
539} __packed;
540
541#define HCI_OP_FLOW_SPEC_MODIFY 0x043c
542struct hci_cp_flow_spec_modify {
543 __le16 log_handle;
544 struct hci_ext_fs tx_fs;
545 struct hci_ext_fs rx_fs;
546} __packed;
547
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200548#define HCI_OP_SNIFF_MODE 0x0803
549struct hci_cp_sniff_mode {
550 __le16 handle;
551 __le16 max_interval;
552 __le16 min_interval;
553 __le16 attempt;
554 __le16 timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300555} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200556
557#define HCI_OP_EXIT_SNIFF_MODE 0x0804
558struct hci_cp_exit_sniff_mode {
559 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300560} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200561
562#define HCI_OP_ROLE_DISCOVERY 0x0809
563struct hci_cp_role_discovery {
564 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300565} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200566struct hci_rp_role_discovery {
567 __u8 status;
568 __le16 handle;
569 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300570} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200571
572#define HCI_OP_SWITCH_ROLE 0x080b
573struct hci_cp_switch_role {
574 bdaddr_t bdaddr;
575 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300576} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200577
578#define HCI_OP_READ_LINK_POLICY 0x080c
579struct hci_cp_read_link_policy {
580 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300581} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200582struct hci_rp_read_link_policy {
583 __u8 status;
584 __le16 handle;
585 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300586} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200587
588#define HCI_OP_WRITE_LINK_POLICY 0x080d
589struct hci_cp_write_link_policy {
590 __le16 handle;
591 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300592} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200593struct hci_rp_write_link_policy {
594 __u8 status;
595 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300596} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200597
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200598#define HCI_OP_READ_DEF_LINK_POLICY 0x080e
599struct hci_rp_read_def_link_policy {
600 __u8 status;
601 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300602} __packed;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200603
604#define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f
605struct hci_cp_write_def_link_policy {
606 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300607} __packed;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200608
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200609#define HCI_OP_SNIFF_SUBRATE 0x0811
610struct hci_cp_sniff_subrate {
611 __le16 handle;
612 __le16 max_latency;
613 __le16 min_remote_timeout;
614 __le16 min_local_timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300615} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200616
617#define HCI_OP_SET_EVENT_MASK 0x0c01
618struct hci_cp_set_event_mask {
619 __u8 mask[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300620} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200621
622#define HCI_OP_RESET 0x0c03
623
624#define HCI_OP_SET_EVENT_FLT 0x0c05
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625struct hci_cp_set_event_flt {
626 __u8 flt_type;
627 __u8 cond_type;
628 __u8 condition[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300629} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631/* Filter types */
632#define HCI_FLT_CLEAR_ALL 0x00
633#define HCI_FLT_INQ_RESULT 0x01
634#define HCI_FLT_CONN_SETUP 0x02
635
636/* CONN_SETUP Condition types */
637#define HCI_CONN_SETUP_ALLOW_ALL 0x00
638#define HCI_CONN_SETUP_ALLOW_CLASS 0x01
639#define HCI_CONN_SETUP_ALLOW_BDADDR 0x02
640
641/* CONN_SETUP Conditions */
642#define HCI_CONN_SETUP_AUTO_OFF 0x01
643#define HCI_CONN_SETUP_AUTO_ON 0x02
644
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200645#define HCI_OP_DELETE_STORED_LINK_KEY 0x0c12
646struct hci_cp_delete_stored_link_key {
647 bdaddr_t bdaddr;
648 __u8 delete_all;
649} __packed;
650
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200651#define HCI_MAX_NAME_LENGTH 248
652
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200653#define HCI_OP_WRITE_LOCAL_NAME 0x0c13
654struct hci_cp_write_local_name {
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200655 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300656} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200657
658#define HCI_OP_READ_LOCAL_NAME 0x0c14
659struct hci_rp_read_local_name {
660 __u8 status;
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200661 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300662} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200663
664#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
665
666#define HCI_OP_WRITE_PG_TIMEOUT 0x0c18
667
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200668#define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200669 #define SCAN_DISABLED 0x00
670 #define SCAN_INQUIRY 0x01
671 #define SCAN_PAGE 0x02
672
673#define HCI_OP_READ_AUTH_ENABLE 0x0c1f
674
675#define HCI_OP_WRITE_AUTH_ENABLE 0x0c20
676 #define AUTH_DISABLED 0x00
677 #define AUTH_ENABLED 0x01
678
679#define HCI_OP_READ_ENCRYPT_MODE 0x0c21
680
681#define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22
682 #define ENCRYPT_DISABLED 0x00
683 #define ENCRYPT_P2P 0x01
684 #define ENCRYPT_BOTH 0x02
685
686#define HCI_OP_READ_CLASS_OF_DEV 0x0c23
687struct hci_rp_read_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 __u8 status;
689 __u8 dev_class[3];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300690} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200692#define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24
693struct hci_cp_write_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 __u8 dev_class[3];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300695} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200697#define HCI_OP_READ_VOICE_SETTING 0x0c25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698struct hci_rp_read_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800699 __u8 status;
700 __le16 voice_setting;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300701} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200703#define HCI_OP_WRITE_VOICE_SETTING 0x0c26
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704struct hci_cp_write_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800705 __le16 voice_setting;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300706} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Srinivas Krovvidi10734192011-12-29 07:29:11 +0530708#define HCI_OP_WRITE_AUTOMATIC_FLUSH_TIMEOUT 0x0c28
709struct hci_cp_write_automatic_flush_timeout {
710 __le16 handle;
711 __le16 timeout;
712} __packed;
713
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200714#define HCI_OP_HOST_BUFFER_SIZE 0x0c33
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715struct hci_cp_host_buffer_size {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800716 __le16 acl_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 __u8 sco_mtu;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800718 __le16 acl_max_pkt;
719 __le16 sco_max_pkt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300720} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Brian Gix8a7f1642011-10-17 17:39:46 -0700722#define HCI_OP_WRITE_CURRENT_IAC_LAP 0x0c3a
723struct hci_cp_write_current_iac_lap {
724 __u8 num_current_iac;
725 __u8 lap[6];
726} __packed;
727
Johan Hedbergd5859e22011-01-25 01:19:58 +0200728#define HCI_OP_WRITE_INQUIRY_MODE 0x0c45
729
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300730#define HCI_MAX_EIR_LENGTH 240
731
732#define HCI_OP_WRITE_EIR 0x0c52
733struct hci_cp_write_eir {
734 uint8_t fec;
735 uint8_t data[HCI_MAX_EIR_LENGTH];
736} __packed;
737
Marcel Holtmann333140b2008-07-14 20:13:48 +0200738#define HCI_OP_READ_SSP_MODE 0x0c55
739struct hci_rp_read_ssp_mode {
740 __u8 status;
741 __u8 mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300742} __packed;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200743
744#define HCI_OP_WRITE_SSP_MODE 0x0c56
745struct hci_cp_write_ssp_mode {
746 __u8 mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300747} __packed;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200748
Szymon Jancc35938b2011-03-22 13:12:21 +0100749#define HCI_OP_READ_LOCAL_OOB_DATA 0x0c57
750struct hci_rp_read_local_oob_data {
751 __u8 status;
752 __u8 hash[16];
753 __u8 randomizer[16];
754} __packed;
755
Johan Hedbergd5859e22011-01-25 01:19:58 +0200756#define HCI_OP_READ_INQ_RSP_TX_POWER 0x0c58
757
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700758#define HCI_OP_READ_LL_TIMEOUT 0x0c61
759struct hci_rp_read_ll_timeout {
760 __u8 status;
761 __le16 timeout;
762} __packed;
763
764#define HCI_OP_WRITE_LL_TIMEOUT 0x0c62
765struct hci_cp_write_ll_timeout {
766 __le16 timeout;
767} __packed;
768
769#define HCI_OP_SET_EVENT_MASK_PAGE2 0x0c63
770struct hci_cp_set_event_mask_page2 {
771 __u8 mask[8];
772} __packed;
773
774#define HCI_OP_READ_LOCATION_DATA 0x0c64
775struct hci_rp_read_location_data {
776 __u8 status;
777 __u8 loc_dom_aware;
778 __u8 loc_dom;
779 __u8 loc_dom_opts;
780 __u8 loc_opts;
781} __packed;
782
783#define HCI_OP_WRITE_LOCATION_DATA 0x0c65
784struct hci_cp_write_location_data {
785 __u8 loc_dom_aware;
786 __u8 loc_dom;
787 __u8 loc_dom_opts;
788 __u8 loc_opts;
789} __packed;
790
791#define HCI_OP_READ_FLOW_CONTROL_MODE 0x0c66
792struct hci_rp_read_flow_control_mode {
793 __u8 status;
794 __u8 mode;
795} __packed;
796
797#define HCI_OP_WRITE_FLOW_CONTROL_MODE 0x0c67
798struct hci_cp_write_flow_control_mode {
799 __u8 mode;
800} __packed;
801
802#define HCI_OP_READ_BE_FLUSH_TIMEOUT 0x0c69
803struct hci_cp_read_be_flush_timeout {
804 __le16 log_handle;
805} __packed;
806
807struct hci_rp_read_be_flush_timeout {
808 __u8 status;
809 __le32 timeout;
810} __packed;
811
812#define HCI_OP_WRITE_BE_FLUSH_TIMEOUT 0x0c6a
813struct hci_cp_write_be_flush_timeout {
814 __le16 log_handle;
815 __le32 timeout;
816} __packed;
817
818#define HCI_OP_SHORT_RANGE_MODE 0x0c6b
819struct hci_cp_short_range_mode {
820 __u8 phy_handle;
821 __u8 mode;
Andre Guedese326af42011-06-30 19:20:53 -0300822} __packed;
823
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200824#define HCI_OP_READ_LOCAL_VERSION 0x1001
825struct hci_rp_read_local_version {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200827 __u8 hci_ver;
828 __le16 hci_rev;
829 __u8 lmp_ver;
830 __le16 manufacturer;
831 __le16 lmp_subver;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300832} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200834#define HCI_OP_READ_LOCAL_COMMANDS 0x1002
835struct hci_rp_read_local_commands {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200837 __u8 commands[64];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300838} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200840#define HCI_OP_READ_LOCAL_FEATURES 0x1003
841struct hci_rp_read_local_features {
842 __u8 status;
843 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300844} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200845
846#define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
847struct hci_rp_read_local_ext_features {
848 __u8 status;
849 __u8 page;
850 __u8 max_page;
851 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300852} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200853
854#define HCI_OP_READ_BUFFER_SIZE 0x1005
855struct hci_rp_read_buffer_size {
856 __u8 status;
857 __le16 acl_mtu;
858 __u8 sco_mtu;
859 __le16 acl_max_pkt;
860 __le16 sco_max_pkt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300861} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200862
863#define HCI_OP_READ_BD_ADDR 0x1009
864struct hci_rp_read_bd_addr {
865 __u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300867} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700869#define HCI_OP_READ_DATA_BLOCK_SIZE 0x100a
870struct hci_rp_read_data_block_size {
871 __u8 status;
872 __le16 max_acl_len;
873 __le16 data_block_len;
874 __le16 num_blocks;
875} __packed;
876
Archana Ramachandran26a752b2011-12-20 11:27:40 -0800877#define HCI_OP_READ_RSSI 0x1405
878struct hci_cp_read_rssi {
879 __le16 handle;
880} __packed;
881
882struct hci_rp_read_rssi {
883 __u8 status;
884 __le16 handle;
885 __s8 rssi;
886} __packed;
887
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700888#define HCI_OP_READ_LOCAL_AMP_INFO 0x1409
889struct hci_rp_read_local_amp_info {
890 __u8 status;
891 __u8 amp_status;
892 __le32 total_bw;
893 __le32 max_bw;
894 __le32 min_latency;
895 __le32 max_pdu;
896 __u8 amp_type;
897 __le16 pal_cap;
898 __le16 max_assoc_size;
899 __le32 max_flush_to;
900 __le32 be_flush_to;
901} __packed;
902
903#define HCI_OP_READ_LOCAL_AMP_ASSOC 0x140a
904struct hci_cp_read_local_amp_assoc {
905 __u8 phy_handle;
906 __le16 len_so_far;
907 __le16 max_len;
908} __packed;
909
910struct hci_rp_read_local_amp_assoc {
911 __u8 status;
912 __u8 phy_handle;
913 __le16 rem_len;
914 __u8 frag[248];
915} __packed;
916
917#define HCI_OP_WRITE_REMOTE_AMP_ASSOC 0x140b
918struct hci_cp_write_remote_amp_assoc {
919 __u8 phy_handle;
920 __le16 len_so_far;
921 __le16 rem_len;
922 __u8 frag[248];
923} __packed;
924
925struct hci_rp_write_remote_amp_assoc {
926 __u8 status;
927 __u8 phy_handle;
928} __packed;
929
Ville Tervo63185f62011-02-10 22:38:46 -0300930#define HCI_OP_LE_SET_EVENT_MASK 0x2001
931struct hci_cp_le_set_event_mask {
932 __u8 mask[8];
933} __packed;
934
935#define HCI_OP_LE_READ_BUFFER_SIZE 0x2002
936struct hci_rp_le_read_buffer_size {
937 __u8 status;
938 __le16 le_mtu;
939 __u8 le_max_pkt;
940} __packed;
941
Brian Gixa68668b2011-08-11 15:49:36 -0700942#define HCI_OP_LE_SET_SCAN_PARAMETERS 0x200b
943struct hci_cp_le_set_scan_parameters {
944 __u8 type;
945 __le16 interval;
946 __le16 window;
947 __u8 own_bdaddr_type;
948 __u8 filter;
949} __packed;
950
Andre Guedes726e1332011-05-26 16:23:52 -0300951#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c
Brian Gixa68668b2011-08-11 15:49:36 -0700952struct hci_cp_le_set_scan_enable {
953 __u8 enable;
954 __u8 filter_dup;
955} __packed;
Andre Guedes726e1332011-05-26 16:23:52 -0300956
Ville Tervo63185f62011-02-10 22:38:46 -0300957#define HCI_OP_LE_CREATE_CONN 0x200d
958struct hci_cp_le_create_conn {
959 __le16 scan_interval;
960 __le16 scan_window;
961 __u8 filter_policy;
962 __u8 peer_addr_type;
963 bdaddr_t peer_addr;
964 __u8 own_address_type;
965 __le16 conn_interval_min;
966 __le16 conn_interval_max;
967 __le16 conn_latency;
968 __le16 supervision_timeout;
969 __le16 min_ce_len;
970 __le16 max_ce_len;
971} __packed;
972
973#define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e
974
Sunny Kapdi93bef892012-07-30 14:52:56 -0700975#define HCI_OP_LE_READ_WHITE_LIST_SIZE 0x200F
976struct hci_rp_le_read_white_list_size {
977 __u8 status;
978 __u8 size;
979} __packed;
980
981#define HCI_OP_LE_CLEAR_WHITE_LIST 0x2010
982
983#define HCI_OP_LE_ADD_DEV_WHITE_LIST 0x2011
984struct hci_cp_le_add_dev_white_list {
985 __u8 addr_type;
986 bdaddr_t addr;
987} __packed;
988
989#define HCI_OP_LE_REMOVE_DEV_WHITE_LIST 0x2012
990struct hci_cp_le_remove_dev_white_list {
991 __u8 addr_type;
992 bdaddr_t addr;
993} __packed;
994
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200995#define HCI_OP_LE_CONN_UPDATE 0x2013
996struct hci_cp_le_conn_update {
997 __le16 handle;
998 __le16 conn_interval_min;
999 __le16 conn_interval_max;
1000 __le16 conn_latency;
1001 __le16 supervision_timeout;
1002 __le16 min_ce_len;
1003 __le16 max_ce_len;
1004} __packed;
1005
Brian Gixa68668b2011-08-11 15:49:36 -07001006#define HCI_OP_LE_ENCRYPT 0x2017
1007struct hci_cp_le_encrypt {
1008 __u8 key[16];
1009 __u8 data[16];
1010} __packed;
1011struct hci_cp_le_encrypt_reply {
1012 __u8 status;
1013 __u8 encrypted[16];
1014} __packed;
1015
Vinicius Costa Gomes735038c2011-06-09 18:50:47 -03001016#define HCI_OP_LE_START_ENC 0x2019
1017struct hci_cp_le_start_enc {
1018 __le16 handle;
1019 __u8 rand[8];
1020 __le16 ediv;
1021 __u8 ltk[16];
1022} __packed;
1023
1024#define HCI_OP_LE_LTK_REPLY 0x201a
1025struct hci_cp_le_ltk_reply {
1026 __le16 handle;
1027 __u8 ltk[16];
1028} __packed;
1029struct hci_rp_le_ltk_reply {
1030 __u8 status;
1031 __le16 handle;
1032} __packed;
1033
1034#define HCI_OP_LE_LTK_NEG_REPLY 0x201b
1035struct hci_cp_le_ltk_neg_reply {
1036 __le16 handle;
1037} __packed;
1038struct hci_rp_le_ltk_neg_reply {
1039 __u8 status;
1040 __le16 handle;
1041} __packed;
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/* ---- HCI Events ---- */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001044#define HCI_EV_INQUIRY_COMPLETE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001046#define HCI_EV_INQUIRY_RESULT 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047struct inquiry_info {
1048 bdaddr_t bdaddr;
1049 __u8 pscan_rep_mode;
1050 __u8 pscan_period_mode;
1051 __u8 pscan_mode;
1052 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001053 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001054} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001056#define HCI_EV_CONN_COMPLETE 0x03
1057struct hci_ev_conn_complete {
1058 __u8 status;
1059 __le16 handle;
1060 bdaddr_t bdaddr;
1061 __u8 link_type;
1062 __u8 encr_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001063} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001064
1065#define HCI_EV_CONN_REQUEST 0x04
1066struct hci_ev_conn_request {
1067 bdaddr_t bdaddr;
1068 __u8 dev_class[3];
1069 __u8 link_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001070} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001071
1072#define HCI_EV_DISCONN_COMPLETE 0x05
1073struct hci_ev_disconn_complete {
1074 __u8 status;
1075 __le16 handle;
1076 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001077} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001078
1079#define HCI_EV_AUTH_COMPLETE 0x06
1080struct hci_ev_auth_complete {
1081 __u8 status;
1082 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001083} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001084
1085#define HCI_EV_REMOTE_NAME 0x07
1086struct hci_ev_remote_name {
1087 __u8 status;
1088 bdaddr_t bdaddr;
Johan Hedberg1f6c6372011-03-16 14:29:35 +02001089 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001090} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001091
1092#define HCI_EV_ENCRYPT_CHANGE 0x08
1093struct hci_ev_encrypt_change {
1094 __u8 status;
1095 __le16 handle;
1096 __u8 encrypt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001097} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001098
1099#define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
1100struct hci_ev_change_link_key_complete {
1101 __u8 status;
1102 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001103} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001104
1105#define HCI_EV_REMOTE_FEATURES 0x0b
1106struct hci_ev_remote_features {
1107 __u8 status;
1108 __le16 handle;
1109 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001110} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001111
1112#define HCI_EV_REMOTE_VERSION 0x0c
1113struct hci_ev_remote_version {
1114 __u8 status;
1115 __le16 handle;
1116 __u8 lmp_ver;
1117 __le16 manufacturer;
1118 __le16 lmp_subver;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001119} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001120
1121#define HCI_EV_QOS_SETUP_COMPLETE 0x0d
1122struct hci_qos {
1123 __u8 service_type;
1124 __u32 token_rate;
1125 __u32 peak_bandwidth;
1126 __u32 latency;
1127 __u32 delay_variation;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001128} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001129struct hci_ev_qos_setup_complete {
1130 __u8 status;
1131 __le16 handle;
1132 struct hci_qos qos;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001133} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001134
1135#define HCI_EV_CMD_COMPLETE 0x0e
1136struct hci_ev_cmd_complete {
1137 __u8 ncmd;
1138 __le16 opcode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001139} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001140
1141#define HCI_EV_CMD_STATUS 0x0f
1142struct hci_ev_cmd_status {
1143 __u8 status;
1144 __u8 ncmd;
1145 __le16 opcode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001146} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001147
1148#define HCI_EV_ROLE_CHANGE 0x12
1149struct hci_ev_role_change {
1150 __u8 status;
1151 bdaddr_t bdaddr;
1152 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001153} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001154
1155#define HCI_EV_NUM_COMP_PKTS 0x13
1156struct hci_ev_num_comp_pkts {
1157 __u8 num_hndl;
1158 /* variable length part */
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001159} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001160
1161#define HCI_EV_MODE_CHANGE 0x14
1162struct hci_ev_mode_change {
1163 __u8 status;
1164 __le16 handle;
1165 __u8 mode;
1166 __le16 interval;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001167} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001168
1169#define HCI_EV_PIN_CODE_REQ 0x16
1170struct hci_ev_pin_code_req {
1171 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001172} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001173
1174#define HCI_EV_LINK_KEY_REQ 0x17
1175struct hci_ev_link_key_req {
1176 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001177} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001178
1179#define HCI_EV_LINK_KEY_NOTIFY 0x18
1180struct hci_ev_link_key_notify {
1181 bdaddr_t bdaddr;
1182 __u8 link_key[16];
1183 __u8 key_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001184} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001185
1186#define HCI_EV_CLOCK_OFFSET 0x1c
1187struct hci_ev_clock_offset {
1188 __u8 status;
1189 __le16 handle;
1190 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001191} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001192
Marcel Holtmanna8746412008-07-14 20:13:46 +02001193#define HCI_EV_PKT_TYPE_CHANGE 0x1d
1194struct hci_ev_pkt_type_change {
1195 __u8 status;
1196 __le16 handle;
1197 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001198} __packed;
Marcel Holtmanna8746412008-07-14 20:13:46 +02001199
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001200#define HCI_EV_PSCAN_REP_MODE 0x20
1201struct hci_ev_pscan_rep_mode {
1202 bdaddr_t bdaddr;
1203 __u8 pscan_rep_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001204} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
1207struct inquiry_info_with_rssi {
1208 bdaddr_t bdaddr;
1209 __u8 pscan_rep_mode;
1210 __u8 pscan_period_mode;
1211 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001212 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 __s8 rssi;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001214} __packed;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001215struct inquiry_info_with_rssi_and_pscan_mode {
1216 bdaddr_t bdaddr;
1217 __u8 pscan_rep_mode;
1218 __u8 pscan_period_mode;
1219 __u8 pscan_mode;
1220 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001221 __le16 clock_offset;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -07001222 __s8 rssi;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001223} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001225#define HCI_EV_REMOTE_EXT_FEATURES 0x23
1226struct hci_ev_remote_ext_features {
1227 __u8 status;
1228 __le16 handle;
1229 __u8 page;
1230 __u8 max_page;
1231 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001232} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001233
1234#define HCI_EV_SYNC_CONN_COMPLETE 0x2c
1235struct hci_ev_sync_conn_complete {
1236 __u8 status;
1237 __le16 handle;
1238 bdaddr_t bdaddr;
1239 __u8 link_type;
1240 __u8 tx_interval;
1241 __u8 retrans_window;
1242 __le16 rx_pkt_len;
1243 __le16 tx_pkt_len;
1244 __u8 air_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001245} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001246
1247#define HCI_EV_SYNC_CONN_CHANGED 0x2d
1248struct hci_ev_sync_conn_changed {
1249 __u8 status;
1250 __le16 handle;
1251 __u8 tx_interval;
1252 __u8 retrans_window;
1253 __le16 rx_pkt_len;
1254 __le16 tx_pkt_len;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001255} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001256
1257#define HCI_EV_SNIFF_SUBRATE 0x2e
1258struct hci_ev_sniff_subrate {
1259 __u8 status;
1260 __le16 handle;
1261 __le16 max_tx_latency;
1262 __le16 max_rx_latency;
1263 __le16 max_remote_timeout;
1264 __le16 max_local_timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001265} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001266
1267#define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001268struct extended_inquiry_info {
1269 bdaddr_t bdaddr;
1270 __u8 pscan_rep_mode;
1271 __u8 pscan_period_mode;
1272 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001273 __le16 clock_offset;
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001274 __s8 rssi;
1275 __u8 data[240];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001276} __packed;
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001277
Marcel Holtmann04936842008-07-14 20:13:48 +02001278#define HCI_EV_IO_CAPA_REQUEST 0x31
1279struct hci_ev_io_capa_request {
1280 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001281} __packed;
Marcel Holtmann04936842008-07-14 20:13:48 +02001282
Johan Hedberg03b555e2011-01-04 15:40:05 +02001283#define HCI_EV_IO_CAPA_REPLY 0x32
1284struct hci_ev_io_capa_reply {
1285 bdaddr_t bdaddr;
1286 __u8 capability;
1287 __u8 oob_data;
1288 __u8 authentication;
1289} __packed;
1290
Johan Hedberga5c29682011-02-19 12:05:57 -03001291#define HCI_EV_USER_CONFIRM_REQUEST 0x33
1292struct hci_ev_user_confirm_req {
1293 bdaddr_t bdaddr;
1294 __le32 passkey;
1295} __packed;
1296
Brian Gixa68668b2011-08-11 15:49:36 -07001297#define HCI_EV_USER_PASSKEY_REQUEST 0x34
1298struct hci_ev_user_passkey_request {
1299 bdaddr_t bdaddr;
1300} __packed;
1301
Szymon Janc2763eda2011-03-22 13:12:22 +01001302#define HCI_EV_REMOTE_OOB_DATA_REQUEST 0x35
1303struct hci_ev_remote_oob_data_request {
1304 bdaddr_t bdaddr;
1305} __packed;
1306
Marcel Holtmann04936842008-07-14 20:13:48 +02001307#define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
1308struct hci_ev_simple_pair_complete {
1309 __u8 status;
1310 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001311} __packed;
Marcel Holtmann04936842008-07-14 20:13:48 +02001312
Brian Gixa68668b2011-08-11 15:49:36 -07001313#define HCI_EV_USER_PASSKEY_NOTIFICATION 0x3b
1314struct hci_ev_user_passkey_notification {
1315 bdaddr_t bdaddr;
1316 __le32 passkey;
1317} __packed;
1318
Marcel Holtmann41a96212008-07-14 20:13:48 +02001319#define HCI_EV_REMOTE_HOST_FEATURES 0x3d
1320struct hci_ev_remote_host_features {
1321 bdaddr_t bdaddr;
1322 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001323} __packed;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001324
Ville Tervo63185f62011-02-10 22:38:46 -03001325#define HCI_EV_LE_META 0x3e
1326struct hci_ev_le_meta {
1327 __u8 subevent;
1328} __packed;
1329
1330/* Low energy meta events */
1331#define HCI_EV_LE_CONN_COMPLETE 0x01
1332struct hci_ev_le_conn_complete {
1333 __u8 status;
1334 __le16 handle;
1335 __u8 role;
1336 __u8 bdaddr_type;
1337 bdaddr_t bdaddr;
1338 __le16 interval;
1339 __le16 latency;
1340 __le16 supervision_timeout;
1341 __u8 clk_accurancy;
1342} __packed;
1343
Anderson Briglia1c3cc1182011-05-26 16:23:49 -03001344#define ADV_IND 0x00
1345#define ADV_DIRECT_IND 0x01
1346#define ADV_SCAN_IND 0x02
1347#define ADV_NONCONN_IND 0x03
1348#define ADV_SCAN_RSP 0x04
1349
1350#define ADDR_LE_DEV_PUBLIC 0x00
1351#define ADDR_LE_DEV_RANDOM 0x01
1352
1353#define HCI_EV_LE_ADVERTISING_REPORT 0x02
1354struct hci_ev_le_advertising_info {
1355 __u8 evt_type;
1356 __u8 bdaddr_type;
1357 bdaddr_t bdaddr;
1358 __u8 length;
1359 __u8 data[0];
1360} __packed;
1361
Sunny Kapdia42b5022012-07-05 22:48:31 -07001362#define HCI_EV_LE_CONN_UPDATE_COMPLETE 0x03
1363struct hci_ev_le_conn_update_complete {
1364 __u8 status;
1365 __le16 handle;
1366 __le16 interval;
1367 __le16 latency;
1368 __le16 supervision_timeout;
1369} __packed;
1370
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001371#define HCI_EV_LE_LTK_REQ 0x05
1372struct hci_ev_le_ltk_req {
1373 __le16 handle;
1374 __u8 random[8];
1375 __le16 ediv;
1376} __packed;
1377
1378#define HCI_EV_PHYS_LINK_COMPLETE 0x40
1379struct hci_ev_phys_link_complete {
1380 __u8 status;
1381 __u8 phy_handle;
1382} __packed;
1383
1384#define HCI_EV_CHANNEL_SELECTED 0x41
1385struct hci_ev_channel_selected {
1386 __u8 phy_handle;
1387} __packed;
1388
1389#define HCI_EV_DISCONN_PHYS_LINK_COMPLETE 0x42
1390struct hci_ev_disconn_phys_link_complete {
1391 __u8 status;
1392 __u8 phy_handle;
1393 __u8 reason;
1394} __packed;
1395
1396#define HCI_EV_LOG_LINK_COMPLETE 0x45
1397struct hci_ev_log_link_complete {
1398 __u8 status;
1399 __le16 log_handle;
1400 __u8 phy_handle;
1401 __u8 flow_spec_id;
1402} __packed;
1403
1404#define HCI_EV_DISCONN_LOG_LINK_COMPLETE 0x46
1405struct hci_ev_disconn_log_link_complete {
1406 __u8 status;
1407 __le16 log_handle;
1408 __u8 reason;
1409} __packed;
1410
1411#define HCI_EV_FLOW_SPEC_MODIFY_COMPLETE 0x47
1412struct hci_ev_flow_spec_modify_complete {
1413 __u8 status;
1414 __le16 log_handle;
1415} __packed;
1416
1417#define HCI_EV_NUM_COMP_BLOCKS 0x48
1418struct hci_ev_num_comp_blocks {
1419 __le16 total_num_blocks;
1420 __u8 num_hndl;
1421 /* variable length part */
1422} __packed;
1423
1424#define HCI_EV_SHORT_RANGE_MODE_COMPLETE 0x4c
1425struct hci_ev_short_range_mode_complete {
1426 __u8 status;
1427 __u8 phy_handle;
1428 __u8 mode;
1429} __packed;
1430
1431#define HCI_EV_AMP_STATUS_CHANGE 0x4d
1432struct hci_ev_amp_status_change {
1433 __u8 status;
1434 __u8 amp_status;
1435} __packed;
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437/* Internal events generated by Bluetooth stack */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001438#define HCI_EV_STACK_INTERNAL 0xfd
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439struct hci_ev_stack_internal {
1440 __u16 type;
1441 __u8 data[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001442} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001444#define HCI_EV_SI_DEVICE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445struct hci_ev_si_device {
1446 __u16 event;
1447 __u16 dev_id;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001448} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450#define HCI_EV_SI_SECURITY 0x02
1451struct hci_ev_si_security {
1452 __u16 event;
1453 __u16 proto;
1454 __u16 subproto;
1455 __u8 incoming;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001456} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458/* ---- HCI Packet structures ---- */
1459#define HCI_COMMAND_HDR_SIZE 3
1460#define HCI_EVENT_HDR_SIZE 2
1461#define HCI_ACL_HDR_SIZE 4
1462#define HCI_SCO_HDR_SIZE 3
1463
1464struct hci_command_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001465 __le16 opcode; /* OCF & OGF */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001466 __u8 plen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001467} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469struct hci_event_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001470 __u8 evt;
1471 __u8 plen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001472} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474struct hci_acl_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001475 __le16 handle; /* Handle & Flags(PB, BC) */
1476 __le16 dlen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001477} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479struct hci_sco_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001480 __le16 handle;
1481 __u8 dlen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001482} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001484#ifdef __KERNEL__
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001485#include <linux/skbuff.h>
1486static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
1487{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001488 return (struct hci_event_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001489}
1490
1491static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
1492{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001493 return (struct hci_acl_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001494}
1495
1496static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
1497{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001498 return (struct hci_sco_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001499}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001500#endif
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502/* Command opcode pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001503#define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504#define hci_opcode_ogf(op) (op >> 10)
1505#define hci_opcode_ocf(op) (op & 0x03ff)
1506
1507/* ACL handle and flags pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001508#define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509#define hci_handle(h) (h & 0x0fff)
1510#define hci_flags(h) (h >> 12)
1511
1512/* ---- HCI Sockets ---- */
1513
1514/* Socket options */
1515#define HCI_DATA_DIR 1
1516#define HCI_FILTER 2
1517#define HCI_TIME_STAMP 3
1518
1519/* CMSG flags */
1520#define HCI_CMSG_DIR 0x0001
1521#define HCI_CMSG_TSTAMP 0x0002
1522
1523struct sockaddr_hci {
1524 sa_family_t hci_family;
1525 unsigned short hci_dev;
Johan Hedbergc02178d2010-12-08 00:21:05 +02001526 unsigned short hci_channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527};
1528#define HCI_DEV_NONE 0xffff
1529
Johan Hedbergc02178d2010-12-08 00:21:05 +02001530#define HCI_CHANNEL_RAW 0
1531#define HCI_CHANNEL_CONTROL 1
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533struct hci_filter {
1534 unsigned long type_mask;
1535 unsigned long event_mask[2];
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001536 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537};
1538
1539struct hci_ufilter {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001540 __u32 type_mask;
1541 __u32 event_mask[2];
1542 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543};
1544
1545#define HCI_FLT_TYPE_BITS 31
1546#define HCI_FLT_EVENT_BITS 63
1547#define HCI_FLT_OGF_BITS 63
1548#define HCI_FLT_OCF_BITS 127
1549
1550/* ---- HCI Ioctl requests structures ---- */
1551struct hci_dev_stats {
1552 __u32 err_rx;
1553 __u32 err_tx;
1554 __u32 cmd_tx;
1555 __u32 evt_rx;
1556 __u32 acl_tx;
1557 __u32 acl_rx;
1558 __u32 sco_tx;
1559 __u32 sco_rx;
1560 __u32 byte_rx;
1561 __u32 byte_tx;
1562};
1563
1564struct hci_dev_info {
1565 __u16 dev_id;
1566 char name[8];
1567
1568 bdaddr_t bdaddr;
1569
1570 __u32 flags;
1571 __u8 type;
1572
1573 __u8 features[8];
1574
1575 __u32 pkt_type;
1576 __u32 link_policy;
1577 __u32 link_mode;
1578
1579 __u16 acl_mtu;
1580 __u16 acl_pkts;
1581 __u16 sco_mtu;
1582 __u16 sco_pkts;
1583
1584 struct hci_dev_stats stat;
1585};
1586
1587struct hci_conn_info {
1588 __u16 handle;
1589 bdaddr_t bdaddr;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001590 __u8 type;
1591 __u8 out;
1592 __u16 state;
1593 __u32 link_mode;
Nick Pellyc1728492009-12-09 00:15:41 -08001594 __u32 mtu;
1595 __u32 cnt;
1596 __u32 pkts;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001597 __u8 pending_sec_level;
1598 __u8 ssp_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599};
1600
1601struct hci_dev_req {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001602 __u16 dev_id;
1603 __u32 dev_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604};
1605
1606struct hci_dev_list_req {
1607 __u16 dev_num;
1608 struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
1609};
1610
1611struct hci_conn_list_req {
1612 __u16 dev_id;
1613 __u16 conn_num;
1614 struct hci_conn_info conn_info[0];
1615};
1616
1617struct hci_conn_info_req {
1618 bdaddr_t bdaddr;
1619 __u8 type;
1620 struct hci_conn_info conn_info[0];
1621};
1622
Marcel Holtmann40be4922008-07-14 20:13:50 +02001623struct hci_auth_info_req {
1624 bdaddr_t bdaddr;
1625 __u8 type;
1626};
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628struct hci_inquiry_req {
1629 __u16 dev_id;
1630 __u16 flags;
1631 __u8 lap[3];
1632 __u8 length;
1633 __u8 num_rsp;
1634};
1635#define IREQ_CACHE_FLUSH 0x0001
1636
1637#endif /* __HCI_H */