5ac0a18db63c4abdb593369bc9b5384b614a777c
[pandora-kernel.git] / include / net / bluetooth / hci.h
1 /* 
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 */
47 #define HCI_VIRTUAL     0
48 #define HCI_USB         1
49 #define HCI_PCCARD      2
50 #define HCI_UART        3
51 #define HCI_RS232       4
52 #define HCI_PCI         5
53 #define HCI_SDIO        6
54
55 /* HCI device quirks */
56 enum {
57         HCI_QUIRK_RESET_ON_INIT,
58         HCI_QUIRK_RAW_DEVICE,
59         HCI_QUIRK_FIXUP_BUFFER_SIZE
60 };
61
62 /* HCI device flags */
63 enum {
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 */
105 #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 */
109
110 /* HCI data types */
111 #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
117 /* HCI packet types */
118 #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
132 /* 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
140 #define SCO_ESCO_MASK  (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
141
142 /* 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
151 #define ESCO_LINK       0x02
152
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
161 #define LMP_SNIFF       0x80
162
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
176 #define LMP_ESCO        0x80
177
178 #define LMP_EV4         0x01
179 #define LMP_EV5         0x02
180
181 #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
189 /* 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
195 /* Link modes */
196 #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 ---- */
205 #define HCI_OP_INQUIRY                  0x0401
206 struct hci_cp_inquiry {
207         __u8     lap[3];
208         __u8     length;
209         __u8     num_rsp;
210 } __attribute__ ((packed));
211
212 #define HCI_OP_INQUIRY_CANCEL           0x0402
213
214 #define HCI_OP_EXIT_PERIODIC_INQ        0x0404
215
216 #define HCI_OP_CREATE_CONN              0x0405
217 struct 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;
224 } __attribute__ ((packed));
225
226 #define HCI_OP_DISCONNECT               0x0406
227 struct hci_cp_disconnect {
228         __le16   handle;
229         __u8     reason;
230 } __attribute__ ((packed));
231
232 #define HCI_OP_ADD_SCO                  0x0407
233 struct hci_cp_add_sco {
234         __le16   handle;
235         __le16   pkt_type;
236 } __attribute__ ((packed));
237
238 #define HCI_OP_CREATE_CONN_CANCEL       0x0408
239 struct hci_cp_create_conn_cancel {
240         bdaddr_t bdaddr;
241 } __attribute__ ((packed));
242
243 #define HCI_OP_ACCEPT_CONN_REQ          0x0409
244 struct hci_cp_accept_conn_req {
245         bdaddr_t bdaddr;
246         __u8     role;
247 } __attribute__ ((packed));
248
249 #define HCI_OP_REJECT_CONN_REQ          0x040a
250 struct hci_cp_reject_conn_req {
251         bdaddr_t bdaddr;
252         __u8     reason;
253 } __attribute__ ((packed));
254
255 #define HCI_OP_LINK_KEY_REPLY           0x040b
256 struct hci_cp_link_key_reply {
257         bdaddr_t bdaddr;
258         __u8     link_key[16];
259 } __attribute__ ((packed));
260
261 #define HCI_OP_LINK_KEY_NEG_REPLY       0x040c
262 struct hci_cp_link_key_neg_reply {
263         bdaddr_t bdaddr;
264 } __attribute__ ((packed));
265
266 #define HCI_OP_PIN_CODE_REPLY           0x040d
267 struct 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
274 struct hci_cp_pin_code_neg_reply {
275         bdaddr_t bdaddr;
276 } __attribute__ ((packed));
277
278 #define HCI_OP_CHANGE_CONN_PTYPE        0x040f
279 struct hci_cp_change_conn_ptype {
280         __le16   handle;
281         __le16   pkt_type;
282 } __attribute__ ((packed));
283
284 #define HCI_OP_AUTH_REQUESTED           0x0411
285 struct hci_cp_auth_requested {
286         __le16   handle;
287 } __attribute__ ((packed));
288
289 #define HCI_OP_SET_CONN_ENCRYPT         0x0413
290 struct hci_cp_set_conn_encrypt {
291         __le16   handle;
292         __u8     encrypt;
293 } __attribute__ ((packed));
294
295 #define HCI_OP_CHANGE_CONN_LINK_KEY     0x0415
296 struct hci_cp_change_conn_link_key {
297         __le16   handle;
298 } __attribute__ ((packed));
299
300 #define HCI_OP_REMOTE_NAME_REQ          0x0419
301 struct 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
309 struct hci_cp_remote_name_req_cancel {
310         bdaddr_t bdaddr;
311 } __attribute__ ((packed));
312
313 #define HCI_OP_READ_REMOTE_FEATURES     0x041b
314 struct hci_cp_read_remote_features {
315         __le16   handle;
316 } __attribute__ ((packed));
317
318 #define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
319 struct hci_cp_read_remote_ext_features {
320         __le16   handle;
321         __u8     page;
322 } __attribute__ ((packed));
323
324 #define HCI_OP_READ_REMOTE_VERSION      0x041d
325 struct hci_cp_read_remote_version {
326         __le16   handle;
327 } __attribute__ ((packed));
328
329 #define HCI_OP_SETUP_SYNC_CONN          0x0428
330 struct 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
341 struct 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
352 struct hci_cp_reject_sync_conn_req {
353         bdaddr_t bdaddr;
354         __u8     reason;
355 } __attribute__ ((packed));
356
357 #define HCI_OP_SNIFF_MODE               0x0803
358 struct 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
367 struct hci_cp_exit_sniff_mode {
368         __le16   handle;
369 } __attribute__ ((packed));
370
371 #define HCI_OP_ROLE_DISCOVERY           0x0809
372 struct hci_cp_role_discovery {
373         __le16   handle;
374 } __attribute__ ((packed));
375 struct hci_rp_role_discovery {
376         __u8     status;
377         __le16   handle;
378         __u8     role;
379 } __attribute__ ((packed));
380
381 #define HCI_OP_SWITCH_ROLE              0x080b
382 struct hci_cp_switch_role {
383         bdaddr_t bdaddr;
384         __u8     role;
385 } __attribute__ ((packed));
386
387 #define HCI_OP_READ_LINK_POLICY         0x080c
388 struct hci_cp_read_link_policy {
389         __le16   handle;
390 } __attribute__ ((packed));
391 struct 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
398 struct hci_cp_write_link_policy {
399         __le16   handle;
400         __le16   policy;
401 } __attribute__ ((packed));
402 struct hci_rp_write_link_policy {
403         __u8     status;
404         __le16   handle;
405 } __attribute__ ((packed));
406
407 #define HCI_OP_READ_DEF_LINK_POLICY     0x080e
408 struct 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
414 struct hci_cp_write_def_link_policy {
415         __le16   policy;
416 } __attribute__ ((packed));
417
418 #define HCI_OP_SNIFF_SUBRATE            0x0811
419 struct 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
427 struct 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
434 struct 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
454 #define HCI_OP_WRITE_LOCAL_NAME         0x0c13
455 struct hci_cp_write_local_name {
456         __u8     name[248];
457 } __attribute__ ((packed));
458
459 #define HCI_OP_READ_LOCAL_NAME          0x0c14
460 struct 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
488 struct hci_rp_read_class_of_dev {
489         __u8     status;
490         __u8     dev_class[3];
491 } __attribute__ ((packed));
492
493 #define HCI_OP_WRITE_CLASS_OF_DEV       0x0c24
494 struct hci_cp_write_class_of_dev {
495         __u8     dev_class[3];
496 } __attribute__ ((packed));
497
498 #define HCI_OP_READ_VOICE_SETTING       0x0c25
499 struct hci_rp_read_voice_setting {
500         __u8     status;
501         __le16   voice_setting;
502 } __attribute__ ((packed));
503
504 #define HCI_OP_WRITE_VOICE_SETTING      0x0c26
505 struct hci_cp_write_voice_setting {
506         __le16   voice_setting;
507 } __attribute__ ((packed));
508
509 #define HCI_OP_HOST_BUFFER_SIZE         0x0c33
510 struct hci_cp_host_buffer_size {
511         __le16   acl_mtu;
512         __u8     sco_mtu;
513         __le16   acl_max_pkt;
514         __le16   sco_max_pkt;
515 } __attribute__ ((packed));
516
517 #define HCI_OP_READ_SSP_MODE            0x0c55
518 struct hci_rp_read_ssp_mode {
519         __u8     status;
520         __u8     mode;
521 } __attribute__ ((packed));
522
523 #define HCI_OP_WRITE_SSP_MODE           0x0c56
524 struct hci_cp_write_ssp_mode {
525         __u8     mode;
526 } __attribute__ ((packed));
527
528 #define HCI_OP_READ_LOCAL_VERSION       0x1001
529 struct hci_rp_read_local_version {
530         __u8     status;
531         __u8     hci_ver;
532         __le16   hci_rev;
533         __u8     lmp_ver;
534         __le16   manufacturer;
535         __le16   lmp_subver;
536 } __attribute__ ((packed));
537
538 #define HCI_OP_READ_LOCAL_COMMANDS      0x1002
539 struct hci_rp_read_local_commands {
540         __u8     status;
541         __u8     commands[64];
542 } __attribute__ ((packed));
543
544 #define HCI_OP_READ_LOCAL_FEATURES      0x1003
545 struct 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
551 struct 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
559 struct 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
568 struct hci_rp_read_bd_addr {
569         __u8     status;
570         bdaddr_t bdaddr;
571 } __attribute__ ((packed));
572
573 /* ---- HCI Events ---- */
574 #define HCI_EV_INQUIRY_COMPLETE         0x01
575
576 #define HCI_EV_INQUIRY_RESULT           0x02
577 struct 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];
583         __le16   clock_offset;
584 } __attribute__ ((packed));
585
586 #define HCI_EV_CONN_COMPLETE            0x03
587 struct 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
596 struct 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
603 struct hci_ev_disconn_complete {
604         __u8     status;
605         __le16   handle;
606         __u8     reason;
607 } __attribute__ ((packed));
608
609 #define HCI_EV_AUTH_COMPLETE            0x06
610 struct hci_ev_auth_complete {
611         __u8     status;
612         __le16   handle;
613 } __attribute__ ((packed));
614
615 #define HCI_EV_REMOTE_NAME              0x07
616 struct 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
623 struct 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
630 struct hci_ev_change_link_key_complete {
631         __u8     status;
632         __le16   handle;
633 } __attribute__ ((packed));
634
635 #define HCI_EV_REMOTE_FEATURES          0x0b
636 struct 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
643 struct 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
652 struct hci_qos {
653         __u8     service_type;
654         __u32    token_rate;
655         __u32    peak_bandwidth;
656         __u32    latency;
657         __u32    delay_variation;
658 } __attribute__ ((packed));
659 struct 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
666 struct hci_ev_cmd_complete {
667         __u8     ncmd;
668         __le16   opcode;
669 } __attribute__ ((packed));
670
671 #define HCI_EV_CMD_STATUS               0x0f
672 struct hci_ev_cmd_status {
673         __u8     status;
674         __u8     ncmd;
675         __le16   opcode;
676 } __attribute__ ((packed));
677
678 #define HCI_EV_ROLE_CHANGE              0x12
679 struct 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
686 struct hci_ev_num_comp_pkts {
687         __u8     num_hndl;
688         /* variable length part */
689 } __attribute__ ((packed));
690
691 #define HCI_EV_MODE_CHANGE              0x14
692 struct 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
700 struct hci_ev_pin_code_req {
701         bdaddr_t bdaddr;
702 } __attribute__ ((packed));
703
704 #define HCI_EV_LINK_KEY_REQ             0x17
705 struct hci_ev_link_key_req {
706         bdaddr_t bdaddr;
707 } __attribute__ ((packed));
708
709 #define HCI_EV_LINK_KEY_NOTIFY          0x18
710 struct 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
717 struct hci_ev_clock_offset {
718         __u8     status;
719         __le16   handle;
720         __le16   clock_offset;
721 } __attribute__ ((packed));
722
723 #define HCI_EV_PKT_TYPE_CHANGE          0x1d
724 struct hci_ev_pkt_type_change {
725         __u8     status;
726         __le16   handle;
727         __le16   pkt_type;
728 } __attribute__ ((packed));
729
730 #define HCI_EV_PSCAN_REP_MODE           0x20
731 struct hci_ev_pscan_rep_mode {
732         bdaddr_t bdaddr;
733         __u8     pscan_rep_mode;
734 } __attribute__ ((packed));
735
736 #define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
737 struct inquiry_info_with_rssi {
738         bdaddr_t bdaddr;
739         __u8     pscan_rep_mode;
740         __u8     pscan_period_mode;
741         __u8     dev_class[3];
742         __le16   clock_offset;
743         __s8     rssi;
744 } __attribute__ ((packed));
745 struct 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];
751         __le16   clock_offset;
752         __s8     rssi;
753 } __attribute__ ((packed));
754
755 #define HCI_EV_REMOTE_EXT_FEATURES      0x23
756 struct 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
765 struct 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
778 struct 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
788 struct 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
798 struct extended_inquiry_info {
799         bdaddr_t bdaddr;
800         __u8     pscan_rep_mode;
801         __u8     pscan_period_mode;
802         __u8     dev_class[3];
803         __le16   clock_offset;
804         __s8     rssi;
805         __u8     data[240];
806 } __attribute__ ((packed));
807
808 #define HCI_EV_IO_CAPA_REQUEST          0x31
809 struct hci_ev_io_capa_request {
810         bdaddr_t bdaddr;
811 } __attribute__ ((packed));
812
813 #define HCI_EV_SIMPLE_PAIR_COMPLETE     0x36
814 struct hci_ev_simple_pair_complete {
815         __u8     status;
816         bdaddr_t bdaddr;
817 } __attribute__ ((packed));
818
819 #define HCI_EV_REMOTE_HOST_FEATURES     0x3d
820 struct hci_ev_remote_host_features {
821         bdaddr_t bdaddr;
822         __u8     features[8];
823 } __attribute__ ((packed));
824
825 /* Internal events generated by Bluetooth stack */
826 #define HCI_EV_STACK_INTERNAL   0xfd
827 struct hci_ev_stack_internal {
828         __u16    type;
829         __u8     data[0];
830 } __attribute__ ((packed));
831
832 #define HCI_EV_SI_DEVICE        0x01
833 struct hci_ev_si_device {
834         __u16    event;
835         __u16    dev_id;
836 } __attribute__ ((packed));
837
838 #define HCI_EV_SI_SECURITY      0x02
839 struct hci_ev_si_security {
840         __u16    event;
841         __u16    proto;
842         __u16    subproto;
843         __u8     incoming;
844 } __attribute__ ((packed));
845
846 /* ---- HCI Packet structures ---- */
847 #define HCI_COMMAND_HDR_SIZE 3
848 #define HCI_EVENT_HDR_SIZE   2
849 #define HCI_ACL_HDR_SIZE     4
850 #define HCI_SCO_HDR_SIZE     3
851
852 struct hci_command_hdr {
853         __le16  opcode;         /* OCF & OGF */
854         __u8    plen;
855 } __attribute__ ((packed));
856
857 struct hci_event_hdr {
858         __u8    evt;
859         __u8    plen;
860 } __attribute__ ((packed));
861
862 struct hci_acl_hdr {
863         __le16  handle;         /* Handle & Flags(PB, BC) */
864         __le16  dlen;
865 } __attribute__ ((packed));
866
867 struct hci_sco_hdr {
868         __le16  handle;
869         __u8    dlen;
870 } __attribute__ ((packed));
871
872 #ifdef __KERNEL__
873 #include <linux/skbuff.h>
874 static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
875 {
876         return (struct hci_event_hdr *) skb->data;
877 }
878
879 static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
880 {
881         return (struct hci_acl_hdr *) skb->data;
882 }
883
884 static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
885 {
886         return (struct hci_sco_hdr *) skb->data;
887 }
888 #endif
889
890 /* Command opcode pack/unpack */
891 #define hci_opcode_pack(ogf, ocf)       (__u16) ((ocf & 0x03ff)|(ogf << 10))
892 #define hci_opcode_ogf(op)              (op >> 10)
893 #define hci_opcode_ocf(op)              (op & 0x03ff)
894
895 /* ACL handle and flags pack/unpack */
896 #define hci_handle_pack(h, f)   (__u16) ((h & 0x0fff)|(f << 12))
897 #define hci_handle(h)           (h & 0x0fff)
898 #define hci_flags(h)            (h >> 12)
899
900 /* ---- HCI Sockets ---- */
901
902 /* Socket options */
903 #define HCI_DATA_DIR    1
904 #define HCI_FILTER      2
905 #define HCI_TIME_STAMP  3
906
907 /* CMSG flags */
908 #define HCI_CMSG_DIR    0x0001
909 #define HCI_CMSG_TSTAMP 0x0002
910
911 struct sockaddr_hci {
912         sa_family_t    hci_family;
913         unsigned short hci_dev;
914 };
915 #define HCI_DEV_NONE    0xffff
916
917 struct hci_filter {
918         unsigned long type_mask;
919         unsigned long event_mask[2];
920         __le16 opcode;
921 };
922
923 struct hci_ufilter {
924         __u32  type_mask;
925         __u32  event_mask[2];
926         __le16 opcode;
927 };
928
929 #define HCI_FLT_TYPE_BITS       31
930 #define HCI_FLT_EVENT_BITS      63
931 #define HCI_FLT_OGF_BITS        63
932 #define HCI_FLT_OCF_BITS        127
933
934 /* ---- HCI Ioctl requests structures ---- */
935 struct hci_dev_stats {
936         __u32 err_rx;
937         __u32 err_tx;
938         __u32 cmd_tx;
939         __u32 evt_rx;
940         __u32 acl_tx;
941         __u32 acl_rx;
942         __u32 sco_tx;
943         __u32 sco_rx;
944         __u32 byte_rx;
945         __u32 byte_tx;
946 };
947
948 struct hci_dev_info {
949         __u16 dev_id;
950         char  name[8];
951
952         bdaddr_t bdaddr;
953
954         __u32 flags;
955         __u8  type;
956
957         __u8  features[8];
958
959         __u32 pkt_type;
960         __u32 link_policy;
961         __u32 link_mode;
962
963         __u16 acl_mtu;
964         __u16 acl_pkts;
965         __u16 sco_mtu;
966         __u16 sco_pkts;
967
968         struct hci_dev_stats stat;
969 };
970
971 struct hci_conn_info {
972         __u16    handle;
973         bdaddr_t bdaddr;
974         __u8     type;
975         __u8     out;
976         __u16    state;
977         __u32    link_mode;
978 };
979
980 struct hci_dev_req {
981         __u16  dev_id;
982         __u32  dev_opt;
983 };
984
985 struct hci_dev_list_req {
986         __u16  dev_num;
987         struct hci_dev_req dev_req[0];  /* hci_dev_req structures */
988 };
989
990 struct hci_conn_list_req {
991         __u16  dev_id;
992         __u16  conn_num;
993         struct hci_conn_info conn_info[0];
994 };
995
996 struct hci_conn_info_req {
997         bdaddr_t bdaddr;
998         __u8     type;
999         struct   hci_conn_info conn_info[0];
1000 };
1001
1002 struct hci_inquiry_req {
1003         __u16 dev_id;
1004         __u16 flags;
1005         __u8  lap[3];
1006         __u8  length;
1007         __u8  num_rsp;
1008 };
1009 #define IREQ_CACHE_FLUSH 0x0001
1010
1011 #endif /* __HCI_H */