blob: 6d0c04a81fc7427e23d8800e412b6c4c4e144560 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
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
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
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
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
46/* HCI device 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
55/* HCI device quirks */
56enum {
57 HCI_QUIRK_RESET_ON_INIT,
Marcel Holtmannda1f5192006-07-03 10:02:29 +020058 HCI_QUIRK_RAW_DEVICE,
59 HCI_QUIRK_FIXUP_BUFFER_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62/* HCI device flags */
63enum {
64 HCI_UP,
65 HCI_INIT,
66 HCI_RUNNING,
67
68 HCI_PSCAN,
69 HCI_ISCAN,
70 HCI_AUTH,
71 HCI_ENCRYPT,
72 HCI_INQUIRY,
73
74 HCI_RAW,
75
76 HCI_SECMGR
77};
78
79/* HCI ioctl defines */
80#define HCIDEVUP _IOW('H', 201, int)
81#define HCIDEVDOWN _IOW('H', 202, int)
82#define HCIDEVRESET _IOW('H', 203, int)
83#define HCIDEVRESTAT _IOW('H', 204, int)
84
85#define HCIGETDEVLIST _IOR('H', 210, int)
86#define HCIGETDEVINFO _IOR('H', 211, int)
87#define HCIGETCONNLIST _IOR('H', 212, int)
88#define HCIGETCONNINFO _IOR('H', 213, int)
89
90#define HCISETRAW _IOW('H', 220, int)
91#define HCISETSCAN _IOW('H', 221, int)
92#define HCISETAUTH _IOW('H', 222, int)
93#define HCISETENCRYPT _IOW('H', 223, int)
94#define HCISETPTYPE _IOW('H', 224, int)
95#define HCISETLINKPOL _IOW('H', 225, int)
96#define HCISETLINKMODE _IOW('H', 226, int)
97#define HCISETACLMTU _IOW('H', 227, int)
98#define HCISETSCOMTU _IOW('H', 228, int)
99
100#define HCISETSECMGR _IOW('H', 230, int)
101
102#define HCIINQUIRY _IOR('H', 240, int)
103
104/* HCI timeouts */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200105#define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */
106#define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */
107#define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */
108#define HCI_INIT_TIMEOUT (10000) /* 10 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200110/* HCI data types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define HCI_COMMAND_PKT 0x01
112#define HCI_ACLDATA_PKT 0x02
113#define HCI_SCODATA_PKT 0x03
114#define HCI_EVENT_PKT 0x04
115#define HCI_VENDOR_PKT 0xff
116
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200117/* HCI packet types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define HCI_DM1 0x0008
119#define HCI_DM3 0x0400
120#define HCI_DM5 0x4000
121#define HCI_DH1 0x0010
122#define HCI_DH3 0x0800
123#define HCI_DH5 0x8000
124
125#define HCI_HV1 0x0020
126#define HCI_HV2 0x0040
127#define HCI_HV3 0x0080
128
129#define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3)
130#define ACL_PTYPE_MASK (~SCO_PTYPE_MASK)
131
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200132/* eSCO packet types */
133#define ESCO_HV1 0x0001
134#define ESCO_HV2 0x0002
135#define ESCO_HV3 0x0004
136#define ESCO_EV3 0x0008
137#define ESCO_EV4 0x0010
138#define ESCO_EV5 0x0020
139
Marcel Holtmanna8746412008-07-14 20:13:46 +0200140#define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* ACL flags */
143#define ACL_CONT 0x01
144#define ACL_START 0x02
145#define ACL_ACTIVE_BCAST 0x04
146#define ACL_PICO_BCAST 0x08
147
148/* Baseband links */
149#define SCO_LINK 0x00
150#define ACL_LINK 0x01
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200151#define ESCO_LINK 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/* LMP features */
154#define LMP_3SLOT 0x01
155#define LMP_5SLOT 0x02
156#define LMP_ENCRYPT 0x04
157#define LMP_SOFFSET 0x08
158#define LMP_TACCURACY 0x10
159#define LMP_RSWITCH 0x20
160#define LMP_HOLD 0x40
Marcel Holtmann04837f62006-07-03 10:02:33 +0200161#define LMP_SNIFF 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163#define LMP_PARK 0x01
164#define LMP_RSSI 0x02
165#define LMP_QUALITY 0x04
166#define LMP_SCO 0x08
167#define LMP_HV2 0x10
168#define LMP_HV3 0x20
169#define LMP_ULAW 0x40
170#define LMP_ALAW 0x80
171
172#define LMP_CVSD 0x01
173#define LMP_PSCHEME 0x02
174#define LMP_PCONTROL 0x04
175
Marcel Holtmann5b7f9902007-07-11 09:51:55 +0200176#define LMP_ESCO 0x80
177
178#define LMP_EV4 0x01
179#define LMP_EV5 0x02
180
Marcel Holtmann04837f62006-07-03 10:02:33 +0200181#define LMP_SNIFF_SUBR 0x02
182
183/* Connection modes */
184#define HCI_CM_ACTIVE 0x0000
185#define HCI_CM_HOLD 0x0001
186#define HCI_CM_SNIFF 0x0002
187#define HCI_CM_PARK 0x0003
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* Link policies */
190#define HCI_LP_RSWITCH 0x0001
191#define HCI_LP_HOLD 0x0002
192#define HCI_LP_SNIFF 0x0004
193#define HCI_LP_PARK 0x0008
194
Marcel Holtmann04837f62006-07-03 10:02:33 +0200195/* Link modes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#define HCI_LM_ACCEPT 0x8000
197#define HCI_LM_MASTER 0x0001
198#define HCI_LM_AUTH 0x0002
199#define HCI_LM_ENCRYPT 0x0004
200#define HCI_LM_TRUSTED 0x0008
201#define HCI_LM_RELIABLE 0x0010
202#define HCI_LM_SECURE 0x0020
203
204/* ----- HCI Commands ---- */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200205#define HCI_OP_INQUIRY 0x0401
206struct hci_cp_inquiry {
207 __u8 lap[3];
208 __u8 length;
209 __u8 num_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210} __attribute__ ((packed));
211
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200212#define HCI_OP_INQUIRY_CANCEL 0x0402
213
214#define HCI_OP_EXIT_PERIODIC_INQ 0x0404
215
216#define HCI_OP_CREATE_CONN 0x0405
217struct hci_cp_create_conn {
218 bdaddr_t bdaddr;
219 __le16 pkt_type;
220 __u8 pscan_rep_mode;
221 __u8 pscan_mode;
222 __le16 clock_offset;
223 __u8 role_switch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224} __attribute__ ((packed));
225
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200226#define HCI_OP_DISCONNECT 0x0406
227struct hci_cp_disconnect {
228 __le16 handle;
229 __u8 reason;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230} __attribute__ ((packed));
231
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200232#define HCI_OP_ADD_SCO 0x0407
233struct hci_cp_add_sco {
234 __le16 handle;
235 __le16 pkt_type;
236} __attribute__ ((packed));
237
238#define HCI_OP_CREATE_CONN_CANCEL 0x0408
239struct hci_cp_create_conn_cancel {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 bdaddr_t bdaddr;
241} __attribute__ ((packed));
242
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200243#define HCI_OP_ACCEPT_CONN_REQ 0x0409
244struct hci_cp_accept_conn_req {
245 bdaddr_t bdaddr;
246 __u8 role;
247} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200249#define HCI_OP_REJECT_CONN_REQ 0x040a
250struct hci_cp_reject_conn_req {
251 bdaddr_t bdaddr;
252 __u8 reason;
253} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200255#define HCI_OP_LINK_KEY_REPLY 0x040b
256struct hci_cp_link_key_reply {
257 bdaddr_t bdaddr;
258 __u8 link_key[16];
259} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200261#define HCI_OP_LINK_KEY_NEG_REPLY 0x040c
262struct hci_cp_link_key_neg_reply {
263 bdaddr_t bdaddr;
264} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200266#define HCI_OP_PIN_CODE_REPLY 0x040d
267struct hci_cp_pin_code_reply {
268 bdaddr_t bdaddr;
269 __u8 pin_len;
270 __u8 pin_code[16];
271} __attribute__ ((packed));
272
273#define HCI_OP_PIN_CODE_NEG_REPLY 0x040e
274struct hci_cp_pin_code_neg_reply {
275 bdaddr_t bdaddr;
276} __attribute__ ((packed));
277
278#define HCI_OP_CHANGE_CONN_PTYPE 0x040f
279struct hci_cp_change_conn_ptype {
280 __le16 handle;
281 __le16 pkt_type;
282} __attribute__ ((packed));
283
284#define HCI_OP_AUTH_REQUESTED 0x0411
285struct hci_cp_auth_requested {
286 __le16 handle;
287} __attribute__ ((packed));
288
289#define HCI_OP_SET_CONN_ENCRYPT 0x0413
290struct hci_cp_set_conn_encrypt {
291 __le16 handle;
292 __u8 encrypt;
293} __attribute__ ((packed));
294
295#define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415
296struct hci_cp_change_conn_link_key {
297 __le16 handle;
298} __attribute__ ((packed));
299
300#define HCI_OP_REMOTE_NAME_REQ 0x0419
301struct hci_cp_remote_name_req {
302 bdaddr_t bdaddr;
303 __u8 pscan_rep_mode;
304 __u8 pscan_mode;
305 __le16 clock_offset;
306} __attribute__ ((packed));
307
308#define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a
309struct hci_cp_remote_name_req_cancel {
310 bdaddr_t bdaddr;
311} __attribute__ ((packed));
312
313#define HCI_OP_READ_REMOTE_FEATURES 0x041b
314struct hci_cp_read_remote_features {
315 __le16 handle;
316} __attribute__ ((packed));
317
318#define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
319struct hci_cp_read_remote_ext_features {
320 __le16 handle;
321 __u8 page;
322} __attribute__ ((packed));
323
324#define HCI_OP_READ_REMOTE_VERSION 0x041d
325struct hci_cp_read_remote_version {
326 __le16 handle;
327} __attribute__ ((packed));
328
329#define HCI_OP_SETUP_SYNC_CONN 0x0428
330struct hci_cp_setup_sync_conn {
331 __le16 handle;
332 __le32 tx_bandwidth;
333 __le32 rx_bandwidth;
334 __le16 max_latency;
335 __le16 voice_setting;
336 __u8 retrans_effort;
337 __le16 pkt_type;
338} __attribute__ ((packed));
339
340#define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429
341struct hci_cp_accept_sync_conn_req {
342 bdaddr_t bdaddr;
343 __le32 tx_bandwidth;
344 __le32 rx_bandwidth;
345 __le16 max_latency;
346 __le16 content_format;
347 __u8 retrans_effort;
348 __le16 pkt_type;
349} __attribute__ ((packed));
350
351#define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a
352struct hci_cp_reject_sync_conn_req {
353 bdaddr_t bdaddr;
354 __u8 reason;
355} __attribute__ ((packed));
356
357#define HCI_OP_SNIFF_MODE 0x0803
358struct hci_cp_sniff_mode {
359 __le16 handle;
360 __le16 max_interval;
361 __le16 min_interval;
362 __le16 attempt;
363 __le16 timeout;
364} __attribute__ ((packed));
365
366#define HCI_OP_EXIT_SNIFF_MODE 0x0804
367struct hci_cp_exit_sniff_mode {
368 __le16 handle;
369} __attribute__ ((packed));
370
371#define HCI_OP_ROLE_DISCOVERY 0x0809
372struct hci_cp_role_discovery {
373 __le16 handle;
374} __attribute__ ((packed));
375struct hci_rp_role_discovery {
376 __u8 status;
377 __le16 handle;
378 __u8 role;
379} __attribute__ ((packed));
380
381#define HCI_OP_SWITCH_ROLE 0x080b
382struct hci_cp_switch_role {
383 bdaddr_t bdaddr;
384 __u8 role;
385} __attribute__ ((packed));
386
387#define HCI_OP_READ_LINK_POLICY 0x080c
388struct hci_cp_read_link_policy {
389 __le16 handle;
390} __attribute__ ((packed));
391struct hci_rp_read_link_policy {
392 __u8 status;
393 __le16 handle;
394 __le16 policy;
395} __attribute__ ((packed));
396
397#define HCI_OP_WRITE_LINK_POLICY 0x080d
398struct hci_cp_write_link_policy {
399 __le16 handle;
400 __le16 policy;
401} __attribute__ ((packed));
402struct hci_rp_write_link_policy {
403 __u8 status;
404 __le16 handle;
405} __attribute__ ((packed));
406
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200407#define HCI_OP_READ_DEF_LINK_POLICY 0x080e
408struct hci_rp_read_def_link_policy {
409 __u8 status;
410 __le16 policy;
411} __attribute__ ((packed));
412
413#define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f
414struct hci_cp_write_def_link_policy {
415 __le16 policy;
416} __attribute__ ((packed));
417
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200418#define HCI_OP_SNIFF_SUBRATE 0x0811
419struct hci_cp_sniff_subrate {
420 __le16 handle;
421 __le16 max_latency;
422 __le16 min_remote_timeout;
423 __le16 min_local_timeout;
424} __attribute__ ((packed));
425
426#define HCI_OP_SET_EVENT_MASK 0x0c01
427struct hci_cp_set_event_mask {
428 __u8 mask[8];
429} __attribute__ ((packed));
430
431#define HCI_OP_RESET 0x0c03
432
433#define HCI_OP_SET_EVENT_FLT 0x0c05
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434struct hci_cp_set_event_flt {
435 __u8 flt_type;
436 __u8 cond_type;
437 __u8 condition[0];
438} __attribute__ ((packed));
439
440/* Filter types */
441#define HCI_FLT_CLEAR_ALL 0x00
442#define HCI_FLT_INQ_RESULT 0x01
443#define HCI_FLT_CONN_SETUP 0x02
444
445/* CONN_SETUP Condition types */
446#define HCI_CONN_SETUP_ALLOW_ALL 0x00
447#define HCI_CONN_SETUP_ALLOW_CLASS 0x01
448#define HCI_CONN_SETUP_ALLOW_BDADDR 0x02
449
450/* CONN_SETUP Conditions */
451#define HCI_CONN_SETUP_AUTO_OFF 0x01
452#define HCI_CONN_SETUP_AUTO_ON 0x02
453
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200454#define HCI_OP_WRITE_LOCAL_NAME 0x0c13
455struct hci_cp_write_local_name {
456 __u8 name[248];
457} __attribute__ ((packed));
458
459#define HCI_OP_READ_LOCAL_NAME 0x0c14
460struct hci_rp_read_local_name {
461 __u8 status;
462 __u8 name[248];
463} __attribute__ ((packed));
464
465#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
466
467#define HCI_OP_WRITE_PG_TIMEOUT 0x0c18
468
469#define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a
470 #define SCAN_DISABLED 0x00
471 #define SCAN_INQUIRY 0x01
472 #define SCAN_PAGE 0x02
473
474#define HCI_OP_READ_AUTH_ENABLE 0x0c1f
475
476#define HCI_OP_WRITE_AUTH_ENABLE 0x0c20
477 #define AUTH_DISABLED 0x00
478 #define AUTH_ENABLED 0x01
479
480#define HCI_OP_READ_ENCRYPT_MODE 0x0c21
481
482#define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22
483 #define ENCRYPT_DISABLED 0x00
484 #define ENCRYPT_P2P 0x01
485 #define ENCRYPT_BOTH 0x02
486
487#define HCI_OP_READ_CLASS_OF_DEV 0x0c23
488struct hci_rp_read_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 __u8 status;
490 __u8 dev_class[3];
491} __attribute__ ((packed));
492
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200493#define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24
494struct hci_cp_write_class_of_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 __u8 dev_class[3];
496} __attribute__ ((packed));
497
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200498#define HCI_OP_READ_VOICE_SETTING 0x0c25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499struct hci_rp_read_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800500 __u8 status;
501 __le16 voice_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502} __attribute__ ((packed));
503
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200504#define HCI_OP_WRITE_VOICE_SETTING 0x0c26
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505struct hci_cp_write_voice_setting {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800506 __le16 voice_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507} __attribute__ ((packed));
508
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200509#define HCI_OP_HOST_BUFFER_SIZE 0x0c33
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510struct hci_cp_host_buffer_size {
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800511 __le16 acl_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 __u8 sco_mtu;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800513 __le16 acl_max_pkt;
514 __le16 sco_max_pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515} __attribute__ ((packed));
516
Marcel Holtmann333140b2008-07-14 20:13:48 +0200517#define HCI_OP_READ_SSP_MODE 0x0c55
518struct hci_rp_read_ssp_mode {
519 __u8 status;
520 __u8 mode;
521} __attribute__ ((packed));
522
523#define HCI_OP_WRITE_SSP_MODE 0x0c56
524struct hci_cp_write_ssp_mode {
525 __u8 mode;
526} __attribute__ ((packed));
527
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200528#define HCI_OP_READ_LOCAL_VERSION 0x1001
529struct hci_rp_read_local_version {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200531 __u8 hci_ver;
532 __le16 hci_rev;
533 __u8 lmp_ver;
534 __le16 manufacturer;
535 __le16 lmp_subver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536} __attribute__ ((packed));
537
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200538#define HCI_OP_READ_LOCAL_COMMANDS 0x1002
539struct hci_rp_read_local_commands {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200541 __u8 commands[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542} __attribute__ ((packed));
543
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200544#define HCI_OP_READ_LOCAL_FEATURES 0x1003
545struct hci_rp_read_local_features {
546 __u8 status;
547 __u8 features[8];
548} __attribute__ ((packed));
549
550#define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
551struct hci_rp_read_local_ext_features {
552 __u8 status;
553 __u8 page;
554 __u8 max_page;
555 __u8 features[8];
556} __attribute__ ((packed));
557
558#define HCI_OP_READ_BUFFER_SIZE 0x1005
559struct hci_rp_read_buffer_size {
560 __u8 status;
561 __le16 acl_mtu;
562 __u8 sco_mtu;
563 __le16 acl_max_pkt;
564 __le16 sco_max_pkt;
565} __attribute__ ((packed));
566
567#define HCI_OP_READ_BD_ADDR 0x1009
568struct hci_rp_read_bd_addr {
569 __u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 bdaddr_t bdaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571} __attribute__ ((packed));
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/* ---- HCI Events ---- */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200574#define HCI_EV_INQUIRY_COMPLETE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200576#define HCI_EV_INQUIRY_RESULT 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577struct inquiry_info {
578 bdaddr_t bdaddr;
579 __u8 pscan_rep_mode;
580 __u8 pscan_period_mode;
581 __u8 pscan_mode;
582 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800583 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584} __attribute__ ((packed));
585
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200586#define HCI_EV_CONN_COMPLETE 0x03
587struct hci_ev_conn_complete {
588 __u8 status;
589 __le16 handle;
590 bdaddr_t bdaddr;
591 __u8 link_type;
592 __u8 encr_mode;
593} __attribute__ ((packed));
594
595#define HCI_EV_CONN_REQUEST 0x04
596struct hci_ev_conn_request {
597 bdaddr_t bdaddr;
598 __u8 dev_class[3];
599 __u8 link_type;
600} __attribute__ ((packed));
601
602#define HCI_EV_DISCONN_COMPLETE 0x05
603struct hci_ev_disconn_complete {
604 __u8 status;
605 __le16 handle;
606 __u8 reason;
607} __attribute__ ((packed));
608
609#define HCI_EV_AUTH_COMPLETE 0x06
610struct hci_ev_auth_complete {
611 __u8 status;
612 __le16 handle;
613} __attribute__ ((packed));
614
615#define HCI_EV_REMOTE_NAME 0x07
616struct hci_ev_remote_name {
617 __u8 status;
618 bdaddr_t bdaddr;
619 __u8 name[248];
620} __attribute__ ((packed));
621
622#define HCI_EV_ENCRYPT_CHANGE 0x08
623struct hci_ev_encrypt_change {
624 __u8 status;
625 __le16 handle;
626 __u8 encrypt;
627} __attribute__ ((packed));
628
629#define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
630struct hci_ev_change_link_key_complete {
631 __u8 status;
632 __le16 handle;
633} __attribute__ ((packed));
634
635#define HCI_EV_REMOTE_FEATURES 0x0b
636struct hci_ev_remote_features {
637 __u8 status;
638 __le16 handle;
639 __u8 features[8];
640} __attribute__ ((packed));
641
642#define HCI_EV_REMOTE_VERSION 0x0c
643struct hci_ev_remote_version {
644 __u8 status;
645 __le16 handle;
646 __u8 lmp_ver;
647 __le16 manufacturer;
648 __le16 lmp_subver;
649} __attribute__ ((packed));
650
651#define HCI_EV_QOS_SETUP_COMPLETE 0x0d
652struct hci_qos {
653 __u8 service_type;
654 __u32 token_rate;
655 __u32 peak_bandwidth;
656 __u32 latency;
657 __u32 delay_variation;
658} __attribute__ ((packed));
659struct hci_ev_qos_setup_complete {
660 __u8 status;
661 __le16 handle;
662 struct hci_qos qos;
663} __attribute__ ((packed));
664
665#define HCI_EV_CMD_COMPLETE 0x0e
666struct hci_ev_cmd_complete {
667 __u8 ncmd;
668 __le16 opcode;
669} __attribute__ ((packed));
670
671#define HCI_EV_CMD_STATUS 0x0f
672struct hci_ev_cmd_status {
673 __u8 status;
674 __u8 ncmd;
675 __le16 opcode;
676} __attribute__ ((packed));
677
678#define HCI_EV_ROLE_CHANGE 0x12
679struct hci_ev_role_change {
680 __u8 status;
681 bdaddr_t bdaddr;
682 __u8 role;
683} __attribute__ ((packed));
684
685#define HCI_EV_NUM_COMP_PKTS 0x13
686struct hci_ev_num_comp_pkts {
687 __u8 num_hndl;
688 /* variable length part */
689} __attribute__ ((packed));
690
691#define HCI_EV_MODE_CHANGE 0x14
692struct hci_ev_mode_change {
693 __u8 status;
694 __le16 handle;
695 __u8 mode;
696 __le16 interval;
697} __attribute__ ((packed));
698
699#define HCI_EV_PIN_CODE_REQ 0x16
700struct hci_ev_pin_code_req {
701 bdaddr_t bdaddr;
702} __attribute__ ((packed));
703
704#define HCI_EV_LINK_KEY_REQ 0x17
705struct hci_ev_link_key_req {
706 bdaddr_t bdaddr;
707} __attribute__ ((packed));
708
709#define HCI_EV_LINK_KEY_NOTIFY 0x18
710struct hci_ev_link_key_notify {
711 bdaddr_t bdaddr;
712 __u8 link_key[16];
713 __u8 key_type;
714} __attribute__ ((packed));
715
716#define HCI_EV_CLOCK_OFFSET 0x1c
717struct hci_ev_clock_offset {
718 __u8 status;
719 __le16 handle;
720 __le16 clock_offset;
721} __attribute__ ((packed));
722
Marcel Holtmanna8746412008-07-14 20:13:46 +0200723#define HCI_EV_PKT_TYPE_CHANGE 0x1d
724struct hci_ev_pkt_type_change {
725 __u8 status;
726 __le16 handle;
727 __le16 pkt_type;
728} __attribute__ ((packed));
729
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200730#define HCI_EV_PSCAN_REP_MODE 0x20
731struct hci_ev_pscan_rep_mode {
732 bdaddr_t bdaddr;
733 __u8 pscan_rep_mode;
734} __attribute__ ((packed));
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
737struct inquiry_info_with_rssi {
738 bdaddr_t bdaddr;
739 __u8 pscan_rep_mode;
740 __u8 pscan_period_mode;
741 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800742 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 __s8 rssi;
744} __attribute__ ((packed));
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -0700745struct inquiry_info_with_rssi_and_pscan_mode {
746 bdaddr_t bdaddr;
747 __u8 pscan_rep_mode;
748 __u8 pscan_period_mode;
749 __u8 pscan_mode;
750 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800751 __le16 clock_offset;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -0700752 __s8 rssi;
753} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200755#define HCI_EV_REMOTE_EXT_FEATURES 0x23
756struct hci_ev_remote_ext_features {
757 __u8 status;
758 __le16 handle;
759 __u8 page;
760 __u8 max_page;
761 __u8 features[8];
762} __attribute__ ((packed));
763
764#define HCI_EV_SYNC_CONN_COMPLETE 0x2c
765struct hci_ev_sync_conn_complete {
766 __u8 status;
767 __le16 handle;
768 bdaddr_t bdaddr;
769 __u8 link_type;
770 __u8 tx_interval;
771 __u8 retrans_window;
772 __le16 rx_pkt_len;
773 __le16 tx_pkt_len;
774 __u8 air_mode;
775} __attribute__ ((packed));
776
777#define HCI_EV_SYNC_CONN_CHANGED 0x2d
778struct hci_ev_sync_conn_changed {
779 __u8 status;
780 __le16 handle;
781 __u8 tx_interval;
782 __u8 retrans_window;
783 __le16 rx_pkt_len;
784 __le16 tx_pkt_len;
785} __attribute__ ((packed));
786
787#define HCI_EV_SNIFF_SUBRATE 0x2e
788struct hci_ev_sniff_subrate {
789 __u8 status;
790 __le16 handle;
791 __le16 max_tx_latency;
792 __le16 max_rx_latency;
793 __le16 max_remote_timeout;
794 __le16 max_local_timeout;
795} __attribute__ ((packed));
796
797#define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
Marcel Holtmann21d9e302005-09-13 01:32:25 +0200798struct extended_inquiry_info {
799 bdaddr_t bdaddr;
800 __u8 pscan_rep_mode;
801 __u8 pscan_period_mode;
802 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800803 __le16 clock_offset;
Marcel Holtmann21d9e302005-09-13 01:32:25 +0200804 __s8 rssi;
805 __u8 data[240];
806} __attribute__ ((packed));
807
Marcel Holtmann04936842008-07-14 20:13:48 +0200808#define HCI_EV_IO_CAPA_REQUEST 0x31
809struct hci_ev_io_capa_request {
810 bdaddr_t bdaddr;
811} __attribute__ ((packed));
812
813#define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
814struct hci_ev_simple_pair_complete {
815 __u8 status;
816 bdaddr_t bdaddr;
817} __attribute__ ((packed));
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/* Internal events generated by Bluetooth stack */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200820#define HCI_EV_STACK_INTERNAL 0xfd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821struct hci_ev_stack_internal {
822 __u16 type;
823 __u8 data[0];
824} __attribute__ ((packed));
825
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200826#define HCI_EV_SI_DEVICE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827struct hci_ev_si_device {
828 __u16 event;
829 __u16 dev_id;
830} __attribute__ ((packed));
831
832#define HCI_EV_SI_SECURITY 0x02
833struct hci_ev_si_security {
834 __u16 event;
835 __u16 proto;
836 __u16 subproto;
837 __u8 incoming;
838} __attribute__ ((packed));
839
840/* ---- HCI Packet structures ---- */
841#define HCI_COMMAND_HDR_SIZE 3
842#define HCI_EVENT_HDR_SIZE 2
843#define HCI_ACL_HDR_SIZE 4
844#define HCI_SCO_HDR_SIZE 3
845
846struct hci_command_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200847 __le16 opcode; /* OCF & OGF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 __u8 plen;
849} __attribute__ ((packed));
850
851struct hci_event_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200852 __u8 evt;
853 __u8 plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854} __attribute__ ((packed));
855
856struct hci_acl_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200857 __le16 handle; /* Handle & Flags(PB, BC) */
858 __le16 dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859} __attribute__ ((packed));
860
861struct hci_sco_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200862 __le16 handle;
863 __u8 dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864} __attribute__ ((packed));
865
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300866#ifdef __KERNEL__
867#include <linux/skbuff.h>
868static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
869{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200870 return (struct hci_event_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300871}
872
873static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
874{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200875 return (struct hci_acl_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300876}
877
878static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
879{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200880 return (struct hci_sco_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300881}
882#endif
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884/* Command opcode pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800885#define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886#define hci_opcode_ogf(op) (op >> 10)
887#define hci_opcode_ocf(op) (op & 0x03ff)
888
889/* ACL handle and flags pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800890#define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891#define hci_handle(h) (h & 0x0fff)
892#define hci_flags(h) (h >> 12)
893
894/* ---- HCI Sockets ---- */
895
896/* Socket options */
897#define HCI_DATA_DIR 1
898#define HCI_FILTER 2
899#define HCI_TIME_STAMP 3
900
901/* CMSG flags */
902#define HCI_CMSG_DIR 0x0001
903#define HCI_CMSG_TSTAMP 0x0002
904
905struct sockaddr_hci {
906 sa_family_t hci_family;
907 unsigned short hci_dev;
908};
909#define HCI_DEV_NONE 0xffff
910
911struct hci_filter {
912 unsigned long type_mask;
913 unsigned long event_mask[2];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200914 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915};
916
917struct hci_ufilter {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200918 __u32 type_mask;
919 __u32 event_mask[2];
920 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921};
922
923#define HCI_FLT_TYPE_BITS 31
924#define HCI_FLT_EVENT_BITS 63
925#define HCI_FLT_OGF_BITS 63
926#define HCI_FLT_OCF_BITS 127
927
928/* ---- HCI Ioctl requests structures ---- */
929struct hci_dev_stats {
930 __u32 err_rx;
931 __u32 err_tx;
932 __u32 cmd_tx;
933 __u32 evt_rx;
934 __u32 acl_tx;
935 __u32 acl_rx;
936 __u32 sco_tx;
937 __u32 sco_rx;
938 __u32 byte_rx;
939 __u32 byte_tx;
940};
941
942struct hci_dev_info {
943 __u16 dev_id;
944 char name[8];
945
946 bdaddr_t bdaddr;
947
948 __u32 flags;
949 __u8 type;
950
951 __u8 features[8];
952
953 __u32 pkt_type;
954 __u32 link_policy;
955 __u32 link_mode;
956
957 __u16 acl_mtu;
958 __u16 acl_pkts;
959 __u16 sco_mtu;
960 __u16 sco_pkts;
961
962 struct hci_dev_stats stat;
963};
964
965struct hci_conn_info {
966 __u16 handle;
967 bdaddr_t bdaddr;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200968 __u8 type;
969 __u8 out;
970 __u16 state;
971 __u32 link_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972};
973
974struct hci_dev_req {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200975 __u16 dev_id;
976 __u32 dev_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977};
978
979struct hci_dev_list_req {
980 __u16 dev_num;
981 struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
982};
983
984struct hci_conn_list_req {
985 __u16 dev_id;
986 __u16 conn_num;
987 struct hci_conn_info conn_info[0];
988};
989
990struct hci_conn_info_req {
991 bdaddr_t bdaddr;
992 __u8 type;
993 struct hci_conn_info conn_info[0];
994};
995
996struct hci_inquiry_req {
997 __u16 dev_id;
998 __u16 flags;
999 __u8 lap[3];
1000 __u8 length;
1001 __u8 num_rsp;
1002};
1003#define IREQ_CACHE_FLUSH 0x0001
1004
1005#endif /* __HCI_H */