[Bluetooth] Track connection packet type changes
[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_SNIFF_SUBRATE            0x0811
408 struct hci_cp_sniff_subrate {
409         __le16   handle;
410         __le16   max_latency;
411         __le16   min_remote_timeout;
412         __le16   min_local_timeout;
413 } __attribute__ ((packed));
414
415 #define HCI_OP_SET_EVENT_MASK           0x0c01
416 struct hci_cp_set_event_mask {
417         __u8     mask[8];
418 } __attribute__ ((packed));
419
420 #define HCI_OP_RESET                    0x0c03
421
422 #define HCI_OP_SET_EVENT_FLT            0x0c05
423 struct hci_cp_set_event_flt {
424         __u8     flt_type;
425         __u8     cond_type;
426         __u8     condition[0];
427 } __attribute__ ((packed));
428
429 /* Filter types */
430 #define HCI_FLT_CLEAR_ALL       0x00
431 #define HCI_FLT_INQ_RESULT      0x01
432 #define HCI_FLT_CONN_SETUP      0x02
433
434 /* CONN_SETUP Condition types */
435 #define HCI_CONN_SETUP_ALLOW_ALL        0x00
436 #define HCI_CONN_SETUP_ALLOW_CLASS      0x01
437 #define HCI_CONN_SETUP_ALLOW_BDADDR     0x02
438
439 /* CONN_SETUP Conditions */
440 #define HCI_CONN_SETUP_AUTO_OFF 0x01
441 #define HCI_CONN_SETUP_AUTO_ON  0x02
442
443 #define HCI_OP_WRITE_LOCAL_NAME         0x0c13
444 struct hci_cp_write_local_name {
445         __u8     name[248];
446 } __attribute__ ((packed));
447
448 #define HCI_OP_READ_LOCAL_NAME          0x0c14
449 struct hci_rp_read_local_name {
450         __u8     status;
451         __u8     name[248];
452 } __attribute__ ((packed));
453
454 #define HCI_OP_WRITE_CA_TIMEOUT         0x0c16
455
456 #define HCI_OP_WRITE_PG_TIMEOUT         0x0c18
457
458 #define HCI_OP_WRITE_SCAN_ENABLE        0x0c1a
459         #define SCAN_DISABLED           0x00
460         #define SCAN_INQUIRY            0x01
461         #define SCAN_PAGE               0x02
462
463 #define HCI_OP_READ_AUTH_ENABLE         0x0c1f
464
465 #define HCI_OP_WRITE_AUTH_ENABLE        0x0c20
466         #define AUTH_DISABLED           0x00
467         #define AUTH_ENABLED            0x01
468
469 #define HCI_OP_READ_ENCRYPT_MODE        0x0c21
470
471 #define HCI_OP_WRITE_ENCRYPT_MODE       0x0c22
472         #define ENCRYPT_DISABLED        0x00
473         #define ENCRYPT_P2P             0x01
474         #define ENCRYPT_BOTH            0x02
475
476 #define HCI_OP_READ_CLASS_OF_DEV        0x0c23
477 struct hci_rp_read_class_of_dev {
478         __u8     status;
479         __u8     dev_class[3];
480 } __attribute__ ((packed));
481
482 #define HCI_OP_WRITE_CLASS_OF_DEV       0x0c24
483 struct hci_cp_write_class_of_dev {
484         __u8     dev_class[3];
485 } __attribute__ ((packed));
486
487 #define HCI_OP_READ_VOICE_SETTING       0x0c25
488 struct hci_rp_read_voice_setting {
489         __u8     status;
490         __le16   voice_setting;
491 } __attribute__ ((packed));
492
493 #define HCI_OP_WRITE_VOICE_SETTING      0x0c26
494 struct hci_cp_write_voice_setting {
495         __le16   voice_setting;
496 } __attribute__ ((packed));
497
498 #define HCI_OP_HOST_BUFFER_SIZE         0x0c33
499 struct hci_cp_host_buffer_size {
500         __le16   acl_mtu;
501         __u8     sco_mtu;
502         __le16   acl_max_pkt;
503         __le16   sco_max_pkt;
504 } __attribute__ ((packed));
505
506 #define HCI_OP_READ_LOCAL_VERSION       0x1001
507 struct hci_rp_read_local_version {
508         __u8     status;
509         __u8     hci_ver;
510         __le16   hci_rev;
511         __u8     lmp_ver;
512         __le16   manufacturer;
513         __le16   lmp_subver;
514 } __attribute__ ((packed));
515
516 #define HCI_OP_READ_LOCAL_COMMANDS      0x1002
517 struct hci_rp_read_local_commands {
518         __u8     status;
519         __u8     commands[64];
520 } __attribute__ ((packed));
521
522 #define HCI_OP_READ_LOCAL_FEATURES      0x1003
523 struct hci_rp_read_local_features {
524         __u8     status;
525         __u8     features[8];
526 } __attribute__ ((packed));
527
528 #define HCI_OP_READ_LOCAL_EXT_FEATURES  0x1004
529 struct hci_rp_read_local_ext_features {
530         __u8     status;
531         __u8     page;
532         __u8     max_page;
533         __u8     features[8];
534 } __attribute__ ((packed));
535
536 #define HCI_OP_READ_BUFFER_SIZE         0x1005
537 struct hci_rp_read_buffer_size {
538         __u8     status;
539         __le16   acl_mtu;
540         __u8     sco_mtu;
541         __le16   acl_max_pkt;
542         __le16   sco_max_pkt;
543 } __attribute__ ((packed));
544
545 #define HCI_OP_READ_BD_ADDR             0x1009
546 struct hci_rp_read_bd_addr {
547         __u8     status;
548         bdaddr_t bdaddr;
549 } __attribute__ ((packed));
550
551 /* ---- HCI Events ---- */
552 #define HCI_EV_INQUIRY_COMPLETE         0x01
553
554 #define HCI_EV_INQUIRY_RESULT           0x02
555 struct inquiry_info {
556         bdaddr_t bdaddr;
557         __u8     pscan_rep_mode;
558         __u8     pscan_period_mode;
559         __u8     pscan_mode;
560         __u8     dev_class[3];
561         __le16   clock_offset;
562 } __attribute__ ((packed));
563
564 #define HCI_EV_CONN_COMPLETE            0x03
565 struct hci_ev_conn_complete {
566         __u8     status;
567         __le16   handle;
568         bdaddr_t bdaddr;
569         __u8     link_type;
570         __u8     encr_mode;
571 } __attribute__ ((packed));
572
573 #define HCI_EV_CONN_REQUEST             0x04
574 struct hci_ev_conn_request {
575         bdaddr_t bdaddr;
576         __u8     dev_class[3];
577         __u8     link_type;
578 } __attribute__ ((packed));
579
580 #define HCI_EV_DISCONN_COMPLETE         0x05
581 struct hci_ev_disconn_complete {
582         __u8     status;
583         __le16   handle;
584         __u8     reason;
585 } __attribute__ ((packed));
586
587 #define HCI_EV_AUTH_COMPLETE            0x06
588 struct hci_ev_auth_complete {
589         __u8     status;
590         __le16   handle;
591 } __attribute__ ((packed));
592
593 #define HCI_EV_REMOTE_NAME              0x07
594 struct hci_ev_remote_name {
595         __u8     status;
596         bdaddr_t bdaddr;
597         __u8     name[248];
598 } __attribute__ ((packed));
599
600 #define HCI_EV_ENCRYPT_CHANGE           0x08
601 struct hci_ev_encrypt_change {
602         __u8     status;
603         __le16   handle;
604         __u8     encrypt;
605 } __attribute__ ((packed));
606
607 #define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
608 struct hci_ev_change_link_key_complete {
609         __u8     status;
610         __le16   handle;
611 } __attribute__ ((packed));
612
613 #define HCI_EV_REMOTE_FEATURES          0x0b
614 struct hci_ev_remote_features {
615         __u8     status;
616         __le16   handle;
617         __u8     features[8];
618 } __attribute__ ((packed));
619
620 #define HCI_EV_REMOTE_VERSION           0x0c
621 struct hci_ev_remote_version {
622         __u8     status;
623         __le16   handle;
624         __u8     lmp_ver;
625         __le16   manufacturer;
626         __le16   lmp_subver;
627 } __attribute__ ((packed));
628
629 #define HCI_EV_QOS_SETUP_COMPLETE       0x0d
630 struct hci_qos {
631         __u8     service_type;
632         __u32    token_rate;
633         __u32    peak_bandwidth;
634         __u32    latency;
635         __u32    delay_variation;
636 } __attribute__ ((packed));
637 struct hci_ev_qos_setup_complete {
638         __u8     status;
639         __le16   handle;
640         struct   hci_qos qos;
641 } __attribute__ ((packed));
642
643 #define HCI_EV_CMD_COMPLETE             0x0e
644 struct hci_ev_cmd_complete {
645         __u8     ncmd;
646         __le16   opcode;
647 } __attribute__ ((packed));
648
649 #define HCI_EV_CMD_STATUS               0x0f
650 struct hci_ev_cmd_status {
651         __u8     status;
652         __u8     ncmd;
653         __le16   opcode;
654 } __attribute__ ((packed));
655
656 #define HCI_EV_ROLE_CHANGE              0x12
657 struct hci_ev_role_change {
658         __u8     status;
659         bdaddr_t bdaddr;
660         __u8     role;
661 } __attribute__ ((packed));
662
663 #define HCI_EV_NUM_COMP_PKTS            0x13
664 struct hci_ev_num_comp_pkts {
665         __u8     num_hndl;
666         /* variable length part */
667 } __attribute__ ((packed));
668
669 #define HCI_EV_MODE_CHANGE              0x14
670 struct hci_ev_mode_change {
671         __u8     status;
672         __le16   handle;
673         __u8     mode;
674         __le16   interval;
675 } __attribute__ ((packed));
676
677 #define HCI_EV_PIN_CODE_REQ             0x16
678 struct hci_ev_pin_code_req {
679         bdaddr_t bdaddr;
680 } __attribute__ ((packed));
681
682 #define HCI_EV_LINK_KEY_REQ             0x17
683 struct hci_ev_link_key_req {
684         bdaddr_t bdaddr;
685 } __attribute__ ((packed));
686
687 #define HCI_EV_LINK_KEY_NOTIFY          0x18
688 struct hci_ev_link_key_notify {
689         bdaddr_t bdaddr;
690         __u8     link_key[16];
691         __u8     key_type;
692 } __attribute__ ((packed));
693
694 #define HCI_EV_CLOCK_OFFSET             0x1c
695 struct hci_ev_clock_offset {
696         __u8     status;
697         __le16   handle;
698         __le16   clock_offset;
699 } __attribute__ ((packed));
700
701 #define HCI_EV_PKT_TYPE_CHANGE          0x1d
702 struct hci_ev_pkt_type_change {
703         __u8     status;
704         __le16   handle;
705         __le16   pkt_type;
706 } __attribute__ ((packed));
707
708 #define HCI_EV_PSCAN_REP_MODE           0x20
709 struct hci_ev_pscan_rep_mode {
710         bdaddr_t bdaddr;
711         __u8     pscan_rep_mode;
712 } __attribute__ ((packed));
713
714 #define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
715 struct inquiry_info_with_rssi {
716         bdaddr_t bdaddr;
717         __u8     pscan_rep_mode;
718         __u8     pscan_period_mode;
719         __u8     dev_class[3];
720         __le16   clock_offset;
721         __s8     rssi;
722 } __attribute__ ((packed));
723 struct inquiry_info_with_rssi_and_pscan_mode {
724         bdaddr_t bdaddr;
725         __u8     pscan_rep_mode;
726         __u8     pscan_period_mode;
727         __u8     pscan_mode;
728         __u8     dev_class[3];
729         __le16   clock_offset;
730         __s8     rssi;
731 } __attribute__ ((packed));
732
733 #define HCI_EV_REMOTE_EXT_FEATURES      0x23
734 struct hci_ev_remote_ext_features {
735         __u8     status;
736         __le16   handle;
737         __u8     page;
738         __u8     max_page;
739         __u8     features[8];
740 } __attribute__ ((packed));
741
742 #define HCI_EV_SYNC_CONN_COMPLETE       0x2c
743 struct hci_ev_sync_conn_complete {
744         __u8     status;
745         __le16   handle;
746         bdaddr_t bdaddr;
747         __u8     link_type;
748         __u8     tx_interval;
749         __u8     retrans_window;
750         __le16   rx_pkt_len;
751         __le16   tx_pkt_len;
752         __u8     air_mode;
753 } __attribute__ ((packed));
754
755 #define HCI_EV_SYNC_CONN_CHANGED        0x2d
756 struct hci_ev_sync_conn_changed {
757         __u8     status;
758         __le16   handle;
759         __u8     tx_interval;
760         __u8     retrans_window;
761         __le16   rx_pkt_len;
762         __le16   tx_pkt_len;
763 } __attribute__ ((packed));
764
765 #define HCI_EV_SNIFF_SUBRATE            0x2e
766 struct hci_ev_sniff_subrate {
767         __u8     status;
768         __le16   handle;
769         __le16   max_tx_latency;
770         __le16   max_rx_latency;
771         __le16   max_remote_timeout;
772         __le16   max_local_timeout;
773 } __attribute__ ((packed));
774
775 #define HCI_EV_EXTENDED_INQUIRY_RESULT  0x2f
776 struct extended_inquiry_info {
777         bdaddr_t bdaddr;
778         __u8     pscan_rep_mode;
779         __u8     pscan_period_mode;
780         __u8     dev_class[3];
781         __le16   clock_offset;
782         __s8     rssi;
783         __u8     data[240];
784 } __attribute__ ((packed));
785
786 /* Internal events generated by Bluetooth stack */
787 #define HCI_EV_STACK_INTERNAL   0xfd
788 struct hci_ev_stack_internal {
789         __u16    type;
790         __u8     data[0];
791 } __attribute__ ((packed));
792
793 #define HCI_EV_SI_DEVICE        0x01
794 struct hci_ev_si_device {
795         __u16    event;
796         __u16    dev_id;
797 } __attribute__ ((packed));
798
799 #define HCI_EV_SI_SECURITY      0x02
800 struct hci_ev_si_security {
801         __u16    event;
802         __u16    proto;
803         __u16    subproto;
804         __u8     incoming;
805 } __attribute__ ((packed));
806
807 /* ---- HCI Packet structures ---- */
808 #define HCI_COMMAND_HDR_SIZE 3
809 #define HCI_EVENT_HDR_SIZE   2
810 #define HCI_ACL_HDR_SIZE     4
811 #define HCI_SCO_HDR_SIZE     3
812
813 struct hci_command_hdr {
814         __le16  opcode;         /* OCF & OGF */
815         __u8    plen;
816 } __attribute__ ((packed));
817
818 struct hci_event_hdr {
819         __u8    evt;
820         __u8    plen;
821 } __attribute__ ((packed));
822
823 struct hci_acl_hdr {
824         __le16  handle;         /* Handle & Flags(PB, BC) */
825         __le16  dlen;
826 } __attribute__ ((packed));
827
828 struct hci_sco_hdr {
829         __le16  handle;
830         __u8    dlen;
831 } __attribute__ ((packed));
832
833 #ifdef __KERNEL__
834 #include <linux/skbuff.h>
835 static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
836 {
837         return (struct hci_event_hdr *) skb->data;
838 }
839
840 static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
841 {
842         return (struct hci_acl_hdr *) skb->data;
843 }
844
845 static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
846 {
847         return (struct hci_sco_hdr *) skb->data;
848 }
849 #endif
850
851 /* Command opcode pack/unpack */
852 #define hci_opcode_pack(ogf, ocf)       (__u16) ((ocf & 0x03ff)|(ogf << 10))
853 #define hci_opcode_ogf(op)              (op >> 10)
854 #define hci_opcode_ocf(op)              (op & 0x03ff)
855
856 /* ACL handle and flags pack/unpack */
857 #define hci_handle_pack(h, f)   (__u16) ((h & 0x0fff)|(f << 12))
858 #define hci_handle(h)           (h & 0x0fff)
859 #define hci_flags(h)            (h >> 12)
860
861 /* ---- HCI Sockets ---- */
862
863 /* Socket options */
864 #define HCI_DATA_DIR    1
865 #define HCI_FILTER      2
866 #define HCI_TIME_STAMP  3
867
868 /* CMSG flags */
869 #define HCI_CMSG_DIR    0x0001
870 #define HCI_CMSG_TSTAMP 0x0002
871
872 struct sockaddr_hci {
873         sa_family_t    hci_family;
874         unsigned short hci_dev;
875 };
876 #define HCI_DEV_NONE    0xffff
877
878 struct hci_filter {
879         unsigned long type_mask;
880         unsigned long event_mask[2];
881         __le16 opcode;
882 };
883
884 struct hci_ufilter {
885         __u32  type_mask;
886         __u32  event_mask[2];
887         __le16 opcode;
888 };
889
890 #define HCI_FLT_TYPE_BITS       31
891 #define HCI_FLT_EVENT_BITS      63
892 #define HCI_FLT_OGF_BITS        63
893 #define HCI_FLT_OCF_BITS        127
894
895 /* ---- HCI Ioctl requests structures ---- */
896 struct hci_dev_stats {
897         __u32 err_rx;
898         __u32 err_tx;
899         __u32 cmd_tx;
900         __u32 evt_rx;
901         __u32 acl_tx;
902         __u32 acl_rx;
903         __u32 sco_tx;
904         __u32 sco_rx;
905         __u32 byte_rx;
906         __u32 byte_tx;
907 };
908
909 struct hci_dev_info {
910         __u16 dev_id;
911         char  name[8];
912
913         bdaddr_t bdaddr;
914
915         __u32 flags;
916         __u8  type;
917
918         __u8  features[8];
919
920         __u32 pkt_type;
921         __u32 link_policy;
922         __u32 link_mode;
923
924         __u16 acl_mtu;
925         __u16 acl_pkts;
926         __u16 sco_mtu;
927         __u16 sco_pkts;
928
929         struct hci_dev_stats stat;
930 };
931
932 struct hci_conn_info {
933         __u16    handle;
934         bdaddr_t bdaddr;
935         __u8     type;
936         __u8     out;
937         __u16    state;
938         __u32    link_mode;
939 };
940
941 struct hci_dev_req {
942         __u16  dev_id;
943         __u32  dev_opt;
944 };
945
946 struct hci_dev_list_req {
947         __u16  dev_num;
948         struct hci_dev_req dev_req[0];  /* hci_dev_req structures */
949 };
950
951 struct hci_conn_list_req {
952         __u16  dev_id;
953         __u16  conn_num;
954         struct hci_conn_info conn_info[0];
955 };
956
957 struct hci_conn_info_req {
958         bdaddr_t bdaddr;
959         __u8     type;
960         struct   hci_conn_info conn_info[0];
961 };
962
963 struct hci_inquiry_req {
964         __u16 dev_id;
965         __u16 flags;
966         __u8  lap[3];
967         __u8  length;
968         __u8  num_rsp;
969 };
970 #define IREQ_CACHE_FLUSH 0x0001
971
972 #endif /* __HCI_H */