Bluetooth: Add support for SMP Invalid Parameters error code
[deliverable/linux.git] / include / net / bluetooth / hci.h
CommitLineData
be21871f 1/*
1da177e4
LT
2 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
be21871f
AE
15 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
1da177e4
LT
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
be21871f
AE
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
1da177e4
LT
22 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
9b3b4460 33#define HCI_LINK_KEY_SIZE 16
523e93cd 34#define HCI_AMP_LINK_KEY_SIZE (2 * HCI_LINK_KEY_SIZE)
9b3b4460 35
903e4541
AE
36#define HCI_MAX_AMP_ASSOC_SIZE 672
37
7d1dab49
DP
38#define HCI_MAX_CSB_DATA_SIZE 252
39
1da177e4
LT
40/* HCI dev events */
41#define HCI_DEV_REG 1
42#define HCI_DEV_UNREG 2
43#define HCI_DEV_UP 3
44#define HCI_DEV_DOWN 4
45#define HCI_DEV_SUSPEND 5
46#define HCI_DEV_RESUME 6
47
48/* HCI notify events */
49#define HCI_NOTIFY_CONN_ADD 1
50#define HCI_NOTIFY_CONN_DEL 2
51#define HCI_NOTIFY_VOICE_SETTING 3
52
c13854ce 53/* HCI bus types */
0ac53939 54#define HCI_VIRTUAL 0
1da177e4
LT
55#define HCI_USB 1
56#define HCI_PCCARD 2
57#define HCI_UART 3
58#define HCI_RS232 4
59#define HCI_PCI 5
0ac53939 60#define HCI_SDIO 6
1da177e4 61
943da25d
MH
62/* HCI controller types */
63#define HCI_BREDR 0x00
8f1e1742 64#define HCI_AMP 0x01
943da25d 65
8598d064 66/* First BR/EDR Controller shall have ID = 0 */
6ed971ca 67#define AMP_ID_BREDR 0x00
8598d064 68
7c13823d
MH
69/* AMP controller types */
70#define AMP_TYPE_BREDR 0x00
71#define AMP_TYPE_80211 0x01
72
ab846ec4 73/* AMP controller status */
536619e8
MH
74#define AMP_STATUS_POWERED_DOWN 0x00
75#define AMP_STATUS_BLUETOOTH_ONLY 0x01
76#define AMP_STATUS_NO_CAPACITY 0x02
77#define AMP_STATUS_LOW_CAPACITY 0x03
78#define AMP_STATUS_MEDIUM_CAPACITY 0x04
79#define AMP_STATUS_HIGH_CAPACITY 0x05
80#define AMP_STATUS_FULL_CAPACITY 0x06
ab846ec4 81
1da177e4
LT
82/* HCI device quirks */
83enum {
a6c511c6 84 HCI_QUIRK_RESET_ON_CLOSE,
da1f5198 85 HCI_QUIRK_RAW_DEVICE,
f9f462fa
MH
86 HCI_QUIRK_FIXUP_BUFFER_SIZE,
87 HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1da177e4
LT
88};
89
90/* HCI device flags */
91enum {
92 HCI_UP,
93 HCI_INIT,
94 HCI_RUNNING,
95
96 HCI_PSCAN,
97 HCI_ISCAN,
98 HCI_AUTH,
99 HCI_ENCRYPT,
100 HCI_INQUIRY,
101
102 HCI_RAW,
ab81cbf9 103
10572132 104 HCI_RESET,
1da177e4
LT
105};
106
d23264a8
AG
107/*
108 * BR/EDR and/or LE controller flags: the flags defined here should represent
109 * states from the controller.
110 */
111enum {
a8b2d5c2
JH
112 HCI_SETUP,
113 HCI_AUTO_OFF,
5e130367 114 HCI_RFKILLED,
a8b2d5c2
JH
115 HCI_MGMT,
116 HCI_PAIRABLE,
117 HCI_SERVICE_CACHE,
a8b2d5c2 118 HCI_DEBUG_KEYS,
4b4148e9 119 HCI_DUT_MODE,
5afeac14 120 HCI_FORCE_SC,
b32bba6c 121 HCI_FORCE_STATIC_ADDR,
94324962 122 HCI_UNREGISTER,
0736cfa8 123 HCI_USER_CHANNEL,
a8b2d5c2 124
d23264a8 125 HCI_LE_SCAN,
84bde9d6 126 HCI_SSP_ENABLED,
e98d2ce2 127 HCI_SC_ENABLED,
134c2a89 128 HCI_SC_ONLY,
863efaf2 129 HCI_PRIVACY,
d6bfd59c 130 HCI_RPA_EXPIRED,
41edf160 131 HCI_RPA_RESOLVING,
6d80dfd0 132 HCI_HS_ENABLED,
06199cf8 133 HCI_LE_ENABLED,
f3d3444a 134 HCI_ADVERTISING,
5e5282bb
JH
135 HCI_CONNECTABLE,
136 HCI_DISCOVERABLE,
6acd7db4 137 HCI_LIMITED_DISCOVERABLE,
47990ea0 138 HCI_LINK_SECURITY,
21693c15 139 HCI_PERIODIC_INQ,
1a4d3c4b 140 HCI_FAST_CONNECTABLE,
56f87901 141 HCI_BREDR_ENABLED,
18722c24 142 HCI_6LOWPAN_ENABLED,
81ad6fd9 143 HCI_LE_SCAN_INTERRUPTED,
d23264a8
AG
144};
145
2cc6fb00
JH
146/* A mask for the flags that are supposed to remain when a reset happens
147 * or the HCI device is closed.
148 */
1a4d3c4b
JH
149#define HCI_PERSISTENT_MASK (BIT(HCI_LE_SCAN) | BIT(HCI_PERIODIC_INQ) | \
150 BIT(HCI_FAST_CONNECTABLE))
2cc6fb00 151
1da177e4
LT
152/* HCI ioctl defines */
153#define HCIDEVUP _IOW('H', 201, int)
154#define HCIDEVDOWN _IOW('H', 202, int)
155#define HCIDEVRESET _IOW('H', 203, int)
156#define HCIDEVRESTAT _IOW('H', 204, int)
157
158#define HCIGETDEVLIST _IOR('H', 210, int)
159#define HCIGETDEVINFO _IOR('H', 211, int)
160#define HCIGETCONNLIST _IOR('H', 212, int)
161#define HCIGETCONNINFO _IOR('H', 213, int)
40be492f 162#define HCIGETAUTHINFO _IOR('H', 215, int)
1da177e4
LT
163
164#define HCISETRAW _IOW('H', 220, int)
165#define HCISETSCAN _IOW('H', 221, int)
166#define HCISETAUTH _IOW('H', 222, int)
167#define HCISETENCRYPT _IOW('H', 223, int)
168#define HCISETPTYPE _IOW('H', 224, int)
169#define HCISETLINKPOL _IOW('H', 225, int)
170#define HCISETLINKMODE _IOW('H', 226, int)
171#define HCISETACLMTU _IOW('H', 227, int)
172#define HCISETSCOMTU _IOW('H', 228, int)
173
f0358568
JH
174#define HCIBLOCKADDR _IOW('H', 230, int)
175#define HCIUNBLOCKADDR _IOW('H', 231, int)
176
1da177e4
LT
177#define HCIINQUIRY _IOR('H', 240, int)
178
179/* HCI timeouts */
5f246e89
AE
180#define HCI_DISCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
181#define HCI_PAIRING_TIMEOUT msecs_to_jiffies(60000) /* 60 seconds */
182#define HCI_INIT_TIMEOUT msecs_to_jiffies(10000) /* 10 seconds */
d1244adc 183#define HCI_CMD_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
5f246e89 184#define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */
9345d40c 185#define HCI_AUTO_OFF_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
a3172b7e 186#define HCI_POWER_OFF_TIMEOUT msecs_to_jiffies(5000) /* 5 seconds */
9489eca4 187#define HCI_LE_CONN_TIMEOUT msecs_to_jiffies(20000) /* 20 seconds */
1da177e4 188
5b7f9909 189/* HCI data types */
1da177e4
LT
190#define HCI_COMMAND_PKT 0x01
191#define HCI_ACLDATA_PKT 0x02
192#define HCI_SCODATA_PKT 0x03
193#define HCI_EVENT_PKT 0x04
194#define HCI_VENDOR_PKT 0xff
195
5b7f9909 196/* HCI packet types */
1da177e4
LT
197#define HCI_DM1 0x0008
198#define HCI_DM3 0x0400
199#define HCI_DM5 0x4000
200#define HCI_DH1 0x0010
201#define HCI_DH3 0x0800
202#define HCI_DH5 0x8000
203
204#define HCI_HV1 0x0020
205#define HCI_HV2 0x0040
206#define HCI_HV3 0x0080
207
208#define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3)
209#define ACL_PTYPE_MASK (~SCO_PTYPE_MASK)
210
5b7f9909
MH
211/* eSCO packet types */
212#define ESCO_HV1 0x0001
213#define ESCO_HV2 0x0002
214#define ESCO_HV3 0x0004
215#define ESCO_EV3 0x0008
216#define ESCO_EV4 0x0010
217#define ESCO_EV5 0x0020
efc7688b
MH
218#define ESCO_2EV3 0x0040
219#define ESCO_3EV3 0x0080
220#define ESCO_2EV5 0x0100
221#define ESCO_3EV5 0x0200
5b7f9909 222
a8746417 223#define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
efc7688b 224#define EDR_ESCO_MASK (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
a8746417 225
1da177e4 226/* ACL flags */
e702112f 227#define ACL_START_NO_FLUSH 0x00
1da177e4
LT
228#define ACL_CONT 0x01
229#define ACL_START 0x02
d73a0988 230#define ACL_COMPLETE 0x03
1da177e4
LT
231#define ACL_ACTIVE_BCAST 0x04
232#define ACL_PICO_BCAST 0x08
233
234/* Baseband links */
235#define SCO_LINK 0x00
236#define ACL_LINK 0x01
5b7f9909 237#define ESCO_LINK 0x02
fcd89c09
VT
238/* Low Energy links do not have defined link type. Use invented one */
239#define LE_LINK 0x80
3161ae1c 240#define AMP_LINK 0x81
1da177e4
LT
241
242/* LMP features */
243#define LMP_3SLOT 0x01
244#define LMP_5SLOT 0x02
245#define LMP_ENCRYPT 0x04
246#define LMP_SOFFSET 0x08
247#define LMP_TACCURACY 0x10
248#define LMP_RSWITCH 0x20
249#define LMP_HOLD 0x40
04837f64 250#define LMP_SNIFF 0x80
1da177e4
LT
251
252#define LMP_PARK 0x01
253#define LMP_RSSI 0x02
254#define LMP_QUALITY 0x04
255#define LMP_SCO 0x08
256#define LMP_HV2 0x10
257#define LMP_HV3 0x20
258#define LMP_ULAW 0x40
259#define LMP_ALAW 0x80
260
261#define LMP_CVSD 0x01
262#define LMP_PSCHEME 0x02
263#define LMP_PCONTROL 0x04
07a5c61e 264#define LMP_TRANSPARENT 0x08
1da177e4 265
d5859e22 266#define LMP_RSSI_INQ 0x40
5b7f9909
MH
267#define LMP_ESCO 0x80
268
269#define LMP_EV4 0x01
270#define LMP_EV5 0x02
69ab39ea 271#define LMP_NO_BREDR 0x20
d5859e22 272#define LMP_LE 0x40
5b7f9909 273
04837f64 274#define LMP_SNIFF_SUBR 0x02
d5859e22 275#define LMP_PAUSE_ENC 0x04
efc7688b
MH
276#define LMP_EDR_ESCO_2M 0x20
277#define LMP_EDR_ESCO_3M 0x40
278#define LMP_EDR_3S_ESCO 0x80
04837f64 279
d5859e22 280#define LMP_EXT_INQ 0x01
e6100a25 281#define LMP_SIMUL_LE_BR 0x02
769be974 282#define LMP_SIMPLE_PAIR 0x08
e702112f 283#define LMP_NO_FLUSH 0x40
769be974 284
d5859e22
JH
285#define LMP_LSTO 0x01
286#define LMP_INQ_TX_PWR 0x02
971e3a4b 287#define LMP_EXTFEATURES 0x80
d5859e22 288
eead27da 289/* Extended LMP features */
53b834d2
MH
290#define LMP_CSB_MASTER 0x01
291#define LMP_CSB_SLAVE 0x02
292#define LMP_SYNC_TRAIN 0x04
293#define LMP_SYNC_SCAN 0x08
294
d5991585
MH
295#define LMP_SC 0x01
296#define LMP_PING 0x02
297
53b834d2 298/* Host features */
cc2c04ec
JH
299#define LMP_HOST_SSP 0x01
300#define LMP_HOST_LE 0x02
301#define LMP_HOST_LE_BREDR 0x04
d5991585 302#define LMP_HOST_SC 0x08
eead27da 303
04837f64
MH
304/* Connection modes */
305#define HCI_CM_ACTIVE 0x0000
306#define HCI_CM_HOLD 0x0001
307#define HCI_CM_SNIFF 0x0002
308#define HCI_CM_PARK 0x0003
309
1da177e4
LT
310/* Link policies */
311#define HCI_LP_RSWITCH 0x0001
312#define HCI_LP_HOLD 0x0002
313#define HCI_LP_SNIFF 0x0004
314#define HCI_LP_PARK 0x0008
315
04837f64 316/* Link modes */
1da177e4
LT
317#define HCI_LM_ACCEPT 0x8000
318#define HCI_LM_MASTER 0x0001
319#define HCI_LM_AUTH 0x0002
320#define HCI_LM_ENCRYPT 0x0004
321#define HCI_LM_TRUSTED 0x0008
322#define HCI_LM_RELIABLE 0x0010
323#define HCI_LM_SECURE 0x0020
7b5a9241 324#define HCI_LM_FIPS 0x0040
1da177e4 325
40be492f
MH
326/* Authentication types */
327#define HCI_AT_NO_BONDING 0x00
328#define HCI_AT_NO_BONDING_MITM 0x01
329#define HCI_AT_DEDICATED_BONDING 0x02
330#define HCI_AT_DEDICATED_BONDING_MITM 0x03
331#define HCI_AT_GENERAL_BONDING 0x04
332#define HCI_AT_GENERAL_BONDING_MITM 0x05
333
a77b15a6
MA
334/* I/O capabilities */
335#define HCI_IO_DISPLAY_ONLY 0x00
336#define HCI_IO_DISPLAY_YESNO 0x01
337#define HCI_IO_KEYBOARD_ONLY 0x02
338#define HCI_IO_NO_INPUT_OUTPUT 0x03
339
b6020ba0
WR
340/* Link Key types */
341#define HCI_LK_COMBINATION 0x00
342#define HCI_LK_LOCAL_UNIT 0x01
343#define HCI_LK_REMOTE_UNIT 0x02
344#define HCI_LK_DEBUG_COMBINATION 0x03
11015c79
MH
345#define HCI_LK_UNAUTH_COMBINATION_P192 0x04
346#define HCI_LK_AUTH_COMBINATION_P192 0x05
b6020ba0 347#define HCI_LK_CHANGED_COMBINATION 0x06
11015c79
MH
348#define HCI_LK_UNAUTH_COMBINATION_P256 0x07
349#define HCI_LK_AUTH_COMBINATION_P256 0x08
b899efaf
VCG
350/* The spec doesn't define types for SMP keys, the _MASTER suffix is implied */
351#define HCI_SMP_STK 0x80
352#define HCI_SMP_STK_SLAVE 0x81
353#define HCI_SMP_LTK 0x82
354#define HCI_SMP_LTK_SLAVE 0x83
b6020ba0 355
424ef943
MH
356/* Long Term Key types */
357#define HCI_LTK_UNAUTH 0x00
358#define HCI_LTK_AUTH 0x01
359
9f5a0d7b
AE
360/* ---- HCI Error Codes ---- */
361#define HCI_ERROR_AUTH_FAILURE 0x05
2acf3d90 362#define HCI_ERROR_MEMORY_EXCEEDED 0x07
cdcba7c6 363#define HCI_ERROR_CONNECTION_TIMEOUT 0x08
9f5a0d7b
AE
364#define HCI_ERROR_REJ_BAD_ADDR 0x0f
365#define HCI_ERROR_REMOTE_USER_TERM 0x13
cdcba7c6
MA
366#define HCI_ERROR_REMOTE_LOW_RESOURCES 0x14
367#define HCI_ERROR_REMOTE_POWER_OFF 0x15
9f5a0d7b
AE
368#define HCI_ERROR_LOCAL_HOST_TERM 0x16
369#define HCI_ERROR_PAIRING_NOT_ALLOWED 0x18
3c857757 370#define HCI_ERROR_ADVERTISING_TIMEOUT 0x3c
9f5a0d7b 371
2455a3ea
AE
372/* Flow control modes */
373#define HCI_FLOW_CTL_MODE_PACKET_BASED 0x00
374#define HCI_FLOW_CTL_MODE_BLOCK_BASED 0x01
375
bbaf444a
JH
376/* The core spec defines 127 as the "not available" value */
377#define HCI_TX_POWER_INVALID 127
378
32748db0
JH
379/* Extended Inquiry Response field types */
380#define EIR_FLAGS 0x01 /* flags */
381#define EIR_UUID16_SOME 0x02 /* 16-bit UUID, more available */
382#define EIR_UUID16_ALL 0x03 /* 16-bit UUID, all listed */
383#define EIR_UUID32_SOME 0x04 /* 32-bit UUID, more available */
384#define EIR_UUID32_ALL 0x05 /* 32-bit UUID, all listed */
385#define EIR_UUID128_SOME 0x06 /* 128-bit UUID, more available */
386#define EIR_UUID128_ALL 0x07 /* 128-bit UUID, all listed */
387#define EIR_NAME_SHORT 0x08 /* shortened local name */
388#define EIR_NAME_COMPLETE 0x09 /* complete local name */
389#define EIR_TX_POWER 0x0A /* transmit power level */
9ec9fc8a
JH
390#define EIR_CLASS_OF_DEV 0x0D /* Class of Device */
391#define EIR_SSP_HASH_C 0x0E /* Simple Pairing Hash C */
392#define EIR_SSP_RAND_R 0x0F /* Simple Pairing Randomizer R */
32748db0
JH
393#define EIR_DEVICE_ID 0x10 /* device ID */
394
3f0f524b
JH
395/* Low Energy Advertising Flags */
396#define LE_AD_LIMITED 0x01 /* Limited Discoverable */
397#define LE_AD_GENERAL 0x02 /* General Discoverable */
398#define LE_AD_NO_BREDR 0x04 /* BR/EDR not supported */
399#define LE_AD_SIM_LE_BREDR_CTRL 0x08 /* Simultaneous LE & BR/EDR Controller */
400#define LE_AD_SIM_LE_BREDR_HOST 0x10 /* Simultaneous LE & BR/EDR Host */
401
1da177e4 402/* ----- HCI Commands ---- */
6bd32326
VT
403#define HCI_OP_NOP 0x0000
404
a9de9248
MH
405#define HCI_OP_INQUIRY 0x0401
406struct hci_cp_inquiry {
407 __u8 lap[3];
408 __u8 length;
409 __u8 num_rsp;
66c853cc 410} __packed;
1da177e4 411
a9de9248 412#define HCI_OP_INQUIRY_CANCEL 0x0402
1da177e4 413
79d6e068
AG
414#define HCI_OP_PERIODIC_INQ 0x0403
415
a9de9248 416#define HCI_OP_EXIT_PERIODIC_INQ 0x0404
6ac59344 417
a9de9248 418#define HCI_OP_CREATE_CONN 0x0405
1da177e4
LT
419struct hci_cp_create_conn {
420 bdaddr_t bdaddr;
1ebb9252 421 __le16 pkt_type;
1da177e4
LT
422 __u8 pscan_rep_mode;
423 __u8 pscan_mode;
1ebb9252 424 __le16 clock_offset;
1da177e4 425 __u8 role_switch;
66c853cc 426} __packed;
1da177e4 427
a9de9248 428#define HCI_OP_DISCONNECT 0x0406
1da177e4 429struct hci_cp_disconnect {
1ebb9252 430 __le16 handle;
1da177e4 431 __u8 reason;
66c853cc 432} __packed;
1da177e4 433
a9de9248 434#define HCI_OP_ADD_SCO 0x0407
1da177e4 435struct hci_cp_add_sco {
1ebb9252
MH
436 __le16 handle;
437 __le16 pkt_type;
66c853cc 438} __packed;
1da177e4 439
a9de9248
MH
440#define HCI_OP_CREATE_CONN_CANCEL 0x0408
441struct hci_cp_create_conn_cancel {
442 bdaddr_t bdaddr;
66c853cc 443} __packed;
1da177e4 444
a9de9248
MH
445#define HCI_OP_ACCEPT_CONN_REQ 0x0409
446struct hci_cp_accept_conn_req {
447 bdaddr_t bdaddr;
448 __u8 role;
66c853cc 449} __packed;
1da177e4 450
a9de9248
MH
451#define HCI_OP_REJECT_CONN_REQ 0x040a
452struct hci_cp_reject_conn_req {
453 bdaddr_t bdaddr;
454 __u8 reason;
66c853cc 455} __packed;
defc761b 456
a9de9248 457#define HCI_OP_LINK_KEY_REPLY 0x040b
1da177e4
LT
458struct hci_cp_link_key_reply {
459 bdaddr_t bdaddr;
9b3b4460 460 __u8 link_key[HCI_LINK_KEY_SIZE];
66c853cc 461} __packed;
1da177e4 462
a9de9248 463#define HCI_OP_LINK_KEY_NEG_REPLY 0x040c
1da177e4
LT
464struct hci_cp_link_key_neg_reply {
465 bdaddr_t bdaddr;
66c853cc 466} __packed;
1da177e4 467
a9de9248 468#define HCI_OP_PIN_CODE_REPLY 0x040d
1da177e4
LT
469struct hci_cp_pin_code_reply {
470 bdaddr_t bdaddr;
471 __u8 pin_len;
472 __u8 pin_code[16];
66c853cc 473} __packed;
980e1a53
JH
474struct hci_rp_pin_code_reply {
475 __u8 status;
476 bdaddr_t bdaddr;
477} __packed;
1da177e4 478
a9de9248 479#define HCI_OP_PIN_CODE_NEG_REPLY 0x040e
1da177e4
LT
480struct hci_cp_pin_code_neg_reply {
481 bdaddr_t bdaddr;
66c853cc 482} __packed;
980e1a53
JH
483struct hci_rp_pin_code_neg_reply {
484 __u8 status;
485 bdaddr_t bdaddr;
486} __packed;
1da177e4 487
a9de9248 488#define HCI_OP_CHANGE_CONN_PTYPE 0x040f
1da177e4 489struct hci_cp_change_conn_ptype {
1ebb9252
MH
490 __le16 handle;
491 __le16 pkt_type;
66c853cc 492} __packed;
1da177e4 493
a9de9248 494#define HCI_OP_AUTH_REQUESTED 0x0411
1da177e4 495struct hci_cp_auth_requested {
1ebb9252 496 __le16 handle;
66c853cc 497} __packed;
1da177e4 498
a9de9248 499#define HCI_OP_SET_CONN_ENCRYPT 0x0413
1da177e4 500struct hci_cp_set_conn_encrypt {
1ebb9252 501 __le16 handle;
1da177e4 502 __u8 encrypt;
66c853cc 503} __packed;
1da177e4 504
a9de9248 505#define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415
1da177e4 506struct hci_cp_change_conn_link_key {
1ebb9252 507 __le16 handle;
66c853cc 508} __packed;
1da177e4 509
a9de9248
MH
510#define HCI_OP_REMOTE_NAME_REQ 0x0419
511struct hci_cp_remote_name_req {
512 bdaddr_t bdaddr;
513 __u8 pscan_rep_mode;
514 __u8 pscan_mode;
515 __le16 clock_offset;
66c853cc 516} __packed;
a9de9248
MH
517
518#define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a
519struct hci_cp_remote_name_req_cancel {
520 bdaddr_t bdaddr;
66c853cc 521} __packed;
a9de9248
MH
522
523#define HCI_OP_READ_REMOTE_FEATURES 0x041b
04837f64 524struct hci_cp_read_remote_features {
1ebb9252 525 __le16 handle;
66c853cc 526} __packed;
1da177e4 527
a9de9248
MH
528#define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
529struct hci_cp_read_remote_ext_features {
530 __le16 handle;
531 __u8 page;
66c853cc 532} __packed;
a9de9248
MH
533
534#define HCI_OP_READ_REMOTE_VERSION 0x041d
04837f64 535struct hci_cp_read_remote_version {
1ebb9252 536 __le16 handle;
66c853cc 537} __packed;
1da177e4 538
a9de9248
MH
539#define HCI_OP_SETUP_SYNC_CONN 0x0428
540struct hci_cp_setup_sync_conn {
541 __le16 handle;
542 __le32 tx_bandwidth;
543 __le32 rx_bandwidth;
544 __le16 max_latency;
545 __le16 voice_setting;
546 __u8 retrans_effort;
547 __le16 pkt_type;
66c853cc 548} __packed;
04837f64 549
a9de9248
MH
550#define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429
551struct hci_cp_accept_sync_conn_req {
552 bdaddr_t bdaddr;
553 __le32 tx_bandwidth;
554 __le32 rx_bandwidth;
555 __le16 max_latency;
556 __le16 content_format;
557 __u8 retrans_effort;
558 __le16 pkt_type;
66c853cc 559} __packed;
a9de9248
MH
560
561#define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a
562struct hci_cp_reject_sync_conn_req {
563 bdaddr_t bdaddr;
564 __u8 reason;
66c853cc 565} __packed;
a9de9248 566
17fa4b9d
JH
567#define HCI_OP_IO_CAPABILITY_REPLY 0x042b
568struct hci_cp_io_capability_reply {
569 bdaddr_t bdaddr;
570 __u8 capability;
571 __u8 oob_data;
572 __u8 authentication;
573} __packed;
574
a5c29683
JH
575#define HCI_OP_USER_CONFIRM_REPLY 0x042c
576struct hci_cp_user_confirm_reply {
577 bdaddr_t bdaddr;
578} __packed;
579struct hci_rp_user_confirm_reply {
580 __u8 status;
581 bdaddr_t bdaddr;
582} __packed;
583
584#define HCI_OP_USER_CONFIRM_NEG_REPLY 0x042d
585
9ad4019a
BG
586#define HCI_OP_USER_PASSKEY_REPLY 0x042e
587struct hci_cp_user_passkey_reply {
588 bdaddr_t bdaddr;
589 __le32 passkey;
590} __packed;
591
592#define HCI_OP_USER_PASSKEY_NEG_REPLY 0x042f
593
2763eda6
SJ
594#define HCI_OP_REMOTE_OOB_DATA_REPLY 0x0430
595struct hci_cp_remote_oob_data_reply {
596 bdaddr_t bdaddr;
597 __u8 hash[16];
598 __u8 randomizer[16];
599} __packed;
600
601#define HCI_OP_REMOTE_OOB_DATA_NEG_REPLY 0x0433
602struct hci_cp_remote_oob_data_neg_reply {
603 bdaddr_t bdaddr;
604} __packed;
605
03b555e1
JH
606#define HCI_OP_IO_CAPABILITY_NEG_REPLY 0x0434
607struct hci_cp_io_capability_neg_reply {
608 bdaddr_t bdaddr;
609 __u8 reason;
610} __packed;
611
523e93cd
AE
612#define HCI_OP_CREATE_PHY_LINK 0x0435
613struct hci_cp_create_phy_link {
614 __u8 phy_handle;
615 __u8 key_len;
616 __u8 key_type;
617 __u8 key[HCI_AMP_LINK_KEY_SIZE];
618} __packed;
619
620#define HCI_OP_ACCEPT_PHY_LINK 0x0436
621struct hci_cp_accept_phy_link {
622 __u8 phy_handle;
623 __u8 key_len;
624 __u8 key_type;
625 __u8 key[HCI_AMP_LINK_KEY_SIZE];
626} __packed;
627
b078b564 628#define HCI_OP_DISCONN_PHY_LINK 0x0437
523e93cd
AE
629struct hci_cp_disconn_phy_link {
630 __u8 phy_handle;
631 __u8 reason;
632} __packed;
633
b078b564
AE
634struct ext_flow_spec {
635 __u8 id;
636 __u8 stype;
637 __le16 msdu;
638 __le32 sdu_itime;
639 __le32 acc_lat;
640 __le32 flush_to;
641} __packed;
642
643#define HCI_OP_CREATE_LOGICAL_LINK 0x0438
644#define HCI_OP_ACCEPT_LOGICAL_LINK 0x0439
645struct hci_cp_create_accept_logical_link {
646 __u8 phy_handle;
647 struct ext_flow_spec tx_flow_spec;
648 struct ext_flow_spec rx_flow_spec;
649} __packed;
650
651#define HCI_OP_DISCONN_LOGICAL_LINK 0x043a
652struct hci_cp_disconn_logical_link {
653 __le16 log_handle;
654} __packed;
655
656#define HCI_OP_LOGICAL_LINK_CANCEL 0x043b
657struct hci_cp_logical_link_cancel {
658 __u8 phy_handle;
659 __u8 flow_spec_id;
660} __packed;
661
662struct hci_rp_logical_link_cancel {
663 __u8 status;
664 __u8 phy_handle;
665 __u8 flow_spec_id;
666} __packed;
667
8c9a041b
DP
668#define HCI_OP_SET_CSB 0x0441
669struct hci_cp_set_csb {
670 __u8 enable;
671 __u8 lt_addr;
672 __u8 lpo_allowed;
673 __le16 packet_type;
674 __le16 interval_min;
675 __le16 interval_max;
676 __le16 csb_sv_tout;
677} __packed;
678struct hci_rp_set_csb {
679 __u8 status;
680 __u8 lt_addr;
681 __le16 interval;
682} __packed;
683
cefded98
DP
684#define HCI_OP_START_SYNC_TRAIN 0x0443
685
e2f99131
MH
686#define HCI_OP_REMOTE_OOB_EXT_DATA_REPLY 0x0445
687struct hci_cp_remote_oob_ext_data_reply {
688 bdaddr_t bdaddr;
689 __u8 hash192[16];
690 __u8 randomizer192[16];
691 __u8 hash256[16];
692 __u8 randomizer256[16];
693} __packed;
694
a9de9248 695#define HCI_OP_SNIFF_MODE 0x0803
04837f64
MH
696struct hci_cp_sniff_mode {
697 __le16 handle;
698 __le16 max_interval;
699 __le16 min_interval;
700 __le16 attempt;
701 __le16 timeout;
66c853cc 702} __packed;
04837f64 703
a9de9248 704#define HCI_OP_EXIT_SNIFF_MODE 0x0804
04837f64
MH
705struct hci_cp_exit_sniff_mode {
706 __le16 handle;
66c853cc 707} __packed;
04837f64 708
a9de9248 709#define HCI_OP_ROLE_DISCOVERY 0x0809
1da177e4 710struct hci_cp_role_discovery {
1ebb9252 711 __le16 handle;
66c853cc 712} __packed;
1da177e4
LT
713struct hci_rp_role_discovery {
714 __u8 status;
1ebb9252 715 __le16 handle;
1da177e4 716 __u8 role;
66c853cc 717} __packed;
1da177e4 718
a9de9248
MH
719#define HCI_OP_SWITCH_ROLE 0x080b
720struct hci_cp_switch_role {
721 bdaddr_t bdaddr;
722 __u8 role;
66c853cc 723} __packed;
a9de9248
MH
724
725#define HCI_OP_READ_LINK_POLICY 0x080c
1da177e4 726struct hci_cp_read_link_policy {
1ebb9252 727 __le16 handle;
66c853cc 728} __packed;
1da177e4
LT
729struct hci_rp_read_link_policy {
730 __u8 status;
1ebb9252
MH
731 __le16 handle;
732 __le16 policy;
66c853cc 733} __packed;
1da177e4 734
a9de9248 735#define HCI_OP_WRITE_LINK_POLICY 0x080d
1da177e4 736struct hci_cp_write_link_policy {
1ebb9252
MH
737 __le16 handle;
738 __le16 policy;
66c853cc 739} __packed;
1da177e4
LT
740struct hci_rp_write_link_policy {
741 __u8 status;
1ebb9252 742 __le16 handle;
66c853cc 743} __packed;
e4e8e37c
MH
744
745#define HCI_OP_READ_DEF_LINK_POLICY 0x080e
746struct hci_rp_read_def_link_policy {
747 __u8 status;
748 __le16 policy;
66c853cc 749} __packed;
e4e8e37c
MH
750
751#define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f
752struct hci_cp_write_def_link_policy {
753 __le16 policy;
66c853cc 754} __packed;
1da177e4 755
a9de9248 756#define HCI_OP_SNIFF_SUBRATE 0x0811
04837f64
MH
757struct hci_cp_sniff_subrate {
758 __le16 handle;
759 __le16 max_latency;
760 __le16 min_remote_timeout;
761 __le16 min_local_timeout;
66c853cc 762} __packed;
04837f64 763
a9de9248 764#define HCI_OP_SET_EVENT_MASK 0x0c01
1da177e4 765
a9de9248 766#define HCI_OP_RESET 0x0c03
1da177e4 767
a9de9248
MH
768#define HCI_OP_SET_EVENT_FLT 0x0c05
769struct hci_cp_set_event_flt {
770 __u8 flt_type;
771 __u8 cond_type;
772 __u8 condition[0];
66c853cc 773} __packed;
1da177e4 774
a9de9248
MH
775/* Filter types */
776#define HCI_FLT_CLEAR_ALL 0x00
777#define HCI_FLT_INQ_RESULT 0x01
778#define HCI_FLT_CONN_SETUP 0x02
1da177e4 779
a9de9248
MH
780/* CONN_SETUP Condition types */
781#define HCI_CONN_SETUP_ALLOW_ALL 0x00
782#define HCI_CONN_SETUP_ALLOW_CLASS 0x01
783#define HCI_CONN_SETUP_ALLOW_BDADDR 0x02
784
785/* CONN_SETUP Conditions */
786#define HCI_CONN_SETUP_AUTO_OFF 0x01
787#define HCI_CONN_SETUP_AUTO_ON 0x02
788
b0916ea0
JH
789#define HCI_OP_DELETE_STORED_LINK_KEY 0x0c12
790struct hci_cp_delete_stored_link_key {
791 bdaddr_t bdaddr;
792 __u8 delete_all;
793} __packed;
794
1f6c6378
JH
795#define HCI_MAX_NAME_LENGTH 248
796
a9de9248
MH
797#define HCI_OP_WRITE_LOCAL_NAME 0x0c13
798struct hci_cp_write_local_name {
1f6c6378 799 __u8 name[HCI_MAX_NAME_LENGTH];
66c853cc 800} __packed;
a9de9248
MH
801
802#define HCI_OP_READ_LOCAL_NAME 0x0c14
803struct hci_rp_read_local_name {
804 __u8 status;
1f6c6378 805 __u8 name[HCI_MAX_NAME_LENGTH];
66c853cc 806} __packed;
a9de9248
MH
807
808#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
809
810#define HCI_OP_WRITE_PG_TIMEOUT 0x0c18
811
70f23020 812#define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a
a9de9248
MH
813 #define SCAN_DISABLED 0x00
814 #define SCAN_INQUIRY 0x01
815 #define SCAN_PAGE 0x02
816
817#define HCI_OP_READ_AUTH_ENABLE 0x0c1f
818
819#define HCI_OP_WRITE_AUTH_ENABLE 0x0c20
820 #define AUTH_DISABLED 0x00
821 #define AUTH_ENABLED 0x01
822
823#define HCI_OP_READ_ENCRYPT_MODE 0x0c21
824
825#define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22
826 #define ENCRYPT_DISABLED 0x00
827 #define ENCRYPT_P2P 0x01
828 #define ENCRYPT_BOTH 0x02
829
830#define HCI_OP_READ_CLASS_OF_DEV 0x0c23
831struct hci_rp_read_class_of_dev {
832 __u8 status;
1da177e4 833 __u8 dev_class[3];
66c853cc 834} __packed;
1da177e4 835
a9de9248
MH
836#define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24
837struct hci_cp_write_class_of_dev {
1da177e4 838 __u8 dev_class[3];
66c853cc 839} __packed;
a9de9248
MH
840
841#define HCI_OP_READ_VOICE_SETTING 0x0c25
842struct hci_rp_read_voice_setting {
843 __u8 status;
844 __le16 voice_setting;
66c853cc 845} __packed;
a9de9248
MH
846
847#define HCI_OP_WRITE_VOICE_SETTING 0x0c26
848struct hci_cp_write_voice_setting {
849 __le16 voice_setting;
66c853cc 850} __packed;
a9de9248
MH
851
852#define HCI_OP_HOST_BUFFER_SIZE 0x0c33
853struct hci_cp_host_buffer_size {
854 __le16 acl_mtu;
855 __u8 sco_mtu;
856 __le16 acl_max_pkt;
857 __le16 sco_max_pkt;
66c853cc 858} __packed;
a9de9248 859
b4cb9fb2
MH
860#define HCI_OP_READ_NUM_SUPPORTED_IAC 0x0c38
861struct hci_rp_read_num_supported_iac {
862 __u8 status;
863 __u8 num_iac;
864} __packed;
865
4b836f39
MH
866#define HCI_OP_READ_CURRENT_IAC_LAP 0x0c39
867
3d505312
MH
868#define HCI_OP_WRITE_CURRENT_IAC_LAP 0x0c3a
869struct hci_cp_write_current_iac_lap {
870 __u8 num_iac;
871 __u8 iac_lap[6];
872} __packed;
873
d5859e22
JH
874#define HCI_OP_WRITE_INQUIRY_MODE 0x0c45
875
80a1e1db
JH
876#define HCI_MAX_EIR_LENGTH 240
877
878#define HCI_OP_WRITE_EIR 0x0c52
879struct hci_cp_write_eir {
f64b993f
GP
880 __u8 fec;
881 __u8 data[HCI_MAX_EIR_LENGTH];
80a1e1db
JH
882} __packed;
883
333140b5
MH
884#define HCI_OP_READ_SSP_MODE 0x0c55
885struct hci_rp_read_ssp_mode {
886 __u8 status;
887 __u8 mode;
66c853cc 888} __packed;
333140b5
MH
889
890#define HCI_OP_WRITE_SSP_MODE 0x0c56
891struct hci_cp_write_ssp_mode {
892 __u8 mode;
66c853cc 893} __packed;
333140b5 894
c35938b2
SJ
895#define HCI_OP_READ_LOCAL_OOB_DATA 0x0c57
896struct hci_rp_read_local_oob_data {
897 __u8 status;
898 __u8 hash[16];
899 __u8 randomizer[16];
900} __packed;
901
d5859e22 902#define HCI_OP_READ_INQ_RSP_TX_POWER 0x0c58
91c4e9b1
MH
903struct hci_rp_read_inq_rsp_tx_power {
904 __u8 status;
905 __s8 tx_power;
906} __packed;
d5859e22 907
d62e6d67
JH
908#define HCI_OP_SET_EVENT_MASK_PAGE_2 0x0c63
909
7528ca1c
MH
910#define HCI_OP_READ_LOCATION_DATA 0x0c64
911
1e89cffb
AE
912#define HCI_OP_READ_FLOW_CONTROL_MODE 0x0c66
913struct hci_rp_read_flow_control_mode {
914 __u8 status;
915 __u8 mode;
916} __packed;
917
f9b49306
AG
918#define HCI_OP_WRITE_LE_HOST_SUPPORTED 0x0c6d
919struct hci_cp_write_le_host_supported {
f64b993f
GP
920 __u8 le;
921 __u8 simul;
f9b49306
AG
922} __packed;
923
d0bf75a5
DP
924#define HCI_OP_SET_RESERVED_LT_ADDR 0x0c74
925struct hci_cp_set_reserved_lt_addr {
926 __u8 lt_addr;
927} __packed;
928struct hci_rp_set_reserved_lt_addr {
929 __u8 status;
930 __u8 lt_addr;
931} __packed;
932
6a20eaf4
DP
933#define HCI_OP_DELETE_RESERVED_LT_ADDR 0x0c75
934struct hci_cp_delete_reserved_lt_addr {
935 __u8 lt_addr;
936} __packed;
937struct hci_rp_delete_reserved_lt_addr {
938 __u8 status;
939 __u8 lt_addr;
940} __packed;
941
7d1dab49
DP
942#define HCI_OP_SET_CSB_DATA 0x0c76
943struct hci_cp_set_csb_data {
944 __u8 lt_addr;
945 __u8 fragment;
946 __u8 data_length;
947 __u8 data[HCI_MAX_CSB_DATA_SIZE];
948} __packed;
949struct hci_rp_set_csb_data {
950 __u8 status;
951 __u8 lt_addr;
952} __packed;
953
5d4e7e8d
JH
954#define HCI_OP_READ_SYNC_TRAIN_PARAMS 0x0c77
955
a9b07a64
DP
956#define HCI_OP_WRITE_SYNC_TRAIN_PARAMS 0x0c78
957struct hci_cp_write_sync_train_params {
958 __le16 interval_min;
959 __le16 interval_max;
960 __le32 sync_train_tout;
961 __u8 service_data;
962} __packed;
963struct hci_rp_write_sync_train_params {
964 __u8 status;
965 __le16 sync_train_int;
966} __packed;
967
eb4b95c6
MH
968#define HCI_OP_READ_SC_SUPPORT 0x0c79
969struct hci_rp_read_sc_support {
970 __u8 status;
971 __u8 support;
972} __packed;
973
974#define HCI_OP_WRITE_SC_SUPPORT 0x0c7a
975struct hci_cp_write_sc_support {
976 __u8 support;
977} __packed;
978
e2f99131
MH
979#define HCI_OP_READ_LOCAL_OOB_EXT_DATA 0x0c7d
980struct hci_rp_read_local_oob_ext_data {
981 __u8 status;
982 __u8 hash192[16];
983 __u8 randomizer192[16];
984 __u8 hash256[16];
985 __u8 randomizer256[16];
986} __packed;
987
a9de9248
MH
988#define HCI_OP_READ_LOCAL_VERSION 0x1001
989struct hci_rp_read_local_version {
990 __u8 status;
991 __u8 hci_ver;
992 __le16 hci_rev;
993 __u8 lmp_ver;
994 __le16 manufacturer;
995 __le16 lmp_subver;
66c853cc 996} __packed;
a9de9248
MH
997
998#define HCI_OP_READ_LOCAL_COMMANDS 0x1002
999struct hci_rp_read_local_commands {
1000 __u8 status;
1001 __u8 commands[64];
66c853cc 1002} __packed;
a9de9248
MH
1003
1004#define HCI_OP_READ_LOCAL_FEATURES 0x1003
1005struct hci_rp_read_local_features {
1006 __u8 status;
1007 __u8 features[8];
66c853cc 1008} __packed;
a9de9248
MH
1009
1010#define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
971e3a4b
AG
1011struct hci_cp_read_local_ext_features {
1012 __u8 page;
1013} __packed;
a9de9248
MH
1014struct hci_rp_read_local_ext_features {
1015 __u8 status;
1016 __u8 page;
1017 __u8 max_page;
1018 __u8 features[8];
66c853cc 1019} __packed;
a9de9248
MH
1020
1021#define HCI_OP_READ_BUFFER_SIZE 0x1005
1022struct hci_rp_read_buffer_size {
1023 __u8 status;
1024 __le16 acl_mtu;
1025 __u8 sco_mtu;
1026 __le16 acl_max_pkt;
1027 __le16 sco_max_pkt;
66c853cc 1028} __packed;
a9de9248
MH
1029
1030#define HCI_OP_READ_BD_ADDR 0x1009
1031struct hci_rp_read_bd_addr {
1032 __u8 status;
45bb4bf0 1033 bdaddr_t bdaddr;
66c853cc 1034} __packed;
1da177e4 1035
350ee4cf
AE
1036#define HCI_OP_READ_DATA_BLOCK_SIZE 0x100a
1037struct hci_rp_read_data_block_size {
1038 __u8 status;
1039 __le16 max_acl_len;
1040 __le16 block_len;
1041 __le16 num_blocks;
1042} __packed;
1043
f332ec66
JH
1044#define HCI_OP_READ_PAGE_SCAN_ACTIVITY 0x0c1b
1045struct hci_rp_read_page_scan_activity {
1046 __u8 status;
1047 __le16 interval;
1048 __le16 window;
1049} __packed;
1050
f6422ec6
AJ
1051#define HCI_OP_WRITE_PAGE_SCAN_ACTIVITY 0x0c1c
1052struct hci_cp_write_page_scan_activity {
1053 __le16 interval;
1054 __le16 window;
1055} __packed;
1056
f332ec66
JH
1057#define HCI_OP_READ_PAGE_SCAN_TYPE 0x0c46
1058struct hci_rp_read_page_scan_type {
1059 __u8 status;
1060 __u8 type;
1061} __packed;
1062
f6422ec6
AJ
1063#define HCI_OP_WRITE_PAGE_SCAN_TYPE 0x0c47
1064 #define PAGE_SCAN_TYPE_STANDARD 0x00
1065 #define PAGE_SCAN_TYPE_INTERLACED 0x01
1066
928abaa7
AE
1067#define HCI_OP_READ_LOCAL_AMP_INFO 0x1409
1068struct hci_rp_read_local_amp_info {
1069 __u8 status;
1070 __u8 amp_status;
1071 __le32 total_bw;
1072 __le32 max_bw;
1073 __le32 min_latency;
1074 __le32 max_pdu;
1075 __u8 amp_type;
1076 __le16 pal_cap;
1077 __le16 max_assoc_size;
1078 __le32 max_flush_to;
1079 __le32 be_flush_to;
1080} __packed;
1081
523e93cd
AE
1082#define HCI_OP_READ_LOCAL_AMP_ASSOC 0x140a
1083struct hci_cp_read_local_amp_assoc {
1084 __u8 phy_handle;
1085 __le16 len_so_far;
1086 __le16 max_len;
1087} __packed;
1088struct hci_rp_read_local_amp_assoc {
1089 __u8 status;
1090 __u8 phy_handle;
1091 __le16 rem_len;
1092 __u8 frag[0];
1093} __packed;
1094
1095#define HCI_OP_WRITE_REMOTE_AMP_ASSOC 0x140b
1096struct hci_cp_write_remote_amp_assoc {
1097 __u8 phy_handle;
1098 __le16 len_so_far;
1099 __le16 rem_len;
1100 __u8 frag[0];
1101} __packed;
1102struct hci_rp_write_remote_amp_assoc {
1103 __u8 status;
1104 __u8 phy_handle;
1105} __packed;
1106
4b4148e9
MH
1107#define HCI_OP_ENABLE_DUT_MODE 0x1803
1108
06f5b778
MH
1109#define HCI_OP_WRITE_SSP_DEBUG_MODE 0x1804
1110
63185f64
VT
1111#define HCI_OP_LE_SET_EVENT_MASK 0x2001
1112struct hci_cp_le_set_event_mask {
1113 __u8 mask[8];
1114} __packed;
1115
1116#define HCI_OP_LE_READ_BUFFER_SIZE 0x2002
1117struct hci_rp_le_read_buffer_size {
1118 __u8 status;
1119 __le16 le_mtu;
1120 __u8 le_max_pkt;
1121} __packed;
1122
60e77321
JH
1123#define HCI_OP_LE_READ_LOCAL_FEATURES 0x2003
1124struct hci_rp_le_read_local_features {
1125 __u8 status;
1126 __u8 features[8];
1127} __packed;
1128
d13eafce
MH
1129#define HCI_OP_LE_SET_RANDOM_ADDR 0x2005
1130
1e191893
MH
1131#define HCI_OP_LE_SET_ADV_PARAM 0x2006
1132struct hci_cp_le_set_adv_param {
1133 __le16 min_interval;
1134 __le16 max_interval;
1135 __u8 type;
1136 __u8 own_address_type;
1137 __u8 direct_addr_type;
1138 bdaddr_t direct_addr;
1139 __u8 channel_map;
1140 __u8 filter_policy;
1141} __packed;
1142
8fa19098
JH
1143#define HCI_OP_LE_READ_ADV_TX_POWER 0x2007
1144struct hci_rp_le_read_adv_tx_power {
1145 __u8 status;
1146 __s8 tx_power;
1147} __packed;
1148
3f0f524b
JH
1149#define HCI_MAX_AD_LENGTH 31
1150
1151#define HCI_OP_LE_SET_ADV_DATA 0x2008
1152struct hci_cp_le_set_adv_data {
1153 __u8 length;
1154 __u8 data[HCI_MAX_AD_LENGTH];
1155} __packed;
1156
f14d8f64
MH
1157#define HCI_OP_LE_SET_SCAN_RSP_DATA 0x2009
1158struct hci_cp_le_set_scan_rsp_data {
1159 __u8 length;
1160 __u8 data[HCI_MAX_AD_LENGTH];
1161} __packed;
1162
c1d5dc4a
JH
1163#define HCI_OP_LE_SET_ADV_ENABLE 0x200a
1164
5df480b5
AG
1165#define LE_SCAN_PASSIVE 0x00
1166#define LE_SCAN_ACTIVE 0x01
1167
07f7fa5d
AG
1168#define HCI_OP_LE_SET_SCAN_PARAM 0x200b
1169struct hci_cp_le_set_scan_param {
1170 __u8 type;
1171 __le16 interval;
1172 __le16 window;
1173 __u8 own_address_type;
1174 __u8 filter_policy;
1175} __packed;
1176
76a388be
AG
1177#define LE_SCAN_DISABLE 0x00
1178#define LE_SCAN_ENABLE 0x01
525e296a
AG
1179#define LE_SCAN_FILTER_DUP_DISABLE 0x00
1180#define LE_SCAN_FILTER_DUP_ENABLE 0x01
68a8aea4 1181
eb9d91f5
AG
1182#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c
1183struct hci_cp_le_set_scan_enable {
1184 __u8 enable;
1185 __u8 filter_dup;
1186} __packed;
1187
a7139edd
JH
1188#define HCI_LE_USE_PEER_ADDR 0x00
1189#define HCI_LE_USE_WHITELIST 0x01
1190
63185f64
VT
1191#define HCI_OP_LE_CREATE_CONN 0x200d
1192struct hci_cp_le_create_conn {
1193 __le16 scan_interval;
1194 __le16 scan_window;
1195 __u8 filter_policy;
1196 __u8 peer_addr_type;
1197 bdaddr_t peer_addr;
1198 __u8 own_address_type;
1199 __le16 conn_interval_min;
1200 __le16 conn_interval_max;
1201 __le16 conn_latency;
1202 __le16 supervision_timeout;
1203 __le16 min_ce_len;
1204 __le16 max_ce_len;
1205} __packed;
1206
1207#define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e
1208
cf1d081f
JH
1209#define HCI_OP_LE_READ_WHITE_LIST_SIZE 0x200f
1210struct hci_rp_le_read_white_list_size {
1211 __u8 status;
1212 __u8 size;
1213} __packed;
1214
d9a7b0a5
MH
1215#define HCI_OP_LE_CLEAR_WHITE_LIST 0x2010
1216
1217#define HCI_OP_LE_ADD_TO_WHITE_LIST 0x2011
1218struct hci_cp_le_add_to_white_list {
1219 __u8 bdaddr_type;
1220 bdaddr_t bdaddr;
1221} __packed;
1222
1223#define HCI_OP_LE_DEL_FROM_WHITE_LIST 0x2012
1224struct hci_cp_le_del_from_white_list {
1225 __u8 bdaddr_type;
1226 bdaddr_t bdaddr;
1227} __packed;
1228
2ce603eb
CT
1229#define HCI_OP_LE_CONN_UPDATE 0x2013
1230struct hci_cp_le_conn_update {
1231 __le16 handle;
1232 __le16 conn_interval_min;
1233 __le16 conn_interval_max;
1234 __le16 conn_latency;
1235 __le16 supervision_timeout;
1236 __le16 min_ce_len;
1237 __le16 max_ce_len;
1238} __packed;
1239
a7a595f6
VCG
1240#define HCI_OP_LE_START_ENC 0x2019
1241struct hci_cp_le_start_enc {
1242 __le16 handle;
fe39c7b2 1243 __le64 rand;
a7a595f6
VCG
1244 __le16 ediv;
1245 __u8 ltk[16];
1246} __packed;
1247
1248#define HCI_OP_LE_LTK_REPLY 0x201a
1249struct hci_cp_le_ltk_reply {
1250 __le16 handle;
1251 __u8 ltk[16];
1252} __packed;
1253struct hci_rp_le_ltk_reply {
1254 __u8 status;
1255 __le16 handle;
1256} __packed;
1257
1258#define HCI_OP_LE_LTK_NEG_REPLY 0x201b
1259struct hci_cp_le_ltk_neg_reply {
1260 __le16 handle;
1261} __packed;
1262struct hci_rp_le_ltk_neg_reply {
1263 __u8 status;
1264 __le16 handle;
1265} __packed;
1266
9b008c04
JH
1267#define HCI_OP_LE_READ_SUPPORTED_STATES 0x201c
1268struct hci_rp_le_read_supported_states {
1269 __u8 status;
1270 __u8 le_states[8];
1271} __packed;
1272
a9de9248
MH
1273/* ---- HCI Events ---- */
1274#define HCI_EV_INQUIRY_COMPLETE 0x01
1275
1276#define HCI_EV_INQUIRY_RESULT 0x02
1277struct inquiry_info {
21d9e30e
MH
1278 bdaddr_t bdaddr;
1279 __u8 pscan_rep_mode;
1280 __u8 pscan_period_mode;
a9de9248 1281 __u8 pscan_mode;
21d9e30e 1282 __u8 dev_class[3];
1ebb9252 1283 __le16 clock_offset;
66c853cc 1284} __packed;
21d9e30e 1285
a9de9248 1286#define HCI_EV_CONN_COMPLETE 0x03
1da177e4
LT
1287struct hci_ev_conn_complete {
1288 __u8 status;
1ebb9252 1289 __le16 handle;
1da177e4
LT
1290 bdaddr_t bdaddr;
1291 __u8 link_type;
1292 __u8 encr_mode;
66c853cc 1293} __packed;
1da177e4 1294
a9de9248 1295#define HCI_EV_CONN_REQUEST 0x04
1da177e4
LT
1296struct hci_ev_conn_request {
1297 bdaddr_t bdaddr;
1298 __u8 dev_class[3];
1299 __u8 link_type;
66c853cc 1300} __packed;
1da177e4 1301
a9de9248 1302#define HCI_EV_DISCONN_COMPLETE 0x05
1da177e4
LT
1303struct hci_ev_disconn_complete {
1304 __u8 status;
1ebb9252 1305 __le16 handle;
1da177e4 1306 __u8 reason;
66c853cc 1307} __packed;
1da177e4 1308
a9de9248 1309#define HCI_EV_AUTH_COMPLETE 0x06
1da177e4
LT
1310struct hci_ev_auth_complete {
1311 __u8 status;
1ebb9252 1312 __le16 handle;
66c853cc 1313} __packed;
1da177e4 1314
a9de9248
MH
1315#define HCI_EV_REMOTE_NAME 0x07
1316struct hci_ev_remote_name {
1317 __u8 status;
1318 bdaddr_t bdaddr;
1f6c6378 1319 __u8 name[HCI_MAX_NAME_LENGTH];
66c853cc 1320} __packed;
a9de9248
MH
1321
1322#define HCI_EV_ENCRYPT_CHANGE 0x08
1da177e4
LT
1323struct hci_ev_encrypt_change {
1324 __u8 status;
1ebb9252 1325 __le16 handle;
1da177e4 1326 __u8 encrypt;
66c853cc 1327} __packed;
1da177e4 1328
a9de9248
MH
1329#define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
1330struct hci_ev_change_link_key_complete {
1331 __u8 status;
1332 __le16 handle;
66c853cc 1333} __packed;
a9de9248
MH
1334
1335#define HCI_EV_REMOTE_FEATURES 0x0b
1336struct hci_ev_remote_features {
1337 __u8 status;
1338 __le16 handle;
1339 __u8 features[8];
66c853cc 1340} __packed;
a9de9248
MH
1341
1342#define HCI_EV_REMOTE_VERSION 0x0c
1343struct hci_ev_remote_version {
1da177e4 1344 __u8 status;
1ebb9252 1345 __le16 handle;
a9de9248
MH
1346 __u8 lmp_ver;
1347 __le16 manufacturer;
1348 __le16 lmp_subver;
66c853cc 1349} __packed;
1da177e4 1350
a9de9248 1351#define HCI_EV_QOS_SETUP_COMPLETE 0x0d
1da177e4
LT
1352struct hci_qos {
1353 __u8 service_type;
1354 __u32 token_rate;
1355 __u32 peak_bandwidth;
1356 __u32 latency;
1357 __u32 delay_variation;
66c853cc 1358} __packed;
1da177e4
LT
1359struct hci_ev_qos_setup_complete {
1360 __u8 status;
1ebb9252 1361 __le16 handle;
1da177e4 1362 struct hci_qos qos;
66c853cc 1363} __packed;
1da177e4 1364
a9de9248 1365#define HCI_EV_CMD_COMPLETE 0x0e
1da177e4
LT
1366struct hci_ev_cmd_complete {
1367 __u8 ncmd;
1ebb9252 1368 __le16 opcode;
66c853cc 1369} __packed;
1da177e4 1370
a9de9248 1371#define HCI_EV_CMD_STATUS 0x0f
1da177e4
LT
1372struct hci_ev_cmd_status {
1373 __u8 status;
1374 __u8 ncmd;
1ebb9252 1375 __le16 opcode;
66c853cc 1376} __packed;
1da177e4 1377
a9de9248 1378#define HCI_EV_ROLE_CHANGE 0x12
1da177e4
LT
1379struct hci_ev_role_change {
1380 __u8 status;
1381 bdaddr_t bdaddr;
1382 __u8 role;
66c853cc 1383} __packed;
1da177e4 1384
a9de9248 1385#define HCI_EV_NUM_COMP_PKTS 0x13
613a1c0c
AE
1386struct hci_comp_pkts_info {
1387 __le16 handle;
1388 __le16 count;
1389} __packed;
1390
a9de9248
MH
1391struct hci_ev_num_comp_pkts {
1392 __u8 num_hndl;
613a1c0c 1393 struct hci_comp_pkts_info handles[0];
66c853cc 1394} __packed;
a9de9248
MH
1395
1396#define HCI_EV_MODE_CHANGE 0x14
1da177e4
LT
1397struct hci_ev_mode_change {
1398 __u8 status;
1ebb9252 1399 __le16 handle;
1da177e4 1400 __u8 mode;
1ebb9252 1401 __le16 interval;
66c853cc 1402} __packed;
1da177e4 1403
a9de9248 1404#define HCI_EV_PIN_CODE_REQ 0x16
1da177e4
LT
1405struct hci_ev_pin_code_req {
1406 bdaddr_t bdaddr;
66c853cc 1407} __packed;
1da177e4 1408
a9de9248 1409#define HCI_EV_LINK_KEY_REQ 0x17
1da177e4
LT
1410struct hci_ev_link_key_req {
1411 bdaddr_t bdaddr;
66c853cc 1412} __packed;
1da177e4 1413
a9de9248 1414#define HCI_EV_LINK_KEY_NOTIFY 0x18
1da177e4
LT
1415struct hci_ev_link_key_notify {
1416 bdaddr_t bdaddr;
9b3b4460 1417 __u8 link_key[HCI_LINK_KEY_SIZE];
a9de9248 1418 __u8 key_type;
66c853cc 1419} __packed;
1da177e4 1420
a9de9248
MH
1421#define HCI_EV_CLOCK_OFFSET 0x1c
1422struct hci_ev_clock_offset {
1da177e4 1423 __u8 status;
1ebb9252 1424 __le16 handle;
a9de9248 1425 __le16 clock_offset;
66c853cc 1426} __packed;
1da177e4 1427
a8746417
MH
1428#define HCI_EV_PKT_TYPE_CHANGE 0x1d
1429struct hci_ev_pkt_type_change {
1430 __u8 status;
1431 __le16 handle;
1432 __le16 pkt_type;
66c853cc 1433} __packed;
a8746417 1434
a9de9248
MH
1435#define HCI_EV_PSCAN_REP_MODE 0x20
1436struct hci_ev_pscan_rep_mode {
1437 bdaddr_t bdaddr;
1438 __u8 pscan_rep_mode;
66c853cc 1439} __packed;
a9de9248
MH
1440
1441#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
1442struct inquiry_info_with_rssi {
1443 bdaddr_t bdaddr;
1444 __u8 pscan_rep_mode;
1445 __u8 pscan_period_mode;
1446 __u8 dev_class[3];
1447 __le16 clock_offset;
1448 __s8 rssi;
66c853cc 1449} __packed;
a9de9248
MH
1450struct inquiry_info_with_rssi_and_pscan_mode {
1451 bdaddr_t bdaddr;
1452 __u8 pscan_rep_mode;
1453 __u8 pscan_period_mode;
1454 __u8 pscan_mode;
1455 __u8 dev_class[3];
1456 __le16 clock_offset;
1457 __s8 rssi;
66c853cc 1458} __packed;
a9de9248
MH
1459
1460#define HCI_EV_REMOTE_EXT_FEATURES 0x23
1461struct hci_ev_remote_ext_features {
1da177e4 1462 __u8 status;
1ebb9252 1463 __le16 handle;
a9de9248
MH
1464 __u8 page;
1465 __u8 max_page;
1466 __u8 features[8];
66c853cc 1467} __packed;
1da177e4 1468
a9de9248
MH
1469#define HCI_EV_SYNC_CONN_COMPLETE 0x2c
1470struct hci_ev_sync_conn_complete {
1da177e4 1471 __u8 status;
1ebb9252 1472 __le16 handle;
a9de9248
MH
1473 bdaddr_t bdaddr;
1474 __u8 link_type;
1475 __u8 tx_interval;
1476 __u8 retrans_window;
1477 __le16 rx_pkt_len;
1478 __le16 tx_pkt_len;
1479 __u8 air_mode;
66c853cc 1480} __packed;
1da177e4 1481
a9de9248
MH
1482#define HCI_EV_SYNC_CONN_CHANGED 0x2d
1483struct hci_ev_sync_conn_changed {
1484 __u8 status;
1485 __le16 handle;
1486 __u8 tx_interval;
1487 __u8 retrans_window;
1488 __le16 rx_pkt_len;
1489 __le16 tx_pkt_len;
66c853cc 1490} __packed;
85a1e930 1491
a9de9248 1492#define HCI_EV_SNIFF_SUBRATE 0x2e
04837f64
MH
1493struct hci_ev_sniff_subrate {
1494 __u8 status;
1495 __le16 handle;
1496 __le16 max_tx_latency;
1497 __le16 max_rx_latency;
1498 __le16 max_remote_timeout;
1499 __le16 max_local_timeout;
66c853cc 1500} __packed;
04837f64 1501
a9de9248
MH
1502#define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
1503struct extended_inquiry_info {
1504 bdaddr_t bdaddr;
1505 __u8 pscan_rep_mode;
1506 __u8 pscan_period_mode;
1507 __u8 dev_class[3];
1508 __le16 clock_offset;
1509 __s8 rssi;
1510 __u8 data[240];
66c853cc 1511} __packed;
a9de9248 1512
1c2e0041
JH
1513#define HCI_EV_KEY_REFRESH_COMPLETE 0x30
1514struct hci_ev_key_refresh_complete {
1515 __u8 status;
1516 __le16 handle;
1517} __packed;
1518
0493684e
MH
1519#define HCI_EV_IO_CAPA_REQUEST 0x31
1520struct hci_ev_io_capa_request {
1521 bdaddr_t bdaddr;
66c853cc 1522} __packed;
0493684e 1523
03b555e1
JH
1524#define HCI_EV_IO_CAPA_REPLY 0x32
1525struct hci_ev_io_capa_reply {
1526 bdaddr_t bdaddr;
1527 __u8 capability;
1528 __u8 oob_data;
1529 __u8 authentication;
1530} __packed;
1531
a5c29683
JH
1532#define HCI_EV_USER_CONFIRM_REQUEST 0x33
1533struct hci_ev_user_confirm_req {
1534 bdaddr_t bdaddr;
1535 __le32 passkey;
1536} __packed;
1537
9ad4019a
BG
1538#define HCI_EV_USER_PASSKEY_REQUEST 0x34
1539struct hci_ev_user_passkey_req {
1540 bdaddr_t bdaddr;
1541} __packed;
1542
2763eda6
SJ
1543#define HCI_EV_REMOTE_OOB_DATA_REQUEST 0x35
1544struct hci_ev_remote_oob_data_request {
1545 bdaddr_t bdaddr;
1546} __packed;
1547
0493684e
MH
1548#define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
1549struct hci_ev_simple_pair_complete {
1550 __u8 status;
1551 bdaddr_t bdaddr;
66c853cc 1552} __packed;
0493684e 1553
92a25256
JH
1554#define HCI_EV_USER_PASSKEY_NOTIFY 0x3b
1555struct hci_ev_user_passkey_notify {
1556 bdaddr_t bdaddr;
1557 __le32 passkey;
1558} __packed;
1559
1560#define HCI_KEYPRESS_STARTED 0
1561#define HCI_KEYPRESS_ENTERED 1
1562#define HCI_KEYPRESS_ERASED 2
1563#define HCI_KEYPRESS_CLEARED 3
1564#define HCI_KEYPRESS_COMPLETED 4
1565
1566#define HCI_EV_KEYPRESS_NOTIFY 0x3c
1567struct hci_ev_keypress_notify {
1568 bdaddr_t bdaddr;
1569 __u8 type;
1570} __packed;
1571
41a96212
MH
1572#define HCI_EV_REMOTE_HOST_FEATURES 0x3d
1573struct hci_ev_remote_host_features {
1574 bdaddr_t bdaddr;
1575 __u8 features[8];
66c853cc 1576} __packed;
41a96212 1577
63185f64
VT
1578#define HCI_EV_LE_META 0x3e
1579struct hci_ev_le_meta {
1580 __u8 subevent;
1581} __packed;
1582
523e93cd
AE
1583#define HCI_EV_PHY_LINK_COMPLETE 0x40
1584struct hci_ev_phy_link_complete {
1585 __u8 status;
1586 __u8 phy_handle;
1587} __packed;
1588
1589#define HCI_EV_CHANNEL_SELECTED 0x41
1590struct hci_ev_channel_selected {
1591 __u8 phy_handle;
1592} __packed;
1593
1594#define HCI_EV_DISCONN_PHY_LINK_COMPLETE 0x42
1595struct hci_ev_disconn_phy_link_complete {
1596 __u8 status;
1597 __u8 phy_handle;
1598 __u8 reason;
1599} __packed;
1600
1601#define HCI_EV_LOGICAL_LINK_COMPLETE 0x45
1602struct hci_ev_logical_link_complete {
1603 __u8 status;
1604 __le16 handle;
1605 __u8 phy_handle;
1606 __u8 flow_spec_id;
1607} __packed;
1608
1609#define HCI_EV_DISCONN_LOGICAL_LINK_COMPLETE 0x46
1610struct hci_ev_disconn_logical_link_complete {
1611 __u8 status;
1612 __le16 handle;
1613 __u8 reason;
1614} __packed;
1615
25e89e99
AE
1616#define HCI_EV_NUM_COMP_BLOCKS 0x48
1617struct hci_comp_blocks_info {
1618 __le16 handle;
1619 __le16 pkts;
1620 __le16 blocks;
1621} __packed;
1622
1623struct hci_ev_num_comp_blocks {
1624 __le16 num_blocks;
1625 __u8 num_hndl;
1626 struct hci_comp_blocks_info handles[0];
1627} __packed;
1628
2b359445
DP
1629#define HCI_EV_SYNC_TRAIN_COMPLETE 0x4F
1630struct hci_ev_sync_train_complete {
1631 __u8 status;
1632} __packed;
1633
2ed01805
DP
1634#define HCI_EV_SLAVE_PAGE_RESP_TIMEOUT 0x54
1635
63185f64 1636/* Low energy meta events */
b9b343d2
AG
1637#define LE_CONN_ROLE_MASTER 0x00
1638
63185f64
VT
1639#define HCI_EV_LE_CONN_COMPLETE 0x01
1640struct hci_ev_le_conn_complete {
1641 __u8 status;
1642 __le16 handle;
1643 __u8 role;
1644 __u8 bdaddr_type;
1645 bdaddr_t bdaddr;
1646 __le16 interval;
1647 __le16 latency;
1648 __le16 supervision_timeout;
1649 __u8 clk_accurancy;
1650} __packed;
1651
a7a595f6
VCG
1652#define HCI_EV_LE_LTK_REQ 0x05
1653struct hci_ev_le_ltk_req {
1654 __le16 handle;
fe39c7b2 1655 __le64 rand;
a7a595f6
VCG
1656 __le16 ediv;
1657} __packed;
1658
57a56fd4 1659/* Advertising report event types */
db3aebf4
MH
1660#define LE_ADV_IND 0x00
1661#define LE_ADV_DIRECT_IND 0x01
1662#define LE_ADV_SCAN_IND 0x02
1663#define LE_ADV_NONCONN_IND 0x03
1664#define LE_ADV_SCAN_RSP 0x04
57a56fd4
AB
1665
1666#define ADDR_LE_DEV_PUBLIC 0x00
1667#define ADDR_LE_DEV_RANDOM 0x01
1668
1669#define HCI_EV_LE_ADVERTISING_REPORT 0x02
1670struct hci_ev_le_advertising_info {
1671 __u8 evt_type;
1672 __u8 bdaddr_type;
1673 bdaddr_t bdaddr;
1674 __u8 length;
1675 __u8 data[0];
1676} __packed;
1677
1da177e4 1678/* Internal events generated by Bluetooth stack */
a9de9248 1679#define HCI_EV_STACK_INTERNAL 0xfd
1da177e4
LT
1680struct hci_ev_stack_internal {
1681 __u16 type;
1682 __u8 data[0];
66c853cc 1683} __packed;
1da177e4 1684
a9de9248 1685#define HCI_EV_SI_DEVICE 0x01
1da177e4
LT
1686struct hci_ev_si_device {
1687 __u16 event;
1688 __u16 dev_id;
66c853cc 1689} __packed;
1da177e4
LT
1690
1691#define HCI_EV_SI_SECURITY 0x02
1692struct hci_ev_si_security {
1693 __u16 event;
1694 __u16 proto;
1695 __u16 subproto;
1696 __u8 incoming;
66c853cc 1697} __packed;
1da177e4
LT
1698
1699/* ---- HCI Packet structures ---- */
1700#define HCI_COMMAND_HDR_SIZE 3
1701#define HCI_EVENT_HDR_SIZE 2
1702#define HCI_ACL_HDR_SIZE 4
1703#define HCI_SCO_HDR_SIZE 3
1704
1705struct hci_command_hdr {
a9de9248 1706 __le16 opcode; /* OCF & OGF */
70f23020 1707 __u8 plen;
66c853cc 1708} __packed;
1da177e4
LT
1709
1710struct hci_event_hdr {
a9de9248
MH
1711 __u8 evt;
1712 __u8 plen;
66c853cc 1713} __packed;
1da177e4
LT
1714
1715struct hci_acl_hdr {
a9de9248
MH
1716 __le16 handle; /* Handle & Flags(PB, BC) */
1717 __le16 dlen;
66c853cc 1718} __packed;
1da177e4
LT
1719
1720struct hci_sco_hdr {
a9de9248
MH
1721 __le16 handle;
1722 __u8 dlen;
66c853cc 1723} __packed;
1da177e4 1724
2a123b86
ACM
1725static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
1726{
a9de9248 1727 return (struct hci_event_hdr *) skb->data;
2a123b86
ACM
1728}
1729
1730static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
1731{
a9de9248 1732 return (struct hci_acl_hdr *) skb->data;
2a123b86
ACM
1733}
1734
1735static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
1736{
a9de9248 1737 return (struct hci_sco_hdr *) skb->data;
2a123b86 1738}
2a123b86 1739
1da177e4 1740/* Command opcode pack/unpack */
c3c7ea65 1741#define hci_opcode_pack(ogf, ocf) ((__u16) ((ocf & 0x03ff)|(ogf << 10)))
1da177e4
LT
1742#define hci_opcode_ogf(op) (op >> 10)
1743#define hci_opcode_ocf(op) (op & 0x03ff)
1744
1745/* ACL handle and flags pack/unpack */
c3c7ea65 1746#define hci_handle_pack(h, f) ((__u16) ((h & 0x0fff)|(f << 12)))
1da177e4
LT
1747#define hci_handle(h) (h & 0x0fff)
1748#define hci_flags(h) (h >> 12)
1749
1750/* ---- HCI Sockets ---- */
1751
1752/* Socket options */
1753#define HCI_DATA_DIR 1
1754#define HCI_FILTER 2
1755#define HCI_TIME_STAMP 3
1756
1757/* CMSG flags */
1758#define HCI_CMSG_DIR 0x0001
1759#define HCI_CMSG_TSTAMP 0x0002
1760
1761struct sockaddr_hci {
1762 sa_family_t hci_family;
1763 unsigned short hci_dev;
c02178d2 1764 unsigned short hci_channel;
1da177e4
LT
1765};
1766#define HCI_DEV_NONE 0xffff
1767
c02178d2 1768#define HCI_CHANNEL_RAW 0
23500189 1769#define HCI_CHANNEL_USER 1
cd82e61c 1770#define HCI_CHANNEL_MONITOR 2
66f3b913 1771#define HCI_CHANNEL_CONTROL 3
c02178d2 1772
1da177e4
LT
1773struct hci_filter {
1774 unsigned long type_mask;
1775 unsigned long event_mask[2];
a9de9248 1776 __le16 opcode;
1da177e4
LT
1777};
1778
1779struct hci_ufilter {
a9de9248
MH
1780 __u32 type_mask;
1781 __u32 event_mask[2];
1782 __le16 opcode;
1da177e4
LT
1783};
1784
1785#define HCI_FLT_TYPE_BITS 31
1786#define HCI_FLT_EVENT_BITS 63
1787#define HCI_FLT_OGF_BITS 63
1788#define HCI_FLT_OCF_BITS 127
1789
1790/* ---- HCI Ioctl requests structures ---- */
1791struct hci_dev_stats {
1792 __u32 err_rx;
1793 __u32 err_tx;
1794 __u32 cmd_tx;
1795 __u32 evt_rx;
1796 __u32 acl_tx;
1797 __u32 acl_rx;
1798 __u32 sco_tx;
1799 __u32 sco_rx;
1800 __u32 byte_rx;
1801 __u32 byte_tx;
1802};
1803
1804struct hci_dev_info {
1805 __u16 dev_id;
1806 char name[8];
1807
1808 bdaddr_t bdaddr;
1809
1810 __u32 flags;
1811 __u8 type;
1812
1813 __u8 features[8];
1814
1815 __u32 pkt_type;
1816 __u32 link_policy;
1817 __u32 link_mode;
1818
1819 __u16 acl_mtu;
1820 __u16 acl_pkts;
1821 __u16 sco_mtu;
1822 __u16 sco_pkts;
1823
1824 struct hci_dev_stats stat;
1825};
1826
1827struct hci_conn_info {
1828 __u16 handle;
1829 bdaddr_t bdaddr;
a9de9248
MH
1830 __u8 type;
1831 __u8 out;
1832 __u16 state;
1833 __u32 link_mode;
1da177e4
LT
1834};
1835
1836struct hci_dev_req {
a9de9248
MH
1837 __u16 dev_id;
1838 __u32 dev_opt;
1da177e4
LT
1839};
1840
1841struct hci_dev_list_req {
1842 __u16 dev_num;
1843 struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
1844};
1845
1846struct hci_conn_list_req {
1847 __u16 dev_id;
1848 __u16 conn_num;
1849 struct hci_conn_info conn_info[0];
1850};
1851
1852struct hci_conn_info_req {
1853 bdaddr_t bdaddr;
1854 __u8 type;
1855 struct hci_conn_info conn_info[0];
1856};
1857
40be492f
MH
1858struct hci_auth_info_req {
1859 bdaddr_t bdaddr;
1860 __u8 type;
1861};
1862
1da177e4
LT
1863struct hci_inquiry_req {
1864 __u16 dev_id;
1865 __u16 flags;
1866 __u8 lap[3];
1867 __u8 length;
1868 __u8 num_rsp;
1869};
1870#define IREQ_CACHE_FLUSH 0x0001
1871
1872#endif /* __HCI_H */
This page took 0.753741 seconds and 5 git commands to generate.