blob: 79629ff40e3ef0c9398fbcc742d3e47effcd82de [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 Holtmanna9de9242007-10-20 13:33:56 +0200517#define HCI_OP_READ_LOCAL_VERSION 0x1001
518struct hci_rp_read_local_version {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200520 __u8 hci_ver;
521 __le16 hci_rev;
522 __u8 lmp_ver;
523 __le16 manufacturer;
524 __le16 lmp_subver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525} __attribute__ ((packed));
526
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200527#define HCI_OP_READ_LOCAL_COMMANDS 0x1002
528struct hci_rp_read_local_commands {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 __u8 status;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200530 __u8 commands[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531} __attribute__ ((packed));
532
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200533#define HCI_OP_READ_LOCAL_FEATURES 0x1003
534struct hci_rp_read_local_features {
535 __u8 status;
536 __u8 features[8];
537} __attribute__ ((packed));
538
539#define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
540struct hci_rp_read_local_ext_features {
541 __u8 status;
542 __u8 page;
543 __u8 max_page;
544 __u8 features[8];
545} __attribute__ ((packed));
546
547#define HCI_OP_READ_BUFFER_SIZE 0x1005
548struct hci_rp_read_buffer_size {
549 __u8 status;
550 __le16 acl_mtu;
551 __u8 sco_mtu;
552 __le16 acl_max_pkt;
553 __le16 sco_max_pkt;
554} __attribute__ ((packed));
555
556#define HCI_OP_READ_BD_ADDR 0x1009
557struct hci_rp_read_bd_addr {
558 __u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 bdaddr_t bdaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560} __attribute__ ((packed));
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/* ---- HCI Events ---- */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200563#define HCI_EV_INQUIRY_COMPLETE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200565#define HCI_EV_INQUIRY_RESULT 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566struct inquiry_info {
567 bdaddr_t bdaddr;
568 __u8 pscan_rep_mode;
569 __u8 pscan_period_mode;
570 __u8 pscan_mode;
571 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800572 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573} __attribute__ ((packed));
574
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200575#define HCI_EV_CONN_COMPLETE 0x03
576struct hci_ev_conn_complete {
577 __u8 status;
578 __le16 handle;
579 bdaddr_t bdaddr;
580 __u8 link_type;
581 __u8 encr_mode;
582} __attribute__ ((packed));
583
584#define HCI_EV_CONN_REQUEST 0x04
585struct hci_ev_conn_request {
586 bdaddr_t bdaddr;
587 __u8 dev_class[3];
588 __u8 link_type;
589} __attribute__ ((packed));
590
591#define HCI_EV_DISCONN_COMPLETE 0x05
592struct hci_ev_disconn_complete {
593 __u8 status;
594 __le16 handle;
595 __u8 reason;
596} __attribute__ ((packed));
597
598#define HCI_EV_AUTH_COMPLETE 0x06
599struct hci_ev_auth_complete {
600 __u8 status;
601 __le16 handle;
602} __attribute__ ((packed));
603
604#define HCI_EV_REMOTE_NAME 0x07
605struct hci_ev_remote_name {
606 __u8 status;
607 bdaddr_t bdaddr;
608 __u8 name[248];
609} __attribute__ ((packed));
610
611#define HCI_EV_ENCRYPT_CHANGE 0x08
612struct hci_ev_encrypt_change {
613 __u8 status;
614 __le16 handle;
615 __u8 encrypt;
616} __attribute__ ((packed));
617
618#define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
619struct hci_ev_change_link_key_complete {
620 __u8 status;
621 __le16 handle;
622} __attribute__ ((packed));
623
624#define HCI_EV_REMOTE_FEATURES 0x0b
625struct hci_ev_remote_features {
626 __u8 status;
627 __le16 handle;
628 __u8 features[8];
629} __attribute__ ((packed));
630
631#define HCI_EV_REMOTE_VERSION 0x0c
632struct hci_ev_remote_version {
633 __u8 status;
634 __le16 handle;
635 __u8 lmp_ver;
636 __le16 manufacturer;
637 __le16 lmp_subver;
638} __attribute__ ((packed));
639
640#define HCI_EV_QOS_SETUP_COMPLETE 0x0d
641struct hci_qos {
642 __u8 service_type;
643 __u32 token_rate;
644 __u32 peak_bandwidth;
645 __u32 latency;
646 __u32 delay_variation;
647} __attribute__ ((packed));
648struct hci_ev_qos_setup_complete {
649 __u8 status;
650 __le16 handle;
651 struct hci_qos qos;
652} __attribute__ ((packed));
653
654#define HCI_EV_CMD_COMPLETE 0x0e
655struct hci_ev_cmd_complete {
656 __u8 ncmd;
657 __le16 opcode;
658} __attribute__ ((packed));
659
660#define HCI_EV_CMD_STATUS 0x0f
661struct hci_ev_cmd_status {
662 __u8 status;
663 __u8 ncmd;
664 __le16 opcode;
665} __attribute__ ((packed));
666
667#define HCI_EV_ROLE_CHANGE 0x12
668struct hci_ev_role_change {
669 __u8 status;
670 bdaddr_t bdaddr;
671 __u8 role;
672} __attribute__ ((packed));
673
674#define HCI_EV_NUM_COMP_PKTS 0x13
675struct hci_ev_num_comp_pkts {
676 __u8 num_hndl;
677 /* variable length part */
678} __attribute__ ((packed));
679
680#define HCI_EV_MODE_CHANGE 0x14
681struct hci_ev_mode_change {
682 __u8 status;
683 __le16 handle;
684 __u8 mode;
685 __le16 interval;
686} __attribute__ ((packed));
687
688#define HCI_EV_PIN_CODE_REQ 0x16
689struct hci_ev_pin_code_req {
690 bdaddr_t bdaddr;
691} __attribute__ ((packed));
692
693#define HCI_EV_LINK_KEY_REQ 0x17
694struct hci_ev_link_key_req {
695 bdaddr_t bdaddr;
696} __attribute__ ((packed));
697
698#define HCI_EV_LINK_KEY_NOTIFY 0x18
699struct hci_ev_link_key_notify {
700 bdaddr_t bdaddr;
701 __u8 link_key[16];
702 __u8 key_type;
703} __attribute__ ((packed));
704
705#define HCI_EV_CLOCK_OFFSET 0x1c
706struct hci_ev_clock_offset {
707 __u8 status;
708 __le16 handle;
709 __le16 clock_offset;
710} __attribute__ ((packed));
711
Marcel Holtmanna8746412008-07-14 20:13:46 +0200712#define HCI_EV_PKT_TYPE_CHANGE 0x1d
713struct hci_ev_pkt_type_change {
714 __u8 status;
715 __le16 handle;
716 __le16 pkt_type;
717} __attribute__ ((packed));
718
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200719#define HCI_EV_PSCAN_REP_MODE 0x20
720struct hci_ev_pscan_rep_mode {
721 bdaddr_t bdaddr;
722 __u8 pscan_rep_mode;
723} __attribute__ ((packed));
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
726struct inquiry_info_with_rssi {
727 bdaddr_t bdaddr;
728 __u8 pscan_rep_mode;
729 __u8 pscan_period_mode;
730 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800731 __le16 clock_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 __s8 rssi;
733} __attribute__ ((packed));
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -0700734struct inquiry_info_with_rssi_and_pscan_mode {
735 bdaddr_t bdaddr;
736 __u8 pscan_rep_mode;
737 __u8 pscan_period_mode;
738 __u8 pscan_mode;
739 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800740 __le16 clock_offset;
Marcel Holtmann45bb4bf2005-08-09 20:27:49 -0700741 __s8 rssi;
742} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200744#define HCI_EV_REMOTE_EXT_FEATURES 0x23
745struct hci_ev_remote_ext_features {
746 __u8 status;
747 __le16 handle;
748 __u8 page;
749 __u8 max_page;
750 __u8 features[8];
751} __attribute__ ((packed));
752
753#define HCI_EV_SYNC_CONN_COMPLETE 0x2c
754struct hci_ev_sync_conn_complete {
755 __u8 status;
756 __le16 handle;
757 bdaddr_t bdaddr;
758 __u8 link_type;
759 __u8 tx_interval;
760 __u8 retrans_window;
761 __le16 rx_pkt_len;
762 __le16 tx_pkt_len;
763 __u8 air_mode;
764} __attribute__ ((packed));
765
766#define HCI_EV_SYNC_CONN_CHANGED 0x2d
767struct hci_ev_sync_conn_changed {
768 __u8 status;
769 __le16 handle;
770 __u8 tx_interval;
771 __u8 retrans_window;
772 __le16 rx_pkt_len;
773 __le16 tx_pkt_len;
774} __attribute__ ((packed));
775
776#define HCI_EV_SNIFF_SUBRATE 0x2e
777struct hci_ev_sniff_subrate {
778 __u8 status;
779 __le16 handle;
780 __le16 max_tx_latency;
781 __le16 max_rx_latency;
782 __le16 max_remote_timeout;
783 __le16 max_local_timeout;
784} __attribute__ ((packed));
785
786#define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
Marcel Holtmann21d9e302005-09-13 01:32:25 +0200787struct extended_inquiry_info {
788 bdaddr_t bdaddr;
789 __u8 pscan_rep_mode;
790 __u8 pscan_period_mode;
791 __u8 dev_class[3];
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800792 __le16 clock_offset;
Marcel Holtmann21d9e302005-09-13 01:32:25 +0200793 __s8 rssi;
794 __u8 data[240];
795} __attribute__ ((packed));
796
Marcel Holtmann04936842008-07-14 20:13:48 +0200797#define HCI_EV_IO_CAPA_REQUEST 0x31
798struct hci_ev_io_capa_request {
799 bdaddr_t bdaddr;
800} __attribute__ ((packed));
801
802#define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
803struct hci_ev_simple_pair_complete {
804 __u8 status;
805 bdaddr_t bdaddr;
806} __attribute__ ((packed));
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808/* Internal events generated by Bluetooth stack */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200809#define HCI_EV_STACK_INTERNAL 0xfd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810struct hci_ev_stack_internal {
811 __u16 type;
812 __u8 data[0];
813} __attribute__ ((packed));
814
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200815#define HCI_EV_SI_DEVICE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816struct hci_ev_si_device {
817 __u16 event;
818 __u16 dev_id;
819} __attribute__ ((packed));
820
821#define HCI_EV_SI_SECURITY 0x02
822struct hci_ev_si_security {
823 __u16 event;
824 __u16 proto;
825 __u16 subproto;
826 __u8 incoming;
827} __attribute__ ((packed));
828
829/* ---- HCI Packet structures ---- */
830#define HCI_COMMAND_HDR_SIZE 3
831#define HCI_EVENT_HDR_SIZE 2
832#define HCI_ACL_HDR_SIZE 4
833#define HCI_SCO_HDR_SIZE 3
834
835struct hci_command_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200836 __le16 opcode; /* OCF & OGF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 __u8 plen;
838} __attribute__ ((packed));
839
840struct hci_event_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200841 __u8 evt;
842 __u8 plen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843} __attribute__ ((packed));
844
845struct hci_acl_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200846 __le16 handle; /* Handle & Flags(PB, BC) */
847 __le16 dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848} __attribute__ ((packed));
849
850struct hci_sco_hdr {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200851 __le16 handle;
852 __u8 dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853} __attribute__ ((packed));
854
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300855#ifdef __KERNEL__
856#include <linux/skbuff.h>
857static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
858{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200859 return (struct hci_event_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300860}
861
862static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
863{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200864 return (struct hci_acl_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300865}
866
867static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
868{
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200869 return (struct hci_sco_hdr *) skb->data;
Arnaldo Carvalho de Melo2a123b82007-03-27 18:38:07 -0300870}
871#endif
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/* Command opcode pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800874#define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875#define hci_opcode_ogf(op) (op >> 10)
876#define hci_opcode_ocf(op) (op & 0x03ff)
877
878/* ACL handle and flags pack/unpack */
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800879#define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880#define hci_handle(h) (h & 0x0fff)
881#define hci_flags(h) (h >> 12)
882
883/* ---- HCI Sockets ---- */
884
885/* Socket options */
886#define HCI_DATA_DIR 1
887#define HCI_FILTER 2
888#define HCI_TIME_STAMP 3
889
890/* CMSG flags */
891#define HCI_CMSG_DIR 0x0001
892#define HCI_CMSG_TSTAMP 0x0002
893
894struct sockaddr_hci {
895 sa_family_t hci_family;
896 unsigned short hci_dev;
897};
898#define HCI_DEV_NONE 0xffff
899
900struct hci_filter {
901 unsigned long type_mask;
902 unsigned long event_mask[2];
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200903 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904};
905
906struct hci_ufilter {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200907 __u32 type_mask;
908 __u32 event_mask[2];
909 __le16 opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910};
911
912#define HCI_FLT_TYPE_BITS 31
913#define HCI_FLT_EVENT_BITS 63
914#define HCI_FLT_OGF_BITS 63
915#define HCI_FLT_OCF_BITS 127
916
917/* ---- HCI Ioctl requests structures ---- */
918struct hci_dev_stats {
919 __u32 err_rx;
920 __u32 err_tx;
921 __u32 cmd_tx;
922 __u32 evt_rx;
923 __u32 acl_tx;
924 __u32 acl_rx;
925 __u32 sco_tx;
926 __u32 sco_rx;
927 __u32 byte_rx;
928 __u32 byte_tx;
929};
930
931struct hci_dev_info {
932 __u16 dev_id;
933 char name[8];
934
935 bdaddr_t bdaddr;
936
937 __u32 flags;
938 __u8 type;
939
940 __u8 features[8];
941
942 __u32 pkt_type;
943 __u32 link_policy;
944 __u32 link_mode;
945
946 __u16 acl_mtu;
947 __u16 acl_pkts;
948 __u16 sco_mtu;
949 __u16 sco_pkts;
950
951 struct hci_dev_stats stat;
952};
953
954struct hci_conn_info {
955 __u16 handle;
956 bdaddr_t bdaddr;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200957 __u8 type;
958 __u8 out;
959 __u16 state;
960 __u32 link_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961};
962
963struct hci_dev_req {
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200964 __u16 dev_id;
965 __u32 dev_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966};
967
968struct hci_dev_list_req {
969 __u16 dev_num;
970 struct hci_dev_req dev_req[0]; /* hci_dev_req structures */
971};
972
973struct hci_conn_list_req {
974 __u16 dev_id;
975 __u16 conn_num;
976 struct hci_conn_info conn_info[0];
977};
978
979struct hci_conn_info_req {
980 bdaddr_t bdaddr;
981 __u8 type;
982 struct hci_conn_info conn_info[0];
983};
984
985struct hci_inquiry_req {
986 __u16 dev_id;
987 __u16 flags;
988 __u8 lap[3];
989 __u8 length;
990 __u8 num_rsp;
991};
992#define IREQ_CACHE_FLUSH 0x0001
993
994#endif /* __HCI_H */