pandora: defconfig: update
[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 bus 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 controller types */
56 #define HCI_BREDR       0x00
57 #define HCI_AMP         0x01
58
59 /* HCI device quirks */
60 enum {
61         HCI_QUIRK_NO_RESET,
62         HCI_QUIRK_RAW_DEVICE,
63         HCI_QUIRK_FIXUP_BUFFER_SIZE
64 };
65
66 /* HCI device flags */
67 enum {
68         HCI_UP,
69         HCI_INIT,
70         HCI_RUNNING,
71
72         HCI_PSCAN,
73         HCI_ISCAN,
74         HCI_AUTH,
75         HCI_ENCRYPT,
76         HCI_INQUIRY,
77
78         HCI_RAW,
79
80         HCI_SETUP,
81         HCI_AUTO_OFF,
82         HCI_MGMT,
83         HCI_PAIRABLE,
84         HCI_SERVICE_CACHE,
85         HCI_LINK_KEYS,
86         HCI_DEBUG_KEYS,
87         HCI_UNREGISTER,
88
89         HCI_RESET,
90 };
91
92 /* HCI ioctl defines */
93 #define HCIDEVUP        _IOW('H', 201, int)
94 #define HCIDEVDOWN      _IOW('H', 202, int)
95 #define HCIDEVRESET     _IOW('H', 203, int)
96 #define HCIDEVRESTAT    _IOW('H', 204, int)
97
98 #define HCIGETDEVLIST   _IOR('H', 210, int)
99 #define HCIGETDEVINFO   _IOR('H', 211, int)
100 #define HCIGETCONNLIST  _IOR('H', 212, int)
101 #define HCIGETCONNINFO  _IOR('H', 213, int)
102 #define HCIGETAUTHINFO  _IOR('H', 215, int)
103
104 #define HCISETRAW       _IOW('H', 220, int)
105 #define HCISETSCAN      _IOW('H', 221, int)
106 #define HCISETAUTH      _IOW('H', 222, int)
107 #define HCISETENCRYPT   _IOW('H', 223, int)
108 #define HCISETPTYPE     _IOW('H', 224, int)
109 #define HCISETLINKPOL   _IOW('H', 225, int)
110 #define HCISETLINKMODE  _IOW('H', 226, int)
111 #define HCISETACLMTU    _IOW('H', 227, int)
112 #define HCISETSCOMTU    _IOW('H', 228, int)
113
114 #define HCIBLOCKADDR    _IOW('H', 230, int)
115 #define HCIUNBLOCKADDR  _IOW('H', 231, int)
116
117 #define HCIINQUIRY      _IOR('H', 240, int)
118
119 /* HCI timeouts */
120 #define HCI_CONNECT_TIMEOUT     (40000) /* 40 seconds */
121 #define HCI_DISCONN_TIMEOUT     (2000)  /* 2 seconds */
122 #define HCI_PAIRING_TIMEOUT     (60000) /* 60 seconds */
123 #define HCI_IDLE_TIMEOUT        (6000)  /* 6 seconds */
124 #define HCI_INIT_TIMEOUT        (10000) /* 10 seconds */
125 #define HCI_CMD_TIMEOUT         (1000)  /* 1 seconds */
126
127 /* HCI data types */
128 #define HCI_COMMAND_PKT         0x01
129 #define HCI_ACLDATA_PKT         0x02
130 #define HCI_SCODATA_PKT         0x03
131 #define HCI_EVENT_PKT           0x04
132 #define HCI_VENDOR_PKT          0xff
133
134 /* HCI packet types */
135 #define HCI_DM1         0x0008
136 #define HCI_DM3         0x0400
137 #define HCI_DM5         0x4000
138 #define HCI_DH1         0x0010
139 #define HCI_DH3         0x0800
140 #define HCI_DH5         0x8000
141
142 #define HCI_HV1         0x0020
143 #define HCI_HV2         0x0040
144 #define HCI_HV3         0x0080
145
146 #define SCO_PTYPE_MASK  (HCI_HV1 | HCI_HV2 | HCI_HV3)
147 #define ACL_PTYPE_MASK  (~SCO_PTYPE_MASK)
148
149 /* eSCO packet types */
150 #define ESCO_HV1        0x0001
151 #define ESCO_HV2        0x0002
152 #define ESCO_HV3        0x0004
153 #define ESCO_EV3        0x0008
154 #define ESCO_EV4        0x0010
155 #define ESCO_EV5        0x0020
156 #define ESCO_2EV3       0x0040
157 #define ESCO_3EV3       0x0080
158 #define ESCO_2EV5       0x0100
159 #define ESCO_3EV5       0x0200
160
161 #define SCO_ESCO_MASK  (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
162 #define EDR_ESCO_MASK  (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
163
164 /* ACL flags */
165 #define ACL_START_NO_FLUSH      0x00
166 #define ACL_CONT                0x01
167 #define ACL_START               0x02
168 #define ACL_ACTIVE_BCAST        0x04
169 #define ACL_PICO_BCAST          0x08
170
171 /* Baseband links */
172 #define SCO_LINK        0x00
173 #define ACL_LINK        0x01
174 #define ESCO_LINK       0x02
175 /* Low Energy links do not have defined link type. Use invented one */
176 #define LE_LINK         0x80
177
178 /* LMP features */
179 #define LMP_3SLOT       0x01
180 #define LMP_5SLOT       0x02
181 #define LMP_ENCRYPT     0x04
182 #define LMP_SOFFSET     0x08
183 #define LMP_TACCURACY   0x10
184 #define LMP_RSWITCH     0x20
185 #define LMP_HOLD        0x40
186 #define LMP_SNIFF       0x80
187
188 #define LMP_PARK        0x01
189 #define LMP_RSSI        0x02
190 #define LMP_QUALITY     0x04
191 #define LMP_SCO         0x08
192 #define LMP_HV2         0x10
193 #define LMP_HV3         0x20
194 #define LMP_ULAW        0x40
195 #define LMP_ALAW        0x80
196
197 #define LMP_CVSD        0x01
198 #define LMP_PSCHEME     0x02
199 #define LMP_PCONTROL    0x04
200
201 #define LMP_RSSI_INQ    0x40
202 #define LMP_ESCO        0x80
203
204 #define LMP_EV4         0x01
205 #define LMP_EV5         0x02
206 #define LMP_LE          0x40
207
208 #define LMP_SNIFF_SUBR  0x02
209 #define LMP_PAUSE_ENC   0x04
210 #define LMP_EDR_ESCO_2M 0x20
211 #define LMP_EDR_ESCO_3M 0x40
212 #define LMP_EDR_3S_ESCO 0x80
213
214 #define LMP_EXT_INQ     0x01
215 #define LMP_SIMUL_LE_BR 0x02
216 #define LMP_SIMPLE_PAIR 0x08
217 #define LMP_NO_FLUSH    0x40
218
219 #define LMP_LSTO        0x01
220 #define LMP_INQ_TX_PWR  0x02
221 #define LMP_EXTFEATURES 0x80
222
223 /* Extended LMP features */
224 #define LMP_HOST_LE     0x02
225
226 /* Connection modes */
227 #define HCI_CM_ACTIVE   0x0000
228 #define HCI_CM_HOLD     0x0001
229 #define HCI_CM_SNIFF    0x0002
230 #define HCI_CM_PARK     0x0003
231
232 /* Link policies */
233 #define HCI_LP_RSWITCH  0x0001
234 #define HCI_LP_HOLD     0x0002
235 #define HCI_LP_SNIFF    0x0004
236 #define HCI_LP_PARK     0x0008
237
238 /* Link modes */
239 #define HCI_LM_ACCEPT   0x8000
240 #define HCI_LM_MASTER   0x0001
241 #define HCI_LM_AUTH     0x0002
242 #define HCI_LM_ENCRYPT  0x0004
243 #define HCI_LM_TRUSTED  0x0008
244 #define HCI_LM_RELIABLE 0x0010
245 #define HCI_LM_SECURE   0x0020
246
247 /* Authentication types */
248 #define HCI_AT_NO_BONDING               0x00
249 #define HCI_AT_NO_BONDING_MITM          0x01
250 #define HCI_AT_DEDICATED_BONDING        0x02
251 #define HCI_AT_DEDICATED_BONDING_MITM   0x03
252 #define HCI_AT_GENERAL_BONDING          0x04
253 #define HCI_AT_GENERAL_BONDING_MITM     0x05
254
255 /* Link Key types */
256 #define HCI_LK_COMBINATION              0x00
257 #define HCI_LK_LOCAL_UNIT               0x01
258 #define HCI_LK_REMOTE_UNIT              0x02
259 #define HCI_LK_DEBUG_COMBINATION        0x03
260 #define HCI_LK_UNAUTH_COMBINATION       0x04
261 #define HCI_LK_AUTH_COMBINATION         0x05
262 #define HCI_LK_CHANGED_COMBINATION      0x06
263 /* The spec doesn't define types for SMP keys */
264 #define HCI_LK_SMP_LTK                  0x81
265 #define HCI_LK_SMP_IRK                  0x82
266 #define HCI_LK_SMP_CSRK                 0x83
267
268 /* -----  HCI Commands ---- */
269 #define HCI_OP_NOP                      0x0000
270
271 #define HCI_OP_INQUIRY                  0x0401
272 struct hci_cp_inquiry {
273         __u8     lap[3];
274         __u8     length;
275         __u8     num_rsp;
276 } __packed;
277
278 #define HCI_OP_INQUIRY_CANCEL           0x0402
279
280 #define HCI_OP_EXIT_PERIODIC_INQ        0x0404
281
282 #define HCI_OP_CREATE_CONN              0x0405
283 struct hci_cp_create_conn {
284         bdaddr_t bdaddr;
285         __le16   pkt_type;
286         __u8     pscan_rep_mode;
287         __u8     pscan_mode;
288         __le16   clock_offset;
289         __u8     role_switch;
290 } __packed;
291
292 #define HCI_OP_DISCONNECT               0x0406
293 struct hci_cp_disconnect {
294         __le16   handle;
295         __u8     reason;
296 } __packed;
297
298 #define HCI_OP_ADD_SCO                  0x0407
299 struct hci_cp_add_sco {
300         __le16   handle;
301         __le16   pkt_type;
302 } __packed;
303
304 #define HCI_OP_CREATE_CONN_CANCEL       0x0408
305 struct hci_cp_create_conn_cancel {
306         bdaddr_t bdaddr;
307 } __packed;
308
309 #define HCI_OP_ACCEPT_CONN_REQ          0x0409
310 struct hci_cp_accept_conn_req {
311         bdaddr_t bdaddr;
312         __u8     role;
313 } __packed;
314
315 #define HCI_OP_REJECT_CONN_REQ          0x040a
316 struct hci_cp_reject_conn_req {
317         bdaddr_t bdaddr;
318         __u8     reason;
319 } __packed;
320
321 #define HCI_OP_LINK_KEY_REPLY           0x040b
322 struct hci_cp_link_key_reply {
323         bdaddr_t bdaddr;
324         __u8     link_key[16];
325 } __packed;
326
327 #define HCI_OP_LINK_KEY_NEG_REPLY       0x040c
328 struct hci_cp_link_key_neg_reply {
329         bdaddr_t bdaddr;
330 } __packed;
331
332 #define HCI_OP_PIN_CODE_REPLY           0x040d
333 struct hci_cp_pin_code_reply {
334         bdaddr_t bdaddr;
335         __u8     pin_len;
336         __u8     pin_code[16];
337 } __packed;
338 struct hci_rp_pin_code_reply {
339         __u8     status;
340         bdaddr_t bdaddr;
341 } __packed;
342
343 #define HCI_OP_PIN_CODE_NEG_REPLY       0x040e
344 struct hci_cp_pin_code_neg_reply {
345         bdaddr_t bdaddr;
346 } __packed;
347 struct hci_rp_pin_code_neg_reply {
348         __u8     status;
349         bdaddr_t bdaddr;
350 } __packed;
351
352 #define HCI_OP_CHANGE_CONN_PTYPE        0x040f
353 struct hci_cp_change_conn_ptype {
354         __le16   handle;
355         __le16   pkt_type;
356 } __packed;
357
358 #define HCI_OP_AUTH_REQUESTED           0x0411
359 struct hci_cp_auth_requested {
360         __le16   handle;
361 } __packed;
362
363 #define HCI_OP_SET_CONN_ENCRYPT         0x0413
364 struct hci_cp_set_conn_encrypt {
365         __le16   handle;
366         __u8     encrypt;
367 } __packed;
368
369 #define HCI_OP_CHANGE_CONN_LINK_KEY     0x0415
370 struct hci_cp_change_conn_link_key {
371         __le16   handle;
372 } __packed;
373
374 #define HCI_OP_REMOTE_NAME_REQ          0x0419
375 struct hci_cp_remote_name_req {
376         bdaddr_t bdaddr;
377         __u8     pscan_rep_mode;
378         __u8     pscan_mode;
379         __le16   clock_offset;
380 } __packed;
381
382 #define HCI_OP_REMOTE_NAME_REQ_CANCEL   0x041a
383 struct hci_cp_remote_name_req_cancel {
384         bdaddr_t bdaddr;
385 } __packed;
386
387 #define HCI_OP_READ_REMOTE_FEATURES     0x041b
388 struct hci_cp_read_remote_features {
389         __le16   handle;
390 } __packed;
391
392 #define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
393 struct hci_cp_read_remote_ext_features {
394         __le16   handle;
395         __u8     page;
396 } __packed;
397
398 #define HCI_OP_READ_REMOTE_VERSION      0x041d
399 struct hci_cp_read_remote_version {
400         __le16   handle;
401 } __packed;
402
403 #define HCI_OP_SETUP_SYNC_CONN          0x0428
404 struct hci_cp_setup_sync_conn {
405         __le16   handle;
406         __le32   tx_bandwidth;
407         __le32   rx_bandwidth;
408         __le16   max_latency;
409         __le16   voice_setting;
410         __u8     retrans_effort;
411         __le16   pkt_type;
412 } __packed;
413
414 #define HCI_OP_ACCEPT_SYNC_CONN_REQ     0x0429
415 struct hci_cp_accept_sync_conn_req {
416         bdaddr_t bdaddr;
417         __le32   tx_bandwidth;
418         __le32   rx_bandwidth;
419         __le16   max_latency;
420         __le16   content_format;
421         __u8     retrans_effort;
422         __le16   pkt_type;
423 } __packed;
424
425 #define HCI_OP_REJECT_SYNC_CONN_REQ     0x042a
426 struct hci_cp_reject_sync_conn_req {
427         bdaddr_t bdaddr;
428         __u8     reason;
429 } __packed;
430
431 #define HCI_OP_IO_CAPABILITY_REPLY      0x042b
432 struct hci_cp_io_capability_reply {
433         bdaddr_t bdaddr;
434         __u8     capability;
435         __u8     oob_data;
436         __u8     authentication;
437 } __packed;
438
439 #define HCI_OP_USER_CONFIRM_REPLY               0x042c
440 struct hci_cp_user_confirm_reply {
441         bdaddr_t bdaddr;
442 } __packed;
443 struct hci_rp_user_confirm_reply {
444         __u8     status;
445         bdaddr_t bdaddr;
446 } __packed;
447
448 #define HCI_OP_USER_CONFIRM_NEG_REPLY   0x042d
449
450 #define HCI_OP_REMOTE_OOB_DATA_REPLY    0x0430
451 struct hci_cp_remote_oob_data_reply {
452         bdaddr_t bdaddr;
453         __u8     hash[16];
454         __u8     randomizer[16];
455 } __packed;
456
457 #define HCI_OP_REMOTE_OOB_DATA_NEG_REPLY        0x0433
458 struct hci_cp_remote_oob_data_neg_reply {
459         bdaddr_t bdaddr;
460 } __packed;
461
462 #define HCI_OP_IO_CAPABILITY_NEG_REPLY  0x0434
463 struct hci_cp_io_capability_neg_reply {
464         bdaddr_t bdaddr;
465         __u8     reason;
466 } __packed;
467
468 #define HCI_OP_SNIFF_MODE               0x0803
469 struct hci_cp_sniff_mode {
470         __le16   handle;
471         __le16   max_interval;
472         __le16   min_interval;
473         __le16   attempt;
474         __le16   timeout;
475 } __packed;
476
477 #define HCI_OP_EXIT_SNIFF_MODE          0x0804
478 struct hci_cp_exit_sniff_mode {
479         __le16   handle;
480 } __packed;
481
482 #define HCI_OP_ROLE_DISCOVERY           0x0809
483 struct hci_cp_role_discovery {
484         __le16   handle;
485 } __packed;
486 struct hci_rp_role_discovery {
487         __u8     status;
488         __le16   handle;
489         __u8     role;
490 } __packed;
491
492 #define HCI_OP_SWITCH_ROLE              0x080b
493 struct hci_cp_switch_role {
494         bdaddr_t bdaddr;
495         __u8     role;
496 } __packed;
497
498 #define HCI_OP_READ_LINK_POLICY         0x080c
499 struct hci_cp_read_link_policy {
500         __le16   handle;
501 } __packed;
502 struct hci_rp_read_link_policy {
503         __u8     status;
504         __le16   handle;
505         __le16   policy;
506 } __packed;
507
508 #define HCI_OP_WRITE_LINK_POLICY        0x080d
509 struct hci_cp_write_link_policy {
510         __le16   handle;
511         __le16   policy;
512 } __packed;
513 struct hci_rp_write_link_policy {
514         __u8     status;
515         __le16   handle;
516 } __packed;
517
518 #define HCI_OP_READ_DEF_LINK_POLICY     0x080e
519 struct hci_rp_read_def_link_policy {
520         __u8     status;
521         __le16   policy;
522 } __packed;
523
524 #define HCI_OP_WRITE_DEF_LINK_POLICY    0x080f
525 struct hci_cp_write_def_link_policy {
526         __le16   policy;
527 } __packed;
528
529 #define HCI_OP_SNIFF_SUBRATE            0x0811
530 struct hci_cp_sniff_subrate {
531         __le16   handle;
532         __le16   max_latency;
533         __le16   min_remote_timeout;
534         __le16   min_local_timeout;
535 } __packed;
536
537 #define HCI_OP_SET_EVENT_MASK           0x0c01
538 struct hci_cp_set_event_mask {
539         __u8     mask[8];
540 } __packed;
541
542 #define HCI_OP_RESET                    0x0c03
543
544 #define HCI_OP_SET_EVENT_FLT            0x0c05
545 struct hci_cp_set_event_flt {
546         __u8     flt_type;
547         __u8     cond_type;
548         __u8     condition[0];
549 } __packed;
550
551 /* Filter types */
552 #define HCI_FLT_CLEAR_ALL       0x00
553 #define HCI_FLT_INQ_RESULT      0x01
554 #define HCI_FLT_CONN_SETUP      0x02
555
556 /* CONN_SETUP Condition types */
557 #define HCI_CONN_SETUP_ALLOW_ALL        0x00
558 #define HCI_CONN_SETUP_ALLOW_CLASS      0x01
559 #define HCI_CONN_SETUP_ALLOW_BDADDR     0x02
560
561 /* CONN_SETUP Conditions */
562 #define HCI_CONN_SETUP_AUTO_OFF 0x01
563 #define HCI_CONN_SETUP_AUTO_ON  0x02
564
565 #define HCI_OP_DELETE_STORED_LINK_KEY   0x0c12
566 struct hci_cp_delete_stored_link_key {
567         bdaddr_t bdaddr;
568         __u8     delete_all;
569 } __packed;
570
571 #define HCI_MAX_NAME_LENGTH             248
572
573 #define HCI_OP_WRITE_LOCAL_NAME         0x0c13
574 struct hci_cp_write_local_name {
575         __u8     name[HCI_MAX_NAME_LENGTH];
576 } __packed;
577
578 #define HCI_OP_READ_LOCAL_NAME          0x0c14
579 struct hci_rp_read_local_name {
580         __u8     status;
581         __u8     name[HCI_MAX_NAME_LENGTH];
582 } __packed;
583
584 #define HCI_OP_WRITE_CA_TIMEOUT         0x0c16
585
586 #define HCI_OP_WRITE_PG_TIMEOUT         0x0c18
587
588 #define HCI_OP_WRITE_SCAN_ENABLE        0x0c1a
589         #define SCAN_DISABLED           0x00
590         #define SCAN_INQUIRY            0x01
591         #define SCAN_PAGE               0x02
592
593 #define HCI_OP_READ_AUTH_ENABLE         0x0c1f
594
595 #define HCI_OP_WRITE_AUTH_ENABLE        0x0c20
596         #define AUTH_DISABLED           0x00
597         #define AUTH_ENABLED            0x01
598
599 #define HCI_OP_READ_ENCRYPT_MODE        0x0c21
600
601 #define HCI_OP_WRITE_ENCRYPT_MODE       0x0c22
602         #define ENCRYPT_DISABLED        0x00
603         #define ENCRYPT_P2P             0x01
604         #define ENCRYPT_BOTH            0x02
605
606 #define HCI_OP_READ_CLASS_OF_DEV        0x0c23
607 struct hci_rp_read_class_of_dev {
608         __u8     status;
609         __u8     dev_class[3];
610 } __packed;
611
612 #define HCI_OP_WRITE_CLASS_OF_DEV       0x0c24
613 struct hci_cp_write_class_of_dev {
614         __u8     dev_class[3];
615 } __packed;
616
617 #define HCI_OP_READ_VOICE_SETTING       0x0c25
618 struct hci_rp_read_voice_setting {
619         __u8     status;
620         __le16   voice_setting;
621 } __packed;
622
623 #define HCI_OP_WRITE_VOICE_SETTING      0x0c26
624 struct hci_cp_write_voice_setting {
625         __le16   voice_setting;
626 } __packed;
627
628 #define HCI_OP_HOST_BUFFER_SIZE         0x0c33
629 struct hci_cp_host_buffer_size {
630         __le16   acl_mtu;
631         __u8     sco_mtu;
632         __le16   acl_max_pkt;
633         __le16   sco_max_pkt;
634 } __packed;
635
636 #define HCI_OP_WRITE_INQUIRY_MODE       0x0c45
637
638 #define HCI_MAX_EIR_LENGTH              240
639
640 #define HCI_OP_WRITE_EIR                0x0c52
641 struct hci_cp_write_eir {
642         uint8_t         fec;
643         uint8_t         data[HCI_MAX_EIR_LENGTH];
644 } __packed;
645
646 #define HCI_OP_READ_SSP_MODE            0x0c55
647 struct hci_rp_read_ssp_mode {
648         __u8     status;
649         __u8     mode;
650 } __packed;
651
652 #define HCI_OP_WRITE_SSP_MODE           0x0c56
653 struct hci_cp_write_ssp_mode {
654         __u8     mode;
655 } __packed;
656
657 #define HCI_OP_READ_LOCAL_OOB_DATA              0x0c57
658 struct hci_rp_read_local_oob_data {
659         __u8     status;
660         __u8     hash[16];
661         __u8     randomizer[16];
662 } __packed;
663
664 #define HCI_OP_READ_INQ_RSP_TX_POWER    0x0c58
665
666 #define HCI_OP_WRITE_LE_HOST_SUPPORTED  0x0c6d
667 struct hci_cp_write_le_host_supported {
668         __u8 le;
669         __u8 simul;
670 } __packed;
671
672 #define HCI_OP_READ_LOCAL_VERSION       0x1001
673 struct hci_rp_read_local_version {
674         __u8     status;
675         __u8     hci_ver;
676         __le16   hci_rev;
677         __u8     lmp_ver;
678         __le16   manufacturer;
679         __le16   lmp_subver;
680 } __packed;
681
682 #define HCI_OP_READ_LOCAL_COMMANDS      0x1002
683 struct hci_rp_read_local_commands {
684         __u8     status;
685         __u8     commands[64];
686 } __packed;
687
688 #define HCI_OP_READ_LOCAL_FEATURES      0x1003
689 struct hci_rp_read_local_features {
690         __u8     status;
691         __u8     features[8];
692 } __packed;
693
694 #define HCI_OP_READ_LOCAL_EXT_FEATURES  0x1004
695 struct hci_cp_read_local_ext_features {
696         __u8     page;
697 } __packed;
698 struct hci_rp_read_local_ext_features {
699         __u8     status;
700         __u8     page;
701         __u8     max_page;
702         __u8     features[8];
703 } __packed;
704
705 #define HCI_OP_READ_BUFFER_SIZE         0x1005
706 struct hci_rp_read_buffer_size {
707         __u8     status;
708         __le16   acl_mtu;
709         __u8     sco_mtu;
710         __le16   acl_max_pkt;
711         __le16   sco_max_pkt;
712 } __packed;
713
714 #define HCI_OP_READ_BD_ADDR             0x1009
715 struct hci_rp_read_bd_addr {
716         __u8     status;
717         bdaddr_t bdaddr;
718 } __packed;
719
720 #define HCI_OP_WRITE_PAGE_SCAN_ACTIVITY 0x0c1c
721 struct hci_cp_write_page_scan_activity {
722         __le16   interval;
723         __le16   window;
724 } __packed;
725
726 #define HCI_OP_WRITE_PAGE_SCAN_TYPE     0x0c47
727         #define PAGE_SCAN_TYPE_STANDARD         0x00
728         #define PAGE_SCAN_TYPE_INTERLACED       0x01
729
730 #define HCI_OP_LE_SET_EVENT_MASK        0x2001
731 struct hci_cp_le_set_event_mask {
732         __u8     mask[8];
733 } __packed;
734
735 #define HCI_OP_LE_READ_BUFFER_SIZE      0x2002
736 struct hci_rp_le_read_buffer_size {
737         __u8     status;
738         __le16   le_mtu;
739         __u8     le_max_pkt;
740 } __packed;
741
742 #define HCI_OP_LE_SET_SCAN_ENABLE       0x200c
743 struct hci_cp_le_set_scan_enable {
744         __u8     enable;
745         __u8     filter_dup;
746 } __packed;
747
748 #define HCI_OP_LE_CREATE_CONN           0x200d
749 struct hci_cp_le_create_conn {
750         __le16   scan_interval;
751         __le16   scan_window;
752         __u8     filter_policy;
753         __u8     peer_addr_type;
754         bdaddr_t peer_addr;
755         __u8     own_address_type;
756         __le16   conn_interval_min;
757         __le16   conn_interval_max;
758         __le16   conn_latency;
759         __le16   supervision_timeout;
760         __le16   min_ce_len;
761         __le16   max_ce_len;
762 } __packed;
763
764 #define HCI_OP_LE_CREATE_CONN_CANCEL    0x200e
765
766 #define HCI_OP_LE_CONN_UPDATE           0x2013
767 struct hci_cp_le_conn_update {
768         __le16   handle;
769         __le16   conn_interval_min;
770         __le16   conn_interval_max;
771         __le16   conn_latency;
772         __le16   supervision_timeout;
773         __le16   min_ce_len;
774         __le16   max_ce_len;
775 } __packed;
776
777 #define HCI_OP_LE_START_ENC             0x2019
778 struct hci_cp_le_start_enc {
779         __le16  handle;
780         __u8    rand[8];
781         __le16  ediv;
782         __u8    ltk[16];
783 } __packed;
784
785 #define HCI_OP_LE_LTK_REPLY             0x201a
786 struct hci_cp_le_ltk_reply {
787         __le16  handle;
788         __u8    ltk[16];
789 } __packed;
790 struct hci_rp_le_ltk_reply {
791         __u8    status;
792         __le16  handle;
793 } __packed;
794
795 #define HCI_OP_LE_LTK_NEG_REPLY         0x201b
796 struct hci_cp_le_ltk_neg_reply {
797         __le16  handle;
798 } __packed;
799 struct hci_rp_le_ltk_neg_reply {
800         __u8    status;
801         __le16  handle;
802 } __packed;
803
804 /* ---- HCI Events ---- */
805 #define HCI_EV_INQUIRY_COMPLETE         0x01
806
807 #define HCI_EV_INQUIRY_RESULT           0x02
808 struct inquiry_info {
809         bdaddr_t bdaddr;
810         __u8     pscan_rep_mode;
811         __u8     pscan_period_mode;
812         __u8     pscan_mode;
813         __u8     dev_class[3];
814         __le16   clock_offset;
815 } __packed;
816
817 #define HCI_EV_CONN_COMPLETE            0x03
818 struct hci_ev_conn_complete {
819         __u8     status;
820         __le16   handle;
821         bdaddr_t bdaddr;
822         __u8     link_type;
823         __u8     encr_mode;
824 } __packed;
825
826 #define HCI_EV_CONN_REQUEST             0x04
827 struct hci_ev_conn_request {
828         bdaddr_t bdaddr;
829         __u8     dev_class[3];
830         __u8     link_type;
831 } __packed;
832
833 #define HCI_EV_DISCONN_COMPLETE         0x05
834 struct hci_ev_disconn_complete {
835         __u8     status;
836         __le16   handle;
837         __u8     reason;
838 } __packed;
839
840 #define HCI_EV_AUTH_COMPLETE            0x06
841 struct hci_ev_auth_complete {
842         __u8     status;
843         __le16   handle;
844 } __packed;
845
846 #define HCI_EV_REMOTE_NAME              0x07
847 struct hci_ev_remote_name {
848         __u8     status;
849         bdaddr_t bdaddr;
850         __u8     name[HCI_MAX_NAME_LENGTH];
851 } __packed;
852
853 #define HCI_EV_ENCRYPT_CHANGE           0x08
854 struct hci_ev_encrypt_change {
855         __u8     status;
856         __le16   handle;
857         __u8     encrypt;
858 } __packed;
859
860 #define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
861 struct hci_ev_change_link_key_complete {
862         __u8     status;
863         __le16   handle;
864 } __packed;
865
866 #define HCI_EV_REMOTE_FEATURES          0x0b
867 struct hci_ev_remote_features {
868         __u8     status;
869         __le16   handle;
870         __u8     features[8];
871 } __packed;
872
873 #define HCI_EV_REMOTE_VERSION           0x0c
874 struct hci_ev_remote_version {
875         __u8     status;
876         __le16   handle;
877         __u8     lmp_ver;
878         __le16   manufacturer;
879         __le16   lmp_subver;
880 } __packed;
881
882 #define HCI_EV_QOS_SETUP_COMPLETE       0x0d
883 struct hci_qos {
884         __u8     service_type;
885         __u32    token_rate;
886         __u32    peak_bandwidth;
887         __u32    latency;
888         __u32    delay_variation;
889 } __packed;
890 struct hci_ev_qos_setup_complete {
891         __u8     status;
892         __le16   handle;
893         struct   hci_qos qos;
894 } __packed;
895
896 #define HCI_EV_CMD_COMPLETE             0x0e
897 struct hci_ev_cmd_complete {
898         __u8     ncmd;
899         __le16   opcode;
900 } __packed;
901
902 #define HCI_EV_CMD_STATUS               0x0f
903 struct hci_ev_cmd_status {
904         __u8     status;
905         __u8     ncmd;
906         __le16   opcode;
907 } __packed;
908
909 #define HCI_EV_ROLE_CHANGE              0x12
910 struct hci_ev_role_change {
911         __u8     status;
912         bdaddr_t bdaddr;
913         __u8     role;
914 } __packed;
915
916 #define HCI_EV_NUM_COMP_PKTS            0x13
917 struct hci_ev_num_comp_pkts {
918         __u8     num_hndl;
919         /* variable length part */
920 } __packed;
921
922 #define HCI_EV_MODE_CHANGE              0x14
923 struct hci_ev_mode_change {
924         __u8     status;
925         __le16   handle;
926         __u8     mode;
927         __le16   interval;
928 } __packed;
929
930 #define HCI_EV_PIN_CODE_REQ             0x16
931 struct hci_ev_pin_code_req {
932         bdaddr_t bdaddr;
933 } __packed;
934
935 #define HCI_EV_LINK_KEY_REQ             0x17
936 struct hci_ev_link_key_req {
937         bdaddr_t bdaddr;
938 } __packed;
939
940 #define HCI_EV_LINK_KEY_NOTIFY          0x18
941 struct hci_ev_link_key_notify {
942         bdaddr_t bdaddr;
943         __u8     link_key[16];
944         __u8     key_type;
945 } __packed;
946
947 #define HCI_EV_CLOCK_OFFSET             0x1c
948 struct hci_ev_clock_offset {
949         __u8     status;
950         __le16   handle;
951         __le16   clock_offset;
952 } __packed;
953
954 #define HCI_EV_PKT_TYPE_CHANGE          0x1d
955 struct hci_ev_pkt_type_change {
956         __u8     status;
957         __le16   handle;
958         __le16   pkt_type;
959 } __packed;
960
961 #define HCI_EV_PSCAN_REP_MODE           0x20
962 struct hci_ev_pscan_rep_mode {
963         bdaddr_t bdaddr;
964         __u8     pscan_rep_mode;
965 } __packed;
966
967 #define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
968 struct inquiry_info_with_rssi {
969         bdaddr_t bdaddr;
970         __u8     pscan_rep_mode;
971         __u8     pscan_period_mode;
972         __u8     dev_class[3];
973         __le16   clock_offset;
974         __s8     rssi;
975 } __packed;
976 struct inquiry_info_with_rssi_and_pscan_mode {
977         bdaddr_t bdaddr;
978         __u8     pscan_rep_mode;
979         __u8     pscan_period_mode;
980         __u8     pscan_mode;
981         __u8     dev_class[3];
982         __le16   clock_offset;
983         __s8     rssi;
984 } __packed;
985
986 #define HCI_EV_REMOTE_EXT_FEATURES      0x23
987 struct hci_ev_remote_ext_features {
988         __u8     status;
989         __le16   handle;
990         __u8     page;
991         __u8     max_page;
992         __u8     features[8];
993 } __packed;
994
995 #define HCI_EV_SYNC_CONN_COMPLETE       0x2c
996 struct hci_ev_sync_conn_complete {
997         __u8     status;
998         __le16   handle;
999         bdaddr_t bdaddr;
1000         __u8     link_type;
1001         __u8     tx_interval;
1002         __u8     retrans_window;
1003         __le16   rx_pkt_len;
1004         __le16   tx_pkt_len;
1005         __u8     air_mode;
1006 } __packed;
1007
1008 #define HCI_EV_SYNC_CONN_CHANGED        0x2d
1009 struct hci_ev_sync_conn_changed {
1010         __u8     status;
1011         __le16   handle;
1012         __u8     tx_interval;
1013         __u8     retrans_window;
1014         __le16   rx_pkt_len;
1015         __le16   tx_pkt_len;
1016 } __packed;
1017
1018 #define HCI_EV_SNIFF_SUBRATE            0x2e
1019 struct hci_ev_sniff_subrate {
1020         __u8     status;
1021         __le16   handle;
1022         __le16   max_tx_latency;
1023         __le16   max_rx_latency;
1024         __le16   max_remote_timeout;
1025         __le16   max_local_timeout;
1026 } __packed;
1027
1028 #define HCI_EV_EXTENDED_INQUIRY_RESULT  0x2f
1029 struct extended_inquiry_info {
1030         bdaddr_t bdaddr;
1031         __u8     pscan_rep_mode;
1032         __u8     pscan_period_mode;
1033         __u8     dev_class[3];
1034         __le16   clock_offset;
1035         __s8     rssi;
1036         __u8     data[240];
1037 } __packed;
1038
1039 #define HCI_EV_IO_CAPA_REQUEST          0x31
1040 struct hci_ev_io_capa_request {
1041         bdaddr_t bdaddr;
1042 } __packed;
1043
1044 #define HCI_EV_IO_CAPA_REPLY            0x32
1045 struct hci_ev_io_capa_reply {
1046         bdaddr_t bdaddr;
1047         __u8     capability;
1048         __u8     oob_data;
1049         __u8     authentication;
1050 } __packed;
1051
1052 #define HCI_EV_USER_CONFIRM_REQUEST     0x33
1053 struct hci_ev_user_confirm_req {
1054         bdaddr_t        bdaddr;
1055         __le32          passkey;
1056 } __packed;
1057
1058 #define HCI_EV_REMOTE_OOB_DATA_REQUEST  0x35
1059 struct hci_ev_remote_oob_data_request {
1060         bdaddr_t bdaddr;
1061 } __packed;
1062
1063 #define HCI_EV_SIMPLE_PAIR_COMPLETE     0x36
1064 struct hci_ev_simple_pair_complete {
1065         __u8     status;
1066         bdaddr_t bdaddr;
1067 } __packed;
1068
1069 #define HCI_EV_REMOTE_HOST_FEATURES     0x3d
1070 struct hci_ev_remote_host_features {
1071         bdaddr_t bdaddr;
1072         __u8     features[8];
1073 } __packed;
1074
1075 #define HCI_EV_LE_META                  0x3e
1076 struct hci_ev_le_meta {
1077         __u8     subevent;
1078 } __packed;
1079
1080 /* Low energy meta events */
1081 #define HCI_EV_LE_CONN_COMPLETE         0x01
1082 struct hci_ev_le_conn_complete {
1083         __u8     status;
1084         __le16   handle;
1085         __u8     role;
1086         __u8     bdaddr_type;
1087         bdaddr_t bdaddr;
1088         __le16   interval;
1089         __le16   latency;
1090         __le16   supervision_timeout;
1091         __u8     clk_accurancy;
1092 } __packed;
1093
1094 #define HCI_EV_LE_LTK_REQ               0x05
1095 struct hci_ev_le_ltk_req {
1096         __le16  handle;
1097         __u8    random[8];
1098         __le16  ediv;
1099 } __packed;
1100
1101 /* Advertising report event types */
1102 #define ADV_IND         0x00
1103 #define ADV_DIRECT_IND  0x01
1104 #define ADV_SCAN_IND    0x02
1105 #define ADV_NONCONN_IND 0x03
1106 #define ADV_SCAN_RSP    0x04
1107
1108 #define ADDR_LE_DEV_PUBLIC      0x00
1109 #define ADDR_LE_DEV_RANDOM      0x01
1110
1111 #define HCI_EV_LE_ADVERTISING_REPORT    0x02
1112 struct hci_ev_le_advertising_info {
1113         __u8     evt_type;
1114         __u8     bdaddr_type;
1115         bdaddr_t bdaddr;
1116         __u8     length;
1117         __u8     data[0];
1118 } __packed;
1119
1120 /* Internal events generated by Bluetooth stack */
1121 #define HCI_EV_STACK_INTERNAL   0xfd
1122 struct hci_ev_stack_internal {
1123         __u16    type;
1124         __u8     data[0];
1125 } __packed;
1126
1127 #define HCI_EV_SI_DEVICE        0x01
1128 struct hci_ev_si_device {
1129         __u16    event;
1130         __u16    dev_id;
1131 } __packed;
1132
1133 #define HCI_EV_SI_SECURITY      0x02
1134 struct hci_ev_si_security {
1135         __u16    event;
1136         __u16    proto;
1137         __u16    subproto;
1138         __u8     incoming;
1139 } __packed;
1140
1141 /* ---- HCI Packet structures ---- */
1142 #define HCI_COMMAND_HDR_SIZE 3
1143 #define HCI_EVENT_HDR_SIZE   2
1144 #define HCI_ACL_HDR_SIZE     4
1145 #define HCI_SCO_HDR_SIZE     3
1146
1147 struct hci_command_hdr {
1148         __le16  opcode;         /* OCF & OGF */
1149         __u8    plen;
1150 } __packed;
1151
1152 struct hci_event_hdr {
1153         __u8    evt;
1154         __u8    plen;
1155 } __packed;
1156
1157 struct hci_acl_hdr {
1158         __le16  handle;         /* Handle & Flags(PB, BC) */
1159         __le16  dlen;
1160 } __packed;
1161
1162 struct hci_sco_hdr {
1163         __le16  handle;
1164         __u8    dlen;
1165 } __packed;
1166
1167 #include <linux/skbuff.h>
1168 static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb)
1169 {
1170         return (struct hci_event_hdr *) skb->data;
1171 }
1172
1173 static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb)
1174 {
1175         return (struct hci_acl_hdr *) skb->data;
1176 }
1177
1178 static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
1179 {
1180         return (struct hci_sco_hdr *) skb->data;
1181 }
1182
1183 /* Command opcode pack/unpack */
1184 #define hci_opcode_pack(ogf, ocf)       (__u16) ((ocf & 0x03ff)|(ogf << 10))
1185 #define hci_opcode_ogf(op)              (op >> 10)
1186 #define hci_opcode_ocf(op)              (op & 0x03ff)
1187
1188 /* ACL handle and flags pack/unpack */
1189 #define hci_handle_pack(h, f)   (__u16) ((h & 0x0fff)|(f << 12))
1190 #define hci_handle(h)           (h & 0x0fff)
1191 #define hci_flags(h)            (h >> 12)
1192
1193 /* ---- HCI Sockets ---- */
1194
1195 /* Socket options */
1196 #define HCI_DATA_DIR    1
1197 #define HCI_FILTER      2
1198 #define HCI_TIME_STAMP  3
1199
1200 /* CMSG flags */
1201 #define HCI_CMSG_DIR    0x0001
1202 #define HCI_CMSG_TSTAMP 0x0002
1203
1204 struct sockaddr_hci {
1205         sa_family_t    hci_family;
1206         unsigned short hci_dev;
1207         unsigned short hci_channel;
1208 };
1209 #define HCI_DEV_NONE    0xffff
1210
1211 #define HCI_CHANNEL_RAW         0
1212 #define HCI_CHANNEL_CONTROL     1
1213
1214 struct hci_filter {
1215         unsigned long type_mask;
1216         unsigned long event_mask[2];
1217         __le16 opcode;
1218 };
1219
1220 struct hci_ufilter {
1221         __u32  type_mask;
1222         __u32  event_mask[2];
1223         __le16 opcode;
1224 };
1225
1226 #define HCI_FLT_TYPE_BITS       31
1227 #define HCI_FLT_EVENT_BITS      63
1228 #define HCI_FLT_OGF_BITS        63
1229 #define HCI_FLT_OCF_BITS        127
1230
1231 /* ---- HCI Ioctl requests structures ---- */
1232 struct hci_dev_stats {
1233         __u32 err_rx;
1234         __u32 err_tx;
1235         __u32 cmd_tx;
1236         __u32 evt_rx;
1237         __u32 acl_tx;
1238         __u32 acl_rx;
1239         __u32 sco_tx;
1240         __u32 sco_rx;
1241         __u32 byte_rx;
1242         __u32 byte_tx;
1243 };
1244
1245 struct hci_dev_info {
1246         __u16 dev_id;
1247         char  name[8];
1248
1249         bdaddr_t bdaddr;
1250
1251         __u32 flags;
1252         __u8  type;
1253
1254         __u8  features[8];
1255
1256         __u32 pkt_type;
1257         __u32 link_policy;
1258         __u32 link_mode;
1259
1260         __u16 acl_mtu;
1261         __u16 acl_pkts;
1262         __u16 sco_mtu;
1263         __u16 sco_pkts;
1264
1265         struct hci_dev_stats stat;
1266 };
1267
1268 struct hci_conn_info {
1269         __u16    handle;
1270         bdaddr_t bdaddr;
1271         __u8     type;
1272         __u8     out;
1273         __u16    state;
1274         __u32    link_mode;
1275 };
1276
1277 struct hci_dev_req {
1278         __u16  dev_id;
1279         __u32  dev_opt;
1280 };
1281
1282 struct hci_dev_list_req {
1283         __u16  dev_num;
1284         struct hci_dev_req dev_req[0];  /* hci_dev_req structures */
1285 };
1286
1287 struct hci_conn_list_req {
1288         __u16  dev_id;
1289         __u16  conn_num;
1290         struct hci_conn_info conn_info[0];
1291 };
1292
1293 struct hci_conn_info_req {
1294         bdaddr_t bdaddr;
1295         __u8     type;
1296         struct   hci_conn_info conn_info[0];
1297 };
1298
1299 struct hci_auth_info_req {
1300         bdaddr_t bdaddr;
1301         __u8     type;
1302 };
1303
1304 struct hci_inquiry_req {
1305         __u16 dev_id;
1306         __u16 flags;
1307         __u8  lap[3];
1308         __u8  length;
1309         __u8  num_rsp;
1310 };
1311 #define IREQ_CACHE_FLUSH 0x0001
1312
1313 #endif /* __HCI_H */