blob: 5f378220435952e85622f549ab84a0209609dbcb [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
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
40
41/* HCI notify events */
42#define HCI_NOTIFY_CONN_ADD 1
43#define HCI_NOTIFY_CONN_DEL 2
44#define HCI_NOTIFY_VOICE_SETTING 3
45
Marcel Holtmannc13854ce2010-02-08 15:27:07 +010046/* HCI bus types */
Marcel Holtmann0ac53932006-07-08 13:57:15 +020047#define HCI_VIRTUAL 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define HCI_USB 1
49#define HCI_PCCARD 2
50#define HCI_UART 3
51#define HCI_RS232 4
52#define HCI_PCI 5
Marcel Holtmann0ac53932006-07-08 13:57:15 +020053#define HCI_SDIO 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Marcel Holtmann943da252010-02-13 02:28:41 +010055/* HCI controller types */
56#define HCI_BREDR 0x00
David Vrabel8f1e1742010-08-09 17:38:10 -040057#define HCI_AMP 0x01
Marcel Holtmann943da252010-02-13 02:28:41 +010058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* HCI device quirks */
60enum {
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010061 HCI_QUIRK_NO_RESET,
Marcel Holtmannda1f5192006-07-03 10:02:29 +020062 HCI_QUIRK_RAW_DEVICE,
63 HCI_QUIRK_FIXUP_BUFFER_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/* HCI device flags */
67enum {
68 HCI_UP,
69 HCI_INIT,
70 HCI_RUNNING,
71
72 HCI_PSCAN,
73 HCI_ISCAN,
74 HCI_AUTH,
75 HCI_ENCRYPT,
76 HCI_INQUIRY,
77
78 HCI_RAW,
Johan Hedbergab81cbf2010-12-15 13:53:18 +020079
80 HCI_SETUP,
81 HCI_AUTO_OFF,
Johan Hedbergebc99fe2011-01-04 11:54:26 +020082 HCI_MGMT,
Johan Hedbergc542a062011-01-26 13:11:03 +020083 HCI_PAIRABLE,
Johan Hedberg1aff6f02011-01-13 21:56:52 +020084 HCI_SERVICE_CACHE,
Johan Hedberg55ed8ca2011-01-17 14:41:05 +020085 HCI_LINK_KEYS,
86 HCI_DEBUG_KEYS,
Gustavo F. Padovan10572132011-03-16 15:36:29 -030087
88 HCI_RESET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
91/* HCI ioctl defines */
92#define HCIDEVUP _IOW('H', 201, int)
93#define HCIDEVDOWN _IOW('H', 202, int)
94#define HCIDEVRESET _IOW('H', 203, int)
95#define HCIDEVRESTAT _IOW('H', 204, int)
96
97#define HCIGETDEVLIST _IOR('H', 210, int)
98#define HCIGETDEVINFO _IOR('H', 211, int)
99#define HCIGETCONNLIST _IOR('H', 212, int)
100#define HCIGETCONNINFO _IOR('H', 213, int)
Marcel Holtmann40be4922008-07-14 20:13:50 +0200101#define HCIGETAUTHINFO _IOR('H', 215, int)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103#define HCISETRAW _IOW('H', 220, int)
104#define HCISETSCAN _IOW('H', 221, int)
105#define HCISETAUTH _IOW('H', 222, int)
106#define HCISETENCRYPT _IOW('H', 223, int)
107#define HCISETPTYPE _IOW('H', 224, int)
108#define HCISETLINKPOL _IOW('H', 225, int)
109#define HCISETLINKMODE _IOW('H', 226, int)
110#define HCISETACLMTU _IOW('H', 227, int)
111#define HCISETSCOMTU _IOW('H', 228, int)
112
Johan Hedbergf0358562010-05-18 13:20:32 +0200113#define HCIBLOCKADDR _IOW('H', 230, int)
114#define HCIUNBLOCKADDR _IOW('H', 231, int)
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define HCIINQUIRY _IOR('H', 240, int)
117
118/* HCI timeouts */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200119#define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */
120#define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */
Marcel Holtmann052b30b2009-04-26 20:01:22 +0200121#define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200122#define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */
123#define HCI_INIT_TIMEOUT (10000) /* 10 seconds */
Ville Tervo6bd32322011-02-16 16:32:41 +0200124#define HCI_CMD_TIMEOUT (1000) /* 1 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200126/* HCI data types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define HCI_COMMAND_PKT 0x01
128#define HCI_ACLDATA_PKT 0x02
129#define HCI_SCODATA_PKT 0x03
130#define HCI_EVENT_PKT 0x04
131#define HCI_VENDOR_PKT 0xff
132
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200133/* HCI packet types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#define HCI_DM1 0x0008
135#define HCI_DM3 0x0400
136#define HCI_DM5 0x4000
137#define HCI_DH1 0x0010
138#define HCI_DH3 0x0800
139#define HCI_DH5 0x8000
140
141#define HCI_HV1 0x0020
142#define HCI_HV2 0x0040
143#define HCI_HV3 0x0080
144
145#define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3)
146#define ACL_PTYPE_MASK (~SCO_PTYPE_MASK)
147
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200148/* eSCO packet types */
149#define ESCO_HV1 0x0001
150#define ESCO_HV2 0x0002
151#define ESCO_HV3 0x0004
152#define ESCO_EV3 0x0008
153#define ESCO_EV4 0x0010
154#define ESCO_EV5 0x0020
Marcel Holtmannefc76882009-02-06 09:13:37 +0100155#define ESCO_2EV3 0x0040
156#define ESCO_3EV3 0x0080
157#define ESCO_2EV5 0x0100
158#define ESCO_3EV5 0x0200
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200159
Marcel Holtmanna8746412008-07-14 20:13:46 +0200160#define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
Marcel Holtmannefc76882009-02-06 09:13:37 +0100161#define EDR_ESCO_MASK (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
Marcel Holtmanna8746412008-07-14 20:13:46 +0200162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* ACL flags */
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200164#define ACL_START_NO_FLUSH 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#define ACL_CONT 0x01
166#define ACL_START 0x02
167#define ACL_ACTIVE_BCAST 0x04
168#define ACL_PICO_BCAST 0x08
169
170/* Baseband links */
171#define SCO_LINK 0x00
172#define ACL_LINK 0x01
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200173#define ESCO_LINK 0x02
Ville Tervofcd89c02011-02-10 22:38:47 -0300174/* Low Energy links do not have defined link type. Use invented one */
175#define LE_LINK 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/* LMP features */
178#define LMP_3SLOT 0x01
179#define LMP_5SLOT 0x02
180#define LMP_ENCRYPT 0x04
181#define LMP_SOFFSET 0x08
182#define LMP_TACCURACY 0x10
183#define LMP_RSWITCH 0x20
184#define LMP_HOLD 0x40
Marcel Holtmann04837f62006-07-03 10:02:33 +0200185#define LMP_SNIFF 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187#define LMP_PARK 0x01
188#define LMP_RSSI 0x02
189#define LMP_QUALITY 0x04
190#define LMP_SCO 0x08
191#define LMP_HV2 0x10
192#define LMP_HV3 0x20
193#define LMP_ULAW 0x40
194#define LMP_ALAW 0x80
195
196#define LMP_CVSD 0x01
197#define LMP_PSCHEME 0x02
198#define LMP_PCONTROL 0x04
199
Johan Hedbergd5859e22011-01-25 01:19:58 +0200200#define LMP_RSSI_INQ 0x40
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200201#define LMP_ESCO 0x80
202
203#define LMP_EV4 0x01
204#define LMP_EV5 0x02
Johan Hedbergd5859e22011-01-25 01:19:58 +0200205#define LMP_LE 0x40
Marcel Holtmann5b7f99092007-07-11 09:51:55 +0200206
Marcel Holtmann04837f62006-07-03 10:02:33 +0200207#define LMP_SNIFF_SUBR 0x02
Johan Hedbergd5859e22011-01-25 01:19:58 +0200208#define LMP_PAUSE_ENC 0x04
Marcel Holtmannefc76882009-02-06 09:13:37 +0100209#define LMP_EDR_ESCO_2M 0x20
210#define LMP_EDR_ESCO_3M 0x40
211#define LMP_EDR_3S_ESCO 0x80
Marcel Holtmann04837f62006-07-03 10:02:33 +0200212
Johan Hedbergd5859e22011-01-25 01:19:58 +0200213#define LMP_EXT_INQ 0x01
Andre Guedese6100a22011-06-30 19:20:54 -0300214#define LMP_SIMUL_LE_BR 0x02
Marcel Holtmann769be972008-07-14 20:13:49 +0200215#define LMP_SIMPLE_PAIR 0x08
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +0200216#define LMP_NO_FLUSH 0x40
Marcel Holtmann769be972008-07-14 20:13:49 +0200217
Johan Hedbergd5859e22011-01-25 01:19:58 +0200218#define LMP_LSTO 0x01
219#define LMP_INQ_TX_PWR 0x02
Andre Guedes971e3a42011-06-30 19:20:52 -0300220#define LMP_EXTFEATURES 0x80
Johan Hedbergd5859e22011-01-25 01:19:58 +0200221
Marcel Holtmann04837f62006-07-03 10:02:33 +0200222/* Connection modes */
223#define HCI_CM_ACTIVE 0x0000
224#define HCI_CM_HOLD 0x0001
225#define HCI_CM_SNIFF 0x0002
226#define HCI_CM_PARK 0x0003
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* Link policies */
229#define HCI_LP_RSWITCH 0x0001
230#define HCI_LP_HOLD 0x0002
231#define HCI_LP_SNIFF 0x0004
232#define HCI_LP_PARK 0x0008
233
Marcel Holtmann04837f62006-07-03 10:02:33 +0200234/* Link modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define HCI_LM_ACCEPT 0x8000
236#define HCI_LM_MASTER 0x0001
237#define HCI_LM_AUTH 0x0002
238#define HCI_LM_ENCRYPT 0x0004
239#define HCI_LM_TRUSTED 0x0008
240#define HCI_LM_RELIABLE 0x0010
241#define HCI_LM_SECURE 0x0020
242
Marcel Holtmann40be4922008-07-14 20:13:50 +0200243/* Authentication types */
244#define HCI_AT_NO_BONDING 0x00
245#define HCI_AT_NO_BONDING_MITM 0x01
246#define HCI_AT_DEDICATED_BONDING 0x02
247#define HCI_AT_DEDICATED_BONDING_MITM 0x03
248#define HCI_AT_GENERAL_BONDING 0x04
249#define HCI_AT_GENERAL_BONDING_MITM 0x05
250
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +0200251/* Link Key types */
252#define HCI_LK_COMBINATION 0x00
253#define HCI_LK_LOCAL_UNIT 0x01
254#define HCI_LK_REMOTE_UNIT 0x02
255#define HCI_LK_DEBUG_COMBINATION 0x03
256#define HCI_LK_UNAUTH_COMBINATION 0x04
257#define HCI_LK_AUTH_COMBINATION 0x05
258#define HCI_LK_CHANGED_COMBINATION 0x06
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/* ----- HCI Commands ---- */
Ville Tervo6bd32322011-02-16 16:32:41 +0200261#define HCI_OP_NOP 0x0000
262
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200263#define HCI_OP_INQUIRY 0x0401
264struct hci_cp_inquiry {
265 __u8 lap[3];
266 __u8 length;
267 __u8 num_rsp;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300268} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200270#define HCI_OP_INQUIRY_CANCEL 0x0402
271
272#define HCI_OP_EXIT_PERIODIC_INQ 0x0404
273
274#define HCI_OP_CREATE_CONN 0x0405
275struct hci_cp_create_conn {
276 bdaddr_t bdaddr;
277 __le16 pkt_type;
278 __u8 pscan_rep_mode;
279 __u8 pscan_mode;
280 __le16 clock_offset;
281 __u8 role_switch;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300282} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200284#define HCI_OP_DISCONNECT 0x0406
285struct hci_cp_disconnect {
286 __le16 handle;
287 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300288} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200290#define HCI_OP_ADD_SCO 0x0407
291struct hci_cp_add_sco {
292 __le16 handle;
293 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300294} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200295
296#define HCI_OP_CREATE_CONN_CANCEL 0x0408
297struct hci_cp_create_conn_cancel {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300299} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200301#define HCI_OP_ACCEPT_CONN_REQ 0x0409
302struct hci_cp_accept_conn_req {
303 bdaddr_t bdaddr;
304 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300305} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200307#define HCI_OP_REJECT_CONN_REQ 0x040a
308struct hci_cp_reject_conn_req {
309 bdaddr_t bdaddr;
310 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300311} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200313#define HCI_OP_LINK_KEY_REPLY 0x040b
314struct hci_cp_link_key_reply {
315 bdaddr_t bdaddr;
316 __u8 link_key[16];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300317} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200319#define HCI_OP_LINK_KEY_NEG_REPLY 0x040c
320struct hci_cp_link_key_neg_reply {
321 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300322} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200324#define HCI_OP_PIN_CODE_REPLY 0x040d
325struct hci_cp_pin_code_reply {
326 bdaddr_t bdaddr;
327 __u8 pin_len;
328 __u8 pin_code[16];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300329} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200330struct hci_rp_pin_code_reply {
331 __u8 status;
332 bdaddr_t bdaddr;
333} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200334
335#define HCI_OP_PIN_CODE_NEG_REPLY 0x040e
336struct hci_cp_pin_code_neg_reply {
337 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300338} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200339struct hci_rp_pin_code_neg_reply {
340 __u8 status;
341 bdaddr_t bdaddr;
342} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200343
344#define HCI_OP_CHANGE_CONN_PTYPE 0x040f
345struct hci_cp_change_conn_ptype {
346 __le16 handle;
347 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300348} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200349
350#define HCI_OP_AUTH_REQUESTED 0x0411
351struct hci_cp_auth_requested {
352 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300353} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200354
355#define HCI_OP_SET_CONN_ENCRYPT 0x0413
356struct hci_cp_set_conn_encrypt {
357 __le16 handle;
358 __u8 encrypt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300359} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200360
361#define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415
362struct hci_cp_change_conn_link_key {
363 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300364} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200365
366#define HCI_OP_REMOTE_NAME_REQ 0x0419
367struct hci_cp_remote_name_req {
368 bdaddr_t bdaddr;
369 __u8 pscan_rep_mode;
370 __u8 pscan_mode;
371 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300372} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200373
374#define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a
375struct hci_cp_remote_name_req_cancel {
376 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300377} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200378
379#define HCI_OP_READ_REMOTE_FEATURES 0x041b
380struct hci_cp_read_remote_features {
381 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300382} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200383
384#define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
385struct hci_cp_read_remote_ext_features {
386 __le16 handle;
387 __u8 page;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300388} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200389
390#define HCI_OP_READ_REMOTE_VERSION 0x041d
391struct hci_cp_read_remote_version {
392 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300393} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200394
395#define HCI_OP_SETUP_SYNC_CONN 0x0428
396struct hci_cp_setup_sync_conn {
397 __le16 handle;
398 __le32 tx_bandwidth;
399 __le32 rx_bandwidth;
400 __le16 max_latency;
401 __le16 voice_setting;
402 __u8 retrans_effort;
403 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300404} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200405
406#define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429
407struct hci_cp_accept_sync_conn_req {
408 bdaddr_t bdaddr;
409 __le32 tx_bandwidth;
410 __le32 rx_bandwidth;
411 __le16 max_latency;
412 __le16 content_format;
413 __u8 retrans_effort;
414 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300415} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200416
417#define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a
418struct hci_cp_reject_sync_conn_req {
419 bdaddr_t bdaddr;
420 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300421} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200422
Johan Hedberg17fa4b92011-01-25 13:28:33 +0200423#define HCI_OP_IO_CAPABILITY_REPLY 0x042b
424struct hci_cp_io_capability_reply {
425 bdaddr_t bdaddr;
426 __u8 capability;
427 __u8 oob_data;
428 __u8 authentication;
429} __packed;
430
Johan Hedberga5c29682011-02-19 12:05:57 -0300431#define HCI_OP_USER_CONFIRM_REPLY 0x042c
432struct hci_cp_user_confirm_reply {
433 bdaddr_t bdaddr;
434} __packed;
435struct hci_rp_user_confirm_reply {
436 __u8 status;
437 bdaddr_t bdaddr;
438} __packed;
439
440#define HCI_OP_USER_CONFIRM_NEG_REPLY 0x042d
441
Szymon Janc2763eda2011-03-22 13:12:22 +0100442#define HCI_OP_REMOTE_OOB_DATA_REPLY 0x0430
443struct hci_cp_remote_oob_data_reply {
444 bdaddr_t bdaddr;
445 __u8 hash[16];
446 __u8 randomizer[16];
447} __packed;
448
449#define HCI_OP_REMOTE_OOB_DATA_NEG_REPLY 0x0433
450struct hci_cp_remote_oob_data_neg_reply {
451 bdaddr_t bdaddr;
452} __packed;
453
Johan Hedberg03b555e2011-01-04 15:40:05 +0200454#define HCI_OP_IO_CAPABILITY_NEG_REPLY 0x0434
455struct hci_cp_io_capability_neg_reply {
456 bdaddr_t bdaddr;
457 __u8 reason;
458} __packed;
459
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200460#define HCI_OP_SNIFF_MODE 0x0803
461struct hci_cp_sniff_mode {
462 __le16 handle;
463 __le16 max_interval;
464 __le16 min_interval;
465 __le16 attempt;
466 __le16 timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300467} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200468
469#define HCI_OP_EXIT_SNIFF_MODE 0x0804
470struct hci_cp_exit_sniff_mode {
471 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300472} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200473
474#define HCI_OP_ROLE_DISCOVERY 0x0809
475struct hci_cp_role_discovery {
476 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300477} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200478struct hci_rp_role_discovery {
479 __u8 status;
480 __le16 handle;
481 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300482} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200483
484#define HCI_OP_SWITCH_ROLE 0x080b
485struct hci_cp_switch_role {
486 bdaddr_t bdaddr;
487 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300488} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200489
490#define HCI_OP_READ_LINK_POLICY 0x080c
491struct hci_cp_read_link_policy {
492 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300493} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200494struct hci_rp_read_link_policy {
495 __u8 status;
496 __le16 handle;
497 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300498} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200499
500#define HCI_OP_WRITE_LINK_POLICY 0x080d
501struct hci_cp_write_link_policy {
502 __le16 handle;
503 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300504} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200505struct hci_rp_write_link_policy {
506 __u8 status;
507 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300508} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200509
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200510#define HCI_OP_READ_DEF_LINK_POLICY 0x080e
511struct hci_rp_read_def_link_policy {
512 __u8 status;
513 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300514} __packed;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200515
516#define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f
517struct hci_cp_write_def_link_policy {
518 __le16 policy;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300519} __packed;
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200520
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200521#define HCI_OP_SNIFF_SUBRATE 0x0811
522struct hci_cp_sniff_subrate {
523 __le16 handle;
524 __le16 max_latency;
525 __le16 min_remote_timeout;
526 __le16 min_local_timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300527} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200528
529#define HCI_OP_SET_EVENT_MASK 0x0c01
530struct hci_cp_set_event_mask {
531 __u8 mask[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300532} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200533
534#define HCI_OP_RESET 0x0c03
535
536#define HCI_OP_SET_EVENT_FLT 0x0c05
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537struct hci_cp_set_event_flt {
538 __u8 flt_type;
539 __u8 cond_type;
540 __u8 condition[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300541} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543/* Filter types */
544#define HCI_FLT_CLEAR_ALL 0x00
545#define HCI_FLT_INQ_RESULT 0x01
546#define HCI_FLT_CONN_SETUP 0x02
547
548/* CONN_SETUP Condition types */
549#define HCI_CONN_SETUP_ALLOW_ALL 0x00
550#define HCI_CONN_SETUP_ALLOW_CLASS 0x01
551#define HCI_CONN_SETUP_ALLOW_BDADDR 0x02
552
553/* CONN_SETUP Conditions */
554#define HCI_CONN_SETUP_AUTO_OFF 0x01
555#define HCI_CONN_SETUP_AUTO_ON 0x02
556
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200557#define HCI_OP_DELETE_STORED_LINK_KEY 0x0c12
558struct hci_cp_delete_stored_link_key {
559 bdaddr_t bdaddr;
560 __u8 delete_all;
561} __packed;
562
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200563#define HCI_MAX_NAME_LENGTH 248
564
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200565#define HCI_OP_WRITE_LOCAL_NAME 0x0c13
566struct hci_cp_write_local_name {
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200567 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300568} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200569
570#define HCI_OP_READ_LOCAL_NAME 0x0c14
571struct hci_rp_read_local_name {
572 __u8 status;
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200573 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300574} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200575
576#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
577
578#define HCI_OP_WRITE_PG_TIMEOUT 0x0c18
579
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200580#define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200581 #define SCAN_DISABLED 0x00
582 #define SCAN_INQUIRY 0x01
583 #define SCAN_PAGE 0x02
584
585#define HCI_OP_READ_AUTH_ENABLE 0x0c1f
586
587#define HCI_OP_WRITE_AUTH_ENABLE 0x0c20
588 #define AUTH_DISABLED 0x00
589 #define AUTH_ENABLED 0x01
590
591#define HCI_OP_READ_ENCRYPT_MODE 0x0c21
592
593#define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22
594 #define ENCRYPT_DISABLED 0x00
595 #define ENCRYPT_P2P 0x01
596 #define ENCRYPT_BOTH 0x02
597
598#define HCI_OP_READ_CLASS_OF_DEV 0x0c23
599struct hci_rp_read_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 __u8 status;
601 __u8 dev_class[3];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300602} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200604#define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24
605struct hci_cp_write_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 __u8 dev_class[3];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300607} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200609#define HCI_OP_READ_VOICE_SETTING 0x0c25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610struct hci_rp_read_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800611 __u8 status;
612 __le16 voice_setting;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300613} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200615#define HCI_OP_WRITE_VOICE_SETTING 0x0c26
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616struct hci_cp_write_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800617 __le16 voice_setting;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300618} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200620#define HCI_OP_HOST_BUFFER_SIZE 0x0c33
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621struct hci_cp_host_buffer_size {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800622 __le16 acl_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 __u8 sco_mtu;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800624 __le16 acl_max_pkt;
625 __le16 sco_max_pkt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300626} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Johan Hedbergd5859e22011-01-25 01:19:58 +0200628#define HCI_OP_WRITE_INQUIRY_MODE 0x0c45
629
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300630#define HCI_MAX_EIR_LENGTH 240
631
632#define HCI_OP_WRITE_EIR 0x0c52
633struct hci_cp_write_eir {
634 uint8_t fec;
635 uint8_t data[HCI_MAX_EIR_LENGTH];
636} __packed;
637
Marcel Holtmann333140b2008-07-14 20:13:48 +0200638#define HCI_OP_READ_SSP_MODE 0x0c55
639struct hci_rp_read_ssp_mode {
640 __u8 status;
641 __u8 mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300642} __packed;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200643
644#define HCI_OP_WRITE_SSP_MODE 0x0c56
645struct hci_cp_write_ssp_mode {
646 __u8 mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300647} __packed;
Marcel Holtmann333140b2008-07-14 20:13:48 +0200648
Szymon Jancc35938b2011-03-22 13:12:21 +0100649#define HCI_OP_READ_LOCAL_OOB_DATA 0x0c57
650struct hci_rp_read_local_oob_data {
651 __u8 status;
652 __u8 hash[16];
653 __u8 randomizer[16];
654} __packed;
655
Johan Hedbergd5859e22011-01-25 01:19:58 +0200656#define HCI_OP_READ_INQ_RSP_TX_POWER 0x0c58
657
Andre Guedesf9b49302011-06-30 19:20:53 -0300658#define HCI_OP_WRITE_LE_HOST_SUPPORTED 0x0c6d
659struct hci_cp_write_le_host_supported {
660 __u8 le;
661 __u8 simul;
662} __packed;
663
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200664#define HCI_OP_READ_LOCAL_VERSION 0x1001
665struct hci_rp_read_local_version {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200667 __u8 hci_ver;
668 __le16 hci_rev;
669 __u8 lmp_ver;
670 __le16 manufacturer;
671 __le16 lmp_subver;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300672} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200674#define HCI_OP_READ_LOCAL_COMMANDS 0x1002
675struct hci_rp_read_local_commands {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200677 __u8 commands[64];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300678} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200680#define HCI_OP_READ_LOCAL_FEATURES 0x1003
681struct hci_rp_read_local_features {
682 __u8 status;
683 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300684} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200685
686#define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
Andre Guedes971e3a42011-06-30 19:20:52 -0300687struct hci_cp_read_local_ext_features {
688 __u8 page;
689} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200690struct hci_rp_read_local_ext_features {
691 __u8 status;
692 __u8 page;
693 __u8 max_page;
694 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300695} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200696
697#define HCI_OP_READ_BUFFER_SIZE 0x1005
698struct hci_rp_read_buffer_size {
699 __u8 status;
700 __le16 acl_mtu;
701 __u8 sco_mtu;
702 __le16 acl_max_pkt;
703 __le16 sco_max_pkt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300704} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200705
706#define HCI_OP_READ_BD_ADDR 0x1009
707struct hci_rp_read_bd_addr {
708 __u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300710} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Ville Tervo63185f62011-02-10 22:38:46 -0300712#define HCI_OP_LE_SET_EVENT_MASK 0x2001
713struct hci_cp_le_set_event_mask {
714 __u8 mask[8];
715} __packed;
716
717#define HCI_OP_LE_READ_BUFFER_SIZE 0x2002
718struct hci_rp_le_read_buffer_size {
719 __u8 status;
720 __le16 le_mtu;
721 __u8 le_max_pkt;
722} __packed;
723
Andre Guedeseb9d91f2011-05-26 16:23:52 -0300724#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c
725struct hci_cp_le_set_scan_enable {
726 __u8 enable;
727 __u8 filter_dup;
728} __packed;
729
Ville Tervo63185f62011-02-10 22:38:46 -0300730#define HCI_OP_LE_CREATE_CONN 0x200d
731struct hci_cp_le_create_conn {
732 __le16 scan_interval;
733 __le16 scan_window;
734 __u8 filter_policy;
735 __u8 peer_addr_type;
736 bdaddr_t peer_addr;
737 __u8 own_address_type;
738 __le16 conn_interval_min;
739 __le16 conn_interval_max;
740 __le16 conn_latency;
741 __le16 supervision_timeout;
742 __le16 min_ce_len;
743 __le16 max_ce_len;
744} __packed;
745
746#define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e
747
Claudio Takahasi2ce603e2011-02-16 20:44:53 -0200748#define HCI_OP_LE_CONN_UPDATE 0x2013
749struct hci_cp_le_conn_update {
750 __le16 handle;
751 __le16 conn_interval_min;
752 __le16 conn_interval_max;
753 __le16 conn_latency;
754 __le16 supervision_timeout;
755 __le16 min_ce_len;
756 __le16 max_ce_len;
757} __packed;
758
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -0300759#define HCI_OP_LE_START_ENC 0x2019
760struct hci_cp_le_start_enc {
761 __le16 handle;
762 __u8 rand[8];
763 __le16 ediv;
764 __u8 ltk[16];
765} __packed;
766
767#define HCI_OP_LE_LTK_REPLY 0x201a
768struct hci_cp_le_ltk_reply {
769 __le16 handle;
770 __u8 ltk[16];
771} __packed;
772struct hci_rp_le_ltk_reply {
773 __u8 status;
774 __le16 handle;
775} __packed;
776
777#define HCI_OP_LE_LTK_NEG_REPLY 0x201b
778struct hci_cp_le_ltk_neg_reply {
779 __le16 handle;
780} __packed;
781struct hci_rp_le_ltk_neg_reply {
782 __u8 status;
783 __le16 handle;
784} __packed;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/* ---- HCI Events ---- */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200787#define HCI_EV_INQUIRY_COMPLETE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200789#define HCI_EV_INQUIRY_RESULT 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790struct inquiry_info {
791 bdaddr_t bdaddr;
792 __u8 pscan_rep_mode;
793 __u8 pscan_period_mode;
794 __u8 pscan_mode;
795 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800796 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300797} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200799#define HCI_EV_CONN_COMPLETE 0x03
800struct hci_ev_conn_complete {
801 __u8 status;
802 __le16 handle;
803 bdaddr_t bdaddr;
804 __u8 link_type;
805 __u8 encr_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300806} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200807
808#define HCI_EV_CONN_REQUEST 0x04
809struct hci_ev_conn_request {
810 bdaddr_t bdaddr;
811 __u8 dev_class[3];
812 __u8 link_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300813} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200814
815#define HCI_EV_DISCONN_COMPLETE 0x05
816struct hci_ev_disconn_complete {
817 __u8 status;
818 __le16 handle;
819 __u8 reason;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300820} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200821
822#define HCI_EV_AUTH_COMPLETE 0x06
823struct hci_ev_auth_complete {
824 __u8 status;
825 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300826} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200827
828#define HCI_EV_REMOTE_NAME 0x07
829struct hci_ev_remote_name {
830 __u8 status;
831 bdaddr_t bdaddr;
Johan Hedberg1f6c6372011-03-16 14:29:35 +0200832 __u8 name[HCI_MAX_NAME_LENGTH];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300833} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200834
835#define HCI_EV_ENCRYPT_CHANGE 0x08
836struct hci_ev_encrypt_change {
837 __u8 status;
838 __le16 handle;
839 __u8 encrypt;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300840} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200841
842#define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
843struct hci_ev_change_link_key_complete {
844 __u8 status;
845 __le16 handle;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300846} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200847
848#define HCI_EV_REMOTE_FEATURES 0x0b
849struct hci_ev_remote_features {
850 __u8 status;
851 __le16 handle;
852 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300853} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200854
855#define HCI_EV_REMOTE_VERSION 0x0c
856struct hci_ev_remote_version {
857 __u8 status;
858 __le16 handle;
859 __u8 lmp_ver;
860 __le16 manufacturer;
861 __le16 lmp_subver;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300862} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200863
864#define HCI_EV_QOS_SETUP_COMPLETE 0x0d
865struct hci_qos {
866 __u8 service_type;
867 __u32 token_rate;
868 __u32 peak_bandwidth;
869 __u32 latency;
870 __u32 delay_variation;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300871} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200872struct hci_ev_qos_setup_complete {
873 __u8 status;
874 __le16 handle;
875 struct hci_qos qos;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300876} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200877
878#define HCI_EV_CMD_COMPLETE 0x0e
879struct hci_ev_cmd_complete {
880 __u8 ncmd;
881 __le16 opcode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300882} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200883
884#define HCI_EV_CMD_STATUS 0x0f
885struct hci_ev_cmd_status {
886 __u8 status;
887 __u8 ncmd;
888 __le16 opcode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300889} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200890
891#define HCI_EV_ROLE_CHANGE 0x12
892struct hci_ev_role_change {
893 __u8 status;
894 bdaddr_t bdaddr;
895 __u8 role;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300896} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200897
898#define HCI_EV_NUM_COMP_PKTS 0x13
899struct hci_ev_num_comp_pkts {
900 __u8 num_hndl;
901 /* variable length part */
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300902} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200903
904#define HCI_EV_MODE_CHANGE 0x14
905struct hci_ev_mode_change {
906 __u8 status;
907 __le16 handle;
908 __u8 mode;
909 __le16 interval;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300910} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200911
912#define HCI_EV_PIN_CODE_REQ 0x16
913struct hci_ev_pin_code_req {
914 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300915} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200916
917#define HCI_EV_LINK_KEY_REQ 0x17
918struct hci_ev_link_key_req {
919 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300920} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200921
922#define HCI_EV_LINK_KEY_NOTIFY 0x18
923struct hci_ev_link_key_notify {
924 bdaddr_t bdaddr;
925 __u8 link_key[16];
926 __u8 key_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300927} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200928
929#define HCI_EV_CLOCK_OFFSET 0x1c
930struct hci_ev_clock_offset {
931 __u8 status;
932 __le16 handle;
933 __le16 clock_offset;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300934} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200935
Marcel Holtmanna8746412008-07-14 20:13:46 +0200936#define HCI_EV_PKT_TYPE_CHANGE 0x1d
937struct hci_ev_pkt_type_change {
938 __u8 status;
939 __le16 handle;
940 __le16 pkt_type;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300941} __packed;
Marcel Holtmanna8746412008-07-14 20:13:46 +0200942
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200943#define HCI_EV_PSCAN_REP_MODE 0x20
944struct hci_ev_pscan_rep_mode {
945 bdaddr_t bdaddr;
946 __u8 pscan_rep_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300947} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
950struct inquiry_info_with_rssi {
951 bdaddr_t bdaddr;
952 __u8 pscan_rep_mode;
953 __u8 pscan_period_mode;
954 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800955 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 __s8 rssi;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300957} __packed;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -0700958struct inquiry_info_with_rssi_and_pscan_mode {
959 bdaddr_t bdaddr;
960 __u8 pscan_rep_mode;
961 __u8 pscan_period_mode;
962 __u8 pscan_mode;
963 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800964 __le16 clock_offset;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -0700965 __s8 rssi;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300966} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200968#define HCI_EV_REMOTE_EXT_FEATURES 0x23
969struct hci_ev_remote_ext_features {
970 __u8 status;
971 __le16 handle;
972 __u8 page;
973 __u8 max_page;
974 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300975} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200976
977#define HCI_EV_SYNC_CONN_COMPLETE 0x2c
978struct hci_ev_sync_conn_complete {
979 __u8 status;
980 __le16 handle;
981 bdaddr_t bdaddr;
982 __u8 link_type;
983 __u8 tx_interval;
984 __u8 retrans_window;
985 __le16 rx_pkt_len;
986 __le16 tx_pkt_len;
987 __u8 air_mode;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300988} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200989
990#define HCI_EV_SYNC_CONN_CHANGED 0x2d
991struct hci_ev_sync_conn_changed {
992 __u8 status;
993 __le16 handle;
994 __u8 tx_interval;
995 __u8 retrans_window;
996 __le16 rx_pkt_len;
997 __le16 tx_pkt_len;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -0300998} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200999
1000#define HCI_EV_SNIFF_SUBRATE 0x2e
1001struct hci_ev_sniff_subrate {
1002 __u8 status;
1003 __le16 handle;
1004 __le16 max_tx_latency;
1005 __le16 max_rx_latency;
1006 __le16 max_remote_timeout;
1007 __le16 max_local_timeout;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001008} __packed;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001009
1010#define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001011struct extended_inquiry_info {
1012 bdaddr_t bdaddr;
1013 __u8 pscan_rep_mode;
1014 __u8 pscan_period_mode;
1015 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001016 __le16 clock_offset;
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001017 __s8 rssi;
1018 __u8 data[240];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001019} __packed;
Marcel Holtmann21d9e302005-09-13 01:32:25 +02001020
Marcel Holtmann04936842008-07-14 20:13:48 +02001021#define HCI_EV_IO_CAPA_REQUEST 0x31
1022struct hci_ev_io_capa_request {
1023 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001024} __packed;
Marcel Holtmann04936842008-07-14 20:13:48 +02001025
Johan Hedberg03b555e2011-01-04 15:40:05 +02001026#define HCI_EV_IO_CAPA_REPLY 0x32
1027struct hci_ev_io_capa_reply {
1028 bdaddr_t bdaddr;
1029 __u8 capability;
1030 __u8 oob_data;
1031 __u8 authentication;
1032} __packed;
1033
Johan Hedberga5c29682011-02-19 12:05:57 -03001034#define HCI_EV_USER_CONFIRM_REQUEST 0x33
1035struct hci_ev_user_confirm_req {
1036 bdaddr_t bdaddr;
1037 __le32 passkey;
1038} __packed;
1039
Szymon Janc2763eda2011-03-22 13:12:22 +01001040#define HCI_EV_REMOTE_OOB_DATA_REQUEST 0x35
1041struct hci_ev_remote_oob_data_request {
1042 bdaddr_t bdaddr;
1043} __packed;
1044
Marcel Holtmann04936842008-07-14 20:13:48 +02001045#define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
1046struct hci_ev_simple_pair_complete {
1047 __u8 status;
1048 bdaddr_t bdaddr;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001049} __packed;
Marcel Holtmann04936842008-07-14 20:13:48 +02001050
Marcel Holtmann41a96212008-07-14 20:13:48 +02001051#define HCI_EV_REMOTE_HOST_FEATURES 0x3d
1052struct hci_ev_remote_host_features {
1053 bdaddr_t bdaddr;
1054 __u8 features[8];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001055} __packed;
Marcel Holtmann41a96212008-07-14 20:13:48 +02001056
Ville Tervo63185f62011-02-10 22:38:46 -03001057#define HCI_EV_LE_META 0x3e
1058struct hci_ev_le_meta {
1059 __u8 subevent;
1060} __packed;
1061
1062/* Low energy meta events */
1063#define HCI_EV_LE_CONN_COMPLETE 0x01
1064struct hci_ev_le_conn_complete {
1065 __u8 status;
1066 __le16 handle;
1067 __u8 role;
1068 __u8 bdaddr_type;
1069 bdaddr_t bdaddr;
1070 __le16 interval;
1071 __le16 latency;
1072 __le16 supervision_timeout;
1073 __u8 clk_accurancy;
1074} __packed;
1075
Vinicius Costa Gomesa7a595f2011-06-09 18:50:47 -03001076#define HCI_EV_LE_LTK_REQ 0x05
1077struct hci_ev_le_ltk_req {
1078 __le16 handle;
1079 __u8 random[8];
1080 __le16 ediv;
1081} __packed;
1082
Anderson Briglia57a56fd2011-05-26 16:23:49 -03001083/* Advertising report event types */
1084#define ADV_IND 0x00
1085#define ADV_DIRECT_IND 0x01
1086#define ADV_SCAN_IND 0x02
1087#define ADV_NONCONN_IND 0x03
1088#define ADV_SCAN_RSP 0x04
1089
1090#define ADDR_LE_DEV_PUBLIC 0x00
1091#define ADDR_LE_DEV_RANDOM 0x01
1092
1093#define HCI_EV_LE_ADVERTISING_REPORT 0x02
1094struct hci_ev_le_advertising_info {
1095 __u8 evt_type;
1096 __u8 bdaddr_type;
1097 bdaddr_t bdaddr;
1098 __u8 length;
1099 __u8 data[0];
1100} __packed;
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/* Internal events generated by Bluetooth stack */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001103#define HCI_EV_STACK_INTERNAL 0xfd
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104struct hci_ev_stack_internal {
1105 __u16 type;
1106 __u8 data[0];
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001107} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001109#define HCI_EV_SI_DEVICE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110struct hci_ev_si_device {
1111 __u16 event;
1112 __u16 dev_id;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001113} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115#define HCI_EV_SI_SECURITY 0x02
1116struct hci_ev_si_security {
1117 __u16 event;
1118 __u16 proto;
1119 __u16 subproto;
1120 __u8 incoming;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001121} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123/* ---- HCI Packet structures ---- */
1124#define HCI_COMMAND_HDR_SIZE 3
1125#define HCI_EVENT_HDR_SIZE 2
1126#define HCI_ACL_HDR_SIZE 4
1127#define HCI_SCO_HDR_SIZE 3
1128
1129struct hci_command_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001130 __le16 opcode; /* OCF & OGF */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001131 __u8 plen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001132} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134struct hci_event_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001135 __u8 evt;
1136 __u8 plen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001137} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139struct hci_acl_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001140 __le16 handle; /* Handle & Flags(PB, BC) */
1141 __le16 dlen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001142} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144struct hci_sco_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001145 __le16 handle;
1146 __u8 dlen;
Gustavo F. Padovan66c853c2010-07-19 02:00:13 -03001147} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001149#include <linux/skbuff.h>
1150static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
1151{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001152 return (struct hci_event_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001153}
1154
1155static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
1156{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001157 return (struct hci_acl_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001158}
1159
1160static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
1161{
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001162 return (struct hci_sco_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001163}
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -03001164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165/* Command opcode pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001166#define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167#define hci_opcode_ogf(op) (op >> 10)
1168#define hci_opcode_ocf(op) (op & 0x03ff)
1169
1170/* ACL handle and flags pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -08001171#define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#define hci_handle(h) (h & 0x0fff)
1173#define hci_flags(h) (h >> 12)
1174
1175/* ---- HCI Sockets ---- */
1176
1177/* Socket options */
1178#define HCI_DATA_DIR 1
1179#define HCI_FILTER 2
1180#define HCI_TIME_STAMP 3
1181
1182/* CMSG flags */
1183#define HCI_CMSG_DIR 0x0001
1184#define HCI_CMSG_TSTAMP 0x0002
1185
1186struct sockaddr_hci {
1187 sa_family_t hci_family;
1188 unsigned short hci_dev;
Johan Hedbergc02178d2010-12-08 00:21:05 +02001189 unsigned short hci_channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190};
1191#define HCI_DEV_NONE 0xffff
1192
Johan Hedbergc02178d2010-12-08 00:21:05 +02001193#define HCI_CHANNEL_RAW 0
1194#define HCI_CHANNEL_CONTROL 1
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196struct hci_filter {
1197 unsigned long type_mask;
1198 unsigned long event_mask[2];
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001199 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200};
1201
1202struct hci_ufilter {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001203 __u32 type_mask;
1204 __u32 event_mask[2];
1205 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206};
1207
1208#define HCI_FLT_TYPE_BITS 31
1209#define HCI_FLT_EVENT_BITS 63
1210#define HCI_FLT_OGF_BITS 63
1211#define HCI_FLT_OCF_BITS 127
1212
1213/* ---- HCI Ioctl requests structures ---- */
1214struct hci_dev_stats {
1215 __u32 err_rx;
1216 __u32 err_tx;
1217 __u32 cmd_tx;
1218 __u32 evt_rx;
1219 __u32 acl_tx;
1220 __u32 acl_rx;
1221 __u32 sco_tx;
1222 __u32 sco_rx;
1223 __u32 byte_rx;
1224 __u32 byte_tx;
1225};
1226
1227struct hci_dev_info {
1228 __u16 dev_id;
1229 char name[8];
1230
1231 bdaddr_t bdaddr;
1232
1233 __u32 flags;
1234 __u8 type;
1235
1236 __u8 features[8];
1237
1238 __u32 pkt_type;
1239 __u32 link_policy;
1240 __u32 link_mode;
1241
1242 __u16 acl_mtu;
1243 __u16 acl_pkts;
1244 __u16 sco_mtu;
1245 __u16 sco_pkts;
1246
1247 struct hci_dev_stats stat;
1248};
1249
1250struct hci_conn_info {
1251 __u16 handle;
1252 bdaddr_t bdaddr;
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001253 __u8 type;
1254 __u8 out;
1255 __u16 state;
1256 __u32 link_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257};
1258
1259struct hci_dev_req {
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001260 __u16 dev_id;
1261 __u32 dev_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262};
1263
1264struct hci_dev_list_req {
1265 __u16 dev_num;
1266 struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
1267};
1268
1269struct hci_conn_list_req {
1270 __u16 dev_id;
1271 __u16 conn_num;
1272 struct hci_conn_info conn_info[0];
1273};
1274
1275struct hci_conn_info_req {
1276 bdaddr_t bdaddr;
1277 __u8 type;
1278 struct hci_conn_info conn_info[0];
1279};
1280
Marcel Holtmann40be4922008-07-14 20:13:50 +02001281struct hci_auth_info_req {
1282 bdaddr_t bdaddr;
1283 __u8 type;
1284};
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286struct hci_inquiry_req {
1287 __u16 dev_id;
1288 __u16 flags;
1289 __u8 lap[3];
1290 __u8 length;
1291 __u8 num_rsp;
1292};
1293#define IREQ_CACHE_FLUSH 0x0001
1294
1295#endif /* __HCI_H */