]> rtime.felk.cvut.cz Git - tiny-bt.git/blob - src/hciembeded.h
Version from David Plotek's bachelor thesis CD
[tiny-bt.git] / src / hciembeded.h
1 //
2 // C++ Interface: hciembeded
3 //
4 // Description: copy all structures and macros from hci.h and additional structures and macros
5 //
6 //
7 // Author: root <root@ubuntu>, (C) 2008
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 /*
13  *
14  *  BlueZ - Bluetooth protocol stack for Linux
15  *
16  *  Copyright (C) 2000-2001  Qualcomm Incorporated
17  *  Copyright (C) 2002-2003  Maxim Krasnyansky <maxk@qualcomm.com>
18  *  Copyright (C) 2002-2007  Marcel Holtmann <marcel@holtmann.org>
19  *
20  *
21  *  This program is free software; you can redistribute it and/or modify
22  *  it under the terms of the GNU General Public License as published by
23  *  the Free Software Foundation; either version 2 of the License, or
24  *  (at your option) any later version.
25  *
26  *  This program is distributed in the hope that it will be useful,
27  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
28  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  *  GNU General Public License for more details.
30  *
31  *  You should have received a copy of the GNU General Public License
32  *  along with this program; if not, write to the Free Software
33  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
34  *
35  */
36
37 #ifndef __HCI_H
38 #define __HCI_H
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 #include <sys/socket.h>
45 #include <stdint.h>
46
47
48 #define HCI_MAX_DEV     16
49
50 #define HCI_MAX_ACL_SIZE        1024
51 #define HCI_MAX_SCO_SIZE        255
52 #define HCI_MAX_EVENT_SIZE      260
53 #define HCI_MAX_FRAME_SIZE      (HCI_MAX_ACL_SIZE + 4)
54
55 /* HCI dev events */
56 #define HCI_DEV_REG     1
57 #define HCI_DEV_UNREG   2
58 #define HCI_DEV_UP      3
59 #define HCI_DEV_DOWN    4
60 #define HCI_DEV_SUSPEND 5
61 #define HCI_DEV_RESUME  6
62
63 /* HCI device types */
64 #define HCI_VIRTUAL     0
65 #define HCI_USB         1
66 #define HCI_PCCARD      2
67 #define HCI_UART        3
68 #define HCI_RS232       4
69 #define HCI_PCI         5
70 #define HCI_SDIO        6
71
72 /* HCI device flags */
73 enum {
74         HCI_UP,
75         HCI_INIT,
76         HCI_RUNNING,
77
78         HCI_PSCAN,
79         HCI_ISCAN,
80         HCI_AUTH,
81         HCI_ENCRYPT,
82         HCI_INQUIRY,
83
84         HCI_RAW,
85
86         HCI_SECMGR
87 };
88
89 /* HCI ioctl defines */
90 #define HCIDEVUP        _IOW('H', 201, int)
91 #define HCIDEVDOWN      _IOW('H', 202, int)
92 #define HCIDEVRESET     _IOW('H', 203, int)
93 #define HCIDEVRESTAT    _IOW('H', 204, int)
94
95 #define HCIGETDEVLIST   _IOR('H', 210, int)
96 #define HCIGETDEVINFO   _IOR('H', 211, int)
97 #define HCIGETCONNLIST  _IOR('H', 212, int)
98 #define HCIGETCONNINFO  _IOR('H', 213, int)
99
100 #define HCISETRAW       _IOW('H', 220, int)
101 #define HCISETSCAN      _IOW('H', 221, int)
102 #define HCISETAUTH      _IOW('H', 222, int)
103 #define HCISETENCRYPT   _IOW('H', 223, int)
104 #define HCISETPTYPE     _IOW('H', 224, int)
105 #define HCISETLINKPOL   _IOW('H', 225, int)
106 #define HCISETLINKMODE  _IOW('H', 226, int)
107 #define HCISETACLMTU    _IOW('H', 227, int)
108 #define HCISETSCOMTU    _IOW('H', 228, int)
109
110 #define HCISETSECMGR    _IOW('H', 230, int)
111
112 #define HCIINQUIRY      _IOR('H', 240, int)
113
114 #ifndef __NO_HCI_DEFS
115
116 /* HCI Packet types */
117 #define HCI_COMMAND_PKT         0x01
118 #define HCI_ACLDATA_PKT         0x02
119 #define HCI_SCODATA_PKT         0x03
120 #define HCI_EVENT_PKT           0x04
121 #define HCI_VENDOR_PKT          0xff
122
123 /* HCI Packet types */
124 #define HCI_2DH1        0x0002
125 #define HCI_3DH1        0x0004
126 #define HCI_DM1         0x0008
127 #define HCI_DH1         0x0010
128 #define HCI_2DH3        0x0100
129 #define HCI_3DH3        0x0200
130 #define HCI_DM3         0x0400
131 #define HCI_DH3         0x0800
132 #define HCI_2DH5        0x1000
133 #define HCI_3DH5        0x2000
134 #define HCI_DM5         0x4000
135 #define HCI_DH5         0x8000
136
137 #define HCI_HV1         0x0020
138 #define HCI_HV2         0x0040
139 #define HCI_HV3         0x0080
140
141 #define HCI_EV3         0x0008
142 #define HCI_EV4         0x0010
143 #define HCI_EV5         0x0020
144 #define HCI_2EV3        0x0040
145 #define HCI_3EV3        0x0080
146 #define HCI_2EV5        0x0100
147 #define HCI_3EV5        0x0200
148
149 #define SCO_PTYPE_MASK  (HCI_HV1 | HCI_HV2 | HCI_HV3)
150 #define ACL_PTYPE_MASK  (HCI_DM1 | HCI_DH1 | HCI_DM3 | HCI_DH3 | HCI_DM5 | HCI_DH5)
151
152 /* HCI Error codes */
153 #define HCI_UNKNOWN_COMMAND                     0x01
154 #define HCI_NO_CONNECTION                       0x02
155 #define HCI_HARDWARE_FAILURE                    0x03
156 #define HCI_PAGE_TIMEOUT                        0x04
157 #define HCI_AUTHENTICATION_FAILURE              0x05
158 #define HCI_PIN_OR_KEY_MISSING                  0x06
159 #define HCI_MEMORY_FULL                         0x07
160 #define HCI_CONNECTION_TIMEOUT                  0x08
161 #define HCI_MAX_NUMBER_OF_CONNECTIONS           0x09
162 #define HCI_MAX_NUMBER_OF_SCO_CONNECTIONS       0x0a
163 #define HCI_ACL_CONNECTION_EXISTS               0x0b
164 #define HCI_COMMAND_DISALLOWED                  0x0c
165 #define HCI_REJECTED_LIMITED_RESOURCES          0x0d
166 #define HCI_REJECTED_SECURITY                   0x0e
167 #define HCI_REJECTED_PERSONAL                   0x0f
168 #define HCI_HOST_TIMEOUT                        0x10
169 #define HCI_UNSUPPORTED_FEATURE                 0x11
170 #define HCI_INVALID_PARAMETERS                  0x12
171 #define HCI_OE_USER_ENDED_CONNECTION            0x13
172 #define HCI_OE_LOW_RESOURCES                    0x14
173 #define HCI_OE_POWER_OFF                        0x15
174 #define HCI_CONNECTION_TERMINATED               0x16
175 #define HCI_REPEATED_ATTEMPTS                   0x17
176 #define HCI_PAIRING_NOT_ALLOWED                 0x18
177 #define HCI_UNKNOWN_LMP_PDU                     0x19
178 #define HCI_UNSUPPORTED_REMOTE_FEATURE          0x1a
179 #define HCI_SCO_OFFSET_REJECTED                 0x1b
180 #define HCI_SCO_INTERVAL_REJECTED               0x1c
181 #define HCI_AIR_MODE_REJECTED                   0x1d
182 #define HCI_INVALID_LMP_PARAMETERS              0x1e
183 #define HCI_UNSPECIFIED_ERROR                   0x1f
184 #define HCI_UNSUPPORTED_LMP_PARAMETER_VALUE     0x20
185 #define HCI_ROLE_CHANGE_NOT_ALLOWED             0x21
186 #define HCI_LMP_RESPONSE_TIMEOUT                0x22
187 #define HCI_LMP_ERROR_TRANSACTION_COLLISION     0x23
188 #define HCI_LMP_PDU_NOT_ALLOWED                 0x24
189 #define HCI_ENCRYPTION_MODE_NOT_ACCEPTED        0x25
190 #define HCI_UNIT_LINK_KEY_USED                  0x26
191 #define HCI_QOS_NOT_SUPPORTED                   0x27
192 #define HCI_INSTANT_PASSED                      0x28
193 #define HCI_PAIRING_NOT_SUPPORTED               0x29
194 #define HCI_TRANSACTION_COLLISION               0x2a
195 #define HCI_QOS_UNACCEPTABLE_PARAMETER          0x2c
196 #define HCI_QOS_REJECTED                        0x2d
197 #define HCI_CLASSIFICATION_NOT_SUPPORTED        0x2e
198 #define HCI_INSUFFICIENT_SECURITY               0x2f
199 #define HCI_PARAMETER_OUT_OF_RANGE              0x30
200 #define HCI_ROLE_SWITCH_PENDING                 0x32
201 #define HCI_SLOT_VIOLATION                      0x34
202 #define HCI_ROLE_SWITCH_FAILED                  0x35
203 #define HCI_EIR_TOO_LARGE                       0x36
204 #define HCI_SIMPLE_PAIRING_NOT_SUPPORTED        0x37
205 #define HCI_HOST_BUSY_PAIRING                   0x38
206
207 /* ACL flags */
208 #define ACL_CONT                0x01
209 #define ACL_START               0x02
210 #define ACL_ACTIVE_BCAST        0x04
211 #define ACL_PICO_BCAST          0x08
212
213 /* Baseband links */
214 #define SCO_LINK        0x00
215 #define ACL_LINK        0x01
216 #define ESCO_LINK       0x02
217
218 /* LMP features */
219 #define LMP_3SLOT       0x01
220 #define LMP_5SLOT       0x02
221 #define LMP_ENCRYPT     0x04
222 #define LMP_SOFFSET     0x08
223 #define LMP_TACCURACY   0x10
224 #define LMP_RSWITCH     0x20
225 #define LMP_HOLD        0x40
226 #define LMP_SNIFF       0x80
227
228 #define LMP_PARK        0x01
229 #define LMP_RSSI        0x02
230 #define LMP_QUALITY     0x04
231 #define LMP_SCO         0x08
232 #define LMP_HV2         0x10
233 #define LMP_HV3         0x20
234 #define LMP_ULAW        0x40
235 #define LMP_ALAW        0x80
236
237 #define LMP_CVSD        0x01
238 #define LMP_PSCHEME     0x02
239 #define LMP_PCONTROL    0x04
240 #define LMP_TRSP_SCO    0x08
241 #define LMP_BCAST_ENC   0x80
242
243 #define LMP_EDR_ACL_2M  0x02
244 #define LMP_EDR_ACL_3M  0x04
245 #define LMP_ENH_ISCAN   0x08
246 #define LMP_ILACE_ISCAN 0x10
247 #define LMP_ILACE_PSCAN 0x20
248 #define LMP_RSSI_INQ    0x40
249 #define LMP_ESCO        0x80
250
251 #define LMP_EV4         0x01
252 #define LMP_EV5         0x02
253 #define LMP_AFH_CAP_SLV 0x08
254 #define LMP_AFH_CLS_SLV 0x10
255 #define LMP_EDR_3SLOT   0x80
256
257 #define LMP_EDR_5SLOT   0x01
258 #define LMP_SNIFF_SUBR  0x02
259 #define LMP_PAUSE_ENC   0x04
260 #define LMP_AFH_CAP_MST 0x08
261 #define LMP_AFH_CLS_MST 0x10
262 #define LMP_EDR_ESCO_2M 0x20
263 #define LMP_EDR_ESCO_3M 0x40
264 #define LMP_EDR_3S_ESCO 0x80
265
266 #define LMP_EXT_INQ     0x01
267 #define LMP_SIMPLE_PAIR 0x08
268 #define LMP_ENCAPS_PDU  0x10
269 #define LMP_ERR_DAT_REP 0x20
270 #define LMP_NFLUSH_PKTS 0x40
271
272 #define LMP_LSTO        0x01
273 #define LMP_INQ_TX_PWR  0x02
274 #define LMP_EXT_FEAT    0x80
275
276 /* Link policies */
277 #define HCI_LP_RSWITCH  0x0001
278 #define HCI_LP_HOLD     0x0002
279 #define HCI_LP_SNIFF    0x0004
280 #define HCI_LP_PARK     0x0008
281
282 /* Link mode */
283 #define HCI_LM_ACCEPT   0x8000
284 #define HCI_LM_MASTER   0x0001
285 #define HCI_LM_AUTH     0x0002
286 #define HCI_LM_ENCRYPT  0x0004
287 #define HCI_LM_TRUSTED  0x0008
288 #define HCI_LM_RELIABLE 0x0010
289 #define HCI_LM_SECURE   0x0020
290
291
292 typedef struct{
293         __u8 byte[6];
294 } __attribute__((packed)) bt_address;
295
296 /* -----  HCI Commands ----- */
297
298 /* Link Control */
299 #define OGF_LINK_CTL            0x01
300
301 #define OCF_INQUIRY                     0x0001
302 typedef struct {
303         uint8_t         lap[3];
304         uint8_t         length;         /* 1.28s units */
305         uint8_t         num_rsp;
306 } __attribute__ ((packed)) inquiry_cp;
307 #define INQUIRY_CP_SIZE 5
308
309 typedef struct {
310         uint8_t         status;
311         bt_address      bdaddr;
312 } __attribute__ ((packed)) status_bdaddr_rp;
313 #define STATUS_BDADDR_RP_SIZE 7
314
315 #define OCF_INQUIRY_CANCEL              0x0002
316
317 #define OCF_PERIODIC_INQUIRY            0x0003
318 typedef struct {
319         uint16_t        max_period;     /* 1.28s units */
320         uint16_t        min_period;     /* 1.28s units */
321         uint8_t         lap[3];
322         uint8_t         length;         /* 1.28s units */
323         uint8_t         num_rsp;
324 } __attribute__ ((packed)) periodic_inquiry_cp;
325 #define PERIODIC_INQUIRY_CP_SIZE 9
326
327 #define OCF_EXIT_PERIODIC_INQUIRY       0x0004
328
329 #define OCF_CREATE_CONN                 0x0005
330 typedef struct {
331         bt_address      bdaddr;
332         uint16_t        pkt_type;
333         uint8_t         pscan_rep_mode;
334         uint8_t         pscan_mode;
335         uint16_t        clock_offset;
336         uint8_t         role_switch;
337 } __attribute__ ((packed)) create_conn_cp;
338 #define CREATE_CONN_CP_SIZE 13
339
340 #define OCF_DISCONNECT                  0x0006
341 typedef struct {
342         uint16_t        handle;
343         uint8_t         reason;
344 } __attribute__ ((packed)) disconnect_cp;
345 #define DISCONNECT_CP_SIZE 3
346
347 #define OCF_ADD_SCO                     0x0007
348 typedef struct {
349         uint16_t        handle;
350         uint16_t        pkt_type;
351 } __attribute__ ((packed)) add_sco_cp;
352 #define ADD_SCO_CP_SIZE 4
353
354 #define OCF_CREATE_CONN_CANCEL          0x0008
355 typedef struct {
356         bt_address      bdaddr;
357 } __attribute__ ((packed)) create_conn_cancel_cp;
358 #define CREATE_CONN_CANCEL_CP_SIZE 6
359
360 #define OCF_ACCEPT_CONN_REQ             0x0009
361 typedef struct {
362         bt_address      bdaddr;
363         uint8_t         role;
364 } __attribute__ ((packed)) accept_conn_req_cp;
365 #define ACCEPT_CONN_REQ_CP_SIZE 7
366
367 #define OCF_REJECT_CONN_REQ             0x000A
368 typedef struct {
369         bt_address      bdaddr;
370         uint8_t         reason;
371 } __attribute__ ((packed)) reject_conn_req_cp;
372 #define REJECT_CONN_REQ_CP_SIZE 7
373
374 #define OCF_LINK_KEY_REPLY              0x000B
375 typedef struct {
376         bt_address      bdaddr;
377         uint8_t         link_key[16];
378 } __attribute__ ((packed)) link_key_reply_cp;
379 #define LINK_KEY_REPLY_CP_SIZE 22
380
381 #define OCF_LINK_KEY_NEG_REPLY          0x000C
382
383 #define OCF_PIN_CODE_REPLY              0x000D
384 typedef struct {
385         bt_address      bdaddr;
386         uint8_t         pin_len;
387         uint8_t         pin_code[16];
388 } __attribute__ ((packed)) pin_code_reply_cp;
389 #define PIN_CODE_REPLY_CP_SIZE 23
390
391 #define OCF_PIN_CODE_NEG_REPLY          0x000E
392
393 #define OCF_SET_CONN_PTYPE              0x000F
394 typedef struct {
395         uint16_t         handle;
396         uint16_t         pkt_type;
397 } __attribute__ ((packed)) set_conn_ptype_cp;
398 #define SET_CONN_PTYPE_CP_SIZE 4
399
400 #define OCF_AUTH_REQUESTED              0x0011
401 typedef struct {
402         uint16_t         handle;
403 } __attribute__ ((packed)) auth_requested_cp;
404 #define AUTH_REQUESTED_CP_SIZE 2
405
406 #define OCF_SET_CONN_ENCRYPT            0x0013
407 typedef struct {
408         uint16_t        handle;
409         uint8_t         encrypt;
410 } __attribute__ ((packed)) set_conn_encrypt_cp;
411 #define SET_CONN_ENCRYPT_CP_SIZE 3
412
413 #define OCF_CHANGE_CONN_LINK_KEY        0x0015
414 typedef struct {
415         uint16_t        handle;
416 } __attribute__ ((packed)) change_conn_link_key_cp;
417 #define CHANGE_CONN_LINK_KEY_CP_SIZE 2
418
419 #define OCF_MASTER_LINK_KEY             0x0017
420 typedef struct {
421         uint8_t         key_flag;
422 } __attribute__ ((packed)) master_link_key_cp;
423 #define MASTER_LINK_KEY_CP_SIZE 1
424
425 #define OCF_REMOTE_NAME_REQ             0x0019
426 typedef struct {
427         bt_address      bdaddr;
428         uint8_t         pscan_rep_mode;
429         uint8_t         pscan_mode;
430         uint16_t        clock_offset;
431 } __attribute__ ((packed)) remote_name_req_cp;
432 #define REMOTE_NAME_REQ_CP_SIZE 10
433
434 #define OCF_REMOTE_NAME_REQ_CANCEL      0x001A
435 typedef struct {
436         bt_address      bdaddr;
437 } __attribute__ ((packed)) remote_name_req_cancel_cp;
438 #define REMOTE_NAME_REQ_CANCEL_CP_SIZE 6
439
440 #define OCF_READ_REMOTE_FEATURES        0x001B
441 typedef struct {
442         uint16_t        handle;
443 } __attribute__ ((packed)) read_remote_features_cp;
444 #define READ_REMOTE_FEATURES_CP_SIZE 2
445
446 #define OCF_READ_REMOTE_EXT_FEATURES    0x001C
447 typedef struct {
448         uint16_t        handle;
449         uint8_t         page_num;
450 } __attribute__ ((packed)) read_remote_ext_features_cp;
451 #define READ_REMOTE_EXT_FEATURES_CP_SIZE 3
452
453 #define OCF_READ_REMOTE_VERSION         0x001D
454 typedef struct {
455         uint16_t        handle;
456 } __attribute__ ((packed)) read_remote_version_cp;
457 #define READ_REMOTE_VERSION_CP_SIZE 2
458
459 #define OCF_READ_CLOCK_OFFSET           0x001F
460 typedef struct {
461         uint16_t        handle;
462 } __attribute__ ((packed)) read_clock_offset_cp;
463 #define READ_CLOCK_OFFSET_CP_SIZE 2
464
465 #define OCF_READ_LMP_HANDLE             0x0020
466
467 #define OCF_SETUP_SYNC_CONN             0x0028
468 typedef struct {
469         uint16_t        handle;
470         uint32_t        tx_bandwith;
471         uint32_t        rx_bandwith;
472         uint16_t        max_latency;
473         uint16_t        voice_setting;
474         uint8_t         retrans_effort;
475         uint16_t        pkt_type;
476 } __attribute__ ((packed)) setup_sync_conn_cp;
477 #define SETUP_SYNC_CONN_CP_SIZE 17
478
479 #define OCF_ACCEPT_SYNC_CONN_REQ        0x0029
480 typedef struct {
481         bt_address      bdaddr;
482         uint32_t        tx_bandwith;
483         uint32_t        rx_bandwith;
484         uint16_t        max_latency;
485         uint16_t        voice_setting;
486         uint8_t         retrans_effort;
487         uint16_t        pkt_type;
488 } __attribute__ ((packed)) accept_sync_conn_req_cp;
489 #define ACCEPT_SYNC_CONN_REQ_CP_SIZE 21
490
491 #define OCF_REJECT_SYNC_CONN_REQ        0x002A
492 typedef struct {
493         bt_address      bdaddr;
494         uint8_t         reason;
495 } __attribute__ ((packed)) reject_sync_conn_req_cp;
496 #define REJECT_SYNC_CONN_REQ_CP_SIZE 7
497
498 #define OCF_IO_CAPABILITY_REPLY         0x002B
499 typedef struct {
500         bt_address      bdaddr;
501         uint8_t         capability;
502         uint8_t         oob_data;
503         uint8_t         authentication;
504 } __attribute__ ((packed)) io_capability_reply_cp;
505 #define IO_CAPABILITY_REPLY_CP_SIZE 9
506
507 #define OCF_USER_CONFIRM_REPLY          0x002C
508 typedef struct {
509         bt_address      bdaddr;
510 } __attribute__ ((packed)) user_confirm_reply_cp;
511 #define USER_CONFIRM_REPLY_CP_SIZE 6
512
513 #define OCF_USER_CONFIRM_NEG_REPLY      0x002D
514
515 #define OCF_USER_PASSKEY_REPLY          0x002E
516 typedef struct {
517         bt_address      bdaddr;
518         uint32_t        passkey;
519 } __attribute__ ((packed)) user_passkey_reply_cp;
520 #define USER_PASSKEY_REPLY_CP_SIZE 10
521
522 #define OCF_USER_PASSKEY_NEG_REPLY      0x002F
523
524 #define OCF_REMOTE_OOB_DATA_REPLY       0x0030
525 typedef struct {
526         bt_address      bdaddr;
527         uint8_t         hash[16];
528         uint8_t         randomizer[16];
529 } __attribute__ ((packed)) remote_oob_data_reply_cp;
530 #define REMOTE_OOB_DATA_REPLY_CP_SIZE 38
531
532 #define OCF_REMOTE_OOB_DATA_NEG_REPLY   0x0033
533
534 #define OCF_IO_CAPABILITY_NEG_REPLY     0x0034
535 typedef struct {
536         bt_address      bdaddr;
537         uint8_t         reason;
538 } __attribute__ ((packed)) io_capability_neg_reply_cp;
539 #define IO_CAPABILITY_NEG_REPLY_CP_SIZE 7
540
541 /* Link Policy */
542 #define OGF_LINK_POLICY         0x02
543
544 #define OCF_HOLD_MODE                   0x0001
545 typedef struct {
546         uint16_t        handle;
547         uint16_t        max_interval;
548         uint16_t        min_interval;
549 } __attribute__ ((packed)) hold_mode_cp;
550 #define HOLD_MODE_CP_SIZE 6
551
552 #define OCF_SNIFF_MODE                  0x0003
553 typedef struct {
554         uint16_t        handle;
555         uint16_t        max_interval;
556         uint16_t        min_interval;
557         uint16_t        attempt;
558         uint16_t        timeout;
559 } __attribute__ ((packed)) sniff_mode_cp;
560 #define SNIFF_MODE_CP_SIZE 10
561
562 #define OCF_EXIT_SNIFF_MODE             0x0004
563 typedef struct {
564         uint16_t        handle;
565 } __attribute__ ((packed)) exit_sniff_mode_cp;
566 #define EXIT_SNIFF_MODE_CP_SIZE 2
567
568 #define OCF_PARK_MODE                   0x0005
569 typedef struct {
570         uint16_t        handle;
571         uint16_t        max_interval;
572         uint16_t        min_interval;
573 } __attribute__ ((packed)) park_mode_cp;
574 #define PARK_MODE_CP_SIZE 6
575
576 #define OCF_EXIT_PARK_MODE              0x0006
577 typedef struct {
578         uint16_t        handle;
579 } __attribute__ ((packed)) exit_park_mode_cp;
580 #define EXIT_PARK_MODE_CP_SIZE 2
581
582 #define OCF_QOS_SETUP                   0x0007
583 typedef struct {
584         uint8_t         service_type;           /* 1 = best effort */
585         uint32_t        token_rate;             /* Byte per seconds */
586         uint32_t        peak_bandwidth;         /* Byte per seconds */
587         uint32_t        latency;                /* Microseconds */
588         uint32_t        delay_variation;        /* Microseconds */
589 } __attribute__ ((packed)) hci_qos;
590 #define HCI_QOS_CP_SIZE 17
591 typedef struct {
592         uint16_t        handle;
593         uint8_t         flags;                  /* Reserved */
594         hci_qos         qos;
595 } __attribute__ ((packed)) qos_setup_cp;
596 #define QOS_SETUP_CP_SIZE (3 + HCI_QOS_CP_SIZE)
597
598 #define OCF_ROLE_DISCOVERY              0x0009
599 typedef struct {
600         uint16_t        handle;
601 } __attribute__ ((packed)) role_discovery_cp;
602 #define ROLE_DISCOVERY_CP_SIZE 2
603 typedef struct {
604         uint8_t         status;
605         uint16_t        handle;
606         uint8_t         role;
607 } __attribute__ ((packed)) role_discovery_rp;
608 #define ROLE_DISCOVERY_RP_SIZE 4
609
610 #define OCF_SWITCH_ROLE                 0x000B
611 typedef struct {
612         bt_address      bdaddr;
613         uint8_t         role;
614 } __attribute__ ((packed)) switch_role_cp;
615 #define SWITCH_ROLE_CP_SIZE 7
616
617 #define OCF_READ_LINK_POLICY            0x000C
618 typedef struct {
619         uint16_t        handle;
620 } __attribute__ ((packed)) read_link_policy_cp;
621 #define READ_LINK_POLICY_CP_SIZE 2
622 typedef struct {
623         uint8_t         status;
624         uint16_t        handle;
625         uint16_t        policy;
626 } __attribute__ ((packed)) read_link_policy_rp;
627 #define READ_LINK_POLICY_RP_SIZE 5
628
629 #define OCF_WRITE_LINK_POLICY           0x000D
630 typedef struct {
631         uint16_t        handle;
632         uint16_t        policy;
633 } __attribute__ ((packed)) write_link_policy_cp;
634 #define WRITE_LINK_POLICY_CP_SIZE 4
635 typedef struct {
636         uint8_t         status;
637         uint16_t        handle;
638 } __attribute__ ((packed)) write_link_policy_rp;
639 #define WRITE_LINK_POLICY_RP_SIZE 3
640
641 #define OCF_READ_DEFAULT_LINK_POLICY    0x000E
642
643 #define OCF_WRITE_DEFAULT_LINK_POLICY   0x000F
644
645 #define OCF_FLOW_SPECIFICATION          0x0010
646
647 #define OCF_SNIFF_SUBRATING             0x0011
648 typedef struct {
649         uint16_t        handle;
650         uint16_t        max_latency;
651         uint16_t        min_remote_timeout;
652         uint16_t        min_local_timeout;
653 } __attribute__ ((packed)) sniff_subrating_cp;
654 #define SNIFF_SUBRATING_CP_SIZE 8
655
656 /* Host Controller and Baseband */
657 #define OGF_HOST_CTL            0x03
658
659 #define OCF_SET_EVENT_MASK              0x0001
660 typedef struct {
661         uint8_t         mask[8];
662 } __attribute__ ((packed)) set_event_mask_cp;
663 #define SET_EVENT_MASK_CP_SIZE 8
664
665 #define OCF_RESET                       0x0003
666
667 #define OCF_SET_EVENT_FLT               0x0005
668 typedef struct {
669         uint8_t         flt_type;
670         uint8_t         cond_type;
671         uint8_t         condition[0];
672 } __attribute__ ((packed)) set_event_flt_cp;
673 #define SET_EVENT_FLT_CP_SIZE 2
674
675 /* Filter types */
676 #define FLT_CLEAR_ALL                   0x00
677 #define FLT_INQ_RESULT                  0x01
678 #define FLT_CONN_SETUP                  0x02
679 /* INQ_RESULT Condition types */
680 #define INQ_RESULT_RETURN_ALL           0x00
681 #define INQ_RESULT_RETURN_CLASS         0x01
682 #define INQ_RESULT_RETURN_BDADDR        0x02
683 /* CONN_SETUP Condition types */
684 #define CONN_SETUP_ALLOW_ALL            0x00
685 #define CONN_SETUP_ALLOW_CLASS          0x01
686 #define CONN_SETUP_ALLOW_BDADDR         0x02
687 /* CONN_SETUP Conditions */
688 #define CONN_SETUP_AUTO_OFF             0x01
689 #define CONN_SETUP_AUTO_ON              0x02
690
691 #define OCF_FLUSH                       0x0008
692
693 #define OCF_READ_PIN_TYPE               0x0009
694 typedef struct {
695         uint8_t         status;
696         uint8_t         pin_type;
697 } __attribute__ ((packed)) read_pin_type_rp;
698 #define READ_PIN_TYPE_RP_SIZE 2
699
700 #define OCF_WRITE_PIN_TYPE              0x000A
701 typedef struct {
702         uint8_t         pin_type;
703 } __attribute__ ((packed)) write_pin_type_cp;
704 #define WRITE_PIN_TYPE_CP_SIZE 1
705
706 #define OCF_CREATE_NEW_UNIT_KEY         0x000B
707
708 #define OCF_READ_STORED_LINK_KEY        0x000D
709 typedef struct {
710         bt_address      bdaddr;
711         uint8_t         read_all;
712 } __attribute__ ((packed)) read_stored_link_key_cp;
713 #define READ_STORED_LINK_KEY_CP_SIZE 7
714 typedef struct {
715         uint8_t         status;
716         uint16_t        max_keys;
717         uint16_t        num_keys;
718 } __attribute__ ((packed)) read_stored_link_key_rp;
719 #define READ_STORED_LINK_KEY_RP_SIZE 5
720
721 #define OCF_WRITE_STORED_LINK_KEY       0x0011
722 typedef struct {
723         uint8_t         num_keys;
724         /* variable length part */
725 } __attribute__ ((packed)) write_stored_link_key_cp;
726 #define WRITE_STORED_LINK_KEY_CP_SIZE 1
727 typedef struct {
728         uint8_t         status;
729         uint8_t         num_keys;
730 } __attribute__ ((packed)) write_stored_link_key_rp;
731 #define READ_WRITE_LINK_KEY_RP_SIZE 2
732
733 #define OCF_DELETE_STORED_LINK_KEY      0x0012
734 typedef struct {
735         bt_address      bdaddr;
736         uint8_t         delete_all;
737 } __attribute__ ((packed)) delete_stored_link_key_cp;
738 #define DELETE_STORED_LINK_KEY_CP_SIZE 7
739 typedef struct {
740         uint8_t         status;
741         uint16_t        num_keys;
742 } __attribute__ ((packed)) delete_stored_link_key_rp;
743 #define DELETE_STORED_LINK_KEY_RP_SIZE 3
744
745 #define OCF_CHANGE_LOCAL_NAME           0x0013
746 typedef struct {
747         uint8_t         name[248];
748 } __attribute__ ((packed)) change_local_name_cp;
749 #define CHANGE_LOCAL_NAME_CP_SIZE 248 
750
751 #define OCF_READ_LOCAL_NAME             0x0014
752 typedef struct {
753         uint8_t         status;
754         uint8_t         name[248];
755 } __attribute__ ((packed)) read_local_name_rp;
756 #define READ_LOCAL_NAME_RP_SIZE 249 
757
758 #define OCF_READ_CONN_ACCEPT_TIMEOUT    0x0015
759 typedef struct {
760         uint8_t         status;
761         uint16_t        timeout;
762 } __attribute__ ((packed)) read_conn_accept_timeout_rp;
763 #define READ_CONN_ACCEPT_TIMEOUT_RP_SIZE 3
764
765 #define OCF_WRITE_CONN_ACCEPT_TIMEOUT   0x0016
766 typedef struct {
767         uint16_t        timeout;
768 } __attribute__ ((packed)) write_conn_accept_timeout_cp;
769 #define WRITE_CONN_ACCEPT_TIMEOUT_CP_SIZE 2
770
771 #define OCF_READ_PAGE_TIMEOUT           0x0017
772 typedef struct {
773         uint8_t         status;
774         uint16_t        timeout;
775 } __attribute__ ((packed)) read_page_timeout_rp;
776 #define READ_PAGE_TIMEOUT_RP_SIZE 3
777
778 #define OCF_WRITE_PAGE_TIMEOUT          0x0018
779 typedef struct {
780         uint16_t        timeout;
781 } __attribute__ ((packed)) write_page_timeout_cp;
782 #define WRITE_PAGE_TIMEOUT_CP_SIZE 2
783
784 #define OCF_READ_SCAN_ENABLE            0x0019
785 typedef struct {
786         uint8_t         status;
787         uint8_t         enable;
788 } __attribute__ ((packed)) read_scan_enable_rp;
789 #define READ_SCAN_ENABLE_RP_SIZE 2
790
791 #define OCF_WRITE_SCAN_ENABLE           0x001A
792         #define SCAN_DISABLED           0x00
793         #define SCAN_INQUIRY            0x01
794         #define SCAN_PAGE               0x02
795
796 #define OCF_READ_PAGE_ACTIVITY          0x001B
797 typedef struct {
798         uint8_t         status;
799         uint16_t        interval;
800         uint16_t        window;
801 } __attribute__ ((packed)) read_page_activity_rp;
802 #define READ_PAGE_ACTIVITY_RP_SIZE 5
803
804 #define OCF_WRITE_PAGE_ACTIVITY         0x001C
805 typedef struct {
806         uint16_t        interval;
807         uint16_t        window;
808 } __attribute__ ((packed)) write_page_activity_cp;
809 #define WRITE_PAGE_ACTIVITY_CP_SIZE 4
810
811 #define OCF_READ_INQ_ACTIVITY           0x001D
812 typedef struct {
813         uint8_t         status;
814         uint16_t        interval;
815         uint16_t        window;
816 } __attribute__ ((packed)) read_inq_activity_rp;
817 #define READ_INQ_ACTIVITY_RP_SIZE 5
818
819 #define OCF_WRITE_INQ_ACTIVITY          0x001E
820 typedef struct {
821         uint16_t        interval;
822         uint16_t        window;
823 } __attribute__ ((packed)) write_inq_activity_cp;
824 #define WRITE_INQ_ACTIVITY_CP_SIZE 4
825
826 #define OCF_READ_AUTH_ENABLE            0x001F
827
828 #define OCF_WRITE_AUTH_ENABLE           0x0020
829         #define AUTH_DISABLED           0x00
830         #define AUTH_ENABLED            0x01
831
832 #define OCF_READ_ENCRYPT_MODE           0x0021
833
834 #define OCF_WRITE_ENCRYPT_MODE          0x0022
835         #define ENCRYPT_DISABLED        0x00
836         #define ENCRYPT_P2P             0x01
837         #define ENCRYPT_BOTH            0x02
838
839 #define OCF_READ_CLASS_OF_DEV           0x0023
840 typedef struct {
841         uint8_t         status;
842         uint8_t         dev_class[3];
843 } __attribute__ ((packed)) read_class_of_dev_rp;
844 #define READ_CLASS_OF_DEV_RP_SIZE 4 
845
846 #define OCF_WRITE_CLASS_OF_DEV          0x0024
847 typedef struct {
848         uint8_t         dev_class[3];
849 } __attribute__ ((packed)) write_class_of_dev_cp;
850 #define WRITE_CLASS_OF_DEV_CP_SIZE 3
851
852 #define OCF_READ_VOICE_SETTING          0x0025
853 typedef struct {
854         uint8_t         status;
855         uint16_t        voice_setting;
856 } __attribute__ ((packed)) read_voice_setting_rp;
857 #define READ_VOICE_SETTING_RP_SIZE 3
858
859 #define OCF_WRITE_VOICE_SETTING         0x0026
860 typedef struct {
861         uint16_t        voice_setting;
862 } __attribute__ ((packed)) write_voice_setting_cp;
863 #define WRITE_VOICE_SETTING_CP_SIZE 2
864
865 #define OCF_READ_AUTOMATIC_FLUSH_TIMEOUT        0x0027
866
867 #define OCF_WRITE_AUTOMATIC_FLUSH_TIMEOUT       0x0028
868
869 #define OCF_READ_NUM_BROADCAST_RETRANS  0x0029
870
871 #define OCF_WRITE_NUM_BROADCAST_RETRANS 0x002A
872
873 #define OCF_READ_HOLD_MODE_ACTIVITY     0x002B
874
875 #define OCF_WRITE_HOLD_MODE_ACTIVITY    0x002C
876
877 #define OCF_READ_TRANSMIT_POWER_LEVEL   0x002D
878 typedef struct {
879         uint16_t        handle;
880         uint8_t         type;
881 } __attribute__ ((packed)) read_transmit_power_level_cp;
882 #define READ_TRANSMIT_POWER_LEVEL_CP_SIZE 3
883 typedef struct {
884         uint8_t         status;
885         uint16_t        handle;
886         int8_t          level;
887 } __attribute__ ((packed)) read_transmit_power_level_rp;
888 #define READ_TRANSMIT_POWER_LEVEL_RP_SIZE 4
889
890 #define OCF_SET_CONTROLLER_TO_HOST_FC   0x0031
891
892 #define OCF_HOST_BUFFER_SIZE            0x0033
893 typedef struct {
894         uint16_t        acl_mtu;
895         uint8_t         sco_mtu;
896         uint16_t        acl_max_pkt;
897         uint16_t        sco_max_pkt;
898 } __attribute__ ((packed)) host_buffer_size_cp;
899 #define HOST_BUFFER_SIZE_CP_SIZE 7
900
901 #define OCF_HOST_NUM_COMP_PKTS          0x0035
902 typedef struct {
903         uint8_t         num_hndl;
904         /* variable length part */
905 } __attribute__ ((packed)) host_num_comp_pkts_cp;
906 #define HOST_NUM_COMP_PKTS_CP_SIZE 1
907
908 #define OCF_READ_LINK_SUPERVISION_TIMEOUT       0x0036
909 typedef struct {
910         uint8_t         status;
911         uint16_t        handle;
912         uint16_t        timeout;
913 } __attribute__ ((packed)) read_link_supervision_timeout_rp;
914 #define READ_LINK_SUPERVISION_TIMEOUT_RP_SIZE 5
915
916 #define OCF_WRITE_LINK_SUPERVISION_TIMEOUT      0x0037
917 typedef struct {
918         uint16_t        handle;
919         uint16_t        timeout;
920 } __attribute__ ((packed)) write_link_supervision_timeout_cp;
921 #define WRITE_LINK_SUPERVISION_TIMEOUT_CP_SIZE 4
922 typedef struct {
923         uint8_t         status;
924         uint16_t        handle;
925 } __attribute__ ((packed)) write_link_supervision_timeout_rp;
926 #define WRITE_LINK_SUPERVISION_TIMEOUT_RP_SIZE 3
927
928 #define OCF_READ_NUM_SUPPORTED_IAC      0x0038
929
930 #define MAX_IAC_LAP 0x40
931 #define OCF_READ_CURRENT_IAC_LAP        0x0039
932 typedef struct {
933         uint8_t         status;
934         uint8_t         num_current_iac;
935         uint8_t         lap[MAX_IAC_LAP][3];
936 } __attribute__ ((packed)) read_current_iac_lap_rp;
937 #define READ_CURRENT_IAC_LAP_RP_SIZE 2+3*MAX_IAC_LAP
938
939 #define OCF_WRITE_CURRENT_IAC_LAP       0x003A
940 typedef struct {
941         uint8_t         num_current_iac;
942         uint8_t         lap[MAX_IAC_LAP][3];
943 } __attribute__ ((packed)) write_current_iac_lap_cp;
944 #define WRITE_CURRENT_IAC_LAP_CP_SIZE 1+3*MAX_IAC_LAP
945
946 #define OCF_READ_PAGE_SCAN_PERIOD_MODE  0x003B
947
948 #define OCF_WRITE_PAGE_SCAN_PERIOD_MODE 0x003C
949
950 #define OCF_READ_PAGE_SCAN_MODE         0x003D
951
952 #define OCF_WRITE_PAGE_SCAN_MODE        0x003E
953
954 #define OCF_SET_AFH_CLASSIFICATION      0x003F
955 typedef struct {
956         uint8_t         map[10];
957 } __attribute__ ((packed)) set_afh_classification_cp;
958 #define SET_AFH_CLASSIFICATION_CP_SIZE 10
959 typedef struct {
960         uint8_t         status;
961 } __attribute__ ((packed)) set_afh_classification_rp;
962 #define SET_AFH_CLASSIFICATION_RP_SIZE 1
963
964 #define OCF_READ_INQUIRY_SCAN_TYPE      0x0042
965 typedef struct {
966         uint8_t         status;
967         uint8_t         type;
968 } __attribute__ ((packed)) read_inquiry_scan_type_rp;
969 #define READ_INQUIRY_SCAN_TYPE_RP_SIZE 2
970
971 #define OCF_WRITE_INQUIRY_SCAN_TYPE     0x0043
972 typedef struct {
973         uint8_t         type;
974 } __attribute__ ((packed)) write_inquiry_scan_type_cp;
975 #define WRITE_INQUIRY_SCAN_TYPE_CP_SIZE 1
976 typedef struct {
977         uint8_t         status;
978 } __attribute__ ((packed)) write_inquiry_scan_type_rp;
979 #define WRITE_INQUIRY_SCAN_TYPE_RP_SIZE 1
980
981 #define OCF_READ_INQUIRY_MODE           0x0044
982 typedef struct {
983         uint8_t         status;
984         uint8_t         mode;
985 } __attribute__ ((packed)) read_inquiry_mode_rp;
986 #define READ_INQUIRY_MODE_RP_SIZE 2
987
988 #define OCF_WRITE_INQUIRY_MODE          0x0045
989 typedef struct {
990         uint8_t         mode;
991 } __attribute__ ((packed)) write_inquiry_mode_cp;
992 #define WRITE_INQUIRY_MODE_CP_SIZE 1
993 typedef struct {
994         uint8_t         status;
995 } __attribute__ ((packed)) write_inquiry_mode_rp;
996 #define WRITE_INQUIRY_MODE_RP_SIZE 1
997
998 #define OCF_READ_PAGE_SCAN_TYPE         0x0046
999
1000 #define OCF_WRITE_PAGE_SCAN_TYPE        0x0047
1001
1002 #define OCF_READ_AFH_MODE               0x0048
1003 typedef struct {
1004         uint8_t         status;
1005         uint8_t         mode;
1006 } __attribute__ ((packed)) read_afh_mode_rp;
1007 #define READ_AFH_MODE_RP_SIZE 2
1008
1009 #define OCF_WRITE_AFH_MODE              0x0049
1010 typedef struct {
1011         uint8_t         mode;
1012 } __attribute__ ((packed)) write_afh_mode_cp;
1013 #define WRITE_AFH_MODE_CP_SIZE 1
1014 typedef struct {
1015         uint8_t         status;
1016 } __attribute__ ((packed)) write_afh_mode_rp;
1017 #define WRITE_AFH_MODE_RP_SIZE 1
1018
1019 #define OCF_READ_EXT_INQUIRY_RESPONSE   0x0051
1020 typedef struct {
1021         uint8_t         status;
1022         uint8_t         fec;
1023         uint8_t         data[240];
1024 } __attribute__ ((packed)) read_ext_inquiry_response_rp;
1025 #define READ_EXT_INQUIRY_RESPONSE_RP_SIZE 242
1026
1027 #define OCF_WRITE_EXT_INQUIRY_RESPONSE  0x0052
1028 typedef struct {
1029         uint8_t         fec;
1030         uint8_t         data[240];
1031 } __attribute__ ((packed)) write_ext_inquiry_response_cp;
1032 #define WRITE_EXT_INQUIRY_RESPONSE_CP_SIZE 241
1033 typedef struct {
1034         uint8_t         status;
1035 } __attribute__ ((packed)) write_ext_inquiry_response_rp;
1036 #define WRITE_EXT_INQUIRY_RESPONSE_RP_SIZE 1
1037
1038 #define OCF_REFRESH_ENCRYPTION_KEY      0x0053
1039 typedef struct {
1040         uint16_t        handle;
1041 } __attribute__ ((packed)) refresh_encryption_key_cp;
1042 #define REFRESH_ENCRYPTION_KEY_CP_SIZE 2
1043 typedef struct {
1044         uint8_t         status;
1045 } __attribute__ ((packed)) refresh_encryption_key_rp;
1046 #define REFRESH_ENCRYPTION_KEY_RP_SIZE 1
1047
1048 #define OCF_READ_SIMPLE_PAIRING_MODE    0x0055
1049 typedef struct {
1050         uint8_t         status;
1051         uint8_t         mode;
1052 } __attribute__ ((packed)) read_simple_pairing_mode_rp;
1053 #define READ_SIMPLE_PAIRING_MODE_RP_SIZE 2
1054
1055 #define OCF_WRITE_SIMPLE_PAIRING_MODE   0x0056
1056 typedef struct {
1057         uint8_t         mode;
1058 } __attribute__ ((packed)) write_simple_pairing_mode_cp;
1059 #define WRITE_SIMPLE_PAIRING_MODE_CP_SIZE 1
1060 typedef struct {
1061         uint8_t         status;
1062 } __attribute__ ((packed)) write_simple_pairing_mode_rp;
1063 #define WRITE_SIMPLE_PAIRING_MODE_RP_SIZE 1
1064
1065 #define OCF_READ_LOCAL_OOB_DATA         0x0057
1066 typedef struct {
1067         uint8_t         status;
1068         uint8_t         hash[16];
1069         uint8_t         randomizer[16];
1070 } __attribute__ ((packed)) read_local_oob_data_rp;
1071 #define READ_LOCAL_OOB_DATA_RP_SIZE 33
1072
1073 #define OCF_READ_INQUIRY_TRANSMIT_POWER_LEVEL   0x0058
1074 typedef struct {
1075         uint8_t         status;
1076         int8_t          level;
1077 } __attribute__ ((packed)) read_inquiry_transmit_power_level_rp;
1078 #define READ_INQUIRY_TRANSMIT_POWER_LEVEL_RP_SIZE 2
1079
1080 #define OCF_WRITE_INQUIRY_TRANSMIT_POWER_LEVEL  0x0059
1081 typedef struct {
1082         int8_t          level;
1083 } __attribute__ ((packed)) write_inquiry_transmit_power_level_cp;
1084 #define WRITE_INQUIRY_TRANSMIT_POWER_LEVEL_CP_SIZE 1
1085 typedef struct {
1086         uint8_t         status;
1087 } __attribute__ ((packed)) write_inquiry_transmit_power_level_rp;
1088 #define WRITE_INQUIRY_TRANSMIT_POWER_LEVEL_RP_SIZE 1
1089
1090 #define OCF_READ_DEFAULT_ERROR_DATA_REPORTING   0x005A
1091 typedef struct {
1092         uint8_t         status;
1093         uint8_t         reporting;
1094 } __attribute__ ((packed)) read_default_error_data_reporting_rp;
1095 #define READ_DEFAULT_ERROR_DATA_REPORTING_RP_SIZE 2
1096
1097 #define OCF_WRITE_DEFAULT_ERROR_DATA_REPORTING  0x005B
1098 typedef struct {
1099         uint8_t         reporting;
1100 } __attribute__ ((packed)) write_default_error_data_reporting_cp;
1101 #define WRITE_DEFAULT_ERROR_DATA_REPORTING_CP_SIZE 1
1102 typedef struct {
1103         uint8_t         status;
1104 } __attribute__ ((packed)) write_default_error_data_reporting_rp;
1105 #define WRITE_DEFAULT_ERROR_DATA_REPORTING_RP_SIZE 1
1106
1107 #define OCF_ENHANCED_FLUSH              0x005F
1108 typedef struct {
1109         uint16_t        handle;
1110         uint8_t         type;
1111 } __attribute__ ((packed)) enhanced_flush_cp;
1112 #define ENHANCED_FLUSH_CP_SIZE 3
1113
1114 #define OCF_SEND_KEYPRESS_NOTIFY        0x0060
1115 typedef struct {
1116         bt_address      bdaddr;
1117         uint8_t         type;
1118 } __attribute__ ((packed)) send_keypress_notify_cp;
1119 #define SEND_KEYPRESS_NOTIFY_CP_SIZE 7
1120 typedef struct {
1121         uint8_t         status;
1122 } __attribute__ ((packed)) send_keypress_notify_rp;
1123 #define SEND_KEYPRESS_NOTIFY_RP_SIZE 1
1124
1125 /* Informational Parameters */
1126 #define OGF_INFO_PARAM          0x04
1127
1128 #define OCF_READ_LOCAL_VERSION          0x0001
1129 typedef struct {
1130         uint8_t         status;
1131         uint8_t         hci_ver;
1132         uint16_t        hci_rev;
1133         uint8_t         lmp_ver;
1134         uint16_t        manufacturer;
1135         uint16_t        lmp_subver;
1136 } __attribute__ ((packed)) read_local_version_rp;
1137 #define READ_LOCAL_VERSION_RP_SIZE 9
1138
1139 #define OCF_READ_LOCAL_COMMANDS         0x0002
1140 typedef struct {
1141         uint8_t         status;
1142         uint8_t         commands[64];
1143 } __attribute__ ((packed)) read_local_commands_rp;
1144 #define READ_LOCAL_COMMANDS_RP_SIZE 65
1145
1146 #define OCF_READ_LOCAL_FEATURES         0x0003
1147 typedef struct {
1148         uint8_t         status;
1149         uint8_t         features[8];
1150 } __attribute__ ((packed)) read_local_features_rp;
1151 #define READ_LOCAL_FEATURES_RP_SIZE 9
1152
1153 #define OCF_READ_LOCAL_EXT_FEATURES     0x0004
1154 typedef struct {
1155         uint8_t         page_num;
1156 } __attribute__ ((packed)) read_local_ext_features_cp;
1157 #define READ_LOCAL_EXT_FEATURES_CP_SIZE 1
1158 typedef struct {
1159         uint8_t         status;
1160         uint8_t         page_num;
1161         uint8_t         max_page_num;
1162         uint8_t         features[8];
1163 } __attribute__ ((packed)) read_local_ext_features_rp;
1164 #define READ_LOCAL_EXT_FEATURES_RP_SIZE 11
1165
1166 #define OCF_READ_BUFFER_SIZE            0x0005
1167 typedef struct {
1168         uint8_t         status;
1169         uint16_t        acl_mtu;
1170         uint8_t         sco_mtu;
1171         uint16_t        acl_max_pkt;
1172         uint16_t        sco_max_pkt;
1173 } __attribute__ ((packed)) read_buffer_size_rp;
1174 #define READ_BUFFER_SIZE_RP_SIZE 8
1175
1176 #define OCF_READ_COUNTRY_CODE           0x0007
1177
1178 #define OCF_READ_BD_ADDR                0x0009
1179 typedef struct {
1180         uint8_t         status;
1181         bt_address      bdaddr;
1182 } __attribute__ ((packed)) read_bd_addr_rp;
1183 #define READ_BD_ADDR_RP_SIZE 7
1184
1185 /* Status params */
1186 #define OGF_STATUS_PARAM        0x05
1187
1188 #define OCF_READ_FAILED_CONTACT_COUNTER         0x0001
1189 typedef struct {
1190         uint8_t         status;
1191         uint16_t        handle;
1192         uint8_t         counter;
1193 } __attribute__ ((packed)) read_failed_contact_counter_rp;
1194 #define READ_FAILED_CONTACT_COUNTER_RP_SIZE 4
1195
1196 #define OCF_RESET_FAILED_CONTACT_COUNTER        0x0002
1197 typedef struct {
1198         uint8_t         status;
1199         uint16_t        handle;
1200 } __attribute__ ((packed)) reset_failed_contact_counter_rp;
1201 #define RESET_FAILED_CONTACT_COUNTER_RP_SIZE 4
1202
1203 #define OCF_READ_LINK_QUALITY           0x0003
1204 typedef struct {
1205         uint8_t         status;
1206         uint16_t        handle;
1207         uint8_t         link_quality;
1208 } __attribute__ ((packed)) read_link_quality_rp;
1209 #define READ_LINK_QUALITY_RP_SIZE 4
1210
1211 #define OCF_READ_RSSI                   0x0005
1212 typedef struct {
1213         uint8_t         status;
1214         uint16_t        handle;
1215         int8_t          rssi;
1216 } __attribute__ ((packed)) read_rssi_rp;
1217 #define READ_RSSI_RP_SIZE 4
1218
1219 #define OCF_READ_AFH_MAP                0x0006
1220 typedef struct {
1221         uint8_t         status;
1222         uint16_t        handle;
1223         uint8_t         mode;
1224         uint8_t         map[10];
1225 } __attribute__ ((packed)) read_afh_map_rp;
1226 #define READ_AFH_MAP_RP_SIZE 14
1227
1228 #define OCF_READ_CLOCK                  0x0007
1229 typedef struct {
1230         uint16_t        handle;
1231         uint8_t         which_clock;
1232 } __attribute__ ((packed)) read_clock_cp;
1233 #define READ_CLOCK_CP_SIZE 3
1234 typedef struct {
1235         uint8_t         status;
1236         uint16_t        handle;
1237         uint32_t        clock;
1238         uint16_t        accuracy;
1239 } __attribute__ ((packed)) read_clock_rp;
1240 #define READ_CLOCK_RP_SIZE 9
1241
1242 /* Testing commands */
1243 #define OGF_TESTING_CMD         0x3e
1244
1245 #define OCF_READ_LOOPBACK_MODE                  0x0001
1246
1247 #define OCF_WRITE_LOOPBACK_MODE                 0x0002
1248
1249 #define OCF_ENABLE_DEVICE_UNDER_TEST_MODE       0x0003
1250
1251 #define OCF_WRITE_SIMPLE_PAIRING_DEBUG_MODE     0x0004
1252 typedef struct {
1253         uint8_t         mode;
1254 } __attribute__ ((packed)) write_simple_pairing_debug_mode_cp;
1255 #define WRITE_SIMPLE_PAIRING_DEBUG_MODE_CP_SIZE 1
1256 typedef struct {
1257         uint8_t         status;
1258 } __attribute__ ((packed)) write_simple_pairing_debug_mode_rp;
1259 #define WRITE_SIMPLE_PAIRING_DEBUG_MODE_RP_SIZE 1
1260
1261 /* Vendor specific commands */
1262 #define OGF_VENDOR_CMD          0x3f
1263
1264 /* ---- HCI Events ---- */
1265
1266 #define EVT_INQUIRY_COMPLETE            0x01
1267
1268 #define EVT_INQUIRY_RESULT              0x02
1269 typedef struct {
1270         bt_address      bdaddr;
1271         uint8_t         pscan_rep_mode;
1272         uint8_t         pscan_period_mode;
1273         uint8_t         pscan_mode;
1274         uint8_t         dev_class[3];
1275         uint16_t        clock_offset;
1276 } __attribute__ ((packed)) inquiry_info;
1277 #define INQUIRY_INFO_SIZE 14
1278
1279 #define EVT_CONN_COMPLETE               0x03
1280 typedef struct {
1281         uint8_t         status;
1282         uint16_t        handle;
1283         bt_address      bdaddr;
1284         uint8_t         link_type;
1285         uint8_t         encr_mode;
1286 } __attribute__ ((packed)) evt_conn_complete;
1287 #define EVT_CONN_COMPLETE_SIZE 13
1288
1289 #define EVT_CONN_REQUEST                0x04
1290 typedef struct {
1291         bt_address      bdaddr;
1292         uint8_t         dev_class[3];
1293         uint8_t         link_type;
1294 } __attribute__ ((packed)) evt_conn_request;
1295 #define EVT_CONN_REQUEST_SIZE 10
1296
1297 #define EVT_DISCONN_COMPLETE            0x05
1298 typedef struct {
1299         uint8_t         status;
1300         uint16_t        handle;
1301         uint8_t         reason;
1302 } __attribute__ ((packed)) evt_disconn_complete;
1303 #define EVT_DISCONN_COMPLETE_SIZE 4
1304
1305 #define EVT_AUTH_COMPLETE               0x06
1306 typedef struct {
1307         uint8_t         status;
1308         uint16_t        handle;
1309 } __attribute__ ((packed)) evt_auth_complete;
1310 #define EVT_AUTH_COMPLETE_SIZE 3
1311
1312 #define EVT_REMOTE_NAME_REQ_COMPLETE    0x07
1313 typedef struct {
1314         uint8_t         status;
1315         bt_address      bdaddr;
1316         uint8_t         name[248];
1317 } __attribute__ ((packed)) evt_remote_name_req_complete;
1318 #define EVT_REMOTE_NAME_REQ_COMPLETE_SIZE 255
1319
1320 #define EVT_ENCRYPT_CHANGE              0x08
1321 typedef struct {
1322         uint8_t         status;
1323         uint16_t        handle;
1324         uint8_t         encrypt;
1325 } __attribute__ ((packed)) evt_encrypt_change;
1326 #define EVT_ENCRYPT_CHANGE_SIZE 5
1327
1328 #define EVT_CHANGE_CONN_LINK_KEY_COMPLETE       0x09
1329 typedef struct {
1330         uint8_t         status;
1331         uint16_t        handle;
1332 }  __attribute__ ((packed)) evt_change_conn_link_key_complete;
1333 #define EVT_CHANGE_CONN_LINK_KEY_COMPLETE_SIZE 3
1334
1335 #define EVT_MASTER_LINK_KEY_COMPLETE            0x0A
1336 typedef struct {
1337         uint8_t         status;
1338         uint16_t        handle;
1339         uint8_t         key_flag;
1340 } __attribute__ ((packed)) evt_master_link_key_complete;
1341 #define EVT_MASTER_LINK_KEY_COMPLETE_SIZE 4
1342
1343 #define EVT_READ_REMOTE_FEATURES_COMPLETE       0x0B
1344 typedef struct {
1345         uint8_t         status;
1346         uint16_t        handle;
1347         uint8_t         features[8];
1348 } __attribute__ ((packed)) evt_read_remote_features_complete;
1349 #define EVT_READ_REMOTE_FEATURES_COMPLETE_SIZE 11
1350
1351 #define EVT_READ_REMOTE_VERSION_COMPLETE        0x0C
1352 typedef struct {
1353         uint8_t         status;
1354         uint16_t        handle;
1355         uint8_t         lmp_ver;
1356         uint16_t        manufacturer;
1357         uint16_t        lmp_subver;
1358 } __attribute__ ((packed)) evt_read_remote_version_complete;
1359 #define EVT_READ_REMOTE_VERSION_COMPLETE_SIZE 8
1360
1361 #define EVT_QOS_SETUP_COMPLETE          0x0D
1362 typedef struct {
1363         uint8_t         status;
1364         uint16_t        handle;
1365         uint8_t         flags;                  /* Reserved */
1366         hci_qos         qos;
1367 } __attribute__ ((packed)) evt_qos_setup_complete;
1368 #define EVT_QOS_SETUP_COMPLETE_SIZE (4 + HCI_QOS_CP_SIZE)
1369
1370 #define EVT_CMD_COMPLETE                0x0E
1371 typedef struct {
1372         uint8_t         ncmd;
1373         uint16_t        opcode;
1374 } __attribute__ ((packed)) evt_cmd_complete;
1375 #define EVT_CMD_COMPLETE_SIZE 3
1376
1377 #define EVT_CMD_STATUS                  0x0F
1378 typedef struct {
1379         uint8_t         status;
1380         uint8_t         ncmd;
1381         uint16_t        opcode;
1382 } __attribute__ ((packed)) evt_cmd_status;
1383 #define EVT_CMD_STATUS_SIZE 4
1384
1385 #define EVT_HARDWARE_ERROR              0x10
1386 typedef struct {
1387         uint8_t         code;
1388 } __attribute__ ((packed)) evt_hardware_error;
1389 #define EVT_HARDWARE_ERROR_SIZE 1
1390
1391 #define EVT_FLUSH_OCCURRED              0x11
1392 typedef struct {
1393         uint16_t        handle;
1394 } __attribute__ ((packed)) evt_flush_occured;
1395 #define EVT_FLUSH_OCCURRED_SIZE 2
1396
1397 #define EVT_ROLE_CHANGE                 0x12
1398 typedef struct {
1399         uint8_t         status;
1400         bt_address      bdaddr;
1401         uint8_t         role;
1402 } __attribute__ ((packed)) evt_role_change;
1403 #define EVT_ROLE_CHANGE_SIZE 8
1404
1405 #define EVT_NUM_COMP_PKTS               0x13
1406 typedef struct {
1407         uint8_t         num_hndl;
1408         /* variable length part */
1409 } __attribute__ ((packed)) evt_num_comp_pkts;
1410 #define EVT_NUM_COMP_PKTS_SIZE 1
1411
1412 #define EVT_MODE_CHANGE                 0x14
1413 typedef struct {
1414         uint8_t         status;
1415         uint16_t        handle;
1416         uint8_t         mode;
1417         uint16_t        interval;
1418 } __attribute__ ((packed)) evt_mode_change;
1419 #define EVT_MODE_CHANGE_SIZE 6
1420
1421 #define EVT_RETURN_LINK_KEYS            0x15
1422 typedef struct {
1423         uint8_t         num_keys;
1424         /* variable length part */
1425 } __attribute__ ((packed)) evt_return_link_keys;
1426 #define EVT_RETURN_LINK_KEYS_SIZE 1
1427
1428 #define EVT_PIN_CODE_REQ                0x16
1429 typedef struct {
1430         bt_address      bdaddr;
1431 } __attribute__ ((packed)) evt_pin_code_req;
1432 #define EVT_PIN_CODE_REQ_SIZE 6
1433
1434 #define EVT_LINK_KEY_REQ                0x17
1435 typedef struct {
1436         bt_address      bdaddr;
1437 } __attribute__ ((packed)) evt_link_key_req;
1438 #define EVT_LINK_KEY_REQ_SIZE 6
1439
1440 #define EVT_LINK_KEY_NOTIFY             0x18
1441 typedef struct {
1442         bt_address      bdaddr;
1443         uint8_t         link_key[16];
1444         uint8_t         key_type;
1445 } __attribute__ ((packed)) evt_link_key_notify;
1446 #define EVT_LINK_KEY_NOTIFY_SIZE 23
1447
1448 #define EVT_LOOPBACK_COMMAND            0x19
1449
1450 #define EVT_DATA_BUFFER_OVERFLOW        0x1A
1451 typedef struct {
1452         uint8_t         link_type;
1453 } __attribute__ ((packed)) evt_data_buffer_overflow;
1454 #define EVT_DATA_BUFFER_OVERFLOW_SIZE 1
1455
1456 #define EVT_MAX_SLOTS_CHANGE            0x1B
1457 typedef struct {
1458         uint16_t        handle;
1459         uint8_t         max_slots;
1460 } __attribute__ ((packed)) evt_max_slots_change;
1461 #define EVT_MAX_SLOTS_CHANGE_SIZE 3
1462
1463 #define EVT_READ_CLOCK_OFFSET_COMPLETE  0x1C
1464 typedef struct {
1465         uint8_t         status;
1466         uint16_t        handle;
1467         uint16_t        clock_offset;
1468 } __attribute__ ((packed)) evt_read_clock_offset_complete;
1469 #define EVT_READ_CLOCK_OFFSET_COMPLETE_SIZE 5
1470
1471 #define EVT_CONN_PTYPE_CHANGED          0x1D
1472 typedef struct {
1473         uint8_t         status;
1474         uint16_t        handle;
1475         uint16_t        ptype;
1476 } __attribute__ ((packed)) evt_conn_ptype_changed;
1477 #define EVT_CONN_PTYPE_CHANGED_SIZE 5
1478
1479 #define EVT_QOS_VIOLATION               0x1E
1480 typedef struct {
1481         uint16_t        handle;
1482 } __attribute__ ((packed)) evt_qos_violation;
1483 #define EVT_QOS_VIOLATION_SIZE 2
1484
1485 #define EVT_PSCAN_REP_MODE_CHANGE       0x20
1486 typedef struct {
1487         bt_address      bdaddr;
1488         uint8_t         pscan_rep_mode;
1489 } __attribute__ ((packed)) evt_pscan_rep_mode_change;
1490 #define EVT_PSCAN_REP_MODE_CHANGE_SIZE 7
1491
1492 #define EVT_FLOW_SPEC_COMPLETE          0x21
1493 typedef struct {
1494         uint8_t         status;
1495         uint16_t        handle;
1496         uint8_t         flags;
1497         uint8_t         direction;
1498         hci_qos         qos;
1499 } __attribute__ ((packed)) evt_flow_spec_complete;
1500 #define EVT_FLOW_SPEC_COMPLETE_SIZE (5 + HCI_QOS_CP_SIZE)
1501
1502 //todo:this solution is for number of responcies equal to 1 only!!! 
1503 #define EVT_INQUIRY_RESULT_WITH_RSSI    0x22
1504 typedef struct {
1505         bt_address      bdaddr;
1506         uint8_t         pscan_rep_mode;
1507         uint8_t         pscan_period_mode;
1508         uint8_t         dev_class[3];
1509         uint16_t        clock_offset;
1510         int8_t          rssi;
1511 } __attribute__ ((packed)) inquiry_info_with_rssi;
1512 #define INQUIRY_INFO_WITH_RSSI_SIZE 14
1513 typedef struct {
1514         bt_address      bdaddr;
1515         uint8_t         pscan_rep_mode;
1516         uint8_t         pscan_period_mode;
1517         uint8_t         pscan_mode;
1518         uint8_t         dev_class[3];
1519         uint16_t        clock_offset;
1520         int8_t          rssi;
1521 } __attribute__ ((packed)) inquiry_info_with_rssi_and_pscan_mode;
1522 #define INQUIRY_INFO_WITH_RSSI_AND_PSCAN_MODE_SIZE 15
1523
1524 #define EVT_READ_REMOTE_EXT_FEATURES_COMPLETE   0x23
1525 typedef struct {
1526         uint8_t         status;
1527         uint16_t        handle;
1528         uint8_t         page_num;
1529         uint8_t         max_page_num;
1530         uint8_t         features[8];
1531 } __attribute__ ((packed)) evt_read_remote_ext_features_complete;
1532 #define EVT_READ_REMOTE_EXT_FEATURES_COMPLETE_SIZE 13
1533
1534 #define EVT_SYNC_CONN_COMPLETE          0x2C
1535 typedef struct {
1536         uint8_t         status;
1537         uint16_t        handle;
1538         bt_address      bdaddr;
1539         uint8_t         link_type;
1540         uint8_t         trans_interval;
1541         uint8_t         retrans_window;
1542         uint16_t        rx_pkt_len;
1543         uint16_t        tx_pkt_len;
1544         uint8_t         air_mode;
1545 } __attribute__ ((packed)) evt_sync_conn_complete;
1546 #define EVT_SYNC_CONN_COMPLETE_SIZE 17
1547
1548 #define EVT_SYNC_CONN_CHANGED           0x2D
1549 typedef struct {
1550         uint8_t         status;
1551         uint16_t        handle;
1552         uint8_t         trans_interval;
1553         uint8_t         retrans_window;
1554         uint16_t        rx_pkt_len;
1555         uint16_t        tx_pkt_len;
1556 } __attribute__ ((packed)) evt_sync_conn_changed;
1557 #define EVT_SYNC_CONN_CHANGED_SIZE 9
1558
1559 #define EVT_SNIFF_SUBRATING             0x2E
1560 typedef struct {
1561         uint8_t         status;
1562         uint16_t        handle;
1563         uint16_t        max_tx_latency;
1564         uint16_t        max_rx_latency;
1565         uint16_t        min_remote_timeout;
1566         uint16_t        min_local_timeout;
1567 } __attribute__ ((packed)) evt_sniff_subrating;
1568 #define EVT_SNIFF_SUBRATING_SIZE 11
1569
1570 #define EVT_EXTENDED_INQUIRY_RESULT     0x2F
1571 typedef struct {
1572         bt_address      bdaddr;
1573         uint8_t         pscan_rep_mode;
1574         uint8_t         pscan_period_mode;
1575         uint8_t         dev_class[3];
1576         uint16_t        clock_offset;
1577         int8_t          rssi;
1578         uint8_t         data[240];
1579 } __attribute__ ((packed)) extended_inquiry_info;
1580 #define EXTENDED_INQUIRY_INFO_SIZE 254
1581
1582 #define EVT_ENCRYPTION_KEY_REFRESH_COMPLETE     0x30
1583 typedef struct {
1584         uint8_t         status;
1585         uint16_t        handle;
1586 } __attribute__ ((packed)) evt_encryption_key_refresh_complete;
1587 #define EVT_ENCRYPTION_KEY_REFRESH_COMPLETE_SIZE 3
1588
1589 #define EVT_IO_CAPABILITY_REQUEST       0x31
1590 typedef struct {
1591         bt_address      bdaddr;
1592 } __attribute__ ((packed)) evt_io_capability_request;
1593 #define EVT_IO_CAPABILITY_REQUEST_SIZE 6
1594
1595 #define EVT_IO_CAPABILITY_RESPONSE      0x32
1596 typedef struct {
1597         bt_address      bdaddr;
1598         uint8_t         capability;
1599         uint8_t         oob_data;
1600         uint8_t         authentication;
1601 } __attribute__ ((packed)) evt_io_capability_response;
1602 #define EVT_IO_CAPABILITY_RESPONSE_SIZE 9
1603
1604 #define EVT_USER_CONFIRM_REQUEST        0x33
1605 typedef struct {
1606         bt_address      bdaddr;
1607         uint32_t        passkey;
1608 } __attribute__ ((packed)) evt_user_confirm_request;
1609 #define EVT_USER_CONFIRM_REQUEST_SIZE 10
1610
1611 #define EVT_USER_PASSKEY_REQUEST        0x34
1612 typedef struct {
1613         bt_address      bdaddr;
1614 } __attribute__ ((packed)) evt_user_passkey_request;
1615 #define EVT_USER_PASSKEY_REQUEST_SIZE 6
1616
1617 #define EVT_REMOTE_OOB_DATA_REQUEST     0x35
1618 typedef struct {
1619         bt_address      bdaddr;
1620 } __attribute__ ((packed)) evt_remote_oob_data_request;
1621 #define EVT_REMOTE_OOB_DATA_REQUEST_SIZE 6
1622
1623 #define EVT_SIMPLE_PAIRING_COMPLETE     0x36
1624 typedef struct {
1625         uint8_t         status;
1626         bt_address      bdaddr;
1627 } __attribute__ ((packed)) evt_simple_pairing_complete;
1628 #define EVT_SIMPLE_PAIRING_COMPLETE_SIZE 7
1629
1630 #define EVT_LINK_SUPERVISION_TIMEOUT_CHANGED    0x38
1631 typedef struct {
1632         uint16_t        handle;
1633         uint16_t        timeout;
1634 } __attribute__ ((packed)) evt_link_supervision_timeout_changed;
1635 #define EVT_LINK_SUPERVISION_TIMEOUT_CHANGED_SIZE 4
1636
1637 #define EVT_ENHANCED_FLUSH_COMPLETE     0x39
1638 typedef struct {
1639         uint16_t        handle;
1640 } __attribute__ ((packed)) evt_enhanced_flush_complete;
1641 #define EVT_ENHANCED_FLUSH_COMPLETE_SIZE 2
1642
1643 #define EVT_USER_PASSKEY_NOTIFY         0x3B
1644 typedef struct {
1645         bt_address      bdaddr;
1646         uint32_t        passkey;
1647 } __attribute__ ((packed)) evt_user_passkey_notify;
1648 #define EVT_USER_PASSKEY_NOTIFY_SIZE 10
1649
1650 #define EVT_KEYPRESS_NOTIFY             0x3C
1651 typedef struct {
1652         bt_address      bdaddr;
1653         uint8_t         type;
1654 } __attribute__ ((packed)) evt_keypress_notify;
1655 #define EVT_KEYPRESS_NOTIFY_SIZE 7
1656
1657 #define EVT_REMOTE_HOST_FEATURES_NOTIFY 0x3D
1658 typedef struct {
1659         bt_address      bdaddr;
1660         uint8_t         features[8];
1661 } __attribute__ ((packed)) evt_remote_host_features_notify;
1662 #define EVT_REMOTE_HOST_FEATURES_NOTIFY_SIZE 14
1663
1664 #define EVT_TESTING                     0xFE
1665
1666 #define EVT_VENDOR                      0xFF
1667
1668 /* Internal events generated by BlueZ stack */
1669 #define EVT_STACK_INTERNAL              0xFD
1670 typedef struct {
1671         uint16_t        type;
1672         uint8_t         data[0];
1673 } __attribute__ ((packed)) evt_stack_internal;
1674 #define EVT_STACK_INTERNAL_SIZE 2
1675
1676 #define EVT_SI_DEVICE   0x01
1677 typedef struct {
1678         uint16_t        event;
1679         uint16_t        dev_id;
1680 } __attribute__ ((packed)) evt_si_device;
1681 #define EVT_SI_DEVICE_SIZE 4
1682
1683 #define EVT_SI_SECURITY 0x02
1684 typedef struct {
1685         uint16_t        event;
1686         uint16_t        proto;
1687         uint16_t        subproto;
1688         uint8_t         incoming;
1689 } __attribute__ ((packed)) evt_si_security;
1690
1691 /* --------  HCI Packet structures  -------- */
1692 #define HCI_TYPE_LEN    1
1693
1694 typedef struct {
1695         uint16_t        opcode;         /* OCF & OGF */
1696         uint8_t         plen;
1697 } __attribute__ ((packed))      hci_command_hdr;
1698 #define HCI_COMMAND_HDR_SIZE    3
1699
1700 typedef struct {
1701         uint8_t         evt;
1702         uint8_t         plen;
1703 } __attribute__ ((packed))      hci_event_hdr;
1704 #define HCI_EVENT_HDR_SIZE      2
1705
1706 typedef struct {
1707         uint16_t        handle;         /* Handle & Flags(PB, BC) */
1708         uint16_t        dlen;
1709 } __attribute__ ((packed))      hci_acl_hdr;
1710 #define HCI_ACL_HDR_SIZE        4
1711
1712 typedef struct {
1713         uint16_t        handle;
1714         uint8_t         dlen;
1715 } __attribute__ ((packed))      hci_sco_hdr;
1716 #define HCI_SCO_HDR_SIZE        3
1717
1718 typedef struct {
1719         uint16_t        device;
1720         uint16_t        type;
1721         uint16_t        plen;
1722 } __attribute__ ((packed))      hci_msg_hdr;
1723 #define HCI_MSG_HDR_SIZE        6
1724
1725 /* Command opcode pack/unpack */
1726 #define cmd_opcode_pack(ogf, ocf)       (uint16_t)((ocf & 0x03ff)|(ogf << 10))
1727 #define cmd_opcode_ogf(op)              (op >> 10)
1728 #define cmd_opcode_ocf(op)              (op & 0x03ff)
1729
1730 /* ACL handle and flags pack/unpack */
1731 #define acl_handle_pack(h, f)   (uint16_t)((h & 0x0fff)|(f << 12))
1732 #define acl_handle(h)           (h & 0x0fff)
1733 #define acl_flags(h)            (h >> 12)
1734
1735 #endif /* _NO_HCI_DEFS */
1736
1737 /* HCI Socket options */
1738 #define HCI_DATA_DIR    1
1739 #define HCI_FILTER      2
1740 #define HCI_TIME_STAMP  3
1741
1742 /* HCI CMSG flags */
1743 #define HCI_CMSG_DIR    0x0001
1744 #define HCI_CMSG_TSTAMP 0x0002
1745
1746 struct sockaddr_hci {
1747         sa_family_t     hci_family;
1748         unsigned short  hci_dev;
1749 };
1750 #define HCI_DEV_NONE    0xffff
1751
1752 struct hci_filter {
1753         uint32_t type_mask;
1754         uint32_t event_mask[2];
1755         uint16_t opcode;
1756 };
1757
1758 #define HCI_FLT_TYPE_BITS       31
1759 #define HCI_FLT_EVENT_BITS      63
1760 #define HCI_FLT_OGF_BITS        63
1761 #define HCI_FLT_OCF_BITS        127
1762
1763 /* Ioctl requests structures */
1764 struct hci_dev_stats {
1765         uint32_t err_rx;
1766         uint32_t err_tx;
1767         uint32_t cmd_tx;
1768         uint32_t evt_rx;
1769         uint32_t acl_tx;
1770         uint32_t acl_rx;
1771         uint32_t sco_tx;
1772         uint32_t sco_rx;
1773         uint32_t byte_rx;
1774         uint32_t byte_tx;
1775 };
1776
1777 struct hci_dev_info {
1778         uint16_t dev_id;
1779         char     name[8];
1780
1781         bt_address bdaddr;
1782
1783         uint32_t flags;
1784         uint8_t  type;
1785
1786         uint8_t  features[8];
1787
1788         uint32_t pkt_type;
1789         uint32_t link_policy;
1790         uint32_t link_mode;
1791
1792         uint16_t acl_mtu;
1793         uint16_t acl_pkts;
1794         uint16_t sco_mtu;
1795         uint16_t sco_pkts;
1796
1797         struct   hci_dev_stats stat;
1798 };
1799
1800 struct hci_conn_info {
1801         uint16_t handle;
1802         bt_address bdaddr;
1803         uint8_t  type;
1804         uint8_t  out;
1805         uint16_t state;
1806         uint32_t link_mode;
1807 };
1808
1809 struct hci_dev_req {
1810         uint16_t dev_id;
1811         uint32_t dev_opt;
1812 };
1813
1814 struct hci_dev_list_req {
1815         uint16_t dev_num;
1816         struct hci_dev_req dev_req[16]; /* hci_dev_req structures */
1817 };
1818
1819 struct hci_conn_list_req {
1820         uint16_t dev_id;
1821         uint16_t conn_num;
1822         struct hci_conn_info conn_info[0];
1823 };
1824
1825 struct hci_conn_info_req {
1826         bt_address bdaddr;
1827         uint8_t  type;
1828         struct hci_conn_info conn_info[0];
1829 };
1830
1831 struct hci_inquiry_req {
1832         uint16_t dev_id;
1833         uint16_t flags;
1834         uint8_t  lap[3];
1835         uint8_t  length;
1836         uint8_t  num_rsp;
1837 };
1838 #define IREQ_CACHE_FLUSH 0x0001
1839
1840 struct hci_remotename_req {
1841         uint16_t dev_id;
1842         uint16_t flags;
1843         bt_address bdaddr;
1844         uint8_t  name[248];
1845 };
1846
1847 #ifdef __cplusplus
1848 }
1849 #endif
1850
1851 #endif /* __HCI_H */