patch-2_6_7-vs1_9_1_12
[linux-2.6.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_VHCI        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
54 /* HCI device quirks */
55 enum {
56         HCI_QUIRK_RESET_ON_INIT
57 };
58
59 /* HCI device flags */
60 enum {
61         HCI_UP,
62         HCI_INIT,
63         HCI_RUNNING,
64
65         HCI_PSCAN,
66         HCI_ISCAN,
67         HCI_AUTH,
68         HCI_ENCRYPT,
69         HCI_INQUIRY,
70
71         HCI_RAW
72 };
73
74 /* HCI ioctl defines */
75 #define HCIDEVUP        _IOW('H', 201, int)
76 #define HCIDEVDOWN      _IOW('H', 202, int)
77 #define HCIDEVRESET     _IOW('H', 203, int)
78 #define HCIDEVRESTAT    _IOW('H', 204, int)
79
80 #define HCIGETDEVLIST   _IOR('H', 210, int)
81 #define HCIGETDEVINFO   _IOR('H', 211, int)
82 #define HCIGETCONNLIST  _IOR('H', 212, int)
83 #define HCIGETCONNINFO  _IOR('H', 213, int)
84
85 #define HCISETRAW       _IOW('H', 220, int)
86 #define HCISETSCAN      _IOW('H', 221, int)
87 #define HCISETAUTH      _IOW('H', 222, int)
88 #define HCISETENCRYPT   _IOW('H', 223, int)
89 #define HCISETPTYPE     _IOW('H', 224, int)
90 #define HCISETLINKPOL   _IOW('H', 225, int)
91 #define HCISETLINKMODE  _IOW('H', 226, int)
92 #define HCISETACLMTU    _IOW('H', 227, int)
93 #define HCISETSCOMTU    _IOW('H', 228, int)
94 #define HCISETRAWVND    _IOW('H', 229, int)
95
96 #define HCIINQUIRY      _IOR('H', 240, int)
97
98 /* HCI timeouts */
99 #define HCI_CONN_TIMEOUT        (HZ * 40)
100 #define HCI_DISCONN_TIMEOUT     (HZ * 2)
101 #define HCI_CONN_IDLE_TIMEOUT   (HZ * 60)
102
103 /* HCI Packet types */
104 #define HCI_COMMAND_PKT         0x01
105 #define HCI_ACLDATA_PKT         0x02
106 #define HCI_SCODATA_PKT         0x03
107 #define HCI_EVENT_PKT           0x04
108 #define HCI_UNKNOWN_PKT         0xff
109
110 /* HCI Packet types */
111 #define HCI_DM1         0x0008
112 #define HCI_DM3         0x0400
113 #define HCI_DM5         0x4000
114 #define HCI_DH1         0x0010
115 #define HCI_DH3         0x0800
116 #define HCI_DH5         0x8000
117
118 #define HCI_HV1         0x0020
119 #define HCI_HV2         0x0040
120 #define HCI_HV3         0x0080
121
122 #define SCO_PTYPE_MASK  (HCI_HV1 | HCI_HV2 | HCI_HV3)
123 #define ACL_PTYPE_MASK  (~SCO_PTYPE_MASK)
124
125 /* ACL flags */
126 #define ACL_CONT                0x01
127 #define ACL_START               0x02
128 #define ACL_ACTIVE_BCAST        0x04
129 #define ACL_PICO_BCAST          0x08
130
131 /* Baseband links */
132 #define SCO_LINK        0x00
133 #define ACL_LINK        0x01
134
135 /* LMP features */
136 #define LMP_3SLOT       0x01
137 #define LMP_5SLOT       0x02
138 #define LMP_ENCRYPT     0x04
139 #define LMP_SOFFSET     0x08
140 #define LMP_TACCURACY   0x10
141 #define LMP_RSWITCH     0x20
142 #define LMP_HOLD        0x40
143 #define LMP_SNIF        0x80
144
145 #define LMP_PARK        0x01
146 #define LMP_RSSI        0x02
147 #define LMP_QUALITY     0x04
148 #define LMP_SCO         0x08
149 #define LMP_HV2         0x10
150 #define LMP_HV3         0x20
151 #define LMP_ULAW        0x40
152 #define LMP_ALAW        0x80
153
154 #define LMP_CVSD        0x01
155 #define LMP_PSCHEME     0x02
156 #define LMP_PCONTROL    0x04
157
158 /* Link policies */
159 #define HCI_LP_RSWITCH  0x0001
160 #define HCI_LP_HOLD     0x0002
161 #define HCI_LP_SNIFF    0x0004
162 #define HCI_LP_PARK     0x0008
163
164 /* Link mode */
165 #define HCI_LM_ACCEPT   0x8000
166 #define HCI_LM_MASTER   0x0001
167 #define HCI_LM_AUTH     0x0002
168 #define HCI_LM_ENCRYPT  0x0004
169 #define HCI_LM_TRUSTED  0x0008
170
171 /* -----  HCI Commands ---- */
172 /* OGF & OCF values */
173
174 /* Informational Parameters */
175 #define OGF_INFO_PARAM  0x04
176
177 #define OCF_READ_LOCAL_VERSION  0x0001
178 struct hci_rp_read_loc_version {
179         __u8     status;
180         __u8     hci_ver;
181         __u16    hci_rev;
182         __u8     lmp_ver;
183         __u16    manufacturer;
184         __u16    lmp_subver;
185 } __attribute__ ((packed));
186
187 #define OCF_READ_LOCAL_FEATURES 0x0003
188 struct hci_rp_read_loc_features {
189         __u8 status;
190         __u8 features[8];
191 } __attribute__ ((packed));
192
193 #define OCF_READ_BUFFER_SIZE    0x0005
194 struct hci_rp_read_buffer_size {
195         __u8     status;
196         __u16    acl_mtu;
197         __u8     sco_mtu;
198         __u16    acl_max_pkt;
199         __u16    sco_max_pkt;
200 } __attribute__ ((packed));
201
202 #define OCF_READ_BD_ADDR        0x0009
203 struct hci_rp_read_bd_addr {
204         __u8     status;
205         bdaddr_t bdaddr;
206 } __attribute__ ((packed));
207
208 /* Host Controller and Baseband */
209 #define OGF_HOST_CTL    0x03
210 #define OCF_RESET               0x0003
211 #define OCF_READ_AUTH_ENABLE    0x001F
212 #define OCF_WRITE_AUTH_ENABLE   0x0020
213         #define AUTH_DISABLED           0x00
214         #define AUTH_ENABLED            0x01
215
216 #define OCF_READ_ENCRYPT_MODE   0x0021
217 #define OCF_WRITE_ENCRYPT_MODE  0x0022
218         #define ENCRYPT_DISABLED        0x00
219         #define ENCRYPT_P2P             0x01
220         #define ENCRYPT_BOTH            0x02
221
222 #define OCF_WRITE_CA_TIMEOUT    0x0016  
223 #define OCF_WRITE_PG_TIMEOUT    0x0018
224
225 #define OCF_WRITE_SCAN_ENABLE   0x001A
226         #define SCAN_DISABLED           0x00
227         #define SCAN_INQUIRY            0x01
228         #define SCAN_PAGE               0x02
229
230 #define OCF_SET_EVENT_FLT       0x0005
231 struct hci_cp_set_event_flt {
232         __u8     flt_type;
233         __u8     cond_type;
234         __u8     condition[0];
235 } __attribute__ ((packed));
236
237 /* Filter types */
238 #define HCI_FLT_CLEAR_ALL       0x00
239 #define HCI_FLT_INQ_RESULT      0x01
240 #define HCI_FLT_CONN_SETUP      0x02
241
242 /* CONN_SETUP Condition types */
243 #define HCI_CONN_SETUP_ALLOW_ALL        0x00
244 #define HCI_CONN_SETUP_ALLOW_CLASS      0x01
245 #define HCI_CONN_SETUP_ALLOW_BDADDR     0x02
246
247 /* CONN_SETUP Conditions */
248 #define HCI_CONN_SETUP_AUTO_OFF 0x01
249 #define HCI_CONN_SETUP_AUTO_ON  0x02
250
251 #define OCF_READ_CLASS_OF_DEV   0x0023
252 struct hci_rp_read_dev_class {
253         __u8     status;
254         __u8     dev_class[3];
255 } __attribute__ ((packed));
256
257 #define OCF_WRITE_CLASS_OF_DEV  0x0024
258 struct hci_cp_write_dev_class {
259         __u8     dev_class[3];
260 } __attribute__ ((packed));
261
262 #define OCF_READ_VOICE_SETTING  0x0025
263 struct hci_rp_read_voice_setting {
264         __u8    status;
265         __u16   voice_setting;
266 } __attribute__ ((packed));
267
268 #define OCF_WRITE_VOICE_SETTING 0x0026
269 struct hci_cp_write_voice_setting {
270         __u16   voice_setting;
271 } __attribute__ ((packed));
272
273 #define OCF_HOST_BUFFER_SIZE    0x0033
274 struct hci_cp_host_buffer_size {
275         __u16    acl_mtu;
276         __u8     sco_mtu;
277         __u16    acl_max_pkt;
278         __u16    sco_max_pkt;
279 } __attribute__ ((packed));
280
281 /* Link Control */
282 #define OGF_LINK_CTL    0x01 
283 #define OCF_CREATE_CONN         0x0005
284 struct hci_cp_create_conn {
285         bdaddr_t bdaddr;
286         __u16    pkt_type;
287         __u8     pscan_rep_mode;
288         __u8     pscan_mode;
289         __u16    clock_offset;
290         __u8     role_switch;
291 } __attribute__ ((packed));
292
293 #define OCF_ACCEPT_CONN_REQ     0x0009
294 struct hci_cp_accept_conn_req {
295         bdaddr_t bdaddr;
296         __u8     role;
297 } __attribute__ ((packed));
298
299 #define OCF_REJECT_CONN_REQ     0x000a
300 struct hci_cp_reject_conn_req {
301         bdaddr_t bdaddr;
302         __u8     reason;
303 } __attribute__ ((packed));
304
305 #define OCF_DISCONNECT  0x0006
306 struct hci_cp_disconnect {
307         __u16    handle;
308         __u8     reason;
309 } __attribute__ ((packed));
310
311 #define OCF_ADD_SCO     0x0007
312 struct hci_cp_add_sco {
313         __u16    handle;
314         __u16    pkt_type;
315 } __attribute__ ((packed));
316
317 #define OCF_INQUIRY             0x0001
318 struct hci_cp_inquiry {
319         __u8     lap[3];
320         __u8     length;
321         __u8     num_rsp;
322 } __attribute__ ((packed));
323
324 #define OCF_INQUIRY_CANCEL      0x0002
325
326 #define OCF_LINK_KEY_REPLY      0x000B
327 #define OCF_LINK_KEY_NEG_REPLY  0x000C
328 struct hci_cp_link_key_reply {
329         bdaddr_t bdaddr;
330         __u8     link_key[16];
331 } __attribute__ ((packed));
332
333 #define OCF_PIN_CODE_REPLY      0x000D
334 #define OCF_PIN_CODE_NEG_REPLY  0x000E
335 struct hci_cp_pin_code_reply {
336         bdaddr_t bdaddr;
337         __u8     pin_len;
338         __u8     pin_code[16];
339 } __attribute__ ((packed));
340
341 #define OCF_CHANGE_CONN_PTYPE   0x000F
342 struct hci_cp_change_conn_ptype {
343         __u16    handle;
344         __u16    pkt_type;
345 } __attribute__ ((packed));
346
347 #define OCF_AUTH_REQUESTED      0x0011
348 struct hci_cp_auth_requested {
349         __u16    handle;
350 } __attribute__ ((packed));
351
352 #define OCF_SET_CONN_ENCRYPT    0x0013
353 struct hci_cp_set_conn_encrypt {
354         __u16    handle;
355         __u8     encrypt;
356 } __attribute__ ((packed));
357
358 #define OCF_READ_REMOTE_FEATURES 0x001B
359 struct hci_cp_read_rmt_features {
360         __u16    handle;
361 } __attribute__ ((packed));
362
363 #define OCF_READ_REMOTE_VERSION 0x001D
364 struct hci_cp_read_rmt_version {
365         __u16    handle;
366 } __attribute__ ((packed));
367
368 /* Link Policy */
369 #define OGF_LINK_POLICY  0x02   
370 #define OCF_ROLE_DISCOVERY      0x0009
371 struct hci_cp_role_discovery {
372         __u16    handle;
373 } __attribute__ ((packed));
374 struct hci_rp_role_discovery {
375         __u8     status;
376         __u16    handle;
377         __u8     role;
378 } __attribute__ ((packed));
379
380 #define OCF_READ_LINK_POLICY    0x000C
381 struct hci_cp_read_link_policy {
382         __u16    handle;
383 } __attribute__ ((packed));
384 struct hci_rp_read_link_policy {
385         __u8     status;
386         __u16    handle;
387         __u16    policy;
388 } __attribute__ ((packed));
389
390 #define OCF_SWITCH_ROLE 0x000B
391 struct hci_cp_switch_role {
392         bdaddr_t bdaddr;
393         __u8     role;
394 } __attribute__ ((packed));
395
396 #define OCF_WRITE_LINK_POLICY   0x000D
397 struct hci_cp_write_link_policy {
398         __u16    handle;
399         __u16    policy;
400 } __attribute__ ((packed));
401 struct hci_rp_write_link_policy {
402         __u8     status;
403         __u16    handle;
404 } __attribute__ ((packed));
405
406 /* Status params */
407 #define OGF_STATUS_PARAM        0x05
408
409 /* Testing commands */
410 #define OGF_TESTING_CMD         0x3E
411
412 /* Vendor specific commands */
413 #define OGF_VENDOR_CMD          0x3F
414
415 /* ---- HCI Events ---- */
416 #define HCI_EV_INQUIRY_COMPLETE 0x01
417
418 #define HCI_EV_INQUIRY_RESULT   0x02
419 struct inquiry_info {
420         bdaddr_t bdaddr;
421         __u8     pscan_rep_mode;
422         __u8     pscan_period_mode;
423         __u8     pscan_mode;
424         __u8     dev_class[3];
425         __u16    clock_offset;
426 } __attribute__ ((packed));
427
428 #define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
429 struct inquiry_info_with_rssi {
430         bdaddr_t bdaddr;
431         __u8     pscan_rep_mode;
432         __u8     pscan_period_mode;
433         __u8     dev_class[3];
434         __u16    clock_offset;
435         __u8     rssi;
436 } __attribute__ ((packed));
437
438 #define HCI_EV_CONN_COMPLETE    0x03
439 struct hci_ev_conn_complete {
440         __u8     status;
441         __u16    handle;
442         bdaddr_t bdaddr;
443         __u8     link_type;
444         __u8     encr_mode;
445 } __attribute__ ((packed));
446
447 #define HCI_EV_CONN_REQUEST     0x04
448 struct hci_ev_conn_request {
449         bdaddr_t bdaddr;
450         __u8     dev_class[3];
451         __u8     link_type;
452 } __attribute__ ((packed));
453
454 #define HCI_EV_DISCONN_COMPLETE 0x05
455 struct hci_ev_disconn_complete {
456         __u8     status;
457         __u16    handle;
458         __u8     reason;
459 } __attribute__ ((packed));
460
461 #define HCI_EV_AUTH_COMPLETE    0x06
462 struct hci_ev_auth_complete {
463         __u8     status;
464         __u16    handle;
465 } __attribute__ ((packed));
466
467 #define HCI_EV_ENCRYPT_CHANGE   0x08
468 struct hci_ev_encrypt_change {
469         __u8     status;
470         __u16    handle;
471         __u8     encrypt;
472 } __attribute__ ((packed));
473
474 #define HCI_EV_QOS_SETUP_COMPLETE       0x0D
475 struct hci_qos {
476         __u8     service_type;
477         __u32    token_rate;
478         __u32    peak_bandwidth;
479         __u32    latency;
480         __u32    delay_variation;
481 } __attribute__ ((packed));
482 struct hci_ev_qos_setup_complete {
483         __u8     status;
484         __u16    handle;
485         struct   hci_qos qos;
486 } __attribute__ ((packed));
487
488 #define HCI_EV_CMD_COMPLETE     0x0E
489 struct hci_ev_cmd_complete {
490         __u8     ncmd;
491         __u16    opcode;
492 } __attribute__ ((packed));
493
494 #define HCI_EV_CMD_STATUS       0x0F
495 struct hci_ev_cmd_status {
496         __u8     status;
497         __u8     ncmd;
498         __u16    opcode;
499 } __attribute__ ((packed));
500
501 #define HCI_EV_NUM_COMP_PKTS    0x13
502 struct hci_ev_num_comp_pkts {
503         __u8     num_hndl;
504         /* variable length part */
505 } __attribute__ ((packed));
506
507 #define HCI_EV_ROLE_CHANGE      0x12
508 struct hci_ev_role_change {
509         __u8     status;
510         bdaddr_t bdaddr;
511         __u8     role;
512 } __attribute__ ((packed));
513
514 #define HCI_EV_PIN_CODE_REQ     0x16
515 struct hci_ev_pin_code_req {
516         bdaddr_t bdaddr;
517 } __attribute__ ((packed));
518
519 #define HCI_EV_LINK_KEY_REQ     0x17
520 struct hci_ev_link_key_req {
521         bdaddr_t bdaddr;
522 } __attribute__ ((packed));
523
524 #define HCI_EV_LINK_KEY_NOTIFY  0x18
525 struct hci_ev_link_key_notify {
526         bdaddr_t bdaddr;
527         __u8     link_key[16];
528         __u8     key_type;
529 } __attribute__ ((packed));
530
531 #define HCI_EV_RMT_FEATURES     0x0B
532 struct hci_ev_rmt_features {
533         __u8     status;
534         __u16    handle;
535         __u8     features[8];
536 } __attribute__ ((packed));
537
538 #define HCI_EV_RMT_VERSION      0x0C
539 struct hci_ev_rmt_version {
540         __u8     status;
541         __u16    handle;
542         __u8     lmp_ver;
543         __u16    manufacturer;
544         __u16    lmp_subver;
545 } __attribute__ ((packed));
546
547 /* Internal events generated by Bluetooth stack */
548 #define HCI_EV_STACK_INTERNAL   0xFD
549 struct hci_ev_stack_internal {
550         __u16    type;
551         __u8     data[0];
552 } __attribute__ ((packed));
553
554 #define HCI_EV_SI_DEVICE        0x01
555 struct hci_ev_si_device {
556         __u16    event;
557         __u16    dev_id;
558 } __attribute__ ((packed));
559
560 #define HCI_EV_SI_SECURITY      0x02
561 struct hci_ev_si_security {
562         __u16    event;
563         __u16    proto;
564         __u16    subproto;
565         __u8     incoming;
566 } __attribute__ ((packed));
567
568 /* ---- HCI Packet structures ---- */
569 #define HCI_COMMAND_HDR_SIZE 3
570 #define HCI_EVENT_HDR_SIZE   2
571 #define HCI_ACL_HDR_SIZE     4
572 #define HCI_SCO_HDR_SIZE     3
573
574 struct hci_command_hdr {
575         __u16   opcode;         /* OCF & OGF */
576         __u8    plen;
577 } __attribute__ ((packed));
578
579 struct hci_event_hdr {
580         __u8    evt;
581         __u8    plen;
582 } __attribute__ ((packed));
583
584 struct hci_acl_hdr {
585         __u16   handle;         /* Handle & Flags(PB, BC) */
586         __u16   dlen;
587 } __attribute__ ((packed));
588
589 struct hci_sco_hdr {
590         __u16   handle;
591         __u8    dlen;
592 } __attribute__ ((packed));
593
594 /* Command opcode pack/unpack */
595 #define hci_opcode_pack(ogf, ocf)       (__u16)((ocf & 0x03ff)|(ogf << 10))
596 #define hci_opcode_ogf(op)              (op >> 10)
597 #define hci_opcode_ocf(op)              (op & 0x03ff)
598
599 /* ACL handle and flags pack/unpack */
600 #define hci_handle_pack(h, f)   (__u16)((h & 0x0fff)|(f << 12))
601 #define hci_handle(h)           (h & 0x0fff)
602 #define hci_flags(h)            (h >> 12)
603
604 /* ---- HCI Sockets ---- */
605
606 /* Socket options */
607 #define HCI_DATA_DIR    1
608 #define HCI_FILTER      2
609 #define HCI_TIME_STAMP  3
610
611 /* CMSG flags */
612 #define HCI_CMSG_DIR    0x0001
613 #define HCI_CMSG_TSTAMP 0x0002
614
615 struct sockaddr_hci {
616         sa_family_t    hci_family;
617         unsigned short hci_dev;
618 };
619 #define HCI_DEV_NONE    0xffff
620
621 struct hci_filter {
622         unsigned long type_mask;
623         unsigned long event_mask[2];
624         __u16   opcode;
625 };
626
627 struct hci_ufilter {
628         __u32   type_mask;
629         __u32   event_mask[2];
630         __u16   opcode;
631 };
632
633 #define HCI_FLT_TYPE_BITS       31
634 #define HCI_FLT_EVENT_BITS      63
635 #define HCI_FLT_OGF_BITS        63
636 #define HCI_FLT_OCF_BITS        127
637
638 /* ---- HCI Ioctl requests structures ---- */
639 struct hci_dev_stats {
640         __u32 err_rx;
641         __u32 err_tx;
642         __u32 cmd_tx;
643         __u32 evt_rx;
644         __u32 acl_tx;
645         __u32 acl_rx;
646         __u32 sco_tx;
647         __u32 sco_rx;
648         __u32 byte_rx;
649         __u32 byte_tx;
650 };
651
652 struct hci_dev_info {
653         __u16 dev_id;
654         char  name[8];
655
656         bdaddr_t bdaddr;
657
658         __u32 flags;
659         __u8  type;
660
661         __u8  features[8];
662
663         __u32 pkt_type;
664         __u32 link_policy;
665         __u32 link_mode;
666
667         __u16 acl_mtu;
668         __u16 acl_pkts;
669         __u16 sco_mtu;
670         __u16 sco_pkts;
671
672         struct hci_dev_stats stat;
673 };
674
675 struct hci_conn_info {
676         __u16    handle;
677         bdaddr_t bdaddr;
678         __u8     type;
679         __u8     out;
680         __u16    state;
681         __u32    link_mode;
682 };
683
684 struct hci_dev_req {
685         __u16 dev_id;
686         __u32 dev_opt;
687 };
688
689 struct hci_dev_list_req {
690         __u16  dev_num;
691         struct hci_dev_req dev_req[0];  /* hci_dev_req structures */
692 };
693
694 struct hci_conn_list_req {
695         __u16  dev_id;
696         __u16  conn_num;
697         struct hci_conn_info conn_info[0];
698 };
699
700 struct hci_conn_info_req {
701         bdaddr_t bdaddr;
702         __u8     type;
703         struct   hci_conn_info conn_info[0];
704 };
705
706 struct hci_inquiry_req {
707         __u16 dev_id;
708         __u16 flags;
709         __u8  lap[3];
710         __u8  length;
711         __u8  num_rsp;
712 };
713 #define IREQ_CACHE_FLUSH 0x0001
714
715 #endif /* __HCI_H */